/* General */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #FAF9F6;
  scroll-behavior: smooth;
  position: relative;
}

.max-w-1440 {
  max-width: 1440px;
  margin: 0 auto;
}

.max-w-1280 {
  max-width: 1280px;
  margin: 0 auto;
}

.max-w-800 {
  max-width: 800px;
}

/* Font */
@font-face {
  font-family: "Comfortaa";
  src: url("../font/Comfortaa-Regular.ttf") format("truetype");
}
.submitMessage {
  color: #64C800;
}

.container {
  padding: 0 100px;
}
@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 467px) {
  .container {
    padding: 0 30px;
  }
}

.btn {
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  background-color: transparent;
  box-shadow: none;
}
.btn a {
  text-decoration: none;
  color: #333;
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
}
.btn-simple {
  border: 2px solid #bababa;
  padding: 8px 18px;
  font-size: 1rem;
  margin: 15px 0;
}
@media only screen and (max-width: 767px) {
  .btn-simple {
    font-size: 0.875rem;
  }
}
.btn-simple:hover {
  background-color: #fff;
  border-color: #333;
}
.btn-simple.light-orange a {
  color: orange;
}

/* == image etxt section == */
.image-text-section {
  display: flex;
  justify-content: center;
  margin: 200px auto;
  align-items: center;
}
.image-text-section.revert .basicText {
  padding-left: 100px;
  padding-right: 0;
}
.image-text-section .basicText {
  width: 50%;
  padding-left: 0;
  padding-right: 100px;
  margin: 0;
}
.image-text-section .image {
  width: 50%;
  transform: translate3d(0, 0vh, 0) translate3d(0, 120px, 0);
}
.image-text-section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.image-text-section .image.animation img {
  width: auto;
  max-height: 420px;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .image-text-section .basicText {
    padding-right: 50px;
  }
  .image-text-section.revert .basicText {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .image-text-section {
    margin: 120px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .image-text-section.revert .basicText {
    padding-left: 0;
  }
  .image-text-section .basicText {
    order: 2;
    width: 100%;
    max-width: 450px;
    margin-left: 0;
    padding-right: 0;
  }
  .image-text-section .image {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0;
    max-width: 400px;
    transform: translate3d(0, 0vh, 0) translate3d(0, 30px, 0);
  }
  .image-text-section .image.animation img {
    max-height: 350px;
    margin: 0 auto;
    filter: brightness(1.3);
  }
}

/* == end image etxt section == */
/* == basic text == */
.basicText {
  margin: 180px auto;
}
.basicText.smallSpace {
  margin: 80px auto;
  margin-bottom: 0;
}
.basicText.mediumSpace {
  margin: 80px auto;
  margin-bottom: 60px;
}
.basicText.no-margin {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .basicText {
    margin: 120px 0;
  }
}

/* ==  end basic text == */
/* == navigation == */
.nav-wrap {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  .nav-wrap {
    padding: 0 20px;
  }
}
.nav-wrap .logo {
  width: 100px;
  height: 60px;
  background-color: #333;
  margin: 10px 0;
  border-radius: 4px;
}
.nav-wrap .logo img {
  width: 100%;
  height: auto;
}
.nav-wrap .hamburger {
  display: none;
  width: 40px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .nav-wrap .hamburger {
    display: block;
  }
}
.nav-wrap .hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 50%;
  background: #333333;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.nav-wrap .hamburger span:nth-child(even) {
  left: 50%;
  border-radius: 0 4px 4px 0;
}
.nav-wrap .hamburger span:nth-child(odd) {
  left: 0px;
  border-radius: 4px 0 0 4px;
}
.nav-wrap .hamburger span:nth-child(1), .nav-wrap .hamburger span:nth-child(2) {
  top: 0px;
}
.nav-wrap .hamburger span:nth-child(3), .nav-wrap .hamburger span:nth-child(4) {
  top: 9px;
}
.nav-wrap .hamburger span:nth-child(5), .nav-wrap .hamburger span:nth-child(6) {
  top: 18px;
}
.nav-wrap .hamburger .navigation-nav.mobile {
  display: none;
}
.nav nav a {
  color: #A9A9A9;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1.125rem;
  font-family: "Comfortaa";
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02rem;
}
.nav nav a:hover {
  color: #333;
}
.nav nav a.active {
  color: #333333;
}
.nav nav a.active::after {
  content: " ";
  width: 100%;
  height: 2px;
  background: #333333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -10px;
}
.nav .nav-mobile {
  display: none;
  background-color: rgba(51, 51, 51, 0.8);
  padding: 20px 40px;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .nav .nav-mobile {
    padding: 20px;
  }
}
.nav .nav-mobile nav {
  display: flex;
  flex-wrap: wrap;
}
.nav .nav-mobile nav a {
  margin: 5px 0;
  width: 100%;
  background: #000;
  padding: 10px;
  border-radius: 4px;
}
.nav.active .hamburger span:nth-child(1), .nav.active .hamburger span:nth-child(6) {
  transform: rotate(45deg);
}
.nav.active .hamburger span:nth-child(2), .nav.active .hamburger span:nth-child(5) {
  transform: rotate(-45deg);
}
.nav.active .hamburger span:nth-child(1) {
  left: 5px;
  top: 7px;
}
.nav.active .hamburger span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}
.nav.active .hamburger span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.nav.active .hamburger span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.nav.active .hamburger span:nth-child(5) {
  left: 5px;
  top: 17px;
}
.nav.active .hamburger span:nth-child(6) {
  left: calc(50% - 5px);
  top: 17px;
}
.nav.active .nav-mobile {
  display: block;
}
.nav.active .nav-mobile nav a {
  color: #fff;
}
.nav.active .nav-mobile nav a.active::after {
  content: " ";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

/* == end navigation == */
/* == hero == */
.hero {
  width: 100%;
  height: 650px;
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 80%;
     object-position: 50% 80%;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 350px;
  }
}

/* == end hero == */
/* == services == */
.service-icons {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
}
.service-icons .box {
  margin: 10px;
  width: 90px;
  border-radius: 8px;
  cursor: pointer;
  color: #333;
}
.service-icons .box a {
  text-decoration: none;
}
.service-icons .box:hover {
  background: #f4f2ef;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.service-icons .box:hover .icon-title {
  color: #000;
}
.service-icons .box img {
  width: 60px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.service-icons .box .icon-title {
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .service-icons {
    padding: 20px 0;
  }
  .service-icons .box {
    width: 65px;
    margin: 5px;
    background-color: #fff;
  }
  .service-icons .box img {
    width: 40px;
  }
  .service-icons .icon-title {
    font-size: 0.875rem;
  }
}

/* == end services == */
/* == service cards == */
.service-wrapper {
  margin: 40px auto;
}
.service-wrapper .box-big {
  background-color: #fff;
  border-radius: 16px;
  padding: 35px 55px;
}
.service-wrapper .box-big .icon {
  width: 55px;
}
.service-wrapper .box-big .icon img {
  width: 100%;
  height: auto;
}
.service-wrapper .box-big h2 {
  margin: 20px 0 30px;
  position: relative;
}
.service-wrapper .box-big h2::after {
  content: " ";
  width: 430px;
  height: 2px;
  background-color: orange;
  position: absolute;
  left: -55px;
  bottom: -10px;
}
.service-wrapper .box-big strong {
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .service-wrapper .box-big {
    padding: 30px 35px;
  }
  .service-wrapper .box-big h2::after {
    width: 320px;
    left: -35px;
    bottom: -10px;
  }
  .service-wrapper p {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 467px) {
  .service-wrapper {
    margin: 30px auto;
  }
  .service-wrapper .box-big {
    padding: 25px;
    margin: 0 10px;
  }
  .service-wrapper .box-big h2::after {
    left: -25px;
  }
  .service-wrapper.container {
    padding: 0;
  }
}

/* == end service cards == */
/* == team card == */
.team-section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 1000px;
  margin-bottom: 150px;
}
.team-section-card {
  width: calc(33.3333% - 16px);
  background-color: #fff;
  padding: 15px;
  margin: 8px;
  border-radius: 8px;
}
.team-section-card-image {
  background-color: #F2F2F2;
  width: 100%;
  height: 250px;
  border-radius: 8px;
}
.team-section-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.team-section-card-content {
  padding: 25px 0 0 10px;
}
.team-section-card-content h3 {
  margin-bottom: 5px;
  color: #333;
}
.team-section-card-content p {
  font-size: 0.875rem;
  color: #636262;
  letter-spacing: 0.03rem;
}
@media only screen and (max-width: 1024px) {
  .team-section-card {
    width: calc(50% - 16px);
    max-width: 300px;
    margin: 8px auto;
  }
}
@media only screen and (max-width: 767px) {
  .team-section-card {
    width: 280px;
    padding: 12px;
    margin: 8px auto;
  }
}

/* == end team card == */
/* == map card == */
.map {
  position: relative;
  background-color: #fff;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin: 40px auto;
}
.map-title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333;
  border-radius: 8px 4px 4px 4px;
  padding: 5px 16px;
}
.map-title p {
  color: #fff;
  letter-spacing: 0.05rem;
}
.map-notice {
  margin-top: 30px;
}
.map-box {
  width: 50%;
}
.map-box-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 8px 0;
}
.map-box-content img {
  width: 30px;
  height: 30px;
}
.map-box-content p {
  margin-left: 20px;
}
.map-box-location-wrap {
  height: 300px;
  position: relative;
}
.map-box-location-wrap .iframe .map-text {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  color: orange;
  max-width: 400px;
  right: 0;
}
.map-box-location-wrap .iframe iframe {
  padding: 0;
  border: none;
  width: 100%;
  height: 300px;
}
.map-box-location-wrap .iframe .logo {
  position: absolute;
  right: 0;
  top: 0;
  width: 105px;
  height: 65px;
}
.map-box-location-text {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-box-location-text p:first-of-type {
  min-width: 200px;
}
@media only screen and (max-width: 1024px) {
  .map {
    flex-wrap: wrap;
    padding: 55px 40px 25px 40px;
  }
  .map-box {
    width: 100%;
    margin-bottom: 40px;
  }
  .map-box:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .map {
    padding: 50px 20px 20px 20px;
  }
  .map-box-content p {
    margin-left: 5px;
  }
  .map-box-location-text {
    flex-wrap: wrap;
  }
}

/* == end map card == */
/* == contact == */
.contact {
  margin: 40px auto;
}
.contact-box {
  width: 100%;
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 8px;
  position: relative;
}
.contact-box .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.contact-box:first-of-type {
  margin-right: 26px;
}
.contact-box .btn {
  font-weight: 300;
  padding: 0;
  margin: 5px 10px;
}
.contact-box .btn.submit {
  height: 40px;
  padding: 0 15px;
}
.contact-box .btn.submit:hover a {
  color: #fff;
}
.contact-box .btn a {
  padding: 8px 15px;
  display: flex;
  align-items: center;
}
.contact-box .btn img {
  width: auto;
  height: 25px;
  margin-right: 18px;
}
.contact-box .btn:hover {
  color: #fff;
}
.contact-box-panel {
  margin-top: 20px;
}
.contact-box-panel form {
  max-width: 600px;
}
.contact-box-panel form input {
  height: 45px;
  background-color: transparent;
  border: 1px solid #bababa;
  padding: 0 15px;
  border-radius: 4px;
  margin: 5px 0;
  width: 100%;
  font-family: "Comfortaa";
  color: #333;
}
.contact-box-panel form input::-moz-placeholder {
  font-size: 0.875rem;
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
  color: #bababa;
}
.contact-box-panel form input::placeholder {
  font-size: 0.875rem;
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
  color: #bababa;
}
.contact-box-panel form textarea {
  background-color: transparent;
  border: 1px solid #bababa;
  padding: 20px 15px;
  border-radius: 4px;
  margin: 5px 0;
  width: 100%;
  letter-spacing: 0.02rem;
  color: #333;
}
.contact-box-panel form textarea::-moz-placeholder {
  font-size: 0.875rem;
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
  color: #bababa;
}
.contact-box-panel form textarea::placeholder {
  font-size: 0.875rem;
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
  color: #bababa;
}
.contact-box-panel form .wrap {
  display: flex;
  align-items: center;
}
.contact-box-panel form .wrap input {
  width: 50%;
}
.contact-box-panel form .wrap input:first-of-type {
  margin-right: 5px;
}
.contact-box-panel .btn {
  height: 35px;
  color: #333;
  outline: none;
  background-color: #64C800;
  border: none;
  font-weight: bold;
}
.contact-box-panel .btn:hover {
  color: #fff;
}
.contact-box p {
  white-space: pre-line;
  margin: 15px 0;
  letter-spacing: 0.02rem;
}
.contact-box p.list {
  letter-spacing: 0.01rem;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contact-box p.list {
    font-size: 14px;
  }
}
.contact-box.register .register-qr {
  width: 140px;
  height: 140px;
}
@media only screen and (max-width: 1024px) {
  .contact-box {
    padding: 40px 30px;
  }
  .contact-box p {
    font-size: 0.875rem;
    line-height: 22px;
    margin: 12px 0;
  }
  .contact-box .btn {
    font-size: 0.875rem;
    font-weight: 300;
    flex-wrap: wrap;
    height: auto;
    text-align: left;
    line-height: 22px;
    padding-top: 2px;
    width: 100%;
  }
  .contact-box .btn img {
    height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    flex-wrap: wrap;
  }
  .contact-box {
    width: 100%;
    padding: 30px 20px;
    margin: 40px 0;
  }
  .contact-box:first-of-type {
    margin: 0;
  }
}

/* == end contact == */
/* == footer == */
.footer {
  background-color: #1b1b1b;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 300px;
}
.footer .logo {
  position: absolute;
  left: 40px;
  top: 40px;
}
.footer .logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
.footer .nav {
  width: 100%;
  display: flex;
  align-items: center;
}
.footer .nav nav {
  margin-left: auto;
  margin-right: 15%;
  margin-top: 45px;
}
.footer .nav nav a {
  padding-bottom: 5px;
}
.footer .nav nav a:hover {
  color: #fff;
}
.footer .nav nav a.active {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.footer .top-info {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  align-items: center;
}
.footer .top-info p {
  font-size: 1.125rem;
  color: #A9A9A9;
  margin-right: 20px;
  letter-spacing: 0.02rem;
}
.footer .top-info img {
  width: 42px;
  height: auto;
  margin: 0 5px;
}
.footer .bottom-info {
  z-index: 900;
  position: absolute;
  bottom: 20px;
  right: 30px;
  color: #A9A9A9;
}
.footer .bottom-info a {
  color: #A9A9A9;
  text-decoration: none;
  font-size: 1.125rem;
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
}
.footer .bottom-info a:hover {
  color: #fff;
}
.footer .bottom-info a.active {
  color: #fff;
  position: relative;
}
.footer .bottom-info a.active::after {
  content: " ";
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: -10px;
}
@media only screen and (max-width: 767px) {
  .footer {
    height: 520px;
  }
  .footer .logo {
    top: 30px;
    left: 30px;
  }
  .footer .logo img {
    max-width: 100px;
  }
  .footer .nav {
    width: 100%;
    flex-wrap: wrap;
    padding-left: 40px;
    margin-top: 30px;
  }
  .footer .nav nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .footer .nav nav a {
    margin: 20px 0;
    width: 100%;
  }
  .footer .nav nav a.active {
    border-bottom: 0;
  }
  .footer .top-info {
    top: 30px;
    left: unset;
    right: 0;
    flex-wrap: wrap;
    width: 120px;
  }
  .footer .top-info p {
    margin: 0;
    margin-bottom: 5px;
  }
  .footer .bottom-info {
    right: 30px;
    bottom: 30px;
  }
}

/* == end footer == */
/* General Classes */
.flip {
  transform: scaleX(-1);
}

.mobile {
  display: none;
}

.datenschutz ul li {
  list-style: circle;
  margin: 10px 0;
}

@media only screen and (max-width: 767px) {
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}
h1,
h2,
h3,
p {
  font-family: "Comfortaa";
  letter-spacing: 0.02rem;
  color: #333;
}
h1 span,
h2 span,
h3 span,
p span {
  color: orange;
}

h1 {
  font-size: 2.125rem;
}

h2 {
  font-size: 1.375rem;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1.125rem;
    line-height: 28px;
  }
}
h2.spacing-s {
  margin-bottom: 10px;
}
h2.spacing-m {
  margin-bottom: 20px;
}
h2.spacing-l {
  margin-bottom: 30px;
}

h3 {
  font-size: 1.125rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.875rem;
}
p.subtitle {
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  p.subtitle {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
.cookieBox {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 1px);
  position: fixed;
}
.cookieBox .updateBtn {
  margin-left: 20px;
  margin-bottom: 10px;
  width: 60px;
  cursor: pointer;
}
.cookieBox .updateBtn img {
  width: 100%;
  height: auto;
  display: block;
}
.cookieBox .updateBtn .dark {
  display: block;
}
.cookieBox .updateBtn .light {
  display: none;
}
.cookieBox .updateBtn:hover .dark {
  display: none;
}
.cookieBox .updateBtn:hover .light {
  display: block;
}
.cookieBox .coockieBanner {
  background-color: #333333;
  padding: 20px 50px;
}
.cookieBox .coockieBanner.hidden {
  display: none;
}
.cookieBox .coockieBanner p {
  font-size: 18px;
  line-height: 25px;
  max-width: 980px;
  color: #fff;
}
.cookieBox .coockieBanner .flex {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 10px 0;
}
.cookieBox .coockieBanner button {
  width: 200px;
  height: 40px;
  background: transparent;
  border: 1px solid #fff;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-out;
  margin: 10px 0;
  font-family: "Comfortaa";
}
.cookieBox .coockieBanner button:hover {
  box-shadow: rgba(18, 18, 18, 0.266) 0px 2px 1px 0px;
  transition: all 0.3s ease-out;
}
.cookieBox .coockieBanner button.accept {
  background-color: lightgreen;
  border-color: lightgreen;
  margin-right: 10px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .cookieBox .coockieBanner {
    padding: 20px 30px;
  }
}/*# sourceMappingURL=main.css.map */