html {
  font-size: 10px;
  font-weight: 300;
}
body {
  text-align: left;
  background-color: white;
  color: #464646;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin: 0;
}
* {
  box-sizing: border-box;
}
section, h1, h2, h3, p, div, table {
  position: relative;
}
h1 {
  text-shadow: 0.3rem 0.1rem 0.3rem #125275;
  text-align: left;
  font: 300 5rem/5rem Roboto;
  letter-spacing: 1.25px;
  color: #FFFFFF;
  text-shadow: 3px 1px 3px #125275;
  text-transform: uppercase;
}
h2 {
  font: 300 4rem/5rem Roboto;
  letter-spacing: 0.1rem;
  color: #125275;
  margin: 2rem 0 0;
}
h2:first-of-type {
  margin-top: 0;
}
h3 {
  font: 300 2.3rem/3rem Roboto;
  letter-spacing: 0.057rem;
  color: #2d7bbe;
  margin: 0 0 3rem;
}
p, li {
  font: 300 1.6rem/2.6rem Roboto;
  margin-bottom: 1rem;
}
.blueBlock {
  position: absolute;
  width: 3.6rem;
  height: 0.9rem;
  background-color: #2d7bbe;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
section {
  padding: 5rem 2rem;
}
section .content {
  max-width: 1120px;
  margin: 0 auto;
}
section:nth-of-type(odd) {
  background-color: #fafafa;
}
@media (max-width: 600px) {
  html {
    font-size: 2.6vw;
  }
  h2 {
    font: 300 3.8rem/4.3rem Roboto;
  }
  h3 {
    margin-top: 0.5rem;
    font: 300 2.2rem/3rem Roboto;
  }
  p {
    font: 300 1.5rem/2.4rem Roboto;
  }
}
header {
  background-color: white;
  padding: 2.2rem;
  border-bottom: 3px solid #2d7bbe;
}
header .content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font: 300 1.8rem/3rem Roboto;
  letter-spacing: 0.045rem;
}
header .content img {
  display: block;
}
header .content nav a {
  color: #125275;
  text-decoration: none;
  margin-left: 2rem;
}
header .content nav a.active {
  font-weight: 600;
  color: #2d7bbe;
}
@media (max-width: 720px) {
  header .content nav {
    display: none;
  }
  header .content img {
    width: 100%;
  }
}
footer {
  position: relative;
  background-color: #2d7bbe;
  color: white;
  font: 300 1.4rem/1.9rem Roboto;
}
footer .blueBlock {
  background-color: #125275;
}
footer .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
}
footer .content.top {
  padding: 2.5rem 2rem 0.5rem;
  font: normal 1.8rem/3rem Roboto;
}
footer .content.top img {
  margin-bottom: 2rem;
}
footer .content.top div, footer .content.top address {
  margin-left: 2rem;
  margin-bottom: 2rem;
}
footer .content.top address {
  font-style: normal;
}
footer .content.top a {
  color: white;
  text-decoration: none;
}
footer .content.bottom {
  padding: 1.5rem 2rem;
}
footer .content.bottom p {
  margin: 0;
  font: 300 1.4rem/1.9rem Roboto;
}
footer .content.bottom a {
  color: white;
  text-decoration: none;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  footer .content.bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  footer .content.bottom a:first-of-type {
    margin-left: 0;
  }
  footer .content.bottom nav {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  footer .content.top img {
    display: block;
    width: 100%;
  }
  footer .content.top div, footer .content.top address {
    margin-left: 0;
  }
  footer .content.bottom a:first-of-type {
    margin-left: 0;
  }
}
.headline.withBg {
  max-width: unset;
  padding-bottom: 1rem;
}
.headline.withBg h1 {
  max-width: 1120px;
  margin: 11rem auto 2rem auto;
}
.headline.withBg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .headline.withBg {
    height: 18.5rem;
  }
  .headline.withBg h1 {
    font: 300 3.3rem/5rem Roboto;
    letter-spacing: 0.21rem;
    margin: 1rem 0 0;
  }
}
form {
  margin-top: 2rem;
  position: relative;
}
form .headlineWithInfo {
  display: flex;
  margin: 3rem 0 1.5rem;
}
form .headlineWithInfo h3 {
  margin: 0;
}
form .headlineWithInfo .info {
  display: flex;
  align-items: center;
  position: relative;
}
form .headlineWithInfo .info a {
  display: flex;
  width: 2rem;
  height: 2rem;
  background-color: #125275;
  color: white;
  border-radius: 1rem;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
form .headlineWithInfo .info a:hover + p {
  display: block;
}
form .headlineWithInfo .info p {
  display: none;
  position: absolute;
  background-color: #125275;
  left: 4rem;
  color: white;
  font: 300 1.4rem/1.8rem Roboto;
  width: 30rem;
  z-index: 5;
  padding: 1rem;
}
@media (max-width: 600px) {
  form .headlineWithInfo {
    position: relative;
  }
  form .headlineWithInfo .info {
    position: unset;
  }
  form .headlineWithInfo .info p {
    left: calc((100vw - 35rem) / 2);
    bottom: 3rem;
  }
}
form .line {
  display: flex;
  justify-content: space-between;
  grid-gap: 1rem;
  margin-bottom: 1rem;
}
form .line div {
  flex-grow: 1;
}
form .line div:last-of-type {
  margin-right: 0;
}
form .line div input {
  display: block;
  width: 100%;
}
form .line div p {
  margin: 0 !important;
}
form h3 {
  margin: 3rem 0 1.5rem;
}
form input {
  border: 1px solid #2d7bbe;
  padding: 1.7rem;
  flex-grow: 1;
}
form input:last-of-type {
  margin-right: 0;
}
form p {
  margin: -0.7rem 0 0.5rem !important;
  color: #6bbaff;
  font-size: 1.4rem;
}
@media (max-width: 720px) {
  form .line {
    flex-direction: column;
  }
  form .line input, form .line div {
    margin: 0 0 1rem;
  }
}
a.button, button {
  font: normal 1.4rem/1.9rem Roboto;
  letter-spacing: 0.12rem;
  padding: 1.6rem 2.5rem;
  background-color: #125275;
  color: white;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}
a.button.white, button.white {
  background-color: white;
  font: normal 1.4rem/1.9rem Roboto;
  letter-spacing: 0.119rem;
  color: #125275;
  padding: 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}
a.button.disabled, button.disabled {
  background-color: #999;
  cursor: default;
}
.slider .slide {
  padding-left: 4rem;
}
.slider .slide:focus {
  outline: 0;
}
.slider .slide i {
  position: absolute;
  color: #125275;
  font-size: 2.5rem;
  left: 0.5rem;
}
.slider .slide h4 {
  font: normal 1.6rem/2.6rem Roboto;
  letter-spacing: 0.04rem;
  color: #125275;
  margin-top: 0;
}
.dialog {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.dialog .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: white;
  max-width: 480px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  max-height: 100%;
  overflow-y: auto;
  padding: 3.4rem;
  border-radius: 0.3rem;
}
.dialog .content:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.dialog .content .header {
  position: relative;
}
.dialog .content .header h2 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 3.6rem;
  color: white;
  padding: 0;
  color: #125275;
  text-align: center;
  margin-bottom: 1.2rem;
}
.dialog .content .header i {
  position: absolute;
  right: 0.2rem;
  color: white;
  font-size: 3rem;
  top: 0.5rem;
  cursor: pointer;
}
.dialog .content .header i:hover {
  color: #e0e0e0;
}
.dialog .content .body {
  overflow-y: auto;
  padding: 0 2rem;
  color: #333;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
}
.dialog .content .body p:last-of-type {
  margin-bottom: 0;
}
.dialog .content .footer {
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.dialog .content .footer button {
  margin: 1rem 0 0 1rem;
  font-size: 1.6rem;
  padding: 0.8rem 3rem;
}
.dialog .content .footer button:first-of-type {
  margin-left: 0;
}
.dialog .content .footer button:last-of-type {
  margin-right: 0;
}
.dialog.result .content {
  max-width: 40.8rem;
}
section.text {
  max-width: 1080px;
  margin: 0 auto;
  background-color: unset;
}
section.text h1 {
  font: 300 4rem/5rem Roboto;
  letter-spacing: 0.1rem;
  color: #125275;
  text-transform: unset;
  text-shadow: unset;
}
section.text h2 {
  font: 400 2.5rem/3rem Roboto;
  letter-spacing: 0.3rem;
  color: #125275;
  text-transform: uppercase;
  text-shadow: unset;
  margin: 6rem 0 3rem;
}
.home header .content {
  justify-content: center;
}
.home section.withBg {
  padding: 11rem 2rem;
}
.home section.withBg h1, .home section.withBg h2, .home section.withBg p {
  text-align: center;
  color: white;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.home section.withBg h1, .home section.withBg h2 {
  font: 400 5rem/6.1rem Roboto;
  letter-spacing: 0.3rem;
  margin: 0 auto;
  text-transform: uppercase;
}
.home section.withBg h2 {
  font-weight: 300;
}
.home section.withBg h3 {
  font: normal 1.9rem/2.5rem Roboto;
  letter-spacing: 0.352rem;
  text-transform: uppercase;
  margin: 3rem auto;
  color: white;
  text-align: center;
}
.home section.withBg p {
  font: 300 1.6rem/2.1rem Roboto;
  max-width: 768px;
}
.home section.withBg p b {
  font-weight: normal;
}
.home section.withBg .buttons {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.home section.withBg .buttons a {
  margin: 0 1rem;
  width: 20rem;
}
@media (min-width: 1200px) {
  .home section.withBg {
    padding-top: 12vw;
    padding-bottom: 12vw;
  }
}
@media (max-width: 600px) {
  .home section.withBg {
    height: unset;
    padding: 5rem 2rem;
  }
  .home section.withBg h1, .home section.withBg h2 {
    font: 400 2.5rem/3rem Roboto;
    letter-spacing: 0.21rem;
  }
  .home section.withBg h1 {
    margin-bottom: 1rem;
  }
  .home section.withBg h2 {
    font-weight: 300;
  }
}
.login header .content, .zugangscode header .content {
  justify-content: center;
}
.login section.withBg, .zugangscode section.withBg {
  padding: 4rem 2rem;
}
.login section.withBg > *, .zugangscode section.withBg > * {
  max-width: 515px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
.login section.withBg h1, .zugangscode section.withBg h1 {
  margin-top: 1rem;
}
.login section.withBg h1, .login section.withBg h2, .zugangscode section.withBg h1, .zugangscode section.withBg h2 {
  font: normal 1.9rem/2.5rem Roboto;
  letter-spacing: 0.352rem;
  text-transform: uppercase;
}
.login section.withBg h1, .login section.withBg h2, .zugangscode section.withBg h1, .zugangscode section.withBg h2 {
  margin-bottom: 2.5rem;
}
.login section.withBg hr, .zugangscode section.withBg hr {
  position: relative;
  height: 0;
  border: none;
  border-bottom: 2px solid #125275;
  margin: 4rem auto;
}
.login section.withBg .buttons, .zugangscode section.withBg .buttons {
  display: flex;
  margin: 2.5rem auto;
}
.login section.withBg .button, .login section.withBg button, .zugangscode section.withBg .button, .zugangscode section.withBg button {
  width: 20rem;
}
@media (min-width: 1200px) {
  .login section.withBg, .zugangscode section.withBg {
    padding-top: 12vw;
    padding-bottom: 12vw;
  }
}
@media (max-width: 600px) {
  .login section.headline.withBg, .zugangscode section.headline.withBg {
    height: unset;
  }
}
.zugangscode section.withBg p {
  margin-bottom: 2rem;
}
.zugangscode button {
  margin-top: 1rem;
}
.standort-suchen .infoSlider .content {
  display: flex;
  justify-content: space-between;
}
.standort-suchen .infoSlider .content h3 span {
  display: block;
}
.standort-suchen .infoSlider .content .slider {
  width: 70%;
}
.standort-suchen #map {
  height: 40rem;
  width: 100%;
  margin-bottom: 1rem;
}
.standort-suchen #map:focus {
  outline: 0;
}
.standort-suchen .legend {
  display: flex;
  align-items: center;
}
.standort-suchen .legend i {
  font-size: 2rem;
  font-style: normal;
  margin-right: 3rem;
}
.standort-suchen .searchResults {
  display: none;
}
.standort-suchen .selection {
  display: flex;
  margin-top: 3rem;
}
.standort-suchen .selection h2 {
  font: 300 3rem/3.9rem Roboto;
  letter-spacing: 0.075rem;
  color: #2d7bbe;
}
.standort-suchen .selection .left {
  width: 33%;
}
.standort-suchen .selection ul {
  list-style: none;
  padding: 0;
}
.standort-suchen .selection ul li {
  display: flex;
  align-items: center;
}
.standort-suchen .selection ul li img {
  height: 2.5rem;
  margin-right: 1rem;
  margin-top: -0.4rem;
}
.standort-suchen .selection button {
  float: right;
}
@media (max-width: 768px) {
  .standort-suchen .infoSlider .content {
    display: block;
  }
  .standort-suchen .infoSlider .content h3 span {
    display: inline;
  }
  .standort-suchen .infoSlider .content .slider {
    width: 100%;
  }
}
.standort-anbieten #unsere-leistungen .slider .slide {
  margin: 0 1rem;
}
.standort-anbieten #map {
  height: 40rem;
  width: 100%;
  margin-bottom: 1rem;
}
.standort-anbieten form p {
  color: red;
}
.standort-anbieten form .hidden {
  display: none;
}
.standort-anbieten .buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.standort-anbieten .buttons .locateAddress {
  display: none;
}
.impressum .text p:first-of-type strong {
  color: #2d7bbe;
}
