:root {
  --primary-blue: #4353ff;
  --mellow: #ffbe3b;
  --black: black;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.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 {
  color: #333;
  background-color: #0000;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  line-height: 1.75em;
}

h1, h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.25em;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25em;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25em;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25em;
}

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

.style-guide-page-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.style-guide-element-description {
  color: #5e5e5e;
  margin-top: 0;
  margin-bottom: 0;
  font-style: italic;
}

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

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

.style-guide-help-image {
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.style-guide-swatches-wrap {
  justify-content: space-between;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
}

.style-guide-swatch-wrap {
  flex: 1;
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px;
}

.style-guide-swatch {
  height: 60px;
  margin-bottom: 5px;
}

.style-guide-swatch.swatch---primary-blue {
  background-color: var(--primary-blue);
}

.style-guide-swatch.swatch---secondary-blue {
  background-color: #949dff;
}

.style-guide-swatch.swatch---accent {
  background-color: #a778ff;
}

.style-guide-swatch.mellowbg {
  background-color: var(--mellow);
}

.style-guide-swatch.blackbg {
  background-color: var(--black);
}

.style-guide-section-wrap {
  align-items: flex-start;
  margin-bottom: 80px;
  display: flex;
  position: relative;
}

.style-guide-help-wrap {
  background-color: #f5f5f5;
  border-radius: 5px;
  width: 300px;
  margin-left: 40px;
  padding: 20px;
  position: sticky;
  top: 40px;
}

.style-guide-elements-wrap {
  flex-direction: column;
  flex: 1;
}

.style-guide-help-heading {
  margin-top: 0;
  margin-bottom: 10px;
}

.style-guide-title {
  margin-bottom: 40px;
  font-size: 48px;
  line-height: 54px;
}

.style-guide-individual-element {
  margin-bottom: 20px;
}

.button {
  background-color: var(--mellow);
  text-align: center;
  text-transform: uppercase;
  border-radius: 29px;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  font-weight: 500;
  display: inline-block;
}

.button.button-secondary {
  color: #3898eb;
  background-color: #fff;
  border: 1px solid #3898eb;
}

.button.button-large {
  padding: 12px 20px;
  font-size: 18px;
}

.button.button-small {
  padding: 6px 12px;
  font-size: 12px;
}

.button.blacktext {
  color: var(--black);
}

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

.aset_height {
  background-image: url('../images/flat-lay-top-view-office-desk-workspace-with-lapt-2022-03-29-08-49-26-utc_2.webp');
  background-size: cover;
  width: auto;
  max-width: 100%;
  height: 750px;
}

.section---main-heading {
  width: 100%;
}

.section {
  width: 100%;
  padding: 80px 20px;
}

.section.morepaddingbottom.centercontents {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 140px;
  display: flex;
}

.section.morepaddingbottom.centercontents.post-bottom {
  padding-bottom: 20px;
}

.section.hasbackground {
  background-image: url('../images/section-form-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 916px;
}

.section.hasbackground.center-text.white-text {
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section.hasbackground.center-text.white-text.postpage {
  max-height: none;
}

.section.footersection {
  color: #fff;
  text-align: center;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.section.post-bottom {
  padding-bottom: 0;
}

.container550 {
  text-align: center;
  max-width: 550px;
}

.grid-zavidgrid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  position: relative;
}

.section-nopadding {
  width: 100%;
  padding: 0;
}

.section-nopadding.splitbg {
  background-image: linear-gradient(270deg, #000 50%, #f5f5f5 40%);
}

.small-yelllowish-caps {
  color: #ffbe3b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
}

.small-yelllowish-caps.postpage {
  padding-left: 2px;
}

.mellow-text {
  color: #ffbe3b;
}

.mellow-text.bolder {
  font-weight: 700;
}

.relative-zavid {
  width: 100%;
  max-width: 648px;
  margin-top: -40px;
  position: relative;
}

.fullservicelogo {
  width: 100%;
  max-width: 140px;
  margin-top: -64px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.flex-center-gapbetween {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  display: flex;
}

._33underhere {
  margin-bottom: 33px;
}

._33underhere.myubestufrienduuu {
  font-size: 25px;
  font-weight: 700;
}

.section---coffee-not-heading {
  width: 100%;
  position: relative;
}

.mellow-div3parts {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--mellow);
  border-radius: 20px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  display: flex;
  position: relative;
}

.container1300 {
  max-width: 1300px;
  margin-top: -150px;
  padding-left: 20px;
  padding-right: 20px;
}

.orange-divthing {
  background-color: #ffa725;
  width: 100%;
  max-width: 3px;
}

.div-brandingsince {
  color: #8b8b8b;
  align-items: center;
  max-width: 1100px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.small-grey-heading {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.solid-greylineacross {
  background-color: #8b8b8b;
  width: 100%;
  max-width: 35%;
  height: 3px;
  margin-left: 20px;
}

.allcapsheading {
  text-transform: uppercase;
  font-weight: 700;
}

.allcapsheading._15xbottom7xtop {
  margin-top: 74px;
  margin-bottom: 154px;
}

.container1000 {
  text-align: center;
  max-width: 1000px;
}

.container1000.postpage {
  padding-bottom: 0;
  position: relative;
}

.wasintern-card {
  border: 2px solid var(--mellow);
  flex-direction: row-reverse;
  display: flex;
}

.wasintern-card._13xtopm {
  margin-top: 132px;
}

.wording-mw-377 {
  flex-direction: column-reverse;
  max-width: 337px;
  margin: auto;
  display: flex;
}

.w500 {
  width: 100%;
  max-width: 500px;
  margin-top: -60px;
  position: relative;
}

.wasintern-titlediv {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  background-color: #000;
  flex-direction: row;
  width: 100%;
  max-width: 349px;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.interntitle_style {
  color: #fff;
  margin-bottom: 0;
  font-family: proxima-nova, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

.divmw500s {
  color: #fff;
  width: 100%;
  max-width: 420px;
  padding: 80px 20px 80px 60px;
}

.title-heading {
  color: #969696;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
}

.yellowlunalogo {
  object-fit: contain;
  flex: none;
  width: 100%;
  height: 100%;
}

.containssymbol {
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 15px;
}

.zavid {
  object-position: 50% 100%;
  width: 100%;
  max-width: 550px;
  height: 100%;
}

.main-headingimg {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/page_header.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 70vh;
  min-height: 700px;
  display: flex;
  position: relative;
}

.main-headingimg.postpage {
  height: 30vh;
  min-height: 400px;
}

._77under {
  margin-bottom: 77px;
}

.zavidsfontmw {
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-ddiv {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: row;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 154px 5% auto auto;
}

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

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

.center-text.mellow-div3parts {
  justify-content: center;
}

.cpg_symbols {
  max-width: 150px;
  max-height: 150px;
  margin-bottom: 35px;
}

.mwlessw {
  max-width: 266px;
  margin-left: auto;
  margin-right: auto;
}

._35x35 {
  flex: none;
  align-self: flex-start;
  width: 35px;
  height: 35px;
}

.designers_name {
  color: #8b8b8b;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

._30top {
  margin-top: 30px;
}

._30top._30bottm {
  margin-bottom: 30px;
}

._30top._30bottm.no-top {
  margin-top: 0;
}

._0bottom {
  margin-bottom: 0;
}

._0bottom.position-info {
  text-align: left;
  margin-bottom: 13px;
}

.lc_mw {
  width: 100%;
  max-width: 196px;
}

.footertextmw {
  color: #aaabad;
  max-width: 630px;
  margin-top: 28px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  line-height: 1.25em;
}

.wasintern-heading {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.wasintern-titlediv-copy {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  background-color: #000;
  flex-direction: row;
  width: 100%;
  max-width: 349px;
  padding: 20px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.wasintern_currentoccupation {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

._2icons {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.perkheadings {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.container630 {
  max-width: 630px;
}

.adobeicons {
  flex: none;
}

.html-embed {
  width: 100%;
  max-width: 600px;
}

.theformdiv {
  justify-content: center;
  display: flex;
}

.small-yelllowish-caps-desktop {
  color: #ffbe3b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
}

.middle-align-mainheader {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.logo {
  align-items: center;
  margin-top: 30px;
  margin-left: 30px;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.link-block {
  width: 200px;
  margin-right: 20px;
}

.navi_heading {
  color: #fff;
  text-transform: none;
  margin-bottom: 0;
  font-family: chaparral-pro, sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1em;
}

.logo-fill {
  width: 100%;
  height: 100%;
}

._35under {
  margin-bottom: 35px;
}

.signupbelow {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.15em;
}

.fill-container {
  width: 100%;
  height: 100%;
}

.fill-div {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: none;
}

@media screen and (max-width: 991px) {
  .aset_height {
    background-position: 50%;
    background-size: auto;
    height: 500px;
  }

  .section {
    padding: 5vw;
  }

  .section.morepaddingbottom.centercontents {
    padding: 120px 5vw 140px;
  }

  .section.footersection {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .relative-zavid {
    flex-direction: column-reverse;
    margin-top: -80px;
    padding: 5vw;
    display: flex;
  }

  .container1300 {
    max-width: none;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .container1000 {
    max-width: none;
  }

  .wording-mw-377 {
    padding: 5vw;
  }

  .interntitle_style {
    margin-bottom: 0;
  }

  .divmw500s {
    padding: 5vw;
  }

  .title-heading {
    font-size: 15px;
  }

  .zavid {
    object-position: 50% 100%;
  }

  .main-headingimg {
    background-image: linear-gradient(#00000080, #00000080), url('../images/page_header.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    height: 50vw;
    max-height: none;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  ._77under {
    margin-bottom: 40px;
  }

  .zavidsfontmw {
    font-size: 27px;
  }

  .title-ddiv {
    padding-top: 5vw;
    position: static;
  }

  .center-text.mellow-div3parts {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 5vw;
  }

  .mwlessw {
    max-width: none;
  }

  .paddingaround {
    padding: 20px;
  }

  .wasintern-titlediv-copy {
    flex-direction: column;
  }

  .logo {
    justify-content: center;
    width: 50%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    inset: 0% 0% auto;
  }

  .link-block {
    width: 160px;
  }

  .navi_heading {
    font-size: 22px;
  }

  .signupbelow {
    font-size: 55px;
  }

  .fill-container {
    object-fit: cover;
  }

  .fill-container.notonmobile {
    object-fit: none;
  }
}

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

  h2 {
    font-size: 35px;
  }

  .aset_height {
    background-size: auto;
  }

  .section.morepaddingbottom.centercontents {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hasbackground.center-text.white-text {
    flex-direction: column;
  }

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

  .section-nopadding.splitbg {
    background-image: none;
  }

  .relative-zavid {
    background-image: linear-gradient(to top, #f5f5f5 90%, #fff 10%);
    flex-direction: row-reverse;
    max-width: none;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .fullservicelogo {
    align-items: flex-end;
    margin-top: 0;
    margin-bottom: 10px;
    position: static;
  }

  ._33underhere.myubestufrienduuu {
    font-size: 18px;
  }

  .orange-divthing {
    max-width: none;
    height: 2px;
  }

  .allcapsheading._15xbottom7xtop {
    margin-top: 0;
    margin-bottom: 10vw;
  }

  .wasintern-card {
    flex-direction: column-reverse;
  }

  .wasintern-card._13xtopm {
    margin-top: 10vw;
  }

  .wording-mw-377 {
    max-width: none;
    margin: 0;
  }

  .w500 {
    max-width: none;
    margin-top: -5vw;
  }

  .divmw500s {
    max-width: none;
  }

  .divmw500s.blackbgmobile {
    background-color: var(--black);
  }

  .title-heading {
    font-size: 12px;
  }

  .zavid {
    object-position: 50% 100%;
  }

  .main-headingimg {
    min-height: 650px;
  }

  .zavidsfontmw {
    font-size: 17px;
  }

  .title-ddiv {
    flex: 1;
    justify-content: center;
    padding-top: 0;
  }

  .center-text.mellow-div3parts {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .cpg_symbols {
    width: 100%;
    max-width: 100px;
    max-height: none;
    margin-bottom: 0;
  }

  .mwlessw {
    max-width: none;
    margin-bottom: 0;
  }

  .paddingaround {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    align-items: center;
    padding: 0;
    display: flex;
  }

  .div-ad-block {
    flex: 1;
    align-self: flex-end;
  }

  .testimonial_person {
    max-width: 420px;
  }

  .link-block {
    width: 150px;
  }

  .navi_heading {
    font-size: 15px;
  }

  .text-div {
    text-align: left;
  }
}

@media screen and (max-width: 479px) {
  body {
    background-color: #0000;
    font-size: 14px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .aset_height {
    background-image: linear-gradient(#00000040, #00000040), url('../images/flat-lay-top-view-office-desk-workspace-with-lapt-2022-03-29-08-49-26-utc_2.webp');
    background-position: 0 0, 55% 60%;
    background-size: auto, auto;
    height: 350px;
    overflow: visible;
  }

  .aset_height.containmobile {
    object-fit: cover;
    object-position: 54% 50%;
  }

  .section {
    align-items: center;
    padding-top: 10vw;
    padding-bottom: 10vw;
    display: flex;
  }

  .section.morepaddingbottom.centercontents.post-bottom {
    padding-bottom: 20px;
  }

  .section.hasbackground.center-text.white-text {
    flex-direction: column;
  }

  .section.hasbackground.center-text.white-text.postpage {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .section.footersection {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

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

  .small-yelllowish-caps {
    font-size: 15px;
  }

  .relative-zavid {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 5vw;
  }

  .flex-center-gapbetween {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-wrap: wrap;
  }

  ._33underhere.myubestufrienduuu {
    margin-bottom: 20px;
  }

  .small-grey-heading {
    color: #fff;
    text-indent: 2px;
    font-size: 13px;
  }

  .solid-greylineacross {
    background-color: #fff;
  }

  .allcapsheading._15xbottom7xtop {
    margin-top: 5vw;
  }

  .wasintern-titlediv {
    z-index: 2;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
    text-align: center;
    background-color: #fff;
    flex-direction: column;
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    position: relative;
  }

  .interntitle_style {
    color: var(--black);
    font-size: 15px;
  }

  .divmw500s.blackbgmobile.centermobile {
    text-align: center;
  }

  .divmw500s.blackbgmobile.centermobile.addpaddingmobile {
    padding: 7vw;
  }

  .containssymbol {
    align-self: flex-start;
  }

  .zavid {
    max-width: 250px;
  }

  .main-headingimg {
    height: auto;
    min-height: 450px;
  }

  .main-headingimg.postpage {
    height: 20vh;
    min-height: 200px;
  }

  .zavidsfontmw {
    font-size: 17px;
  }

  .title-ddiv {
    align-self: center;
    width: 90%;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    transform: translate(-15px);
  }

  .center-text.mellow-div3parts {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .cpg_symbols {
    margin-bottom: 15px;
  }

  ._35x35 {
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .designers_name {
    font-size: 15px;
  }

  ._30top._30bottm {
    margin-top: 5vw;
    margin-bottom: 5vw;
  }

  .footertextmw {
    font-size: 12px;
  }

  .paddingaround {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex-direction: column;
  }

  .wasintern-heading {
    flex-wrap: wrap;
  }

  .wasintern-titlediv-copy {
    flex-direction: column;
    max-width: none;
    position: static;
  }

  ._2icons {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: center;
  }

  .div-ad-block {
    flex: 0 auto;
    align-self: center;
  }

  .testimonial_person {
    z-index: 1;
    width: 100%;
    max-width: 250px;
    margin-bottom: -1px;
    position: relative;
  }

  .testimonial_person.raime {
    max-width: 215px;
    position: relative;
    left: -2%;
  }

  .testimonial_person.nudge_left {
    margin-left: -20px;
  }

  .heading {
    font-size: 20px;
  }

  .heading-2 {
    font-size: 25px;
  }

  .heading-3 {
    font-size: 33px;
  }

  .adobeicons {
    width: 60px;
  }

  .theformdiv {
    padding-bottom: 60px;
  }

  .small-yelllowish-caps-desktop {
    color: var(--black);
    font-size: 15px;
  }

  .logo {
    width: auto;
  }

  .link-block {
    width: 90px;
    margin-right: 7px;
  }

  .logo-fill {
    width: 100px;
  }

  .signupbelow {
    font-size: 40px;
  }

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

  .fill-div {
    object-fit: cover;
  }
}

#w-node-_3c0e18e3-210b-0392-cc8f-bf40733be47b-55be45f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end;
}

#w-node-cf55d08d-5eea-2605-c747-96fbfdafa12c-55be45f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d72ab9d6-ed4e-7c5d-2bbe-fe675dd49016-55be45f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


