@font-face {
  font-family: SF Display;
  src: url('../fonts/System-San-Francisco-Display-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: SF Display;
  src: url('../fonts/System-San-Francisco-Display-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: SF Display;
  src: url('../fonts/System-San-Francisco-Display-Ultralight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: auto;
}

:root {
  --grey: #292929;
  --blue: #404a8a;
  --white: white;
  --pink-2: #f7d1cb;
  --purple: #8c53d2;
  --pink: #e08ad3;
  --black: black;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  color: #333;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: SF Display, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: SF Display, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: SF Display, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}

.nav {
  z-index: 999;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100px;
  display: flex;
  position: fixed;
}

.nav-logo-cont {
  z-index: 1000;
  background-color: var(--grey);
  justify-content: center;
  align-items: center;
  min-width: 100px;
  height: 100px;
  padding-top: 4px;
  padding-left: 36px;
  padding-right: 36px;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.nav-menu {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12%;
  padding-right: 12%;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-menu-collapse {
  z-index: 1000;
  background-color: var(--grey);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding-left: 36px;
  padding-right: 36px;
  display: flex;
}

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

.nav-logo-piece {
  flex: none;
  height: 32px;
}

.nav-logo-piece.nav-logo-piece-middle {
  object-fit: cover;
  object-position: 0% 50%;
}

.nav-logo-hidden {
  flex: none;
  align-items: stretch;
  display: block;
  overflow: hidden;
}

.nav-menu-collapse-before {
  background-color: var(--white);
  border-radius: 500px;
  align-self: flex-end;
  width: 16px;
  height: 3px;
  position: absolute;
}

.nav-menu-collapse-middle {
  background-color: var(--white);
  border-radius: 500px;
  align-self: stretch;
  width: 28px;
  height: 3px;
  position: absolute;
}

.nav-menu-collapse-after {
  background-color: var(--white);
  border-radius: 500px;
  align-self: flex-start;
  width: 16px;
  height: 3px;
  position: absolute;
}

.nav-socials {
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding-top: 26px;
  padding-bottom: 26px;
  display: none;
  position: fixed;
  inset: auto auto 0% 0%;
}

.nav-social-icon {
  width: 28px;
  height: 28px;
}

.nav-menu-link {
  color: #f7d1cb99;
  border-top: 2px solid #0000;
  border-bottom: 2px solid #0000;
  margin-left: 2.5%;
  margin-right: 2.5%;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  transition: margin .3s, color .3s, border-color .3s;
  display: flex;
}

.nav-menu-link:hover {
  color: var(--pink-2);
}

.nav-menu-link.w--current {
  border-top: 2px solid #0000;
  border-bottom: 2px solid var(--white);
  opacity: 1;
  color: var(--white);
}

.nav-social-cont {
  margin-top: 10px;
  margin-bottom: 10px;
  transition: transform .3s;
}

.nav-social-cont:hover {
  transform: scale(1.2);
}

.pg {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pg.home {
  background-color: var(--blue);
}

.pg.about {
  background-color: var(--pink-2);
}

.pg.services {
  background-color: var(--purple);
  color: var(--white);
}

.pg.clients {
  background-color: var(--blue);
  color: var(--white);
}

.pg.contact {
  background-color: var(--pink-2);
  color: var(--grey);
}

.pg-cont {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12%;
  padding-right: 12%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.pg-shade {
  background-image: linear-gradient(to bottom, var(--grey), #0e0e0e54 50%, transparent);
  opacity: .6;
  height: 20vh;
  position: absolute;
  inset: 0% 0% auto;
}

.pg-shade.pg-shade-hidden {
  display: none;
}

.h1-hero {
  width: 100%;
  max-width: 1200px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 70px;
  font-size: 72px;
  line-height: 84px;
}

.home-link {
  color: var(--white);
  margin-bottom: 20px;
  font-family: SF Display, sans-serif;
  font-size: 36px;
  line-height: 48px;
  position: relative;
}

.pg-bg {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  inset: 0%;
}

.bg-social-s {
  transform-origin: 0 100%;
  max-height: 23vh;
  transform-style: preserve-3d;
  position: absolute;
  inset: auto auto 0% 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(270deg);
}

.bg-social-s.bg-clients-s {
  opacity: .6;
  max-height: 30vh;
  transform: none;
}

.bg-social-s.bg-home-s {
  opacity: 1;
}

.bg-social-s.bg-about-s {
  opacity: .6;
}

.bg-social-s.bg-contact-s {
  opacity: .6;
  max-height: 30vh;
  transform: none;
}

.cta-line {
  background-color: var(--grey);
  width: 3px;
  height: 72px;
  margin-top: 12px;
}

.cta-cont {
  margin-top: auto;
  display: none;
}

.cta-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.pg-bg-elem {
  object-fit: contain;
  position: absolute;
}

.pg-bg-elem.bg-home-1 {
  opacity: .4;
  object-position: 50% 0%;
  width: 8vw;
  margin-top: -4vw;
  margin-left: -4vw;
  top: 12%;
  left: 25%;
}

.pg-bg-elem.bg-home-5 {
  opacity: .8;
  object-position: 50% 100%;
  width: 14%;
  height: 25vh;
  display: block;
  bottom: -2%;
  left: 28%;
}

.pg-bg-elem.bg-home-4 {
  opacity: .7;
  width: 10%;
  height: 20vh;
  top: 15%;
  left: auto;
  right: 6%;
}

.pg-bg-elem.bg-home-3 {
  opacity: .6;
  width: 52%;
  height: 100vh;
  bottom: -25%;
  right: 12%;
}

.pg-bg-elem.bg-home-2 {
  opacity: .5;
  width: 30%;
  height: 100vh;
  top: -25%;
  left: 41%;
}

.pg-bg-elem.bg-about-5 {
  opacity: .8;
  width: 42%;
  inset: auto -20% -23% auto;
}

.pg-bg-elem.bg-about-3 {
  opacity: .6;
  display: none;
  top: -16%;
  left: -14%;
}

.pg-bg-elem.bg-about-6 {
  opacity: .85;
  width: 16%;
  display: block;
  top: -6%;
  left: 23%;
}

.pg-bg-elem.bg-about-4 {
  opacity: .7;
  width: 6%;
  display: block;
  bottom: -2%;
  left: 39%;
}

.pg-bg-elem.bg-about-1 {
  opacity: .4;
  max-width: 55%;
  top: -28%;
  bottom: auto;
  left: 29%;
}

.pg-bg-elem.bg-about-2 {
  opacity: .5;
  width: 10%;
  top: 15%;
  left: auto;
  right: -4%;
}

.pg-bg-elem.bg-home-6 {
  opacity: .85;
  width: 32%;
  max-height: 42vh;
  inset: auto -2% 5% auto;
}

.pg-bg-elem.bg-services-1 {
  opacity: .4;
  inset: auto -15% -23% auto;
}

.pg-bg-elem.clients-blob1 {
  width: 100%;
  max-width: 55%;
  max-height: 77vh;
  transform-style: preserve-3d;
  top: -34%;
  bottom: auto;
  left: -5%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.pg-bg-elem.circle-clients-1 {
  width: 16%;
  display: block;
  bottom: -6%;
  left: 31%;
}

.pg-bg-elem.bg-contact-2 {
  opacity: .8;
  width: 6%;
  display: block;
  top: 14%;
  left: 39%;
}

.pg-bg-elem.clients-blob3 {
  width: 32%;
  inset: auto -14% -10% auto;
}

.pg-bg-elem.bg-contact-3 {
  opacity: .8;
  width: 100%;
  max-width: 55%;
  max-height: 77vh;
  top: -34%;
  bottom: auto;
  right: -6%;
}

.pg-bg-elem.bg-contact-1 {
  opacity: .9;
  width: 10%;
  bottom: 25%;
  left: auto;
  right: -4%;
}

.pg-bg-elem.circle-services1 {
  width: 16%;
  display: block;
  top: -3%;
  left: 38%;
}

.pg-bg-elem.circle-services-2 {
  width: 12%;
  display: block;
  bottom: -2%;
  left: 19%;
}

.pg-bg-elem.bg-contact-4 {
  opacity: .5;
  width: 16%;
  display: block;
  bottom: -6%;
  right: 25%;
}

.pg-bg-elem.bg-services-5 {
  opacity: .8;
  max-width: 55%;
  top: -34%;
  bottom: auto;
  left: -14%;
}

.pg-bg-elem.bg-services-3 {
  opacity: .6;
  width: 16%;
  display: block;
  top: -3%;
  left: 38%;
}

.pg-bg-elem.bg-services-4 {
  opacity: .7;
  width: 10%;
  top: 15%;
  left: auto;
  right: -4%;
}

.pg-bg-elem.bg-services-2 {
  opacity: .5;
  top: -16%;
  left: -14%;
}

.pg-bg-elem.bg-services-6 {
  opacity: .85;
  width: 12%;
  display: block;
  bottom: -2%;
  left: 19%;
}

.pg-bg-elem.bg-clients-3 {
  opacity: .6;
  width: 100%;
  max-width: 55%;
  max-height: 77vh;
  transform-style: preserve-3d;
  top: -34%;
  bottom: auto;
  left: -5%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.pg-bg-elem.bg-clients-4 {
  opacity: .7;
  width: 10%;
  top: 15%;
  left: auto;
  right: -4%;
}

.pg-bg-elem.bg-clients-2 {
  opacity: .5;
  width: 16%;
  display: block;
  bottom: -6%;
  left: 31%;
}

.pg-bg-elem.bg-clients-5 {
  opacity: .8;
  width: 6%;
  display: block;
  top: 14%;
  left: 39%;
}

.pg-bg-elem.bg-clients-1 {
  opacity: .4;
  width: 32%;
  inset: auto -14% -10% auto;
}

.para-full {
  margin-bottom: 14px;
}

.para-full.para-largebot {
  margin-bottom: 40px;
}

.h3-top {
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: 4px;
  font-weight: 400;
  line-height: 24px;
}

.h1-std {
  margin-top: 0;
  margin-bottom: 40px;
}

.nav-menu-collapse-cont {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: relative;
}

.nav-menu-back {
  z-index: 999;
  background-color: var(--grey);
  opacity: .6;
  width: 100%;
  height: 100px;
  position: fixed;
  inset: 0% 0% auto;
}

.www-cont {
  z-index: 1000;
  justify-content: flex-end;
  margin-left: -40px;
  display: none;
  position: fixed;
  inset: auto 14% 0% auto;
}

.www-title {
  color: #e08ad34d;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 40px;
  font-size: 124px;
  font-weight: 700;
  line-height: 90px;
}

.www-title.w--current {
  color: var(--pink);
}

.pg-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.pg-block.pg-block-flex {
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
}

.pg-block.pg-block-flex.pg-block-flex-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.pg-block.pg-block-flex.pg-block-flex-z {
  align-items: flex-start;
  margin-top: 0;
}

.pg-block.pg-block-heading {
  margin-top: -60px;
  margin-bottom: 20px;
}

.pg-block-sub {
  flex-direction: column;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.pg-block-sub.bg-block-third {
  flex: none;
  width: 30%;
  max-width: none;
}

.pg-block-sub.bg-block-main {
  flex: 0 auto;
  align-self: flex-start;
  width: 50%;
  margin-left: 80px;
  display: block;
}

.pg-block-sub.pg-block-second {
  flex: 0 auto;
  width: 50%;
  max-width: 480px;
}

.space-cont {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-left: 10%;
  display: flex;
  position: relative;
}

.space-bg {
  width: 100%;
  position: absolute;
  inset: 0%;
}

.space-man {
  object-fit: contain;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.button {
  background-color: var(--grey);
  color: var(--white);
  border-radius: 3px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button.nav-cta {
  z-index: 1000;
  background-color: var(--pink-2);
  color: var(--grey);
  border-radius: 0;
  justify-content: flex-end;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 21px;
  position: absolute;
  inset: 0% 100px 0% auto;
}

.button.nav-cta:hover {
  background-color: var(--white);
}

.button.nav-cta-large {
  z-index: 1000;
  background-color: var(--pink-2);
  color: var(--grey);
  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 21px;
  display: none;
  position: absolute;
  inset: 0% 100px 0% auto;
}

.button.nav-cta-large:hover {
  background-color: var(--white);
}

.button-icon {
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 20px;
  max-width: none;
  margin-left: 16px;
  display: flex;
}

.button-icon.button-icon-left {
  margin-left: 0;
  margin-right: 22px;
}

.button-icon.button-icon-full {
  margin-left: 0;
}

.button-icon-cont {
  flex: none;
  height: 28px;
  display: flex;
}

.button-icon-cont.button-icon-left, .button-icon-cont.button-icon-full {
  justify-content: flex-end;
}

.button-text {
  flex: none;
}

.button-text.button-text-full {
  margin-left: 22px;
}

.h2-std {
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 400;
}

.color-red {
  filter: brightness(0%) invert() sepia() saturate(10000%) invert() hue-rotate(-5deg) contrast(30%) brightness(80%);
}

.button-static {
  background-color: var(--black);
  color: var(--white);
  border-radius: 500px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-weight: 700;
  transition: background-color .4s;
  display: none;
  position: relative;
  overflow: hidden;
}

.button-static:hover {
  background-color: var(--pink);
}

.clients-cont {
  flex: none;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  margin-left: 10%;
  display: flex;
  position: relative;
}

.test-mask {
  background-color: var(--pink);
  display: none;
  position: absolute;
  inset: 0%;
}

.form-cont {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.form-label {
  color: #0000;
  height: 0;
  overflow: hidden;
}

.form-field {
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #29292966;
  min-height: 54px;
  margin-bottom: 30px;
  padding: 12px 20px 12px 0;
  transition: border-color .3s;
}

.form-field:hover, .form-field:focus {
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent var(--grey);
}

.form-field::placeholder {
  color: #29292966;
  font-size: 1em;
}

.form-field.form-textarea {
  height: 144px;
}

.button-form {
  background-color: var(--blue);
  color: var(--white);
  border-radius: 3px;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 8px;
  padding: 20px 30px;
  font-family: SF Display, sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: background-color .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-form:hover {
  background-color: var(--purple);
}

.button-form.nav-cta {
  z-index: 1000;
  background-color: var(--pink-2);
  color: var(--grey);
  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 21px;
  position: absolute;
  inset: 0% 100px 0% auto;
}

.button-form.nav-cta:hover {
  background-color: var(--white);
}

.contact-social {
  z-index: 1000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.contact-social-cont {
  filter: brightness(18%);
  margin-right: 24px;
  transition: transform .3s;
}

.contact-social-cont:hover {
  transform: scale(1.2);
}

.form-buttons {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.pg-block-sub-left {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  display: flex;
}

.recaptcha {
  margin-top: 10px;
  margin-right: 10px;
}

.home-socials {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.form-success {
  text-align: center;
  background-color: #404a8a1a;
  border-radius: 6px;
  padding: 40px;
}

.form-waiting {
  width: 100%;
}

.h2-no {
  margin-top: 0;
}

.form-success-icon {
  width: 50px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.form-error {
  background-color: var(--grey);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  margin-top: 30px;
  padding: 40px;
}

.button-small {
  background-color: var(--grey);
  color: var(--white);
  border-radius: 3px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  font-weight: 700;
  transition: background-color .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-small:hover {
  background-color: var(--blue);
}

.button-small.nav-cta {
  z-index: 1000;
  background-color: var(--pink-2);
  color: var(--grey);
  border-radius: 0;
  justify-content: flex-start;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 21px;
}

.button-small.nav-cta:hover {
  background-color: var(--white);
}

.button-small.nav-cta-large {
  z-index: 1000;
  background-color: var(--pink-2);
  color: var(--grey);
  border-radius: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 21px;
  display: none;
  position: absolute;
  inset: 0% 100px 0% auto;
}

.button-small.nav-cta-large:hover {
  background-color: var(--white);
}

.nav-right {
  z-index: 1000;
  height: 100px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.clients-phone {
  z-index: 2;
  flex: none;
  width: 22%;
  margin-bottom: -4%;
  margin-right: -14%;
  position: relative;
}

.clients-laptop {
  z-index: 1;
  flex: none;
  width: 95%;
  position: relative;
}

.space-bg-size {
  opacity: 0;
  width: 100%;
  position: relative;
}

.h1-flat {
  margin-top: -48px;
  display: none;
}

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

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

  h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .nav-menu {
    flex-direction: column;
    max-width: none;
    height: auto;
    margin-left: 0%;
    margin-right: 0%;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .nav-menu-link {
    color: #f7d1cb99;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 48px;
    line-height: 54px;
  }

  .nav-menu-link:hover {
    color: #f7d1cb;
  }

  .nav-social-cont {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pg {
    height: auto;
    min-height: 100vh;
  }

  .pg-cont {
    margin-top: 180px;
    margin-bottom: 160px;
    padding-left: 8%;
    padding-right: 8%;
    position: relative;
  }

  .pg-cont.pg-cont-contact {
    margin-bottom: 130px;
  }

  .pg-bg {
    height: auto;
    position: absolute;
  }

  .bg-social-s.bg-home-s {
    transform: none;
  }

  .h3-top {
    letter-spacing: 8px;
  }

  .nav-menu-back {
    background-color: var(--blue);
    opacity: .95;
    height: 100vh;
    display: none;
  }

  .pg-block-sub.bg-block-main {
    align-self: center;
  }

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

  .button-text.button-text-full {
    display: none;
  }

  .h2-std {
    max-width: 100%;
    display: inline-block;
  }

  .form-field, .form-field::placeholder {
    font-size: 18px;
    line-height: 28px;
  }

  .button-form {
    align-self: center;
  }

  .form-buttons {
    flex-direction: column;
    align-items: center;
  }

  .recaptcha {
    margin-right: 0;
  }

  .home-socials {
    flex-direction: row;
    width: auto;
    height: 100px;
    padding: 0 26px;
  }

  .button-small.nav-cta {
    width: 100px;
  }

  .heading {
    font-size: 32px;
    line-height: 38px;
  }

  .text-span {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .pg-cont {
    margin-top: 140px;
    margin-bottom: 140px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .h1-hero {
    font-size: 64px;
    line-height: 76px;
  }

  .pg-block {
    max-width: 100%;
  }

  .pg-block.pg-block-flex {
    flex-direction: column-reverse;
  }

  .pg-block.pg-block-flex.pg-block-flex-z {
    flex-direction: column;
  }

  .pg-block.pg-block-heading {
    margin-top: 0;
    margin-left: 20px;
    margin-right: 20px;
  }

  .pg-block-sub {
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
  }

  .pg-block-sub.bg-block-third {
    width: auto;
    margin-bottom: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .pg-block-sub.bg-block-third.bg-block-third-last {
    margin-bottom: 0;
  }

  .pg-block-sub.bg-block-main {
    width: auto;
    margin-left: 20px;
  }

  .pg-block-sub.pg-block-second {
    align-self: stretch;
    width: auto;
    max-width: none;
  }

  .space-cont {
    width: 130%;
    margin-bottom: 80px;
    margin-left: 0%;
  }

  .color-red {
    filter: contrast(30%) brightness(80%);
  }

  .clients-cont {
    width: 100%;
    margin-bottom: 80px;
    margin-left: 2%;
  }

  .pg-block-sub-left {
    margin-bottom: 80px;
  }
}

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

  .nav-logo-cont {
    justify-content: flex-start;
    width: 100%;
    box-shadow: 0 8px 16px #0003;
  }

  .pg-cont.pg-cont-home {
    margin-top: 170px;
  }

  .h1-hero {
    font-size: 48px;
    line-height: 56px;
  }

  .home-link {
    font-size: 32px;
    line-height: 42px;
  }

  .contact-social {
    z-index: 0;
    position: relative;
  }
}


@font-face {
  font-family: 'SF Display';
  src: url('../fonts/System-San-Francisco-Display-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'SF Display';
  src: url('../fonts/System-San-Francisco-Display-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'SF Display';
  src: url('../fonts/System-San-Francisco-Display-Ultralight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: auto;
}