/*-------------------------------------------------------------------------------------

  Copyright (c) 2014 Pixelzauber GmbH, Switzerland
  CSS definition for basic layout

-------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");

:root {
  --color-black: rgb(0, 0, 0);
  --color-black-90: rgb(26, 26, 26);
  --color-black-80: rgb(51, 51, 51);
  --color-black-70: rgb(77, 77, 77);
  --color-black-60: rgb(102, 102, 102);
  --color-black-50: rgb(128, 128, 128);
  --color-black-40: rgb(153, 153, 153);
  --color-black-30: rgb(179, 179, 179);
  --color-black-20: rgb(204, 204, 204);
  --color-black-15: rgb(217, 217, 217);
  --color-black-10: rgb(230, 230, 230);
  --color-black-05: rgb(242, 242, 242);
  --color-white: rgb(255, 255, 255);
  --color-orange: rgb(240, 195, 34);
  --color-blue: rgb(0, 100, 140);
  --color-red: rgb(210, 0, 0);
  --color-green: rgb(46, 141, 0);

  --color-main: rgb(139, 121, 109);

  --font-main: "Jost", Arial, Helvetica, sans-serif;
}

/**
 * ANCHOR Normalize
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
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;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}
html {
  height: 100%;
  font-size: 16px;
  line-height: 23px;
}
body {
  height: 100%;
  line-height: 1;
}
body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a,
a:active,
a:focus,
button,
button:focus,
button:active {
  outline: none;
  outline: 0;
}
input::-moz-focus-inner {
  border: 0;
}
ul,
ol {
  padding: 0;
  margin-left: 25px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 8px;
}

/**
 * ANCHOR Layout
 *
 */
header,
section,
article,
main,
footer {
  position: relative;
  float: left;
  width: 100%;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.flexbox > * {
  flex-basis: 260px;
  flex-basis: calc(calc(680px - 100%) * 999);
  flex-grow: 1;
}
.two-col {
  flex-grow: 2;
}
.three-col {
  flex-grow: 3;
}
.four-col {
  flex-grow: 4;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  height: 70px;
  background-color: var(--color-main);
  z-index: 100;
}

.logo {
  float: left;
  margin: 8px 0 0 20px;
  width: 80px;
}

.logo img {
  float: left;
  width: 100%;
  height: auto;
}

main {
  padding: 100px 0 60px 0;
  width: 100%;
}

section {
  float: left;
  padding: 15px 22px;
  width: 100%;
  border-bottom: dotted 1px var(--color-main);
}
section:last-child {
  border: none;
}
section .title {
  float: left;
  width: 100%;
  color: var(--color-main);
}
section .content {
  float: left;
  width: 100%;
  font-size: 22px;
}

footer {
  float: left;
  background: var(--color-main);
}

/* Standard Images */
.image-wrapper,
.image-wrapper-left,
.image-wrapper-right,
.image-wrapper-big {
  float: right;
  margin: 0 0 10px 30px;
  width: 40%;
  max-width: 280px;
  height: auto;
}
.image-wrapper-left {
  float: left;
  margin: 4px 30px 10px 0;
}
.image-wrapper-big {
  float: left;
  margin: 4px 0 0 0;
  width: 100%;
  max-width: inherit;
}
.image-wrapper-right {
  float: right;
  margin: 4px 0 10px 30px;
}
.image-wrapper img,
.image-wrapper-left img,
.image-wrapper-right img,
.image-wrapper-big img {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

/* Images */
.imgFrame,
.imageFrame {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  background-position: center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.imgFrame::before,
.imageFrame::before {
  content: "";
  display: block;
  padding-top: 56%;
}

/**
 * ANCHOR Text Basics
 *
 */
body {
  font-family: var(--font-main);
  color: var(--color-black);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  -webkit-text-size-adjust: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 20px 0 12px;
  font-family: var(--font-main);
  color: var(--color-main-dark);
  font-weight: 400;
  line-height: 1.1;
}

h1,
.h1 {
  font-size: 50px;
  margin: 0 0 20px;
}
h2,
.h2 {
  font-size: 40px;
}
h3,
.h3 {
  font-size: 30px;
}
h4,
.h4 {
  font-size: 26px;
}
h5,
.h5 {
  font-size: 20px;
  color: var(--color-black);
}
h6,
.h6 {
  font-size: 20px;
  color: var(--color-black);
}
h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
  margin-top: 0;
}
/*
.first {
  margin-top: 0;
}
.solo {
  margin: 0;
}
*/
.center {
  text-align: center;
}

p {
  line-height: 1.3em;
  margin: 0;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
p + p {
  margin: 12px 0 0;
}

a {
  color: var(--color-main-dark);
  text-decoration: none;
}
a:hover {
  color: var(--color-black);
  text-decoration: none;
}
a[name],
a[name]:hover {
  color: var(--color-black-80);
  text-decoration: none;
}

em {
  font-style: italic;
}

pre {
  padding: 10px 19px;
  margin: 18px 0 12px 0;
  line-height: 20px;
  width: auto;
  color: var(--color-main-dark);

  border: 1px solid var(--color-black-20);
  background-color: var(--color-black-05);

  overflow: auto;
  overflow-y: hidden;
}

sup {
  line-height: 1em;
}

blockquote {
  display: inline-block;
  position: relative;
  margin: 11px 0;
  padding: 20px 60px;
  width: auto;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--color-black-50);
  border-radius: 8px;
  background-color: var(--color-black-05);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
blockquote::before,
blockquote::after {
  position: absolute;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 1;
  font-size: 80px;
}
blockquote::before {
  content: "\201C";
  top: 10px;
  left: 10px;
}
blockquote::after {
  right: 10px;
  bottom: 0;
  content: "\201D";
}
blockquote cite {
  left: 40px;
  margin-bottom: 8px;
  font-size: 1em;
  color: var(--color-black-30);
}
blockquote cite:before {
  content: "\2014 \2009";
}

ol,
ul {
  margin: 0;
  padding: 0 0 15px 0;
  width: 100%;
}
ul ul,
ol ol {
  margin: 0;
  padding: 0;
  width: 100%;
}
ul li {
  list-style: none;
  text-align: left;
  line-height: 1.5em;
  margin: 0 0 0 24px;
}
ul li::before {
  float: left;
  content: "\25CF";
  color: var(--color-main-dark);
  margin: 0 0 -10px -18px;
  display: block;
  font-size: 0.8em;
}
ol li {
  margin-left: 30px;
  line-height: 1.5em;
  list-style: decimal;
}
@media print {
  ol {
    margin: 0 0 0 24px;
    padding: 0;
    list-style: decimal;
  }
  ul {
    margin: 0 0 0 17px;
    padding: 0;
    list-style: disc;
  }
  ol li,
  ul li {
    margin: 0;
    padding: 0;
    background: none;
  }
}

b,
strong {
  font-weight: 500;
}

hr {
  padding: 0 0 20px 0;
  margin: 20px 0 0 0;
  height: 0;
  border: 0;
  border-top: 1px dotted var(--color-black);
}

table {
  margin-bottom: 12px;
  font-family: var(--font-main);
  font-size: 1em;
}
table th {
  border-bottom: 1px dotted var(--color-black);
  font-weight: 500;
  padding: 2px 0;
  text-align: left;
}
table td {
  padding: 4px 0;
}
table.none,
table.none td {
  padding: 0px;
  margin-bottom: 0px;
}
table.zebra thead tr {
  background-color: var(--color-black-10);
}
table.zebra tbody tr:nth-child(even) {
  background-color: var(--color-black-05);
}

button {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
/*
.column {
  column-count: 2;
  column-gap: 30px;
}
*/

/**
 * ANCHOR Text Customising
 *
 */
.content a.pdf,
.content a.doc,
.content a.xls,
.content a.ppt,
.content a.jpg,
.content a.zip,
.content a.mp4,
.content a.xd {
  background-color: transparent;
  background-position: 0 6px;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-left: 22px;
  padding-right: 0;
}
.content a.pdf {
  background-image: url("../images/icon_files_pdf.svg");
}
.content a.doc {
  background-image: url("../images/icon_files_doc.svg");
}
.content a.xls {
  background-image: url("../images/icon_files_xls.svg");
}
.content a.ppt {
  background-image: url("../images/icon_files_ppt.svg");
}
.content a.jpg {
  background-image: url("../images/icon_files_img.svg");
}
.content a.zip {
  background-image: url("../images/icon_files_zip.svg");
}
.content a.mp4 {
  background-image: url("../images/icon_files_mp4.svg");
}
.content a.xd {
  background-image: url("../images/icon_files_xd.svg");
}
.content a.none,
.content a:hover.none {
  background: none;
  padding-right: 0px;
  padding-left: 0px;
}

p.button {
  padding: 20px 0 30px 0;
}
p.button a {
  padding: 8px 50px;
  cursor: pointer;
  color: var(--color-white);
  background: none;
  background-color: var(--color-main-dark);
  border: 1px solid var(--color-main-dark);
  border-radius: 3px;
}
p.button a:hover {
  color: var(--color-white) !important;
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
}

blockquote {
  margin: 22px 22px 11px 22px;
  padding: 40px 50px;
  max-width: calc(100% - 44px);
  background-color: var(--color-white);
  box-shadow: 0px 0 20px var(--color-black-10);
}
blockquote::before {
  top: -12px;
  left: -15px;
  height: 60px;
  width: 60px;
  content: "";
  background-image: url(../images/icon_quote.svg);
  background-size: 60px auto;
  background-repeat: no-repeat;
}
blockquote::after {
  display: none;
  content: "";
  right: unset;
  bottom: unset;
}

.toggle-box {
  display: none;
  position: relative;
  float: left;
  width: 100%;
  background-color: #f19700;
}
/*
.toggle {
  float: left;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-black);
  cursor: pointer;
}
.toggle h3 {
  position: relative;
  margin: 0;
  padding: 14px 0 14px 36px;
  line-height: 1.2em;
}
.toggle h3::before,
.toggle h3::after {
  position: absolute;
  display: block;
  content: "";
  top: 31px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-main-dark);
  transition: 0.3s;
}
.toggle h3::after {
  top: 22px;
  left: 9px;
  width: 2px;
  height: 20px;
}
.toggle .display {
  display: none;
  position: relative;
  float: left;
  padding: 0 0 10px 0;
  margin-left: 40px;
  width: calc(100% - 40px);
}
.toggle.open h3::after {
  transform: rotate(270deg);
}
*/
#map {
  height: 500px;
  background: var(--color-black-05);
}

a.forward {
  font-weight: 400;
  padding-right: 20px;
  background: transparent url("../images/icon_nav_forward_dark.svg") center
    right no-repeat;
  background-size: auto 16px;
}
a:hover.forward {
  background: transparent url("../images/icon_nav_forward_dark.svg") center
    right no-repeat;
  background-size: auto 16px;
}
a.back {
  font-weight: 400;
  padding-left: 20px;
  background: transparent url("../images/icon_nav_back_dark.svg") center left
    no-repeat;
  background-size: auto 16px;
}
a:hover.back {
  background: transparent url("../images/icon_nav_back_dark.svg") center left
    no-repeat;
  background-size: auto 16px;
}

/**
 * ANCHOR Formular
 *
 */
form,
fieldset {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
fieldset {
  margin: 0 0 10px 0;
  width: 100%;
}
label,
legend {
  float: left;
  margin: 0 11px;
  padding-top: 13px;
  width: calc(30% - 22px);
}
.group {
  float: left;
  margin: 0;
  padding: 6px 0;
  width: 70%;
}

.required {
  color: var(--color-red);
}
select,
input,
textarea {
  float: left;
  margin: 11px 0 0 0;
  padding: 10px 11px;
  width: 100%;
  max-width: 500px;
  border-radius: 3px;
  border: 1px solid var(--color-black-05);
  background-color: var(--color-black-05);
  outline: none;

  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input.plz {
  margin-right: 5px;
  width: 100px;
}
input.ort {
  margin-left: 0;
  width: calc(70% - 127px);
}
select {
  padding: 10px 50px 10px 7px;
  background-image: url("../images/icon_down.svg");
  background-position: calc(100% - 11px) center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  cursor: pointer;
}
select:required:invalid {
  color: var(--color-black-30);
}
select option[value=""][disabled] {
  display: none;
}
select option,
select:required:invalid option {
  color: var(--color-black-80);
}
textarea {
  height: 124px;
}

::-webkit-input-placeholder {
  color: var(--color-black-30);
}
:-moz-placeholder {
  color: var(--color-black-30);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--color-black-30);
  opacity: 1;
}
::placeholder {
  color: var(--color-black-30);
}
select.placeholder {
  color: var(--color-black-30);
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  float: left;
  margin-top: 10px;
  cursor: pointer;
  color: var(--color-white);
  width: 100%;

  border: none;
  border-radius: 3px;
  background-color: var(--color-main);
  transition: all 0.2s ease;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: var(--color-black);
}

/**
 * ANCHOR Module
 *
 */

/**
 * ANCHOR Responsive
 *
 */
@media only screen and (max-width: 580px) {
}

/**
 * ANCHOR Print
 *
 */
@media print {
  .inner {
    width: 100%;
    max-width: unset;
  }
}
