@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

p,
address {
  font-size: 18px;
  line-height: 26px;
  font-style: normal;
}
p:first-child,
address:first-child {
  margin-top: 0;
}

a {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  display: none;
  padding: 20px;
  z-index: 999;
}
.overlay.open {
  display: flex;
}
.overlay .dialog {
  max-width: 50%;
}
.overlay .dialog .btns {
  display: flex;
  justify-content: flex-end;
}
.overlay .dialog .btns .btn {
  margin-left: 12px;
}
@media only screen and (max-width: 600px) {
  .overlay .dialog {
    max-width: none;
  }
  .overlay .dialog p {
    font-size: 14px;
    line-height: 1.5em;
  }
  .overlay .dialog .btns {
    flex-direction: column;
  }
  .overlay .dialog .btns .btn {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }
}

section,
header {
  display: flex;
  justify-content: center;
  padding: 120px 0;
}
@media only screen and (max-width: 600px) {
  section,
header {
    justify-content: flex-start;
    padding: 24px 0;
  }
}
section .content,
header .content {
  width: 1440px;
  padding: 0 30px;
}
@media only screen and (max-width: 600px) {
  section .content,
header .content {
    width: auto;
    padding: 24px;
  }
}

.flex {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  column-gap: 35px;
  row-gap: 35px;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-1 {
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
.grid .span-2 {
  grid-column: span 2;
}

@font-face {
  font-family: "hk_groteskbold";
  src: url("../../font/hkgrotesk-bold-webfont.woff2") format("woff2"), url("../../font/hkgrotesk-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "hk_grotesklight";
  src: url("../../font/hkgrotesk-light-webfont.woff2") format("woff2"), url("../../font/hkgrotesk-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "hk_groteskregular_legacy";
  src: url("../../font/hkgrotesk-regularlegacy-webfont.woff2") format("woff2"), url("../../font/hkgrotesk-regularlegacy-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  background-color: #f8faff;
  margin: 0;
  color: #4c4c4c;
  font-family: hk_groteskregular_legacy, Roboto, sans-serif;
}

h1,
h2,
.h2 {
  color: #225246;
  font-family: hk_groteskbold;
  font-size: 64px;
  line-height: 75px;
  margin-top: 0;
}
h1::before,
h2::before,
.h2::before {
  content: "";
  display: block;
  width: 155px;
  height: 25px;
  background: #52da8f;
  margin-bottom: 10px;
}
h1.success::before,
h2.success::before,
.h2.success::before {
  background: #93e69f;
}
h1.dark-before::before,
h2.dark-before::before,
.h2.dark-before::before {
  background-color: #225246;
}
@media only screen and (max-width: 600px) {
  h1,
h2,
.h2 {
    font-size: 48px;
    line-height: 54px;
  }
  h1:before,
h2:before,
.h2:before {
    width: 60px;
    height: 12px;
  }
}

li {
  font-size: 18px;
  line-height: 26px;
}

a {
  color: #225246;
}

.sticky-header {
  padding: 20px 0;
  background: linear-gradient(33deg, #225246 15%, #071b16 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.sticky-header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.sticky-header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-header .logo img {
  display: block;
}
.sticky-header .back-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.sticky-header .back-link:hover {
  color: #f8faff;
}
.sticky-header .navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sticky-header .navbar ul li {
  margin-left: 20px;
}
.sticky-header .navbar ul li a {
  color: #f8faff;
  font-size: 18px;
}
.sticky-header .navbar ul li a:hover {
  color: #52da8f;
}
.sticky-header .navbar ul li.nav-cta a {
  color: #f8faff;
  font-family: Roboto;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 14px;
}
.sticky-header .navbar ul li.nav-cta a:hover {
  color: #225246;
  font-weight: bold;
}
.sticky-header .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.sticky-header .burger-menu span {
  width: 100%;
  height: 3px;
  background: #f8faff;
}
@media only screen and (max-width: 600px) {
  .sticky-header .burger-menu {
    display: flex;
  }
  .sticky-header .navbar {
    display: none;
    flex-direction: column;
    background-color: #071b16;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 10px 0;
  }
  .sticky-header .navbar ul {
    flex-direction: column;
    width: 100%;
  }
  .sticky-header .navbar ul li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  .sticky-header .navbar.active {
    display: flex;
  }
}

.grid.cards {
  margin: 0;
  padding: 0;
}
.grid.cards li {
  display: block;
  color: #225246;
  display: flex;
}
.grid.cards li > a {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0px 6px 75px rgba(20, 27, 77, 0.15);
  background: #f8faff no-repeat 60px 35px;
  transition: box-shadow 0.3s ease-in-out;
}
.grid.cards li > a:hover {
  box-shadow: 0px 6px 75px rgba(20, 27, 77, 0.35);
  background-color: white;
}
.grid.cards li img {
  display: block;
  width: 90%;
  border-radius: 0;
  margin: 35px auto 0 auto;
}
.grid.cards li .text {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.grid.cards li .text > p {
  flex-grow: 1;
}
.grid.cards li .text .btn {
  align-self: flex-start;
}
.grid.cards li h3 {
  color: #225246;
  font-family: hk_groteskbold;
  font-size: 30px;
  line-height: 34px;
  margin: 0;
}
.grid.cards li h3::before {
  content: "";
  display: block;
  width: 85px;
  height: 12px;
  background: #52da8f;
  margin-bottom: 25px;
}

.card {
  display: block;
  color: #225246;
}
.card > a {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  box-shadow: 0px 6px 75px rgba(20, 27, 77, 0.15);
  background: #f8faff no-repeat 60px 35px;
  transition: box-shadow 0.3s ease-in-out;
}
.card > a:hover {
  box-shadow: 0px 6px 75px rgba(20, 27, 77, 0.35);
  background-color: white;
}
.card img {
  display: block;
  width: 90%;
  border-radius: 0;
  margin: 35px auto 0 auto;
}
.card .text {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card .text > p {
  flex-grow: 1;
}
.card .text .btn {
  align-self: flex-start;
}
.card h3 {
  color: #225246;
  font-family: hk_groteskbold;
  font-size: 30px;
  line-height: 34px;
  margin: 0;
}
.card h3::before {
  content: "";
  display: block;
  width: 85px;
  height: 12px;
  background: #52da8f;
  margin-bottom: 25px;
}

.btn {
  color: #f8faff;
  font-family: "Roboto Mono";
  font-size: 18px;
  padding: 15px 20px;
  display: inline-block;
  outline: none;
  border: 2px solid #225246;
  border-radius: 4px;
  background-color: #225246;
  cursor: pointer;
  user-select: none;
}
.btn:hover {
  background-color: #52da8f;
  color: #225246;
  border-color: #52da8f;
}
.btn span {
  color: #52da8f;
}

.screenshots {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.screenshots .screenshot-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshots .screenshot-wrapper img {
  display: block;
}
@media only screen and (max-width: 600px) {
  .screenshots {
    display: none;
  }
}

.intro,
.badge,
.health,
.income {
  padding: 0;
}
.intro .content > div,
.badge .content > div,
.health .content > div,
.income .content > div {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 600px) {
  .intro .content > div,
.badge .content > div,
.health .content > div,
.income .content > div {
    padding: 0;
  }
}
.intro .intro-text,
.badge .intro-text,
.health .intro-text,
.income .intro-text {
  grid-column: span 2;
}
.intro .intro-text h1,
.intro .intro-text h2,
.badge .intro-text h1,
.badge .intro-text h2,
.health .intro-text h1,
.health .intro-text h2,
.income .intro-text h1,
.income .intro-text h2 {
  color: inherit;
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .intro .intro-text,
.badge .intro-text,
.health .intro-text,
.income .intro-text {
    margin-top: 100px;
  }
}

.intro {
  background: linear-gradient(33deg, #225246 15%, #52da8f 100%);
}
.intro .intro-text {
  color: white;
}
.intro .intro-text h1 {
  color: white;
}

.badge {
  background: #f8faff;
}
.badge .intro-text {
  color: #225246;
}

.health {
  background: linear-gradient(33deg, #caffe2 15%, #f8faff 100%);
}
.health .intro-text {
  color: #225246;
}

.income .intro-text {
  color: #225246;
}

.impression {
  min-height: 380px;
  background-image: url("../../img/selbstorga.jpg");
  background-size: cover;
  background-position: center center;
}

.about {
  background-color: #f8faff;
}

.list ul {
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
}
.list ul li::before {
  color: #52da8f;
  font-weight: bold;
  content: "•";
  padding-right: 5px;
}

.benefits h4 {
  font-family: hk_groteskbold;
  font-size: 28px;
}
.benefits .list ul li::before {
  color: #52da8f;
}

.jobs {
  background: linear-gradient(33deg, #225246 15%, #071b16 100%);
}
.jobs h2 {
  color: #f8faff;
}
.jobs img {
  padding: 55px 35px 0 35px;
}

.graph {
  padding: 0;
}
.graph h2 {
  display: block;
}

.chart {
  flex: 1;
  width: 100%;
}
.chart canvas {
  width: 100% !important;
}

.config {
  flex-direction: column;
}
.config p {
  margin: 0;
  color: #225246;
  padding-bottom: 10px;
}
.config .sliders {
  flex-direction: column;
}
.config .sliders label {
  display: flex;
  text-align: left;
  padding: 30px 0 10px 0;
  color: #225246;
  font-size: 18px;
}

.total {
  color: #225246;
  padding-bottom: 20px;
}

#output_income,
#output_vacation,
em {
  font-style: normal;
}

#output_income,
em {
  color: #52da8f;
}

#output_vacation {
  color: #225246;
}

#trainer-info {
  display: none;
}

select {
  display: block;
  background-color: #f8faff;
  border: 1px solid #225246;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
  color: #225246;
  font-size: 18px;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}

.sliders {
  color: #225246;
}

input[type=range] {
  width: 100%;
  margin: 7.5px 0;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  background: #225246;
  border: 1px solid #071b16;
  border-radius: 25px;
  width: 100%;
  height: 10px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -8.5px;
  width: 25px;
  height: 25px;
  background: #52da8f;
  border: 1px solid #225246;
  border-radius: 25px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #52da8f;
}

input[type=range]::-moz-range-track {
  background: #225246;
  border: 1px solid #071b16;
  border-radius: 25px;
  width: 100%;
  height: 10px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #52da8f;
  border: 1px solid #225246;
  border-radius: 25px;
  cursor: pointer;
}

.faq {
  background: linear-gradient(33deg, #071b16 15%, #225246 100%);
}
.faq h2 {
  color: #f8faff;
}
.faq .accordions {
  width: 66%;
}
@media only screen and (max-width: 600px) {
  .faq .accordions {
    width: 100%;
  }
}
.faq .accordion {
  background: none;
  color: #f8faff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 24px;
  transition: 0.4s;
}
.faq .active,
.faq .accordion:hover {
  background: rgba(82, 218, 143, 0.1);
  color: #52da8f;
}
.faq .accordion:after {
  content: "+";
  color: #52da8f;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.faq .active:after {
  content: "−";
}
.faq .panel {
  padding: 0 18px;
  width: 90%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq .panel p,
.faq .panel li {
  font-size: 18px;
  line-height: 22px;
  color: #f8faff;
  padding-top: 10px;
}
.faq .panel a {
  color: #52da8f;
}
.faq .panel a:hover {
  color: white;
}

.cta {
  background: linear-gradient(33deg, #225246 15%, #52da8f 100%);
}
.cta h2 {
  color: white;
}
.cta img {
  width: 80%;
}
.cta .text-white p {
  color: #f8faff;
}
.cta .text-white a {
  color: #f8faff;
}
.cta .text-white a:hover {
  color: white;
}

.dark {
  background: linear-gradient(33deg, #071b16 15%, #225246 100%);
  color: white;
}
.dark h2 {
  color: white;
}
.dark a {
  color: #52da8f;
}
.dark a:hover {
  color: #f8faff;
}
.dark ul {
  display: block;
  margin: 0;
  padding: 0;
}
.dark ul li {
  display: block;
  margin: 0;
  padding: 0;
}
.dark ul li a {
  display: block;
  font-weight: bold;
  padding: 2px 0;
  font-size: 18px;
}
.dark ul li a:hover {
  color: white;
}

.contact a {
  color: #52da8f;
}
.contact a:hover {
  color: #f8faff;
}
.contact .socialmedia a {
  color: #caffe2;
}
.contact ul {
  display: block;
  margin: 0;
  padding: 0;
}
.contact ul li {
  display: block;
  margin: 0;
  padding: 0;
}
.contact ul li a {
  display: block;
  font-weight: bold;
  padding: 2px 0;
  font-size: 18px;
}
.contact ul li a:hover {
  color: white;
}

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