*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #fff;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 200;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.5em;
}

img, svg {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Header */

.main-header {
  /* background-color: #fff; */
  position: relative;
  width: 100%;
  text-transform: uppercase;
  font-weight: 400;
  /* border-bottom: .5px solid #000; */
}

.main-header-projekte {
  background-color: #fff;
}

.main-header nav {
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center; 
}

.main-header nav a {
  color: #000;
  text-decoration: none;
}

.main-header nav div {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-header nav ul {
  display: flex;
  gap: 1em;
}

.main-header .main-menu {
  display: flex;
  gap: 2rem;
}

.main-header .logo {
  font-weight: 400;
}

/* .main-header a:hover {
  -webkit-text-stroke: .75px #000;
} */

.mobile-menu-button {
  display: none;
  background-color: #fff;
  width: 20px;
  aspect-ratio: 1/1;
  padding: 0;
  position: relative;
  border: none;
  cursor: pointer;
}

.mmb-kurse {
  background-color: #F4F4F4;
}

.mobile-menu-button::before,
.mobile-menu-button::after {
  content: '';
  display: block;
  width: 100%;
  height: 1.2px;
  background-color: #000;
  position: absolute;
  transition: top .3s ease, transform .3s ease;
}

.mobile-menu-button::before {
  top: 38%;
}

.mobile-menu-button::after {
  top: 38%;
  rotate: 90deg;
}

@media screen and (max-width: 600px) {
  .mobile-menu-button {
    display: block;
  }

  .main-header.open .mobile-menu-button::before {
    top: 38%;
    transform: rotate(45deg);
  }

  .main-header.open .mobile-menu-button:after {
    top: 38%;
    transform: rotate(45deg);
  }

  .main-header .main-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-end;
    gap: .75rem;
    z-index: 1;
    background-color: #fff;
  }

  .main-header.open .main-menu {
    display: flex;
  }
}


/* About  */

.about-container {
  background-color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.about-main {
  display: grid;
  grid-template-columns: .85fr 1fr 1fr;
  grid-template-rows: auto auto;
  padding: 2rem 3rem 4rem 3rem;
  max-width: 1430px;
  /* height: calc(100vh - 53.5px - 48px); */
  /* min-height: 630px; */
  /* max-height: 660px; */
}

.about-titel {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  align-self: flex-end;
}

.about-titel h2 {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 1rem 0;
  padding: 1rem;
}

.about-text-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.about-text-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  padding: 2.5rem 0 0 1rem;
}

.about-text-1 p,
.about-text-2 p {
  padding: 0 1rem 1rem 1rem;
}

.bold {
  font-weight: 600;
}

.about-images {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding: 1.75rem 4rem 1.5rem 1rem;
  /* justify-self: flex-end; */
  align-self: flex-start;
  display: flex;
  justify-content: flex-end;
  /* position: relative; */
}

.about-images img {
  width: 100%;
  max-height: 650px;
}

@media screen and (max-width: 1420px) {
  .about-images {
    padding-right: 3rem;
  }

  .about-titel h2 {
    margin-bottom: .75rem;
  }
}

@media screen and (max-width: 1210px) {
  .about-main {
    display: grid;
    grid-template-columns: .75fr 1fr;
    grid-template-rows: auto auto auto; 
    max-width: 1000px; 
    padding-top: 5rem;
  }  

  .about-titel h2 {
    margin-bottom: .5rem;
  }

  .about-text-2 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    padding-top: 0;
    padding-left: 0;
  }

  .about-images {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
  }
}

@media screen and (max-width: 915px) {
  .about-titel h2 {
    font-size: 44px;
    margin-bottom: .5rem;
  }
}

@media screen and (max-width: 915px) {
  .about-images {
    padding-right: 2.5rem;
  }

  .about-titel h2 {
    font-size: 42px;
    margin-bottom: .5rem;
  }
}

@media screen and (max-width: 810px) {
  .about-titel h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 780px) {
  .about-titel h2 {
    font-size: 38px;
  }
}

@media screen and (max-width: 750px) {
  .about-titel h2 {
    font-size: 37px;
  }
}

@media screen and (max-width: 740px) {
  .about-main {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto; 
    padding-top: 2rem;
  }

  .about-titel {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .about-text-1 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .about-text-2 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }

  .about-images {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3rem;
  }

  .about-images img {
  width: 45%;
  min-width: 200px;
  }
}

@media screen and (max-width: 600px) {
  .about-main {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .about-titel h2 {
    font-size: 38px;
  }

  .about-images {
    padding-bottom: 2.5rem;
  }

  .about-images img {
    justify-self: flex-end;
  }
}

@media screen and (max-width: 470px) {
  .about-images {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  
  .about-titel h2 {
    font-size: 33px;
  }
}

@media screen and (max-width: 400px) {
  .about-main {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .about-titel h2 {
    font-size: 30px;
  }

  .about-text-1 p,
  .about-text-2 p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .about-titel h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 320px) {
  .about-titel h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 300px) {
  .about-titel h2 {
    font-size: 22px;
  }
}


/* Lebenslauf */

.lebenslauf-bgc {
  /* background-color: #EAEAEA; */
  background-color: #fff;
}

.lebenslauf {
  max-width: 900px;
  margin: auto;
}

.today {
  text-align: center;
  text-transform: uppercase;
  margin-top: 6.5rem;
  margin-bottom: 1.5rem;
}

.today h2 {
  font-size: 48px;
  font-weight: 800;
}

.lebenslauf-container {
  display: grid;
  grid-template-columns: 1fr 50px 50px 1fr;
  grid-template-rows: 100px auto auto auto auto auto auto auto auto auto auto auto auto 100px;
  color: #000;
  /* background-color: #fff; */
  margin: 1rem 2rem;
}

.lebenslauf-container article {
  margin: 1rem 0 1rem 0;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.lebenslinie-1 {
  border-right: 1.5px solid #000;
  grid-column: 2 / 3;
  grid-row: 1 / 15;
}

.lebenslinie-2 {
  border-left: 1.5px solid #000;
  grid-column: 3 / 4;
  grid-row: 1 / 15;
}

.big-dot-1 {
  width: 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #000;
  grid-column: 3 / 5;
  grid-row: 1 / 2;
  transform: translate(-50%, -50%);
}

.small-dot {
  width: 12px;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000;  
  margin-top: 1.5rem;
}

.small-dot-1 {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}

.small-dot-2 {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
}

.small-dot-3 {
  grid-column: 3 / 5;
  grid-row: 4 / 5;
}

.small-dot-4 {
  grid-column: 3 / 5;
  grid-row: 5 / 6;
}

.small-dot-5 {
  grid-column: 3 / 5;
  grid-row: 6 / 7;
}

.small-dot-6 {
  grid-column: 3 / 5;
  grid-row: 7 / 8;
}

.small-dot-7 {
  grid-column: 3 / 5;
  grid-row: 8 / 9;
}

.small-dot-8 {
  grid-column: 3 / 5;
  grid-row: 9 / 10;
}

.small-dot-9 {
  grid-column: 3 / 5;
  grid-row: 10 / 11;
}

.small-dot-10 {
  grid-column: 3 / 5;
  grid-row: 11 / 12;
}

.small-dot-11 {
  grid-column: 3 / 5;
  grid-row: 12 / 13;
}

.small-dot-12 {
  grid-column: 3 / 5;
  grid-row: 13 / 14;
}


.station-1 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  text-align: right;
}

.station-2 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

.station-3 {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  text-align: right;
}

.station-4 {
  grid-column: 4 / 5;
  grid-row: 5 / 6;
}

.station-5 {
  grid-column: 1 / 2;
  grid-row: 6 / 7;
  text-align: right;
}

.station-6 {
  grid-column: 4 / 5;
  grid-row: 7 / 8;
}

.station-7 {
  grid-column: 1 / 2;
  grid-row: 8 / 9;
  text-align: right;
}

.station-8 {
  grid-column: 4 / 5;
  grid-row: 9 / 10;
}

.station-9 {
  grid-column: 1 / 2;
  grid-row: 10 / 11;
  text-align: right;
}

.station-10 {
  grid-column: 4 / 5;
  grid-row: 11 / 12;
}

.station-11 {
  grid-column: 1 / 2;
  grid-row: 12 / 13;
  text-align: right;
  padding-bottom: 1.25rem;
}

.station-12 {
  grid-column: 4 / 5;
  grid-row: 13 / 14;
}

.more-btn {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.more-btn-2 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.more-btn-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.more-btn-4 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

.more-btn-5 {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.more-btn-6 {
  grid-column: 4 / 5;
  grid-row: 5 / 6;
}

.more-btn-7 {
  grid-column: 1 / 2;
  grid-row: 6 / 7;
}

.more-btn-8 {
  grid-column: 4 / 5;
  grid-row: 7 / 8;
}

.more-btn-9 {
  grid-column: 1 / 2;
  grid-row: 8 / 9;
}

.more-btn-10 {
  grid-column: 4 / 5;
  grid-row: 9 / 10;
}

.more-btn,
.more-btn-2,
.more-btn-3,
.more-btn-4,
.more-btn-5,
.more-btn-6,
.more-btn-7,
.more-btn-8,
.more-btn-9,
.more-btn-10 {
  /* display: block; */
  background-color: #fff;
  width: 24.5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #000;
  padding: 0;
  margin-top: .5em;
  position: relative;
  cursor: pointer;
}

.more-btn:hover,
.more-btn-2:hover,
.more-btn-3:hover,
.more-btn-4:hover,
.more-btn-5:hover,
.more-btn-6:hover,
.more-btn-7:hover,
.more-btn-8:hover,
.more-btn-9:hover,
.more-btn-10:hover {
  background-color: #000;
  }

.more-btn::before,
.more-btn::after,
.more-btn-2::before,
.more-btn-2::after,
.more-btn-3::before,
.more-btn-3::after,
.more-btn-4::before,
.more-btn-4::after,
.more-btn-5::before,
.more-btn-5::after,
.more-btn-6::before,
.more-btn-6::after,
.more-btn-7::before,
.more-btn-7::after,
.more-btn-8::before,
.more-btn-8::after,
.more-btn-9::before,
.more-btn-9::after,
.more-btn-10::before,
.more-btn-10::after {
  content: '';
  display: block;
  width: 12px;
  height: 1.4px;
  background-color: #000;
  position: absolute;
}

.more-btn:hover::before,
.more-btn:hover::after {
  background-color: #fff;
}

.more-btn-2:hover::before,
.more-btn-2:hover::after {
  background-color: #fff;
}

.more-btn-3:hover::before,
.more-btn-3:hover::after {
  background-color: #fff;
}

.more-btn-4:hover::before,
.more-btn-4:hover::after {
  background-color: #fff;
}

.more-btn-5:hover::before,
.more-btn-5:hover::after {
  background-color: #fff;
}

.more-btn-6:hover::before,
.more-btn-6:hover::after {
  background-color: #fff;
}

.more-btn-7:hover::before,
.more-btn-7:hover::after {
  background-color: #fff;
}

.more-btn-8:hover::before,
.more-btn-8:hover::after {
  background-color: #fff;
}

.more-btn-9:hover::before,
.more-btn-9:hover::after {
  background-color: #fff;
}

.more-btn-10:hover::before,
.more-btn-10:hover::after {
  background-color: #fff;
}

.more-btn::before,
.more-btn-2::before,
.more-btn-3::before,
.more-btn-4::before,
.more-btn-5::before,
.more-btn-6::before,
.more-btn-7::before,
.more-btn-8::before,
.more-btn-9::before,
.more-btn-10::before {
  top: 47%;
  right: 22%;
}

.more-btn::after,
.more-btn-2::after,
.more-btn-3::after,
.more-btn-4::after,
.more-btn-5::after,
.more-btn-6::after,
.more-btn-7::after,
.more-btn-8::after,
.more-btn-9::after,
.more-btn-10::after {
  top: 47.5%;
  right: 22%;
  rotate: 90deg;
}

.information-2 span,
.information-3 span,
.information-5 span,
.information-6 span,
.information-7 span,
.information-8 span,
.information-9 span,
.information-10 span {
  display: none;
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  padding-top: 1rem;
  font-size: 14px;
  text-align: left;
}

.information span,
.information-4 span {
  display: none;
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  padding-top: 1rem;
  font-size: 14px;
  text-align: left;
  flex-direction: column;
}

.mpm-button {
  margin-top: 1rem;
  display: flex;
  max-width: 111px;
}

.information.open span,
.information-2.open span,
.information-3.open span,
.information-4.open span,
.information-5.open span,
.information-6.open span,
.information-7.open span,
.information-8.open span,
.information-9.open span,
.information-10.open span {
  display: flex;
}

.information.open .more-btn,
.information-2.open .more-btn-2,
.information-3.open .more-btn-3,
.information-4.open .more-btn-4,
.information-5.open .more-btn-5,
.information-6.open .more-btn-6,
.information-7.open .more-btn-7,
.information-8.open .more-btn-8,
.information-9.open .more-btn-9,
.information-10.open .more-btn-10 {
  background-color: #000;
}

.information.open .more-btn::after,
.information-2.open .more-btn-2::after,
.information-3.open .more-btn-3::after,
.information-4.open .more-btn-4::after,
.information-5.open .more-btn-5::after,
.information-6.open .more-btn-6::after,
.information-7.open .more-btn-7::after,
.information-8.open .more-btn-8::after,
.information-9.open .more-btn-9::after,
.information-10.open .more-btn-10::after {
  opacity: 0;
}

.information.open .more-btn::before,
.information-2.open .more-btn-2::before,
.information-3.open .more-btn-3::before,
.information-4.open .more-btn-4::before,
.information-5.open .more-btn-5::before,
.information-6.open .more-btn-6::before,
.information-7.open .more-btn-7::before,
.information-8.open .more-btn-8::before,
.information-9.open .more-btn-9::before,
.information-10.open .more-btn-10::before {
  background-color: #fff;
}

.big-dot-2 {
  width: 16px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #000;
  grid-column: 3 / 5;
  grid-row: 15 / 16;
  transform: translate(-50%, -50%);
}

.birth {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  
}

.birth h2 {
  margin-top: 1rem;
  margin-bottom: 0;
}

.birth p {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 3rem;
}

.lebenslauf-footer {
  width: 100%;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lebenslauf-footer p {
  padding: 1rem;
}

.to-today h4 {
  font-weight: 200;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  padding: 1rem;
}

.to-today a:hover {
  -webkit-text-stroke: .75px #000;
}

@media screen and (max-width: 780px) {
  .lebenslauf-container {
    display: grid;
    grid-template-rows: 80px auto auto auto auto auto auto auto auto auto auto auto auto 80px;
  }

  .today h2 {
    font-size: 46px;
  }

  .lebenslauf-container h3 {
    font-size: 16px;
  }

  .lebenslauf-container p {
    font-size: 14px;
  }
}

@media screen and (max-width: 650px) {
  .lebenslauf-container {
    display: grid;
    grid-template-columns: 1fr 40px 40px 1fr;
    grid-template-rows: 80px auto auto auto auto auto auto auto auto auto auto auto auto 80px;
  }

  .lebenslauf-container h3 {
    font-size: 14px;
  }

  .lebenslauf-container p {
    /* font-size: 12px; */
  }

  .today {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 500px) {
  .lebenslauf-container {
    display: grid;
    grid-template-columns: 1fr 40px 40px 1fr;
    grid-template-rows: 60px auto auto auto auto auto auto auto auto auto auto auto auto 60px;
  }

  .today {
    margin-top: 4rem;
  }

  .today h2 {
    font-size: 44px;
  }

  .lebenslauf-container {
    display: grid;
    grid-template-columns: 1fr 30px 30px 1fr;
    grid-template-rows: 60px auto auto auto auto auto auto auto auto auto auto auto auto 60px;
    margin: 1rem 1rem;
  }
}

@media screen and (max-width: 500px) {
  .lebenslauf-footer {
    flex-direction: column;
  }

  .lebenslauf-footer p {
    text-align: center;
    padding: 1rem 2rem;
  }

  .to-today h4 {
    padding: 1.5rem 2rem .5rem 2rem;
  }
}

@media screen and (max-width: 393px) {
  .today {
    margin-top: 3rem;
  }

  .today h2 {
    margin-bottom: 1rem;
  }

  .lebenslauf-container {
    display: grid;
    grid-template-columns: 1fr 20px 20px 1fr;
    grid-template-rows: 60px auto auto auto auto auto auto auto auto auto auto auto auto 60px;
    margin: 1rem 1rem;
  }
}

@media screen and (max-width: 335px) {
  .lebenslauf-container {
    display: grid;
    grid-template-columns: 1fr 15px 15px 1fr;
    grid-template-rows: 60px auto auto auto auto auto auto auto auto auto auto auto auto 60px;
    margin: 1rem 1rem;
  }

  .lebenslauf-container h3 {
    font-size: 14px;
  }

  .lebenslauf-container p {
    font-size: 12px;
  }
}

@media screen and (max-width: 310px) {
  .lebenslauf-container h3 {
    font-size: 14px;
  }

  .lebenslauf-container p {
    font-size: 12px;
  }
}


/* Portfolio */

.portfolio-container {
  /* background-color: #EAEAEA; */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.portfolio-main {
  max-width: 1500px;
}

.portfolio-projects-container {
  align-content: center;
}

.portfolio-titel {
  padding: 3rem 3.5rem 1rem 3.5rem;
}

.portfolio-titel h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem 1rem 1rem 1.25rem;
  margin: 0;
}

.portfolio-projects {
  padding: 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  /* align-items: stretch; */
  /* padding: 3rem 2rem; */
}

.portfolio-projects article {
  width: calc(100% / 6);
  padding: 1.5rem;
  /* background-color: #fff; */
}

.project-image {
  overflow: hidden;
  aspect-ratio: 1/1;
  /* border: 10px solid #fff; */
}

.project-image img {
  width: 100%;
  height: 100%;
  /* border: 10px solid #fff; */
  /* object-fit: cover; */
  scale: var(--image-scale);
  transition: scale .3s ease;
}

.project-text h2 {
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  margin: 0;
  padding: 1.5rem 0 .5rem 0;
  color: #000;
}

.project-text p {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.portfolio-projects a:hover {
  --image-scale: 1.15;
}

@media screen and (max-width: 1500px) {
  .portfolio-projects article {
  width: calc(100% / 3);
  padding: 1.5rem;
  padding-bottom: 1rem;
  /* background-color: #fff; */
  } 

  .portfolio-main {
    max-width: 800px;
  }

  .project-text p {
    font-size: 14px;
  }
}



@media screen and (max-width: 1250px) {
  /* .project-text p {
    font-size: 12px;
  } */
}

@media screen and (max-width: 900px) {
  .portfolio-main {
    max-width: 800px;
  }
  
  .portfolio-projects article {
    width: calc(100% / 2);
    padding: 2rem;
  }

  /* .portfolio-titel {
    padding-bottom: 0;
  } */

  /* .portfolio-titel h1 {
    padding-bottom: 0;
  } */

  .project-text p {
    font-size: 16px;
  }
}

/* @media screen and (max-width: 770px) {
  .portfolio-titel h1 {
    font-size: 44px;
  }
} */

/* @media screen and (max-width: 720px) {
  .portfolio-titel h1 {
    font-size: 40px;
  }
} */

@media screen and (max-width: 675px) {
  /* .portfolio-titel {
    padding-left: 1rem;
    padding-right: 1rem;
  } */

  .portfolio-projects {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .portfolio-projects article {
    width: calc(100% / 1);
    padding: 1.5rem;
  }

  .portfolio-main {
    max-width: 500px;
  }

  .project-text h2 {
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 380px) {
  /* .portfolio-titel {
    padding-left: 1rem;
    padding-right: 1rem;
  } */
  
  .portfolio-projects {
    padding: 1rem 1rem;
  }

  /* .portfolio-titel h1 {
    font-size: 38px;
  } */

  .project-text h2 {
    padding-top: 1rem;
  }
}

/* @media screen and (max-width: 330px) {
  .portfolio-titel h1 {
    font-size: 36px;
  }
} */

@media screen and (max-width: 320px) {
  /* .portfolio-titel h1 {
    font-size: 32px;
  } */

  .project-text h2 {
    font-size: 12px;
  }

  .project-text p {
    font-size: 13px;
  }
}

/* Kurs Intro */

.main-header-projekte {
  background-color: #F4F4F4;
}

.kurs-intro {
  height: calc(100vh - 53.5px);
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 1fr auto;
  /* color: #000; */
  /* background-color: #fff; */
  padding: 3rem 4rem;
  background-color: #F4F4F4;
  /* max-width: 1565px; */
  justify-self: center;
}

.kurs-titel h4 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem;
  margin: 0;
}

.kurs-img {
  padding: 1rem;
  position: relative;
}

.kurs-img img {
  width: 35%;
  min-width: 200px;
  max-width: 250px;
  border: 10px solid #fff;
  position: absolute;
}

.tnop-content .kurs-img img {
  top: 25%;
  left: 50%;
}

.drucksache-content .kurs-img img {
  top: 5%;
  left: 10%;
}

.collage-content .kurs-img img {
  top: 40%;
  left: 25%;
}

.mbge-content .kurs-img img {
  top: 15%;
  left: 35%;
}

.ss-content .kurs-img img {
  top: 5%;
  left: 10%;
}

.kurs-text {
  display: grid;
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  padding: 1rem;
}

.kurs-text p {
  padding: 1rem 0 1.75rem 0;
}

.ergebnis-btn {
  color: #000;
  border: 1px solid #000;
  border-radius: 1rem;
  text-transform: uppercase;
  padding: .35rem .65rem;
  font-size: 12px;
  font-weight: 600;
  justify-self: end;
  text-align: center;
}

.ergebnis-btn:hover {
  background-color: #000;
  color: #fff;
}

@media screen and (max-width: 1215px) {
  .kurs-titel h4 {
    font-size: 42px;
  }

  .drucksache-content .kurs-img img {
    top: 15%;
    left: 20%;
  }

  .ss-content .kurs-img img {
    top: 15%;
    left: 20%;
  }
}

@media screen and (max-width: 1085px) {
  .kurs-titel h4 {
    font-size: 38px;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: 40%;
  }
}

@media screen and (max-width: 1000px) {
  .drucksache-content .kurs-titel h4 {
    font-size: 34px;
  }

  .ss-content .kurs-titel h4 {
    font-size: 34px;
  }

  .mpm-content .kurs-titel h4 {
    font-size: 34px;
  }
}

@media screen and (max-width: 915px) {
  .kurs-intro {
    /* height: calc(100vh - 53.5px);
    min-height: 700px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
  }
  
  .kurs-titel {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .drucksache-content .kurs-intro {
    min-height: 740px;
  }

  .ss-content .kurs-intro {
    min-height: 740px;
  }

  .drucksache-content .kurs-titel h4 {
    font-size: 38px;
  }

  .kurs-img {
    display: grid;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .kurs-text {
    display: grid;
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: 30%;
  }

  .drucksache-content .kurs-img img {
    top: 5%;
    left: 20%;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: 20%;
  }

  .collage-content .kurs-img img {
    top: 30%;
  }
}

@media screen and (max-width: 800px) {
  .kurs-intro {
    padding: 2rem 2rem;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: 20%;
  }

  .mbge-content .kurs-img img {
    top: 15%;
    left: 25%;
  }
}

@media screen and (max-width: 620px) {
  .tnop-content .kurs-img img {
    top: 25%;
    left: 5%;
  }

  .drucksache-content .kurs-intro {
    min-height: 800px;
  }

  .drucksache-content .kurs-img img {
    top: 5%;
    left: 10%;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: 10%;
  }

  .collage-content .kurs-img img {
    top: 30%;
    left: 10%;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: 5%;
  }
}

@media screen and (max-width: 520px) {
  .tnop-content .kurs-img img {
    top: 25%;
    left: 0%;
  }

  .collage-content .kurs-img img {
    top: 25%;
    left: 0%;
  }

  .drucksache-content .kurs-img img {
    top: 5%;
    left: 0%;
  }

  .drucksache-content .kurs-intro {
    min-height: 800px;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: 0%;
  }
}

@media screen and (max-width: 500px) {
  .drucksache-content .kurs-img img {
    top: 5%;
    left: -10%;
  }

  .drucksache-content .kurs-titel h4 {
    font-size: 34px;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: -10%;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: -5%;
  }
}

@media screen and (max-width: 475px) {
  .kurs-titel h4 {
    font-size: 34px;
  }

  .kurs-img img {
    min-width: 175px;
    max-width: 175px;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: -20%;
  }
  
  .collage-content .kurs-img img {
    top: 25%;
    left: -10%;
  }
}

@media screen and (max-width: 460px) {
  .drucksache-content .kurs-img img {
    top: 5%;
    left: -15%;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: -15%;
  }

  .drucksache-content .kurs-titel h4 {
    font-size: 30px;
  }

  .mpm-content .kurs-titel h4 {
    font-size: 30px;
  }

  .mpm-content .kurs-img img {
    top: 0%;
    left: -15%;
  }
}

@media screen and (max-width: 420px) {
  .kurs-titel h4 {
    font-size: 30px;
  }

  .drucksache-content .kurs-titel h4 {
    font-size: 28px;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: -30%;
  }

  .collage-content .kurs-img img {
    top: 25%;
    left: -20%;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: -15%;
  }
}

@media screen and (max-width: 380px) {
  .kurs-titel h4,
  .drucksache-content .kurs-titel h4 {
    font-size: 26px;
  }

  .mpm-content .kurs-titel h4 {
    font-size: 24px;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: -50%;
  }

  .drucksache-content .kurs-intro {
    min-height: 800px;
  }

  .drucksache-content .kurs-img img {
    top: 5%;
    left: -25%;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: -25%;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: -25%;
  }
}

@media screen and (max-width: 355px) {
  .mpm-content .kurs-intro {
    min-height: 780px;
  }

  .mpm-content .kurs-img img {
    top: 0%;
    left: -35%;
  }
}

@media screen and (max-width: 345px) {
  .kurs-titel h4,
  .drucksache-content .kurs-titel h4 {
    font-size: 24px;
  }

  .tnop-content .kurs-img img {
    top: 25%;
    left: -70%;
  }

  .drucksache-content .kurs-img img {
    top: 5%;
    left: -35%;
  }

  .drucksache-content .kurs-intro {
    min-height: 830px;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: -35%;
  }

  .collage-content .kurs-img img {
    top: 25%;
    left: -30%;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: -35%;
  }

  .mpm-content .kurs-img img {
    top: 0%;
    left: -45%;
  }
}

@media screen and (max-width: 320px) {
  .drucksache-content .kurs-titel h4 {
    font-size: 22px;
  }

  .mpm-content .kurs-img img {
    top: 0%;
    left: -45%;
  }

  .mpm-content .kurs-intro {
    min-height: 800px;
  }
}  

@media screen and (max-width: 310px) {
  .kurs-titel h4 {
    font-size: 22px;
  }

  .drucksache-content .kurs-titel h4 {
    font-size: 20px;
  }

  .mpm-content .kurs-titel h4 {
    font-size: 20px;
  }

  .drucksache-content .kurs-intro {
    min-height: 880px;
  }

  .drucksache-content .kurs-img img {
    top: 5%;
    left: -45%;
  }

  .ss-content .kurs-img img {
    top: 5%;
    left: -45%;
  }

  .collage-content .kurs-img img {
    top: 25%;
    left: -50%;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: -45%;
  }

  .mpm-content .kurs-intro {
    min-height: 830px;
  }
}

@media screen and (max-width: 280px) {
  .drucksache-content .kurs-intro {
    min-height: 910px;
  }

  .drucksache-content .kurs-titel h4 {
    font-size: 18px;
  }

  .mbge-content .kurs-intro {
    min-height: 700px;
  }

  .mbge-content .kurs-img img {
    top: 5%;
    left: -55%;
  }

  .mpm-content .kurs-intro {
    min-height: 850px;
  }

  .mpm-content .kurs-img img {
    top: 0%;
    left: -55%;
  }
}  

/* The Nature of Photographs */

/* Aufgabe 1 */

.aufgabe-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  background-color: #fff;
  padding: 3rem 4rem;
}

.a1-text {
  max-width: 450px;
  padding-left: 1rem;
}

h5 {
  font-size: 18px;
  margin: 0;
  padding: 1rem 0;
}

.a1-images {
  display: flex;
  flex-wrap: wrap;
}

.a1-images img {
  width: calc(100% / 2);
  padding: 1rem;
}

.aufgabe-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background-color: #fff;
  padding: 2rem 4rem;
}

.a2-image {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.a2-image img {
  width: 450px;
  padding: 1rem 0 1rem 1rem;
}

.a2-text {
  padding: 0 1rem;
}

.a2-text p {
  padding-bottom: 1rem;
}

.a2-making-of {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

h6 {
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  margin: 0;
  padding: 1rem 1rem 0 0;
  text-align: right;
}

.a2-making-of-images {
  display: flex;
  justify-content: flex-end;
}

.a2-making-of img {
  width: 35%;
  padding: 1rem;
}

.tnop-footer {
  background-color: #fff;
}

@media screen and (max-width: 1100px) {
  .a1-text {
    padding-right: 2rem;
  }

  .a2-image {
    padding-right: 1rem;
  }

  .a2-image img {
    width: 100%;
    max-width: 380px;
    padding: 1rem 1rem 1rem 1rem;
  }

  .a2-making-of img {
    width: 40%;
  }
}

@media screen and (max-width: 915px) {
  .aufgabe-1 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    padding-bottom: 0;
  }

  .a1-text {
    max-width: 915px;
  }

  .a1-images {
    padding: 2rem 5rem 1rem 5rem;
  }

  .a1-images img {
    padding: 1.5rem;
  }

  .aufgabe-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .a2-text {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .a2-image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .a2-making-of {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .a2-making-of img {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .a2-making-of img {
    width: 50%;
  }
}

@media screen and (max-width: 800px) {
  .aufgabe-1,
  .aufgabe-2 {
    padding: 3rem 2rem 0 2rem;
  }

  .a1-images {
    padding: 2rem 4rem 0 4rem;
  }

  .a1-images img {
    padding: 1.25rem;
  }
}

@media screen and (max-width: 700px) {
  .a1-images {
    padding: 2rem 3rem 0 3rem;
  }

  .a1-images img {
    padding: 1rem;
  }

  .aufgabe-2 {
    padding-top: 2rem;
  }

  .a2-making-of-images img {
    padding-left: .5rem;
  }
}

@media screen and (max-width: 650px) {
  .a1-images {
    padding: 2rem 2rem 0 2rem;
  }

  .a2-making-of-images img {
    padding-left: .25rem;
  }
}

@media screen and (max-width: 600px) {
  .a1-images {
    padding: 2rem 0 0 0;
  }
}

@media screen and (max-width: 540px) {
  .aufgabe-2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .a2-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .a2-image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding: 0 0 1rem 0;
  }

  .a2-image img {
    max-width: none;
  }

  .a2-making-of {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .a2-making-of {
    align-items: start;
  }

  .a2-making-of h6 {
    padding: .5rem 0 0 1rem;
  }

  .a2-making-of-images img {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 450px) {
  .a1-images img {
    width: calc(100% / 1);
  }
}

@media screen and (max-width: 400px) {
  .kurs-intro {
   padding-left: 1rem;
   padding-right: 1rem;
  }

  .aufgabe-1,
  .aufgabe-2 {
   padding: 3rem 1rem 0 1rem;
  }
}



/* Drucksache */

.chair-x {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  padding: 3rem 4rem 1rem 4rem;
  background-color: #fff;
}

.chair-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
  /* align-items: center; */
}

.chair-text h5 {
  padding-top: 0;
}

.chair-text p {
  max-width: 600px;
  padding-right: 2rem;
  padding-bottom: 3rem;
}

.chair-img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.chair-img img {
  width: 100%;
  padding: 1rem;
}

.chair-1 {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  padding: 1rem 4rem;
  background-color: #fff;
}

.chair-1-images {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  display: flex;
  flex-wrap: wrap;
  padding-left: .25rem;
}

.chair-1-images img {
  width: calc(100% / 3);
  min-width: 200px;
  /* max-width: 260px; */
  padding: .75rem;
}

.chair-1-text {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  max-width: 500px;
  padding: 1rem;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chair-1-text p {
  padding-bottom: 1rem;
}

.drucksache-footer {
  background-color: #fff;
}

@media screen and (max-width: 910px) {
  .chair-x {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .chair-text p {
    max-width: none;
    padding-right: 1rem;
    padding-bottom: 2rem;
  }

  .chair-img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .chair-1 {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    padding: 0 4rem;
  }

  .chair-1-images {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .chair-1-images img {
    width: calc(100% / 3);
    min-width: 200px;
    /* max-width: 260px; */
    padding: .75rem;
  }

  .chair-1-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    max-width: none;
    padding: 1rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 850px) {
  .chair-x {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .chair-1 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .chair-1-text {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 670px) {
  .chair-1-images img {
    width: calc(100% / 2);
    padding: 1rem;
  }
}

@media screen and (max-width: 670px) {
  .chair-1-images img {
    width: calc(100% / 1);
  }
}

@media screen and (max-width: 400px) {
  .chair-x {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .chair-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Six Seconds */

.sixseconds {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  padding: 3rem 4rem 1rem 4rem;
  background-color: #fff;
}

.sixseconds-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
  /* align-items: center; */
}

.sixseconds-text h5 {
  padding-top: 0;
}

.sixseconds-text p {
  max-width: 600px;
  padding-right: 2rem;
  padding-bottom: 3rem;
}

.sixseconds-img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  justify-content: flex-end;
}

.sixseconds-img img {
  width: 70%;
  padding: 1rem;
}

.sixseconds-overview {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem;
}

.sixseconds-overview-img {
  width: calc(100% / 5);
  padding: 1.25rem;
}

.sixseconds-overview-img a {
  display: block;
  position: relative;
}

.sixseconds-overview-img img {
  width: 100%;
  border: 0.5px solid #000;
}

@media screen and (max-width: 1920px) {
  .sixseconds-overview-img {
    width: calc(100% / 4);
  }
}  

@media screen and (max-width: 1400px) {
  .sixseconds-overview-img {
    width: calc(100% / 3);
  }
} 

@media screen and (max-width: 1035px) {
  .sixseconds {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
  }

  .sixseconds-text {
    grid-column: 1 / 2;
    grid-row: 1 / 2;  
  }

  .sixseconds-text p {
    padding-right: 1rem;
    padding-bottom: 2rem;
  }

  .sixseconds-img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .sixseconds-img img {
    max-width: 500px;
  }

  .sixseconds-overview-img {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 800px) {
  .sixseconds {
    padding: 2rem 2rem;
  }

  .sixseconds-overview {
    padding: 2rem;
  }
}

@media screen and (max-width: 670px) {
  .sixseconds-img {
    display: flex;
    justify-content: center;
    margin: 1rem 1rem 0 1rem;
  }

  .sixseconds-img img {
    width: 100%;
    max-width: 500px;
    padding: 0;
  }

  .sixseconds-overview {
    padding: 2rem;
  }  

  .sixseconds-overview-img {
    width: calc(100% / 1);
    display: flex;
    justify-content: center;
  }

  .sixseconds-overview-img img {
    max-width: 500px;
  }
}

@media screen and (max-width: 610px) {
  .sixseconds-overview {
    padding: 2rem 3rem;
  }

  .sixseconds-overview-img {
    padding: 1rem 0;
  }
}

@media screen and (max-width: 500px) {
  .sixseconds-overview {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 400px) {
  .sixseconds-overview {
    padding-top: 0;
  }
}


/* Collage */

.collagen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  padding: 4rem 4rem;
  /* max-height: 1000px; */
}

.collage-left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collage-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 1rem;
}

.collage-text h5 {
  padding-top: 0;
}

.collage-text p {
  padding-top: 1rem;
  max-width: 450px;
}

.collage-btns {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}


.collage-btn {
  /* display: block; */
  /* background-color: #EAEAEA; */
  width: 24.5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #000;
  padding: 0;
  margin-top: .5em;
  position: relative;
  cursor: pointer;
}

.collage-btn:hover {
  background-color: #000;
  }

.collage-btn::before,
.collage-btn::after {
  content: '';
  display: block;
  width: 9px;
  height: 1.4px;
  background-color: #000;
  position: absolute;
}

.collage-btn:hover::before,
.collage-btn:hover::after {
  background-color: #fff;
}


.collage-btn::before {
  top: 61%;
  right: 26%;
  rotate: -45deg;
}

.collage-btn::after {
  top: 34%;
  right: 26%;
  rotate: 45deg;
}

.previous-btn {
  transform: rotate(180deg);
}

.collage-img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 1rem;
  padding-left: 2rem;
  display: grid;
  justify-content: end;
}

.collage-2 img,
.collage-3 img,
.collage-4 img,
.collage-6 img,
.collage-7 img,
.collage-9 img,
.collage-11 img {
  height: calc(100vh - 10rem);
}

.collage-1 {
  background-color: #000;
  color: #fff;
  padding-bottom: 0;
}

.collage-1 .collage-btns {
  padding-bottom: 4rem;
}

.collage-1 .collage-btn,
.collage-5 .collage-btn {
  border: 1px solid #fff;
}

.collage-1 .collage-btn:hover,
.collage-5 .collage-btn:hover {
  background-color: #fff;
}

.collage-1 .collage-btn::before,
.collage-1 .collage-btn::after,
.collage-5 .collage-btn::before,
.collage-5 .collage-btn::after {
  background-color: #fff;
}

.collage-1 .collage-btn:hover::before,
.collage-1 .collage-btn:hover::after,
.collage-5 .collage-btn:hover::before,
.collage-5 .collage-btn:hover::after {
  background-color: #000;
}

.collage-1 .collage-img {
  padding-bottom: 0;
}

.collage-1 img {
  height: calc(100vh - 4rem);
}

.collage-2 {
  background-color: #F4F4F4;
}

.collage-3 {
  background-color: #DBDBDB;
}

.collage-4 {
  background-color: #FFFFFF;
}

.collage-5 {
  background-color: #000;
  color: #fff;
  height: 100vh;
  min-height: 710px;
  display: grid;
  grid-template-columns: 450px 1fr 1fr;
  grid-template-rows: auto;
  padding: 3rem 4rem;
}

.collage-5 .collage-text p {
width: 450px;
}

.collage-5 .collage-img {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  align-items: end;
  padding: 0;
}

.collage-5 .collage-img img {
  width: 100%;
  min-width: 845px;
  height: auto;
  padding-bottom: 1rem;
}

.collage-6 {
  background-color: #fff;
}

.collage-7 {
  background-color: #F4F4F4;
}

.collage-8 {
  background-color: #DBDBDB;
  height: 100vh;
  min-height: 710px;
  display: grid;
  grid-template-columns: 450px 1fr 1fr;
  grid-template-rows: auto;
  padding: 3rem 4rem;
}

.collage-8 .collage-text p {
width: 450px;
}

.collage-8 .collage-img {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  align-items: end;
  padding: 0;
}

.collage-8 .collage-img img {
  width: 100%;
  min-width: 770px;
  max-width: 1000px;
  height: auto;
  padding: 0;
}

.collage-9 {
  background-color: #fff;
}

.collage-9 img {
  max-height: 985px;
}

.collage-10 {
  background-color: #F4F4F4;
  height: 100vh;
  min-height: 710px;
  grid-template-columns: 400px 1fr 1fr;
  grid-template-rows: auto;
}

.collage-10 .collage-text p {
  width: 400px;
  }

.collage-10 .collage-img {
  /* display: inline-block; */
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  padding: 0;
}

.collage-10 .collage-10-imgs {
  display: flex;
  flex-wrap: wrap;
  align-self: flex-end;
  min-width: 600px;
  max-width: 860px;
}

.collage-10-imgs-container {
   width: calc(100% / 2);
  padding: 1rem; 
}

.collage-10 .collage-img img {
  width: 100%;
}

.collage-11 {
  background-color: #fff;
}

.collage-footer {
  background-color: #fff;
}

@media screen and (max-width: 1920px) {
  .collage-2-container,
  .collage-3-container,
  .collage-4-container,
  .collage-5-container,
  .collage-6-container,
  .collage-7-container,
  .collage-8-container,
  .collage-9-container,
  .collage-10-container,
  .collage-11-container {
    height: 100vh;
    min-height: 765px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collage-1 {
    height: 100vh;
    min-height: 765px;
  }

  .collage-1 .collage-text p {
    min-width: 310px;
  }

  .collage-1 .collage-img {
    align-self: flex-end;
  }

  .collage-2-container {
    background-color: #F4F4F4;
  }

  .collage-2 {
    width: 100vw;
    justify-content: space-between;
  }

  .collage-3-container {
    background-color: #DBDBDB;
  }

  .collage-3 {
    width: 100vw;
    justify-content: space-between;
  }

  .collage-4-container,
  .collage-6-container {
    background-color: #fff;
  }

  .collage-4,
  .collage-6 {
    width: 100vw;
    justify-content: space-between;
  }

  .collage-5-container {
    background-color: #000;
  }

  .collage-5 {
    height: auto;
    width: 100vw;
    justify-content: space-between;
  }

  .collage-7-container {
    background-color: #F4F4F4;
  }

  .collage-7 {
    width: 100vw;
    justify-content: space-between;
  }

  .collage-8-container {
    background-color: #DBDBDB;
  }

  .collage-8 {
    height: auto;
    width: 100vw;
    justify-content: space-between;
  }

  .collage-9-container,
  .collage-11-container {
    background-color: #fff;
  }

  .collage-9,
  .collage-11 {
    width: 100vw;
    justify-content: space-between;
  }

  .collage-10-container {
    background-color: #F4F4F4;
  }

  .collage-10 {
    height: auto;
    width: 100vw;
    justify-content: space-between;
  }

  .collage-1 img {
    max-height: 680px;
    min-height: 650px;
  }
  
  .collage-2 img,
  .collage-3 img,
  .collage-4 img,
  .collage-6 img,
  .collage-7 img,
  .collage-9 img,
  .collage-11 img {
    width: 100%;
    height: auto;
    max-height: 600px;
  }

  .collage-5 .collage-img img {
    min-width: 845px;
    max-width: 845px; 
  }
}

@media screen and (max-width: 1024px) {
  .collagen {
    min-height: 765px;
  } 

  .collagen {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .collage-left-column {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .collage-img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .collage-5 .collage-img,
  .collage-8 .collage-img,
  .collage-10 .collage-img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: center;
    align-items: center;
  }

  .collage-1 img {
    max-height: 620px;
    min-height: 418px;
    width: auto;
    height: 55vh;
  } 

  .collage-2 img,
  .collage-3 img,
  .collage-6 img,
  .collage-9 img,
  .collage-11 img {
    width: auto;
    height: 50vh;
    max-height: 600px;
    min-height: 380px;
  }

  .collage-4 img,
  .collage-7 img {
    width: auto;
    height: 58vh;
    max-height: 800px;
    min-height: 440px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 400px;
  }

  .collage-8 .collage-img img {
    min-width: auto;
    max-width: 860px;
    max-height: 577px;
    width: auto;
    height: 55vh;
    min-height: 420px;
  }

  .collage-10 .collage-10-imgs {
    min-width: auto;
    /* max-width: 640px; */
  }

  .collage-10 .collage-img img {
    min-width: 280px;
    min-height: 190px;
    max-width: 391px;
    max-height: 267px;
    width: auto;
    height: 25vh;
  }

  .collage-10-imgs-container {
    width: calc(100% / 2);
    padding: 1rem;
}
  
  /* .collage-10 .collage-img img {
    height: 55vh;
  } */

  .collage-text p {
    max-width: none;
  }

  .collage-5 .collage-text p {
    width: auto;
  }

  .collage-8 .collage-text p {
    width: auto;
  }

  .collage-10 .collage-text p {
    width: auto;
  }

  .collage-1 .collage-btns {
    padding-bottom: 1rem;
}
}

@media screen and (max-width: 1000px) {
  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 360px;
  }

  .collage-8 .collage-img img {
    /* min-width: auto; */
    /* max-width: 860px; */
    max-height: 500px;
  }

  .collage-10 .collage-img img {
    max-height: 230px;
}
}

@media screen and (max-width: 880px) {
  .collage-1 img {
    min-height: 360px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 300px;
  }

  .collage-8 .collage-img img {
    /* min-width: auto; */
    /* max-width: 860px; */
    max-height: 400px;
    min-height: 400px;
  }

  .collage-10 .collage-img img {
    max-height: 190px;
  }
}

@media screen and (max-width: 800px) {
  .to-the-top a {
    position: fixed;
    bottom: 0.5em;
    left: .75em;
  }
}

@media screen and (max-width: 740px) {
  .collage-1 img {
    height: 50vh;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 260px;
  }

  .collage-8 .collage-img img {
    /* min-width: auto; */
    /* max-width: 860px; */
    max-height: 350px;
    min-height: 340px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    /* min-height: 480px; */
    max-height: 480px;
  }

  .collage-10 .collage-img img {
    min-width: auto;
    min-height: 150px;
    max-height: 150px;
  }
}

@media screen and (max-width: 650px) {
  .collage-4 .collage-img img {
    max-height: 500px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 230px;
  }

  .collage-6 .collage-img img {
    max-height: 400px;
  }

  .collage-7 .collage-img img {
    max-height: 500px;
  }

  .collage-8 .collage-img img {
    max-height: 300px;
    min-height: 300px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 400px;
    max-height: 400px;
  }

  .collage-10-container {
    height: auto;
  }

  .collage-10 {
    height: auto;
  }

  .collage-10-imgs {
    padding-top: 1rem;
  }

  .collage-10-imgs-container {
    width: calc(100% / 1);
    display: grid;
  }

  .collage-10 .collage-img img {
    min-width: auto;
    min-height: 280px;
    max-height: 280px;
    justify-self: center;
  }
}

@media screen and (max-width: 580px) {
  .collagen {
    padding: 3rem 3rem;
  }

  .collage-1 {
    padding: 3rem 3rem 0 3rem;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 200px;
  }

  .collage-7 .collage-img img {
    /* min-width: auto; */
    /* max-width: 860px; */
    max-height: 490px;
  }

  .collage-8 .collage-img img {
    /* min-width: auto; */
    /* max-width: 860px; */
    max-height: 290px;
    min-height: 280px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 390px;
    max-height: 390px;
  }

  .collage-10 .collage-img img {
    min-height: 270px;
    max-height: 270px;
  }
}

@media screen and (max-width: 530px) {
  .collage-3 .collage-img img {
    max-height: 460px;
  }

  .collage-4 .collage-img img {
    max-height: 490px;
  }

  .collage-6 .collage-img img {
    max-height: 400px;
  }

  .collage-7 .collage-img img {
    max-height: 460px;
  }

  .collage-8 .collage-img img {
    max-height: 270px;
    min-height: 260px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 370px;
    max-height: 370px;
  }

  .collage-10 .collage-img img {
    min-height: 250px;
    max-height: 250px;
  }
}

@media screen and (max-width: 500px) {
  .collagen {
    padding: 3rem 2rem;
  }

  .collage-1 {
    padding: 3rem 2rem 0 2rem;
  }

  .collage-1 .collage-text p {
    min-width: 200px;
  }

  .collage-3 .collage-img img {
    max-height: 450px;
  }

  .collage-4 .collage-img img {
    max-height: 470px;
  }

  .collage-6 .collage-img img {
    max-height: 380px;
  }

  .collage-7 .collage-img img {
    max-height: 450px;
  }

  .collage-8 .collage-img img {
    max-height: 260px;
    min-height: 260px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 350px;
    max-height: 350px;
  }

  .collage-10 .collage-img img {
    min-height: 230px;
    max-height: 230px;
  }

  .collage-11 .collage-img img {
    min-height: 460px;
    max-height: 460px;
  }
}

@media screen and (max-width: 450px) {
  .collagen {
    padding: 2rem 1rem;
  }

  .collage-1 {
    padding: 2rem 1rem 0 1rem;
  }

  .collage-1 .collage-text p {
    min-width: 200px;
  }

  .collage-1 .collage-img img {
    max-height: 495px;
  }

  .collage-2 .collage-img img {
    max-height: 450px;
  }

  .collage-3 .collage-img img {
    max-height: 400px;
  }

  .collage-4 .collage-img img {
    max-height: 450px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 190px;
  }

  .collage-6 .collage-img img {
    max-height: 380px;
  }

  .collage-7 .collage-img img {
    max-height: 450px;
  }

  .collage-8 .collage-img img {
    max-height: 250px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 330px;
    max-height: 330px;
  }

  .collage-10 .collage-img img {
    min-height: 220px;
    max-height: 220px;
  }

  .collage-11 .collage-img img {
    min-height: 430px;
    max-height: 430px;
  }

  .to-the-top a {
    position: fixed;
    bottom: 0.1em;
    left: .25em;
  }
}

@media screen and (max-width: 413px) {
  .collagen {
    padding: 2rem 1rem;
  }

  .collage-1 {
    padding: 2rem 1rem 0 1rem;
  }

  .collage-1 .collage-text p {
    min-width: 200px;
  }

  .collage-1 .collage-img img {
    max-height: 495px;
  }

  .collage-2 .collage-img img {
    max-height: 450px;
  }

  .collage-3 .collage-img img {
    max-height: 400px;
  }

  .collage-4 .collage-img img {
    max-height: 430px;
    min-height: 380px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 180px;
  }

  .collage-6 .collage-img img {
    max-height: 360px;
    min-height: 300px;
  }

  .collage-7 .collage-img img {
    max-height: 400px;
    min-height: 400px;
  }

  .collage-8 .collage-img img {
    max-height: 240px;
    min-height: 230px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 310px;
    max-height: 310px;
  }

  .collage-10 .collage-img img {
    min-height: 210px;
    max-height: 210px;
  }

  .collage-11 .collage-img img {
    min-height: 420px;
    max-height: 420px;
  }

  .to-the-top a {
    position: fixed;
    bottom: 0.10em;
    left: .25em;
  }
}

@media screen and (max-width: 389px) {
  .collagen {
    padding: 2rem 1rem;
  }

  .collage-1 {
    padding: 2rem 1rem 0 1rem;
  }

  .collage-1 .collage-text p {
    min-width: 200px;
  }

  .collage-1 .collage-img img {
    max-height: 450px;
    height: 45vh;
    min-height: 350px;
  }

  .collage-2 .collage-img img {
    max-height: 450px;
  }

  .collage-3 .collage-img img {
    max-height: 370px;
  }

  .collage-4 .collage-img img {
    max-height: 400px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 160px;
  }

  .collage-6 .collage-img img {
    max-height: 330px;
  }

  .collage-7 .collage-img img {
    max-height: 380px;
  }

  .collage-8 .collage-img img {
    max-height: 220px;
    min-height: 200px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 290px;
    max-height: 290px;
  }

  .collage-10 .collage-img img {
    min-height: 190px;
    max-height: 190px;
  }

  .collage-11 .collage-img img {
    min-height: 395px;
    max-height: 395px;
  }

  .to-the-top a {
    position: fixed;
    bottom: 0.1em;
    left: .25em;
  }
}

@media screen and (max-width: 359px) {
  .collagen {
    padding: 2rem 1rem;
  }

  .collage-1 {
    padding: 2rem 1rem 0 1rem;
  }

  .collage-1 .collage-text p {
    min-width: 200px;
  }

  .collage-1 .collage-img img {
    max-height: 440px;
    height: 45vh;
    min-height: 350px;
  }

  .collage-2 .collage-img img {
    max-height: 410px;
  }

  .collage-3 .collage-img img {
    max-height: 330px;
    min-height: 300px;
  }

  .collage-4 .collage-img img {
    max-height: 340px;
    min-height: 300px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 150px;
  }

  .collage-6 .collage-img img {
    max-height: 280px;
    min-height: 280px;
  }

  .collage-7 .collage-img img {
    max-height: 320px;
    min-height: 280px;
  }

  .collage-8 .collage-img img {
    max-height: 190px;
    min-height: 160px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 250px;
    max-height: 250px;
  }

  .collage-10 .collage-img img {
    min-height: 160px;
    max-height: 150px;
  }

  .collage-11 .collage-img img {
    min-height: 330px;
    max-height: 310px;
  }
}

@media screen and (max-width: 320px) {
  .collagen {
    padding: 2rem 1rem;
  }

  .collage-1 {
    padding: 2rem 1rem 0 1rem;
  }

  .collage-1 .collage-text p {
    min-width: 200px;
  }

  .collage-1 .collage-img img {
    max-height: 350px;
    height: 45vh;
    min-height: 350px;
  }

  .collage-2 .collage-img img {
    max-height: 330px;
    min-height: 330px;
  }

  .collage-3 .collage-img img {
    max-height: 270px;
    min-height: 260px;
  }

  .collage-4 .collage-img img {
    max-height: 280px;
    min-height: 260px;
  }

  .collage-5 .collage-img img {
    min-width: auto;
    min-height: 130px;
  }

  .collage-6 .collage-img img {
    max-height: 240px;
    min-height: 220px;
  }

  .collage-7 .collage-img img {
    max-height: 260px;
    min-height: 260px;
  }

  .collage-8 .collage-img img {
    max-height: 160px;
    min-height: 150px;
  }

  .collage-9 .collage-img img {
    min-width: auto;
    min-height: 200px;
    max-height: 200px;
  }

  .collage-10 .collage-img img {
    min-height: 140px;
    max-height: 110px;
  }

  .collage-11 .collage-img img {
    min-height: 270px;
    max-height: 260px;
  }
}


/* Mit Bildern Geschichten erzählen */

/* Mahlzeit */

.mahlzeit {
  padding: 3rem 4rem 4rem 4rem;
  background-color: #fff;
}

.mahlzeit-text {
  width: 600px;
  padding: 1rem;
  padding-bottom: 4rem;
}

.mahlzeit-text p {
  padding-bottom: 1rem;
}

.mahlzeit-images {
  display: flex;
  flex-wrap: wrap;
}

.mahlzeit-images article {
  padding: 1rem;
  width: calc(100% / 5);
}

.mahlzeit-images img {
  width: 100%;
}

.uhrzeit {
  text-align: center;
  padding: 1.5rem;
}

.uhrzeit h3 {
  font-weight: 200;
}

/* Portrait */

.portrait {
  display: flex;
  padding: 6rem 4rem 9rem 4rem;
  justify-content: space-between;
  background-color: #DBDBDB;
}

.portrait-text {
  /* width: 600px; */
  padding: 1rem;
  padding-bottom: 2rem;
}

.portrait-text h5 {
  padding-top: 0;
}

.portrait-text p {
  padding-bottom: 1rem;
  max-width: 800px;
}

/* Portrait Images */
/* Slideshow */

.portrait-images {
  display: flex;
  justify-content: end;
  padding: 3.75rem 1rem 1rem 3rem;
}

.slideshow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width:810px;
  height: 574px;
}

.slideshow {
  width: 810px;
  height: 100%;
  position: relative;
  /* border: .75px solid #000; */
}

.slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide-img {
  width: 100%;
}

.pfeil {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pfeil-links {
  left: 0;
}

.pfeil-links svg {
  rotate: -90deg;
}

.pfeil-rechts {
  right: 0;
}

.pfeil-rechts svg {
  rotate: 90deg;
}

.pfeil-links svg,
.pfeil-rechts svg {
  height: 10px;
  stroke-width: .06rem;
  transition: stroke-width .3s ease;
}

.pfeil-links:hover svg,
.pfeil-rechts:hover svg {
  stroke-width: .15rem;
}

.pfeil-links svg .cls-1,
.pfeil-rechts svg .cls-1 {
  fill: none;
  transition: stroke .3s ease;
}

.pfeil-links:hover svg .cls-1,
.pfeil-rechts:hover svg .cls-1 {
  stroke: #000;
}

.aktiv {
  opacity: 1;
}

/* Ort */

/* Portrait */

.ort {
  padding: 5rem 4rem 3rem 4rem;
  background-color: #fff;
}

.ort-text {
  width: 600px;
  padding: 1rem;
  padding-bottom: 2rem;
}

.ort-text h5 {
  padding-top: 0;
}

.ort-text p {
  padding-bottom: 1rem;
}

.ort-images {
  display: flex;
  flex-wrap: wrap;
}

.ort-images img {
  width: calc(100% / 6);
  padding: 1rem;
}

.mbge-footer {
  background-color: #fff;
}

@media screen and (max-width: 1536px) {
  .slideshow-container {
    width:710px;
    height: 503px;
  }
  
  .slideshow {
    width: 710px;
  }
}

@media screen and (max-width: 1366px) {
  .mahlzeit {
    padding: 1rem 4rem 4rem 4rem;
  }

  .portrait {
    padding: 5rem 4rem 8rem 4rem;
  }

  .ort {
    padding: 5rem 4rem 3rem 4rem;
  }
}

@media screen and (max-width: 1365px) {
  .slideshow-container {
    width:610px;
    height: 432px;
  }
  
  .slideshow {
    width: 610px;
  }

  .ort-images img {
    width: calc(100% / 4);
    padding: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .portrait {
    padding: 3rem 4rem 6rem 4rem;
  }

  .slideshow-container {
    width:510px;
    height: 361px;
  }
  
  .slideshow {
    width: 510px;
  }

  .ort {
    padding: 3rem 4rem 1rem 4rem;
  }
}

@media screen and (max-width: 950px) {
  .mahlzeit-text {
    width: auto;
  }

  .uhrzeit {
    padding: 1rem;
  }

  .portrait {
    display: flex;
    flex-direction: column;
    padding: 3rem 4rem 5rem 4rem;
  }

  .slideshow-container {
    width:610px;
    height: 432px;
  }

  .slideshow {
    width: 610px;
    height: 100%;
  }

  .portrait-images {
    display: flex;
    justify-content: center;
    padding: 1rem;
  }

  .ort-text {
    width: auto;
  }
}

@media screen and (max-width: 875px) {
  .mahlzeit-images article {
    padding: 1rem;
    padding-bottom: 0;
    width: calc(100% / 4);
  }
}

@media screen and (max-width: 820px) {
  .mahlzeit-images article {
    width: calc(100% / 3);
  }
  
  .ort-images img {
    width: calc(100% / 3);
    padding: 1rem;
  }
}

@media screen and (max-width: 770px) {
  .slideshow-container {
    width:100%;
    height: 432px;
  }

  .slideshow {
    width: 610px;
    height: 100%;
  }
}

@media screen and (max-width: 750px) {
  .slideshow-container {
    width:100%;
    height: 418px;
  }
}

@media screen and (max-width: 730px) {
  .slideshow-container {
    width:100%;
    height: 404px;
  }
}

@media screen and (max-width: 700px) {
  .slideshow-container {
    width:100%;
    height: 383px;
  }
}

@media screen and (max-width: 680px) {
  .slideshow-container {
    width:100%;
    height: 368px;
  }
}

@media screen and (max-width: 650px) {
  .mahlzeit-images article {
    width: calc(100% / 2);
  }

  .slideshow-container {
    width:100%;
    height: 347px;
  }

  .ort-images img {
    width: calc(100% / 2);
    padding: 1rem;
  }
}

@media screen and (max-width: 610px) {
  .slideshow-container {
    width:100%;
    height: 319px;
  }
}

@media screen and (max-width: 580px) {
  .mahlzeit {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .portrait {
    padding: 3rem 3rem 4rem 3rem;
  }

  .slideshow-container {
    width:100%;
    height: 320px;
  }

  .ort {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 550px) {
  .slideshow-container {
    width:100%;
    height: 299px;
  }
}

@media screen and (max-width: 530px) {
  .mahlzeit {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .portrait {
    padding: 3rem 2rem 4rem 2rem;
  }
  .slideshow-container {
    width:100%;
    height: 307px;
  }

  .ort {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 500px) {
  .slideshow-container {
    width:100%;
    height: 286px;
  }
}

@media screen and (max-width: 480px) {
  .slideshow-container {
    width:100%;
    height: 272px;
  }
}

@media screen and (max-width: 450px) {
  .mahlzeit {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .portrait {
    padding: 3rem 1rem 3rem 1rem;
  }

  .portrait-text {
    padding: 1rem;
  }

  .slideshow-container {
    width:100%;
    height: 273px;
  }

  .ort {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 430px) {
  .mahlzeit-images article {
    width: calc(100% / 1);
  }

  .slideshow-container {
    width:100%;
    height: 259px;
  }

  .ort-images img {
    width: calc(100% / 1);
  }
}

@media screen and (max-width: 415px) {
  .slideshow-container {
    width:100%;
    height: 248px;
  }
}

@media screen and (max-width: 393px) {
  .slideshow-container {
    width:100%;
    height: 233px;
  }
}

@media screen and (max-width: 360px) {
  .slideshow-container {
    width:100%;
    height: 209px;
  }
}

@media screen and (max-width: 330px) {
  .slideshow-container {
    width:100%;
    height: 188px;
  }
}

@media screen and (max-width: 300px) {
  .slideshow-container {
    width:100%;
    height: 167px;
  }
}

@media screen and (max-width: 280px) {
  .slideshow-container {
    width:100%;
    height: 153px;
  }
}


/* Mensch + Mensch */

.work-container {
  height: 100vh;
  min-height: 765px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-container {
  background-color: #fff;
}

.work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  padding: 4rem 4rem;
  /* max-height: 1000px; */
}

.work-left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 1rem;
}

.work-text h5 {
  padding-top: 0;
}

.work-text p {
  padding-top: 1rem;
  max-width: 450px;
}

.work-btns {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.work-btn {
  /* display: block; */
  /* background-color: #EAEAEA; */
  width: 24.5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #000;
  padding: 0;
  margin-top: .5em;
  position: relative;
  cursor: pointer;
}

.work-btn:hover {
  background-color: #000;
  }

.work-btn::before,
.work-btn::after {
  content: '';
  display: block;
  width: 9px;
  height: 1.4px;
  background-color: #000;
  position: absolute;
}

.work-btn:hover::before,
.work-btn:hover::after {
  background-color: #fff;
}


.work-btn::before {
  top: 61%;
  right: 26%;
  rotate: -45deg;
}

.work-btn::after {
  top: 34%;
  right: 26%;
  rotate: 45deg;
}

.previous-btn {
  transform: rotate(180deg);
}

.work-img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  padding: 1rem;
  padding-left: 2rem;
  display: grid;
  justify-content: end;
  align-items: center;
}

.work-x img {
  width: 100%;
  height: auto;
  max-height: 550px;
}  

.work-1 img {
  max-height: 500px;
}

.work-3 img {
  max-height: 500px;
}

.work-8 img {
  min-width: 1210px;
}

.work-x {
  background-color: #fff;
  width: 100vw;
  justify-content: space-between;
}

@media screen and (max-width: 1535px) {
  .work-8 img {
    min-width: 1010px;
  }
}

@media screen and (max-width: 1365px) {
  .work-8 img {
    min-width: 910px;
  }
}

@media screen and (max-width: 1250px) {
  .work-8 img {
    min-width: 710px;
  }
}

@media screen and (max-width: 1024px) {
  .work {
    height: 100vh;
    min-height: 765px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .work-left-column {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .work-img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .work-x img {
    width: auto;
    height: 50vh;
    max-height: 400px;
    min-height: 380px;
  }

  .work-text p {
    max-width: none;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }
}

@media screen and (max-width: 1023px) {
  .work-4 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }

  .work-5 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 330px;
    min-height: 330px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 310px;
    min-height: 310px;
  }

  .work-8 img {
    min-width: 510px;
}

  .work-9 img {
    /* min-width: 100px; */
    max-height: 330px;
    min-height: 330px;
  }

  .work-10 img {
    /* min-width: 100px; */
    max-height: 330px;
    min-height: 330px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }
}

@media screen and (max-width: 920px) {
  .work-8 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 200px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 320px;
    min-height: 320px;
  }
}

@media screen and (max-width: 890px) {
  .work-1 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }

  .work-2 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 320px;
    min-height: 320px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }
}

@media screen and (max-width: 850px) {
  .work-7 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 380px;
    min-height: 380px;
  }
}

@media screen and (max-width: 800px) {
  .work-5 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 240px;
    min-height: 240px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 340px;
    min-height: 340px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }
}

@media screen and (max-width: 750px) {
  .work-1 img {
    /* min-width: 100px; */
    max-height: 310px;
    min-height: 310px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 220px;
    min-height: 220px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 330px;
    min-height: 330px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }
}

@media screen and (max-width: 700px) {
  .work-2 img {
    /* min-width: 100px; */
    max-height: 330px;
    min-height: 330px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 200px;
    min-height: 200px;
    min-width: 310px;
  }

  .work-10 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 320px;
    min-height: 320px;
  }
}

@media screen and (max-width: 650px) {
  .work-4 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 310px;
    min-height: 310px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 290px;
    min-height: 290px;
  }
}

@media screen and (max-width: 610px) {
  .work-5 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 170px;
    min-height: 170px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }

  .work-10 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 240px;
    min-height: 240px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 270px;
    min-height: 270px;
  }
}

@media screen and (max-width: 580px) {
  .work {
    padding: 3rem 3rem;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 360px;
    min-height: 360px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 240px;
    min-height: 240px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 150px;
    min-height: 150px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 210px;
    min-height: 210px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 240px;
    min-height: 240px;
  }
}

@media screen and (max-width: 500px) {
  .work {
    padding: 3rem 2rem;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 140px;
    min-height: 140px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 200px;
    min-height: 200px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 220px;
    min-height: 220px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }
}

@media screen and (max-width: 450px) {
  .work {
    padding: 2rem 1rem;
  }

  .work-x .collage-img img {
    max-height: 450px;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 220px;
    min-height: 220px;
  }

  .work-6 img {
    /* min-width: 100px; */
    max-height: 380px;
    min-height: 380px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 210px;
    min-height: 210px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 130px;
    min-height: 130px;
    min-width: 210px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 200px;
    min-height: 200px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 210px;
    min-height: 210px;
  }
}

@media screen and (max-width: 389px) {
  .work-1 img {
    /* min-width: 100px; */
    max-height: 290px;
    min-height: 290px;
  }

  .work-2 img {
    /* min-width: 100px; */
    max-height: 320px;
    min-height: 320px;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 280px;
    min-height: 280px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 200px;
    min-height: 200px;
  }

  .work-6 img {
    /* min-width: 100px; */
    max-height: 350px;
    min-height: 350px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 190px;
    min-height: 190px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 120px;
    min-height: 120px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 300px;
    min-height: 300px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 170px;
    min-height: 170px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 190px;
    min-height: 190px;
  }
}

@media screen and (max-width: 359px) {
  .mpm-intro {
    min-height: 710px;
  }

  .work-1 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-2 img {
    /* min-width: 100px; */
    max-height: 270px;
    min-height: 270px;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-5 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-6 img {
    /* min-width: 100px; */
    max-height: 290px;
    min-height: 290px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 170px;
    min-height: 170px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 100px;
    min-height: 100px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 150px;
    min-height: 150px;
  }

  .work-10 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-11 img {
    /* min-width: 100px; */
    max-height: 320px;
    min-height: 320px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 270px;
    min-height: 270px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 150px;
    min-height: 150px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 160px;
    min-height: 160px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 160px;
    min-height: 160px;
  }
}

@media screen and (max-width: 320px) {
  .work {
    min-height: 800px;
  }

  .work-1 img {
    /* min-width: 100px; */
    max-height: 210px;
    min-height: 210px;
  }

  .work-2 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 210px;
    min-height: 210px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 150px;
    min-height: 150px;
  }

  .work-5 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-6 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 140px;
    min-height: 140px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 90px;
    min-height: 90px;
    min-width: 180px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 110px;
    min-height: 110px;
  }

  .work-10 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }

  .work-11 img {
    /* min-width: 100px; */
    max-height: 270px;
    min-height: 270px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 260px;
    min-height: 260px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 120px;
    min-height: 120px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 140px;
    min-height: 140px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 140px;
    min-height: 140px;
  }
}

@media screen and (max-width: 280px) {
  .work-1 img {
    /* min-width: 100px; */
    max-height: 180px;
    min-height: 180px;
  }

  .work-2 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }

  .work-3 img {
    /* min-width: 100px; */
    max-height: 190px;
    min-height: 190px;
  }

  .work-4 img {
    /* min-width: 100px; */
    max-height: 130px;
    min-height: 130px;
  }

  .work-5 img {
    /* min-width: 100px; */
    max-height: 160px;
    min-height: 160px;
  }

  .work-6 img {
    /* min-width: 100px; */
    max-height: 230px;
    min-height: 230px;
  }

  .work-7 img {
    /* min-width: 100px; */
    max-height: 120px;
    min-height: 120px;
  }

  .work-8 img {
    /* min-width: 100px; */
    max-height: 80px;
    min-height: 80px;
    min-width: 180px;
  }

  .work-9 img {
    /* min-width: 100px; */
    max-height: 100px;
    min-height: 100px;
  }

  .work-10 img {
    /* min-width: 100px; */
    max-height: 210px;
    min-height: 210px;
  }

  .work-11 img {
    /* min-width: 100px; */
    max-height: 250px;
    min-height: 250px;
  }

  .work-12 img {
    /* min-width: 100px; */
    max-height: 240px;
    min-height: 240px;
  }

  .work-13 img {
    /* min-width: 100px; */
    max-height: 100px;
    min-height: 100px;
  }

  .work-14 img {
    /* min-width: 100px; */
    max-height: 120px;
    min-height: 120px;
  }

  .work-15 img {
    /* min-width: 100px; */
    max-height: 120px;
    min-height: 120px;
  }
}


/* to-the-top */

.to-the-top {
  position: fixed;
  bottom: .75em;
  left: 1em;
}

.to-the-top svg {
  height: 10px;
  stroke-width: .06rem;
  transition: stroke-width .3s ease;
}

.to-the-top:hover svg {
  stroke-width: .15rem;
}

.to-the-top svg .cls-1 {
  fill: none;
  transition: stroke .3s ease;
}

.to-the-top:hover svg .cls-1{
  stroke: #000;
}

/* footer */

.main-footer {
  width: 100%;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 100;
  height: 3rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-footer p {
  padding: 1rem;
}

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

.portfolio-footer a {
  margin-left: 5rem;
}

.portfolio-btn {
  color: #000;
  border: 1px solid #000;
  border-radius: 1rem;
  text-transform: uppercase;
  padding: .35rem .65rem;
  font-size: 12px;
  font-weight: 600;
  justify-self: end;
  text-align: center;
}

.portfolio-btn:hover {
  background-color: #000;
  color: #fff;
}

@media screen and (max-width: 530px) {
  .portfolio-footer {
    display: flex;
    flex-direction: column;
  }

  .portfolio-footer a {
    margin-left: 0;
  }
}

@media screen and (max-width: 490px) {
  .main-footer {
    justify-content: center;
  }

  .main-footer p {
    text-align: center;
  }
}

@media screen and (max-width: 380px) {
  .main-footer p {
    padding: 1rem 2.5rem;
  }
}