@charset "UTF-8";
:root {
  --color-primary: #0d422c;
  --color-secondary: #fcf5e9;
  --color-tertiary: #fffffd;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 68px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 14px;
  background-color: var(--color-secondary);
}

p {
  letter-spacing: 1.2px;
  line-height: 1.6;
  font-size: 16px;
  font-size: 18px;
  color: rgb(20, 20, 20);
}

.header {
  background-color: var(--color-secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.486);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.486);
}
.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  -webkit-transition: 0.3s padding;
  transition: 0.3s padding;
}
.header .header-content.scrolled {
  padding: 15px 20px;
}
.header .header-content .logo {
  color: var(--color-primary);
  font-size: 50px;
  line-height: 1;
  margin-top: -12px;
  font-family: "Playfair Display";
  color: black;
  font-weight: 400;
  text-decoration: none;
}
.header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
.header .header-content nav.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.header .header-content nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

main {
  opacity: 0;
  -webkit-animation: 0.5s fadeIn forwards;
          animation: 0.5s fadeIn forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------------- HERO ------------------------------------------- */
.hero {
  background-color: var(--color-primary);
}
.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7.5fr 4.5fr;
  gap: 20px;
  padding: 100px 20px;
}
.hero .hero-content img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero .hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.hero .hero-text h1 {
  margin-bottom: 32px;
}
.hero .hero-text p {
  font-size: 20px;
  margin-bottom: 5px;
}
.hero .hero-text h1,
.hero .hero-text p,
.hero .hero-text li {
  color: var(--color-secondary);
}
.hero .hero-text .trustpilot {
  margin-top: 25px;
}

h1 {
  font-size: 70px;
  line-height: 1.05;
  color: var(--color-secondary);
}

h2 {
  font-size: 38px;
  font-size: 52px;
  line-height: 1.2;
  color: black;
}

ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  margin-left: 25px;
}

/* ------------------------------------------- Buttons ------------------------------------------- */
.btn {
  padding: 7px 14px;
  border-radius: 10px;
  text-align: center;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1.1px;
  line-height: 1.5;
  text-transform: uppercase;
  font-family: inherit;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn p {
  font-size: inherit;
}
* .btn:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.btn.light {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}
.btn.light-dark {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn.light-transparent {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
}
.btn.light-transparent p {
  color: white !important;
}
.btn.btn-pulse {
  -webkit-animation: pulse 1.7s infinite;
          animation: pulse 1.7s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* ------------------------------------------- Container ------------------------------------------- */
.container-full.dark {
  background-color: var(--color-primary);
  color: white;
}
.container-full.light {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}
.container-full.light h2 {
  color: black;
}
.container-full.light p {
  color: black;
}
.container-full.white {
  background-color: white;
  color: var(--color-primary);
}
.container-full.white h2 {
  color: black;
}
.container-full.white p {
  color: black;
}
.container-full.tr {
  background-color: #fefdf9;
  color: var(--color-primary);
}
.container-full.tr h2 {
  color: black;
}
.container-full.tr p {
  color: black;
}
.container-full.dark-green {
  background-color: #061f14;
}
.container-full.dark-green h2,
.container-full.dark-green p {
  color: var(--color-secondary);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.title {
  text-align: center;
}
.title h2 {
  color: white;
}

.boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.boxes .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 20őx;
  font-size: 24px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

/* ------------------------------------------- Trustpilot ------------------------------------------- */
.trustpilot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  background-color: #fcf5e9;
  border-radius: 10px;
  padding: 15px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: black;
}
.trustpilot .trustpilot-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.trustpilot .tp-stars {
  width: 140px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.trustpilot .tp-logo {
  width: 100px;
}
.trustpilot p {
  color: #030030 !important;
  font-size: 12px !important;
  margin-bottom: 0 !important;
}
.trustpilot:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.trust-logo-link {
  margin: 10px auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.grid-2 .grid-2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 25px;
}
.grid-2 .grid-2-item li p {
  color: white;
  font-size: 16px;
}
.grid-2 .title {
  margin: 0;
  text-align: start;
}
.grid-2 .text {
  font-size: 16px;
  color: white;
}

/* ------------------------------------------- Faq ------------------------------------------- */
.faq-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}
.faq .faq-item {
  background-color: transparent;
  border-bottom: 2px solid white;
  background-color: var(--color-secondary);
  border-radius: 10px;
  overflow: hidden;
}
.faq .faq-item b {
  font-weight: 600;
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background: transparent;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  color: black;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: "Playfair Display";
  letter-spacing: 1.2px;
  font-weight: 500;
}
.accordion:after {
  content: "+";
  color: black;
  font-weight: 500;
  float: right;
  font-family: "Inter";
  margin-left: 5px;
}
.accordion.active:after {
  content: "−";
}

.panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 0px 20px;
  padding-bottom: 20px;
  color: black !important;
  font-size: 16px;
}

.centered-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  gap: 25px;
  text-align: center;
}
.centered-text .badge {
  max-width: 150px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------- Reviews ------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 10px;
}

.review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  background-color: var(--color-secondary);
  padding: 25px;
  border-radius: 10px;
  text-align: start;
  height: 100%;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.review:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.review .review-text {
  color: black;
  font-weight: 500;
}
.review .review-date {
  margin-top: auto;
}
.review .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color: black !important;
}
.review .author .author-pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: black;
  padding: 10px;
  font-size: 26px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 52px;
  line-height: 1;
}
.review .author .author-name {
  font-weight: 600;
  color: black;
}
.review svg {
  max-width: 150px !important;
  margin: 5px 0;
}

.stars i {
  color: var(--color-primary);
}

/* ------------------------------------------- Contact ------------------------------------------- */
form {
  background-color: var(--color-secondary);
  padding: 35px 25px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
form .form-item {
  width: 100%;
  gap: 2px;
}
form input,
form textarea {
  border: none;
  padding: 12px 0;
  font-size: 18px;
  background-color: transparent;
  border-bottom: 1px solid rgba(13, 66, 44, 0.3294117647);
  font-family: inherit;
  outline: none !important;
  width: 100%;
  border-radius: 2px;
}
form .btn {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.4;
  border: none;
  padding: 15px;
  text-align: center;
}
form .checkbox-label {
  display: block;
  font-weight: 400;
  font-size: 16px;
}
form .checkbox-label input {
  width: auto;
}
form .checkbox-label a {
  color: #0d422c;
  text-decoration: underline;
}

::-webkit-input-placeholder {
  color: var(--color-primary);
  font-weight: 500;
}

::-moz-placeholder {
  color: var(--color-primary);
  font-weight: 500;
}

:-ms-input-placeholder {
  color: var(--color-primary);
  font-weight: 500;
}

::-ms-input-placeholder {
  color: var(--color-primary);
  font-weight: 500;
}

::placeholder {
  color: var(--color-primary);
  font-weight: 500;
}

/* ------------------------------------------- Trust ------------------------------------------- */
#trust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
#trust p {
  text-align: center;
}
#trust svg {
  max-width: 180px;
  width: 100%;
}
#trust .quote {
  font-family: "Playfair Display";
  max-width: 450px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  margin-top: 10px;
}
#trust hr {
  max-width: 180px;
  width: 100%;
  border: none;
  margin-top: 15px;
  height: 2px;
  background-color: #e9dba3;
}
#trust .trust-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 5px;
}
#trust .trust-text hr {
  margin: 10px 0;
  display: none;
}
#trust .trust-logo-link {
  display: none;
}
#trust .quote-author {
  font-size: 18px;
  margin-top: 15px;
}

/* ------------------------------------------- Negative ------------------------------------------- */
#negative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 25px;
  max-width: 680px;
  margin: 0 auto;
}
#negative h2 {
  text-align: left;
  font-size: 52px;
}
#negative p,
#negative h2,
#negative li {
  color: var(--color-secondary);
}
#negative .btn {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.paketpreis p {
  font-size: 18px !important;
}
.paketpreis span {
  font-size: 14px !important;
  margin-top: 2px !important;
}

/* ------------------------------------------- Process ------------------------------------------- */
.process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.process .title {
  margin-bottom: 25px;
}
.process .process-text {
  font-size: 24px;
}
.process .btn p {
  color: white !important;
}

.process-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  justify-items: center;
  position: relative;
  margin: 45px 0;
}
.process-top hr {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  background-color: black;
  border: none;
  height: 4px;
  opacity: 0;
}
.process-top.animation .process-item,
.process-top.animation hr {
  -webkit-animation: fadeIN 1s ease-in-out forwards;
          animation: fadeIN 1s ease-in-out forwards;
}
.process-top.animation hr {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.process-top.animation .process-item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.process-top.animation .process-item:nth-child(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.process-top.animation .process-item:nth-child(3) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.process-top.animation .process-item:nth-child(4) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.process-item p {
  text-align: center;
  padding: 0 20px;
}
.process-item .process-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fcf5e9;
  width: 70%;
  z-index: 1;
}
.process-item img {
  max-width: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

@-webkit-keyframes fadeIN {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIN {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
#reviews .title {
  text-align: start;
}
#reviews .title h2 {
  color: var(--color-secondary);
}
#reviews svg {
  fill: #fcf5e9;
  max-width: 180px;
}

/* ------------------------------------------- Badge ------------------------------------------- */
.badge-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 20px 0;
  margin: 0 auto;
}
.badge-grid .badge-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  max-width: 600px;
}
.badge-grid .title {
  text-align: start;
}
.badge-grid img {
  width: 100%;
  max-width: 260px;
}

/* ------------------------------------------- Leistungen ------------------------------------------- */
#leistungen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  max-width: 520px;
  margin: 0 auto;
}
#leistungen .large-text {
  font-size: 24px;
  text-align: center;
}
#leistungen .dark p {
  color: white;
}
#leistungen .light {
  background-color: transparent;
  color: #0d422c;
  border: 2px solid #0d422c;
}
#leistungen .btn {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.buttons {
  margin-bottom: 15px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.buttons .btn p {
  font-size: 16px;
  padding: 5px 2px;
  line-height: 1.3;
}
.buttons .btn p span {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 400;
}

/* ------------------------------------------- Footer ------------------------------------------- */
.footer {
  background-color: #0e291b;
  border-top: 2px solid var(--color-secondary);
  padding: 60px 20px;
}
.footer * {
  color: white;
}
.footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
  text-align: center;
}
.footer .footer-content p,
.footer .footer-content a {
  font-size: 20px;
  letter-spacing: 1.25px;
}
.footer .footer-content p,
.footer .footer-content a {
  font-family: "Playfair Display";
}
.footer .legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
}
.footer .legal a {
  text-decoration: none;
}

/* ------------------------------------------- Slider ------------------------------------------- */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-140vw);
            transform: translateX(-140vw);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-140vw);
            transform: translateX(-140vw);
  }
}
.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: -45px;
}
.slider::before, .slider::after {
  content: "";
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 45s linear infinite;
          animation: scroll 45s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 280vw;
}
.slider .slide {
  width: 20vw;
  padding: 10px;
  text-decoration: none;
}

#reviews {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ------------------------------------------- Whatsapp ------------------------------------------- */
.whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #25d366;
  text-decoration: none;
  border-radius: 50%;
  padding: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.whatsapp.show {
  opacity: 1;
  pointer-events: all;
}
.whatsapp p {
  color: white;
}
.whatsapp img {
  width: 40px;
  -webkit-filter: brightness(0) saturate(100%) invert(95%) sepia(100%) saturate(0%) hue-rotate(215deg) brightness(106%) contrast(105%);
          filter: brightness(0) saturate(100%) invert(95%) sepia(100%) saturate(0%) hue-rotate(215deg) brightness(106%) contrast(105%);
  height: 40px;
}
.whatsapp:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* ------------------------------------------- Legal Page ------------------------------------------- */
.legal-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 60px 20px;
}
.legal-page * {
  color: black;
}
.legal-page h4 {
  font-size: 22px;
  font-weight: 500;
  font-family: "Merriweather";
}
.legal-page b {
  font-weight: 400;
}
.legal-page p {
  font-size: 16px;
}

/* ------------------------------------------- Media Queries ------------------------------------------- */
@media only screen and (max-width: 1600px) {
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2940px);
              transform: translateX(-2940px);
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2940px);
              transform: translateX(-2940px);
    }
  }
  .slider .slide-track {
    width: 5880px;
  }
  .slider .slide {
    width: 420px;
  }
}
#cursive {
  font-family: "Playfair Display";
  font-style: italic;
  font-size: 18px;
}

@media only screen and (max-width: 1200px) {
  .hero .hero-content {
    padding: 60px 20px;
  }
  .container {
    padding: 60px 20px;
  }
}
@media only screen and (max-width: 992px) {
  .hero .hero-content {
    padding: 40px 20px;
  }
  .container,
  .footer {
    padding: 40px 20px;
  }
  .footer {
    padding-bottom: 80px;
  }
  .whatsapp {
    padding: 15px;
  }
  .whatsapp img {
    width: 30px;
    height: 30px;
  }
  .header .header-content {
    padding: 15px 20px;
  }
  .header .header-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--color-secondary);
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    gap: 20px;
  }
  .header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  .header .header-content nav a {
    font-size: 22px;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .hero .hero-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  form {
    width: 100%;
    padding: 20px;
  }
  .badge-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  h2 {
    font-size: 36px !important;
  }
  h3 {
    font-size: 20px;
  }
  p {
    font-size: 16px !important;
  }
  .slider {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-content {
    padding: 25px 20px;
  }
  .hero .hero-text h1 {
    margin-bottom: 25px;
  }
  .hero .hero-text .trustpilot {
    margin-top: 20px;
  }
  .hero .hero-text #cursive {
    margin-top: 20px;
  }
  .container {
    padding: 25px 20px;
  }
  .process-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    row-gap: 25px;
    margin: 20px 0;
  }
  .process-top hr {
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: none;
  }
  .process .title {
    margin-bottom: 20px;
  }
  .process-item {
    width: 100%;
    background-color: var(--color-secondary);
    padding: 0;
  }
  .process-item br {
    display: none;
  }
  h1 {
    font-size: 9vw !important;
  }
  h2 {
    font-size: 28px !important;
  }
  #negative {
    max-width: 480px;
  }
  #reviews {
    gap: 20px;
  }
  .slider {
    margin-top: 0;
  }
  #leistungen,
  #trust {
    gap: 20px;
  }
  #trust .quote {
    margin: 0;
  }
  #trust .quote-author {
    margin-top: 0;
  }
  #trust hr {
    margin-top: 0;
  }
  .badge-grid {
    gap: 20px;
  }
  .badge-grid .badge-text {
    gap: 20px;
  }
  .badge-grid img {
    padding-right: 5%;
  }
  .faq-container {
    gap: 20px;
  }
  .btn {
    padding: 8px;
  }
  .btn p {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 600px) {
  .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .accordion {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  .process-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
  .footer .legal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2100px);
              transform: translateX(-2100px);
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2100px);
              transform: translateX(-2100px);
    }
  }
  .slider .slide-track {
    width: 4200px;
  }
  .slider .slide {
    width: 300px;
  }
  .review {
    padding: 15px;
  }
  .review p {
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 400px) {
  .trustpilot {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
  }
  .trustpilot .trustpilot-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}/*# sourceMappingURL=styles.css.map */