:root {
  --medium-aquamarine: #31c9a1;
  --midnight-blue: #0a0d36;
}

.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;
}

.home-hero {
  background-image: url('../images/identify-pulse-bg.png');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: static;
}

.home-hero-warapper {
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100%;
  padding-left: 10vw;
  display: flex;
}

.home-hero-content {
  width: 35%;
}

.home-hero-img {
  width: 450px;
  height: 400px;
  position: static;
}

.h1 {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  line-height: 120%;
}

.h1.cta {
  text-align: center;
  width: 50%;
  margin-bottom: 30px;
  font-size: 32px;
  line-height: 130%;
}

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

.large-desc {
  color: #fff;
  margin-top: 20px;
  font-family: Varela Round, sans-serif;
  font-size: 18px;
  line-height: 150%;
}

.large-desc.about {
  text-align: left;
  width: 80%;
}

.large-desc.about.left {
  text-align: left;
}

.large-desc.about.center {
  width: 80%;
}

.large-desc.center {
  text-align: center;
  width: 60%;
}

.large-desc.center.contact {
  width: 53%;
  margin-top: 0;
}

.large-desc.about-us {
  text-align: center;
}

.large-desc.about-us.quote {
  text-align: left;
  font-size: 30px;
  font-style: italic;
}

.hero-buttons-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content) minmax(min-content, max-content);
  grid-auto-columns: 1fr;
  justify-content: start;
  place-items: center start;
  margin-top: 40px;
  display: grid;
}

.primary-button {
  background-color: var(--medium-aquamarine);
  letter-spacing: .05em;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
}

.primary-button:hover {
  background-color: #31c9a180;
}

.primary-button.menu {
  margin-left: 0;
}

.primary-button.submit {
  width: 100%;
  height: 50px;
}

.secondary-button {
  color: #31c9a1;
  background-color: #0000;
  border: 3px solid #31c9a1;
  border-radius: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  transition: all .25s;
}

.secondary-button:hover {
  color: #3e3e3e;
  background-color: #fff;
  border-color: #fff;
}

.hero-img-back {
  z-index: 1;
  width: 450px;
  position: absolute;
}

.heading-tag {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #3beebf, #31c9a1);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.hero-img-front {
  z-index: 2;
  width: 800px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.brand-logo-url {
  width: 210px;
  margin-right: 40px;
}

.brand-logo-url.footer-nav {
  margin-bottom: 20px;
  margin-right: 0;
}

.nav-bar-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 80vw;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  color: #fff;
  letter-spacing: .05em;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  transition: all .25s;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--medium-aquamarine);
}

.nav-menu {
  align-items: center;
  margin-right: auto;
  display: flex;
}

.home-how-it-works {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  margin-bottom: 220px;
  display: flex;
}

.home-how-it-works-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  width: 80vw;
  display: grid;
}

.home-how-it-works-left {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 45vw;
  display: flex;
}

.home-about-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 30vw;
  display: flex;
  position: static;
  bottom: 40px;
}

.h2 {
  color: #fff;
  letter-spacing: .05em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
}

.h2.center {
  text-align: center;
  text-transform: uppercase;
  width: 80%;
  line-height: 120%;
}

.about-button-wrapper {
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content) minmax(min-content, max-content);
  grid-auto-columns: 1fr;
  justify-content: start;
  place-items: center start;
  margin-top: 40px;
  display: block;
}

.how-it-works-wrapper-left {
  margin-bottom: 0;
  margin-right: 40px;
  position: static;
  top: 60px;
}

.how-it-works-card-header {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.how-it-works-card-header.discover {
  width: 100%;
  margin-bottom: 80px;
}

.h3 {
  color: #fff;
  letter-spacing: .05em;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.h3.about {
  margin-top: 0;
}

.h3.companies {
  text-transform: uppercase;
  margin-top: 0;
}

.medium-text {
  color: #fff;
  width: 80%;
  font-family: Varela Round, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.medium-text.about {
  width: 100%;
}

.medium-text.center {
  text-align: left;
  width: 100%;
}

.how-it-works-icon {
  width: 60px;
}

.page-wrapper {
  max-width: 100vw;
  /* overflow: hidden; */
}

.home-about {
  background-color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 120vh;
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.home-about-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 80vw;
  display: flex;
}

.about-wrapper-left {
  width: 50%;
}

.about-wrapper-right {
  grid-column-gap: 16px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  padding-left: 60px;
  display: grid;
}

.home-about-card {
  align-items: center;
  display: flex;
}

.home-about-card-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 30px;
  display: flex;
}

.home-about-icon {
  display: block;
}

.about-bg-circles {
  opacity: .2;
  position: absolute;
  inset: auto auto 0% 10%;
}

.home-companies {
  background-color: var(--midnight-blue);
  width: 100vw;
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-companies-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.companies-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content);
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.company-logo {
  height: 50px;
  margin: auto;
}

.company-logo.dell, .company-logo.ibm, .company-logo.avaya {
  height: 40px;
}

.home-why-identify-pulse {
  background-color: var(--midnight-blue);
  background-image: url('../images/identify-pulse-why-bg.png');
  background-repeat: no-repeat;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 0;
  display: flex;
}

.home-why-identify-pulse-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 80vw;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.lottie-pulse {
  width: 60px;
  margin-bottom: 30px;
}

.home-why-identify-pulse-grid {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.why-identify-pulse-card {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-cta-banner {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-top: 180px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.home-cta-banner-wrapper {
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 40px 60px 100px;
  display: flex;
}

.cta-button {
  background-color: var(--medium-aquamarine);
  color: #fff;
  letter-spacing: .05em;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
}

.cta-button:hover {
  background-color: #ffffff80;
}

.cta-button.menu {
  margin-left: 0;
}

.footer {
  background-color: #030624;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.footer-grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: static;
}

.footer-card {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-card.mid {
  align-items: center;
}

.footer-card.right {
  justify-content: flex-end;
  align-items: flex-end;
}

.footer-contact-details {
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-left: 10px;
  display: flex;
}

.footer-text {
  color: #fff;
  font-family: Montserrat, sans-serif;
}

.footer-icon {
  width: 20px;
  margin-right: 10px;
}

.footer-text-url {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  transition: all .25s;
}

.footer-text-url:hover {
  color: var(--medium-aquamarine);
}

.footer-url {
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding-left: 0;
  text-decoration: none;
  display: flex;
}

.test {
  background-image: linear-gradient(#000000b3, #000000b3);
  width: 100vw;
  height: 100vh;
}

.div-block {
  background-color: #030410;
  width: 100vw;
  height: 100vh;
}

.h1-big {
  font-size: 100px;
  line-height: 90%;
}

.about-hero-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  height: 100px;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.about-hero-content {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.about-hero {
  background-image: linear-gradient(#0e175e, #1522b1);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 80vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.lottie-scroll-down {
  width: 40px;
  position: absolute;
  inset: auto auto 5%;
}

.about-us-icon {
  display: block;
}

.l-g-2-col {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-content: stretch;
}

.about-process {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  max-width: 1248px;
  margin-left: 0;
  margin-right: 0;
  padding: 100px 10px 100px 0;
  display: flex;
  position: static;
}

.about-process-h3 {
  color: #0e0f11;
}

.about-process-h3.m {
  color: #fff;
  margin-top: .75rem;
  margin-bottom: .5rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.about-process-h3.l {
  color: #fff;
  margin-top: 0;
  margin-bottom: .75rem;
  font-family: Montserrat, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
}

.process-desc {
  color: #1e1e20;
  margin-top: 0;
}

.process-desc.m {
  color: #fff;
  text-align: left;
  width: 90%;
  font-family: Varela Round, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.process-desc.l {
  color: #fff;
  text-align: left;
  width: 60%;
  margin-top: 20px;
  font-family: Varela Round, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.about-process-content {
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 300;
  display: flex;
}

.feature-icon-wrapper {
  color: #fd5a1e;
  background-color: #0000;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  display: flex;
}

.section-title {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.material-icons.feature-icon {
  color: var(--medium-aquamarine);
  font-size: 40px;
  font-weight: 900;
}

.tagline {
  color: var(--medium-aquamarine);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25;
}

.feature-block {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  display: flex;
}

.section {
  color: #fff;
}

.home-why-identify-pulse-copy {
  background-color: #090f61;
  background-image: linear-gradient(#1522b1, #0e175e);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 0;
  display: flex;
}

.about-process-img {
  max-width: 40%;
}

.about-intro {
  background-color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.about-skill {
  justify-content: center;
  align-items: center;
  width: 80vw;
  display: flex;
}

.about-skill-wrapper {
  flex-direction: column;
  align-items: center;
  width: 80vw;
  margin-bottom: 100px;
  display: flex;
}

.about-skill-h2 {
  color: #0e0f11;
}

.about-skill-h2.m {
  color: #fff;
  margin-top: .75rem;
  margin-bottom: .5rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.about-skill-h2.l {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: .75rem;
  font-family: Montserrat, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.25;
}

.about-skill-div {
  background-color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.about-cta-banner {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-top: 60px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.contact-main {
  background-color: var(--midnight-blue);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.contact-form-wrapper {
  width: 80vw;
}

.contact-h2 {
  color: var(--medium-aquamarine);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  line-height: 120%;
}

.form-label {
  color: #fff;
  margin-bottom: 5px;
  padding-left: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.form-input {
  background-color: #030624;
  border: 1px #000;
  border-radius: 10px;
  height: 45px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.form-input:focus {
  color: var(--medium-aquamarine);
}

.form-input::placeholder {
  color: #ffffff3b;
}

.form-input.message {
  height: 160px;
  padding-top: 12px;
}

.form-input-wrapper {
  width: 48%;
}

.form-input-wrapper._100 {
  width: 100%;
}

.form-row {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.form-rows-wrapper {
  border-bottom: 2px solid #ffffff30;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 40px;
}

.form-rows-wrapper.last {
  border-bottom-style: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.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;
}

.paragraph {
  color: #fff;
  font-size: 15px;
}

.bold-text {
  text-align: center;
  font-size: 19px;
}

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

.text-block-2 {
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

.heading {
  color: #fff;
  text-align: center;
}

.paragraph-2 {
  color: #fff;
  line-height: 22px;
}

.bold-text-2 {
  color: #fff;
}

.heading-2 {
  margin-top: 20px;
}

.bold-text-3 {
  color: #fff;
}

.heading-3 {
  color: #fff;
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .home-hero {
    height: auto;
  }

  .home-hero-warapper {
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    padding-top: 100px;
    padding-left: 0;
  }

  .home-hero-content {
    flex-direction: column;
    align-items: center;
    width: 70%;
    display: flex;
  }

  .home-hero-img {
    width: 90vw;
    height: auto;
  }

  .h1 {
    text-align: center;
  }

  .h1.cta {
    width: 70%;
  }

  .large-desc, .large-desc.about, .large-desc.about.left {
    text-align: center;
  }

  .large-desc.about.center {
    width: 90%;
    font-size: 16px;
  }

  .large-desc.about-us.quote {
    text-align: center;
    margin-top: 0;
  }

  .primary-button.menu {
    display: none;
  }

  .hero-img-front {
    position: relative;
  }

  .nav-bar-wrapper {
    justify-content: space-between;
    width: 90vw;
  }

  .nav {
    position: fixed;
  }

  .nav-link {
    padding-left: 5vw;
  }

  .nav-menu {
    background-color: var(--midnight-blue);
  }

  .home-how-it-works {
    flex-direction: row;
    width: 90vw;
    margin-bottom: 60px;
  }

  .home-how-it-works-wrapper {
    flex-direction: column;
    width: 90vw;
    display: flex;
  }

  .home-how-it-works-left {
    width: 100%;
    margin-top: 60px;
  }

  .home-about-right {
    order: -1;
    align-items: center;
    width: 100%;
  }

  .h2 {
    text-align: center;
    font-size: 28px;
    line-height: 150%;
  }

  .h2.center {
    width: 90%;
    font-size: 28px;
  }

  .how-it-works-wrapper-left {
    margin-right: 0;
  }

  .how-it-works-card-header, .how-it-works-card-header.discover {
    align-items: center;
  }

  .medium-text, .medium-text.about, .medium-text.center {
    text-align: center;
  }

  .home-about {
    height: auto;
    padding-top: 60px;
  }

  .home-about-wrapper {
    flex-direction: column;
    width: 90vw;
  }

  .about-wrapper-left {
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .about-wrapper-right {
    grid-row-gap: 40px;
    width: 70%;
    margin-top: 60px;
    padding-left: 0;
  }

  .home-about-card {
    flex-direction: column;
  }

  .home-about-card-content-wrapper {
    align-items: center;
    margin-top: 20px;
    padding-left: 0;
  }

  .company-logo {
    height: 40px;
  }

  .home-why-identify-pulse {
    background-image: url('../images/identify-pulse-why-bg.png');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: auto;
    width: 100vw;
    padding-top: 60px;
  }

  .home-why-identify-pulse-wrapper {
    align-items: center;
    width: 90vw;
  }

  .home-why-identify-pulse-grid {
    flex-direction: column;
    width: 60%;
    display: flex;
  }

  .why-identify-pulse-card {
    align-items: center;
    margin-bottom: 60px;
  }

  .home-cta-banner {
    margin-top: 0;
  }

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

  .about-hero-wrapper {
    align-items: center;
    padding-top: 60px;
    padding-bottom: 0;
  }

  .l-g-2-col {
    flex-direction: column;
    display: flex;
  }

  .about-process {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-process-h3.m {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
  }

  .process-desc.m {
    text-align: center;
    width: 70%;
  }

  .process-desc.l {
    text-align: center;
  }

  .about-process-content {
    width: 80%;
  }

  .section-title {
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
  }

  .feature-block {
    align-items: center;
  }

  .section.s-p-y-32 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-process-img {
    order: 1;
    max-width: 70%;
    margin-top: 40px;
  }

  .about-intro {
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-skill, .about-skill-wrapper {
    width: 90vw;
  }

  .about-skill-h2.m {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
  }

  .contact-form-wrapper {
    width: 80vw;
  }

  .nav-lottie {
    width: 40px;
  }

  .menu-button {
    padding: 10px;
  }

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

@media screen and (max-width: 767px) {
  .home-hero-content {
    width: 90%;
  }

  .h1 {
    font-size: 36px;
  }

  .h1.cta {
    width: 80%;
    font-size: 26px;
  }

  .large-desc.about.center {
    width: 100%;
  }

  .large-desc.center.contact {
    width: 75%;
  }

  .home-how-it-works-left {
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .h2.center {
    width: 100%;
  }

  .how-it-works-wrapper-left {
    margin-bottom: 60px;
  }

  .about-wrapper-right {
    grid-row-gap: 60px;
    width: 70%;
  }

  .home-about-card {
    margin-bottom: 0;
  }

  .companies-grid {
    grid-template-rows: auto auto;
    grid-template-columns: minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content);
  }

  .home-why-identify-pulse-grid {
    width: 100%;
  }

  .home-cta-banner-wrapper {
    width: 90vw;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .footer-card, .footer-card.right {
    align-items: center;
  }

  .l-g-2-col {
    grid-template-columns: 1fr;
    align-content: stretch;
    place-items: stretch stretch;
  }

  .about-process {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-process-h3.l {
    margin-bottom: 8px;
  }

  .section-title {
    width: 100%;
  }

  .about-skill-wrapper {
    margin-bottom: 0;
  }

  .about-skill-h2.l {
    margin-bottom: 8px;
  }

  .about-skill-div {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-cta-banner {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-form-wrapper {
    width: 90vw;
  }
}

@media screen and (max-width: 479px) {
  .home-hero-warapper {
    padding-top: 60px;
  }

  .h1 {
    margin-bottom: 0;
    font-size: 21px;
  }

  .h1.cta {
    width: 90%;
    font-size: 21px;
  }

  .h1.about {
    font-size: 24px;
  }

  .large-desc {
    width: 100%;
    font-size: 16px;
  }

  .large-desc.about {
    width: 100%;
  }

  .large-desc.about.left {
    margin-top: 20px;
  }

  .large-desc.about.center {
    font-size: 16px;
  }

  .large-desc.center.contact {
    width: 85%;
    margin-top: 20px;
  }

  .large-desc.about-us.quote {
    font-size: 21px;
    line-height: 140%;
  }

  .hero-buttons-wrapper {
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .primary-button {
    text-align: center;
    width: 100%;
  }

  .primary-button.hero {
    margin-bottom: 15px;
  }

  .secondary-button {
    text-align: center;
    width: 100%;
  }

  .heading-tag {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero-img-front {
    width: auto;
    margin-top: 60px;
    bottom: auto;
  }

  .nav-bar-wrapper {
    width: 95vw;
  }

  .nav-link {
    padding-left: 7vw;
  }

  .nav-link.w--current {
    margin-right: 0;
  }

  .nav-menu {
    border-bottom: 2px solid #070925;
    justify-content: flex-start;
    box-shadow: 0 6px 20px #05071e;
  }

  .home-how-it-works {
    margin-bottom: 100px;
  }

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

  .h2.center {
    font-size: 21px;
    line-height: 140%;
  }

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

  .h3.about, .h3.companies {
    text-align: center;
  }

  .home-about-wrapper {
    width: 85vw;
  }

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

  .home-companies-wrapper {
    width: 90vw;
  }

  .companies-grid {
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: minmax(min-content, max-content) minmax(min-content, max-content);
  }

  .company-logo.dell {
    height: 30px;
  }

  .company-logo.ibm {
    height: 35px;
  }

  .company-logo.avaya {
    display: none;
  }

  .home-cta-banner-wrapper {
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }

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

  .h1-big {
    font-size: 62px;
    line-height: 120%;
  }

  .about-hero-wrapper {
    padding-bottom: 60px;
  }

  .l-g-2-col {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-process {
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
  }

  .about-process-h3.m {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .about-process-h3.l {
    font-size: 1.6rem;
  }

  .process-desc.m {
    width: 100%;
    margin-bottom: 0;
    font-size: 16px;
  }

  .process-desc.l {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .about-process-content {
    width: 90%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .feature-icon-wrapper {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }

  .tagline {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 20px;
  }

  .feature-block {
    padding-left: 0;
    padding-right: 0;
  }

  .about-process-img {
    max-width: 90%;
    margin-top: 0;
  }

  .about-skill-h2.m {
    margin-top: auto;
    font-size: 1.1rem;
  }

  .about-skill-h2.l {
    font-size: 1.6rem;
  }

  .contact-main {
    padding-top: 80px;
  }

  .contact-form-wrapper {
    width: 85vw;
  }

  .contact-h2 {
    text-align: left;
    font-size: 21px;
  }

  .form-label {
    text-align: left;
    padding-left: 10px;
    font-size: 13px;
  }

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

  .form-input-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-rows-wrapper.last {
    margin-bottom: 10px;
  }

  .nav-lottie {
    width: 30px;
  }
}

#w-node-e13408f2-c480-dddf-2c56-b8b4b5cd7472-5b74ba0e, #w-node-d17eb8b6-98ff-8c2f-d5e7-7df14ce185ff-5b74ba0e, #w-node-_7e61393b-b417-b42b-8309-3d3e23ce40b4-5b74ba0e, #w-node-b5725d8f-5b41-45f3-f581-734249ae64de-5b74ba0e, #w-node-_21eb2d6d-41e7-176e-22c9-1a74f215b276-5b74ba0e {
  place-self: center;
}

#w-node-e200a968-047d-0267-d9f2-5633650c110d-5b74ba0e {
  justify-self: end;
}


