@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("fonts/roboto-condensed-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  --turkis: #22a7bb;
  --dunkel: #063f48;
  --hell: #eef5f6;
  --text: #222;
  --grau: #7a8a8f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  border-top: 4px solid #333;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  font-size: 12px;
  color: #66777c;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 8px 20px;
  flex-wrap: wrap;
}

.topbar span {
  white-space: nowrap;
}

.header {
  background: #fff;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav {
  background: var(--hell);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 22px 26px;
  min-height: 70px;
  flex: 1;
}

.nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #111;
}

.nav a.active {
  color: var(--turkis);
}

.search {
  margin-left: auto;
  color: var(--turkis);
  font-size: 24px;
}

.logo {
  width: 230px;
  min-width: 190px;
}

.hero {
  max-width: var(--max);
  margin: 18px auto 90px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 45px;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 25px;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dunkel);
}

.hero-text h1 span {
  color: var(--turkis);
}

.hero-text p {
  font-size: 17px;
  color: #555;
  margin: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #ddd;
}

.hero-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.corner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 70px solid var(--turkis);
  border-top: 70px solid transparent;
}

.quicklinks {
  max-width: 980px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.quick-card {
  background: #fff;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.quick-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section-title {
  max-width: 980px;
  margin: 0 auto 30px;
  padding: 0 20px;
  background: var(--hell);
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 21px;
}

.section-title span {
  color: var(--turkis);
  margin-right: 12px;
  font-size: 28px;
}

.locations {
  max-width: 980px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.location-card {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.location-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.location-body {
  padding: 22px 24px 0;
}

.location-body h2 {
  font-size: 20px;
  margin: 0 0 6px;
  color: #111;
}

.location-body h3 {
  font-size: 19px;
  margin: 0 0 22px;
  font-weight: 300;
  color: var(--turkis);
}

.address {
  background: var(--turkis);
  color: #fff;
  padding: 18px 24px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .03em;
}

.info {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-size: 14px;
}

.info strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
}

.info p {
  margin: 0 0 14px;
}

.footer {
  border-top: 1px solid #edf1f2;
  padding: 55px 20px 65px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}

.footer-logo {
  width: 260px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7a8a8f;
}

.partner-grid {
  max-width: 380px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.partner {
  min-height: 48px;
  border: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8a8f;
  font-size: 12px;
  text-align: center;
  padding: 8px;
  background: #fff;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .quicklinks,
  .locations {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .topbar-inner {
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-image img {
    height: 280px;
  }

  .info {
    grid-template-columns: 1fr;
  }
}
/* ==*/

.page-heading {
  max-width: var(--max);
  margin: 18px auto 70px;
  padding: 0 20px;
}

.page-heading h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dunkel);
}
/* ========================= E Services ========================= */
.info a {
  color: var(--turkis);
  font-weight: 600;
}

.info a:hover {
  color: var(--dunkel);
}
/* ========================= Kontaktseite ========================= */

.content-page {
  max-width: var(--max);
  margin: 0 auto 90px;
  padding: 0 20px;
}

.breadcrumb {
  margin: 20px 0 45px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--grau);
}

.breadcrumb a {
  color: var(--dunkel);
  font-weight: bold;
}

.breadcrumb span {
  margin-left: 10px;
}

.page-title {
  margin: 0 0 80px;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: #07131f;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  max-width: 760px;
  margin-bottom: 55px;
}

.contact-block {
  font-size: 14px;
  color: #1d2933;
}

.contact-block p {
  margin: 0 0 24px;
}

.contact-note {
  max-width: 1120px;
  margin: 35px 0 120px;
  font-size: 14px;
  color: #1d2933;
}

.section-heading {
  margin: 0 0 55px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--turkis);
}

.route-section {
  margin-bottom: 65px;
  max-width: 1050px;
  font-size: 14px;
  color: #1d2933;
}

.route-section h3 {
  margin: 0 0 20px;
  font-size: 19px;
  color: #111;
}

.route-section p {
  margin: 0 0 18px;
}

.map-link {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  border: 1px solid #b9c9cc;
}

.map-link img {
  width: 250px;
  height: 178px;
  object-fit: cover;
}

.map-link span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #111;
  padding: 8px 18px;
  font-weight: bold;
  font-size: 13px;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .page-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

  .contact-columns {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-note {
    margin-bottom: 80px;
  }
}

@media (max-width: 520px) {
  .page-title {
    font-size: 32px;
  }

  .section-heading {
    font-size: 28px;
  }
}