/* roboto-100 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/roboto-v27-latin-100.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-100.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-100.woff2") format("woff2"), url("../fonts/roboto-v27-latin-100.woff") format("woff"), url("../fonts/roboto-v27-latin-100.ttf") format("truetype"), url("../fonts/roboto-v27-latin-100.svg#Roboto") format("svg");
  /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v27-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v27-latin-regular.woff") format("woff"), url("../fonts/roboto-v27-latin-regular.ttf") format("truetype"), url("../fonts/roboto-v27-latin-regular.svg#Roboto") format("svg");
  /* Legacy iOS */
}

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v27-latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-500.woff2") format("woff2"), url("../fonts/roboto-v27-latin-500.woff") format("woff"), url("../fonts/roboto-v27-latin-500.ttf") format("truetype"), url("../fonts/roboto-v27-latin-500.svg#Roboto") format("svg");
  /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v27-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-700.woff2") format("woff2"), url("../fonts/roboto-v27-latin-700.woff") format("woff"), url("../fonts/roboto-v27-latin-700.ttf") format("truetype"), url("../fonts/roboto-v27-latin-700.svg#Roboto") format("svg");
  /* Legacy iOS */
}

/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/roboto-v27-latin-900.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-900.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-900.woff2") format("woff2"), url("../fonts/roboto-v27-latin-900.woff") format("woff"), url("../fonts/roboto-v27-latin-900.ttf") format("truetype"), url("../fonts/roboto-v27-latin-900.svg#Roboto") format("svg");
  /* Legacy iOS */
}

*, ::before, ::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

body p {
  color: #807F83;
  font-size: 18px;
}

body h3 {
  color: #807F83;
}

section {
  max-width: 1280px;
  padding: 25px;
}

section h5 {
  font-size: 22px;
  color: #807F83;
}

section h4 {
  font-size: 22px;
  color: #807F83;
}

section h2 {
  font-size: 26px;
  color: #807F83;
}

header {
  background: url(/images/dr-hein.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 80vh;
  text-shadow: 5px 3px 20px #fff;
}

header a {
  text-decoration: none;
  color: #fd6c05;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
}

.anchor-txt {
  text-decoration: none;
  color: #fd6c05;
}

.news {
  margin: auto;
  padding: 10px;
}

.news .accordion {
  font-size: 20px;
  display: block;
}

.news .accordion .content-box {
  margin: 10px 26px;
  position: relative;
  overflow: hidden;
}

.news .accordion .content-box .label:before {
  content: '';
  position: absolute;
  display: block;
  right: 5px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-bottom: 5px #fd6c05 solid;
  border-left: 5px #fd6c05 solid;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 120ms ease-in-out;
  transition: -webkit-transform 120ms ease-in-out;
  transition: transform 120ms ease-in-out;
  transition: transform 120ms ease-in-out, -webkit-transform 120ms ease-in-out;
}

.news .accordion .content-box.active .label:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.news .accordion .content-box .label {
  background-color: #fff;
  border: 1px solid #fd6c05;
  color: #181818;
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.news .accordion .content-box .content {
  background-color: #fff;
  height: 0;
  position: relative;
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.news .accordion .content-box.active .content {
  opacity: 1;
  height: 100px;
  padding: 10px;
  text-align: left;
}

@media (max-width: 600px) {
  .content p {
    text-align: left;
    font-size: 16px;
    line-height: 18px;
  }
}

.main {
  display: block;
  margin: auto;
  text-align: center;
}

.main img {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}

.main p {
  text-align: left;
  padding: 10px;
}

.row {
  display: -ms-grid;
  display: grid;
  width: 100%;
  grid-auto-flow: row;
}

.row a {
  color: #fd6c05;
  font-size: 18px;
}

.row h4 {
  color: #fd6c05;
  font-size: 22px;
}

.row .column {
  border: 2px solid #807F83;
  padding: 4px;
  margin: 10px;
}

.row a {
  text-decoration: none;
}

@media (min-width: 36rem) {
  .row {
    grid-auto-flow: column;
  }
}

.offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-left: auto;
  padding-top: 40px;
}

.offer .offer-text {
  margin: auto;
  padding: 5px;
}

.offer img {
  width: 250px;
}

.offer p {
  max-width: 420px;
}

@media (max-width: 600px) {
  .offer {
    display: -ms-grid;
    display: grid;
  }
  .offer img {
    width: 220px;
    margin-left: -40px;
  }
  .offer .btnz {
    left: 20%;
  }
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #181818;
  color: #fd6c05;
  width: 100%;
}

footer a {
  color: #fd6c05;
  text-decoration: none;
  padding: 8px;
}

.impressum {
  margin: auto;
  padding: 10px;
  line-height: 2.0rem;
}

.impressum .container h2 {
  color: #fd6c05;
  font-size: 30px;
}

.impressum .container p {
  padding-top: 4px;
  padding-left: 40px;
}

.impressum .container h4 {
  padding-top: 20px;
  padding-left: 40px;
}

.impressum .container h5 {
  padding-top: 10px;
  padding-left: 40px;
}

.impressum .container a {
  padding-top: 10px;
  padding-left: 40px;
}

.impressum .container .impressum-border {
  border-bottom: 1px solid #807F83;
}

.datenschutz {
  margin: auto;
  padding: 10px;
}

.datenschutz .container h2 {
  color: #fd6c05;
  font-size: 30px;
}

.datenschutz .container p {
  padding-top: 4px;
  padding-left: 40px;
}

.datenschutz .container h4 {
  padding-top: 20px;
  padding-left: 40px;
}

.datenschutz .container h5 {
  padding-top: 10px;
  padding-left: 40px;
}

.datenschutz .container a {
  padding-top: 10px;
  padding-left: 40px;
}

.btnz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 10px 16px;
  border-radius: 50px;
  max-width: 66px;
  background-color: #fff;
  text-decoration: none;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin: auto;
}

.btnz a {
  color: #fff;
  text-decoration: none;
}

.linkedin {
  background-color: #0e76a8;
}

@media (max-width: 600px) {
  .btnz {
    text-align: center;
    padding-right: 25px;
  }
}
/*# sourceMappingURL=style.css.map */