@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: inherit;
  font-family: Inter;
}

html, body {
  width: 100%;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  color-scheme: light;
}

section {
  width: 100%;
}

ul {
  list-style: none;
}

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

.nav-bar {
  background: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  padding: 0 2rem;
  z-index: 500;
}
.nav-bar__logo {
  height: 5rem;
}
.nav-bar__list {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100%);
  width: 100vw;
  height: 100vh;
  transition: transform 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .nav-bar__list {
    background: transparent;
    flex-direction: row;
    align-items: unset;
    justify-content: unset;
    gap: 2rem;
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    width: unset;
    height: unset;
  }
}
.nav-bar__link {
  color: black;
  font-size: 1.8rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .nav-bar__link {
    font-size: 1.3rem;
  }
}
.nav-bar__toggle {
  border: none;
  background: white;
  display: block;
  width: 5rem;
  height: 5rem;
  z-index: 1000;
}
@media (min-width: 768px) {
  .nav-bar__toggle {
    display: none;
  }
}
.nav-bar__hamburger-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-bar__list-active {
  transform: translateX(0);
}

.scm-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}
.scm-container img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
}

.home {
  position: relative;
  margin-top: 7rem;
}
.home__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 1.6rem;
  z-index: 100;
}
@media (min-width: 768px) {
  .home__container {
    padding: 0 2rem;
  }
}
.home__footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.home__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home__logo {
  width: 90vw;
}
@media (min-width: 600px) {
  .home__logo {
    width: 72.5vw;
  }
}
@media (min-width: 900px) {
  .home__logo {
    width: 660px;
  }
}
.home__title {
  margin: 0.6rem 0;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 600px) {
  .home__title {
    font-size: 2.6rem;
  }
}
.home__sub-title {
  max-width: 550px;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 600px) {
  .home__sub-title {
    font-size: 1.5rem;
  }
}
.home__video {
  width: clamp(0px, 90vw, 300px);
  height: clamp(0px, 129vw, 430px);
  margin: 3rem 0;
}
.home__call-to-action {
  border-radius: 5rem;
  border: 2px solid #E5B85A;
  color: black;
  box-shadow: 0 0 10px rgba(229, 184, 90, 0.3);
  margin-bottom: 3rem;
  padding: 1.8rem 3rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 600px) {
  .home__call-to-action {
    font-size: 2rem;
  }
}
.home__call-to-action:hover {
  background: linear-gradient(90deg, #e5b85a, #f0d27c, #e5b85a);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.home__info-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home__info-text {
  color: black;
  font-size: 1.2rem;
  text-decoration: underline;
}
.home__arrow-img {
  width: 40px;
}
.home__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home__decoration__item {
  position: absolute;
  width: 25vw;
  max-width: 300px;
}
.home__decoration__item:nth-of-type(1) {
  top: 0;
  left: 0;
}
.home__decoration__item:nth-of-type(2) {
  bottom: 0;
  right: 0;
}

.slideshow-container {
  position: relative;
  margin: auto;
}

.mySlides {
  width: 100%;
  display: none;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.result {
  background: #FBFBFB;
  display: flex;
  justify-content: center;
}
.result__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem;
  width: 100%;
  max-width: 1024px;
}
@media (min-width: 768px) {
  .result__container {
    padding: 16rem 2rem;
  }
}
.result__title {
  margin-bottom: 2rem;
  font-size: 3.5rem;
  text-align: center;
}
.result__img {
  width: 90%;
  max-width: 600px;
}

.review {
  display: flex;
  justify-content: center;
}
.review__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem;
  width: 100%;
  max-width: 1024px;
}
@media (min-width: 768px) {
  .review__container {
    padding: 16rem 2rem;
  }
}
.review__title {
  margin-bottom: 2rem;
  font-size: 3.5rem;
  text-align: center;
}
.review__img {
  width: 90%;
  max-width: 600px;
}

.device-section {
  display: flex;
  justify-content: center;
}
.device-section:nth-of-type(even) {
  background: #FBFBFB;
}
.device-section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem;
  width: 100%;
  max-width: 1024px;
}
@media (min-width: 768px) {
  .device-section__container {
    padding: 16rem 2rem;
  }
}
.device-section__title {
  margin-bottom: 1.4rem;
  font-size: 3.5rem;
  text-align: center;
}
.device-section__sub-title {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
}
.device-section__content-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
  margin: 4rem 0;
}
@media (min-width: 768px) {
  .device-section__content-box {
    flex-direction: row;
    gap: 3rem;
    margin: 10rem 0;
  }
}
.device-section__text {
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
}
@media (min-width: 600px) {
  .device-section__text {
    text-align: justify;
    width: 85%;
  }
}
@media (min-width: 768px) {
  .device-section__text {
    width: 40%;
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
.device-section__img {
  width: 100%;
}
@media (min-width: 600px) {
  .device-section__img {
    width: 85%;
  }
}
@media (min-width: 768px) {
  .device-section__img {
    width: 40%;
  }
}
.device-section__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media (min-width: 600px) {
  .device-section__list {
    gap: 2.2rem;
  }
}
@media (min-width: 768px) {
  .device-section__list {
    gap: 3rem;
  }
}
.device-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.device-section__item__img {
  height: 50px;
  margin-bottom: 0.6rem;
}
.device-section__item__title {
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .device-section__item__title {
    font-size: 1.6rem;
  }
}
.device-section__item__text {
  max-width: 240px;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .device-section__item__text {
    font-size: 1.4rem;
  }
}
.device-section__call-to-action {
  border-radius: 5rem;
  border: 2px solid #E5B85A;
  color: black;
  box-shadow: 0 0 10px rgba(229, 184, 90, 0.3);
  margin-top: 4rem;
  padding: 1.8rem 3rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 600px) {
  .device-section__call-to-action {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .device-section__call-to-action {
    margin-top: 10rem;
  }
}
.device-section__call-to-action:hover {
  background: linear-gradient(90deg, #e5b85a, #f0d27c, #e5b85a);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact {
  background: #FBFBFB;
  display: flex;
  justify-content: center;
}
.contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1.6rem;
  width: 100%;
  max-width: 1024px;
}
@media (min-width: 768px) {
  .contact__container {
    padding: 16rem 2rem;
  }
}
.contact__title {
  margin-bottom: 1.4rem;
  font-size: 3.5rem;
  text-align: center;
}
.contact__sub-title {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
}
.contact__sub-sub-title {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  width: 90vw;
  margin: 4rem 0 0 0;
}
@media (min-width: 600px) {
  .contact__form {
    width: 80vw;
  }
}
@media (min-width: 768px) {
  .contact__form {
    width: 600px;
    margin: 6rem 0 0 0;
  }
}
.contact__form label {
  margin: 1.4rem 0 0.4rem 0;
  font-size: 1.8rem;
}
.contact__form > input, .contact__form select {
  border-radius: 1rem;
  border: 3px solid #F0F0F0;
  background: #F7F7F7;
  height: 5rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
}
.contact__form > input::placeholder, .contact__form select::placeholder {
  color: #b6b6b6;
}
.contact__form textarea {
  border-radius: 1rem;
  border: 3px solid #F0F0F0;
  background: #F7F7F7;
  height: 12.5rem;
  padding: 1.2rem;
  resize: none;
  font-size: 1.6rem;
}
.contact__form textarea::placeholder {
  color: #b6b6b6;
}
.contact__form__group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.contact__form__group input {
  margin-top: 1rem;
}
.contact__form button {
  border-radius: 1rem;
  border: 3px solid #DCB761;
  color: #DCB761;
  background: #FAF0D9;
  height: 5rem;
  margin-top: 1rem;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .contact__form button {
    margin-top: 1.6rem;
  }
}
.contact__map {
  position: relative;
  margin: 2rem 0 5rem 0;
}
.contact__map__frame {
  border-radius: 1rem;
  border: none;
  position: relative;
  width: 90vw;
  height: 60vw;
  max-width: 780px;
  max-height: 520px;
  z-index: 100;
}
@media (min-width: 768px) {
  .contact__map__frame {
    width: 78vw;
    height: 52vw;
  }
}
.contact__map__decoration {
  display: none;
  position: absolute;
}
@media (min-width: 900px) {
  .contact__map__decoration {
    display: unset;
  }
}
.contact__map__decoration:nth-of-type(1) {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  width: 40vw;
  height: 40vw;
  max-width: 300px;
  max-height: 300px;
}
.contact__map__decoration:nth-of-type(2) {
  top: 0;
  right: 0;
  transform: translate(50%, 30%);
  width: 30vw;
  height: 30vw;
  max-width: 225px;
  max-height: 225px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
}
@media (min-width: 600px) {
  .contact__info {
    margin: 6rem 0;
  }
}
.contact__info__button {
  border-radius: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: padding 0.2s ease-in-out;
}
.contact__info__button:hover {
  padding: 1rem 2.2rem;
}
.contact__info__button .contact__info__text {
  color: white;
}
.contact__info__button:nth-of-type(1) {
  background: #32d951;
}
.contact__info__button:nth-of-type(2) {
  background: #1a73e8;
}
.contact__info__button:nth-of-type(3) {
  background: #f2994a;
}
.contact__info__img {
  width: 40px;
}
.contact__info__title {
  font-size: 3.4rem;
  font-weight: 400;
}
@media (min-width: 600px) {
  .contact__info__title {
    font-size: 4rem;
  }
}
.contact__info__text {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 600px) {
  .contact__info__text {
    font-size: 2rem;
  }
}
.contact__info__text a {
  color: black;
  font-weight: 300;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 7rem 0 4rem 0;
}
.footer__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 1rem 4rem 1rem;
}
@media (min-width: 768px) {
  .footer__list {
    margin: 0 2rem 4rem 2rem;
  }
}
.footer__item {
  margin: 0 0.8rem;
}
@media (min-width: 768px) {
  .footer__item {
    margin: 0 1.2rem;
  }
}
.footer__link {
  color: black;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .footer__link {
    font-size: 1.5rem;
  }
}
.footer__copyright {
  margin-top: 4rem;
  font-weight: 600;
  font-size: 2rem;
}
.footer__headline {
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  font-size: 2rem;
}
.footer__text {
  font-size: 1.4rem;
  text-align: center;
}

.datenschutz {
  max-width: 968px;
  margin: 10rem auto 10rem auto;
  font-size: 1.2rem;
  padding: 1rem;
}
.datenschutz h1 {
  font-size: 1.6rem;
  text-align: center;
}
.datenschutz h2, .datenschutz h3, .datenschutz h4, .datenschutz h5, .datenschutz h6 {
  font-size: 1.4rem;
}

/*# sourceMappingURL=styles.css.map */
