/* league-spartan-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 100;
  src: url("../files/fonts/league-spartan-v11-latin-100.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 200;
  src: url(".../files/fonts/league-spartan-v11-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* league-spartan-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "League Spartan";
  font-style: normal;
  font-weight: 300;
  src: url("../files/fonts/league-spartan-v11-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.startseite {
  background: none;
  background-color: #d8ecf4;
  color: #163147;
  font-family: "League Spartan";
}

/* Screen-reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header {
  margin-top: 40px;
}
.header .logo {
  width: 360px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 10px;
}
.header h1 {
  font-size: 24px;
  letter-spacing: 2px;
}
.header p {
  font-size: 14px;
  margin-top: 10px;
}

.content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 40px;
  gap: 6rem;
}
.content #leftS {
  grid-column: 1/9;
  display: flex;
  gap: 2rem;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.content #leftS .item {
  grid-column: 1/2;
  grid-row: 1/2;
  background-color: #d8ecf4;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  gap: 2rem;
  align-items: center;
}
.content #rightS {
  grid-column: 9/13;
  gap: 2rem;
  display: flex;
}
.content .image-section {
  position: relative;
}
.content .image-section .building-image {
  width: 300px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .image-section .homepage-button {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: white;
  color: #163147;
  font-size: 0.8rem;
  aspect-ratio: 1/1;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  line-height: 1.2rem;
}
.content .text-section {
  margin-top: 40px;
}
.content .text-section .logo-small {
  width: 240px;
  margin-bottom: 10px;
  opacity: 1; /* Default state: visible */
  transition: opacity 0.3s ease-in-out;
}
.content .text-section .logo-small.image-fading {
  opacity: 0; /* State for fading out/in */
}
.content .text-section h2 {
  font-size: 18px;
  letter-spacing: 1px;
}
.content .text-section h3 {
  font-size: 28px;
  font-weight: 300;
}
.content .text-section .location {
  font-size: 16px;
  letter-spacing: 1px;
  margin-top: 5px;
}
.content .locations {
  margin-top: 40px;
}
.content .locations ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.content .locations ul li {
  margin: 3px 0;
  margin-bottom: 0.3rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.content .locations ul li a {
  display: inline-block;
  line-height: 1rem;
  text-decoration: none;
  color: #163147;
  padding: 1rem;
  text-transform: uppercase;
  position: relative;
}
.content .locations ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translate(-50%, -96%);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}
.content .locations ul li a:hover::before, .content .locations ul li a.active::before, .content .locations ul li a.selected::before {
  transform: translate(-50%, 0);
}
.content .locations .highlight-location {
  display: inline-block;
  margin-top: 20px;
  background-color: white;
  color: #163147;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.content #selLogo-6 {
  height: 400px !important;
  width: auto !important;
  padding: 0 18px;
}

main {
  height: auto;
  overflow: auto;
}

.header {
  height: 151px;
}

.footerC {
  margin-top: 0px;
  width: 100%;
  aspect-ratio: 100/24;
  font-family: "League Spartan";
  bottom: 0;
  display: flex;
  margin: 0 auto;
  max-width: 1050px;
  align-items: center;
}
.footerC img {
  max-width: 350px;
  width: 100%;
}
.footerC .footer-imageC {
  flex: 0 0 80%;
  text-align: left;
}
.footerC .footer-imageC img {
  margin-left: 0;
  margin-right: auto;
}
.footerC .footer-textC {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
}
.footerC .footer-textC a {
  text-decoration: none;
  color: #296091;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.5rem;
}

.bildBaeume {
  width: 100%;
}
.bildBaeume .trees-background {
  background-image: url("../startseite/bilder/baeume.webp");
  background-size: cover;
  background-position: center;
  aspect-ratio: 100/24;
}

.textC {
  text-align: left;
  background-color: #296091;
  width: 100%;
  padding: 8rem 2rem;
  --max-width: 1050px;
}
.textC h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 100;
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 5rem;
  margin-bottom: 2rem;
}
.textC p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 100;
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.6rem;
}

.item {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

@media only screen and (max-width: 980px) {
  html {
    font-size: 13px;
  }
  .content #rightS {
    justify-content: center;
  }
  .footerC {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .content #leftS .item {
    grid-column: 1/2;
    grid-row: 1/2;
    background-color: #d8ecf4;
    height: 100%;
    width: 100vw;
    align-items: center;
    padding: 0;
  }
  .content {
    gap: 2rem;
  }
  .content #leftS {
    grid-column: 1/-1;
    grid-row: 2/3;
    display: flex;
    gap: 0rem;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .content #rightS {
    grid-column: 1/-1;
    grid-row: 1/2;
    gap: 0rem;
    display: flex;
  }
  .content .locations {
    margin-top: 0px;
  }
  .content .locations ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .content #leftS .item {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    align-items: center;
    max-width: 100vw;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 720px) {
  .content .image-section .building-image {
    width: 100%;
    max-width: 300px;
  }
  .content .text-section .logo-small {
    width: 100%;
    max-width: 240px;
  }
  .content .image-section {
    width: 50vw;
  }
  .content .text-section {
    width: 50vw;
    height: 100%;
  }
  footer {
    flex-direction: column;
  }
  .content #selLogo-6,
  .content #selLogo {
    height: auto !important;
    width: 100% !important;
    max-width: 30vw;
    height: auto;
  }
}
@media only screen and (max-width: 560px) {
  .content .image-section {
    position: relative;
  }
  .content .image-section a {
    max-width: 80px;
    max-height: 80px;
    aspect-ratio: 1/1;
    position: absolute;
  }
  .content .image-section a:nth-of-type(1) {
    top: 0;
    transform: translateY(0) !important;
  }
  .content .image-section a:nth-of-type(2) {
    top: auto;
    bottom: 0;
    transform: translateY(0) !important;
  }
  .footerC {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .content .text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 450px) {
  .content .image-section .building-image {
    width: 48vw;
    max-width: 300px;
  }
  .content .text-section .logo-small {
    width: 48vw;
    max-width: 240px;
  }
  .content .image-section .homepage-button {
    transform: translateY(20px);
  }
}/*# sourceMappingURL=style.css.map */