:root {
  --light: #fcfbf3;
  --black: #131617;
  --secondary--default: #fcff75;
  --secondary--50: rgba(252, 255, 117, .5);
  --color: rgba(255, 129, 44, .25);
  --secondary--25: rgba(252, 255, 117, .25);
  --orange: #ff812c;
}

.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(--light);
  color: var(--black);
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: IBM Plex Sans, sans-serif;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

p {
  opacity: .8;
  margin-bottom: 1em;
  font-size: 1em;
}

a {
  text-decoration: underline;
}

li {
  opacity: .8;
  margin-bottom: 1em;
}

.style-guide-sidebar {
  width: 100%;
  max-width: 240px;
  min-height: 100vh;
  background-color: #fff;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.style-guide {
  padding-left: 240px;
  display: flex;
  position: relative;
}

.style-guide-sections {
  flex: 1;
}

.section {
  padding: 5em 2.5em;
}

.section.full-height {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.headlines {
  min-height: 200vh;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
}

.section.headlines-paragraph {
  padding: 0 2.5em 10em;
}

.section.testimonials {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: hidden;
}

.section.download {
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.footer {
  padding: 7.5em 2.5em;
}

.section.hero {
  padding-top: 7em;
}

.section.mission {
  padding-top: 160px;
  padding-bottom: 160px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.container.navigation {
  display: flex;
}

.container.narrow {
  max-width: 816px;
}

.container.slim {
  max-width: 640px;
}

.style-guide-class {
  background-color: var(--black);
  color: var(--secondary--default);
  border-radius: 8px;
  margin-bottom: 16px;
  margin-right: 8px;
  padding: 4px 16px;
  display: inline-block;
}

.text-2xlarge {
  font-size: 5em;
  line-height: 1.1;
}

.text-xlarge {
  font-size: 4em;
  line-height: 1.1;
}

.style-guide-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
  padding-top: 40px;
  padding-bottom: 40px;
}

.text-large {
  font-size: 2.5em;
  line-height: 1.3;
}

.text-big {
  font-size: 1.5em;
  line-height: 1.3;
}

.text-regular {
  font-size: 1em;
}

.text-small {
  font-size: .75em;
  line-height: 1.3;
}

.header {
  z-index: 20;
  width: 100%;
  height: 7em;
  background-color: var(--light);
  align-items: center;
  padding: 1em 2.5em;
  display: flex;
  position: fixed;
  top: 0;
}

.navigation {
  align-items: center;
  margin-left: auto;
  display: none;
}

.nav-item {
  color: rgba(19, 22, 23, .8);
  margin-right: 32px;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
}

.nav-item.w--current {
  box-shadow: inset 0 -9px 0 0 var(--secondary--50);
  color: var(--black);
}

.row {
  min-height: 100vh;
  margin-left: -24px;
  margin-right: -24px;
  display: flex;
}

.column {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.hero {
  position: relative;
  overflow: hidden;
}

.text-light {
  opacity: .8;
}

.text-mark-small {
  background-image: url('../images/mark_line.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100% 36px;
  margin-bottom: -12px;
  padding-bottom: 12px;
  display: inline-block;
}

.text-mark {
  background-image: url('../images/mark_line.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 100% .5em;
  display: inline-block;
}

.heading {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: IBM Plex Sans, sans-serif;
  font-weight: 400;
}

.grid-3-cols {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.sticky-container {
  position: relative;
}

.button {
  box-shadow: inset 0 0 0 2px var(--black);
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
  border-radius: .25em;
  padding: 1em 1.5em;
  font-size: 1em;
  line-height: 1;
  text-decoration: none;
  position: relative;
}

.button.form {
  background-color: var(--secondary--50);
}

.button.big {
  font-size: 1.5em;
}

.button.small {
  font-size: .75em;
}

.button-shadow {
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--color);
  filter: blur(5px);
  border-radius: 4px;
  position: absolute;
  top: .5em;
  left: .5em;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sticky.full-height {
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sticky.headlines {
  width: 100%;
  flex-direction: column;
  display: flex;
  top: 9vw;
  overflow: hidden;
}

.sticky.margin-top {
  top: 8em;
}

.nav-list {
  width: 100%;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.nav-list-item {
  width: 100%;
  justify-content: flex-end;
  align-self: flex-end;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.nav-item-link {
  color: var(--black);
  text-align: right;
  text-decoration: none;
  position: relative;
}

.nav-item-link.text-big {
  color: rgba(19, 22, 23, .7);
  padding-bottom: .2em;
  transition: color .2s ease-in-out;
  overflow: hidden;
}

.nav-item-link.text-big.w--current {
  color: var(--black);
}

.sticky-wrapper-2x {
  min-height: 200vh;
  position: relative;
}

.phone-body {
  width: 17em;
  border: 3px solid var(--black);
  box-shadow: 17px 17px 0 0 var(--secondary--50);
  border-radius: 24px;
  padding-bottom: 36em;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.padding-x {
  padding: 24px;
}

.hero-image {
  z-index: 1;
  height: auto;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.margin-bottom {
  margin-bottom: 32px;
}

.margin-bottom.text-big.width-80 {
  max-width: 80%;
}

.app-home {
  z-index: 1;
  width: 101%;
  max-width: none;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.app-menu {
  width: 100%;
  max-width: none;
  opacity: 0;
  display: block;
  position: relative;
}

.app-menu-wrapper {
  z-index: 2;
  width: 100%;
  position: absolute;
  bottom: 0;
  transform: translate(0, 88%);
}

.app-trigger {
  z-index: 1;
  width: 20%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app-backdrop {
  z-index: 1;
  width: 100%;
  background-color: var(--black);
  opacity: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-list-item-border {
  z-index: -1;
  height: 16px;
  background-color: var(--secondary--50);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0%;
  right: 0%;
  transform: translate(-100%);
}

.app-free-time {
  z-index: 3;
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(100%);
}

.app-circle-drag {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0, 50%);
}

.app-delimiter {
  width: 7%;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
}

.app-free-time-total-01 {
  width: 50%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%);
}

.app-free-time-total-02 {
  width: 50%;
  opacity: 0;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%);
}

.app-event {
  z-index: 4;
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(100%);
}

.app-reschedule {
  z-index: 5;
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(100%);
}

.app-reschedule-options-wrapper {
  width: 80%;
  padding-bottom: 71%;
  position: absolute;
  bottom: 0;
  left: 10%;
}

.app-reschedule-option-1-selected {
  z-index: 2;
  width: 100%;
  max-width: none;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
}

.app-reschedule-option-2-selected {
  z-index: 2;
  width: 100%;
  max-width: none;
  opacity: 0;
  position: absolute;
  top: 30.2%;
}

.app-reschedule-options {
  z-index: 1;
  width: 100%;
  max-width: none;
  position: absolute;
  top: 0;
}

.app-event-types {
  z-index: 6;
  width: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(100%);
}

.app-event-types-options {
  width: 80%;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
  position: absolute;
  bottom: 6%;
  left: 10%;
}

.app-events-option {
  margin-top: 6%;
}

.headlines-group {
  justify-content: center;
  margin-top: .6vw;
  margin-bottom: .6vw;
  display: flex;
}

.headlines-group._01 {
  margin-top: .6vw;
  margin-bottom: .6vw;
  transform: translate(-8vw);
}

.headlines-group._02 {
  transform: translate(5vw);
}

.headlines-group._03 {
  transform: translate(0);
}

.headlines-group-image {
  width: auto;
  height: 11vw;
  max-width: none;
  display: block;
}

.headlines-group-image.right {
  margin-left: 1.3vw;
}

.headlines-group-headline-container {
  height: 11vw;
  background-color: #fff;
  border: .25vw dashed #000;
  border-radius: 1vw;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  margin-left: 1.3vw;
  padding-top: 2vw;
  padding-bottom: 2vw;
  display: flex;
  overflow: hidden;
}

.headline-group-heading {
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 5vw;
  line-height: 1;
}

.headlines-group-headline-grow {
  width: 50vw;
  flex: none;
  overflow: hidden;
}

.paragraph-big {
  font-size: 1.5em;
}

.grid-sidebar {
  grid-column-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: 2fr 5fr;
}

.grid-2-cols {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  align-items: center;
}

.grid-2-cols.integrations {
  align-items: stretch;
}

.grid-2-cols.align-top {
  align-items: start;
}

.integrations-block {
  border: 3px solid var(--black);
  box-shadow: 11px 11px 0 0 var(--secondary--50);
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  transition: box-shadow .2s ease-in-out;
  display: flex;
}

.integrations-block:hover {
  box-shadow: 0 0 0 0 var(--secondary--50);
}

.integrations-header {
  width: 100%;
  align-items: flex-start;
  padding: 2em;
  display: flex;
}

.integrations-content {
  flex: 1;
  padding: 1em 2em;
}

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

.testimonials-container {
  margin-top: 2.5em;
  padding-bottom: 16px;
  overflow: hidden;
}

.testimonials {
  width: 200vw;
  justify-content: flex-start;
  display: flex;
}

.testimonial-block {
  width: 100%;
  max-width: 24.5em;
  border: 3px solid var(--black);
  box-shadow: 11px 11px 0 0 var(--secondary--50);
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  margin-left: 1em;
  margin-right: 1em;
  display: flex;
}

.testimonial-content {
  padding: 2em 2em 1em;
}

.testimonial-footer {
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  display: flex;
}

.testimonial-rating {
  display: flex;
}

.testimonial-rating-icon {
  width: 24px;
  height: 24px;
  margin-left: -4px;
}

.testimonial-source {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.testimonials-avatar {
  width: 48px;
  height: 48px;
  margin-left: 16px;
}

.hero-image-block {
  z-index: 1;
  width: 120%;
  box-shadow: 34px 34px 0 0 var(--secondary--50);
  border-radius: 4em;
  padding-bottom: 120%;
  position: relative;
  overflow: hidden;
}

.grid-download-app {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: center;
}

.download-bg-image-wrapper {
  width: 50vw;
  height: 10em;
  max-width: none;
  flex: none;
  overflow: hidden;
}

.download-bg-image-wrapper.left {
  justify-content: flex-end;
  display: flex;
}

.download-bg-image-wrapper.right {
  left: 0;
}

.dowload-bg-image-container {
  width: 50vw;
  height: 10em;
  justify-content: flex-end;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.dowload-bg-image-container.left {
  left: -7em;
}

.dowload-bg-image-container.right {
  justify-content: flex-start;
  margin-left: -5em;
  display: flex;
  right: -7em;
}

.download-container {
  z-index: 2;
  width: 100%;
  max-width: 24em;
  border-style: solid solid none;
  border-width: 3px;
  border-color: var(--black);
  background-color: var(--light);
  border-radius: 3em 3em 0 0;
  margin-left: auto;
  margin-right: auto;
  padding: 3em 2.5em;
  position: relative;
  overflow: hidden;
}

.download-bg-image-right {
  height: 10em;
  max-width: none;
  flex: none;
  position: absolute;
  left: 0;
}

.download-container-bg {
  z-index: -1;
  width: 100%;
  background-color: var(--secondary--25);
  border-bottom-right-radius: 100%;
  padding-bottom: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.download-badges {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 2em;
  display: grid;
}

.download-bg-image {
  height: 10em;
  max-width: none;
}

.download-bg-image.left {
  margin-left: 1em;
  right: 0;
}

.download-bg-image.right {
  margin-right: 1em;
  left: 0;
}

.footer {
  background-color: #fff;
}

.footer-logo {
  margin-bottom: 2em;
}

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

.footer-link {
  opacity: .8;
  color: var(--black);
  margin-bottom: .5em;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
}

.footer-link:hover {
  opacity: 1;
}

.subscribe-form {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.subscribe-form-flex {
  flex: 1;
  align-items: stretch;
  display: flex;
}

.subscribe-form-input-wrapper {
  text-align: left;
}

.form-input {
  height: 3.5em;
  border: 2px solid var(--black);
  background-color: var(--light);
  color: var(--black);
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 1em;
  padding: 1em;
  font-size: 1em;
}

.paragraph-small {
  font-size: .75em;
  line-height: 1.5;
}

.mobile-menu-toggle {
  width: 48px;
  height: 48px;
  cursor: pointer;
  margin-left: auto;
  display: none;
  position: relative;
}

.mobile-menu-bar {
  width: 32px;
  height: 4px;
  background-color: #000;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.mobile-menu-bar.top {
  top: 50%;
  transform: translate(-50%, -8px);
}

.mobile-menu-bar.middle {
  top: 50%;
}

.mobile-menu-bar.bottom {
  top: 50%;
  transform: translate(-50%, 8px);
}

.navigation-mobile {
  display: none;
  top: 0;
}

.nav-item-indicator-bullet {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 8px;
  transform: translate(0, 8px);
}

.nav-item-indicator {
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%);
}

.nav-item-2 {
  color: #000;
  margin-left: 12px;
  margin-right: 12px;
  padding: 4px;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  position: relative;
}

.button-2 {
  background-color: #000;
  border-radius: 48px;
  padding: 1.33em 1.78em;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  transition: background-color .2s ease-in-out;
}

.button-2:hover {
  background-color: #242423;
}

.button-2.light {
  color: #000;
  background-color: #e8e8e8;
  font-weight: 500;
}

.button-2.light:hover {
  background-color: #fff;
}

.button-2.light.small {
  padding: 16px 24px;
}

.grid-hero {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  align-items: center;
}

.style-guide-section {
  padding: 2.5em;
}

.style-guide-link {
  opacity: .6;
  color: var(--black);
  margin-top: .5em;
  padding-bottom: .5em;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
}

.style-guide-link.w--current {
  opacity: 1;
}

.style-guide-list {
  flex-direction: column;
  display: flex;
}

.style-guide-logo {
  width: 160px;
  margin-bottom: 24px;
}

.bold-text {
  transition: opacity .2s ease-in-out;
}

.style-guide-sidebar-content {
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em;
  display: flex;
}

.rich a {
  color: #000;
  font-weight: 400;
  text-decoration: underline;
}

.lottie-animation {
  display: none;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }

  .section.headlines-paragraph {
    padding-top: 0;
  }

  .container.navigation {
    justify-content: center;
  }

  .sticky-container.section-links {
    display: none;
  }

  .grid-sidebar {
    grid-template-columns: 2.5fr 5fr;
  }

  .grid-2-cols.integrations {
    grid-template-columns: 1fr;
  }

  .hero-image-block {
    width: 150%;
    padding-bottom: 150%;
  }

  .subscribe-form-flex {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .navigation-mobile {
    z-index: 45;
    width: 100%;
    height: 100vh;
    background-color: #f5f6f7;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5em 2.5em 2.5em;
    display: none;
    position: fixed;
    overflow: auto;
  }

  .nav-item-2.mobile {
    margin: 8px 0;
    font-size: 1em;
  }

  .button-2 {
    text-align: center;
  }

  .button-2.light.small {
    display: none;
  }

  .button-2.light.small.mobile {
    border-radius: 2em;
    margin-top: 8px;
    padding: .5em 1em;
    display: block;
  }

  .grid-hero {
    grid-template-columns: 3fr;
  }

  .lottie-animation {
    display: block;
  }

  .lottie-animation-2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .navigation {
    display: none;
  }

  .nav-item.mobile {
    text-align: center;
    margin-top: .5em;
    margin-bottom: .5em;
    margin-right: 0;
    font-size: 2em;
  }

  .button.margin-top {
    margin-top: 1em;
  }

  .button.margin-top.mobile {
    font-size: 2em;
  }

  .subscribe-form {
    padding: 40px 20px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .navigation-mobile {
    z-index: 18;
    background-color: var(--light);
    display: none;
  }

  .grid-hero {
    grid-template-columns: 3fr;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 12px;
  }

  .style-guide-sidebar {
    display: none;
  }

  .style-guide {
    padding-left: 0;
  }

  .section {
    padding: 40px 32px;
  }

  .section.headlines-paragraph {
    padding-top: 0;
    padding-bottom: 2.5em;
  }

  .section.footer {
    padding-top: 4em;
    padding-bottom: 4em;
    font-size: 14px;
  }

  .section.hero {
    margin-top: 3em;
  }

  .container.navigation {
    justify-content: center;
  }

  .text-2xlarge.hero-headline {
    font-size: 4.2em;
  }

  .style-guide-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

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

  .sticky-container {
    display: flex;
  }

  .sticky-container.section-links {
    display: none;
  }

  .sticky-container.mockup {
    position: -webkit-sticky;
    position: sticky;
    top: 5em;
  }

  .sticky-container.description {
    max-width: 100%;
    display: block;
  }

  .button {
    text-align: center;
    font-size: 1.5em;
  }

  .sticky.full-height {
    min-height: auto;
    margin-left: -2.5em;
    margin-right: -2.5em;
    top: 32em;
    overflow: hidden;
  }

  .sticky.full-height.padding-x {
    flex: 1;
  }

  .sticky.headlines {
    top: 25vh;
  }

  .sticky-wrapper-2x {
    min-height: 100vh;
  }

  .sticky-wrapper-2x.calendar {
    width: auto;
    flex: 1;
  }

  .phone-body {
    box-shadow: 11px 11px 0 0 var(--secondary--50);
    border-width: 2px;
    border-radius: 2.5em;
    font-size: 7px;
  }

  .margin-bottom.text-big.width-80 {
    max-width: 100%;
  }

  .headlines-group-image {
    height: 20vw;
  }

  .headlines-group-headline-container {
    height: 20vw;
    align-items: center;
  }

  .headline-group-heading {
    font-size: 10vw;
  }

  .headlines-group-headline-grow {
    width: 80vw;
  }

  .grid-sidebar {
    grid-row-gap: 2.5em;
    grid-template-columns: 2fr;
  }

  .grid-2-cols {
    grid-template-columns: 1fr;
  }

  .integrations-block {
    font-size: 14px;
  }

  .hero-image-block {
    width: 100%;
    box-shadow: 23px 23px 0 0 var(--secondary--50);
    padding-bottom: 100%;
  }

  .download-badges {
    grid-template-columns: 1fr;
  }

  .centered-container {
    text-align: left;
  }

  .subscribe-form-flex {
    font-size: 12px;
  }

  .subscribe-form-input-wrapper {
    flex: 1;
    align-self: stretch;
  }

  .form-input {
    width: 100%;
    font-size: 1.5em;
  }

  .mobile-menu-toggle {
    margin-right: -8px;
  }

  .navigation-mobile {
    display: none;
  }

  .nav-item-2 {
    margin-left: 0;
    margin-right: 0;
  }

  .sticky-content {
    padding-left: 2.5em;
    padding-right: 2.5em;
    font-size: 14px;
  }

  .grid-hero {
    grid-template-columns: 3fr;
  }
}


