/* Fonts */
@font-face {
  font-family: "Roboto";
  font-weight: normal;
  font-style: normal;
  src: local("Roboto"),
    url("/src/fonts/roboto/Roboto-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Thin";
  font-weight: normal;
  font-style: normal;
  src: local("Roboto-Thin"),
    url("/src/fonts/roboto/Roboto-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "Comfortaa";
  font-weight: normal;
  font-style: normal;
  src: local("Comfortaa"),
    url("/src/fonts/comfortaa/Comfortaa-Light.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  font-weight: 100;
}

h1,
h2,
h3 {
  font-weight: 100;
  font-family: "Comfortaa";
}

img {
  width: 100%;
  height: auto;
}

strong {
  color: #f29301;
}

li a {
  font-size: 20px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
}

.text-fade {
  opacity: 1;
  transition: all 0.3s ease-out;
  transform: translateY(100px);
}

.code {
  overflow: hidden;
}

.flex {
  display: flex;
}
.flex .center {
  align-items: center;
}
.flex .start {
  align-items: flex-start;
}

.nav {
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  text-align: right;
  position: fixed;
  top: 0;
  z-index: 100;
  padding-top: 20px;
}
.nav ul {
  display: inline;
  padding: 0 20px;
  position: relative;
}
.nav ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  padding-left: 20px;
}
.nav ul li a {
  color: #333333;
  padding-bottom: 15px;
  letter-spacing: 0.02rem;
}
.nav ul li a:hover {
  color: #f29301;
}
.nav ul li a.active {
  color: #f29301;
  -webkit-animation: slide 1s;
  animation: slide 1s;
  border-bottom: 2px solid;
}
.nav ul li.drop-trigger {
  cursor: default;
}
.nav ul li.drop-trigger a.active {
  -webkit-animation: none;
  animation: none;
  border-bottom: none;
}
.nav ul li.drop-trigger a.active-child {
  color: #f29301 !important;
  -webkit-animation: slide 1s;
  animation: slide 1s;
  border-bottom: 2px solid;
}
.nav .dropdown {
  position: absolute;
  top: 30px;
  width: 40%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.541);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  border-radius: 0 0 4px 4px;
  left: 23%;
  transform: translateX(-20%);
}
.nav .dropdown.show {
  opacity: 1;
  pointer-events: all;
}
.nav .dropdown button {
  width: 100%;
  height: 38px;
  background-color: #fff;
  border-radius: 5px;
  margin: 2px 0;
  border: 0;
  cursor: pointer;
}
.nav .dropdown button a {
  font-size: 18px;
  color: #333333;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  padding-top: 8px;
}
.nav .dropdown button a.active {
  color: #f29301;
  -webkit-animation: slide 1s;
  animation: slide 1s;
}
.nav .dropdown button:hover {
  background-color: rgb(250, 250, 250);
}
.nav .dropdown button:hover a {
  color: #f29301;
}
@media only screen and (max-width: 767px) {
  .nav .dropdown {
    display: none;
  }
}

.hamburger {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.hamburger.animation .block-01 {
  display: none;
}
.hamburger.animation .block {
  transform: rotate(45deg);
}
.hamburger.animation .block.block-reserve {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hamburger .block {
  width: 20px;
  height: 2px;
  background-color: #f29301;
  transition: all 0.3s ease-out;
}
.hamburger .block-bottom {
  margin-top: 5px;
}

.mobile_nav {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.9);
  right: 0;
  top: 50px;
  position: absolute;
  opacity: 0;
  font-size: 20px;
  text-align: left;
  pointer-events: none;
  z-index: 100;
  padding: 20px;
  line-height: 30px;
}
.mobile_nav ul {
  padding: 0;
  width: 90%;
}
.mobile_nav li {
  list-style: none;
  padding-left: 0;
  transition: all 0.3s ease-out;
  transform: translateX(-200px);
  border-radius: 4px;
  cursor: pointer;
  background-color: #000000;
  margin: 10px 0;
  padding: 2px 2px 0 15px;
}
.mobile_nav li a {
  width: 100%;
  height: 100%;
  display: block;
}
.mobile_nav li:hover a {
  color: #f29301;
  -webkit-animation: slide 0.5s;
  animation: slide 0.5s;
  border-bottom: 1px solid;
}
.mobile_nav li.service-mobile {
  margin-left: 20px;
}
.mobile_nav.open {
  opacity: 1;
  pointer-events: all;
  position: fixed;
}
.mobile_nav.open li {
  transform: translateX(0);
}
.mobile_nav.animation .block_01 {
  display: none;
}
.mobile_nav.animation .block_02 {
  transform: rotate(45deg);
}
.mobile_nav.animation .block_03 {
  transform: rotate(-45deg) translate(5px, -5.5px);
}

@media only screen and (max-width: 768px) {
  .nav ul li {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .mobile_nav.open {
    display: none;
  }
}
/* Header*/
.main-header {
  height: 80vh;
  margin-top: -50px;
  position: relative;
  font-family: "Comfortaa";
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 30px;
  color: #000;
  /* Aimation Text  */
}
.main-header.small {
  height: 400px;
  color: #333;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2);
}
.main-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-header .main-top {
  border-right: solid 2px #000;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: animated-text 3s linear 1s 1 normal both,
    animated-cursor 400ms linear infinite;
  animation: animated-text 3s linear 1s 1 normal both,
    animated-cursor 400ms linear infinite;
  color: #000;
  font-size: 22px;
  margin: 20px auto;
}
.main-header .main-bottom-list {
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: animated-text-list 3s linear 1s 1 normal both,
    animated-cursor 300ms linear infinite;
  animation: animated-text-list 3s linear 1s 1 normal both,
    animated-cursor 300ms linear infinite;
  color: #fff;
}
.main-header .main-bottom-list ul {
  display: flex;
  justify-content: space-evenly;
  width: 600px;
  list-style: disc;
  margin: 0 auto;
}
.main-header .main-logo {
  width: 250px;
  top: 15%;
  left: 30px;
  position: absolute;
  opacity: 0;
  transform: translate(-200px);
}
.main-header .main-logo img {
  margin-left: 30px;
}
.main-header .main-logo.animation {
  transition: all 1s ease-out;
  opacity: 1;
  transform: translate(0);
}
.main-header .header-box-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.main-header .header-box-wrapper .text-wrapper {
  bottom: 0;
  top: unset;
  display: flex;
  justify-content: space-evenly;
  height: 80px;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  align-items: baseline;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
  padding-top: 27px;
}
.main-header .header-box-wrapper .text-wrapper h1 {
  font-size: 30px;
  color: #000;
  font-weight: 500;
  margin: 0;
}
.main-header .header-box-wrapper .text-wrapper p {
  font-size: 30px;
  color: #000;
  margin: 0;
}
.main-header .header-box-wrapper .logo-wrapper {
  position: absolute;
  width: 300px;
  height: 180px;
  bottom: 150px;
  border-radius: 0 4px 4px 0;
  top: 130px;
}
.main-header .header-box-wrapper .logo-wrapper img {
  width: 180px;
  height: auto;
  display: block;
  margin: 20px auto;
  filter: drop-shadow(1px 0px 4px #fff);
}
.main-header .headline-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.main-header .headline-wrapper h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .main-header.small h2 {
    font-size: 24px;
  }
  .main-header .header-box-wrapper .logo-wrapper {
    top: 15%;
    left: 0;
    border-radius: 4px;
    height: 130px;
    width: 180px;
  }
  .main-header .header-box-wrapper .logo-wrapper img {
    width: 120px;
  }
  .main-header .header-box-wrapper .text-wrapper {
    height: auto;
    border-radius: 4px;
    width: 85%;
    padding-top: 20px;
    flex-wrap: wrap;
    height: 140px;
  }
  .main-header .header-box-wrapper .text-wrapper .main-top {
    font-size: 18px;
  }
  .main-header .header-box-wrapper .text-wrapper h1 {
    font-size: 20px;
  }
  .main-header .header-box-wrapper .text-wrapper p {
    font-size: 16px;
  }
}

/* Service*/
.service {
  width: 100%;
  background: #333333;
  padding-top: 80px;
  display: block;
  transition: all 0.3s ease-out;
}
.service.spacer {
  margin-bottom: 450px;
  transition: all 0.3s ease-out;
}
.service h1 {
  font-size: 34px;
  color: #fff;
  text-align: center;
  padding-bottom: 25px;
}
.service .services {
  width: 200px;
  height: 140px;
  background-color: #fff;
  -webkit-margin-start: 20px;
  margin-inline-start: 20px;
  color: #000;
  position: relative;
  border-radius: 5px;
  margin: 20px;
  cursor: pointer;
}
.service .services.small {
  width: 250px;
  height: 180px;
  margin: 16px auto 0;
}
.service .service-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 720px;
}
.service .service-wrapper .effect-hover-content h2 {
  background: orange;
  padding: 5px;
  border-radius: 4px;
  left: 5px;
  transform: translate(0);
  font-size: 16px;
  max-width: 160px;
  bottom: 5px;
  top: unset;
  margin: 0;
}
.service h2 {
  font-size: 18px;
  color: #000;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -30%);
  text-align: center;
  line-height: 22px;
  font-weight: 500;
}
.service img {
  width: 40px;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
  transition: all 0.3s ease-out;
}
.service .txt-box {
  letter-spacing: 1px;
  font-size: 18px;
  color: #333333;
  text-align: center;
  padding: 40px 20px;
}
.service .services.rainbow:hover img {
  scale: 1.2;
  transition: all 0.3s ease-out;
}
.service .services.small.rainbow:hover img {
  padding-top: 30px;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .service .services {
    width: 300px;
  }
  .service h1 {
    font-size: 24px;
  }
  .service .service-link-wrapper {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 420px) {
  .service h1 {
    font-size: 22px;
    padding-bottom: 25px;
  }
}

/* Detail Section*/
.detail-box {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 80px;
  color: #fff;
  position: relative;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.detail-box .circle {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid #fff;
  position: relative;
  letter-spacing: 1px;
  cursor: pointer;
}
.detail-box .circle.move .toggle-line {
  border-color: #f29301;
  transform: translate(-50%, -50%) rotate(0);
}
.detail-box .circle:hover {
  border-color: #f29301;
}
.detail-box p {
  margin-left: 20px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}
.detail-box .detail-wrapper {
  display: flex;
  align-items: center;
  margin: 0 40px;
}
.detail-box .line {
  border: 1px solid #fff;
  width: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.detail-box .line.toggle-line {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .detail-box {
    flex-wrap: wrap;
    padding-top: 40px;
  }
  .detail-box .detail-wrapper {
    width: 100%;
    margin: 10px 40px;
  }
  .detail-box .detail-wrapper .circle {
    width: 40px;
    height: 42px;
  }
}

.detail-wrap {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 100px 0;
}
.detail-wrap .detail-card {
  width: calc(50% - 24px);
  height: auto;
  border-radius: 8px;
  margin: 0 12px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  flex-wrap: wrap;
}
.detail-wrap .detail-card img {
  width: 100%;
  border-radius: 8px;
  padding-top: 0;
}
.detail-wrap .detail-card h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #000;
}
.detail-wrap .detail-card iframe {
  border-radius: 8px;
}
.detail-wrap .detail-card .adress {
  color: #000;
  text-align: center;
  font-size: 18px;
}
.detail-wrap .detail-card-inner .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  min-width: 400px;
}
.detail-wrap .detail-card-inner .flex div {
  font-size: 18px;
  color: #000;
}
.detail-wrap .detail-card .small-icon {
  width: auto;
  height: 30px;
  padding: 0;
  margin-left: 40px;
}
@media only screen and (max-width: 1024px) {
  .detail-wrap .detail-card {
    width: 100%;
    justify-content: flex-start;
    padding: 30px;
    margin: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .detail-wrap .detail-card {
    margin: 0;
    padding: 30px 20px;
    border-radius: 0;
    display: flex;
    justify-content: center;
  }
  .detail-wrap .detail-card .adress {
    font-size: 14px;
  }
  .detail-wrap .detail-card-inner .detail-card-left p,
  .detail-wrap .detail-card-inner .detail-card-right p {
    font-size: 14px;
  }
  .detail-wrap .detail-card-inner .flex {
    min-width: 300px;
  }
  .detail-wrap .detail-card-inner .flex div {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .detail-wrap {
    padding-bottom: 0;
  }
}

.detail-banner {
  text-align: center;
  border-radius: 8px 8px 0 0;
  bottom: 0;
  height: auto;
  padding: 50px 0;
  width: 100%;
}
.detail-banner .phone {
  font-size: 16px;
  color: #000;
}
.detail-banner .detail-txt {
  font-size: 16px;
  color: #000;
}
.detail-banner .service-link a {
  color: #f29301;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: bold;
}
.detail-banner.active {
  height: auto;
  transition: all 0.3s ease-out;
}
.detail-banner.active .wrap {
  display: block;
}

.popup {
  pointer-events: none;
  transition: all 0.3s ease-out;
  height: 450px;
  background-color: #fff;
  padding: 50px;
  width: 700px;
  border-radius: 5px;
  display: none;
  position: absolute;
  left: 50%;
  top: 550px;
  transform: translate(-50%, -50%);
  display: none;
  transition: all 2.3s ease-out;
  box-sizing: border-box;
}
.popup p {
  color: #333333;
  font-size: 20px;
}
.popup h3 {
  color: #333333;
  text-align: center;
  font-size: 30px;
  margin: 0;
}
.popup .open-txt-box {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0;
}
.popup .open-small {
  color: gray;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}
.popup .open-small span {
  color: #000;
}
.popup.map-box {
  padding: 0 50px;
  text-align: center;
}
.popup.map-box.show iframe {
  margin: 0 auto;
  display: block;
  padding-top: 0px;
}
.popup .icon-wrapper {
  width: 35px;
  margin: 0 0 20px 0;
  transform: translateY(-10px);
}
.popup .icon-wrapper img {
  padding-top: 0;
}
.popup.show {
  pointer-events: all;
  transition: all 0.3s ease-out;
  display: block;
}
.popup.show .text-fade {
  opacity: 1;
  transition: all 2.6s ease-out;
  transform: translateY(0);
}
@media only screen and (max-width: 767px) {
  .popup {
    top: 700px;
    width: 90%;
    height: auto;
    margin-top: 50px;
    padding-top: 60px;
  }
  .popup.map-box {
    padding: 30px;
    padding-top: 50px;
  }
  .popup h3 {
    font-size: 25px;
  }
  .popup .open-txt-box .open-txt p,
  .popup .open-txt-box .open-nr p,
  .popup .open-txt-box .open-small p {
    font-size: 16px;
  }
  .popup .open-small {
    margin: 0;
  }
  .popup .detail-box p {
    margin: 20px 0;
  }
  .popup .icon-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .popup {
    width: 95%;
  }
}

.close-wrapper {
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.close-wrapper .pop-close {
  position: absolute;
  right: 15px;
  top: 25px;
}
.close-wrapper .pop-close .close-line {
  width: 25px;
  height: 1px;
  background-color: #ff3232;
  transition: height 0.1s ease-out;
}
.close-wrapper .pop-close .close-01 {
  transform: rotate(45deg);
}
.close-wrapper .pop-close .close-02 {
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
}
.close-wrapper:hover .pop-close .close-line {
  height: 2px;
  transition: height 0.1s ease-out;
}

/* Text Section*/
.text-section-wrapper {
  background-color: #fff;
  padding: 50px 0;
  padding-bottom: 100px;
}
.text-section-wrapper.small {
  padding: 0;
}

.text-section {
  padding: 100px;
  max-width: 1000px;
  margin: 0 auto;
}
.text-section h2 {
  font-size: 60px;
}
.text-section p {
  font-size: 22px;
  line-height: 30px;
}

.wrapper-txt {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 150px 0;
  max-width: 1200px;
}
.wrapper-txt.fade-left {
  transform: translateX(-300px);
  opacity: 0;
}
.wrapper-txt.fade-left.show {
  transform: translateX(0);
  opacity: 1;
}
.wrapper-txt.fade-right {
  transform: translateX(300px);
  opacity: 0;
}
.wrapper-txt.fade-right.show {
  transform: translateX(0);
  opacity: 1;
}
.wrapper-txt button.go-section {
  width: 200px;
  display: block;
  margin-top: 30px;
  background: transparent;
  height: 35px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #707070;
}
.wrapper-txt button.go-section a {
  color: #000;
  font-family: "Roboto";
  text-transform: initial;
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  display: block;
}
.wrapper-txt button.go-section:hover a {
  color: #2b9e93;
}
.wrapper-txt.fade .small-text {
  opacity: 1;
  transition: all 0.3s ease-out;
}
.wrapper-txt.fade .small-image {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease-out;
  margin: auto 0;
}

.image-text-section {
  width: 100%;
  display: flex;
  justify-content: center;
}
.image-text-section .small-image {
  transform: translate3d(0, 0vh, 0) translate3d(0, 150px, 0);
  width: 45%;
  opacity: 1;
  max-width: 45%;
  height: auto;
  max-height: 700px;
  overflow: hidden;
}
.image-text-section .small-image img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.image-text-section .small-image.map {
  position: relative;
  border-radius: 14px;
  background: #333;
  height: 320px;
}
.image-text-section .small-image .small-map {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.image-text-section .small-text {
  width: 55%;
  padding-left: 100px;
  box-sizing: border-box;
  opacity: 1;
  transition: all 0.3s ease-out;
  text-align: left;
  margin: auto;
}
.image-text-section .small-text.center-top {
  margin: auto 0;
}
.image-text-section .small-text.text-left {
  padding: 0;
  padding-right: 100px;
}
.image-text-section .small-text h3 {
  font-size: 42px;
  line-height: 54px;
  margin: 2px 0;
  color: #333333;
  white-space: initial;
}
.image-text-section .small-text h2 {
  margin-bottom: 0;
}
.image-text-section .small-text p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #333333;
}
.image-text-section .small-text .open-small {
  text-align: center;
  color: gray;
}
.image-text-section .small-text .open-small span {
  color: #000;
}
.image-text-section .small-text .open-txt-box {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

@media only screen and (max-width: 1228px) {
  .wrapper-txt {
    padding: 100px 50px;
  }
  .wrapper-txt.heizung {
    padding-top: 0;
  }
  .image-text-section .small-text {
    padding-left: 50px;
  }
  .image-text-section .small-text.text-left {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-txt {
    padding-top: 50px;
  }
  .image-text-section {
    flex-flow: column;
  }
  .image-text-section .small-text {
    padding-left: 0px;
    width: 100%;
    margin: 80px 0;
    order: 1;
  }
  .image-text-section .small-text.text-left {
    padding-right: 0;
  }
  .image-text-section .small-image {
    width: 100%;
    order: 2;
    max-width: unset;
    margin-top: 40px;
  }
  .image-text-section .small-image.mobile-image {
    display: block;
  }
  .image-text-section h3 {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .image-text-section .small-text h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 420px) {
  .wrapper-txt {
    padding: 30px;
  }
  .image-text-section .small-text {
    margin: 40px 0;
  }
  .image-text-section .small-text h3 {
    font-size: 28px;
    line-height: 40px;
  }
  .image-text-section .small-text p {
    font-size: 16px;
    line-height: 25px;
  }
}
/* Hover Effect */
@-webkit-keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.rainbow {
  z-index: 0;
  overflow: hidden;
}
.rainbow:hover::before {
  opacity: 1;
  transition: all 0.3s ease-out;
}
.rainbow.actice-time::before {
  opacity: 1;
  transition: all 0.3s ease-out;
}
.rainbow.actice-time::before {
  background-image: linear-gradient(#fff), linear-gradient(#fff),
    linear-gradient(#333), linear-gradient(#333);
}
.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(
    90deg,
    #f29301 100%,
    #f29301 100%,
    #fff 100%,
    #fff 100%
  );
  -webkit-animation: rotate 4s linear infinite;
  animation: rotate 4s linear infinite;
  transition: all 0.3s ease-out;
}
.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4px;
  top: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: white;
  border-radius: 5px;
}

/* Spezial */
.icon-finder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-finder .icon {
  width: 40px;
  margin: 50px;
  cursor: pointer;
}

.content-inner {
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.75s ease;
}
.content-inner p {
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  cursor: pointer;
}

.headline-center {
  font-size: 42px;
  line-height: 54px;
  margin: 2px 0;
  color: #333333;
  white-space: initial;
  text-align: center;
  padding-bottom: 30px;
}

.about-box-wrapper {
  padding-bottom: 150px;
}
.about-box-wrapper .about-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 1480px;
}
.about-box-wrapper .about-boxes .about-box {
  width: 280px;
  height: 550px;
  background: #333;
  padding: 10px;
  margin: 20px;
  border-radius: 8px;
}
.about-box-wrapper .about-boxes .about-box img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  max-height: 375px;
  border-radius: 5px;
}
.about-box-wrapper .about-boxes .about-box .about-txt {
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.02rem;
  padding: 30px 0 0 15px p;
  padding-margin: 5px 0;
}
.about-box-wrapper .about-boxes span {
  margin-top: 20px;
  color: rgb(206, 206, 206);
  font-size: 16px;
  line-height: 25px;
}
.about-box-wrapper .open-small {
  margin-top: 50px;
  color: gray;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
}
.about-box-wrapper .open-small span {
  color: #000;
}

.about-headline h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .about-headline h3 {
    font-size: 24px;
  }
}

.about-slick {
  margin-top: 80px;
}

.wrapper-txt .heeter-list {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
}

.wrapper-txt .heeter-list li {
  font-size: 20px;
  color: #000 !important;
  margin: 10px;
}

.link-txt {
  text-decoration: none;
}

.link-txt strong {
  color: orange;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .about-box-wrapper .mobile-box-wrapper {
    display: block;
  }
  .about-box-wrapper .about-boxes {
    display: block;
  }
  .about-box-wrapper .about-boxes .about-box {
    margin: 30px auto;
  }
}
/* Slick Slider */
.slick-slider {
  width: 60%;
  margin: 0 auto;
  max-width: 1000px;
}
.slick-slider .slick-next.slick-arrow::before {
  color: #333;
  right: -35px;
  position: absolute;
}
.slick-slider .slick-prev.slick-arrow::before {
  color: #333;
  left: -35px;
  position: absolute;
}

/* Footer */
.footer {
  width: 100%;
  height: 430px;
  background: #333333;
  padding: 100px 0 0 30%;
  position: relative;
  display: flex;
}
.footer.spacer {
  margin-top: 150px;
}
.footer .wrapper {
  width: 204px;
  transform: rotate(45deg);
  height: 635px;
  position: absolute;
  background: #fff;
  left: -10px;
  top: -169px;
  z-index: 10;
}
.footer .footer-logo {
  position: absolute;
  width: 180px;
  left: -180px;
  top: 300px;
  z-index: 100;
  transition: all 0.1s ease-out;
}
.footer .footer-content {
  width: 100%;
  text-align: center;
  list-style: none;
  text-align: left;
  display: flex;
  justify-content: space-evenly;
}
.footer .footer-content li {
  margin: 22px 0;
  cursor: pointer;
}
.footer .footer-content li a {
  color: rgb(180, 180, 180);
  font-family: "Comfortaa";
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
}
.footer .footer-content li a:hover {
  color: #f22a03;
}
.footer .footer-content li a.active {
  color: #f22a03;
}
.footer .footer-content li b {
  color: #fff;
  font-family: "Comfortaa";
  letter-spacing: 1px;
  font-size: 18px;
  pointer-events: none;
}
.footer .footer-content li b.active {
  color: #f22a03;
  -webkit-animation: slide 1s;
  animation: slide 1s;
  border-bottom: 2px solid;
}

@media only screen and (max-width: 1024px) {
  .footer {
    height: 80vh;
    padding: 100px 0 0 50px;
  }
  .footer.footer-content {
    width: 100%;
  }
  .footer .wrapper {
    width: 180px;
    height: 560px;
  }
  .footer .footer-logo {
    width: 150px;
    left: -150px;
    top: 120px;
  }
  .footer .footer-content {
    flex-wrap: wrap;
    margin-top: 50px;
    margin-left: 200px;
  }
  .footer .footer-content .footer-txt {
    width: 35%;
  }
}
@media only screen and (max-width: 776px) {
  .footer {
    height: auto;
  }
  .footer .footer-content {
    margin-left: 35%;
    margin-top: 0;
  }
  .footer .footer-content .footer-txt {
    width: 100%;
    margin: 20px 0;
  }
  .footer .wrapper {
    width: 130px;
  }
  .footer .footer-logo {
    width: 120px;
    left: -100px;
    top: 120px;
  }
}
@media only screen and (max-width: 420px) {
  .footer {
    height: auto;
  }
  .footer .footer-content {
    margin-left: 28%;
  }
  .footer .footer-content li a {
    font-size: 12px;
  }
  .footer .footer-content li b {
    font-size: 16px;
  }
  .footer .wrapper {
    width: 100px;
  }
  .footer .footer-logo {
    width: 90px;
  }
}
/* Keyframes */
@-webkit-keyframes slide {
  from {
    border-color: rgba(23, 255, 236, 0);
  }
  to {
    border-color: #f29301;
  }
}
@keyframes slide {
  from {
    border-color: rgba(23, 255, 236, 0);
  }
  to {
    border-color: #f29301;
  }
}
@-webkit-keyframes animated-text {
  from {
    width: 0;
  }
  to {
    width: 329px;
  }
}
@keyframes animated-text {
  from {
    width: 0;
  }
  to {
    width: 329px;
  }
}
@media only screen and (max-width: 1228px) {
  @-webkit-keyframes animated-text {
    from {
      width: 0;
    }
    to {
      width: 300px;
    }
  }
  @keyframes animated-text {
    from {
      width: 0;
    }
    to {
      width: 300px;
    }
  }
}
@media only screen and (max-width: 767px) {
  @-webkit-keyframes animated-text {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
  @keyframes animated-text {
    from {
      width: 0;
    }
    to {
      width: 225px;
    }
  }
}
@-webkit-keyframes animated-text-list {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animated-text-list {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.txt-rechtliches {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px 30px;
} /*# sourceMappingURL=main.css.map */
