:root {
  --background-light: #fafbfc;
  --text-dark: #4e5a66;
  --text-light: #7e91a4;
  --background-medium: rgba(126, 145, 164, .16);
  --white: white;
  --primary: #f9b000;
}

body {
  background-color: var(--background-light);
  color: var(--text-dark);
  font-family: freight-sans-pro, sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
}

h1 {
  color: var(--text-light);
  margin-top: 20px;
  margin-bottom: 2rem;
  font-family: freight-text-pro, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.5rem;
}

h2 {
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 2rem;
  font-family: freight-text-pro, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 3rem;
}

h3 {
  color: #7e91a4;
  margin-top: 20px;
  margin-bottom: 2rem;
  font-family: freight-text-pro, sans-serif;
  font-size: 1.66rem;
  font-weight: 700;
  line-height: 2rem;
}

p {
  margin-bottom: 2rem;
}

a {
  color: var(--text-dark);
  text-decoration: underline;
}

ul {
  background-color: rgba(126, 145, 164, .16);
  border-radius: 8px;
  margin: 0 -40px 10px;
  padding: 48px 64px;
}

ol {
  background-color: var(--background-medium);
  border-radius: 8px;
  margin: 0 -40px 10px;
  padding: 48px 64px;
}

li {
  margin-bottom: 20px;
}

strong {
  font-weight: bold;
}

.navcontainer {
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  display: flex;
}

.logo {
  height: 40px;
  margin-bottom: 16px;
}

.navbar {
  background-color: var(--background-light);
  color: var(--background-light);
  padding-top: 28px;
  box-shadow: 0 1px 16px rgba(0, 0, 0, .2);
}

.nav-link {
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link.w--current {
  color: var(--text-light);
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.quick-info-section {
  background-color: var(--background-medium);
  height: 150px;
  padding-top: 0;
  padding-bottom: 0;
}

.section.herosection {
  height: 69vh;
  min-height: 600px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.section.bg--medium {
  background-color: var(--background-medium);
}

.section.bg--medium.hide {
  display: none;
}

.section.padding-small {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section.subpage-herosection {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 34%, rgba(39, 45, 51, .38)), url('../images/Praxis_23-03718_1.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 56vh;
  min-height: 500px;
  padding-bottom: 48px;
}

.section.subpage-herosection._2 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 34%, rgba(39, 45, 51, .38)), url('../images/Praxis_23-03640-2_1.webp');
}

.section.subpage-herosection._3 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 34%, rgba(39, 45, 51, .38)), url('../images/adobestock_130608128_1.webp');
}

.section.subpage-herosection._4 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 34%, rgba(39, 45, 51, .38)), url('../images/Praxis-Team-Porschen-Schieren-0022.jpg');
  background-position: 0 0, 50% 28%;
}

.section.hide {
  display: none;
}

.heroimage {
  object-fit: cover;
  width: 100vw;
  height: 69vh;
  min-height: 600px;
}

.container {
  padding-left: 40px;
  padding-right: 40px;
}

.container.is--wide {
  flex: 1;
  max-width: 1280px;
  position: relative;
}

.container.is--medium {
  max-width: 1040px;
}

.container.is--small {
  max-width: 820px;
}

.quick-info-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 16px 64px;
  display: grid;
  position: relative;
  transform: translate(0, -40%);
  box-shadow: 1px 1px 24px rgba(0, 0, 0, .16);
}

.quick-info-wrapper.corona-info {
  grid-template-columns: 1fr 1fr;
  transform: none;
}

.times-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.paragraph {
  text-align: right;
}

.button {
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  border-radius: 60px;
  padding: 10px 32px;
  font-weight: 600;
  transition: all .2s ease-in-out;
}

.button:hover {
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 1px 1px 8px rgba(78, 90, 102, .28);
}

.button.is--small {
  padding: 6px 20px;
  font-size: 1.125rem;
}

.button.hide {
  display: none;
}

.contact-text-wrap {
  flex-direction: column;
  flex: 1;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.div-block {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.heading {
  color: var(--text-light);
}

.text-image-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1.66fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.textimage-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.textimage-image {
  object-fit: cover;
  width: 60%;
  margin-right: 10%;
}

.textimage-image.is--right {
  margin-left: 10%;
  margin-right: 0%;
}

.subnavbar {
  background-color: var(--text-light);
  justify-content: center;
  align-items: center;
  display: flex;
}

.subnav-link {
  color: var(--white);
  padding: 16px;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
}

.dropdown-toggle {
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 24px;
  font-family: freight-sans-pro, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.dropdown-list {
  top: 183px;
  left: 0;
}

.dropdown-list.w--open {
  background-color: var(--text-light);
  color: var(--background-light);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 160px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.dropdown, .nav-menu {
  position: static;
}

.dropdown-link {
  opacity: .66;
  color: var(--white);
  white-space: pre-wrap;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  flex: 0 auto;
  padding: 20px 12px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  transition: all .2s;
}

.dropdown-link:hover {
  border-bottom-color: var(--primary);
  opacity: 1;
}

.dropdown-link.w--current {
  border-bottom: 2px solid var(--primary);
  opacity: 1;
  color: var(--white);
}

.div-block-2 {
  display: flex;
}

.link {
  color: var(--text-light);
  text-decoration: none;
}

.hero-gradient {
  background-image: linear-gradient(rgba(39, 45, 51, 0) 55%, rgba(39, 45, 51, .33));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.subpage-herowrap {
  color: var(--white);
  flex-direction: row;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.subhero-heading {
  color: var(--white);
}

.footer {
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-small {
  width: 80px;
  margin-right: 24px;
}

.footer-logo-wrap {
  align-items: center;
  display: flex;
}

.caption {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5rem;
}

.article-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.article-card {
  background-color: var(--background-medium);
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
  overflow: hidden;
}

.article-card:hover {
  transform: scale(1.025);
}

.article-card-image {
  object-fit: cover;
  order: -1;
  width: 40%;
}

.article-card-image.image-swap {
  order: 1;
}

.article-card-text-wrap {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 24px 24px;
  display: flex;
}

.heading-2 {
  margin-bottom: 1rem;
}

.subheadline {
  color: var(--text-light);
  text-align: center;
  font-family: freight-text-pro, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.rich-text-more-info {
  background-color: var(--background-medium);
  border-radius: 16px;
  margin-top: 48px;
  padding: 16px 32px;
}

.rich-text-more-info ul {
  background-color: rgba(0, 0, 0, 0);
  margin-left: 0;
  margin-right: 0;
  padding: 16px 48px;
}

.hidden-info {
  overflow: hidden;
}

.hidden-info.hide {
  display: none;
}

.team-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-columns: 1fr;
  margin-top: 48px;
  display: grid;
}

.team-item {
  text-align: center;
}

.team-image {
  object-fit: cover;
  border-radius: 100%;
  width: 240px;
  height: 240px;
}

.foto-grid {
  grid-column-gap: 4px;
  grid-row-gap: 16px;
  grid-template: "Area Area Area Area Area Area . . Area-2 Area-2 Area-2 Area-2"
                 "Area Area Area Area Area Area . . Area-2 Area-2 Area-2 Area-2"
                 "Area Area Area Area Area Area . . Area-2 Area-2 Area-2 Area-2"
                 "Area Area Area Area Area Area . . Area-2 Area-2 Area-2 Area-2"
                 "Area-3 Area-3 Area-3 Area-3 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4"
                 "Area-3 Area-3 Area-3 Area-3 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4"
                 "Area-5 Area-5 Area-5 Area-5 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4"
                 "Area-5 Area-5 Area-5 Area-5 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4 Area-4"
                 "Area-5 Area-5 Area-5 Area-5 Area-6 Area-6 Area-6 Area-6 Area-7 Area-7 Area-7 Area-7"
                 "Area-5 Area-5 Area-5 Area-5 Area-6 Area-6 Area-6 Area-6 Area-7 Area-7 Area-7 Area-7"
                 ". . . Area-8 Area-8 Area-8 Area-8 Area-8 Area-7 Area-7 Area-7 Area-7"
                 ". . . Area-8 Area-8 Area-8 Area-8 Area-8 Area-7 Area-7 Area-7 Area-7"
                 ". . . Area-8 Area-8 Area-8 Area-8 Area-8 . . . ."
                 / 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: stretch;
  display: grid;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.map {
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section-2 {
  background-color: var(--background-medium);
}

.corona-info-link {
  border: 4px solid var(--primary);
  background-color: var(--white);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  padding: 24px 8px;
  text-decoration: none;
  transition: transform .2s ease-in-out;
  display: flex;
  position: absolute;
  top: -25%;
  bottom: auto;
  left: auto;
  right: -5%;
  transform: rotate(20deg);
  box-shadow: 1px 1px 16px rgba(0, 0, 0, .36);
}

.corona-info-link:hover {
  transform: scale(1.05)rotate(20deg);
}

.corona-info-link.hide {
  display: none;
}

.rich-text-aktuelles {
  border-bottom: 2px none var(--text-light);
}

.rich-text-aktuelles strong {
  text-decoration: underline;
}

.paragraph-2 {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.paragraph-3 {
  margin-bottom: .5rem;
}

.text-block {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  p {
    margin-bottom: 1.75rem;
  }

  ul {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 48px;
    padding-right: 48px;
  }

  li {
    margin-bottom: 16px;
  }

  .navcontainer {
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .logo {
    height: 32px;
    margin-bottom: 8px;
  }

  .navbar {
    z-index: 999;
    padding-top: 16px;
    padding-bottom: 8px;
    position: relative;
    top: 0;
  }

  .section.quick-info-section {
    height: auto;
  }

  .section.herosection {
    height: 50vh;
    min-height: 450px;
  }

  .heroimage {
    object-fit: cover;
    width: 100vw;
    height: 100%;
    min-height: auto;
  }

  .quick-info-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 24px;
    padding-right: 24px;
    transform: translate(0, -20%);
  }

  .dropdown-toggle {
    width: 100%;
  }

  .dropdown-list.w--open {
    position: relative;
    top: 0;
  }

  .nav-menu {
    background-color: var(--background-light);
    width: 100%;
    padding-bottom: 32px;
    position: absolute;
    box-shadow: 0 8px 8px rgba(0, 0, 0, .2);
  }

  .div-block-2, .article-card {
    flex-direction: column;
  }

  .article-card-image {
    width: 100%;
    max-height: 180px;
  }

  .article-card-image.image-swap {
    order: -1;
  }

  .article-card-text-wrap {
    flex: 1;
  }

  .icon {
    color: var(--text-light);
  }

  .foto-grid {
    align-items: stretch;
    justify-items: stretch;
  }

  .menu-button, .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .corona-info-link {
    top: -46%;
    transform: rotate(20deg);
  }
}

@media screen and (max-width: 767px) {
  h1 {
    margin-bottom: 1.75rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }

  h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 2rem;
  }

  h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  ul {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .logo {
    height: 24px;
    margin-bottom: 0;
  }

  .navbar {
    padding-top: 0;
  }

  .nav-link {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.herosection {
    height: 40vh;
    min-height: 280px;
  }

  .section.padding-small {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section.subpage-herosection {
    height: 30vh;
    min-height: 280px;
    padding-bottom: 16px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quick-info-wrapper {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
    margin-right: 0;
    transform: translate(0, -10%);
  }

  .text-image-wrapper {
    flex-direction: column;
  }

  .textimage-text-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .textimage-image {
    width: 100%;
    margin-right: 0%;
  }

  .textimage-image.is--right {
    order: -1;
    margin-left: 0%;
  }

  .link {
    font-size: 1rem;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .logo-small {
    width: 64px;
    margin-right: 15px;
  }

  .footer-logo-wrap {
    margin-bottom: 24px;
  }

  .caption {
    font-size: .9rem;
    line-height: 1.25rem;
  }

  .article-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .article-card-image {
    max-height: 200px;
  }

  .subheadline {
    font-size: 1.5rem;
  }

  .button-wrap {
    margin-bottom: 16px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .team-image {
    width: 160px;
    height: 160px;
  }

  .corona-info-link {
    top: 8%;
    right: 2%;
    transform: rotate(20deg);
  }
}

@media screen and (max-width: 479px) {
  .section.herosection {
    height: 30vh;
  }

  .quick-info-wrapper {
    grid-row-gap: 9px;
    grid-template-columns: 1fr;
  }

  .footer-navitem-wrap {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .corona-info-link {
    width: 120px;
    height: 120px;
    top: -4%;
    right: -2%;
    transform: rotate(20deg);
  }

  .text-block {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_95446f3d-8be1-0f84-3a9f-f9eae680e17a-a93e1cc4, #w-node-_95446f3d-8be1-0f84-3a9f-f9eae680e17a-f62a75a1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_95446f3d-8be1-0f84-3a9f-f9eae680e17a-a93e1cc4, #w-node-_95446f3d-8be1-0f84-3a9f-f9eae680e17a-f62a75a1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


