@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Lexend:ital,wght@0,300..800;1,300..800&display=swap');

/* bungee-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bungee';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bungee-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lexend-v25-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lexend-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lexend';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/lexend-v25-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #272829;
}

a {
  color: #41355a;
  text-decoration: none;
}

a:hover {
  color: #6e5e8e;
  text-decoration: none;
}

h1,
h2 {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
}

h3,
h4,
h5,
h6 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}
.btn-primary {
  background: #6e5e8e;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  padding: 10px 30px;
}
.btn-primary:hover {
  background: #41355a;
  color: #ffd56f;
}
.btn-secondary {
  background: #ffd56f;
  color: #6e5e8e;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  padding: 10px 30px;
}
.btn-secondary:hover {
  background: #41355a;
  color: #ffd56f;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffd56f;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #41355a;
  line-height: 0;
}

.back-to-top:hover {
  background: #41355a;
}

.back-to-top:hover i {
  color: #ffd56f;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #41355a;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #ffd56f;
    left: -300px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  /*position: relative;
  white-space: nowrap;*/
}

.nav-menu a,
.nav-menu a:focus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #41355a;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #ffd56f;
  height: 56px;
  width: 56px;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a img,
.nav-menu a:focus img {
  padding: 12px;
  height: auto;
  margin: auto;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #ffd56f;
  margin-left: 56px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  color: #fff;
  background: #41355a;
}

.nav-menu .active,
.nav-menu .active:focus {
  background: #6e5e8e;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
  width: auto;
  padding: 0 24px 0 0;
  display: block;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a .icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 56px;
  width: 56px;
  padding: 12px;
  object-fit: contain;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

/* Nur das Standard-Icon ist sichtbar */
.nav-menu a .icon.default {
  opacity: 1;
  z-index: 1;
}

/* Hover-Icon ist anfangs unsichtbar */
.nav-menu a .icon.hover {
  opacity: 0;
  z-index: 2;
}

/* Bei Hover oder Active: Standard ausblenden, Hover zeigen */
.nav-menu a:hover .icon.default,
.nav-menu .active .icon.default {
  opacity: 0;
}

.nav-menu a:hover .icon.hover,
.nav-menu .active .icon.hover {
  opacity: 1;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }

  .nav-menu .active span {
    display: block;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  position: fixed;
  right: 12px;
  top: 12px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 36px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 8px;
  color: #fff;
}

.mobile-nav-toggle i {
  color: #ffd56f;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #41355a;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero.subpage {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 500px;
  overflow: hidden;
}


.logo {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-size: 32px;
  position: relative;
  z-index: 5;
  color: #fff;
  margin-bottom: 100px;
}

.logo img {
  width: 125px;
}

.subpage .logo {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-size: 26px;
  position: relative;
  z-index: 5;
  color: #fff;
  margin-bottom: 50px;
}

.subpage .logo img {
  width: 100px;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 30%;
  width: 70%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42%;
  min-height: 500px;
  z-index: 1;
  overflow: hidden;
}

.img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #6e5e8e 30%, rgba(110,94,142,0.67) 100%);
  z-index: 2;
  pointer-events: none;
}

.subpage .gradient-overlay {
  width: 100%;
  height: 42%;
  min-height: 500px;
  background: linear-gradient(to right, #6e5e8e 0%, rgba(110,94,142,0.67) 70%);
  z-index: 2;
  pointer-events: none;
}

#hero .welcome {
  position: relative;
  z-index: 3;
  padding: 2rem;
}

#hero h2 {
  margin: 0;
  font-size: 32px;
  line-height: 56px;
  color: #fff;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 56px;
  color: #ffd56f;
}

#hero p {
  color: #fff;
  margin: 30px 0;
  font-size: 18px;
  font-weight: 400;
  max-width: 960px;
}

#hero p.ty, #hero p span {
  margin: 15px 0 0 0;
  color: #ffd56f;
  font-size: 24px;
  font-weight: 600;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #ffd56f;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #41355a;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 22px;
    line-height: 30px;
  }

  #hero p.ty, #hero p span {
      font-size: 22px;
      line-height: 30px;
  }
  #hero p {
    font-size: 15px;
    line-height: 20px;
  }
  .logo {
    font-size: 24px;
    margin-bottom: 70px;
    margin-top: -30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #6e5e8e;
}

.about img {
  border-radius: 50%;
  max-width: 240px;
  margin-bottom: 36px;
  border: 12px solid #ffd56f;
}

.schwerpunkte {
  background: #6e5e8e;
}

.schwerpunkte p {
  color: #fff;
}

p.h2 {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #ffd56f;
}

.schwerpunkte h2 {
  color: #fff;
  font-size: 27px;
}

.schwerpunkte h3 {
  color: #ffd56f;
  font-size: 22px;
}

.schwerpunkte img {
  border-radius: 50%;
  max-width: 200px;
  margin-top: 48px;
  margin-bottom: 30px;
  border: 12px solid #ffd56f;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
  border-radius: 20px;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #ffd56f;
  border-left: 3px solid #ffd56f;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #ffd56f;
  border-right: 3px solid #ffd56f;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  color: #41355a;
  font-weight: 600;
  padding: 0 12px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #272829;
  font-size: 16px;
  padding: 0 12px;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #41355a;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffd56f;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #41355a;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #41355a;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.glightbox-clean .gdesc-inner {
  background-color: #ffd56f;
}

.glightbox-clean .gslide-title {
  font-family: "Lexend", sans-serif !important;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.section-bg {
  background: linear-gradient(rgba(255,213,111,0.33), rgba(255,213,111,0.88));
}

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: rgba(255,255,255,1);
  box-shadow: 0px 5px 10px 0px rgba(110, 123, 131, 0.15);
  border-radius: 20px;
  margin-bottom: 0;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box {
  color: #6e5e8e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(110, 123, 131, 0.5);
  background: rgba(255,255,255,0.75);
}

.services .icon-box img {
  max-width: 90px;
}

.services .img-box {
  text-align: center;
  padding: 0;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.15);
  border-radius: 20px;
  margin: 0 0 24px 0;
  float: left;
}

.services .therapy h3 {
  font-weight: 600;
  margin: 0 0 8px 0;
  font-size: 30px;
  color: #6e5e8e;
}

.services .therapy h4 {
  font-size: 22px;
  margin: 0 0 16px 0;
}

.services .therapy p {
  font-size: 15px;
}

.services .img-box {
  margin-bottom: 24px;
  max-width: 516px;
  max-height: 516px;
}

.services .img-box img {
  max-width: 100%;
  border-radius: 20px;
}

@media(min-width:768px) {

  .services .img-box {
    margin: 0 24px 0 0;
    width: 240px;
    height: 240px;
  }
  .services .therapy h3 {
    font-weight: 600;
    margin: 0 0 8px 0;
    font-size: 24px;
    color: #6e5e8e;
  }
  .services .therapy h4 {
    font-size: 20px;
    margin: 0 0 16px 0;
  }
}
@media(min-width:992px) {
  .services .therapy p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item h4 {
  font-size: 15px;
  color: #6e5e8e;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #6e5e8e;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #6e5e8e;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #41355a;
}

.testimonial-img {
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #6e5e8e;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffd56f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #6e5e8e;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #41355a;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #6e5e8e;
  color: #ffd56f;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 24px;
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  color: #ffd56f;
}

#footer a {
  color: #ffd56f;
}

#footer a:hover {
  color: #fff;
}

#footer .social-links span a {
  font-size: 18px;
  display: inline-block;
  background: #ffd56f;
  color: #41355a;
  line-height: 1;
  padding: 8px 0;
  margin: 0 24px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links span a:hover {
  background: #ffd56f;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 24px 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

@media (min-width: 991px) and (max-width: 1439px) {
  section {
    padding: 60px 0 60px 100px;
  }
}
