:root {
  --royal-blue: #0059f7;
  --black: #0a1128;
  --cornflower-blue: #689eff;
  --teal: #307473;
  --turquoise: #76e7cd;
}

.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: #f4f7ff;
  font-family: Space Grotesk, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #273464;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lexend Deca, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  color: #273464;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Lexend Deca, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Lexend Deca, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  color: rgba(7, 14, 39, .6);
  letter-spacing: -.02em;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.navigation {
  z-index: 999;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #e2e7fa;
  align-items: center;
  min-height: 94px;
  padding: 20px 3%;
  display: flex;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.container-navigation {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand {
  margin-right: 20px;
}

.nav-menu {
  color: #fff;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.header-section {
  padding: 64px 3% 40px;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr;
  margin-bottom: 72px;
}

.display-heading {
  color: #162044;
  text-align: center;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 64px;
  line-height: 1.2;
}

.display-heading.header-section {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
}

.paragraph-large {
  color: var(--black);
  font-size: 20px;
  line-height: 1.5;
}

.button {
  background-color: var(--royal-blue);
  box-shadow: 1px 1px 3px 0 var(--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 24px;
  display: flex;
}

.button.w--current {
  margin-right: 10px;
}

.button.button-space {
  margin-top: 32px;
}

.button.menu-button {
  margin-right: 10px;
}

.grid-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-large {
  justify-content: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button-grey {
  background-color: #98a6c7;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 14px 24px;
  display: flex;
}

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

.logo-card {
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.content-section {
  padding: 96px 3%;
}

.logo-section {
  padding-top: 40px;
  padding-left: 3%;
  padding-right: 3%;
}

.divider {
  background-color: #e2e7fa;
  width: 100%;
  height: 1px;
  margin-top: 64px;
}

.title-wrap {
  flex-direction: column;
  justify-content: center;
  margin-bottom: 60px;
  display: flex;
}

.feature-card {
  border: 1px solid #e2e7fa;
  border-radius: 16px;
  padding: 40px;
  text-decoration: none;
  transition: all .3s;
}

.feature-card:hover {
  border-color: #fff;
  box-shadow: 37px 37px 96px rgba(7, 14, 39, .08);
}

.icon {
  margin-bottom: 32px;
}

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

.container-tight {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.text-block {
  color: var(--black);
}

.cta-block {
  text-align: center;
  background-color: #0059f7;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 72px 48px;
  display: flex;
  box-shadow: 1px 1px 3px #000;
}

.button-arrow {
  box-shadow: 1px 1px 3px 0 var(--black);
  color: #fff;
  background-color: #689eff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  max-width: 178px;
  min-height: 64px;
  padding: 14px 24px;
  text-decoration: none;
  display: flex;
}

.button-arrow.button-space {
  background-color: var(--cornflower-blue);
  margin-top: 32px;
}

.subheading {
  color: #a4acc5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 400;
}

.arrow {
  margin-left: 4px;
}

.title-wrap-centre {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-bottom: 92px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-grid {
  grid-column-gap: 82px;
  grid-row-gap: 82px;
  grid-template-rows: auto;
  grid-template-columns: 1.2fr 1fr;
}

.content-grid.centre-content {
  grid-template-columns: 1fr 1.2fr;
  margin-top: 114px;
  margin-bottom: 114px;
}

.paragraph-medium {
  color: var(--black);
  font-size: 20px;
  line-height: 1.5;
}

.content-h3 {
  color: #273464;
  margin-bottom: 14px;
}

.cta-section {
  padding: 32px 3%;
}

.link-block {
  color: var(--black);
  border-radius: 8px;
  align-items: center;
  min-height: 56px;
  margin-right: 10px;
  padding: 10px 14px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.link-block:hover {
  color: #fff;
  background-color: #fff;
}

.link-block.oversea {
  color: var(--black);
}

.link-block.oversea:hover {
  background-color: #fff;
}

.link-block.hong-kong {
  color: var(--black);
}

.link-block.hong-kong:hover {
  background-color: #fff;
}

.light-icon {
  margin-right: 6px;
}

.price-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.price-block {
  background-color: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 48px 55px;
}

.price-block.feature-price {
  background-color: #d7e2fc;
  margin-top: 0;
}

.price-block.p-1 {
  background-color: var(--teal);
}

.price-block.p-2 {
  background-color: var(--cornflower-blue);
}

.price-block.p-3 {
  background-color: var(--royal-blue);
}

.dollar-span {
  color: #4e5a85;
}

.line-break {
  background-color: #e2e7fa;
  height: 2px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.line-break.line-dark {
  background-color: #cbd5fa;
}

.grid-feature-check {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}

.check-wrap {
  align-items: center;
  display: flex;
}

.paragraph {
  margin-bottom: 0;
}

.paragraph.pricing {
  color: #fff;
}

.check {
  margin-right: 14px;
}

.button-price {
  color: #fff;
  background-color: #4e5a85;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  max-width: 178px;
  min-height: 64px;
  margin-top: 32px;
  padding: 14px 24px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.button-price:hover {
  background-color: #0059f7;
}

.button-price.button-blue {
  background-color: #0059f7;
  box-shadow: 1px 1px 3px #000;
}

.cta-block-large {
  background-color: #0059f7;
  border-radius: 24px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 56px;
}

.cta-grid {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.grid-button-wrap {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer {
  background-color: #162044;
  padding: 48px 3%;
}

.footer-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-link {
  color: #ccd2e9;
  text-decoration: none;
}

.text-link-legal {
  color: #ccd2e9;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  transition: all .2s;
}

.text-link-legal:hover {
  color: #fff;
}

.social-link {
  margin-right: 24px;
  padding: 4px;
}

.heading {
  font-family: Lexend Deca, sans-serif;
}

.instagram-block {
  justify-content: flex-end;
  display: flex;
}

.instagram {
  width: 100%;
}

.button-2 {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
  border-radius: 3px;
  width: 100%;
  padding-top: 11px;
  padding-bottom: 11px;
  font-weight: 600;
}

.button-2.button-filled {
  color: #44a9fd;
  background-color: #fff;
}

.pricing-plan-block {
  justify-content: center;
  align-items: stretch;
  padding-top: 40px;
  display: flex;
}

.includes {
  margin-bottom: 50px;
}

.pricing-image {
  justify-content: center;
  margin-bottom: 28px;
  margin-left: -35px;
  margin-right: -35px;
  display: flex;
}

.paragraph-2 {
  color: #fff;
  margin-bottom: 0;
  padding-left: 6px;
  font-weight: 600;
}

.price-text {
  color: #fff;
  text-align: left;
  padding-left: 5px;
  font-size: 67px;
  line-height: 70px;
}

.price {
  margin-bottom: 20px;
}

.plan {
  background-color: #0059f7;
  border-radius: 2px;
  width: 400px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 55px 35px 110px;
  position: relative;
}

.contain {
  text-align: left;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.pricing-type-text {
  color: #fff;
  text-align: left;
  font-size: 12px;
  line-height: 16px;
}

.pricing-action {
  padding-left: 35px;
  padding-right: 35px;
  position: absolute;
  top: auto;
  bottom: 35px;
  left: 0%;
  right: 0%;
}

.popullar {
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.contain-text {
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}

.currency {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  top: -37px;
  right: 4px;
}

.pricing-type-title {
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
}

.p-image {
  width: 100%;
}

.pricing-heading {
  color: #fff;
  text-align: center;
  margin-top: 16px;
}

.about-hero {
  z-index: 0;
  background-image: linear-gradient(to right, #4966f7, #7756fd);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  display: flex;
  position: relative;
}

.about-hero__wrapper {
  width: 70em;
}

.about-hero__heading {
  color: #fff;
  text-align: center;
  letter-spacing: -3px;
  margin-bottom: -.2em;
  font-size: 5em;
  font-style: normal;
  font-weight: 900;
  line-height: .9em;
}

.about-hero__image {
  width: 30em;
  margin-bottom: 0;
  margin-left: 100px;
}

.about-numbers__metric {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 36px;
}

.about-numbers__metric.about-numbers__metric--blue {
  color: #334ac0;
}

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

.about-numbers__wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 21px;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  grid-auto-columns: 1fr;
  margin-bottom: 53px;
  display: grid;
}

.about-numbers {
  z-index: 1;
  background-image: linear-gradient(#fff 73%, #f6f6f6);
  flex-direction: column;
  align-items: center;
  padding: 74px 10vw 97px;
  display: flex;
}

.about-numbers__rating-link {
  color: #2b2a35;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  text-decoration: none;
}

.about-numbers__heading {
  text-align: center;
  margin-bottom: 60px;
}

.about-numbers__glassdoor {
  grid-column-gap: 42px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.about-numbers__metrich {
  color: rgba(43, 42, 53, .5);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.about-numbers__metric-link {
  color: #334ac0;
  text-decoration: none;
}

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

.about-numbers__rating {
  color: #2b2a35;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.about-numbers__rating:hover {
  text-decoration: underline;
}

.about-numbers__stars-wrapper {
  display: flex;
}

.about-intro {
  z-index: 1;
  background-image: linear-gradient(#fff 73%, #f6f6f6);
  flex-direction: column;
  align-items: center;
  padding: 103px 10vw 95px;
  display: flex;
}

.about-intro__wrapper {
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
}

.about-intro__paragraph {
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
}

.about__heading {
  color: #2b2a35;
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  line-height: 1em;
}

.about-jobs {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 74px 10vw 120px;
  display: flex;
}

.about-jobs__position-title {
  color: #2b2a35;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-jobs__benefits {
  margin-bottom: 81px;
}

.about-jobs__positions-wrapper {
  background-color: #fff;
  border: 1px solid #dddfe5;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
  width: 60vw;
  height: 76px;
  padding: 20px 24px 20px 20px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .04), 0 0 1px rgba(0, 0, 0, .06);
}

.about-jobs__positions-wrapper:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .08), 0 0 1px rgba(0, 0, 0, .12);
}

.about-jobs__positions-wrapper.about-jobs__positions-wrapper--space {
  margin-bottom: 20px;
}

.about-jobs__benefit {
  color: #545465;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.about-jobs__mission-heading {
  text-align: center;
  margin-bottom: 45px;
}

.about-jobs__benefits-wrapper {
  grid-column-gap: 86px;
  grid-row-gap: 20px;
  color: #334ac0;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  align-items: center;
  justify-items: start;
  margin-bottom: 0;
  display: grid;
}

.about-jobs__mission-paragraph {
  text-align: center;
}

.about-jobs__positions-heading {
  color: var(--black);
  text-align: center;
  margin-bottom: 22px;
}

.about-jobs__benefits-heading {
  color: var(--black);
  text-align: center;
  margin-bottom: 24px;
}

.about-jobs__positions.about-jobs__positions--86margin {
  width: 100%;
  margin-top: 86px;
}

.about-jobs__positions.about-jobs__positions--46margin {
  margin-top: 46px;
}

.about-jobs__mission {
  margin-bottom: 23px;
}

.about-jobs__position-location {
  color: rgba(43, 42, 53, .5);
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
}

.divider-800 {
  background-color: #dddfe5;
  width: 100%;
  height: 1px;
}

.office-block {
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.about__confetti {
  z-index: 0;
  width: 664px;
  position: absolute;
  top: 0;
}

.number-block {
  margin: 20px 30px;
}

.heading-3, .paragraph-3, .italic-text {
  color: #172426;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.nav__button {
  background-color: var(--royal-blue);
  box-shadow: 1px 1px 3px 0 var(--black);
  color: #fff;
  border-radius: 8px;
  margin-top: 2em;
  padding: .4em 2em;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 2.2em;
  text-decoration: none;
}

@media screen and (min-width: 1280px) {
  .about-hero {
    padding-bottom: 0;
  }

  .about-hero__wrapper {
    width: 50em;
  }

  .about-hero__heading {
    font-size: 7em;
  }

  .about-hero__image {
    width: 35em;
    margin-bottom: 0;
  }

  .about-intro__wrapper {
    max-width: 60em;
  }

  .about__heading {
    font-size: 120px;
    line-height: 120px;
  }

  .about-jobs__benefits {
    max-width: 70vw;
  }

  .about-jobs__positions-wrapper {
    width: 50vw;
  }

  .about-jobs__mission, .divider-800 {
    max-width: 70vw;
  }
}

@media screen and (min-width: 1440px) {
  .about-hero {
    height: 60em;
  }

  .about-hero__wrapper {
    width: 55em;
  }

  .about-hero__heading {
    font-size: 9em;
  }

  .about-hero__image {
    width: 50em;
  }

  .about-jobs__benefits {
    max-width: 60vw;
  }

  .about-jobs__positions-wrapper {
    width: 40vw;
  }

  .about-jobs__mission {
    max-width: 50vw;
  }

  .divider-800 {
    max-width: 60vw;
  }
}

@media screen and (min-width: 1920px) {
  .about-hero {
    height: 70em;
  }

  .about-jobs__benefits {
    max-width: 44vw;
  }

  .about-jobs__positions-wrapper {
    width: 35vw;
  }

  .about-jobs__mission, .divider-800 {
    max-width: 44vw;
  }
}

@media screen and (max-width: 991px) {
  .container-navigation {
    min-height: auto;
    position: relative;
  }

  .brand {
    margin-right: 10px;
    padding: 0;
  }

  .menu-button {
    background-color: var(--royal-blue);
    color: #fff;
    border-radius: 8px;
  }

  .menu-button.w--open {
    background-color: #0059f7;
  }

  .hero-content {
    text-align: center;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .display-heading {
    line-height: 1.05;
  }

  .grid-content {
    align-items: center;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .container-large {
    flex-direction: column;
  }

  .button-grey {
    transition: all .3s;
  }

  .button-grey:hover {
    background-color: #0059f7;
  }

  .content-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .title-wrap {
    display: flex;
  }

  .feature-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .text-block {
    font-size: 12px;
  }

  .content-grid {
    grid-column-gap: 62px;
    grid-row-gap: 62px;
  }

  .link-block {
    background-color: #fff;
    border-radius: 0;
    margin-right: 0;
  }

  .link-block.oversea {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 11px;
  }

  .link-block.hong-kong {
    background-color: #fff;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-block {
    margin-top: 0;
  }

  .pricing-plan-block {
    flex-wrap: wrap;
  }

  .plan {
    width: 45%;
    margin-bottom: 6px;
  }

  .about-hero {
    min-height: 40em;
    position: static;
  }

  .about-hero__wrapper {
    width: auto;
  }

  .about-hero__image {
    margin-bottom: 0;
  }

  .about-numbers__metric {
    font-size: 2.5em;
    line-height: 1em;
  }

  .about-numbers__wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
  }

  .about-numbers, .about-intro {
    padding: 60px 4vw;
  }

  .about__heading {
    font-size: 4em;
  }

  .about-jobs {
    padding: 60px 4vw;
  }

  .about-jobs__benefits {
    margin-bottom: 60px;
  }

  .about-jobs__positions-wrapper {
    width: 100%;
  }

  .about-jobs__benefits-heading {
    font-size: 1.8em;
  }

  .about-jobs__positions.about-jobs__positions--86margin {
    margin-top: 60px;
  }

  .about__confetti {
    width: 30em;
    top: auto;
  }

  .image {
    max-width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .container-navigation {
    position: static;
  }

  .nav-menu {
    height: auto;
    padding: 20px;
  }

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

  .feature-card {
    padding: 32px;
  }

  .feature-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .cta-block {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .content-grid, .content-grid.centre-content {
    grid-template-columns: 1fr;
  }

  .link-block {
    display: block;
  }

  .cta-block-large {
    padding: 42px;
  }

  .cta-grid {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-wrap {
    flex-direction: column;
  }

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

  .social-link {
    margin-left: 14px;
    margin-right: 14px;
  }

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

  .plan {
    width: 90%;
  }

  .about-hero {
    justify-content: center;
    min-height: 30em;
  }

  .about-hero__heading {
    letter-spacing: -1px;
    margin-bottom: -1vh;
    font-size: 10vw;
    line-height: 1em;
  }

  .about-hero__image {
    width: 16em;
    margin-left: 30px;
  }

  .about-numbers__wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 8px;
    grid-template: "."
                   "."
                   / auto auto;
    margin-bottom: 40px;
  }

  .about-numbers {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-numbers__rating-link {
    font-size: 1.1em;
  }

  .about-numbers__heading {
    margin-bottom: 40px;
    font-size: 2.6em;
  }

  .about-numbers__glassdoor {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-intro__paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about__heading {
    font-size: 2.6em;
  }

  .about-jobs {
    align-items: flex-start;
  }

  .about-jobs__position-title {
    font-size: 1.1em;
    line-height: 2em;
  }

  .about-jobs__positions-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    display: flex;
  }

  .about-jobs__benefit {
    font-size: 1.2em;
    line-height: 1.8em;
  }

  .about-jobs__mission-heading {
    font-size: 2.8em;
  }

  .about-jobs__benefits-wrapper {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .about-jobs__mission-paragraph {
    font-size: 1.3em;
    line-height: 1.8em;
  }

  .about-jobs__positions-heading {
    font-size: 1.8em;
  }

  .about-jobs__position-location {
    font-size: 1.1em;
    line-height: 2em;
  }

  .about__confetti {
    width: 23em;
  }
}

@media screen and (max-width: 479px) {
  .display-heading {
    font-size: 48px;
  }

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

  .content-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

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

  .price-block {
    padding: 32px;
  }

  .plan {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .heading-2, .section-title {
    font-size: 48px;
  }

  .about-hero {
    min-height: 30em;
  }

  .about-numbers__wrapper {
    display: block;
  }

  .number-block {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

#w-node-_59e1b11c-59af-292a-2a44-070cd4481416-c7192ea0, #w-node-f60322e9-0dad-a628-4610-9a998f3341b2-c7192ea0, #w-node-_32690463-25da-ec92-a1bd-88ae99597472-c7192ea0 {
  align-self: center;
}

#w-node-c5b30691-27e1-5834-3338-349cb0a30d7d-c7192ea0, #w-node-_12a20ea5-c16b-a58b-16c2-2fd0daa46fb3-c7192ea0, #w-node-_7b88590f-8e92-c540-7467-9eff89f869c9-c7192ea0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59e1b11c-59af-292a-2a44-070cd4481416-6db1c24b, #w-node-f60322e9-0dad-a628-4610-9a998f3341b2-6db1c24b, #w-node-_32690463-25da-ec92-a1bd-88ae99597472-6db1c24b, #w-node-_59e1b11c-59af-292a-2a44-070cd4481416-2cb17f25, #w-node-f60322e9-0dad-a628-4610-9a998f3341b2-2cb17f25, #w-node-_32690463-25da-ec92-a1bd-88ae99597472-2cb17f25 {
  align-self: center;
}

#w-node-_28c11db1-5a40-f423-cd57-9a40d4462960-154625b6, #w-node-_6e511860-b382-2539-7a40-45f4a56c6cb3-154625b6, #w-node-af430ef1-d46e-9295-1151-0eab37576751-154625b6, #w-node-_52559f57-3307-60e0-393e-09100be63571-154625b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dae2a8e5-6809-3af4-97de-89c8e2728a27-154625b6 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_59e1b11c-59af-292a-2a44-070cd4481416-73b5656b, #w-node-f60322e9-0dad-a628-4610-9a998f3341b2-73b5656b, #w-node-_32690463-25da-ec92-a1bd-88ae99597472-73b5656b {
  align-self: center;
}

#w-node-c5b30691-27e1-5834-3338-349cb0a30d7d-73b5656b, #w-node-_12a20ea5-c16b-a58b-16c2-2fd0daa46fb3-73b5656b, #w-node-_7b88590f-8e92-c540-7467-9eff89f869c9-73b5656b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cf0e8e4e-6d97-d4ac-9530-f1c8b944c73e-b944c73b {
  align-self: center;
}

#w-node-_28c11db1-5a40-f423-cd57-9a40d4462960-aac576d2, #w-node-_6e511860-b382-2539-7a40-45f4a56c6cb3-aac576d2, #w-node-af430ef1-d46e-9295-1151-0eab37576751-aac576d2, #w-node-_52559f57-3307-60e0-393e-09100be63571-aac576d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-dae2a8e5-6809-3af4-97de-89c8e2728a27-aac576d2 {
  grid-area: 2 / 4 / 3 / 5;
}

@media screen and (max-width: 767px) {
  #w-node-f60322e9-0dad-a628-4610-9a998f3341b0-c7192ea0, #w-node-f60322e9-0dad-a628-4610-9a998f3341b0-6db1c24b, #w-node-f60322e9-0dad-a628-4610-9a998f3341b0-2cb17f25 {
    order: -9999;
  }

  #w-node-dae2a8e5-6809-3af4-97de-89c8e2728a27-154625b6 {
    grid-area: Area;
  }

  #w-node-f60322e9-0dad-a628-4610-9a998f3341b0-73b5656b {
    order: -9999;
  }

  #w-node-dae2a8e5-6809-3af4-97de-89c8e2728a27-aac576d2 {
    grid-area: Area;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_80e227b6-c037-b080-a20c-a6239fe1e6fc-729c422f, #w-node-_80e227b6-c037-b080-a20c-a6239fe1e700-729c422f, #w-node-_80e227b6-c037-b080-a20c-a6239fe1e704-729c422f, #w-node-_80e227b6-c037-b080-a20c-a6239fe1e708-729c422f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


