body * {
    box-sizing: content-box;
}
#appointmentModal *,#appointmentModal *::before, #appointmentModal *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font_family_general), sans-serif !important;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.btn.focus, .btn:focus {
  box-shadow: none !important;
}
/* =========================
   HEADER
========================= */
/*.site-header {
  transition:
        transform 1.5s cubic-bezier(.22,.61,.36,1),
        opacity 1.5s ease;
  opacity: 1;
}*/
.site-header.sticky-header {
  border-bottom: 1px solid #c3c1c1;
}
.d-logo, .sticky-logo {
  display: none;
}
@media screen and (min-width: 769px) {
  .site-header {
    width: min(1180px, calc(100% - 60px));
    margin: 0 auto;
  }
  .hf-trustproof__proof {
    border-top: 6px solid var(--farbcode_theme_01);
  }
 /* .site-header .sticky-logo {
    display: none;
  }*/
}
.header-row {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0px 10px 0px;
}
.header-row a {
    z-index: 2;
}
.header-button, #appointment-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    background-color: var(--farbcode_theme_01);
    color: var(--farbcode_hero_text_01);
    font-size: 20px;
    letter-spacing: 1px;
    cursor: pointer;
}
#appointment-form button {
  width: 100%;
}
.header-button, .section2-button, .section5-button, #appointment-form button {
    border: solid 2px var(--farbcode_theme_01);
}


.logo {
    max-width: 205px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: -75px;
    z-index: 1;
}


@media screen and (max-width: 768px) {

  /*.container {
    text-align: center;
  }*/
  .header-row {
   /* width: 100%;*/
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
    .logo {
        width: 145px;
        margin-bottom: -56px;
    }
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        font-size: 20px !important;
    }
    .header-button {
      width: 160px;
      font-size: 15px;
    }
}
@media (max-width: 530px) {
    .logo {
        max-width: 145px;
        margin-bottom: -56px;
    }
    .header-button {
    font-size: 16px;
  }
/*  .header-image {
    max-width: 150px;
  }*/
}
@media (max-width: 420px) {
    .logo {
        max-width: 120px;
        margin-bottom: -56px;
    }
    /*.header-image {
      max-width: 120px;
      margin-bottom: -50px;
    }*/
    .header-button {
      font-size: 14px;
    }
}

@media (max-width: 530px) {
  
}
@media (max-width: 420px) {
 
}


/* =========================
   HOFFLOW HERO
========================= */

.hf-hero {
  position: relative;
  min-height: 650px;
  height: 90vh;
  max-height: 920px;
  /*background-image: url("/images/home-page/slider/CP/ecsys-02.webp");*/
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--farbcode_hero_text_01);
}

.hf-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.64) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.16) 100%
    );
  z-index: 1;
}

.hf-hero__header {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 60px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.hf-hero__logo {
  display: block;
  background: #fff;
  padding: 10px 14px;
}

.hf-hero__logo img {
  display: block;
  height: 82px;
  width: auto;
}

.hf-hero__top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 34px;
  background:  var(--farbcode_theme_01);
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

.hf-hero__top-cta:hover,
.header-button:hover,
.hf-problem__cta:hover,
.hf-solution__cta:hover,
.hf-process__cta:hover,
.hf-result__cta:hover,
.hf-trustproof__cta:hover,
.hf-finalcta__button:hover,
.hf-hero__main-cta:hover,
 #appointment-form button:hover
{
  text-decoration: underline;
  text-decoration-color: #fff;
}

.hf-hero__content {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 53%;
  transform: translate(-50%, -50%);
  width: min(1180px, calc(100% - 60px));
}

.hf-hero__content h1 {
  /*max-width: 820px;*/
  margin: 0 0 24px;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.hf-hero__subline {
  margin: 0 0 34px;
  max-width: 650px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.35;
  font-weight: 800;
  color: var(--farbcode_hero_text_02);
}

.hf-hero__main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 345px;
  height: 76px;
  padding: 0 42px;
  background: var(--farbcode_theme_02);
  color: #fff;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

.hf-hero__trust {
  margin-top: 14px;
  max-width: 370px;
  text-align: center;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--farbcode_hero_text_01);
}

/* =========================
   MOBILE
========================= */
@media (min-width: 769px) {
  .hf-hero__trust {
    margin-left: 25px;
  }
}

@media (max-width: 767px) {
  .hf-hero {
/*    min-height: 680px;
    height: 100svh;*/
    background-position: center;
  }

  .hf-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.48) 42%,
        rgba(0, 0, 0, 0.62) 100%
      );
  }

  .hf-hero__header {
    top: 14px;
    width: calc(100% - 28px);
  }

  .hf-hero__logo {
    padding: 7px 9px;
  }

  .hf-hero__logo img {
    height: 56px;
  }

  .hf-hero__top-cta {
    height: 46px;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 4px;
  }

  .hf-hero__content {
    top: 45%;
    width: calc(100% - 36px);
  }

  .hf-hero__content h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-hero__subline {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 30px;
  }

  .hf-hero__main-cta {
    width: 100%;
    min-width: 0;
    height: 68px;
    font-size: 22px;
    padding: 0 20px;
  }

  .hf-hero__trust {
    max-width: 100%;
    font-size: 15px;
    margin-top: 12px;
  }
} 
@media (max-width: 600px) {
  .hf-hero__trust {
    font-size: 14px;
  }
  .hf-problem__lead,
  .hf-solution__lead,
  .hf-process__lead,
  .hf-result__lead,
  .hf-trustproof__lead,
  .hf-finalcta__lead {
    hyphens: auto;
    -webkit-hyphens: auto;
    text-align: justify;
  }
}
/* =========================
   SECTION 2: PROBLEM / PAIN
========================= */

.hf-problem {
  background: #f6f3ec;
  color: #2b2b2b;
  padding: 96px 30px 92px;
}

.hf-problem__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.hf-problem__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--farbcode_theme_02);
}

.hf-problem h2 {
  margin: 0 0 26px;
  max-width: 560px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--farbcode_heading_general);
}

.hf-problem__lead {
  margin: 0;
  max-width: 570px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--farbcode_description_general_01);
}

.hf-problem__cards {
  display: grid;
  gap: 18px;
}

.hf-problem__card {
  background: #ffffff;
  border-left: 7px solid var(--farbcode_theme_02);
  padding: 28px 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hf-problem__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--farbcode_heading_general);
}

.hf-problem__card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
  color: var(--farbcode_description_general_02);
}

.hf-problem__cta-row {
  margin-top: 32px;
}

.hf-problem__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 310px;
  height: 66px;
  padding: 0 34px;
  background: var(--farbcode_theme_01);
  color: #ffffff;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

/*.hf-problem__cta:hover {
  background: #0b4722;
  transform: translateY(-1px);
  text-decoration: none;
}*/

@media (max-width: 767px) {
  .hf-problem {
    padding: 68px 20px 40px;
  }

  .hf-problem__inner {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .hf-problem h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-problem__lead {
    font-size: 20px;
    line-height: 1.48;
  }

  .hf-problem__card {
    padding: 24px 22px;
  }

  .hf-problem__card strong {
    font-size: 21px;
  }

  .hf-problem__card p {
    font-size: 17px;
  }

  .hf-problem__cta {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 20px;
  }
}



.problem-cta-mobile, .solution-cta-mobile, .result-cta-mobile {
  display: none !important;
}

@media (max-width: 600px) {
    .problem-cta-mobile, .solution-cta-mobile, .result-cta-mobile {
        display: block !important;
    }
    .problem-cta-desktop, .solution-cta-desktop, .result-cta-desktop {
        display: none !important;
    }
    .problem-cta-mobile, .solution-cta-mobile, .result-cta-mobile {
        min-width: 320px;
        margin-top: 0;
        order: 3;
    }
    .hf-result__list, .hf-solution__points {
        margin-bottom: 0 !important;
    }
}


/* =========================
   SECTION 3: SOLUTION / APPROACH
========================= */

.hf-solution {
  background: #ffffff;
  color: #2b2b2b;
  padding: 98px 30px 96px;
}

.hf-solution__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}

.hf-solution__media {
  position: relative;
  min-height: 520px;
  background: #d9d4c8;
  overflow: hidden;
}

.hf-solution__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.hf-solution__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 280px;
  background: var(--farbcode_theme_01);
  color: #ffffff;
  padding: 22px 24px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hf-solution__text {
  max-width: 560px;
}

.hf-solution__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--farbcode_theme_02);
}

.hf-solution h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--farbcode_heading_general);
}

.hf-solution__lead {
  margin: 0 0 32px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--farbcode_description_general_01);
}

.hf-solution__points {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.hf-solution__point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.hf-solution__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1e5d7;
  color: var(--farbcode_theme_02);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}

.hf-solution__point strong {
  display: block;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--farbcode_heading_general);
}

.hf-solution__point p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
  color: var(--farbcode_description_general_02);
}

.hf-solution__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 66px;
  padding: 0 34px;
  background: var(--farbcode_theme_02);
  color: #ffffff;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

/*.hf-solution__cta:hover {
  background: #a5550d;
  transform: translateY(-1px);
  text-decoration: none;
}*/

@media (max-width: 767px) {
  .hf-solution {
    padding: 68px 20px 40px;
  }

  .hf-solution__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .hf-solution__media {
    order: 2;
    width: 100%;
    min-height: 360px;
  }

  .hf-solution__media img {
    min-height: 360px;
  }

  .hf-solution__text {
    order: 1;
    max-width: 100%;
  }

  .hf-solution h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-solution__lead {
    font-size: 20px;
    line-height: 1.48;
    margin-bottom: 30px;
  }

  .hf-solution__point {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .hf-solution__icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
    margin-top: 5px;
  }

  .hf-solution__point strong {
    font-size: 20px;
  }

  .hf-solution__point p {
    font-size: 17px;
  }

  .hf-solution__cta {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 20px;
  }

  .hf-solution__badge {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    font-size: 18px;
    padding: 18px 20px;
  }
}


/* =========================
   SECTION 4: PROCESS / HOW IT WORKS
========================= */

.hf-process {
  background: #f6f3ec;
  color: #2b2b2b;
  padding: 98px 30px 96px;
}

.hf-process__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hf-process__header {
  max-width: 760px;
  margin-bottom: 58px;
}

.hf-process__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--farbcode_theme_02);
}

.hf-process h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--farbcode_heading_general);
}

.hf-process__lead {
  margin: 0;
  max-width: 680px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--farbcode_description_general_01);
}

.hf-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.hf-process__step {
  position: relative;
  background: #ffffff;
  padding: 34px 28px 32px;
  min-height: 300px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hf-process__number {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--farbcode_theme_01);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 900;
}

.hf-process__step strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
  color: var(--farbcode_heading_general);
}

.hf-process__step p {
  margin: 0;
  font-size: 18px;
  line-height: 1.52;
  font-weight: 650;
  color: var(--farbcode_description_general_02);
}

.hf-process__cta-row {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hf-process__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 66px;
  padding: 0 34px;
  background: var(--farbcode_theme_02);
  color: #ffffff;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

/*.hf-process__cta:hover {
  background: #a5550d;
  transform: translateY(-1px);
  text-decoration: none;
}*/

.hf-process__note {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
  color: #686868;
}

@media (max-width: 980px) {
  .hf-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hf-process {
    padding: 68px 20px 40px;
  }

  .hf-process__header {
    margin-bottom: 40px;
  }

  .hf-process h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-process__lead {
    font-size: 20px;
    line-height: 1.48;
  }

  .hf-process__steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hf-process__step {
    min-height: 0;
    padding: 28px 24px 28px;
  }

  .hf-process__number {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    font-size: 19px;
  }

  .hf-process__step strong {
    font-size: 21px;
  }

  .hf-process__step p {
    font-size: 17px;
  }

  .hf-process__cta-row {
    margin-top: 34px;
    display: block;
  }

  .hf-process__cta {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 20px;
  }

  .hf-process__note {
    max-width: 100%;
    margin-top: 14px;
    text-align: center;
    font-size: 15px;
  }
}











/* =========================
   SECTION 5: RESULT / TRANSFORMATION
========================= */

.hf-result {
  background: #ffffff;
  color: #2b2b2b;
  padding: 98px 30px 96px;
}

.hf-result__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.hf-result__text {
  max-width: 560px;
}

.hf-result__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--farbcode_theme_02);
}

.hf-result h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--farbcode_heading_general);
}

.hf-result__lead {
  margin: 0 0 34px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--farbcode_description_general_01);
}

.hf-result__list {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.hf-result__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.hf-result__check {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--farbcode_theme_01);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
}

.hf-result__item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--farbcode_heading_general);
}

.hf-result__item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
  color: var(--farbcode_description_general_02);
}

.hf-result__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 66px;
  padding: 0 34px;
  background: var(--farbcode_theme_02);
  color: #ffffff;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

/*.hf-result__cta:hover {
  background: #a5550d;
  transform: translateY(-1px);
  text-decoration: none;
}*/

.hf-result__media {
  position: relative;
  min-height: 540px;
  background: #d9d4c8;
  overflow: hidden;
}

.hf-result__media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}

.hf-result__quote {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.94);
  padding: 26px 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hf-result__quote strong {
  display: block;
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--farbcode_theme_01);
}

.hf-result__quote p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--farbcode_description_general_01);
}

@media (max-width: 767px) {
  .hf-result {
    padding: 68px 20px 40px;
  }

  .hf-result__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .hf-result__text {
    max-width: 100%;
  }

  .hf-result h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-result__lead {
    font-size: 20px;
    line-height: 1.48;
    margin-bottom: 30px;
  }

  .hf-result__item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .hf-result__check {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .hf-result__item strong {
    font-size: 20px;
  }

  .hf-result__item p {
    font-size: 17px;
  }

  .hf-result__cta {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 20px;
  }

  .hf-result__media {
    width: 100%;
    min-height: 380px;
  }

  .hf-result__media img {
    min-height: 380px;
  }

  .hf-result__quote {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px 22px;
  }

  .hf-result__quote strong {
    font-size: 20px;
  }

  .hf-result__quote p {
    font-size: 16px;
  }
}





/* =========================
   SECTION 6: TRUST / PROOF
========================= */

.hf-trustproof {
  background: #f6f3ec;
  color: #2b2b2b;
  padding: 98px 30px 96px;
}

.hf-trustproof__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
}

.hf-trustproof__media {
  position: relative;
  min-height: 560px;
  background: #d9d4c8;
  overflow: hidden;
}

.hf-trustproof__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.hf-trustproof__label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(16, 92, 44, 0.96);
  color: #ffffff;
  padding: 24px 26px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hf-trustproof__label strong {
  display: block;
  margin-bottom: 6px;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
}

.hf-trustproof__label p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: #e9f5ed;
}

.hf-trustproof__text {
  max-width: 620px;
}

.hf-trustproof__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--farbcode_theme_02);
}

.hf-trustproof h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--farbcode_heading_general);
}

.hf-trustproof__lead {
  margin: 0 0 34px;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 750;
  color: var(--farbcode_description_general_01);
}

.hf-trustproof__proofgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.hf-trustproof__proof {
  background: #ffffff;
  padding: 26px 26px;
  /*border-left: 6px solid var(--farbcode_theme_01);*/
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.hf-trustproof__proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--farbcode_heading_general);
}

.hf-trustproof__proof p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 650;
  color: var(--farbcode_description_general_02);
}

.hf-trustproof__cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hf-trustproof__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 66px;
  padding: 0 34px;
  background: var(--farbcode_theme_02);
  color: #ffffff;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

/*.hf-trustproof__cta:hover {
  background: #a5550d;
  transform: translateY(-1px);
  text-decoration: none;
}*/

.hf-trustproof__note {
  max-width: 320px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 750;
  color: #686868;
}

@media (max-width: 767px) {
  .hf-trustproof {
    padding: 68px 20px 40px;
  }

  .hf-trustproof__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .hf-trustproof__media {
    width: 100%;
    min-height: 420px;
  }

  .hf-trustproof__media img {
    min-height: 420px;
  }

  .hf-trustproof__text {
    max-width: 100%;
  }

  .hf-trustproof h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-trustproof__lead {
    font-size: 20px;
    line-height: 1.48;
    margin-bottom: 30px;
  }

  .hf-trustproof__proofgrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hf-trustproof__proof {
    padding: 24px 22px;
  }

  .hf-trustproof__proof strong {
    font-size: 20px;
  }

  .hf-trustproof__proof p {
    font-size: 17px;
  }

  .hf-trustproof__cta-row {
    display: block;
  }

  .hf-trustproof__cta {
    width: 100%;
    min-width: 0;
    height: 64px;
    font-size: 20px;
  }

  .hf-trustproof__note {
    max-width: 100%;
    margin-top: 14px;
    text-align: center;
    font-size: 15px;
  }

  .hf-trustproof__label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px 22px;
  }

  .hf-trustproof__label strong {
    font-size: 20px;
  }

  .hf-trustproof__label p {
    font-size: 16px;
  }
}
.trust-proof-mobile {
  display: none;
}

@media (max-width: 600px) {
    .trust-proof-mobile {
        display: block;
    }
    .trust-proof-desktop {
        display: none;
    }
    .trust-proof-mobile .hf-trustproof__cta {
        min-width: 320px;
    }
    .trust-proof-mobile .hf-trustproof__proofgrid {
        margin-bottom: 0;
    }
    .trust-proof-mobile .hf-trustproof__inner {
        gap: 35px;
    }
}

/* =========================
   SECTION 7: FINAL CTA
========================= */

.hf-finalcta {
  background: var(--farbcode_theme_01);
  color: #ffffff;
  padding: 104px 30px 108px;
  text-align: center;
}

.hf-finalcta__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.hf-finalcta__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2b56c;
}

.hf-finalcta h2 {
  margin: 0 0 26px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.hf-finalcta__lead {
  margin: 0 auto 38px;
  max-width: 720px;
  font-size: 24px;
  line-height: 1.48;
  font-weight: 750;
  color: #e7f4eb;
}

.hf-finalcta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  height: 76px;
  padding: 0 42px;
  background: var(--farbcode_theme_02);
  color: #ffffff;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  /*transition: background 0.2s ease, transform 0.2s ease;*/
}

/*.hf-finalcta__button:hover {
  background: #a5550d;
  transform: translateY(-2px);
  text-decoration: none;
}*/

.hf-finalcta__trust {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 750;
  color: #d9ecdf;
}

.hf-finalcta__mini {
  margin: 38px auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hf-finalcta__mini-item {
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 767px) {
  .hf-finalcta {
    padding: 76px 20px 82px;
  }

  .hf-finalcta h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hf-finalcta__lead {
    font-size: 20px;
    line-height: 1.48;
    margin-bottom: 32px;
  }

  .hf-finalcta__button {
    width: 100%;
    min-width: 0;
    height: 68px;
    font-size: 22px;
    padding: 0 20px;
  }

  .hf-finalcta__trust {
    font-size: 15px;
    margin-top: 14px;
  }

  .hf-finalcta__mini {
    margin-top: 34px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hf-finalcta__mini-item {
    padding: 18px 16px;
    font-size: 16px;
  }
}







/* =========================
   FOOTER
========================= */

.hf-footer {
  background: #1e1e1e;
  color: #cfcfcf;
  padding: 42px 30px;
  font-size: 14px;
}

.hf-footer__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hf-footer__left {
  font-weight: 600;
  color: #9a9a9a;
}

.hf-footer__right {
  display: flex;
  gap: 26px;
}

.hf-footer__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
}

.hf-footer__link:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 767px) {
  .hf-footer {
    padding: 32px 20px;
    text-align: center;
  }

  .hf-footer__inner {
    flex-direction: column;
    gap: 16px;
  }

  .hf-footer__right {
    justify-content: center;
    gap: 18px;
  }
}























/* =========================
   SLIDER
========================= */

.hf-hero-slider,
.hf-hero-slide {
  height: 100%;
}

.hf-hero-slide {
  background-size: cover;
  background-position: center;
}

/* Overlay content */
.hf-hero_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}
.hf-hero-slider,
.slick-list,
.slick-track,
.slick-slide,
.hf-hero-slide {
  height: 100%;
}
.slick-dots {
  bottom: 30px !important;
  /*background: #a5a1a1;*/
  color: #ffffff;
  z-index: 9999;
}



.slick-dots li button:before {
    content: '';
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    display: block;
    opacity: 0.6;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}
.slick-dots li {
  margin: 5px 5px !important;
}
.slick-dots li button:before {
  line-height: 18px !important;
}


/*************** Animation affects starts ***************/
.scroll-animate {
  opacity: 0
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/*************** Animation affects ends ***************/


/*****************Responsive Css Starts**********************/
@media (max-width: 768px) {
    .hf-hero__content h1 {
        font-size: 38px;
    }
    .hf-hero__top-cta,
    .hf-problem__cta,
    .hf-solution__cta,
    .hf-process__cta,
    .hf-result__cta,
    .hf-trustproof__cta,
    .hf-finalcta__button,
    .hf-hero__main-cta
    {
      padding-right: 0px;
      padding-left: 0px;
    }
    .site-header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #fff;
      padding-left: 5px;
      padding-right: 5px;
    }
    .hf-trustproof__proof {
      border-left: 6px solid var(--farbcode_theme_01);
    }

}
@media (max-width: 600px) {
  .hf-hero {
    min-height: 500px;
    height: 85vh;
  }
  .hf-hero__content {
      top: 50%;
  }
  .hf-hero-slider .slick-dots {
    bottom: 5px !important;
  }
}
/*****************Responsive Css Ends************************/






.btn.btn-default:active, a:active, i:active, button:active {
    transform: translateY(1px);
}

/* =========================
   MOBILE STICKY HEADER CLEAN FIX
========================= */
/*
@media (max-width: 768px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #c3c1c1;
  }

  .header-row {
    padding: 8px 15px;
    align-items: center;
  }

  .logo-link {
    display: block;
    position: relative;
    background: #fff;
    z-index: 3;
  }

  .logo {
    width: 120px;
    max-width: 120px;
    height: auto;
    margin-bottom: -28px;

    background: #fff;

    border-bottom: 1px solid #c3c1c1;
  }

  .header-button {
    width: 180px;
    height: 52px;
    font-size: 14px;
  }

  .logo-link::after {
    display: none !important;
    content: none !important;
  }
}
*/
/* =========================
   IOS SAFARI LOGO BORDER FIX
========================= */
@supports (-webkit-touch-callout: none) {

  /*.logo-link {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }*/

  .logo {
    margin-bottom: -56px !important;
  }
  .header-row {
    gap: 12px;
  }

  .header-button {
    width: 180px !important;
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

}
/*************chatgpt css ***************/
.cta-button-reset {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font: inherit;
  color: var(--farbcode_hero_text_01);
  text-align: center;
}



/*************** cookie css start ***************/
.cookie-terms{
    position:fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index:99999;
    max-width:320px;
    margin: 0 auto;
    background:#eeeeee;
    border-radius:14px;
    padding:16px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    border:1px solid #e5e7eb;
}

/*.cookie-hint{
    display:flex;
    flex-direction:column;
    gap:10px;
}*/
.cookie-hint, .cookie-hint p{
  text-align: center;
}
.cookie-text{
    font-size:13px;
    line-height:1.4;
    color:#374151;
}

.cookie-close .ok-btn, #cookie-ok {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    background: var(--farbcode_theme_01);
    border: solid 1px var(--farbcode_theme_01);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s ease;
    /*box-shadow: 0 4px 12px rgba(22, 163, 74, .3);*/
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
.cookie-close .ok-btn:hover {
  background: #fff !important;
  color: var(--farbcode_theme_01) !important;

}
.essential-cookie p {
    margin-bottom: 0;
    margin-top: 0px;
    color: var(--farbcode_theme_01) !important;
    display: inline-block;
    cursor: pointer;
    font-size: 11px;
}
.cookie-terms .cookie-text a.cookie-daten,
.essential-cookie a {
    color: var(--farbcode_theme_01) !important;
    text-decoration: underline;
    display: inline-block;
}
/*#cookie-ok {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}*/

.essential-cookie{
    text-align:center;
}
/*.essential-cookie a {
    text-decoration: underline;
}*/
.essential-cookie .ok-btn{
    font-size:12px;
    color: var(--farbcode_theme_01) !important;
}
.dd .cookie-terms .cookie-text a:hover,
.dd .essential-cookie a:hover {
    text-decoration: none !important;
}
/*************** cookie css end ***************/
/*************** Scroll to top starts***************/
.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 70px;
    z-index: 15;
    display: none;
}
.scroll-to-top.show-scroll-to-top {
  display: block;
}
.scroll-to-top a {
    /*padding: 10px;*/
    background: transparent;
    color: transparent;
    font-size: 30px;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
}
.show-scroll-to-top a {
    background: var(--farbcode_theme_01);
    color: white;
}
.show-scroll-to-top a:hover {
    background: white !important;
    color: var(--farbcode_theme_01);
    border: solid 1px var(--farbcode_theme_01);
}

.scroll-to-top a i {
    /*top: -6px;*/
    top: 5px;
    position: relative;
    -webkit-text-stroke: 1px;
}
.show-scroll-to-top a {
  background: #2b3c2f !important;
}
/*************** Scroll to top ends***************/

/* Legal pages: Impressum / Datenschutz */
.datenschutz-page p, .datenschutz-page li {
    hyphens: auto;
    -webkit-hyphens: auto;
    text-align: justify;
}

.legal-page {
  background: #fff;
  /*padding: 40px 0 40px;*/
  margin-top: 100px;
}
.imp-page {
  text-align: center;
}

.legal-page .container {
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 0px 20px 0px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(18, 86, 40, 0.08);
}

.legal-card h1 {
  font-family: "Manrope", sans-serif;
  font-size: 46px;
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--farbcode_theme_01);
}

.legal-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.25;
  margin: 20px 0 2px;
  color: #302f2f;
}

.legal-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 32px 0 2px;
  color: #302f2f;
}

.legal-card p,
.legal-card li {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  line-height: 1.75;
  color: #5f5f5f;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.legal-card a {
  color: var(--farbcode_theme_01);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card strong {
  color: #302f2f;
  font-weight: 700;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--farbcode_theme_01);
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 56px 0 72px;
    margin-top: 70px;
  }

  .legal-card {
    /*padding: 34px 26px;*/
    border-radius: 10px;
  }

  .legal-card h1 {
    font-size: 34px;
  }

  .legal-card h2 {
    font-size: 24px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 17px;
  }
}
@media (min-width: 768px) {
  .imp-page {
    width: 60%;
    margin: 100px auto 0 auto;
  }
}
.legal-page .container {
  padding-left: 10px;
  padding-right: 10px;
  overflow-wrap: break-word;
}

.legal-page {
    padding: 0px 20px 60px;
}
/* Legal pages: Impressum / Datenschutz */

.cta-button-reset {
  font-size: 22px;

  font-weight: 800;

  letter-spacing: -0.025em;

  line-height: 1;

  height: 68px;
}
.cta-button-reset, .header-button, #appointment-form button {
  font-family: var(--font_family_cta), sans-serif !important;
}

/********************** Custom checkbox ***********************/

#cross_products  .custom-checkbox{
    float: right;
}
.LV_problems_field[type=checkbox] {
    display: block !important;
    height: 0 !important;
    width: 0 !important;
    position: relative;
}
.LV_problems_field[type=checkbox]:after {
    content: "";
    border: 2px solid #a80000;
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
    border-radius: 7px;
    z-index: 1;
}
.custom-checkbox input[type=checkbox] {
    display: none;
}
.checkbox .checkbox-label {
    display: table-cell;
    vertical-align: middle;
    padding-top: 2px;
}

.custom-checkbox label {
    margin-bottom: 0px;
    margin-right: 5px;
}
/*cart page checkbox */
/*#cross_products .custom-checkbox label:after{
    top: -3px !important;
    left: -1px !important;
}*/
/*checkbox width*/
/*.custom-checkbox label {
    display: block;
    width: 25px;
    height: 23px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border-radius: 5px;
    border: 2px solid var(--farbcode);
}*/
.custom-checkbox label {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border-radius: 7px;
    border: 2px solid var(--farbcode);
}
/*tick arrow css*/
/*.custom-checkbox label:after {
    font-family: "FontAwesome";
    content: "\f14a";
    position: relative;
    opacity: 0;
    color: var(--farbcode);
    font-size: 26px;
    top: -9px;
    left: 0px;

    animation: effect 250ms ease-in;
}*/
.custom-checkbox label:after {
    font-family: "FontAwesome";
    content: "\f14a";
    position: absolute;
    opacity: 0;
    color: var(--farbcode);
    font-size: 25px;
    top: 0px;
    border-radius: 5px;
    left: 0px;
    animation: effect 250ms ease-in;
    line-height: 0.9;
    font-weight: bolder;
}

.perks-container .configurator-container .custom-checkbox label:after {
    /*font-family: "FontAwesome";
    content: "\f14a";
    position: absolute;
    opacity: 0;
    color: var(--farbcode);
    font-size: 25px;
    top: -8px;
    border-radius: 5px;
    left: 0px;
    animation: effect 250ms ease-in;*/
    font-family: "FontAwesome";
    content: "\f14a";
    position: absolute;
    opacity: 0;
    color: var(--farbcode);
    font-size: 25px;
    top: 0px;
    border-radius: 5px;
    left: 0px;
    animation: effect 250ms ease-in;
    line-height: 0.9;
    font-weight: bolder;

}

.custom-checkbox input[type=checkbox]:checked+span+label,.custom-checkbox input[type=checkbox]:checked+label{
    border-color: transparent;
}
.custom-checkbox input[type=checkbox]:checked+label:after {
    opacity: 1;
}

.custom-checkbox input[type=checkbox]:checked+span+label:after{
    opacity: 1;
    border-color: transparent;
}

/*.custom-checkbox input.LV_problems_field+span+label,
.custom-checkbox input.LV_invalid_field+span+label{
    border-color: #A80000 !important;
}*/

/***************** End of custom checkbox ***************************/
/*****************popup css starts here ******************/
.popup-close {
    position: absolute !important;
    right: -10px !important;
    top: -10px !important;
    background: red !important;
    padding: 5px !important;
    opacity: 1 !important;
    color: white !important;
    border: solid 2px red !important;
    z-index: 1;
}
.popup-close:hover {
    background: white !important;
    border: solid 2px red;
    color:  red !important;
}
.modal-body .page-header {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}
.modal-body .page-header p {
    font-size: 24px;
    font-weight: normal;
    color: var(--farbcode);
    text-align: center;
}
.tab {
    display: none;
}
@media (max-width: 767px) {
    .modal-dialog {
        width: 90% !important;
        max-width: 90%;
        margin: 1rem auto !important;
    }
}
/*****************popup css ends here ******************/
/**************Snackbar****************************/
#snackbar {
    display: none;
    width: max-content;
    min-width: max-content;
    margin-left: -125px;
    color: #fff;
    background-color: rgb(33, 37, 41);
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 9999999999;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 30px;
    font-size: 17px;
}
#snackbar.display {
    display: block;
    animation: fadeinLess 0.5s;
}
#snackbar.show {
    display: block;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbar {
    border: 1px solid;
    
}
.copy-sidebar-save .msg_head{
    text-align: left;
    font-weight: bold;
}
 #snackbar .msg_wrapper {
    display: flex;
    align-items: center;
    text-align: left;
}
#snackbar a.close-msg {
    padding: 5px;
    background: #731c1c !important;
    color: #fff !important;
    position: absolute;
    top: -6px;
    right: -6px;
}
#snackbar a.close-msg:hover{
    color: #731c1c !important;
    background: #fff !important;
    border: solid 1px #731c1c;
}
#snackbar a.close-msg i{
    position: relative;
    top: -1px;
}
#snackbar a.close-msg i{
    position: relative;
    top: -1px;
}
 #snackbar .msg_container {
    max-width: 428px;
}
#snackbar i.msg-icon{
    float:left;
    font-size: 40px;
    padding-right: 15px;
}
 #snackbar .msg_content {
    max-width: 428px;
    text-align: left;
}
 #snackbar .msg_content a{
    color: #fff;
    text-decoration: underline;
 }
.copy-sidebar-save.msg_head {
    font-weight: 700;
    text-align: left;
}
@media(max-width:425px){
    #snackbar {
        max-width: 431px !important;
        width: 90% !important;
        min-width: 90% !important;
    font-size:15px !important;
    }
}

/************************* Form css ***************************/
.form-container .form select {
    border-radius: unset;
    height: 60px;
    border: 1px solid transparent;
    background-color: #f1eff0;
    color: #495057 !important;
    -webkit-box-shadow: 0 0 0 30px #f1eff0 inset;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.form-container .form select::-ms-expand{
    display: none;
}

.form-container .form select:active,
.form-container .form select:focus {
    border: 1px solid var(--farbcode);
    box-shadow: none;
}

.form-container .form select option {
    color: #495057 !important;
}

.form-container .form img {
    height: 60px;
    width: 100%;
}

.form-container .form .input-group {
    height: 70px;
}

.form-container .form .input-group input {
    border-radius: unset;
    width: 100%;
    padding-right: 38px;
    height: 60px;
    border: 1px solid transparent;
    background-color: #f1eff0;
    -webkit-box-shadow: 0 0 0 30px #f1eff0 inset;
    pointer-events: unset;
  
}
.form-container .form .input-group input:active,
.form-container .form .input-group input:focus {
    border: 1px solid var(--farbcode);
    box-shadow: none;
}

.form-container .form .input-group textarea {
    width: 100%;
    height: 140px;
    padding: 20px 12px;
    background-color: #f1eff0;
    -webkit-box-shadow: 0 0 0 30px #f1eff0 inset;
    border: 1px solid transparent;
}

.form-container .form .input-group textarea:active,
.form-container .form .input-group textarea:focus {
    border: 1px solid var(--farbcode);
    box-shadow: none;
}

.form-container .form .input-group .input-group-append {
    right: 0px;
    position: absolute;
    z-index: 15;
    height: 60px;
}

.form-container .form .input-group .input-group-append .input-group-text {
    border-radius: unset;
    background: none;
    border: none;
    font-size: 23px;
    color: #9e9e9e;
}

.form-container .form .input-group .error-label {
    font-size: 14px;
    width: 100%;
}

.form-container .form .input-group.text-area-container {
    height: 150px !important;
}

/*.form-container button {
    height: 60px;
    width: 100%;
    border: solid 1px var(--farbcode);
    background-color: var(--farbcode);
    color: white;
    letter-spacing: 0.08em;
    font-size: 20px;
    cursor: pointer;
}
.dd .form-container button:hover {
    background: white;
    color: var(--farbcode);
    border: solid 1px var(--farbcode);
    font-weight: bold;
}*/
.konoto-box {
    margin-top: 150px;
    box-shadow: 0 0px 6px #000;
    -moz-box-shadow: 0 0px 10px #00000080;
    -webkit-box-shadow: 0 0px 10px #00000080;
    border-radius: 6px;
    padding: 40px 30px;
    /*margin-bottom: 10px;*/
}
.LV_validation_message {
    display: none;
}
.LV_problems_field {
    border: 2px solid #ffa500 !important;
}

.LV_invalid_field {
    border: 2px solid #A80000 !important;
}

.LV_valid_field {
    border: 2px solid #008000 !important;
}

.form .error {
    border: 2px solid #A80000 !important;
}

.form .valid {
    border: 2px solid #008000 !important;
}
.privacy-label a{
    color: var(--farbcode) !important;
    text-decoration: underline;
}

.dd .privacy-label a:hover{
    text-decoration: none !important;
}
.privacy-label {
  font-size: 13px;
}
.form .input-group.checkbox .custom-checkbox{
    display: table-cell;
    vertical-align: middle;
    width: 20px;
}
@media screen and (max-width: 600px) {
    .form-container button {
        height: 50px;
        font-size: 14px;
    }
}
.form .input-group.checkbox {
    padding-top: 15px;
    padding-left: 10px;
    margin-bottom: 10px;
    height: 30px !important;
    display: table;
    max-width: 450px;
}
.form-container .form .checkbox-label a {
    color: var(--farbcode);
    text-decoration: underline;
}
.dd .form-container .form .checkbox-label a:hover {
    text-decoration: none !important;
}
.form-control {
    text-transform: inherit;
}
.sign_frm {
    box-shadow: 0 0 6px #000;
    -moz-box-shadow: 0 0px 10px #00000057;
    -webkit-box-shadow: 0 0px 10px #00000057;
    border-radius: 6px;
    padding: 20px;
}
/********************** Special css for kontakt.php *******************/