html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

a,
a:focus,
a:active,
input:focus,
input:active,
textarea:focus {
  -moz-outline: 0;
  outline: none;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

figure img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------ */

/*  !Fonts  */

/* ------------------------------------------------ */
/* lato-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-v24-latin-300.woff2") format("woff2");
}

/* lato-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v24-latin-regular.woff2") format("woff2");
}

/* mulish-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/mulish-v13-latin-regular.woff2") format("woff2");
}

/* mulish-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/mulish-v13-latin-italic.woff2") format("woff2");
}

/* mulish-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/mulish-v13-latin-500.woff2") format("woff2");
}

/* mulish-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Mulish";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/mulish-v13-latin-600.woff2") format("woff2");
}

/* ------------------------------------------------ */

/*  !Links  */

/* ------------------------------------------------ */

a {
  transition: color 0.3s ease;
}

a.btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid #4c767d;
  color: #184452;
  padding: 12px 16px;
  font-weight: 600;
  line-height: 1;
}

a.btn:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -49px -9px;
  margin: 2px 0 0 8px;

  transition: transform 0.2s ease;
}

a.btn:hover:after {
  transform: translateX(3px);
}

a.btn.white {
  color: #fff;
  border-color: #fff;
}

a.btn.white:after {
  background-position: -79px -9px;
}

a.arw {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

a.arw:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -49px -9px;
  margin: 2px 0 0 8px;

  transition: transform 0.2s ease;
}

a.arw:hover:after {
  transform: translateX(3px);
}

a.arw.pd {
  padding: 8px 16px;
  color: #184452;
  border: 2px solid #cce0e3;
}

/* ------------------------------------------------ */

/*  !Body  */

/* ------------------------------------------------ */

body {
  color: #184452;
  background-color: #fff;
  font-size: 17px;
  line-height: 1.5;
  font-family: "Mulish";
  font-weight: 400;
}

/* ------------------------------------------------ */

/*  !Container  */

/* ------------------------------------------------ */

.container {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}

@media screen and (max-width: 428px) {
  .container {
    padding: 0 20px;
  }
}

/* ------------------------------------------------ */

/*  !Header  */

/* ------------------------------------------------ */

header > .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 160px;
}

@media screen and (max-width: 1280px) {
  header > .container {
    padding: 40px;
  }
}

@media screen and (max-width: 428px) {
  header > .container {
    padding: 20px 20px;
    display: block;
  }
}

/* ------------------------------------------------ */

/*  !Logo  */

/* ------------------------------------------------ */
a.logo {
  display: block;
  width: 140px;
  height: 167px;
  background-image: url("/assets/images/layout/logo.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
}

@media screen and (max-width: 428px) {
  a.logo {
    width: 120px;
    height: 143px;
    background-size: contain;
    margin: 0 auto 32px auto;
  }
}

/* ------------------------------------------------ */

/*  !Navigation  */

/* ------------------------------------------------ */

nav {
  position: relative;
  display: flex;
}

nav > ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

nav > ul > li {
  position: relative;
  padding: 0 0 0 16px;
}

nav > ul > li > a {
  font-size: 111.764706%;
  color: #184452;
}

nav > ul > li a:hover {
  color: #5f939b;
}

nav > ul:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 56px;
  margin: 0 16px;
  background-color: #cce0e3;
}

nav > ul > li > a.active {
  background-color: #f2f7f7;
  padding: 6px 12px;
  border-radius: 2px;
}

a.termin {
  font-size: 111.764706%;
  display: inline-flex;
  align-items: center;
  color: #184452;
}

a.termin:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 19px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -9px -9px;
  margin-right: 8px;
}

@media screen and (max-width: 960px) {
  header nav {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  nav > ul > li {
    padding: 0 0 0 24px;
  }
  nav > ul:after {
    margin: 0 24px;
  }
}

/* ------------------------------------------------ */

/*  !Submenu  */

/* ------------------------------------------------ */

.submenu {
  position: absolute;
  top: 64px;
  left: -24px;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.125);
  border-bottom: 5px solid #cce0e3;
  background-color: #fff;
  z-index: 10;
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid #cce0e3;

  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);

  transition:
    transform 0.3s 0.1s ease,
    opacity 0.1s 0.1s ease;
}

.submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu:before {
  position: absolute;
  top: -8px;
  left: 112px;
  transform: rotateZ(-45deg);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
}

.submenu li {
  padding: 3px 0 3px 10px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -375px;
  break-inside: avoid-column;
}

.submenu a {
  color: #184452;
}

/* ------------------------------------------------ */

/*  !Mobile-Menu-Link  */

/* ------------------------------------------------ */

@media screen and (min-width: 961px) {
  a.mobile-menu-link {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  a.mobile-menu-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 2px solid #5f939b;
    border-radius: 4px;
    color: #184452;
    font-size: 94.117647%;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  a.mobile-menu-link:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url("/assets/images/layout/sprites.svg");
    background-repeat: no-repeat;
    background-position: -109px -9px;
    margin-left: 8px;
    transition: transform 0.2s ease;
  }

  a.mobile-menu-link.active:after {
    transform: rotateZ(45deg);
  }
}

@media screen and (max-width: 428px) {
  a.mobile-menu-link {
    display: flex;
    margin-bottom: 16px;
  }

  a.mobile-menu-link:after {
    margin-left: auto;
  }
}

/* ------------------------------------------------ */

/*  !Mobile Menu */

/* ------------------------------------------------ */

@media screen and (min-width: 961px) {
  .mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .mobile-menu {
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transform: translateY(-5px);

    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .mobile-menu.active {
    display: block;
    margin-bottom: 64px;
    opacity: 1;
    visibility: visible;
    height: auto;
    transform: translateY(0);
  }

  .mobile-menu .container > ul > li > a {
    display: block;
    padding: 16px;
    color: #184452;
    border-top: 1px dashed #5f939b;
  }

  .mobile-menu .container > ul > li > a.marked {
    color: #5f939b;
  }

  .mobile-menu .container > ul > li:last-child > a {
    border-bottom: 1px dashed #5f939b;
  }
}

/* ------------------------------------------------ */

/*  !Mobile Submenu  */

/* ------------------------------------------------ */

.mobile-submenu {
  padding: 0 20px 40px 20px;
  display: none;
}
.mobile-submenu.active {
  display: block;
}

.mobile-submenu li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -375px;
  padding-left: 10px;
}

.mobile-submenu a {
  display: block;
  padding: 4px 0;
  color: #184452;
}

.mobile-menu .container > ul > li > a.mobile-submenu-link {
  display: flex;
  align-items: center;
}

.mobile-menu .container > ul > li > a.mobile-submenu-link:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -109px -9px;
  margin: 0 0 0 auto;

  transition: transform 0.2s ease;
}

.mobile-menu .container > ul > li > a.mobile-submenu-link.active {
  color: #5f939b;
}

.mobile-menu .container > ul > li > a.mobile-submenu-link.active:after {
  transform: rotateZ(45deg);
}

/* ------------------------------------------------ */

/*  !Footer  */

/* ------------------------------------------------ */
footer {
  margin: -68px 0 0 0; /* Negative Margin, für das medicum-Logo */
}

.footer-inner {
  display: flex;
  gap: 140px;
  color: #fff;
  background-color: #4c767d;
  padding: 120px 120px 80px 120px;
}

.footer-inner-01 p + ul {
  margin-bottom: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #5f939b;
}

.footer-inner-01 ul:last-child li {
  padding: 4px 0;
}

.footer-inner a {
  color: #fff;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-inner a:hover {
  color: #cce0e3;
}

/* Icons */
.i-tel:before,
.i-mail:before,
.i-cal:before {
  content: "";
  display: inline-block;
  width: 19px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  margin-right: 12px;
}

.i-tel:before {
  height: 18px;
  background-position: -9px -59px;
}

.i-mail:before {
  height: 15px;
  background-position: -9px -99px;
}

.i-cal:before {
  height: 18px;
  background-position: -9px -139px;
}

.footer-inner-01 p:first-child,
.footer-inner-02 p:first-child,
.footer-inner-03 p:first-child {
  font-weight: 500;
  font-size: 129.411765%;
  margin-bottom: 16px;
}

.footer-inner-02 ul li:first-child {
  margin-bottom: 16px;
}

.footer-inner-03 li {
  margin-bottom: 6px;
}

@media screen and (max-width: 1280px) {
  .footer-inner {
    padding: 120px 80px 80px 80px;
    gap: 100px;
  }
}

@media screen and (max-width: 1080px) {
  .footer-inner {
    gap: 40px;
  }
}

@media screen and (max-width: 960px) {
  .footer-inner {
    display: block;
    padding: 120px 80px 80px 80px;
  }

  .footer-inner-01,
  .footer-inner-02,
  .footer-inner-03 {
    width: 100%;
    margin: 0;
  }

  .footer-inner-01 ul:last-child,
  .footer-inner-02 ul:last-child {
    margin-bottom: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid #5f939b;
  }
}

@media screen and (max-width: 768px) {
  footer {
    margin: 0;
  }
  .footer-inner {
    padding: 40px;
  }
}

@media screen and (max-width: 428px) {
  .footer-inner {
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !medicum-Logo  */

/* ------------------------------------------------ */

.medicum .container > div {
  display: inline-flex;
  align-items: center;
  color: #444;
  padding: 24px;
  background-color: #fff;
  font-family: "Lato";
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
  margin: 0 0 0 120px;
  height: 136px;
  z-index: 10;
}

.medicum .container > div:before {
  content: "";
  display: inline-block;
  width: 86px;
  height: 88px;
  background-image: url("/assets/images/layout/medicum.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  margin-right: 24px;
  flex-shrink: 0;
}

.medicum span {
  display: block;
  font-size: 133.333333%;
}

.medicum p {
  margin: 0;
}

@media screen and (max-width: 1280px) {
  .medicum .container > div {
    margin: 0 0 0 80px;
  }
}

@media screen and (max-width: 768px) {
  .medicum .container > div {
    display: flex;
    height: auto;
    margin: 0;
  }
}

@media screen and (max-width: 428px) {
  .medicum .container > div {
    display: block;
  }
  .medicum .container > div:before {
    margin: 0 0 24px 0;
  }
  .medicum span {
    margin-bottom: 8px;
  }
}

/* ------------------------------------------------ */

/*  !Footer Navigation  */

/* ------------------------------------------------ */

.footer-nav ul {
  background-color: #f2f7f7;
  padding: 40px 120px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.footer-nav a {
  color: #184452;
}

.footer-nav li:after {
  content: "|";
  color: #5f939b;
  display: inline-block;
  margin: 0 12px;
}

.footer-nav li:last-child:after {
  display: none;
}

@media screen and (max-width: 1280px) {
  .footer-nav ul {
    padding: 40px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 428px) {
  .footer-nav ul {
    display: block;
    padding: 20px;
  }

  .footer-nav li {
    border-bottom: 1px dashed #5f939b;
    padding: 12px 0;
  }

  .footer-nav li:last-child {
    border: none;
  }

  .footer-nav li:after {
    display: none;
  }
}

/* ------------------------------------------------ */

/*  !Typo  */

/* ------------------------------------------------ */

h1,
h2 {
  text-wrap: balance;
}

h1 {
  font-family: "Lato";
  font-size: 223.529412%;
  margin-bottom: 24px;
  line-height: 1.2;
}

h2 {
  font-family: "Lato";
  font-size: 223.529412%;
  margin-bottom: 24px;
  line-height: 1.2;
}

h1 span,
h2 span {
  color: #5f939b;
}

h3 {
  font-family: "Lato";
  font-size: 122.222222%;
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
}

.arzt-content-text p.small {
  font-size: 88.235294%;
  margin-bottom: 8px;
}

.italic {
  font-style: italic;
}

.block-head p {
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  h1,
  h2 {
    font-size: 177.777778%;
  }
}

@media screen and (max-width: 428px) {
  h1,
  h2 {
    font-size: 155.555556%;
  }
}

/* ------------------------------------------------ */

/*  !Spalten  */

/* ------------------------------------------------ */
.w-4 {
  width: 37.931034%;
}

.w-5 {
  width: 48.275862%;
}

.w-6 {
  width: 58.62069%;
}

@media screen and (max-width: 960px) {
  .w-4,
  .w-5,
  .w-6 {
    width: 100%;
  }
}

/* ------------------------------------------------ */

/*  !Block Seitenkopf  */

/* ------------------------------------------------ */

.block-head {
  margin-bottom: 104px;
}

.block-head-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fafbfc;
  padding: 80px 120px;
  border-bottom: 16px solid #f2f7f7;
}

.block-head-inner p:last-child {
  margin: 0;
}

.block-head-inner-text {
  order: 1;
}

.block-head figure {
  order: 2;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.block-head figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 20%;
  background-color: #5f939b;
}

.block-head figure:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

@media screen and (max-width: 1280px) {
  .block-head-inner {
    padding: 80px;
  }
}

@media screen and (max-width: 960px) {
  .block-head-inner {
    display: block;
  }

  .block-head figure {
    margin-bottom: 40px;
  }

  .block-head figure:after {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 768px) {
  .block-head {
    margin-bottom: 80px;
  }
  .block-head-inner {
    padding: 40px;
  }
}

@media screen and (max-width: 428px) {
  .block-head-inner {
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !Grid Homepage  */

/* ------------------------------------------------ */

.grid-homepage {
  margin-bottom: 104px;
}

.grid-homepage > .container {
  padding: 0 160px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid-homepage .grid-item {
  display: flex;
  flex-direction: column;
  padding: 80px;
  margin-bottom: 40px;
}

.grid-homepage .grid-item p {
  margin-bottom: 40px;
}

.grid-homepage .grid-item p:last-child {
  margin: auto 0 0 0;
}

.grid-homepage .grid-item.image {
  position: relative;
  padding: 0;
}

.grid-homepage figure {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.grid-homepage figure:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.grid-homepage .grid-item.image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 20%;
  background-color: #cce0e3;
}

.dark {
  color: #fff;
  background-color: #5f939b;
  border-bottom: 16px solid #4c767d;
}

.dark h2 span {
  color: #cce0e3;
}

.medium {
  background-color: #f2f7f7;
  border-bottom: 16px solid #cce0e3;
}

.light {
  background-color: #fafbfc;
  border-bottom: 16px solid #f2f7f7;
}

@media screen and (max-width: 1280px) {
  .grid-homepage > .container {
    padding: 0 40px;
  }
  .grid-homepage .grid-item {
    padding: 56px;
  }
}

@media screen and (max-width: 960px) {
  .grid-homepage .grid-item.image {
    display: none;
  }
  .grid-homepage .grid-item {
    display: block;
    padding: 80px;
  }
}

@media screen and (max-width: 768px) {
  .grid-homepage {
    margin-bottom: 40px;
  }
  .grid-homepage .grid-item {
    padding: 40px;
  }
}

@media screen and (max-width: 428px) {
  .grid-homepage > .container {
    padding: 0 20px;
  }
  .grid-homepage .grid-item {
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !Grid Ärzte  */

/* ------------------------------------------------ */

.grid-aerzte {
  margin: 40px 0 80px 0;
}

.grid-aerzte-inner {
  display: grid;
  column-gap: 2.5rem;
  row-gap: 3.5rem;
}

.grid-aerzte .grid-item {
  display: flex;
  flex-direction: column;
  color: #184452;
  background-color: #fafbfc;
  box-shadow: 10px 10px 0 #f2f7f7;
}

.grid-aerzte .grid-item a:hover figure::after {
  width: 60%;
}

.grid-aerzte .grid-item figure::after {
  content: "";
  display: block;
  width: 25%;
  height: 8px;
  background-color: #cce0e3;
  transition: width 0.3s ease;
}

.grid-aerzte .grid-item-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.grid-aerzte .grid-item-text p:first-child {
  color: #5f939b;
  font-weight: 500;
  margin-bottom: 0;
}

.grid-aerzte .grid-item-text p:nth-child(2) {
  font-family: "Lato";
  font-size: 122.222222%;
  margin-bottom: 24px;
}

.grid-aerzte .grid-item-text p:nth-child(3) {
  margin-bottom: 24px;
}

.grid-aerzte .grid-item-text li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -378px;
  padding-left: 12px;
}

.grid-aerzte ul {
  margin-bottom: 2.5rem;
}

.grid-aerzte .btn-container {
  margin-top: auto;
}

@media (min-width: 375px) {
  .grid-aerzte .grid-item-text {
    padding: 2.5rem;
  }
}

@media (min-width: 768px) {
  .grid-aerzte-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-aerzte-inner {
    column-gap: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .grid-aerzte-inner {
    padding: 0 120px;
    column-gap: 5rem;
  }
}

/* ------------------------------------------------ */
/*  !Doctolib-Button  */
/* ------------------------------------------------ */

.btn-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.btn-container a:first-child {
  white-space: nowrap;
}

.dlib-btn img {
  width: 84px;
}

.dlib-btn-with-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(36, 121, 190);
  border: 2px solid rgb(193, 213, 230);
  border-radius: 4px;
  padding: 1rem;
  margin-top: 2rem;
}

.dlib-btn-with-text p {
  margin: 0;
}

.dlib-btn-with-text > img {
  width: 84px;
}

/* ------------------------------------------------ */

/*  !Arzt Detail */

/* ------------------------------------------------ */

.arzt-head {
  margin: 40px 0 80px 0;
}

.arzt-head-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 120px;
}

.arzt-head-text {
  width: 37.931034%;
  order: 1;
}

.arzt-head-text > p:nth-child(1) {
  margin: 0;
  color: #5f939b;
  font-weight: 600;
}

.arzt-head-text li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -378px;
  padding: 0 0 0px 12px;
}

.arzt-head-inner figure {
  position: relative;
  width: 51.724138%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 10px 10px 0 #f2f7f7;
  order: 2;
}

.arzt-head-inner figure:after {
  content: "";
  display: block;
  padding-bottom: 65.875%;
}

.arzt-head-inner figure:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 25%;
  background-color: #cce0e3;
}

.arzt-content-text {
  padding: 0 120px;
  margin-bottom: 80px;
}

.arzt-content-text-inner {
  padding: 120px;
  background-color: #fafbfc;
  border-bottom: 16px solid #f2f7f7;
}

.arzt-content-text-inner :last-child {
  margin-bottom: 0;
}

.arzt-content-text p {
  margin-bottom: 24px;
}

.arzt-content-text p span {
  color: #5f939b;
  font-weight: 600;
}

.arzt-content-text ul {
  margin-bottom: 24px;
}

.arzt-content-text li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -378px;
  padding: 0 0 5px 12px;
}

.arzt-content-text a {
  color: #5f939b;
}

.arzt-content-text a:hover {
  color: #184452;
}

@media screen and (max-width: 1280px) {
  .arzt-head-inner,
  .arzt-content-text {
    padding: 0;
  }

  .arzt-content-text-inner {
    padding: 80px;
  }
}

@media screen and (max-width: 960px) {
  .arzt-head-text,
  .arzt-head-inner figure {
    width: calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .arzt-head-inner {
    display: block;
  }

  .arzt-head-inner figure {
    width: 100%;
    margin-bottom: 40px;
  }

  .arzt-head-text {
    width: 100%;
  }

  .arzt-content-text-inner {
    padding: 40px;
  }
}

@media screen and (max-width: 428px) {
  .arzt-content-text-inner {
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !Standard-Seite  */

/* ------------------------------------------------ */

.standard-head-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 120px;
  margin: 40px 0 80px 0;
  background-color: #fafbfc;
  border-bottom: 16px solid #f2f7f7;
}

.standard-head-text {
  width: 48.275862%;
}

.standard-head-text :last-child {
  margin-bottom: 0;
}

.standard-head-text p {
  margin-bottom: 24px;
}

.standard-head figure {
  position: relative;
  width: 37.931034%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  order: 2;
}

.standard-head figure:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 25%;
  background-color: #5f939b;
}

.standard-head figure:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.standard-head figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 76.470588%;
  padding: 2px 6px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Textspalte */
.standard-inner {
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 80px 0;
}

main {
  width: 58.62069%;
}

aside {
  width: 37.931034%;
}

main p {
  margin-bottom: 24px;
}

main ul {
  margin-bottom: 24px;
}

main ul li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -378px;
  padding: 0 0 2px 12px;
}

main a {
  color: #5f939b;
  border-bottom: 2px solid #cce0e3;
}

main a:hover {
  color: #4c767d;
}

@media screen and (max-width: 1280px) {
  .standard-head-inner {
    padding: 80px;
  }

  .standard-inner {
    padding: 0;
  }
}

@media screen and (max-width: 960px) {
  .standard-head-inner {
    padding: 40px;
    margin: 40px 0 40px 0;
  }

  .standard-inner {
    display: block;
  }

  main,
  aside {
    width: 100%;
  }

  main {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .standard-head-inner {
    display: block;
  }

  .standard-head-text {
    width: 100%;
  }

  .standard-head figure {
    width: 100%;
    margin-bottom: 40px;
  }

  .standard-head figure:after {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 428px) {
  .standard-head-inner {
    margin: 0 0 40px 0;
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !Box Seitenspalte  */

/* ------------------------------------------------ */

aside {
  position: relative;
}

.box {
  position: sticky;
  top: 40px;
  padding: 32px;
  border: 2px solid #cce0e3;
}

.box h3 {
  font-size: 141.176471%;
  margin-bottom: 24px;
}

.box ul li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -390px -378px;
  padding: 0 0 8px 12px;
}

.box ul + h3 {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #5f939b;
}

.box ul.downloads li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -379px -7px;
  padding: 0 0 8px 28px;
}

.box p {
  margin-bottom: 24px;
}

.box a {
  color: #5f939b;
  word-break: break-word;
}

.box a:hover {
  color: #4c767d;
}

.box figure,
.box-inline figure {
  min-width: 80px;
  max-width: 140px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
}

ul.download li {
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -379px -9px;
  padding: 0 0 8px 28px;
}

ul.download li {
  padding: 16px 0 16px 28px;
  background-position: -379px 8px;
  border-bottom: 1px solid #cce0e3;
}

ul.download li:last-child {
  border: none;
}

ul.download a {
  border: none;
}

/* ------------------------------------------------ */

/*  !Box-Inline Masterzertifikat  */

/* ------------------------------------------------ */

.box-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px;
  background-color: #f2f7f7;
  border: 2px solid #fff;
  margin-bottom: 24px;
}

.box-inline-text {
  width: calc(100% - 200px);
}

.box-inline.display-block {
  display: block;
}

.display-block .box-inline-text {
  width: 100%;
}

.box-inline .box-images {
  display: flex;
}

.box-images a {
  margin: 0 16px 32px 0;
}

.box-images img {
  max-height: 197px;
}

.box-inline a {
  display: block;
  border: none;
}

@media screen and (max-width: 768px) {
  .box-inline {
    display: block;
  }
  .box-inline-text {
    width: 100%;
  }
  .box-inline a {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 428px) {
  .box-inline {
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !Google Map  */

/* ------------------------------------------------ */

.standard-head #map-container {
  position: relative;
  order: 2;
  width: 37.931034%;
  box-shadow: 10px 10px 0 #f2f7f7;
}

.standard-head #map-container:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.standard-head #map-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 25%;
  background-color: #5f939b;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .standard-head #map-container {
    width: 100%;
    margin-bottom: 56px;
  }

  .standard-head #map-container:after {
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 428px) {
  .standard-head #map-container:after {
    padding-bottom: 100%;
  }
}

/* ------------------------------------------------ */

/*  !Leistungen  */

/* ------------------------------------------------ */

.grid-leistungen {
  margin: 40px 0 80px 0;
}

.grid-leistungen-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}

.grid-leistungen .grid-item {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 2px solid #f2f7f7;
  background-color: #fafbfc;
}

.grid-leistungen .grid-item h3 {
  font-size: 129.411765%;
  line-height: 1.2;
  margin-bottom: 16px;
}

.grid-leistungen .grid-item a {
  color: #184452;
}

.grid-leistungen .grid-item a:hover {
  color: #4c767d;
}

.grid-leistungen .grid-item p {
  margin-bottom: 40px;
}

.grid-leistungen .grid-item p:last-child {
  margin: auto 0 0 0;
}

@media screen and (max-width: 1280px) {
  .grid-leistungen-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 960px) {
  .grid-leistungen-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .grid-leistungen-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 428px) {
  .grid-leistungen .grid-item {
    padding: 20px;
  }
}

/* ------------------------------------------------ */

/*  !Formulare  */

/* ------------------------------------------------ */

h3:has(+ p + #form-container) {
  margin-top: 56px;
}

form {
  margin-bottom: 40px;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

main form ul li {
  background: none;
  padding: 0;
}

.form-headline {
  font-weight: 600;
  padding: 16px;
  background-color: #f2f7f7;
  border-radius: 4px;
}

.form-row {
  margin-bottom: 24px;
}

.form-row.button {
  margin-top: 20px;
}

.form-row ul {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.fx-50 {
  width: calc(50% - 5px);
}

.fx-100 {
  width: 100%;
}

.select-wrapper {
  position: relative;
  display: flex;
  border: 1px solid #5f939b;
  align-items: center;
}

select {
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 100%;
  background: transparent;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 13px 10px;
}

option {
  font-size: 100%;
}

.select-wrapper:after {
  position: absolute;
  right: 20px;
  top: 19px;
  z-index: 1;
  content: "";
  width: 12px;
  height: 12px;
  background: transparent url("/assets/images/layout/sprites.svg")
    no-repeat -110px -9px;
}

select:focus {
  outline: none;
}

input[type="text"],
textarea,
input[type="number"] {
  font-size: 100%;
  font-family: "Mulish", Helvetica, sans-serif;
  padding: 10px 10px;
  border: 1px solid #5f939b;
  width: 100%;
}

input:focus,
textarea:focus,
.select-wrapper:hover {
  background-color: #fafbfc;
}

/* Custom Checkboxes */
.radio {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
}

.radio > span {
  margin-top: -4px;
}

.radio > input {
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 1px solid #4c767d;
  outline: none;
  cursor: pointer;
  margin: 0 8px 0 0;
  flex-shrink: 0;
}

.radio > input {
  border-radius: 50%;
}

.radio > input:checked {
  box-shadow: inset 0 0 0 3px #fff;
  background-color: #4c767d;
}

form button {
  display: inline-flex;
  align-items: center;
  font-size: 100%;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #4c767d;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  margin-top: 16px;
}

form button:hover:after {
  transform: translateX(3px);
}

form button:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  margin: 3px 0 0 8px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -80px -10px;

  transition: transform 0.3s ease;
}

.inline-error {
  font-size: 15px;
  color: #d04848;
}

@media screen and (max-width: 540px) {
  .form-row ul {
    display: block;
  }

  .fx-50 {
    width: 100%;
  }
}

/* ------------------------------------------------ */

/*  !Toggle Form  */

/* ------------------------------------------------ */

.toggle-infektion,
.toggle-impfung {
  display: none;
}

.toggle-infektion.active,
.toggle-impfung.active {
  display: block;
}

/* ------------------------------------------------ */

/*  !Animation  Bild */

/* ------------------------------------------------ */

.fade-in {
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-in.loaded {
  transform: translateX(0);
  opacity: 1;
}

/* ------------------------------------------------ */

/*  !Datenschutz  */

/* ------------------------------------------------ */

.consent-overlay {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  z-index: 20;
}

.consent-modal {
  background: #fff;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.consent-modal-inner {
  padding: 40px;
}

.consent-modal-inner h3 {
  font-size: 150%;
  margin-bottom: 20px;
}

.consent-modal-inner p {
  font-size: 100%;
  margin-bottom: 15px;
}

.consent-modal-inner p a {
  color: #5f939b;
}

.consent-modal-inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.consent-modal-inner ul:last-child {
  margin: 0;
}

.consent-modal-inner ul li:first-child {
  margin-right: 20px;
}

.consent-btns a {
  color: #184452;
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  border: 1px solid #184452;
  border-radius: 2px;
  transition:
    background-color 0.1s ease,
    border-color 0.1s ease;
  white-space: nowrap;
}

.consent-btns a:hover {
  border-color: #184452;
}

#consent-btn-primary {
  font-weight: 400;
  color: #fff;
  background-color: #5f939b;
  border: 1px solid #5f939b;
}

#consent-btn-primary:hover {
  background-color: #184452;
  border-color: #184452;
}

/* Ceckboxen */
.consent-checkboxes a {
  display: flex;
  align-items: center;
  color: #184452;
}

.consent-checkboxes a:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #184452;
  border-radius: 2px;
  margin-right: 10px;
  background-image: url("/assets/images/layout/consent-icons.svg");
  background-repeat: no-repeat;
  background-position: -100px 0;
}

.consent-checkboxes a.disabled:before {
  border-color: #ccc;
  background-position: 0 0;
}

.consent-checkboxes a.disabled {
  pointer-events: none;
}

.consent-checkboxes a.enabled:before {
  background-position: -17px 0;
}

@media screen and (max-width: 840px) {
  .consent-modal {
    margin: 0 auto;
  }
}

@media screen and (max-width: 560px) {
  .consent-modal-inner ul {
    display: block;
  }

  .consent-modal-inner ul li:first-child {
    margin: 0 0 10px 0;
  }

  .consent-btns a {
    display: block;
  }
}

@media screen and (max-width: 428px) {
  .consent-overlay {
    padding: 0 10px 10px 10px;
  }

  .consent-modal {
    margin: 0 auto;
  }
}

/* ------------------------------------------------ */

/*  !Covid-Impfung Link Seitenkopf */

/* ------------------------------------------------ */

.top-link {
  color: #000;
  background-color: #ffdf46;
  padding: 16px 0;
  margin-bottom: 24px;
}

.top-link .container {
  display: flex;
  justify-content: center;
}

.top-link a {
  display: flex;
  align-items: flex-start;
  color: #000;
  line-height: 1.3;
}

.top-link a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/layout/sprites.svg");
  background-repeat: no-repeat;
  background-position: -10px -200px;
  flex-shrink: 0;
  margin: -1px 12px 0 0;
}

/* ------------------------------------------------ */
/*  !Flash Messages */
/* ------------------------------------------------ */

@keyframes flash {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.flash-warning,
.flash-success {
  padding: 24px;
  border-left: 10px solid firebrick;
  background-color: hsl(0, 67.9%, 95%);
  opacity: 0;
  animation: flash 0.2s 0.2s ease-in-out forwards;
}

.flash-success {
  border-left: 10px solid seagreen;
  background-color: hsl(146.5, 50%, 95%);
}

.flash-message p {
  margin: 0;
}

/* ------------------------------------------------ */

/*  !Hinweis Aufklaerungsboegen  */

/* ------------------------------------------------ */

.pdf-impfung {
  padding: 40px;
  background-color: #f2f7f7ff;
  margin-bottom: 40px;
  border-radius: 4px;
}

/* ------------------------------------------------ */

/*  !Grid Bilder  */

/* ------------------------------------------------ */

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(80px, 140px));
  column-gap: 24px;
  row-gap: 40px;
}

@media screen and (max-width: 428px) {
  .grid {
    grid-template-columns: repeat(1, minmax(80px, 140px));
  }
}

.kein-termin {
  color: #000;
  background-color: #ffdf46;
  padding: 24px;
  margin-bottom: 24px;
}

/* ------------------------------------------------ */
/*  !Doctolib Cards  */
/* ------------------------------------------------ */

.cards-dlib {
  padding: 0;
  margin: 0 0 80px 0;
}

.card-dlib {
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background-color: #fafbfc;
  padding: 2rem;
  box-shadow: 10px 10px 0 #f2f7f7;
  margin-bottom: 2.5rem;
}

.card-dlib > figure {
  aspect-ratio: 1 / 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid #f2f7f7;
  overflow: hidden;
}

.card-dlib > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-dlib > div > p:first-child {
  color: #5f939b;
  font-weight: 500;
  margin-bottom: 0;
}
.card-dlib > div > p:nth-child(2) {
  font-family: "Lato";
  font-size: 122.222222%;
  margin-bottom: 24px;
}

.card-dlib a {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #fff;
  border: 2px solid rgb(193, 213, 230);
  border-radius: 4px;
  font-weight: 600;
  color: rgb(36, 121, 190);
}

.card-dlib a > span {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.card-dlib a > span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2.5rem;
  background-color: rgb(193, 213, 230);
  margin: 0 1rem;
}

.card-dlib a > img {
  width: 84px;
}

@media screen and (min-width: 1280px) {
  .cards-dlib {
    padding: 0 120px;
  }
}

@media screen and (max-width: 760px) {
  .card-dlib {
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    text-align: center;
  }

  .card-dlib > figure {
    width: 160px;
    height: 160px;
  }
}

/* ------------------------------------------------ */
/*  !Hinweis Dr. Dietz  */
/* ------------------------------------------------ */

.hinweis {
  padding: 40px;
  background-color: #fff;
  border: 3px solid #cce0e3;
  margin-bottom: 40px;
}

.hinweis p {
  margin-bottom: 0.5rem;
}
