@charset "UTF-8";
@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;
}
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8faff;
  margin: 0;
  color: #1c1e31;
  font-family: hk_groteskregular_legacy;
}

h1,
h2,
.h2 {
  font-family: hk_groteskbold;
  color: #4657ff;
  font-size: 64px;
  line-height: 62px;
  margin-top: 0;
}
h1::before,
h2::before,
.h2::before {
  content: "";
  display: block;
  width: 95px;
  height: 20px;
  background: #0acffe;
  margin-bottom: 10px;
}
h1.success::before,
h2.success::before,
.h2.success::before {
  background: #20d094;
}
@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;
  }
}

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

a {
  color: #4c4c4c;
  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;
}
.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;
  }
}
section .content,
header .content {
  width: 1440px;
  padding: 0 30px;
}
@media only screen and (max-width: 600px) {
  section .content,
header .content {
    width: auto;
    padding: 24px;
  }
}

.sticky-header {
  padding: 20px 0;
  background: linear-gradient(33deg, #4657ff 15%, rgba(70, 89, 255, 0.9) 100%);
  position: -webkit-sticky;
  /* Für Safari */
  position: sticky;
  top: 0;
  z-index: 1000;
}
.sticky-header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Anpassung für Logo und Burger-Button */
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.sticky-header .oose-logo {
  height: 19px;
}
.sticky-header .partner-logo {
  height: 20px;
  margin-bottom: -7px;
}
.sticky-header .navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  /* Links am rechten Rand ausrichten */
}
.sticky-header .navbar ul li {
  margin-left: 20px;
}
.sticky-header .navbar ul li a {
  color: #f8faff;
  text-decoration: none;
  font-size: 18px;
  font-family: hk_groteskbold;
}
.sticky-header .navbar ul li a:hover {
  color: #0acffe;
}
.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;
    align-items: flex-start;
    background-color: rgba(70, 87, 255, 0.9);
    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;
  }
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  column-gap: 69px;
  row-gap: 69px;
}
.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.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;
    row-gap: 69px;
    column-gap: 0;
  }
}
.grid .span-2 {
  grid-column: span 2;
}
.grid.cards {
  margin: 0;
  padding: 0;
}
.grid.cards li {
  display: block;
  color: #4c4c4c;
  display: flex;
}
@media only screen and (max-width: 600px) {
  .grid.cards li {
    background-position: 24px 24px !important;
  }
}
.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: white;
}
.grid.cards li > a:hover h3 {
  color: #2832ba;
}
.grid.cards li img {
  display: block;
  max-width: 100%;
  border-radius: 10px 10px 0 0;
}
.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: #4657ff;
  font-size: 30px;
  font-family: hk_groteskbold;
  line-height: 34px;
  margin: 0;
}

.card {
  display: block;
  color: #4c4c4c;
}
@media only screen and (max-width: 600px) {
  .card {
    background-position: 24px 24px !important;
  }
}
.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: white;
}
.card > a:hover h3 {
  color: #2832ba;
}
.card img {
  display: block;
  max-width: 100%;
  border-radius: 10px 10px 0 0;
}
.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: #4657ff;
  font-size: 30px;
  font-family: hk_groteskbold;
  line-height: 34px;
  margin: 0;
}

.btn {
  color: #f8faff;
  font-family: "Roboto Mono";
  font-size: 18px;
  padding: 15px 20px;
  border: none;
  display: inline-block;
  outline: none;
  border: 2px solid #18219d;
  border-radius: 4px;
  background-color: #4657ff;
  cursor: pointer;
  user-select: none;
}
.btn-success {
  background-color: #20d094;
  border-color: #20d094;
  color: white;
}
.btn-ghost {
  background-color: transparent;
}
.btn:hover {
  background-color: #0acffe;
  color: #18219d;
}
.btn span {
  color: #4657ff;
}
.btn span:hover {
  color: #f8faff;
}

.intro,
.badge,
.health,
.income {
  padding: 0;
}
.intro .screenshots,
.badge .screenshots,
.health .screenshots,
.income .screenshots {
  display: flex;
  align-items: flex-start;
  justify-content: end;
}
.intro .screenshots .screenshot-wrapper,
.badge .screenshots .screenshot-wrapper,
.health .screenshots .screenshot-wrapper,
.income .screenshots .screenshot-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro .screenshots .screenshot-wrapper img,
.badge .screenshots .screenshot-wrapper img,
.health .screenshots .screenshot-wrapper img,
.income .screenshots .screenshot-wrapper img {
  display: block;
}
@media only screen and (max-width: 600px) {
  .intro .screenshots,
.badge .screenshots,
.health .screenshots,
.income .screenshots {
    display: none;
  }
}
.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;
}
.intro .intro-text ul,
.badge .intro-text ul,
.health .intro-text ul,
.income .intro-text ul {
  display: block;
  margin: 0;
  padding: 0;
}
.intro .intro-text ul li,
.badge .intro-text ul li,
.health .intro-text ul li,
.income .intro-text ul li {
  display: block;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 600px) {
  .intro .intro-text,
.badge .intro-text,
.health .intro-text,
.income .intro-text {
    margin-top: 100px;
  }
}

.intro .content > div,
.badge .content > div,
.income .content > div,
.health .content > div {
  padding-bottom: 120px;
  padding-top: 120px;
}
@media only screen and (max-width: 600px) {
  .intro .content > div,
.badge .content > div,
.income .content > div,
.health .content > div {
    padding: 0;
  }
}

.intro {
  background: linear-gradient(33deg, #4657ff 15%, #0acffe 100%);
}
.intro .intro-text {
  color: white;
}

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

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

@media only screen and (max-width: 600px) {
  .income {
    margin-top: 0;
  }
}

.impression {
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("img/vm.jpg");
  background-position: center center;
  background-size: cover;
}
.impression #video-button {
  cursor: pointer;
  width: 100px;
  height: 100px;
  display: block;
  border: 3px solid #f8faff;
  border-radius: 50%;
  padding: 0;
  margin: 0 auto;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.5s ease;
}
.impression #video-button:after {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 14px);
  display: block;
  content: "";
  box-sizing: border-box;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 26px 0 26px 40px;
}
.impression #video-button:hover {
  background-color: rgba(24, 33, 157, 0.8);
}
.impression #video-container {
  height: 350px;
  width: 700px;
  background: #18219d;
  border-radius: 5px;
  display: none;
  padding: 2px;
  margin: 0 15px;
}
.impression iframe {
  /* optional */
  width: 100%;
  height: 100%;
}

.about table {
  margin-top: 18px;
}
.about table tr td:first-child {
  color: #4657ff;
  font-family: "Roboto Mono";
  padding-right: 10px;
}
@media only screen and (max-width: 600px) {
  .about table tr {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
  }
}

.benefits h2,
.jobs h2,
.faq h2,
.contact h2 {
  color: #f8faff;
}

.benefits {
  background: linear-gradient(33deg, #2832ba 15%, #00043f 100%);
}

.chart {
  flex: 1;
}

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

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

.total {
  color: #18219d;
}

#output_income,
#output_vacation,
em {
  font-family: "hk_groteskbold";
}

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

#output_vacation {
  color: #4657ff;
}

#trainer-info {
  display: none;
}

.form-element-slider output {
  display: block;
  width: 24px;
  font-family: Roboto Mono;
  font-weight: 600;
}

select {
  display: block;
  background-color: #f8faff;
  border: 1px solid #2832ba;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
  font-family: hk_groteskregular_legacy;
  color: #4657ff;
  font-size: 18px;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 15ch;
  max-width: 30ch;
  border: 1px solid var(--select-border);
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  cursor: pointer;
}
.select select, .select::after {
  grid-area: select;
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

.sliders {
  color: #4657ff;
}

svg {
  display: block;
  max-width: 100px;
  margin-bottom: 10x;
}

input[type=radio] {
  display: none;
}

input:checked + div {
  color: #ff6d6a;
}

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

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

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

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

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

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

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4657ff;
  border: 1px solid #2832ba;
  border-radius: 25px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 7.5px 0;
  color: transparent;
  width: 100%;
  height: 10px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: #18219d;
  border: 1px solid #2832ba;
  border-radius: 50px;
}

input[type=range]::-ms-fill-upper {
  background: #4657ff;
  border: 1px solid #2832ba;
  border-radius: 50px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: #4657ff;
  border: 1px solid #2832ba;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

input[type=range]:focus::-ms-fill-lower {
  background: #4657ff;
}

input[type=range]:focus::-ms-fill-upper {
  background: #0acffe;
}

/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/
@supports (-ms-ime-align: auto) {
  /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
  input[type=range] {
    margin: 0;
    /*Edge starts the margin from the thumb, not the track as other browsers do*/
  }
}
.jobs {
  background: linear-gradient(33deg, #4657ff 15%, #18219d 100%);
}
.jobs img {
  padding: 55px 35px 0 35px;
}

.faq {
  background: linear-gradient(33deg, #2832ba 15%, #18219d 100%);
}
.faq .accordions {
  width: 66%;
}
@media only screen and (max-width: 600px) {
  .faq .accordions {
    width: 100%;
  }
}
.faq .accordion {
  background: none;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 24px;
  font-family: hk_groteskbold;
  transition: 0.4s;
}
.faq .active,
.faq .accordion:hover {
  background: rgba(73, 90, 255, 0.1);
  color: #0acffe;
}
.faq .accordion:after {
  content: "+";
  color: #0acffe;
  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-family: hk_grotesklight;
  font-size: 18px;
  line-height: 22px;
  color: #f8faff;
  padding-top: 10px;
}
.faq .panel a {
  color: #0acffe;
  font-family: hk_groteskbold;
}
.faq .panel a:hover {
  color: white;
}

.paragraph {
  background-color: #d9dff5;
  background-image: url("/img/about_bg.svg");
  background-repeat: no-repeat;
  background-position: right 30px;
  color: #4657ff;
}
.paragraph h2 {
  margin: 100px 0 0 0;
  font-size: 54px;
}
.paragraph ul {
  padding-left: 0;
}
.paragraph a {
  color: #949eff;
  font-family: hk_groteskbold;
}
.paragraph a:hover {
  color: #0acffe;
}
.paragraph address {
  margin: 10px 0;
  font-size: 18px;
  font-style: normal;
}

.dark {
  background-color: #4657ff;
  color: white;
  background-image: url("/img/about_bg.svg");
  background-repeat: no-repeat;
  background-position: right 130px;
}
.dark a {
  color: #0acffe;
}
.dark h2 {
  color: inherit;
}
.dark ul {
  display: block;
  margin: 0;
  padding: 0;
}
.dark ul li {
  display: block;
  margin: 0;
  padding: 0;
}
.dark ul li a {
  display: block;
  font-family: hk_groteskbold;
  padding: 2px 0;
  font-size: 18px;
}
.dark ul li a:hover {
  color: white;
}

.benefits img {
  padding: 55px 35px 0 35px;
}
.benefits h4 {
  font-size: 28px;
  font-family: hk_groteskbold;
}
.benefits .profile-pic {
  max-height: 100%;
  object-fit: cover;
}
.benefits .list ul {
  list-style: none;
  margin-top: 18px;
  padding-left: 0;
}
.benefits .list ul li::before {
  color: #4657ff;
  font-weight: bold;
  content: "•";
  padding-right: 5px;
}

.oose.dark h2::before {
  background-color: #0acffe;
}
@media only screen and (max-width: 600px) {
  .oose .grid {
    row-gap: 0;
  }
}
.oose ul {
  padding-left: 0;
  margin-top: 0;
}
.oose ul li {
  margin: 0 2px 5px 0;
  padding: 3px 5px;
  display: inline-block;
  font-family: "Roboto Mono";
  font-size: 18px;
  text-transform: uppercase;
  color: #f8faff;
  background-color: #2e3134;
}
@media only screen and (max-width: 600px) {
  .oose ul li {
    font-size: 18px;
  }
}
.oose a {
  color: #4657ff;
}
.oose a:hover {
  color: #2832ba;
}
.oose img.trainer {
  display: block;
  max-width: 100%;
  border-radius: 10px;
  margin-top: 25px;
}
.oose h3 {
  padding-top: 24px;
}
.oose h2 {
  font-size: 36px;
  line-height: 36px;
}
@media only screen and (max-width: 600px) {
  .oose h2 {
    font-size: 30px;
  }
}
.oose h2::before {
  background-color: #0acffe;
}
.oose h2 img {
  display: block;
  margin-top: 25px;
}
.oose h2 .oose-logo span {
  display: none;
}
@media only screen and (max-width: 600px) {
  .oose h2 .oose-logo img {
    width: 100px;
  }
}

.cta {
  background-image: linear-gradient(33deg, #4657ff -30%, #f8faff 150%);
}
.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;
}

.contact a {
  color: #0acffe;
}
.contact a:hover {
  color: #f8faff;
}
.contact .socialmedia a {
  color: #c0f5e3;
}
.contact ul {
  display: block;
  margin: 0;
  padding: 0;
}
.contact ul li {
  display: block;
  margin: 0;
  padding: 0;
}
.contact ul li a {
  display: block;
  font-family: hk_groteskbold;
  padding: 2px 0;
  font-size: 18px;
}
.contact ul li a:hover {
  color: white;
}

.testimonials {
  overflow: hidden;
}
.testimonials .content ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.testimonials .content ul li {
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
}
.testimonials .content ul li img {
  display: block;
  max-width: 100%;
}
.testimonials .content ul li .text {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
  background: linear-gradient(33deg, rgba(73, 90, 255, 0.8) 15%, rgba(24, 33, 157, 0.8) 100%);
  color: white;
  cursor: default;
  overflow: auto;
}
.testimonials .content ul li:hover .text {
  display: block;
}
@media only screen and (max-width: 600px) {
  .testimonials .content {
    overflow: auto;
  }
  .testimonials .content ul {
    grid-auto-flow: column;
    grid-template-columns: none;
    column-gap: 20px;
    overflow: auto;
  }
  .testimonials .content ul li {
    width: 300px;
  }
}

.footer {
  background-color: #949eff;
  padding: 20px 0;
}
@media only screen and (max-width: 600px) {
  .footer div {
    padding: 0 40px;
  }
  .footer ul {
    display: flex;
    flex-direction: column;
  }
}
.footer ul {
  padding: 0;
}
.footer ul li {
  display: inline-block;
  padding: 0 10px;
}
.footer ul a {
  color: #0acffe;
  display: block;
  font-family: hk_groteskbold;
  padding: 2px 0;
  font-size: 18px;
}
.footer ul a:hover {
  color: white;
}

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