/* variables */
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,
button,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  outline: none;
  vertical-align: baseline;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

body {
  color: #434343;
  font: 15px/20px "Arial", sans-serif;
  padding-top: 0 !important;
  height: 100vh;
  opacity: 0;
  -webkit-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
body.visible {
  opacity: 1;
}
@media (max-width: 992px) {
  body {
    overflow: auto;
  }
}

#middle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1150px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.twice-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.twice-columns .col {
  width: 50%;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .twice-columns {
    flex-direction: column;
  }
}
#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1088c8;
  font-weight: normal;
  margin: 0 0 19px;
}

h1 {
  font-size: 32px;
  line-height: 34px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 28px;
    line-height: 32px;
  }
}

h2 {
  font-size: 23px;
  line-height: 28px;
}
@media (max-width: 992px) {
  h2 {
    font-size: 20px;
    line-height: 22px;
  }
}

h3 {
  font-size: 19px;
  line-height: 22px;
}
@media (max-width: 992px) {
  h3 {
    font-size: 17px;
    line-height: 26px;
  }
}

h4 {
  font-size: 17px;
  line-height: 20px;
}
@media (max-width: 992px) {
  h4 {
    font-size: 16px;
    line-height: 20px;
  }
}

h5 {
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 992px) {
  h5 {
    font-size: 15px;
    line-height: 20px;
  }
}

h6 {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 20px;
}
@media (max-width: 992px) {
  h6 {
    font-size: 14px;
    line-height: 20px;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #1088c8;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #1088c8;
}
.no-margin {
  margin: 0;
}
.sub-title {
  color: #1088c8;
}
a {
  text-decoration: underline;
  color: #434343;
}
a:hover,
a:focus {
  outline: none;
  color: #1088c8;
}
a.btn {
  background-color: #434343;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  padding: 0 11px;
  border-radius: 15px;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a.btn:hover {
  background-color: #434343;
}
a.color-link {
  color: #1088c8;
}
a.text-decoration {
  text-decoration: underline;
}
a.text-decoration:hover {
  text-decoration: none;
}
a.no-text-decoration {
  text-decoration: none;
}
input,
a,
button {
  outline: none;
}

ul,
p,
ol {
  padding: 0;
  margin-bottom: 15px;
}

p:empty {
  display: none;
}

ol,
ul {
  list-style-position: inside;
}
ol:after,
ul:after {
  clear: both;
  content: "";
  display: block;
}
ol li,
ul li {
  margin: 0;
}

.content ul li {
  position: relative;
  padding-left: 10px;
  list-style: none;
}
.content ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #434343;
  position: absolute;
  left: 0;
  top: 7px;
}

img {
  border-style: none;
  outline: none;
  margin-bottom: 20px;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

input,
a,
textarea,
button,
.slick-slide {
  outline: none;
}

strong {
  font-weight: bold;
}
.section-title {
  display: block;
  margin-bottom: 6px;
}
.container {
  width: 940px;
  max-width: 98%;
  margin: 0 auto;
}
.container.mini-container {
  width: 740px;
}
.container.has-sidebar {
  position: relative;
  min-height: 415px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 35px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 992px) {
  .container.has-sidebar {
    min-height: 0;
    display: block;
  }
}
.container.has-sidebar .content {
  width: 100%;
  margin-bottom: 25px;
  position: relative;
  right: -1px;
  padding-right: 35px;
}
@media (max-width: 992px) {
  .container {
    width: 95%;
    padding: 0;
  }
}
.color-text {
  color: #1088c8;
}
.italic {
  font-style: italic;
  opacity: 1;
}
.no-decoration {
  text-decoration: none;
}
.italic {
  font-style: italic;
}
.sidebar {
  margin-top: 28px;
  padding: 20px 5px 20px 30px;
  width: 295px;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 18px;
  border-left: 1px solid #c5c3c3;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .sidebar {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 0;
    border: 0;
    padding: 0;
    font-size: 15px;
  }
  .sidebar:after {
    clear: both;
    content: "";
    display: block;
  }
}
.sidebar h5 {
  margin-bottom: 2px;
  font-weight: bold;
}
.sidebar p {
  margin: 0 0 5px;
}
.sidebar .sidebar-item {
  margin-bottom: 13px;
}

.history-section {
  position: fixed;
  left: 0;
  display: none;
  bottom: 0;
  background-color: #1088c8;
  color: #fff;
  padding: 10px 20px;
  width: calc(100% - 40px);
  z-index: 100;
}
@media (max-width: 992px) {
  .history-section {
    text-align: center;
  }
}
.history-section .container {
  width: auto;
  max-width: 98%;
  padding: 0 1%;
  margin: 0 auto;
}
.history-section .text {
  float: left;
  font-size: 14px;
  line-height: 35px;
  width: calc(100% - 240px);
}
@media (max-width: 1520px) {
  .history-section .text {
    font-size: 13px;
  }
}
@media (max-width: 1400px) {
  .history-section .text {
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  .history-section .text {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
}
.history-section .links {
  float: right;
}
@media (max-width: 992px) {
  .history-section .links {
    float: none;
  }
}
.history-section .links .btn {
  float: left;
  background-color: #fff;
  color: #434343;
  text-decoration: none;
  padding: 5px 10px;
  text-align: center;
  margin-left: 10px;
  border-radius: 0;
  font-size: 14px;
  cursor: pointer;
  line-height: 25px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
@media (max-width: 992px) {
  .history-section .links .btn {
    float: none;
    margin: 0 auto;
  }
}
.history-section .links .btn:hover {
  opacity: 0.5;
}

.post {
  padding: 40px 0 20px;
}
@media (max-width: 992px) {
  .post {
    padding: 20px 0;
  }
}
.post.align-center {
  text-align: center;
}

.kategorien .kategorien-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -45px;
}
@media (max-width: 1025px) {
  .kategorien .kategorien-list {
    margin: 0 -10px;
  }
}
@media (max-width: 620px) {
  .kategorien .kategorien-list {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.kategorien .kategorien-list .item {
  color: #f1f1f1;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 19px;
  padding: 0 45px;
}
@media (max-width: 1025px) {
  .kategorien .kategorien-list .item {
    padding: 0 10px;
  }
}
@media (max-width: 620px) {
  .kategorien .kategorien-list .item {
    padding: 0;
  }
}
.kategorien .kategorien-list .item.profil .visual {
  background-image: url("../build/images/kategorien-ico01.png");
}
.kategorien .kategorien-list .item.profil .visual:hover {
  background-image: url("../build/images/kategorien-ico01-hover.png");
}
.kategorien .kategorien-list .item.garelly .visual {
  background-image: url("../build/images/kategorien-ico02.png");
}
.kategorien .kategorien-list .item.garelly .visual:hover {
  background-image: url("../build/images/kategorien-ico02-hover.png");
}
.kategorien .kategorien-list .item.kontakt .visual {
  background-image: url("../build/images/kategorien-ico03.png");
}
.kategorien .kategorien-list .item.kontakt .visual:hover {
  background-image: url("../build/images/kategorien-ico03-hover.png");
}
.kategorien .kategorien-list .visual {
  width: 77px;
  height: 77px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  margin: 0 auto 14px;
  background-color: #fff;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.kategorien .kategorien-list .visual:hover {
  background-color: #1088c8;
}
.kategorien .kategorien-list .visual a {
  display: block;
  height: 100%;
}
.kategorien .kategorien-list h3 {
  margin-bottom: 8px;
}

.align-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-height: 920px) {
  .align-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.kontakt-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .kontakt-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.kontakt-section h3 {
  margin-bottom: 25px;
}
.align-left {
  float: left;
  margin: 0 15px 10px 0;
}
.photo {
  width: 200px;
}
.photo img {
  margin: 0;
  display: block;
}
.photo span {
  background: #f9f8f8;
  text-align: center;
  padding: 5px 10px;
  display: block;
}
@media (max-width: 992px) {
  .align-left {
    float: none;
    display: block;
    margin: 0 0 20px;
  }
}
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 992px) {
  .form {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.form form {
  margin: 0;
}
.form fieldset {
}
@media (max-width: 992px) {
  .form fieldset {
    margin: 0;
  }
}
.form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.form .row.twice input {
  width: 45%;
}
@media (max-width: 479px) {
  .form .row.twice input {
    width: 43%;
  }
}
.form .row .error-text {
  position: absolute;
  color: red;
  bottom: 0;
  font-size: 10px;
}

.kontakt-info {
  font-size: 18px;
  line-height: 22px;
  padding: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  margin-top: -175px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  .kontakt-info {
    font-size: 18px;
    line-height: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 0 20px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    width: calc(100% - 40px);
  }
}
@media screen and (max-height: 620px) {
  .kontakt-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
  }
}
.kontakt-info p {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .kontakt-info p {
    margin-bottom: 20px;
  }
}
.kontakt-info a {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.kontakt-info a:hover {
  color: #1088c8;
}

button,
input,
textarea {
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gallery {
  margin-bottom: 20px;
}
.gallery .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  margin: 0 -20px;
}
@media (max-width: 992px) {
  .gallery .gallery-list {
    margin: 0;
  }
}
.gallery .gallery-list .item {
  height: 190px;
  width: calc(25% - 7px);
  margin-bottom: 7px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media (max-width: 992px) {
  .gallery .gallery-list .item {
    width: calc(33.3% - 7px);
  }
}
@media (max-width: 620px) {
  .gallery .gallery-list .item {
    width: calc(50% - 7px);
  }
}
@media (max-width: 479px) {
  .gallery .gallery-list .item {
    width: calc(100% - 7px);
  }
}
.gallery .gallery-list .item a {
  color: #fff;
  height: 100%;
  font-size: 13px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.gallery .gallery-list .item a:hover .title {
  color: #1088c8;
  background-color: white;
}
.gallery .gallery-list .item .title {
  color: #58585a;
  display: block;
  padding: 15px 15px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*form*/
.form-pattern .item,
.form-pattern .capcha {
  position: relative;
}

.form-pattern label.error {
  position: relative;
  font-size: 12px;
  left: 0;
  color: red;
  top: 0;
  background: white;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 300px;
  padding: 7px 10px;
  z-index: 10;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: none;
}

.checkbox__text {
  overflow: hidden;
  display: block;
  border: 0 !important;
  padding-left: 10px;
}
@media (max-width: 992px) {
  .checkbox__text {
    margin-bottom: 15px;
  }
}

.checkbox-pattern {
  float: left;
  margin-left: 4px;
}

.checkbox-pattern.errorText {
  color: red;
}

label.error:before {
  background: white;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  position: absolute;
  left: 15px;
  bottom: calc(100% - 7px);
  content: "";
  width: 15px;
  height: 15px;
}

label.error {
  position: absolute;
  top: 35px;
}

.form-pattern .ok {
  border: 1px solid green;
}

.submit-wrap {
  width: 150px;
  cursor: pointer;
  position: relative;
}

.submit-wrap.add-block {
  pointer-events: none;
}

.submit-over {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.submit-over:hover + input[type="submit"] {
  opacity: 0.5;
  color: #fff;
}

.no-border {
  text-decoration: none;
}

.blue-text {
  color: #1088c8;
}

.checkbox__text {
  position: relative;
  padding-left: 30px;
  display: block;
  cursor: pointer;
}

.checkbox__text:before,
.checkbox__text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.checkbox__text:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #1088c8;
  opacity: 0;
  top: 3px;
  left: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.checkbox__text:after {
  width: 20px;
  height: 20px;
  border: 1px solid #434343;
}

input[type="checkbox"]:checked ~ .checkbox__text:before,
input[type="radio"]:checked ~ .checkbox__text:before,
input[type="checkbox"]:checked ~ .checkbox__text:before,
input[type="radio"]:checked ~ .checkbox__text:before {
  opacity: 1;
}

label {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

label input[type="checkbox"],
label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.form .twice input {
  width: calc(48% - 20px) !important;
}

.kontakt-info a.anfahrtsskizze {
  text-decoration: underline;
}

.main-slider {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  height: 400px;
}
@media (max-width: 992px) {
  .main-slider {
    height: 300px;
  }
}
@media (max-width: 620px) {
  .main-slider {
    height: 200px;
  }
}
@media (max-width: 479px) {
  .main-slider {
    height: 150px;
  }
}

.slick-slider {
  position: relative;
  z-index: 30;
  display: block;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.slick-slider.image-slider,
.slick-slider.img-carousel {
  overflow-x: hidden;
}
.slick-slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  height: 100%;
}
.slick-slider .slick-track {
  position: relative;
  top: 0;
  left: 0;
}
.slick-slider .slick-track:before,
.slick-slider .slick-track:after {
  display: table;
  content: "";
}
.slick-slider .slick-track:after {
  clear: both;
}
.slick-slider .slick-slide {
  float: left;
  margin-bottom: 0;
  height: 400px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 992px) {
  .slick-slider .slick-slide {
    height: 300px;
  }
}
@media (max-width: 620px) {
  .slick-slider .slick-slide {
    height: 250px;
  }
}
.slick-slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.slick-slider .slick-prev,
.slick-slider .slick-next {
  position: absolute;
  width: 19px;
  height: 41px;
  cursor: pointer;
  text-indent: -9999px;
  font-size: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: url("../images/slider-nav.png") 0 0 no-repeat;
}
.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
  opacity: 0.5;
}
.slick-slider .slick-prev {
  left: 20px;
  right: auto;
}
.slick-slider .slick-next {
  left: auto;
  right: 20px;
  background-position: 0 -42px;
}
.slick-slider .slick-dots {
  width: 980px;
  max-width: 95%;
  padding: 0 50px;
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 50%;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  list-style: none;
}
.slick-slider .slick-dots:after {
  clear: both;
  content: "";
  display: block;
}
.slick-slider .slick-dots li {
  float: left;
  margin: 0 0 0 10px;
}
.slick-slider .slick-dots li:first-child {
  margin-left: 0;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: #fff;
}
.slick-slider .slick-dots button {
  float: left;
  text-indent: -9999px;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a6a8aa;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.slick-slider .slick-dots button:hover {
  background-color: #fff;
}

#header {
  z-index: 2000;
  position: relative;
  width: 1150px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.4);
}
#header .container {
  padding: 0;
  height: 138px;
  width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  #header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  #header .container {
    height: 57px;
    padding: 15px 20px;
    width: calc(100% - 40px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
  }
}
#header .logo {
  font: bold 40px/40px arial, sans-serif;
}
@media (max-width: 992px) {
  #header .logo {
    margin-top: 0;
  }
}
#header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .logo img {
  height: auto;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0;
}
@media (max-width: 1280px) {
  #header .logo img {
    height: 70px;
  }
}
@media (max-width: 992px) {
  #header .logo img {
    width: auto;
    height: 70px;
    margin-bottom: -6px;
  }
}
#header .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
}
#header nav {
  margin-bottom: 13px;
}
#header nav.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  overflow: auto;
  height: auto;
  padding-top: 0;
  top: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 992px) {
  #header nav {
    position: absolute;
    top: -1000%;
    left: 50%;
    width: 290px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    background-color: #ffffff;
  }
}
#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 -10px 0 0;
  padding: 0;
}
@media (max-width: 992px) {
  #header nav ul {
    margin: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#header nav li {
  margin: 0;
  position: relative;
}
#header nav li.mobile-show {
  display: none;
}
@media (max-width: 992px) {
  #header nav li.mobile-show {
    display: block;
  }
}
#header nav li:after {
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #a7a7a7;
  width: 1px;
  height: 25px;
  content: "";
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  #header nav li:after {
    display: none;
  }
}

#header nav li:first-child:after {
  display: none;
}

#header nav li:hover a,
#header nav li.active a {
  color: #1088c8;
}

@media (max-width: 992px) {
  #header nav li:hover a,
  #header nav li.active a {
    color: #fff;
    background-color: #1088c8;
    text-decoration: none;
  }
}
#header nav a {
  text-decoration: none;
  padding: 0 12px;
  color: #434343;
  font-size: 21px;
  line-height: 20px;

  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 992px) {
  #header nav a {
    padding: 15px 15px;
    border: 0;
    border-bottom: 1px dotted #ccc;
    display: block;
    font-weight: 300;
    text-transform: uppercase;
    color: #1088c8;
    font-size: 16px;
    text-align: left;
  }
}

.menu-opener {
  display: none;
  position: absolute;
  width: 30px;
  top: 18px;
  padding: 0;
  right: 21px;
  font-size: 15px;
  text-align: center;
  color: #000;
}
.menu-opener .menu {
  font-size: 12px;
  opacity: 0.7;
  display: block;
}
.menu-opener .bar {
  display: block;
  width: 100%;
  background: #1088c8;
  height: 5px;
  margin: 5px 0 0;
  clear: both;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-opener .ico-text {
  display: block;
  font-size: 15px;
  padding-top: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 100%;
}
.menu-opener.active .menu {
  padding-top: 10px;
}
@media (max-width: 992px) {
  .menu-opener {
    display: block;
    z-index: 1000;
  }
}
.menu-opener.active .bar {
  display: none;
  background: #1088c8;
}
.menu-opener.active .bar:nth-child(1),
.menu-opener.active .bar:nth-child(3) {
  display: block !important;
  margin: 15px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-opener.active .bar:nth-child(3) {
  display: block !important;
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-opener.active .ico-text {
  padding-top: 10px;
}

#footer {
  width: 100%;
  padding: 13px 0;
  color: #58585a;
  font-size: 14px;
  background-color: #f1f1f1;
}
@media (max-width: 768px) {
  #footer {
    padding: 15px 0;
  }
}
#footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  #footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
#footer .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 768px) {
  #footer .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  #footer .copy {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    text-align: center;
    font-size: 14px;
  }
}
#footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 13px;
  position: relative;
}
@media (max-width: 768px) {
  #footer .footer-links {
    padding-left: 0;
  }
}
#footer .footer-links:before {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-top: -1px;
  content: "";
  background-color: #58585a;
}
@media (max-width: 768px) {
  #footer .footer-links:before {
    display: none;
  }
}
@media (max-width: 768px) {
  #footer .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
#footer .footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1025px) {
  #footer .footer-links ul {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 768px) {
  #footer .footer-links ul {
    margin: 0 auto 5px !important;
  }
}
#footer .footer-links ul.pages {
  margin-left: 0;
  height: 14px;
}
#footer .footer-links ul.pages li:first-child a {
  border-left: 0;
}
#footer .footer-links ul.pages li.active a {
  color: #1088c8;
}
#footer .footer-links ul.pages li a {
  padding: 0 5px;
  font-size: 14px;
  text-decoration: none;
  line-height: 14px;
  border-left: 1px solid #58585a;
  color: #58585a;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#footer .footer-links ul.pages li a:hover {
  color: #1088c8;
}
#footer .footer-links li {
  margin: 0;
}
#footer .footer-links a {
  text-decoration: none;
  display: block;
  height: 100%;
}
#footer .social {
  margin: 0 106px 0 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  #footer .social {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin: 0 auto 10px;
  }
}
#footer .social li {
  margin-left: 10px;
}
#footer .social li:first-child {
  margin-left: 0;
}
#footer .social a {
  border-radius: 5px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  display: block;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#footer .social a:hover {
  opacity: 0.8;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 992px) {
  .form {
    padding: 20px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: calc(100% - 40px);
  }
}
.form form {
  margin: 0;
}
.form fieldset {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .form fieldset {
    margin: 0;
  }
}
.form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.form .row.twice input {
  width: 45%;
}
@media (max-width: 479px) {
  .form .row.twice input {
    width: 43%;
  }
}
.form .row .error-text {
  position: absolute;
  color: red;
  bottom: 0;
  font-size: 10px;
}
button,
input,
textarea {
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-field {
  position: relative;
}
/*form*/
.form-pattern .item,
.form-pattern .capcha {
  position: relative;
}

label.error {
  position: relative;
  font-size: 12px;
  left: 0;
  color: red;
  top: 0;
  background: white;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 300px;
  padding: 7px 10px;
  z-index: 10;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: none;
  order: 3;
}

.checkbox__text {
  overflow: hidden;
  display: block;
  margin-bottom: 15px;
  border: 0 !important;
  padding-left: 10px;
}
@media (max-width: 992px) {
  .checkbox__text {
    margin-bottom: 15px;
  }
}
.inputsubmit {
  width: 150px;
  font-size: 14px;
}
.checkbox-pattern {
  float: left;
  margin-left: 4px;
}

.checkbox-pattern.errorText {
  color: red;
}

.form-pattern .valid-pattern + .result:before {
  background: white;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  -ms-transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  position: absolute;
  left: 15px;
  bottom: calc(100% - 7px);
  content: "";
  width: 15px;
  height: 15px;
}

.form-pattern .error + .result {
  display: block;
}

.form-pattern .checkbox-pattern + .result {
  position: absolute;
  top: 35px;
}

.form-pattern .ok {
  border: 1px solid green;
}

.form-pattern .ok + .result {
  display: none;
}

.submit-wrap {
  width: 150px;
  cursor: pointer;
  position: relative;
}

.submit-wrap.add-block {
  pointer-events: none;
}

.submit-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.submit-over:hover + input[type="submit"] {
  background: #333;
  color: #fff;
}

.submit-over:hover + input[type="submit"] {
  background: #333;
  color: #fff;
}

.checkbox__text {
  position: relative;
  padding-left: 30px;
  display: block;
  cursor: pointer;
}

.checkbox__text:before,
.checkbox__text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.checkbox__text:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #1088c8;
  opacity: 0;
  top: 3px;
  left: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.checkbox__text:after {
  width: 20px;
  height: 20px;
  border: 1px solid #434343;
}

input[type="checkbox"]:checked ~ .checkbox__text:before,
input[type="radio"]:checked ~ .checkbox__text:before,
input[type="checkbox"]:checked ~ .checkbox__text:before,
input[type="radio"]:checked ~ .checkbox__text:before {
  opacity: 1;
}

label input[type="checkbox"],
label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.link_black {
  color: #000000;
}

.subline_red {
  color: #c9383e;
}

/*  form */
form {
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 20px;
}
form input,
form textarea {
  border: 1px solid #eae7e7;
  font-size: 13px;
  line-height: 20px;
  padding: 5px 10px;
  width: 275px;
  margin-bottom: 17px;
}
form input.error,
form textarea.error {
  border-color: red;
}
form textarea {
  resize: none;
  min-height: 85px;
  max-height: 85px;
  max-width: 275px;
  font-family: "Arial", sans-serif;
  width: 100%;
}

.form-checkbox {
  position: relative;
}
.form-checkbox input[type="checkbox"],
.form-checkbox input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.form-checkbox input[type="checkbox"]:checked ~ .check-ico:before,
.form-checkbox input[type="radio"]:checked ~ .check-ico:before {
  opacity: 1;
}
.form-checkbox input[type="checkbox"].error ~ .check-ico:after {
  border-color: red;
}
.form-checkbox .check-ico {
  position: relative;
  padding-left: 30px;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}
.form-checkbox .check-ico:before,
.form-checkbox .check-ico:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.form-checkbox .check-ico:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #c9383e;
  opacity: 0;
  top: 3px;
  left: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.form-checkbox .check-ico:after {
  width: 20px;
  height: 20px;
  border: 1px solid #eae7e7;
}

input[type="button"] {
  background-color: #eae7e7;
  border: 0;
  width: 100px;
  height: 30px;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
input[type="button"]:hover {
  background-color: #000;
}

/*# sourceMappingURL=main.css.map */
.inner-page .main .content {
  margin-top: -20px;
}
@media (max-width: 992px) {
  .inner-page .main .content {
    margin-top: 0;
  }
}
.title {
  display: block;
}
#ergebnis {
  width: 23px;
}

.switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f3f3f3;
}
.switch .switch__content {
  margin-right: 1rem;
}
.switch .switch__action .switch-action__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.switch .switch__action .switch-action__input {
  position: absolute;
  left: -9999px;
}
.switch
  .switch__action
  .switch-action__input:checked
  ~ .switch-action__text:after {
  background-color: #013220;
}
.switch
  .switch__action
  .switch-action__input:checked
  ~ .switch-action__text:before {
  right: 0.125rem;
}
.switch .switch__action .switch-action__text {
  padding-right: 6rem;
  font-size: 1rem;
  line-height: 2.5rem;
}
.switch .switch__action .switch-action__text:before,
.switch .switch__action .switch-action__text:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.switch .switch__action .switch-action__text:after {
  width: 4.75rem;
  height: 2.5rem;
  border-radius: 2rem;
  background-color: #cc0000;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.switch .switch__action .switch-action__text:before {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #ffffff;
  border-radius: 50%;
  top: 0.125rem;
  right: 2.35rem;
  z-index: 2;
  opacity: 1;
}

.cookie {
  background-color: #1088c8;
  color: #ffffff;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 11;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: center;
  -webkit-box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .cookie {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.cookie .cookie__content {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 992px) {
  .cookie .cookie__content {
    margin-bottom: 0;
    margin-right: 1.25rem;
  }
}
.cookie .cookie__content a {
  color: #fff;
}
.cookie .cookie__content a:before {
  border-color: #fff;
}
.cookie .cookie__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 577px) {
  .cookie .cookie__action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.cookie .cookie__action .btn {
  margin: 0;
}
@media screen and (min-width: 577px) {
  .cookie .cookie__action .btn {
    min-width: 8rem;
  }
}
.cookie .cookie__action .btn:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 577px) {
  .cookie .cookie__action .btn:not(:last-child) {
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
}

.cookie .cookie__action .btn {
  float: left;
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
  text-decoration: none;
  padding: 5px 10px;
  text-align: center;
  margin-left: 10px;
  border-radius: 0;
  font-size: 14px;
  cursor: pointer;
  line-height: 25px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.cookie .cookie__content p {
  margin: 0;
}
.cookie .cookie__action .btn.cookie-close-js {
  color: #1088c8;
  background-color: #fff;
  border-color: #fff;
}
.cookie .cookie__action .btn.cookie-close-js:hover {
  color: #fff;
  background-color: #1088c8;
  border-color: #fff;
}
.cookie .cookie__action .btn.btn_secondary {
  color: #fff;
  background-color: #1088c8;
  border-color: #fff;
}
.cookie .cookie__action .btn.btn_secondary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
@media (max-width: 992px) {
  .cookie .cookie__action .btn {
    float: none;
    min-width: 200px;
    margin: 0 auto;
  }
}

.cookie .cookie__content a {
  color: #ffffff;
  display: inline-block;
  position: relative;
}
