:root {
  --dark: #151515;
  --white: white;
  --primary: #3fbe4e;
  --grey: #858585;
  --error: #ff244c;
  --grade-1: #058d3f;
  --grade-2: #66df57;
  --dark-grade-1: #1a1a1a;
  --dark-grade-2: #303030;
  --secondary: #ff8f23;
  --deep-sky-blue: #3db5ff;
  --dark-slate-blue: #27509b;
  --gainsboro: #e0e0e0;
  --light-grey: #aaa;
  --gelb: #ffea00;
  --lila: #8326f5;
  --yellow: var(--error);
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

h3 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

h6 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 2px solid var(--primary);
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 28px;
}

figure {
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

figcaption {
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
}

.hover-line {
  width: 50%;
  height: 1px;
  background-image: linear-gradient(to bottom, var(--error), var(--error));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-link {
  color: var(--white);
  margin-left: 16px;
  margin-right: 16px;
  padding: 3px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  overflow: hidden;
}

.nav-link.dropdown {
  padding-top: 4px;
  padding-bottom: 0;
  padding-right: 18px;
  display: block;
}

.navbar {
  z-index: 100;
  width: 100%;
  height: 110px;
  background-color: #5a5a5a;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: fixed;
}

.menu-icon-line-top, .menu-icon-line-bottom {
  height: 2px;
  background-color: var(--white);
}

.nav-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand {
  height: 100%;
  color: var(--white);
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  display: flex;
}

.nav-right {
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
  display: flex;
}

.button {
  height: 64px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 8px solid rgba(0, 0, 0, 0);
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  margin: -8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.large {
  height: 76px;
  border-radius: 38px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 18px;
  line-height: 24px;
}

.button.small {
  height: 56px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
}

.button.full-width {
  width: 100%;
}

.menu-icon-line-middle {
  height: 2px;
  background-color: var(--white);
  margin-top: 4px;
  margin-bottom: 4px;
}

.navigation {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.menu-icon {
  width: 20px;
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  height: 60px;
}

.logo-text {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.top-button {
  z-index: 10;
  width: 40px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  background-color: #252525;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  transition: color 1s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: fixed;
  top: auto;
  bottom: 12px;
  left: auto;
  right: 12px;
}

.top-button:hover {
  background-color: var(--primary);
}

.sg-typography {
  max-width: 770px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 33.33% auto;
  grid-auto-columns: 1fr;
  padding-top: 32px;
}

.sg-colors {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.top-button-icon {
  margin: 0 auto 1px;
  position: relative;
  transform: rotate(180deg);
}

.top {
  height: 0;
}

.wrapper {
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 72px;
  position: relative;
}

.wrapper.benefits {
  background-image: url('../images/web_back.jpg');
  background-position: 50%;
  background-size: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.wrapper.abstand {
  margin-bottom: 31px;
  padding-bottom: 0;
}

.wrapper.abstand.dashboards {
  margin-top: 40px;
}

.page-wrapper {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
}

.back-to-top {
  height: 0;
}

.sg-color-card {
  background-color: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 12px;
}

.section-intro {
  z-index: 1;
  max-width: 770px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section-intro.margin-bottom {
  margin-bottom: 80px;
}

.section-intro.wide {
  max-width: 770px;
}

.sg-color {
  height: 160px;
  max-height: 13vw;
  background-color: var(--dark);
}

.sg-color.grade-1 {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
}

.sg-color.error-color {
  background-color: var(--error);
}

.sg-color.dark-grade {
  background-image: linear-gradient(to right, var(--dark-grade-1), var(--dark-grade-2));
}

.sg-color.grey-color {
  background-color: var(--grey);
}

.sg-color.primary-color {
  background-color: var(--primary);
}

.sg-color.secondary-color {
  background-color: var(--secondary);
}

.breadcrumbs-link {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 10px;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-link:hover {
  background-color: rgba(21, 21, 21, .12);
}

.breadcrumbs-link.current-page {
  color: var(--grey);
}

.breadcrumbs-link.current-page:hover {
  background-color: rgba(0, 0, 0, 0);
}

.breadcrumbs {
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: 28px;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.text-label {
  background-color: var(--error);
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

.text-label.rot {
  background-color: var(--error);
  color: var(--dark-grade-2);
}

.text-label.blau {
  background-color: var(--deep-sky-blue);
}

.text-label.black {
  background-color: var(--grey);
  color: var(--white);
}

.text-label.blau {
  background-color: var(--dark-slate-blue);
}

.breadcrumb-divider {
  width: 20px;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  margin-bottom: 1px;
  margin-left: 8px;
  margin-right: 8px;
}

.sg-color-name {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.section {
  z-index: 3;
  border-bottom: 1px none var(--grey);
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 63px;
  padding-top: 19px;
  padding-bottom: 45px;
  position: relative;
}

.section.border-top {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section.no-padding-top {
  background-color: var(--white);
  padding-top: 64px;
}

.section.no-padding-top.price {
  background-color: rgba(170, 170, 170, .5);
  padding-top: 62px;
  padding-bottom: 94px;
  display: block;
}

.section.no-padding-top.news, .section.no-padding-top.suscribe {
  display: none;
}

.section.no-padding-top.faq {
  background-color: rgba(170, 170, 170, .05);
  padding-top: 55px;
}

.section.no-padding-top.dashboard {
  background-color: var(--grey);
  padding-top: 105px;
  padding-bottom: 115px;
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section.grey {
  background-color: var(--gainsboro);
  color: var(--light-grey);
  padding-top: 109px;
}

.hero-intro {
  z-index: 1;
  max-width: 970px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 2vh;
  display: flex;
  position: relative;
}

.hero-intro.out {
  display: block;
}

.hero-heading {
  color: var(--light-grey);
  margin-top: 8px;
  margin-bottom: 32px;
}

.hero-heading.dashboards {
  color: var(--white);
  margin-bottom: 43px;
}

.hero-image {
  width: 140vh;
  max-width: 100%;
  min-width: 600px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.hero-image.home {
  width: 170vh;
  min-width: 1200px;
}

.hero-section {
  z-index: 1;
  min-height: 26vw;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 74px;
  display: flex;
}

.hero-section.start {
  height: auto;
  background-color: var(--dark);
  color: var(--dark);
  background-image: none;
}

.hero-section.dashboards {
  background-color: #252525;
}

.hero-preview-wrapper {
  width: 100%;
  perspective: 2000px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-preview-wrapper.out {
  display: block;
}

.intro-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.intro-left.margin-bottom {
  margin-bottom: 72px;
}

.main-grid {
  width: 100%;
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.features-wrapper {
  width: 970px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.features {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
}

.feature {
  align-items: flex-start;
  display: flex;
}

.feature-info {
  flex: 1;
  margin-left: 24px;
}

.text-grey {
  color: var(--grey);
}

.icon-box {
  width: 80px;
  height: 80px;
  background-image: linear-gradient(to bottom, var(--error), var(--error));
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.icon-box.margin-bottom {
  margin-bottom: 20px;
}

.icon {
  z-index: 2;
  height: 40px;
  position: relative;
}

.feature-card {
  width: 100%;
  background-image: linear-gradient(155deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  align-items: stretch;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.feature-card-image {
  width: 60%;
  max-width: none;
  object-fit: cover;
  flex: 0 auto;
}

.featre-card-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 2%;
  margin-right: 7%;
  display: flex;
}

.video {
  width: 100%;
  height: 520px;
  max-width: 940px;
  background-image: linear-gradient(to bottom, rgba(21, 21, 21, .4) 41%, var(--dark) 96%), url('../images/macbook.png');
  opacity: 1;
  perspective: 2000px;
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 72px;
  display: flex;
  position: relative;
}

.play-button {
  z-index: 3;
  width: 100px;
  height: 100px;
  border: 2px solid var(--white);
  background-color: rgba(0, 0, 0, .6);
  background-image: url('../images/play.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 50%;
  margin-top: 11%;
  transition: transform 1s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1), border-color 1s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
}

.play-button:hover {
  border-color: var(--primary);
  transform: scale(1.06);
}

.footer-section {
  background-color: var(--dark-grade-2);
  color: var(--grey);
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  display: flex;
}

.footer-bottom {
  width: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--dark-grade-2);
  border: 1px solid #000;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 52px;
  padding: 23px 72px 23px 32px;
  font-size: 11px;
  line-height: 16px;
  display: grid;
}

.footer-bottom-link {
  color: #fff;
  padding-top: 1px;
  padding-bottom: 1px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-divider {
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  display: none;
}

.footer-nav-link {
  color: var(--white);
  margin: 8px 16px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-left {
  color: var(--grey);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer-bottom-right {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-social {
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  display: none;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, .06);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 3px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.footer-social-link:hover {
  transform: scale(1.16);
}

.footer-social-link.twitter-link:hover {
  background-color: #2aa3f0;
}

.footer-social-link.facebook-link:hover {
  background-color: #3b5998;
}

.footer-social-link.instagram-link:hover {
  background-color: #f83f5a;
}

.footer-social-link.youtube-link:hover {
  background-color: #fc0d1c;
}

.footer-social-icon {
  width: 14px;
}

.subscribe-form-block {
  width: 100%;
  max-width: 470px;
  margin-bottom: 0;
  padding-top: 32px;
}

.subscribe-input-wrapper {
  width: 100%;
  background-color: rgba(242, 243, 245, .06);
  border-radius: 40px;
  align-items: center;
  padding: 8px;
  display: flex;
  overflow: hidden;
}

.subscribe-input {
  height: 48px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-radius: 30px;
  flex: 1;
  margin: 0;
  padding-left: 27px;
  padding-right: 27px;
}

.subscribe-input:focus {
  color: #fff;
}

.subscribe-input::-ms-input-placeholder {
  color: var(--grey);
}

.subscribe-input::placeholder {
  color: var(--grey);
}

.form-text-bottom {
  color: rgba(255, 255, 255, .26);
  margin-top: 16px;
  font-size: 11px;
  line-height: 16px;
}

.form-success {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: rgba(63, 190, 78, .04);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.error {
  border: 1px solid var(--error);
  color: var(--error);
  background-color: rgba(255, 36, 76, .08);
  border-radius: 6px;
  margin-top: 16px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.product-hunt {
  width: 770px;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ph-info {
  flex: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}

.ph-badge {
  min-width: 200px;
  background-color: rgba(255, 255, 255, .06);
  border-radius: 16px;
  flex: none;
}

.leave-review {
  width: 100%;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.leave-review-line {
  height: 1px;
  background-color: rgba(255, 255, 255, .1);
  flex: 1;
}

.leave-review-link {
  color: var(--white);
  flex: none;
  align-items: center;
  padding-right: 24px;
  transition: color .2s cubic-bezier(.165, .84, .44, 1), letter-spacing 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.leave-review-link:hover {
  color: var(--grade-2);
  letter-spacing: 1px;
}

.leave-review-icon {
  width: 40px;
  height: 40px;
  background-image: url('../images/pencil.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  margin-right: 12px;
}

.ph-info-text {
  color: var(--grey);
}

.ph-bage-text {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 12px 24px;
  font-size: 13px;
}

.ph-badge-info {
  justify-content: space-between;
  align-items: center;
  margin: 16px 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.ph-badge-stars {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ph-badge-star {
  width: 20px;
  margin-left: 1px;
  margin-right: 1px;
}

.ph-badge-rating {
  background-color: var(--dark);
  color: #ff8f23;
  text-align: center;
  letter-spacing: -.5px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 40px;
  flex: none;
  margin-left: 20px;
  padding: 3px 11px;
  font-size: 17px;
  font-weight: 600;
}

.testimonials {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.review {
  background-image: linear-gradient(138deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.review-author {
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.review-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  margin-right: 20px;
}

.review-info {
  flex: 1;
}

.review-name {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.review-text {
  color: var(--grey);
  margin-top: 4px;
}

.review-author-link {
  opacity: .4;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  padding: 8px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.review-author-link:hover {
  opacity: 1;
  transform: scale(1.16);
}

.review-link-icon {
  width: 16px;
}

.features-v3 {
  grid-column-gap: 32px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-v3-image {
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.feature-v3-info {
  padding-left: 12px;
  padding-right: 12px;
}

.logotypes-wrapper {
  width: 1000px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logotypes-heading {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.logotype {
  height: 32px;
  opacity: .4;
  margin: 3%;
}

.faq {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.accordion-info {
  padding-right: 72px;
}

.accordion-item {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-left: 24px;
  padding-right: 24px;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: block;
  overflow: hidden;
}

.accordion-item:hover {
  background-color: rgba(255, 255, 255, .03);
}

.accordion-plus {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, .06);
  border: 13px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: absolute;
  right: 0;
}

.accordion-text {
  color: var(--grey);
  padding-bottom: 32px;
}

.plus-line-v {
  width: 2px;
  height: 100%;
  background-color: var(--deep-sky-blue);
  border-radius: 1px;
  position: absolute;
}

.accordion-heading {
  flex: 1;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 16px;
}

.accordion-header {
  min-height: 72px;
  color: var(--deep-sky-blue);
  cursor: pointer;
  background-color: rgba(170, 170, 170, .1);
  justify-content: flex-end;
  align-items: center;
  padding: 28px 40px 28px 10px;
  display: flex;
  position: relative;
}

.plus-line-h {
  width: 100%;
  height: 2px;
  background-color: var(--deep-sky-blue);
  border-radius: 1px;
  position: absolute;
}

.text-link {
  color: var(--deep-sky-blue);
}

.text-link:hover {
  text-decoration: underline;
}

.pricing-list {
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 7px;
  margin-bottom: 31px;
  padding-left: 0;
}

.check-icon {
  width: 24px;
  height: 24px;
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -2px;
  margin-right: 12px;
}

.pricing-3-cols {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.pricing-3-cols.dashboard {
  grid-template-columns: 1fr 1fr;
}

.price-tag {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 56px;
}

.plan-info {
  color: #fff;
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 20px;
}

.plan-name {
  background-color: var(--error);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.plan-name.highlighted {
  background-color: var(--error);
}

.plan-name.highlighted.dashboards-green {
  background-color: var(--grade-2);
}

.plan-name.highlighted.dashboards-yellow {
  background-color: var(--gelb);
}

.plan-name.highlighted.dashboards-orange {
  background-color: var(--secondary);
}

.plan-name.dashboards-gray {
  background-color: var(--grey);
}

.plan-name.dashboards-blue {
  background-color: var(--deep-sky-blue);
}

.plan-name.dashboards-lila {
  background-color: var(--lila);
}

.pricing-list-item {
  color: var(--grey);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  line-height: 20px;
  display: flex;
}

.pricing-table {
  text-align: center;
  background-image: linear-gradient(#303030, #1a1a1a);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-plan-line {
  z-index: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, .15);
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0%;
  right: 0%;
}

.pricing-plan-line.highlighted {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
}

.faq-wrapper {
  max-width: 1000px;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.faq-category {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, .06);
  border-radius: 20px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 32px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
}

.faq-category.first-category {
  margin-top: 40px;
}

.page-top-section {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
}

.page-intro {
  z-index: 1;
  max-width: 970px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 13vh auto;
  display: flex;
  position: relative;
}

.page-intro.post-intro {
  max-width: 770px;
}

.page-heading {
  margin-top: 8px;
  margin-bottom: 0;
}

.faq-category-dot {
  width: 6px;
  height: 6px;
  background-color: var(--grade-2);
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
  border-radius: 50%;
  margin-right: 12px;
}

.link-grey {
  color: var(--grey);
  padding-bottom: 2px;
  font-size: 15px;
  line-height: 20px;
  position: relative;
  overflow: hidden;
}

.licenses {
  width: 100%;
  max-width: 670px;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  display: grid;
}

.licence-link-divider {
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  margin-bottom: 11px;
  margin-left: 12px;
  margin-right: 12px;
  display: inline-block;
}

.licence-icon {
  width: 28px;
}

.licence-info {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 12px;
  padding-left: 40px;
}

.licence-photo {
  width: 192px;
  height: 144px;
  object-fit: cover;
  border-radius: 8px;
  flex: none;
}

.licence-icons {
  width: 192px;
  height: 144px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(255, 255, 255, .04);
  border-radius: 8px;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 24px;
  display: grid;
}

.licence {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
  margin-bottom: -1px;
  padding: 32px 0;
  display: flex;
}

.bottom-info-text {
  max-width: 570px;
  color: var(--grey);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  line-height: 20px;
}

.timeline {
  width: 2px;
  background-color: rgba(255, 255, 255, .2);
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.changelog-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Date Timeline Info"
  / minmax(128px, auto) minmax(32px, auto) 1fr;
  grid-auto-columns: 1fr;
  padding-right: 40px;
  display: grid;
}

.timeline-date {
  color: gray;
  text-align: right;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  line-height: 20px;
}

.version-heading {
  margin-bottom: 16px;
}

.timeline-info {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 60px;
  display: flex;
}

.changelog-badge {
  color: var(--primary);
  text-transform: uppercase;
  border: 1px solid rgba(63, 190, 78, .5);
  border-radius: 32px;
  flex: none;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.changelog-badge.fix-badge {
  color: var(--error);
  border-color: rgba(255, 36, 76, .5);
}

.changelog-badge.enhance-badge {
  color: var(--secondary);
  border-color: rgba(255, 143, 35, .5);
}

.timeline-dot {
  z-index: 2;
  width: 12px;
  height: 12px;
  background-color: var(--white);
  box-shadow: 0 0 0 12px var(--dark);
  border-radius: 50%;
  margin-top: 12px;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
}

.change-text {
  color: var(--grey);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 24px;
}

.changelog {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}

.change {
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 10px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
}

.posts {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.post-card {
  height: 368px;
  max-height: 32vw;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.post-card-thumb {
  width: 100%;
  height: 100%;
  opacity: .5;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.post-card-content {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}

.post-card-heading {
  max-width: 440px;
  margin-bottom: 24px;
}

.post-card-info {
  border-top: 1px solid rgba(255, 255, 255, .25);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.blog-category {
  background-color: var(--grade-1);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.blog-category.post-category {
  margin-bottom: 8px;
}

.post-card-date {
  font-size: 13px;
  line-height: 18px;
}

.change-heading {
  margin-bottom: 10px;
}

.pagination {
  margin-top: 48px;
}

.pagination-arrow {
  width: 20px;
  height: 20px;
  margin-top: -1px;
}

.post-heading {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 56px;
}

.post-image {
  width: 100%;
  height: 680px;
  max-height: 64vw;
  object-fit: cover;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.post p {
  color: var(--light-grey);
  font-size: 17px;
  line-height: 28px;
}

.post a:hover {
  text-decoration: underline;
}

.post li {
  color: #aaa;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 17px;
}

.post-bottom-info {
  color: var(--grey);
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  line-height: 20px;
  display: flex;
}

.post-content {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 88px;
  padding-left: 15px;
  padding-right: 15px;
}

.post-content.sg-post-content {
  padding-top: 0;
  padding-bottom: 0;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 370px;
  max-width: 100%;
  text-align: center;
  flex-direction: column;
  padding: 40px;
  display: flex;
}

.utility-page-content._404-content {
  width: 570px;
  align-items: center;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.input {
  height: 48px;
  background-color: rgba(255, 255, 255, .06);
  border: 1px #000;
  border-radius: 24px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 24px 9px;
}

.input::-ms-input-placeholder {
  color: var(--grey);
}

.input::placeholder {
  color: var(--grey);
}

.input.password-input {
  text-align: center;
  margin-bottom: 16px;
}

.password-heading {
  margin-top: 16px;
  margin-bottom: 20px;
}

.side-blocks {
  max-width: 1600px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  padding-left: 72px;
  padding-right: 72px;
  display: grid;
}

.side-blocks.dashboard {
  justify-content: stretch;
  justify-items: stretch;
}

.side-info {
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
}

.side-image {
  background-image: linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.side-image.data1 {
  width: 100%;
}

.hero-subscribe {
  width: 100%;
  max-width: 470px;
  margin-bottom: 0;
  padding-top: 16px;
}

.features-v2 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 58px;
}

.feature-v2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-v2-info {
  padding-top: 24px;
}

.text-grey-big {
  color: var(--grey);
  font-size: 14px;
  line-height: 20px;
}

.text-grey-big.intro {
  text-align: center;
  margin-top: 66px;
  margin-bottom: 52px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 16px;
  line-height: 24px;
}

.feature-list {
  width: 100%;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 19px;
  list-style-type: square;
}

.feature-list.feature-card-list {
  margin-bottom: 0;
}

.feature-list-item {
  color: var(--white);
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 17px;
  line-height: 24px;
  display: flex;
}

.check-circle-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, .06);
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  margin-right: 12px;
}

.text-white {
  color: var(--white);
}

.cta-card {
  width: 970px;
  max-width: 100%;
  background-image: linear-gradient(170deg, var(--dark-grade-2), var(--dark-grade-1));
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 10%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .7);
}

.cta-app-icon {
  width: 92px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.button-bg {
  width: 100%;
  background-image: linear-gradient(to bottom, var(--error), var(--error));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-text {
  z-index: 1;
  position: relative;
}

.form-action-link {
  z-index: 1;
  height: 48px;
  background-color: rgba(0, 0, 0, 0);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.licence-app {
  width: 192px;
  object-fit: cover;
  object-position: 0% 50%;
  border-radius: 8px;
  flex: none;
}

.licence-mockup {
  width: 192px;
  object-position: 0% 50%;
  border-radius: 8px;
  flex: none;
}

.nav-dropdown {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.nav-link-content {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 18px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-list.w--open {
  background-color: var(--dark-grade-1);
  background-image: linear-gradient(140deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: -4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}

.nav-dropdown-link {
  color: rgba(255, 255, 255, .5);
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px 12px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: padding .5s cubic-bezier(.165, .84, .44, 1), color .5s cubic-bezier(.165, .84, .44, 1), background-color .5s cubic-bezier(.165, .84, .44, 1);
}

.nav-dropdown-link:hover {
  color: var(--primary);
  background-color: rgba(0, 0, 0, .25);
  padding-left: 24px;
  padding-right: 20px;
}

.nav-dropdown-link.w--current {
  color: #fff;
}

.dropdown-arrow {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 0;
  font-size: 13px;
  line-height: 16px;
}

.sg-buttons {
  grid-column-gap: 72px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.terms {
  max-width: 770px;
  color: var(--dark);
  margin-left: auto;
  margin-right: auto;
}

.terms p {
  color: var(--light-grey);
}

.terms a {
  color: var(--deep-sky-blue);
}

.terms a:hover {
  text-decoration: underline;
}

.terms ol {
  color: var(--light-grey);
  margin-bottom: 20px;
}

.body {
  background-color: var(--white);
}

.heading {
  color: var(--deep-sky-blue);
}

.heading.rot {
  color: var(--error);
}

.heading.dunkelblau {
  color: var(--dark-slate-blue);
}

.heading.grau {
  color: var(--light-grey);
}

.heading.red {
  color: var(--error);
}

.heading-2 {
  color: var(--deep-sky-blue);
}

.heading-2.rot {
  color: var(--error);
}

.heading-2.dunkelblau {
  color: var(--dark-slate-blue);
}

.heading-3 {
  color: var(--deep-sky-blue);
}

.heading-3.rot {
  color: var(--error);
}

.heading-3.dunkelblau {
  color: var(--dark-slate-blue);
}

.heading-4 {
  color: var(--dark-slate-blue);
  line-height: 40px;
}

.heading-4.zentriert {
  text-align: center;
  margin-bottom: 33px;
}

.heading-4.zentriert.rot {
  color: var(--error);
  margin-bottom: 32px;
}

.heading-4.zentriert.rot.home {
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.heading-5 {
  color: var(--deep-sky-blue);
  line-height: 48px;
}

.heading-6 {
  color: var(--deep-sky-blue);
}

.heading-6.red {
  color: var(--error);
}

.heading-6.blaudunkel {
  color: var(--dark-slate-blue);
}

.heading-7 {
  color: var(--deep-sky-blue);
  font-size: 48px;
  line-height: 50px;
}

.list-item, .list-item-2, .list-item-3 {
  color: var(--dark);
}

.link {
  color: var(--deep-sky-blue);
}

.link.red {
  color: var(--error);
}

.link.dunkelblau {
  color: var(--dark-slate-blue);
}

.link-2 {
  color: var(--deep-sky-blue);
}

.text-span {
  font-weight: 400;
}

.sticky-nav {
  z-index: 1;
  background-color: var(--dark-grade-2);
  color: var(--dark-grade-2);
  padding: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sticky-nav.health, .sticky-nav.data {
  z-index: 10;
}

.nav-grid {
  width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 3fr max-content max-content max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  display: grid;
}

.nav-logo-link {
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: block;
}

.nav-logo {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: 0% 50%;
}

.nav-link-2 {
  color: var(--white);
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
  text-decoration: none;
  display: block;
}

.nav-link-2:hover {
  text-decoration: underline;
}

.button-2 {
  background-color: var(--error);
  margin-left: 10px;
  margin-right: 10px;
}

.button-2.blau {
  background-color: var(--deep-sky-blue);
}

.button-2.dunkelblau {
  background-color: var(--dark-slate-blue);
}

.text-block, .text-block-2 {
  color: var(--white);
}

.text-block-3, .text-block-4 {
  color: var(--error);
}

.text-block-5, .text-block-6, .text-block-7, .text-block-8, .text-block-9, .text-block-10, .text-block-11, .text-block-12, .text-block-13, .text-block-14, .text-block-15, .text-block-16, .text-block-17, .text-block-18, .text-block-19 {
  color: #fff;
}

.bold-text {
  color: var(--error);
  font-size: 34px;
  line-height: 34px;
}

.bold-text.dunkelblau {
  color: var(--dark-slate-blue);
}

.bold-text-2 {
  color: var(--error);
  font-size: 34px;
  line-height: 34px;
}

.bold-text-2.blau {
  color: var(--deep-sky-blue);
}

.bold-text-2.dunkelblau {
  color: var(--dark-slate-blue);
}

.bold-text-3 {
  color: var(--error);
}

.bold-text-3.dunkelblau, .list-item-4 {
  color: var(--dark-slate-blue);
}

.text-block-20 {
  font-weight: 700;
}

.bold-text-4, .bold-text-5 {
  color: #ff3b3e;
}

.text-span-2 {
  color: var(--error);
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  h5 {
    font-size: 17px;
    line-height: 24px;
  }

  h6 {
    font-size: 15px;
    line-height: 20px;
  }

  .hover-line {
    display: none;
  }

  .nav-link {
    text-transform: none;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 36px;
    font-size: 20px;
    line-height: 28px;
    display: block;
  }

  .nav-link.dropdown {
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 32px;
    display: flex;
  }

  .menu-button {
    z-index: 150;
    background-color: rgba(0, 0, 0, 0);
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navbar {
    height: 72px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-icon-line-top, .menu-icon-line-bottom {
    border-radius: 1px;
  }

  .brand {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-right {
    padding-right: 0;
  }

  .button.nav-button {
    height: 56px;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 13px;
  }

  .menu-icon-line-middle {
    border-radius: 1px;
  }

  .navigation {
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
  }

  .nav-menu {
    z-index: 10;
    width: 280px;
    height: auto;
    max-height: 100vh;
    background-color: var(--dark);
    text-align: left;
    background-image: linear-gradient(to right, #303030, #1a1a1a);
    padding-top: 88px;
    overflow: scroll;
  }

  .logo {
    height: 45px;
  }

  .logo-text {
    margin-left: 16px;
    font-size: 17px;
  }

  .top-button {
    bottom: 12px;
    right: 12px;
  }

  .sg-typography {
    padding-top: 0;
  }

  .sg-colors {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-intro.margin-bottom {
    margin-bottom: 64px;
  }

  .sg-color {
    height: 18vw;
    max-height: none;
  }

  .breadcrumbs {
    margin-top: 24px;
  }

  .text-label {
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-intro {
    margin-top: 20px;
    margin-bottom: 80px;
  }

  .hero-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .hero-image.home {
    width: 150vh;
    min-width: 500px;
  }

  .hero-section {
    padding-top: 120px;
    position: static;
  }

  .hero-section.start {
    height: 60vh;
    background-image: none;
  }

  .intro-left.margin-bottom {
    margin-bottom: 60px;
  }

  .main-grid {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .features {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-info {
    margin-left: 20px;
  }

  .icon-box {
    width: 72px;
    height: 72px;
    background-image: linear-gradient(#303030, #1a1a1a);
    border-radius: 16px;
  }

  .icon {
    height: 36px;
  }

  .feature-card {
    width: 83.33%;
    border-radius: 16px;
    flex-direction: column;
    margin-bottom: 80px;
    padding-bottom: 8px;
  }

  .feature-card-image {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .featre-card-info {
    margin-left: 8%;
    margin-right: 8%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .video {
    height: 50vw;
  }

  .play-button {
    width: 88px;
    height: 88px;
    background-size: 36px;
  }

  .footer-section {
    padding-top: 40px;
  }

  .footer-bottom {
    margin-top: 44px;
  }

  .footer-social {
    margin-top: 8px;
  }

  .product-hunt {
    width: 100%;
  }

  .testimonials {
    grid-template-columns: 1fr;
    padding-left: 16%;
    padding-right: 16%;
  }

  .review {
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .features-v3 {
    grid-column-gap: 24px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr 1fr;
  }

  .feature-v3-image {
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .logotype {
    height: 28px;
    margin: 16px 20px;
  }

  .pricing-3-cols {
    max-width: 60vw;
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .faq-wrapper {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-category.first-category {
    margin-top: 20px;
  }

  .page-top-section {
    padding-top: 56px;
    position: static;
  }

  .page-intro {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .page-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .changelog-block {
    grid-template-columns: minmax(88px, auto) minmax(32px, auto) 1fr;
  }

  .posts {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
  }

  .post-card {
    height: 44vw;
    max-height: none;
    border-radius: 16px;
  }

  .post-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .post-image {
    height: 64vw;
    max-height: none;
    border-radius: 16px;
  }

  .post-content {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .side-blocks {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
    overflow: hidden;
  }

  .side-info {
    padding-left: 0%;
    padding-right: 12%;
  }

  .side-image {
    border-radius: 16px;
  }

  .features-v2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 16%;
    padding-right: 16%;
  }

  .feature-v2 {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-v2-info {
    padding-top: 0;
    padding-left: 20px;
  }

  .text-grey-big {
    font-size: 17px;
    line-height: 24px;
  }

  .cta-card, .cta-app-icon {
    border-radius: 16px;
  }

  .button-bg {
    background-color: var(--error);
    background-image: none;
  }

  .button-text {
    font-size: 10px;
  }

  .nav-link-content {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 23px;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    border-radius: 0;
    flex-wrap: wrap;
    margin-left: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    position: relative;
  }

  .nav-dropdown-link {
    color: #fff;
    padding-left: 52px;
    padding-right: 52px;
  }

  .nav-dropdown-link:hover, .nav-dropdown-link:visited {
    color: #fff;
  }

  .nav-dropdown-link.w--current {
    color: #e8985c;
  }

  .dropdown-arrow {
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 15px;
  }

  .sg-buttons {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    padding: 10px 32px;
    font-size: 17px;
    line-height: 24px;
  }

  .nav-link.dropdown {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar {
    height: 64px;
  }

  .button.large {
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 15px;
  }

  .menu-icon {
    margin-left: 2px;
    margin-right: 2px;
  }

  .nav-menu {
    width: 220px;
    padding-top: 64px;
  }

  .top-button {
    display: none;
  }

  .sg-colors {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .sg-color-card {
    padding: 8px;
  }

  .section-intro.margin-bottom {
    margin-bottom: 48px;
  }

  .sg-color-name {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 16px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-intro {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .hero-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .hero-image {
    min-width: 0;
  }

  .hero-section {
    padding-top: 96px;
  }

  .hero-section.start {
    height: 30vh;
  }

  .intro-left.margin-bottom {
    margin-bottom: 48px;
  }

  .main-grid {
    grid-row-gap: 48px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-radius: 12px;
    margin-bottom: 60px;
  }

  .featre-card-info {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .play-button {
    width: 64px;
    height: 64px;
    background-size: 24px;
  }

  .footer-section {
    padding-top: 24px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding: 16px;
  }

  .footer-nav-link {
    margin: 4px 12px;
  }

  .footer-social {
    margin-top: 0;
  }

  .subscribe-input-wrapper {
    padding: 6px;
  }

  .ph-info {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .testimonials {
    padding-left: 11%;
    padding-right: 11%;
  }

  .review {
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .review-author {
    flex-wrap: wrap;
  }

  .features-v3 {
    grid-row-gap: 48px;
  }

  .feature-v3-image {
    border-radius: 12px;
  }

  .feature-v3-info {
    padding-left: 8px;
    padding-right: 8px;
  }

  .accordion-info {
    padding-right: 56px;
  }

  .accordion-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-plus {
    width: 36px;
    height: 36px;
    border-width: 11px;
  }

  .accordion-text {
    padding-bottom: 16px;
  }

  .accordion-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .accordion-header {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .pricing-3-cols {
    max-width: 66vw;
  }

  .faq-category {
    margin-top: 48px;
    margin-bottom: 20px;
  }

  .faq-category.first-category {
    margin-top: 0;
  }

  .page-intro {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .page-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .timeline-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 10px var(--dark);
    margin-top: 10px;
  }

  .change-text {
    font-size: 15px;
  }

  .posts {
    grid-row-gap: 24px;
  }

  .post-card-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .post-card-heading {
    margin-bottom: 16px;
  }

  .post-card-info {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .post-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .post-image {
    border-radius: 12px;
  }

  .post-content {
    padding-top: 48px;
  }

  .side-blocks {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .side-info {
    padding-right: 0%;
  }

  .side-image {
    border-radius: 12px;
  }

  .features-v2 {
    grid-template-columns: 1fr;
    padding-left: 10%;
    padding-right: 10%;
  }

  .cta-card {
    border-radius: 12px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-app-icon {
    width: 72px;
    margin-bottom: 16px;
  }

  .nav-dropdown-link {
    padding-left: 48px;
    padding-right: 48px;
  }

  .dropdown-arrow {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .sg-buttons {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-items: center;
  }

  .sticky-nav {
    position: relative;
  }

  .nav-grid {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    z-index: 100;
  }

  .button.nav-button {
    height: 30px;
    border-radius: 4px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    display: none;
  }

  .nav-menu {
    width: 100%;
  }

  .logo-text {
    display: none;
  }

  .sg-colors {
    grid-template-columns: 1fr 1fr;
  }

  .wrapper {
    height: auto;
    max-width: 1000px;
    margin-top: 0;
    display: inline-block;
  }

  .wrapper.abstand {
    margin-top: 38px;
    margin-bottom: 0;
    display: inline-block;
  }

  .wrapper.abstand.dashboards {
    margin-top: 0;
  }

  .sg-color {
    height: 24vw;
  }

  .section {
    margin-top: -29px;
  }

  .section.no-padding-top {
    padding-bottom: 0;
  }

  .section.no-padding-top.dashboard {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 48px;
  }

  .hero-intro {
    margin-top: 20px;
  }

  .hero-intro.out {
    display: block;
  }

  .hero-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .hero-image.home {
    min-width: 200px;
  }

  .hero-section {
    background-color: var(--gainsboro);
  }

  .hero-section.start {
    height: 50vh;
    background-color: var(--dark);
    background-image: none;
  }

  .hero-section.dashboards {
    padding-top: 34px;
  }

  .intro-left {
    text-align: center;
    align-items: center;
  }

  .main-grid {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .features {
    grid-row-gap: 48px;
  }

  .feature {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-info {
    margin-top: 20px;
    margin-left: 0;
  }

  .feature-card {
    width: 100%;
    margin-bottom: 40px;
  }

  .featre-card-info {
    margin-left: 24px;
    margin-right: 24px;
  }

  .play-button {
    margin-top: 7%;
  }

  .footer-bottom {
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }

  .subscribe-input {
    padding-left: 25px;
  }

  .product-hunt {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .ph-info {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .leave-review {
    justify-content: center;
  }

  .leave-review-line {
    display: none;
  }

  .leave-review-link {
    padding-right: 0;
  }

  .testimonials {
    padding-left: 0%;
    padding-right: 0%;
  }

  .review {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }

  .review-author {
    justify-content: center;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .review-author-link {
    margin-top: 10px;
    margin-right: 10px;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .features-v3 {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .logotype {
    height: 26px;
    margin: 12px;
  }

  .accordion-info {
    padding-right: 0;
  }

  .accordion-item {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-heading {
    font-size: 15px;
    line-height: 20px;
  }

  .pricing-list {
    margin-top: 32px;
    padding-top: 24px;
  }

  .pricing-3-cols {
    max-width: none;
    grid-row-gap: 40px;
  }

  .pricing-3-cols.dashboard {
    grid-template-rows: auto auto auto auto;
    grid-auto-flow: row;
    display: block;
  }

  .price-tag {
    font-size: 24px;
    line-height: 28px;
  }

  .pricing-table {
    flex-flow: column;
    margin-top: 20px;
    padding: 40px 24px;
    display: block;
  }

  .page-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .licence-info {
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .licence {
    flex-direction: column;
    padding-top: 48px;
  }

  .changelog-block {
    grid-column-gap: 24px;
    grid-row-gap: 8px;
    grid-template: "Timeline-Mobile Date-Mobile Date-Mobile"
                   "Timeline-Mobile Info-Mobile Info-Mobile"
                   / auto minmax(32px, auto) 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-date {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .posts {
    padding-left: 0%;
    padding-right: 0%;
  }

  .post-card {
    height: 72vw;
  }

  .post-card-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .side-blocks {
    grid-row-gap: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .side-info {
    max-width: none;
    padding-left: 0%;
    padding-right: 0%;
  }

  .features-v2 {
    grid-row-gap: 48px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .feature-v2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-v2-info {
    padding-top: 20px;
    padding-left: 0;
  }

  .text-grey-big {
    font-size: 16px;
    line-height: 22px;
  }

  .text-grey-big.intro {
    text-align: center;
    margin-top: 36px;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-bg {
    background-image: linear-gradient(125deg, var(--error), var(--error) 99%, var(--grade-2));
  }

  .button-text {
    font-size: 9px;
  }

  .sg-buttons {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .heading-4 {
    line-height: 20px;
  }

  .sticky-nav {
    padding: 0;
  }

  .nav-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 100px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .nav-logo-link {
    border-top: 1px solid #c4c4c4;
  }

  .nav-logo-link.w--current {
    border-top-style: none;
  }

  .nav-link-2 {
    border-top: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .text-block-5, .text-block-10 {
    font-size: 12px;
    line-height: 18px;
  }

  .bold-text, .bold-text-2 {
    font-size: 20px;
    line-height: 20px;
  }

  .text-span-2 {
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
  }
}

#w-node-_260b317a-e174-7e69-0923-8e653b23e236-83bdc176 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_260b317a-e174-7e69-0923-8e653b23e23b-83bdc176 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-a973dea1-1a72-50b9-da36-a6fa8213b746-35bdc17e {
  justify-self: start;
}

#w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebd-35bdc17e, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-35bdc17e, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-35bdc17e {
  justify-self: center;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-35bdc17e {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-35bdc17e {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-e6bfa79a-2512-8d28-b5a2-095402a82d14-38bdc17f, #w-node-d19df200-ebda-1b76-a9d2-aba3a525ee53-68254d0a, #w-node-_7e911b07-0f25-6d21-74a7-f072516a2286-51032e80 {
  justify-self: start;
}

#w-node-cab33c69-0c1c-907b-d72c-fd3d4f4201f7-51032e80, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-51032e80, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-51032e80 {
  justify-self: center;
}

#w-node-_7e911b07-0f25-6d21-74a7-f072516a2286-39fd19e6 {
  justify-self: start;
}

#w-node-_225f14ff-b1ef-7b07-d19c-919dc223fad9-39fd19e6, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-39fd19e6, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-39fd19e6 {
  justify-self: center;
}

#w-node-_7e911b07-0f25-6d21-74a7-f072516a2286-069f64b7 {
  justify-self: start;
}

#w-node-_07847e32-af97-7e13-d269-fda558ddfab6-069f64b7, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-069f64b7, #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebd-069f64b7, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-069f64b7 {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_260b317a-e174-7e69-0923-8e653b23e236-83bdc176 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: start;
  }

  #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebc-35bdc17e, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b40-35bdc17e, #w-node-_7f66fb1d-1684-8505-8c30-1baf3ed3fed7-35bdc17e {
    order: -9999;
  }

  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-35bdc17e {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: start;
  }

  #w-node-cab33c69-0c1c-907b-d72c-fd3d4f4201f6-51032e80, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b40-51032e80, #w-node-_7f66fb1d-1684-8505-8c30-1baf3ed3fed7-51032e80, #w-node-_225f14ff-b1ef-7b07-d19c-919dc223fad8-39fd19e6, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b40-39fd19e6, #w-node-_7f66fb1d-1684-8505-8c30-1baf3ed3fed7-39fd19e6, #w-node-_07847e32-af97-7e13-d269-fda558ddfab5-069f64b7, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b40-069f64b7, #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebc-069f64b7, #w-node-_7f66fb1d-1684-8505-8c30-1baf3ed3fed7-069f64b7 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_260b317a-e174-7e69-0923-8e653b23e236-83bdc176, #w-node-_260b317a-e174-7e69-0923-8e653b23e23b-83bdc176 {
    grid-column: span 1 / span 1;
  }

  #w-node-a973dea1-1a72-50b9-da36-a6fa8213b746-35bdc17e {
    justify-self: center;
  }

  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-35bdc17e, #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-35bdc17e {
    grid-column: span 1 / span 1;
  }

  #w-node-e6bfa79a-2512-8d28-b5a2-095402a82d14-38bdc17f, #w-node-d19df200-ebda-1b76-a9d2-aba3a525ee53-68254d0a, #w-node-_7e911b07-0f25-6d21-74a7-f072516a2286-51032e80 {
    justify-self: center;
  }

  #w-node-_7a948946-c5c8-fa89-e0f2-396548ecd7c8-51032e80 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7e911b07-0f25-6d21-74a7-f072516a2286-39fd19e6, #w-node-_7e911b07-0f25-6d21-74a7-f072516a2286-069f64b7 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.ttf') format('truetype'), url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}