@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "Manjari thin", sans-serif;
  src: url(./fonts/Manjari-Thin.ttf);
}
@font-face {
  font-family: "Manjari regular", sans-serif;
  src: url(./fonts/Manjari-Regular.ttf);
}
@font-face {
  font-family: "Manjari bold";
  src: url(./fonts/Manjari-Bold.ttf);
}
@font-face {
  font-family: "Bebas Neue", sans-serif;
  src: url(./fonts/BebasNeue-Regular.ttf);
}
@font-face {
  font-family: "RobotoCondensed", sans-serif;
  src: url(./fonts/RobotoCondensed-VariableFont_wght.ttf);
}
@font-face {
  font-family: "RobotoCondensed-Italic", sans-serif;
  src: url(./fonts/RobotoCondensed-Italic-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Inter", sans-serif;
  src: url(./fonts/Inter-VariableFont_opsz\,wght.ttf);
}
@font-face {
  font-family: "Inter italic", sans-serif;
  src: url(./fonts/Inter-Italic-VariableFont_opsz\,wght.ttf);
}
@font-face {
  font-family: "Montserrat";
  src: url(./fonts/Montserrat-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Montserrat italic";
  src: url(./fonts/Montserrat-Italic-VariableFont_wght.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-head: "arial", sans-serif;
  --font-text: "arial", sans-serif;
  --font-art: "arial", sans-serif;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background-color: white;
  --main-color: #3aafa9;
  --scd-color: #2b7a78;
  --trd-color: #193270;
  --frt-color: #def2f1;
}
h1 {
  font-size: 2.6em;
  color: var(--main-color);
  font-family: "RobotoCondensed", sans-serif;
}
h2 {
  color: var(--scd-color);
  font-family: "Manjari thin", sans-serif;
}
h3 {
  font-family: "RobotoCondensed", sans-serif;
  font-weight: 800;
  color: var(--main-color);
  font-size: 1em;
  margin: 0 0 .5em 0;
}
h4 {
  color: var(--main-color);
  font-size: 1.3em;
}
b {
  font-weight: 600;
}
a {
  text-decoration: none;
  color: var(--main-color);
}
/* Navbar */
nav {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 60px;
  background-color: white;
  z-index: 3;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}
nav a {
  font-family: "Manjari regular", sans-serif;
}
.space {
  width: 50%;
}
.space a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 1.3em;
  position: absolute;
  cursor: pointer;
  left: 5%;
  top: 50%;
  transform: translate(-5%, -50%);
}
.space a:hover {
  color: var(--scd-color);
}
.nav-link {
  color: var(--main-color);
  text-decoration: none;
  font-size: 1.3em;
}
.line {
  width: 30px;
  height: 4px;
  background-color: var(--main-color);
  margin: 5px;
}
.hamburger {
  position: absolute;
  cursor: pointer;
  right: 5%;
  top: 50%;
  transform: translate(-5%, -50%);
  z-index: 2;
}
.hamburger:hover .line {
  background-color: var(--scd-color);
}
.nav-links {
  display: flex;
  list-style: none;
  margin-left: auto;
  background-color: white;
  height: 100vh;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
  -webkit-clip-path: circle(0px at 90% -10%);
  clip-path: circle(0px at 90% -10%);
  transition: -webkit-clip-path, clip-path 1s ease-in;
}

.nav-link:hover {
  color: var(--scd-color);
  cursor: pointer;
}
.nav-links.open {
  -webkit-clip-path: circle(150px at 90% -10%);
  clip-path: circle(1500px at 90% -10%);
  pointer-events: all;
} 
/* End Navbar */ /* Welcome */
.header-cont {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.welcome {
  width: 100%;
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pic {
  display: none;
  height: 100%;
}
.welcome img {
  width: 100%;
}
.welcome article {
  color: var(--scd-color);
  padding: 2em;
  line-height: 1.3;
}
.wil1 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--trd-color);
  font-size: 2.5em;
  line-height: .9;
}
.wil2 {
  font-family: "RobotoCondensed", sans-serif;
  color: white;
  font-size: 1.5em;
  font-weight: 600;
  line-height: .9;
}
.wil3 {
  color: white;
  line-height: 1.1;
  font-size: .8em;
}
.wil4 {
  font-size: .7em;
  line-height: 1.1;
}
.ti {
  color: white;
  font-family: "RobotoCondensed", sans-serif;
}
.ut {
  color: var(--scd-color);
  font-family: "Manjari thin", sans-serif;
  text-transform: lowercase;
}
.sides article {
color: white;
font-family: "Montserrat", sans-serif;
}
.sides article b {
  color: white;
  font-weight: 600;
}/* End Welcome */
/* Barrierefreiheit */
#barrierefreiheit-btn {
  display: flex;
  position: fixed;
  bottom: 0;
  margin: 0em 0em 1em 1em;
  border: none;
  background-color: transparent;
}
#barrierefreiheit-btn img {
  width: 5.5em;
  background-color: white;
  border-radius: 10em;
}
#barrierefreiheit-btn:hover {
  cursor: pointer;
}
#cls {
  background: none;
  border: none;
}
#cls:hover {
  cursor: pointer;
}
#barrierefreiheit {
  height: 20em;
  width: 20em;
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 0 0 1em 1em;
  background-color: white;
  border: solid .5em black;
  padding: 1em;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#barrierefreiheit h2 {
  color: black;
  margin-bottom: .25em;
}
#barrierefreiheit img {
  width: 2em;
  position: absolute;
  top: 0;
  right: 0;
  margin: .5em;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.blackandwhite {
  --main-color: black;
  --scd-color: black;
  --trd-color: black;
  --frt-color: white;
}
/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--main-color);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--main-color);
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}

/* End Barrierefreiheit */
/* Anzeige */
.anzeige {
  padding: 1em 0em;
}
.bewerbung {
  background-color: white;
  padding: 1em;
  line-height: 150%;
}
h6 {
  font-size: 1.5em;
  color: var(--main-color);
}
/* End Anzeige */
/* Praxen */
.flex-container {
  display: flex;
  flex-direction: column;
}
.flex {
  padding: 1em;
  text-align: center;
  background-color: white;
  margin: 1em;
  border-radius: 1em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.flex img {
  height: 80px;
}
.flex h1 {
  font-size: 2em;
  color: var(--trd-color);
  font-family: "arial", sans-serif;
  letter-spacing: .15rem;
  text-transform: lowercase;
}
.flex h4 {
  color: var(--main-color);
}
.flex:hover {
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.fachgebiet {
  display: flex;
  flex-direction: column;
}
.fachgebiet h4 {
  font-family: "RobotoCondensed", sans-serif;
  font-weight: 300;
}
#fg,
#fg1 {
  font-family: "Manjari thin", sans-serif;
}/* End Praxen */
#aktuelles {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.news {
  background-color: rgb(235, 235, 235);
  padding: 1rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.news h2 {
  margin-bottom: .5rem;
}
.news a button {
  padding: .5rem;
  margin-top: .5rem;
  border: solid .15rem;
  border-color: var(--main-color);
  border-radius: .5rem;
  color: var(--main-color);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news a button img {
  width: 1.3rem;
  margin-right: .3rem;
}
.news a button:hover {
  cursor: pointer;
}
/* Icons */
#Icons {
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em;
}
.icns {
  min-width: 130px;
  max-width: 300px;
  margin: 1rem auto;
}
.flex2 {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 1em;
  padding: 1em;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.flex2 h3 {
  color: var(--main-color);
  margin: 0.2em 0em;
}
.flex2 img {
  width: 100%;
  max-width: 50px;
}
.flex2 h2 {
  color: var(--main-color);
}
.icon {
  width: 100%;
}
.ix {
  background-color: var(--trd-color);
  border: none;
  border-radius: 0.5em;
  color: white;
  font-size: 0.8em;
  padding: 0.5em;
  width: 100%;
  cursor: pointer;
  max-width: 7em;
}
#zeiten {
  font-size: 0.8rem;
  background-color: white;
  border-radius: 1em;
  padding: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 1em;
  max-width: 500px;
}
#zeiten h2 {
  color: var(--main-color);
  text-align: center;
}
#zeiten table {
  width: 100%;
  text-align: center;
}
tr:nth-child(even) {
  background-color: var(--frt-color);
} /* End Icons */ /* Kontakt */
.contain {
  padding: 1em 5%;
}
.infos {
  padding: 1em;
  background-color: white;
  margin: 1em;
  border: none;
  border-radius: 1em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.infos h2 {
  color: var(--main-color);
}
.kasten {
  display: flex;
  flex-direction: column;
}
.kleingedruckt {
  font-size: 14px;
} /* End Kontakt */ /* Anfahrt */
iframe {
  width: 100%;
  border-radius: 1em;
} /* End Anfahrt */ /* Pneumo Gastro */
.besch {
  padding: 0px;
  text-align: center;
}
.besch a {
  color: var(--trd-color);
}
.beschr {
  padding: 0px;
  text-align: center;
}
.accordion {
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  padding: 2em 5%;
  width: 100%;
  border: none;
  border-radius: 16px;
  text-align: center;
  outline: none;
  font-size: 1.5em;
  margin-top: 1em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.accordion h3 {
  font-family: "RobotoCondensed", sans-serif;
  color: white;
  margin: 0;
}
.acc h2 {
  color: white;
  font-weight: 400;
  margin: 0;
}
.active,
.accordion:hover,
.acc:hover {
  background-image: radial-gradient(circle at top left, var(--main-color), var(--frt-color));
  color: white;
}
.active {
  border-bottom-left-radius: 0em;
  border-bottom-right-radius: 0em;
}
.panel {
  padding: 0em 5%;
  background-color: white;
  display: none;
  margin: 0;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.pnl {
  padding-top: 1em;
  padding-bottom: 1em;
}
.pnl h2 {
  color: var(--main-color);
  margin-bottom: .2rem;
}
.pnl h4,
#untersuchungen_p h4 {
  font-family: "RobotoCondensed", sans-serif;
  font-weight: 400;
}

.panel .contain {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.mehr {
  background-color: var(--trd-color);
  border: none;
  border-radius: 0.5em;
  color: white;
  font-size: 0.8em;
  padding: 1em;
  margin-bottom: 1em;
  width: 10em;
}
.mehr:hover {
  cursor: pointer;
  background-color: rgba(42, 84, 189, 1);
}
#untersuchungen_p {
  display: none;
  padding-top: 1em;
  padding-bottom: 1em;
}
#untersuchungen_p h3 {
  color: #11538c;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  width: 60%;
  max-width: 200px;
  border-radius: 1em;
  margin: 1em;
  display: flex;
  flex-direction: column;
}
.doc {
  max-width: 250px;
}
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.card img {
  border-radius: 1em 1em 0 0;
  width: 100%;
  scale: 1;
  transition: all 0.3s ease-out;
}
.container {
  padding: 0.5em 0.5em;
  overflow: hidden;
  background-color: white;
  z-index: 2;
}
.container h4 {
  color: var(--main-color);
}
.container p {
  color: var(--trd-color);
}
.endo {
  font-family: "arial", sans-serif;
  list-style: square;
  padding-left: 5%;
}
.endo li {
  padding-top: 0.5em;
}
.gallerie {
  background-color: #3dd990;
  border: none;
  border-radius: 0.5em;
  color: white;
  font-size: 0.8em;
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
  display: none;
}
/* End Pneumo Gastro */
/* Links */
.acc {
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  padding: 1em 5%;
  width: 100%;
  border: none;
  border-radius: 0.7em;
  text-align: center;
  outline: none;
  font-size: 1.5em;
  transition: 0.4s;
  margin-top: 1em;
}
.acc h2 {
  font-family: "RobotoCondensed", sans-serif;
  text-transform: none;
}
#koop {
  background-color: var(--scd-color);
}
#koop:hover {
  background-image: radial-gradient(circle at top left, var(--scd-color), var(--frt-color));
}
.active {
  border-bottom-left-radius: 0em;
  border-bottom-right-radius: 0em;
}
.pan {
  padding: 0em 5%;
  background-color: white;
  display: none;
  margin: 0;
  border-bottom-left-radius: 0.7em;
  border-bottom-right-radius: 0.7em;
}
.pn {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}
.pan .contain {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.pan a {
  color: var(--trd-color);
} /* End Links */
/* Gallerie */
.gallery-row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  margin: auto;
}
.gallery-column {
  padding: 0 4px;
}
.gallery-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
.gallery-column img:hover {
  cursor: pointer;
}
/*Gallerie Modal*/
.room-modal {
  display: none;
  position: fixed;
  z-index: 4;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(58, 175, 169, 0.8);
}
.modal-content {
  position: relative;
  width: 80%;
  height: 80%;
  margin: 10%;
}
.roomSlides {
  display: none;
  width: 100%;
  height: 100%;
}
.roomSlides img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.room-prev,
.room-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-100%);
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: white;
  font-weight: bold;
  font-size: 2em;
  transition: all 0.3s ease;
  border-radius: 8px 8px 8px 8px;
  -webkit-user-select: none;
  user-select: none;
}
.room-next {
  left: auto;
  right: 0;
  border-radius: 8px 8px 8px 8px;
  transform: translateX(100%) translateY(-50%);
}
.room-prev:hover,
.room-next:hover {
  color: var(--trd-color);
  background-color: rgba(255, 255, 255, 0.3);
}
/* End Gallerie */
/* Downloads */
.download-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  padding: 2em;
}
.ueberschrift {
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  padding: 0.5rem 0rem;
}
.dld {
  flex: 1 1 20em;
  text-align: center;
  background: rgb(244, 244, 244);
  margin: 1em;
  padding: 1em;
  border-radius: 1em;
}
.dld img {
  height: 5em;
}
.dwld {
  padding: 1em;
  margin-top: 1em;
  border: none;
  border-radius: 1em;
  background: var(--trd-color);
}
.dwld a {
  color: white;
}

/* End Downloads */ /* Impressum */
.imp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border: none;
  border-radius: 1em;
  padding: 1em;
}
.impress {
  padding: 1em;
}
.imp h2 {
  font-family: "RobotoCondensed", sans-serif;
  text-transform: none;
  color: var(--main-color);
  font-size: 1.7em;
}
.imp h3 {
  color: var(--main-color);
  font-weight: 400;
  font-size: 1.3em;
  margin-top: .5em;
  margin-bottom: 0.2em;
} /* End Impressum */ /* Praxis */
#teamfoto {
  display: flex;
  align-items: center;
  justify-content: center;
}
.team {
  width: 100%;
  max-width: 800px;
  border-radius: 0.5em;
}
.rahmen {
  margin: 1em;
  padding: 1em;
  background-color: white;
  border-radius: 1em;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.rahmen h2 {
  color: var(--main-color);
}
.flex-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.card,
.card2 {
  overflow: hidden;
}
.card2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  width: 40%;
  border-radius: 1em;
  margin: 1em;
  display: flex;
  flex-direction: column;
  max-width: 200px;
}
.card2:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.card2 img {
  border-radius: 1em 1em 0 0;
  width: 100%;
  scale: 1;
  transition: all 0.3s ease-out;
}
.card:hover img,
.card2:hover img {
  scale: 1.1;
}
.container2 {
  padding: 0.5em 0.5em;
  height: 100%;
  z-index: 2;
  background-color: white;
  overflow: hidden;
}
.container2 p {
  font-size: 12px;
}
.card h3,
.card2 h3 {
  color: var(--main-color);
}

/*Modal*/
.modal {
  display: none;
  position: fixed;
  z-index: 4;
  padding-top: 100px;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(58, 175, 169, 0.8);
}
.modal-content {
  position: relative;
  height: 80%;
  max-width: 80%;
  margin: auto;
}
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 3em;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: var(--trd-color);
  text-decoration: none;
  cursor: pointer;
}
.mySlides {
  display: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
}
.mySlides img {
  height: 100%;
  transform: translateX(-50%);
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translateX(-100%) translateY(-50%);
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: white;
  font-weight: bold;
  font-size: 2em;
  transition: all 0.3s ease;
  border-radius: 8px 0 0 8px;
  -webkit-user-select: none;
  user-select: none;
}
.next {
  left: auto;
  right: 50%;
  border-radius: 0 8px 8px 0;
  transform: translateX(100%) translateY(-50%);
}
.prev:hover,
.next:hover {
  color: var(--trd-color);
  background-color: rgba(255, 255, 255, 0.3);
}
.caption-container {
  text-align: center;
  color: white;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.column {
  display: none;
}
.hover-shadow img {
  transition: 0.3s;
}
.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.umbau {
  text-align: center;
}
.umbau img {
  width: 80%;
}
/* Termine */
#pneumo-termine {
  text-align: center;
  padding-top: 1rem;
}
#pneumo-termine h3 {
  color: var(--main-color);
}
#pneumo-termine p {
  margin-bottom: 1em;
}
/* Footer */
footer {
  height: 80px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer p {
  text-align: center;
  font-size: 0.6rem;
}
.footer-link {
  color: grey;
  font-size: 0.6rem;
}
.footer-link:hover {
  color: black;
}

/* End Praxis */ /* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .bewerbung .rahmen h2 {
    font-size: 3rem;
  }
  #zeiten {
    font-size: 16px;
    margin: 1em auto;
  }
} /* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .contain {
    padding: 2em 10%;
  }
  .card {
    width: 40%;
  }
  .card2 {
    width: 20%;
  }
  #Icons {
    flex-direction: row;
  }
  .gallery-column {
    flex: 50%;
  }
  .news {
    width: 60%;
  }
} /* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .contain {
    padding: 3em 10%;
  }
  .flex2 img {
    max-width: 75px;
  }
  .anzeige h1 {
    font-size: 3em;
  }
  .nav-links {
    display: flex;
    list-style: none;
    width: 50%;
    height: 100%;
    flex-direction: row;
    -webkit-clip-path: none;
    clip-path: none;
    pointer-events: all;
    background-image: none;
  }
  .hamburger {
    display: none;
  }
  .infos {
    width: 50%;
  }
  .kasten {
    flex-direction: row;
  }
  .praxis {
    width: 100%;
  }
  .head {
    height: 40vh;
  }
  #head_links {
    background-position: 0% 85%;
  }
  .flex-container {
    flex-direction: row;
  }
  .praxis {
    width: 50%;
  }
  .flex img {
    height: 160px;
  }
  .anzeige {
    text-align: center;
  }
  .anzeige img {
    width: 60%;
  }
  .header-cont {
    flex-direction: row;
  }
  .welcome {
    width: 50%;
  }
  .pic {
    display: block;
  }
} /* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px){
  .contain {
    padding: 4em 15%;
  }
  .header-cont {
    height: 90vh;
  }
  #downer {
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
  }
  .dls {
    width: 17%;
  }
  .wil1 {
    font-size: 3em;
  }
  .wil3 {
    font-size: .8em;
  }
  .wil4 {
    font-size: .7em;
  }
} 
.ti {
  font-size: 3em;
  line-height: .7;
  transform: translateX(-3px);
}
.ut {
  font-size: 1.3em;
  line-height: 2;
}
h1 {
  font-size: 3em;
  font-family: "RobotoCondensed", sans-serif;
  font-weight: 500;
}
h2 {
  font-size: 1.3em;
  text-transform: lowercase;
}
.docs {
  flex-direction: row;
  padding: 1em;
}
/* End Screens */

/*Covid-Modal
.covid {
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}
.covid-content {
  position: relative;
  margin: auto;
  padding: 0;
  border: none;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.covid-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.covid-close:hover,
.covid-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.covid-header {
  padding: 1em 16px;
  background-color: var(--main-color);
  color: white;
}
.covid-body {
  padding: 2px 16px;
  background-color: white;
}
.covid-footer {
  height: 2em;
  background-color: var(--main-color);
  color: white;
}
.covid-body h2 {
  color: var(--main-color);
  margin-top: 10px;
  margin-bottom: 10px;
}
End Covid Modal */
