@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost/Jost-Italic-VariableFont_wght.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 75rem;
  margin: 0px auto;
}

.topic {
  color: #00aee7;
  background-color: rgb(239, 248, 255);
  padding: 0.5rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.button {
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 0.2rem;
  background-color: #00aee7;
  color: white;
  text-transform: uppercase;
  line-height: 1.5rem;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
}
.button:hover {
  background-color: #002a5d;
}

.plus {
  margin-left: 0.3rem;
}

.active {
  padding-bottom: 0.2rem;
  border-bottom: 0.1rem solid #00aee7;
  color: #00aee7;
}

.color {
  color: black;
}

.navigation {
  background-color: #002a5d;
}

.navigation__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 6.6rem;
}
@media (max-width: 75em) {
  .navigation__nav {
    margin: 0 1rem;
  }
}
@media (max-width: 62em) {
  .navigation__nav {
    height: 4rem;
  }
}

.logoImage {
  height: 6.5rem;
}
@media (max-width: 62em) {
  .logoImage {
    height: 4rem;
  }
}

.navigation__logo-link {
  text-decoration: none;
  color: black;
  font-size: 2rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}
@media (max-width: 36em) {
  .navigation__logo-link {
    font-size: 1.5rem;
  }
}

.navigation__logo-link span {
  color: red;
}

.navigation__ul {
  list-style: none;
  display: flex;
}
@media (max-width: 62em) {
  .navigation__ul {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 95vh;
    background-color: rgb(255, 255, 255);
    top: 4rem;
    left: -100%;
    text-align: center;
    display: block;
    transition: all 0.5s;
  }
}

#check:checked ~ .navigation__ul {
  left: 0%;
}

.navigation__li {
  padding: 2.7rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 62em) {
  .navigation__li {
    display: block;
    padding: 1rem 0.8rem;
    color: black !important;
  }
}

.navigation__li-link {
  text-decoration: none;
  color: white;
  transition: all 0.1s ease-in-out;
}
.navigation__li-link::after {
  animation: width__after-second 0.2s ease-in-out;
  content: "";
  display: block;
  width: 0;
  height: 0.1rem;
  background-color: #00aee7;
  margin-top: 0.2rem;
}
.navigation__li-link:hover {
  color: #00aee7;
}
.navigation__li-link:hover::after {
  animation: width__after 0.2s ease-in-out;
  content: "";
  display: block;
  width: auto;
  height: 0.1rem;
  background-color: #00aee7;
  margin-top: 0.2rem;
}
@media (max-width: 62em) {
  .navigation__li-link {
    font-weight: 600;
    font-size: 1.1rem;
    color: black;
  }
}

@keyframes width__after {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width__after-second {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.navigation__li:hover .navigation__ul-dropdown {
  display: block;
  animation: height 0.3s ease-in-out;
}
@media (max-width: 62em) {
  .navigation__li:hover .navigation__ul-dropdown {
    animation: none;
  }
}

@keyframes height {
  0% {
    height: 0px;
  }
  100% {
    height: 10rem;
  }
}
.booking__button {
  text-decoration: none;
  margin-left: 3rem;
  color: white;
  background-color: #ff0006;
  padding: 0.7rem 1.2rem;
  border-radius: 0.2rem;
  transition: all 0.3s ease-in-out;
}
.booking__button:hover {
  background-color: #b40003;
}
@media (max-width: 75em) {
  .booking__button {
    margin-left: 0.5rem;
  }
}
@media (max-width: 62em) {
  .booking__button {
    margin-left: 0rem;
  }
}

.booking__button span {
  font-weight: 700;
}

.logo {
  width: 2.5rem;
}
@media (max-width: 36em) {
  .logo {
    width: 1.5rem;
    margin-right: 0.5rem;
  }
}

.navigation__ul-dropdown {
  display: block;
  background-color: rgb(255, 255, 255);
  position: absolute;
  list-style: none;
  margin-top: 2.65rem;
  width: auto;
  overflow: hidden;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 62em) {
  .navigation__ul-dropdown {
    display: none;
    position: unset;
    box-shadow: none;
    margin-top: 0.5rem;
  }
}

.navigation__li-dropdown {
  transition: all 0.3s ease-in-out;
}
.navigation__li-dropdown:hover {
  color: white;
  background-color: #00aee7;
}
@media (max-width: 62em) {
  .navigation__li-dropdown {
    transition: none;
  }
  .navigation__li-dropdown:hover {
    color: black;
    background-color: none;
  }
}

#icon {
  font-size: 2rem;
  line-height: 2rem;
  margin-right: 1rem;
  cursor: pointer;
  display: none;
}
@media (max-width: 62em) {
  #icon {
    display: block;
  }
}

.navigation__dropdown-link {
  text-decoration: none;
  color: black;
  display: block;
  padding: 0.7rem 1rem;
}

.navigation__onscroll {
  z-index: 1000000;
  width: 100%;
  position: fixed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeInFromNone 0.5s ease-in-out;
}

@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 1;
    transform: translateY(-100%);
  }
  1% {
    display: block;
    opacity: 1;
    transform: translateY(-100%);
  }
  100% {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
.checkbtn {
  font-size: 2rem;
  margin: auto 0;
  cursor: pointer;
  line-height: 4rem;
  display: none;
  background-color: #002a5d;
  color: white;
}
@media (max-width: 62em) {
  .checkbtn {
    display: block;
  }
}

#check {
  display: none;
}

.footer {
  background-color: #002a5d;
  color: white;
  padding: 9rem 0 3rem 0;
}

.footer__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 75em) {
  .footer__flex {
    margin: 0 1rem;
  }
}
@media (max-width: 48em) {
  .footer__flex {
    flex-wrap: wrap;
  }
}

.footer__box {
  display: flex;
  flex-direction: column;
  width: 25%;
}
@media (max-width: 48em) {
  .footer__box {
    width: 45%;
  }
}
@media (max-width: 36em) {
  .footer__box {
    width: 100%;
  }
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer__heading {
  font-size: 1.2rem;
  font-weight: 500;
}
.footer__heading::after {
  content: "";
  display: block;
  width: 3rem;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
  height: 0.15rem;
  background-color: #00aee7;
}

.footer__text {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social {
  text-decoration: none;
  color: white;
}

.footer__icon {
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 1.7rem;
  padding: 0.5rem 0.5rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0.2rem;
}
.footer__icon:hover {
  background-color: #00aee7;
}

.footer__link {
  text-decoration: none;
  color: white;
  padding: 0.3rem 0;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.footer__link:hover {
  color: #00aee7;
}

.footer__contact {
  text-decoration: none;
  color: white;
  padding: 0.3rem 0;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
.footer__contact:hover {
  color: #00aee7;
}

.footer__contact-icon,
.footer__adress-icon {
  font-size: 1.2rem;
  padding: 0.3rem 0.3rem;
}

.footer__adress-icon {
  margin-bottom: 1rem;
  display: block;
  float: left;
}

.footer__adress {
  padding: 0.5rem 0;
  font-weight: 500;
}

.horizontal__row {
  margin-top: 2rem;
}
@media (max-width: 75em) {
  .horizontal__row {
    margin: 2rem 1rem 0 1rem;
  }
}

.footer__copyright {
  margin-top: 1rem;
  font-weight: 300;
  font-size: 0.9rem;
  text-align: center;
}

.code {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  color: white;
}
.code:hover {
  color: #00aee7;
}

.hire__box {
  position: fixed;
  bottom: 3rem;
  right: -10rem;
  text-align: center;
  background-color: #ff000a;
  color: white;
  font-weight: 500;
  padding: 1rem;
  rotate: -45deg;
  width: 30rem;
  z-index: 100;
}
@media (max-width: 36em) {
  .hire__box {
    bottom: 2rem;
    right: -11rem;
    font-size: 0.9rem;
  }
}

.header {
  height: 70vh;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 30%, rgba(255, 255, 255, 0.781) 45%, transparent 70%, transparent 100%), url(../images/header.jpg);
  background-position: 50% 50%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
@media (max-width: 48em) {
  .header {
    height: 60vh;
  }
}
@media (max-width: 36em) {
  .header {
    height: 50vh;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 40%, rgba(255, 255, 255, 0.741) 60%, transparent 90%, transparent 100%), url(../images/header.jpg);
    background-position: 50% 50%, 50% 50%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
  }
}

.header__stollhamm {
  height: 70vh;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 30%, rgba(255, 255, 255, 0.781) 45%, transparent 70%, transparent 100%), url(../images/stollhamm__header.jpeg);
  background-position: 50% 50%, 50% 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
@media (max-width: 48em) {
  .header__stollhamm {
    height: 60vh;
  }
}
@media (max-width: 36em) {
  .header__stollhamm {
    height: 50vh;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 40%, rgba(255, 255, 255, 0.741) 60%, transparent 90%, transparent 100%), url(../images/stollhamm__header.jpeg);
    background-position: 50% 50%, 50% 50%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
  }
}

.header__tossens {
  height: 70vh;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 30%, rgba(255, 255, 255, 0.781) 45%, transparent 70%, transparent 100%), url(../images/tossens__header.jpeg);
  background-position: 50% 70%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
@media (max-width: 48em) {
  .header__tossens {
    height: 60vh;
  }
}
@media (max-width: 36em) {
  .header__tossens {
    height: 50vh;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 40%, rgba(255, 255, 255, 0.741) 60%, transparent 90%, transparent 100%), url(../images/tossens__header.jpeg);
    background-position: 30% 50%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
  }
}

.header__brake {
  height: 70vh;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 30%, rgba(255, 255, 255, 0.781) 45%, transparent 70%, transparent 100%), url(../images/brake__header.jpeg);
  background-position: 50% 70%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}
@media (max-width: 48em) {
  .header__brake {
    height: 60vh;
  }
}
@media (max-width: 36em) {
  .header__brake {
    height: 50vh;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.944) 40%, rgba(255, 255, 255, 0.741) 60%, transparent 90%, transparent 100%), url(../images/brake__header.jpeg);
    background-position: 10% 50%;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
  }
}

.header__box {
  padding-top: 13rem;
}
@media (max-width: 75em) {
  .header__box {
    margin: 0 1rem;
  }
}
@media (max-width: 62em) {
  .header__box {
    width: 50vw;
    padding-top: 7rem;
  }
}
@media (max-width: 48em) {
  .header__box {
    width: 80vw;
  }
}
@media (max-width: 36em) {
  .header__box {
    padding-top: 5rem;
    width: 90vw;
  }
}

.header__topic {
  margin-bottom: 1.5rem;
  text-align: center;
}

.header__heading {
  font-weight: 600;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 36em) {
  .header__heading {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}

.header__subheading {
  font-weight: 500;
  line-height: 1.8rem;
  margin-bottom: 3rem;
  letter-spacing: 0.1rem;
  color: rgb(120, 120, 120);
}
@media (max-width: 36em) {
  .header__subheading {
    display: none;
  }
}

@media (max-width: 36em) {
  .header__button {
    font-size: 0.8rem;
  }
}

.sprechzeiten {
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}
.sprechzeiten:hover {
  color: blue;
}

.info__flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-top: -5rem;
}
@media (max-width: 75em) {
  .info__flex {
    margin: -4rem 1rem 1rem 1rem;
    justify-content: space-around;
  }
}

.info__box {
  width: 23rem;
  height: 23rem;
  background-color: #00aee7;
  border-radius: 0.2rem;
  color: white;
  position: relative;
}
@media (max-width: 75em) {
  .info__box {
    margin: 1rem 1rem 1rem 1rem;
  }
}

.info__box .info__svg-right {
  transition: all 0.5s ease;
  transform: translateX(0);
}

.info__box:hover .info__svg-right {
  transition: all 0.5s ease;
  transform: translateX(-1rem);
}

.middle {
  background-color: #002a5d;
}

.info__box-heading {
  margin: 9rem 1.5rem 0.5rem 1.5rem;
  font-weight: 500;
}

.info__box-subheading {
  margin: 0rem 1.5rem 2rem 1.5rem;
  line-height: 1.6rem;
}

.info__svg-left {
  width: 5rem;
  position: absolute;
  left: 1rem;
  top: 3rem;
}

.info__svg-right {
  width: 5rem;
  position: absolute;
  right: 0rem;
  top: 1.5rem;
  opacity: 0.5;
  display: block;
}

.info__icon {
  font-size: 1.5rem;
  color: #00aee7;
  background-color: white;
  border-radius: 1000000rem;
  padding: 0.5rem 0.5rem;
  margin-left: 1.5rem;
  margin-right: 1rem;
}

.info__number {
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease-in-out;
}
.info__number:hover {
  color: #002a5d;
}

.info__button {
  margin-left: 1.5rem;
  background-color: #ff000a;
}
.info__button:hover {
  background-color: #00aee7;
  color: #002a5d;
}

.info__button2 {
  margin-left: 1.5rem;
  background-color: #002a5d;
}
.info__button2:hover {
  background-color: rgb(239, 248, 255);
  color: #002a5d;
}

.opening {
  display: flex;
  justify-content: space-between;
  margin: 0.7rem 1.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.493);
}

.last {
  border-bottom: 1px solid transparent;
}

.about {
  padding-top: 7rem;
}
@media (max-width: 75em) {
  .about {
    margin: 0 1rem;
  }
}
@media (max-width: 62em) {
  .about {
    padding-top: 0rem;
  }
}

.about__flex {
  display: flex;
  gap: 3rem;
}
@media (max-width: 62em) {
  .about__flex {
    flex-direction: column;
  }
}
@media (max-width: 48em) {
  .about__flex {
    gap: 0rem;
    margin-top: -3rem;
  }
}

.about__one {
  width: 60%;
  position: relative;
  margin-top: 7rem;
}
@media (max-width: 62em) {
  .about__one {
    width: 100%;
  }
}
.about__one::after {
  content: "";
  display: block;
  background-color: #00aee7;
  width: 90%;
  height: 70%;
  position: absolute;
  right: 0;
  bottom: 10rem;
  border-radius: 0.2rem;
}
@media (max-width: 75em) {
  .about__one::after {
    display: none;
  }
}

.about__image {
  width: 96%;
  margin-bottom: 1rem;
  margin-right: 1rem;
  position: relative;
  z-index: 1;
  border-radius: 0.2rem;
}
@media (max-width: 62em) {
  .about__image {
    width: 100%;
  }
}

.about__two {
  width: 40%;
  margin-top: 3rem;
}
@media (max-width: 62em) {
  .about__two {
    width: 100%;
  }
}

.about__heading {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.about__subheading {
  letter-spacing: 0.1rem;
  color: rgb(120, 120, 120);
  margin-bottom: 2rem;
  line-height: 1.5rem;
}

.about__check {
  margin-bottom: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  display: flex;
  align-items: center;
}

.check {
  color: #00aee7;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.about__check-last {
  margin-bottom: 2rem;
}

.about__link {
  text-decoration: none;
  color: black;
}

.facilitys {
  padding: 7rem 0;
}
@media (max-width: 75em) {
  .facilitys {
    margin: 0rem 1rem;
  }
}

.facilitys__topic {
  margin: 0 auto 1.5rem auto;
}

.facilitys__heading {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}

.facilitys__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 3rem;
}
@media (max-width: 75em) {
  .facilitys__flex {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media (max-width: 36em) {
  .facilitys__flex {
    margin-top: 1rem;
  }
}

.facilitys__link {
  text-decoration: none;
  color: black;
}

.facilitys__box {
  width: 17.75rem;
  height: 22rem;
  background-color: rgb(245, 245, 245);
  transition: all 0.3s ease-in-out;
  position: relative;
  border-radius: 0.2rem;
}
@media (max-width: 75em) {
  .facilitys__box {
    margin: 1rem 1rem;
  }
}

.facilitys__box:hover .facilitys__box-image {
  transition: all 0.3s ease-in-out;
  transform: scale(1.02);
}

.facilitys__box-image {
  width: 15.75rem;
  margin: 1rem 1rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0.2rem;
}

.facilitys__box-heading {
  margin: 1rem 1rem 1rem 1rem;
  font-weight: 500;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
}

.facilitys__box:hover .facilitys__box-heading {
  transition: all 0.3s ease-in-out;
  color: #00aee7;
}

.facilitys__icon {
  width: 3rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  transition: all 0.3s ease-in-out;
}

.facilitys__box:hover .facilitys__icon {
  transition: all 0.3s ease-in-out;
  transform: rotateY(180deg);
}

.doctor {
  background-color: rgb(240, 244, 255);
  padding: 5rem 0;
  background-image: url(../images/background.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (max-width: 75em) {
  .doctor {
    padding: 3rem 1rem;
  }
}

.doctor__topic {
  margin: 0 auto 1rem auto;
}

.doctor__heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.doctor__flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.doctor__card-link {
  text-decoration: none;
  color: black;
}

.card {
  width: 21rem;
  border-radius: 0.2rem;
  position: relative;
  height: 30rem;
  overflow: hidden;
  padding-bottom: 5rem;
}

.doctor__image {
  width: 100%;
  border-radius: 0.2rem;
}

.doctor__info {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 17rem;
  margin: 0 auto 2rem auto;
  border-radius: 0.2rem;
  position: absolute;
  left: 50%;
  bottom: 0rem;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.card:hover .doctor__info {
  transform: translate(-50%, -1rem);
}

.doctor__info-heading {
  text-align: center;
  padding: 0.5rem 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.doctor__info-subheading {
  text-align: center;
  padding: 0rem 0 1rem 0;
  color: #00aee7;
}

.doctor__info-dropdown {
  background-color: #00aee7;
  display: block;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: -3rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.card:hover .doctor__info-dropdown {
  transition: all 0.3s ease-in-out;
  top: 0;
  opacity: 1;
}

.doctor__info-icon {
  color: white;
  font-size: 2rem;
}

.offer {
  background-color: rgb(240, 244, 255);
}

.offer__flex {
  background-color: #00aee7;
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-around;
  margin-bottom: -6rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 75em) {
  .offer__flex {
    margin: 0 1rem -6rem 1rem;
  }
}
@media (max-width: 48em) {
  .offer__flex {
    flex-direction: column;
  }
}

.offer__box {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 48em) {
  .offer__box {
    width: 100%;
  }
}

.offer__icon {
  width: 7rem;
}

.offer__text {
  font-weight: 400;
  line-height: 2rem;
  font-size: 1.5rem;
  color: white;
  text-align: center;
}
@media (max-width: 62em) {
  .offer__text {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 48em) {
  .offer__text {
    margin: 0 1rem 4rem 1rem;
  }
}

.offer__button {
  background-color: white;
  color: #002a5d;
}
.offer__button:hover {
  color: #00aee7;
}
@media (max-width: 48em) {
  .offer__button {
    margin-bottom: 4rem;
  }
}

.header__subpage {
  height: 30vh;
}

.subpage__link {
  text-decoration: none;
  color: black;
}

.header__box-subpage {
  padding-top: 8rem;
}
@media (max-width: 62em) {
  .header__box-subpage {
    padding-top: 6rem;
  }
}

@media (max-width: 36em) {
  .header__heading-subpage {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
  }
}

.contact__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5rem 0;
}
@media (max-width: 75em) {
  .contact__flex {
    margin: 0 1rem;
    justify-content: space-around;
  }
}

.contact__box {
  width: 23rem;
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(245, 245, 245);
}
@media (max-width: 75em) {
  .contact__box {
    margin: 1rem 0;
  }
}

.contact__icon {
  font-size: 2rem;
  padding: 0.8rem 0.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-radius: 0.2rem;
  color: white;
  background-color: #00aee7;
  transition: all 0.3s ease;
}
.contact__icon:hover {
  transform: scale(1.05);
  background-color: #002a5d;
}

.contact__heading {
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact__subheading {
  text-align: center;
}

.cotact__form-box {
  max-width: 60rem;
  padding-top: 2rem;
  margin: 0 auto 5rem auto;
  border-radius: 0.2rem;
  background-color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  padding: 2rem 0.5rem;
}
@media (max-width: 62em) {
  .cotact__form-box {
    margin: 0 1rem 1rem 1rem;
  }
}

.contact__form-topic {
  margin: 1rem auto 1rem auto;
}

.contact__form-heading {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact__offer {
  height: 10rem;
}

.googlemaps {
  height: 40rem;
  width: 100vw;
  max-width: 150vw;
}

.contact__offer-flex {
  position: relative;
  max-width: 75rem;
  top: -6rem;
}

.contact__footer {
  padding: 10rem 0 3rem 0;
}
@media (max-width: 36em) {
  .contact__footer {
    padding: 28rem 0 3rem 0;
  }
}

.contact__info__text {
  text-align: center;
  font-weight: 500;
  display: block;
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.cv__offer {
  background-color: white;
}

.cv {
  padding: 5rem 0;
}
@media (max-width: 75em) {
  .cv {
    margin: 0 1rem;
  }
}

.cv__flex {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}
@media (max-width: 48em) {
  .cv__flex {
    gap: 3rem;
    flex-direction: column-reverse;
  }
}

.cv__box-first {
  width: 40%;
}
@media (max-width: 62em) {
  .cv__box-first {
    width: 50%;
  }
}
@media (max-width: 48em) {
  .cv__box-first {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 36em) {
  .cv__box-first {
    width: 100%;
  }
}

.cv__box-second {
  width: 60%;
}
@media (max-width: 62em) {
  .cv__box-second {
    width: 50%;
  }
}
@media (max-width: 48em) {
  .cv__box-second {
    width: 100%;
  }
}

.cv__image {
  width: 100%;
}

.cv__topic {
  margin-bottom: 1rem;
}

.cv__header {
  font-weight: 500;
  font-size: 2rem;
}

.cv__text {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5rem;
  color: rgb(120, 120, 120);
}

.cv__contact {
  line-height: 1.5rem;
  font-size: 1.2rem;
  color: rgb(120, 120, 120);
}

.cv__link {
  text-decoration: none;
  color: rgb(120, 120, 120);
  line-height: 1.5rem;
  text-align: center;
}
.cv__link:hover {
  color: #00aee7;
}

.cv__icon {
  padding-top: 1rem;
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

.weekdays {
  width: 15rem;
  display: flex;
  justify-content: space-between;
  line-height: 2rem;
}

.weekdays span:nth-child(1) {
  font-weight: bold;
}

.cv__full-flex {
  display: flex;
  gap: 5rem;
}
@media (max-width: 48em) {
  .cv__full-flex {
    flex-direction: column;
    gap: 0;
  }
}

.cv__full {
  margin: 3rem 0;
  width: 50%;
}
@media (max-width: 48em) {
  .cv__full {
    width: 100%;
    margin: 1rem 0;
  }
}

.cv__full-heading {
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
@media (max-width: 48em) {
  .cv__full-heading {
    margin-top: 3rem;
  }
}

.cv__full-text {
  line-height: 1.5rem;
}

.cv__social {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.cv__social-icon {
  background-color: rgba(120, 120, 120, 0.189);
  border-radius: 10000rem;
  color: black;
  font-size: 2rem;
  padding: 0.3rem;
  transition: all 0.3s ease-in-out;
}
.cv__social-icon:hover {
  color: white;
  background-color: #00aee7;
}

.offer__fachbereich {
  background-color: white;
}

.fachbereich__active {
  text-decoration: none;
  color: white;
  padding: 1rem 1rem;
  margin: 0.3rem 0;
  width: 100%;
  background-color: #00aee7;
  font-weight: 500;
  letter-spacing: 0.03rem;
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}

.fachbereich {
  padding: 5rem 0;
}
@media (max-width: 75em) {
  .fachbereich {
    margin: 0 1rem;
  }
}

.fachbereich__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 48em) {
  .fachbereich__flex {
    flex-direction: column;
  }
}

.fachbereich__box-one {
  width: 28%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  background-color: rgb(245, 245, 245);
  padding: 1rem 1rem;
  border-radius: 0.2rem;
  position: sticky;
  z-index: 1;
  top: 7rem;
}
@media (max-width: 62em) {
  .fachbereich__box-one {
    width: 35%;
  }
}
@media (max-width: 48em) {
  .fachbereich__box-one {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 3rem;
  }
}

.fachbereich__box-two {
  width: 68%;
}
@media (max-width: 62em) {
  .fachbereich__box-two {
    width: 60%;
  }
}
@media (max-width: 48em) {
  .fachbereich__box-two {
    width: 100%;
  }
}

.fachbereich__opening {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.fachbereich__image {
  width: 100%;
}

.fachbereich__termin {
  background-color: #ff0006;
  text-align: center;
  margin-top: 2rem;
}
.fachbereich__termin:hover {
  background-color: #b40003;
}

.navbar__link {
  text-decoration: none;
  color: black;
  padding: 1rem 1rem;
  margin: 0.3rem 0;
  width: 100%;
  background-color: white;
  font-weight: 500;
  letter-spacing: 0.03rem;
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.navbar__link:hover {
  background-color: #00aee7;
  color: white;
}

.fachbereich__heading {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fachbereich__text {
  color: rgb(120, 120, 120);
  margin-bottom: 2rem;
  line-height: 1.7rem;
}

#accordion {
  margin: 1rem 0;
  max-width: 100%;
}

#accordion li {
  list-style-type: none;
  width: 100%;
  margin-bottom: 0.75rem;
  background-color: white;
  padding: 0.75rem;
  border-radius: 0.25rem;
}

#accordion li label {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  cursor: pointer;
  color: #002a5d;
}

#accordion li label span {
  transform: rotate(90deg);
  font-size: 1.4rem;
  color: #002a5d;
}

#accordion label + input[type=radio] {
  display: none;
}

#accordion .faq__content {
  padding: 0 0.75rem;
  line-height: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.faq__content p {
  line-height: 2rem;
}

#accordion label + input[type=radio]:checked + .faq__content {
  max-height: 400px;
  border-left: 1px solid rgb(245, 245, 245);
  border-right: 1px solid rgb(245, 245, 245);
  border-bottom: 1px solid rgb(245, 245, 245);
  border-radius: 0.2rem;
  padding: 1rem;
}

label {
  background-color: rgb(245, 245, 245);
  border-radius: 0.2rem;
}

.kinderarzt__heading {
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.kinderarzt__text {
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
}

.team__color {
  background-color: white;
}

.team {
  padding: 5rem 0;
}
@media (max-width: 62em) {
  .team {
    padding: 1rem 0 3rem 0;
  }
}

.team__info {
  width: 24rem;
}

.team__topic {
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.team__heading {
  font-weight: 500;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}
.team__heading::after {
  content: "";
  display: block;
  width: 7rem;
  height: 0.2rem;
  background-color: #00aee7;
  margin-top: 0.5rem;
}

.team__heading--second {
  margin-bottom: 0;
}
.team__heading--second::after {
  display: none;
}

.team__text {
  line-height: 1.5rem;
  color: rgb(120, 120, 120);
  letter-spacing: 0.05rem;
  margin-bottom: 3rem;
}

.team__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 5rem;
}
@media (max-width: 75em) {
  .team__flex {
    margin: 0 1rem;
    justify-content: space-around;
  }
}

.team__box {
  width: 18rem;
  margin-bottom: 1rem;
}

.team__box--first {
  width: 23rem;
  margin-bottom: 6rem;
}

.team__image {
  width: 100%;
  padding: 2rem;
  border-radius: 100rem;
}

.team__name {
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.team__job {
  text-align: center;
  color: #002a5d;
}

.team__heading--h2 {
  font-weight: 400;
  margin-bottom: 2rem;
}

.jobs__offer {
  background-color: white;
}

.jobs {
  padding: 5rem 0;
}
@media (max-width: 36em) {
  .jobs {
    padding: 2rem 0;
  }
}

.jobs__heading {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 75em) {
  .jobs__heading {
    margin: 0 1rem 2rem 1rem;
  }
}

.jobs__flex {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 48em) {
  .jobs__flex {
    justify-content: space-around;
  }
}

.jobs__box-link {
  color: black;
  text-decoration: none;
}

.jobs__box {
  position: relative;
  width: 23rem;
  height: 23rem;
  margin: 1rem 1rem;
  border-radius: 0.2rem;
  overflow: hidden;
  border: 1px solid rgb(200, 200, 200);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.jobs__box:hover {
  transform: scale(1.03);
}

.jobs__box-image {
  width: 100%;
  height: 11rem;
  margin-bottom: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}

.jobs__box-heading {
  font-weight: 500;
  margin: 0 1rem 1rem 1rem;
}

.jobs__box-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 17rem;
  margin: 0 1rem;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.jobs__box-button {
  background-color: #00aee7;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  padding-left: 6rem;
}

.jobs__icon {
  font-size: 1.2rem;
  color: black;
  margin-left: 0.5rem;
}

.ausschreibung {
  padding: 5rem 0 1rem 0;
}

.ausschreibung__flex-one {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 75em) {
  .ausschreibung__flex-one {
    margin: 0 1rem;
  }
}
@media (max-width: 48em) {
  .ausschreibung__flex-one {
    flex-direction: column;
  }
}

.ausschreibung__box-one {
  width: 48%;
  min-height: 27rem;
}
@media (max-width: 48em) {
  .ausschreibung__box-one {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.ausschreibung__heading-one {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
  line-height: 2.8rem;
}

.ausschreibung__text-one {
  line-height: 1.4rem;
  color: rgb(100, 100, 100);
  width: 90%;
}

.ausschreibung__image-one {
  width: 40%;
  position: absolute;
  top: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  border-radius: 0.2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 48em) {
  .ausschreibung__image-one {
    bottom: 10rem;
    top: auto;
    width: 80%;
  }
}
@media (max-width: 36em) {
  .ausschreibung__image-one {
    bottom: 15rem;
  }
}
.ausschreibung__image-one:hover {
  z-index: 2;
  transform: scale(1.03);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ausschreibung__image-two {
  width: 25%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  border-radius: 0.2rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 75em) {
  .ausschreibung__image-two {
    bottom: 2rem;
    right: 2rem;
  }
}
@media (max-width: 62em) {
  .ausschreibung__image-two {
    bottom: 8rem;
  }
}
@media (max-width: 48em) {
  .ausschreibung__image-two {
    width: 40%;
    bottom: 4rem;
  }
}
@media (max-width: 36em) {
  .ausschreibung__image-two {
    bottom: 10rem;
  }
}
.ausschreibung__image-two:hover {
  z-index: 2;
  transform: scale(1.03);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ausschreibung__flex-two {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 5rem;
}
@media (max-width: 62em) {
  .ausschreibung__flex-two {
    margin-top: 0rem;
  }
}
@media (max-width: 36em) {
  .ausschreibung__flex-two {
    margin-top: -7rem;
  }
}

.ausschreibung__box-two {
  width: 23rem;
}

.ausschreibung__heading-two {
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 36em) {
  .ausschreibung__heading-two {
    margin-bottom: 1rem;
  }
}

.ausschreibung__check {
  color: #00aee7;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.ausschreibung__text-two {
  line-height: 1.4rem;
  margin-bottom: 0.5rem;
  display: flex;
}

.ausschreibung__topic-two {
  margin: 5rem auto 1rem auto;
}

.ausschreibung__heading-three {
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
}

.vorteile {
  background-color: rgb(247, 249, 255);
  padding: 1rem 0 5rem 0;
}

.ausschreibung__flex-three {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.ausschreibung__box-three {
  width: 24rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  background-color: white;
  margin: 1rem 0;
  border-radius: 0.2rem;
  border: 1px solid rgb(241, 241, 241);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 3rem 0;
}

.ausschreibung__heading-three {
  margin-bottom: 3rem;
}

.ausschreibung__svg {
  width: 5rem;
  margin: 1rem 0;
}

.ausschreibung__heading-four {
  font-weight: 500;
  font-size: 1.3rem;
}

.ausschreibung__text-four {
  text-align: center;
  margin: 1rem 2rem;
  color: rgb(100, 100, 100);
  font-weight: 300;
}

.vorteile__offer {
  background-color: rgb(247, 249, 255);
}

.termin {
  padding: 5rem 0;
}

.termin__topic {
  margin: 0 auto 1rem auto;
}

.termin__heading {
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.faq {
  padding: 5rem 0;
}
@media (max-width: 62em) {
  .faq {
    padding: 2rem 0 5rem 0;
  }
}

.display__none {
  display: none;
}

.faq__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 85em) {
  .faq__flex {
    margin: 0 1rem;
  }
}
@media (max-width: 62em) {
  .faq__flex {
    flex-direction: column;
  }
}

.faq__heading {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 62em) {
  .faq__heading {
    font-size: 3rem;
  }
}
@media (max-width: 36em) {
  .faq__heading {
    font-size: 2.1rem;
  }
}

.faq__font {
  font-family: "Playfair Display", serif;
  font-weight: lighter;
  font-size: 1.8rem;
}
@media (max-width: 62em) {
  .faq__font {
    font-size: 3.5rem;
  }
}
@media (max-width: 36em) {
  .faq__font {
    font-size: 2.1rem;
  }
}

.faq__box {
  background-color: rgb(245, 246, 249);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 2rem;
}
@media (max-width: 62em) {
  .faq__box {
    display: none;
  }
}

.faq__box__heading {
  margin-bottom: 1rem;
}

.faq__text {
  color: rgb(103, 112, 131);
  margin-bottom: 2rem;
}

.faq__button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.faq__accordion {
  width: 70%;
}
@media (max-width: 62em) {
  .faq__accordion {
    width: 100%;
  }
}

.question {
  border-top: 1px solid rgb(165, 165, 165);
  width: 100%;
  padding: 1rem 0;
  transition: all 0.3s ease-in-out;
}

.question__heading {
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq__icon {
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.faq__icon.rotate {
  transform: rotate(180deg);
}

.question__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
  color: rgb(103, 112, 131);
  line-height: 1.5rem;
  font-size: 1.1rem;
  width: 80%;
  padding: 0 0;
}

.question__answer.open {
  padding: 1rem 0;
  max-height: 20rem;
}

/** Breakpoints */
/** 1200px oder schmaler */
/** 992px oder schmaler */
/** 768px oder schmaler */
/** 576px oder schmaler *//*# sourceMappingURL=main.css.map */