:root {
  --white: white;
  --black: black;
  --gainsboro: #ddd;
  --blue: #e68d21;
  --blackgrey: #0f0f0f;
  --kinda-black: #070413;
  --lime-green: #3cc74e;
  --cornflower-blue: #609bff;
  --blackish: #333;
  --dim-grey: #5b6876;
  --light-slate-grey: #8491a0;
  --midnight-blue: #1c0660;
  --pale-violet-red: #e95d90;
  --level-1: #181823;
  --very-dim-grey: #2b2f33;
  --medium-purple: #a386fb;
}

.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;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
}

a {
  color: var(--white);
  text-align: left;
  font-style: normal;
  text-decoration: none;
}

.body {
  background-color: var(--black);
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.brand {
  margin-top: 26px;
  padding-top: 0;
  font-family: Sen;
}

.brand.w--current {
  margin-top: 26px;
  font-family: Montserrat, sans-serif;
  position: static;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.wrapper.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-family: Montserrat, sans-serif;
  display: flex;
}

.wrapper._3_col_grid {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper.projects-grid {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.wrapper.sticky-grid {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.nav-bar {
  z-index: 9000;
  background-color: #0d0d0d;
  padding-left: 150px;
  padding-right: 150px;
  position: sticky;
  top: 0;
}

.nav-link {
  color: var(--gainsboro);
  background-color: #0000;
  padding: 32px 20px;
  font-family: Montserrat, sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 150%;
  text-decoration: none;
  transition: color .4s cubic-bezier(.77, 0, .175, 1);
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link.w--current {
  color: var(--white);
}

.nav-link.button {
  color: var(--white);
  mix-blend-mode: normal;
  background-color: #0000;
  border: 1px #0000;
  border-radius: 0;
  padding-left: 32px;
  padding-right: 32px;
  font-weight: 700;
  text-decoration: none;
  transition-property: none;
  display: inline-block;
  overflow: visible;
}

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

.logo {
  max-width: 40%;
}

.hero-section {
  background-color: var(--blue);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#e68d21db, #e68d21db), url('../images/sigmund-4ugmm3wruoq-unsplash.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  background-clip: border-box;
  max-width: 100%;
  height: 80vh;
  margin-bottom: auto;
  padding: 8vh 150px;
  font-family: Montserrat, sans-serif;
  position: static;
}

.heading_64px {
  color: #ffffffe6;
  margin-top: -30px;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 110%;
}

.hero-text-block {
  max-width: 70%;
  margin-left: 0;
  display: block;
}

.paragraph_20 {
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.paragraph_20.hero-paragraph {
  padding-right: 20%;
}

.paragraph_20.hero-paragraph.light-grey {
  color: var(--black);
  margin-top: 30px;
  margin-bottom: 20px;
  padding-right: 15%;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
}

.paragraph_20.hero-paragraph.light-grey.footer {
  color: var(--white);
  margin-bottom: 40px;
  padding-right: 10%;
  line-height: 140%;
}

.paragraph_20.hero-paragraph.light-grey.footer.case {
  margin-top: 20px;
  margin-bottom: 50px;
  padding-right: 0%;
  font-weight: 400;
  line-height: 150%;
}

.text-link {
  border-bottom: 1px solid var(--lime-green);
  color: var(--lime-green);
  font-weight: 700;
  text-decoration: none;
  transition: color .35s cubic-bezier(.755, .05, .855, .06);
}

.text-link:hover {
  color: var(--cornflower-blue);
}

.text-link.work {
  border-style: none;
  border-width: 1px;
  border-color: var(--lime-green) var(--lime-green) var(--cornflower-blue);
  color: var(--gainsboro);
  font-weight: 800;
  transition: transform .6s cubic-bezier(.77, 0, .175, 1);
}

.text-link.work:hover {
  border-bottom-style: none;
  border-bottom-color: var(--cornflower-blue);
  background-color: var(--blue);
  color: #0000;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
}

.experience {
  background-color: #0f0f0f;
  padding: 140px 150px 120px;
}

.overline {
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
}

.heading_48 {
  color: var(--white);
  width: 100%;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  line-height: 130%;
  display: block;
}

.heading_48._24px_margin_bottom {
  max-width: none;
  margin-bottom: 24px;
  font-size: 40px;
}

.heading_48.footer {
  max-width: 620px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.heading_48.work {
  margin-bottom: 0;
  font-size: 40px;
}

.flex-left-align-vert {
  border-bottom: .5px solid var(--blackish);
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 25px;
  display: flex;
}

.experience-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template: "Area-Top Area-Top"
                 "Area-Bottom-Left Area-Bottom-Right"
                 / 1fr 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  padding-top: 40px;
}

.number {
  color: #e68d21;
  margin-bottom: 8px;
  font-family: Plusjakartatext, sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
  display: inline-block;
}

.heading_24 {
  color: var(--white);
  object-fit: fill;
  margin-top: 0;
  margin-bottom: 16px;
  font-style: normal;
  line-height: 130%;
  text-decoration: none;
}

.heading_24.light-grey {
  color: var(--blackish);
  line-height: 130%;
}

.heading_24._48pxm {
  margin-bottom: 40px;
  font-family: Plusjakartatext, sans-serif;
  font-size: 20px;
}

.heading_24._48pxm.testimonial {
  font-weight: 400;
  line-height: 140%;
}

.experience-block {
  padding-bottom: 0;
  padding-right: 0;
}

.paragraph_16 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 150%;
}

.paragraph_16.experience-timeline {
  color: var(--dim-grey);
  margin-bottom: 16px;
}

.paragraph_16.light-grey {
  color: var(--light-slate-grey);
  font-family: Plusjakartatext, sans-serif;
}

.pip, .egear, .nwpa-beehive {
  color: var(--white);
}

.skills {
  background-color: #0f0f0f;
  padding: 120px 150px;
}

.paragraph_18 {
  color: var(--white);
  font-size: 18px;
  line-height: 150%;
}

.paragraph_18.light-grey {
  color: var(--light-slate-grey);
  margin-bottom: 40px;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.paragraph_18.light-grey._40px-margin-bottom {
  color: var(--black);
  max-width: none;
  margin-bottom: 40px;
}

.paragraph_18.light-grey._40px-margin-bottom.footer {
  color: var(--gainsboro);
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
}

.icon {
  margin-bottom: 24px;
}

.skill-child {
  padding-right: 48px;
}

.normal-wrapper {
  color: var(--white);
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}

.normal-wrapper.footer {
  border: 2px solid var(--blackish);
  background-color: #000;
  padding: 40px 100px;
}

.projects-section {
  background-color: var(--black);
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 120px 150px;
}

.project-block {
  color: var(--white);
  padding-right: 0;
  text-decoration: none;
}

.project-block:hover, .project-block:active, .project-block:focus {
  color: var(--white);
  text-decoration: none;
}

.project-block._24px-bottom_m {
  border: 2px solid var(--blackish);
  background-color: var(--blackgrey);
  direction: ltr;
  color: var(--white);
  text-align: left;
  text-transform: none;
  white-space: normal;
  margin-bottom: 59px;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}

.project-block._24px-bottom_m:hover {
  color: var(--white);
}

.project-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  text-decoration: none;
}

.project-description {
  border-style: solid solid none;
  border-width: .5px .5px 0;
  border-color: var(--blackish) var(--blackish) transparent;
  background-color: #141414;
  padding: 40px 32px 10px;
}

.cta {
  border: 1px solid var(--blue);
  color: var(--blue);
  background-color: #0000;
  padding: 24px 40px;
  font-size: 16px;
  font-weight: 700;
  transition: box-shadow .45s cubic-bezier(.165, .84, .44, 1), background-color .45s cubic-bezier(.165, .84, .44, 1), transform .45s cubic-bezier(.165, .84, .44, 1);
}

.cta:hover {
  background-color: var(--blue);
  color: var(--white);
  border-style: none;
  transform: translate(0, -5px);
  box-shadow: 0 20px 50px #5221e666;
}

.cta.dark {
  border-style: none;
  border-color: var(--midnight-blue);
  background-color: #0000;
  background-image: linear-gradient(74deg, var(--blue), var(--pale-violet-red));
  color: var(--white);
  font-family: Plusjakartatext, sans-serif;
}

.cta.dark:hover {
  background-color: var(--midnight-blue);
  box-shadow: none;
}

.cta.dark.footer {
  background-color: var(--blue);
  background-image: none;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Plusjakartatext, sans-serif;
}

.project-intro-block {
  padding-right: 0;
  text-decoration: none;
}

.project-intro-block._48px-right_p {
  padding-right: 48px;
}

.project-intro-block._48px-right_p._80px-bottom_m {
  margin-top: 0;
  margin-bottom: 40px;
  padding-bottom: 0;
  padding-right: 0;
}

.review-section {
  background-color: var(--blue);
  padding: 120px 150px;
}

.testimonial-block._120px-bottom_margin {
  border: 1px none var(--light-slate-grey);
  margin-bottom: 60px;
  display: block;
}

.testimonial-block._120px-bottom_margin:hover {
  border-style: none;
  border-color: var(--cornflower-blue);
}

.testimonial-text {
  border: 2px solid var(--blackish);
  background-color: var(--black);
  padding: 64px;
}

.testimonial-text:hover {
  border-color: var(--dim-grey);
}

.heading_18 {
  color: var(--light-slate-grey);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
}

.heading_18._4px_bottom_margin {
  color: var(--white);
  margin-bottom: 4px;
}

.heading_18._4px_bottom_margin.light-grey {
  color: var(--light-slate-grey);
}

.heading_18._4px_bottom_margin.light-grey.testimonial {
  color: var(--blue);
}

.stcky-reviews {
  z-index: 99;
  max-width: 85%;
  position: sticky;
  top: 140px;
}

.heading-32 {
  color: var(--white);
  width: 100%;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 120%;
  display: block;
}

.heading-32._24px_margin_bottom {
  margin-bottom: 24px;
  font-size: 40px;
  line-height: 130%;
}

.process {
  background-color: var(--black);
  padding: 100px 150px 120px;
}

.image-3 {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.image-4, .image-5 {
  width: 100%;
  margin-bottom: 20px;
}

.text-span-7, .text-span-8, .text-span-9, .text-span-10 {
  color: var(--white);
}

.get-in-touch {
  background-color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  padding: 80px 155px 20px 125px;
}

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

.social-media-icons {
  display: flex;
}

.social-media-icon {
  padding-left: 0;
  padding-right: 20px;
}

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

.footer-link {
  color: var(--blackish);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline;
}

.footer-link:hover {
  color: var(--blue);
}

.emoji {
  font-weight: 400;
  display: none;
}

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

.project-wrapper {
  padding: 100px 140px;
}

.project-wrapper.main {
  background-color: var(--blackgrey);
  padding: 80px 150px 10px;
}

.projects {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.projects.case-study {
  width: auto;
}

.subfooter-footer {
  padding: 140px 140px 40px;
}

.heading_24-project {
  color: var(--white);
  margin-top: 16px;
  margin-bottom: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 120%;
}

.heading_24-project.first {
  padding-bottom: 0;
}

.subhead {
  color: var(--white);
  font-size: 24px;
}

.bold {
  color: #ffffffbf;
  font-weight: 700;
}

.bold:hover {
  color: var(--white);
  font-weight: 700;
}

.scroll-down {
  width: 100%;
  max-width: 1920px;
  height: auto;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.lottie-animation-2 {
  text-align: left;
  width: 60px;
  margin-top: -100px;
  margin-left: -25px;
  padding-top: 0;
  padding-left: 0;
  font-style: normal;
  text-decoration: none;
}

.get_in_touch {
  padding-right: 0;
  text-decoration: none;
}

.get_in_touch._48px-right_p {
  padding-right: 48px;
}

.get_in_touch._48px-right_p._80px-bottom_m {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 0;
  padding-right: 0;
}

.smooth-scroll {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.bold-text-3 {
  font-weight: 800;
}

.testimonial-block-top._120px-bottom_margin {
  border: 1px none var(--light-slate-grey);
  margin-bottom: 60px;
}

.testimonial-block-top._120px-bottom_margin:hover {
  border-style: none;
  border-color: var(--cornflower-blue);
}

.cta-copy {
  border: 1px solid var(--blue);
  color: var(--blue);
  background-color: #0000;
  padding: 24px 40px;
  font-size: 16px;
  font-weight: 700;
  transition: box-shadow .45s cubic-bezier(.165, .84, .44, 1), background-color .45s cubic-bezier(.165, .84, .44, 1), transform .45s cubic-bezier(.165, .84, .44, 1);
}

.cta-copy:hover {
  background-color: var(--blue);
  color: var(--white);
  border-style: none;
  transform: translate(0, -5px);
  box-shadow: 0 20px 50px #5221e666;
}

.cta-copy.dark {
  border-style: none;
  border-color: var(--midnight-blue);
  background-color: #0000;
  background-image: linear-gradient(74deg, var(--blue), var(--pale-violet-red));
  color: var(--white);
  font-family: Plusjakartatext, sans-serif;
}

.cta-copy.dark:hover {
  background-color: var(--midnight-blue);
  box-shadow: none;
}

.cta-copy.dark.footer {
  background-color: var(--blue);
  background-image: none;
  padding-left: 60px;
  padding-right: 60px;
  font-family: Montserrat, sans-serif;
}

.overline_16px-link {
  color: var(--light-slate-grey);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  display: inline-block;
}

.header-wrapper {
  background-color: var(--blue);
  background-image: url('../images/leretsis_portfolio_binder_print_page_01.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  display: block;
  position: static;
}

.image-grid {
  grid-column-gap: 10px;
  text-align: left;
  grid-template-rows: 1fr;
  grid-template-columns: max-content max-content max-content max-content;
  place-content: space-between;
  place-items: center;
  width: auto;
  height: auto;
  margin-bottom: 65px;
}

.underline {
  float: none;
  clear: left;
  color: var(--blue);
  text-align: left;
  text-transform: uppercase;
  flex-flow: column wrap;
  align-content: flex-start;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
}

.featured-image {
  border: 1px solid var(--very-dim-grey);
  background-color: var(--level-1);
  margin-top: 60px;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.underline-right {
  float: right;
  clear: left;
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  flex-flow: column wrap;
  align-content: flex-start;
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  display: inline-block;
}

.slider {
  width: 100%;
  height: 100%;
}

.image-9 {
  object-fit: fill;
  width: auto;
  max-width: 100%;
  height: 450px;
  padding: 30px 50px 50px;
  display: inline-block;
}

.icon-2, .icon-3 {
  color: var(--blackish);
  font-size: 35px;
}

.slide-nav {
  font-size: 10px;
}

.project-div {
  margin-bottom: 50px;
}

.image-10 {
  width: 100%;
  height: auto;
  padding: 10px 25px;
  display: inline-block;
}

.sub_head {
  color: #e68d21cc;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
  display: inline-block;
}

.sub_head:hover {
  color: #e68d21;
  font-weight: 800;
  text-decoration: none;
  position: static;
}

.slide {
  background-color: var(--gainsboro);
  text-align: center;
}

.publication-header {
  background-color: var(--blue);
  background-image: url('../images/leretsis_portfolio_binder_print_page_07.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  margin-bottom: 50px;
  display: block;
  position: relative;
}

.project-highlight-div-xix {
  border-top: .5px solid var(--blackish);
  background-color: var(--black);
  background-image: linear-gradient(#000c, #000c), url('../images/chimeraxix-masterfile-test2_page_38.webp');
  background-position: 0 0, 0%;
  background-size: auto, cover;
  margin-bottom: 0;
  padding: 100px 150px;
}

.branding-header {
  background-color: var(--blue);
  background-image: url('../images/leretsis_portfolio_binder_print_page_17.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  margin-bottom: 50px;
  display: block;
  position: relative;
}

.project-highlight-div-gm {
  border-top: .5px solid var(--blackish);
  background-color: var(--black);
  background-image: linear-gradient(#000c, #000c), url('../images/img_6279.webp');
  background-position: 0 0, 0%;
  background-size: auto, 150% 100%;
  margin-bottom: 0;
  padding: 100px 150px;
}

.web-header {
  background-color: var(--blue);
  background-image: url('../images/leretsis_portfolio_binder_print_page_25.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  margin-bottom: 50px;
  display: block;
  position: relative;
}

.grid-2 {
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.image_gallery {
  background-color: var(--gainsboro);
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.client-header {
  background-color: var(--blue);
  background-image: url('../images/leretsis_portfolio_binder_print_page_31.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  margin-bottom: 50px;
  display: block;
  position: relative;
}

@media screen and (min-width: 1280px) {
  .wrapper.grid {
    height: 100%;
    display: flex;
  }

  .wrapper._3_col_grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .nav-bar {
    padding-left: 150px;
    padding-right: 150px;
  }

  .hero-section {
    max-width: none;
    height: 80vh;
    padding: 8vh 150px;
  }

  .heading_64px {
    font-size: 60px;
  }

  .hero-text-block {
    max-width: 65%;
  }

  .paragraph_20.hero-paragraph.light-grey {
    font-size: 18px;
    line-height: 160%;
  }

  .paragraph_20.hero-paragraph.light-grey.footer {
    font-size: 18px;
  }

  .paragraph_20.hero-paragraph.light-grey.footer.case {
    text-align: left;
    font-size: 16px;
  }

  .experience {
    padding-left: 150px;
    padding-right: 150px;
  }

  .number {
    font-size: 70px;
  }

  .heading_24._48pxm.testimonial {
    font-size: 18px;
  }

  .skills {
    padding-left: 150px;
    padding-right: 150px;
  }

  .skill-child {
    padding-right: 0;
  }

  .projects-section, .review-section, .process {
    padding-left: 150px;
    padding-right: 150px;
  }

  .get-in-touch {
    padding-left: 150px;
    padding-right: 170px;
  }

  .project-wrapper.main {
    padding-left: 150px;
    padding-right: 150px;
  }

  .scroll-down {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .lottie-animation-2 {
    width: 70px;
  }

  .slider {
    float: none;
    clear: both;
    background-color: var(--blackgrey);
    text-align: left;
    position: relative;
    inset: 0%;
  }

  .image-9 {
    text-align: left;
    width: auto;
    max-width: 100%;
    height: 550px;
  }

  .icon-2, .icon-3 {
    color: var(--blackish);
  }

  .slide {
    text-align: center;
  }

  .publication-header, .branding-header, .web-header, .client-header {
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll;
  }
}

@media screen and (min-width: 1440px) {
  .wrapper.grid {
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    margin-left: auto;
    padding-top: 0;
    display: flex;
    position: static;
  }

  .nav-bar {
    padding-left: 300px;
    padding-right: 300px;
  }

  .hero-section {
    max-width: none;
    height: 85vh;
    margin-bottom: 0;
    padding: 8vh 300px;
  }

  .heading_64px {
    font-size: 65px;
  }

  .hero-text-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    display: block;
    position: static;
  }

  .paragraph_20.hero-paragraph.light-grey {
    font-size: 20px;
    line-height: 165%;
  }

  .experience {
    padding-left: 300px;
    padding-right: 300px;
  }

  .number {
    font-size: 80px;
  }

  .skills, .projects-section, .review-section, .process {
    padding-left: 300px;
    padding-right: 300px;
  }

  .image-3, .image-4 {
    height: 50%;
  }

  .image-5 {
    object-fit: cover;
    height: 50%;
  }

  .get-in-touch, .project-wrapper.main {
    padding-left: 300px;
    padding-right: 300px;
  }

  .scroll-down {
    margin-top: 10px;
  }

  .lottie-animation-2 {
    width: 80px;
    padding-top: 26px;
  }

  .header-wrapper {
    height: 65vh;
  }

  .image-grid {
    height: 100%;
  }

  .slider {
    width: 100%;
    height: auto;
  }

  .image-9 {
    object-fit: contain;
    height: 550px;
    overflow: visible;
  }

  .image-10 {
    height: auto;
  }

  .project-highlight-div-xix, .project-highlight-div-gm {
    padding-left: 300px;
    padding-right: 300px;
  }
}

@media screen and (max-width: 991px) {
  .brand {
    margin-top: 0;
  }

  .brand.w--current {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .wrapper.grid {
    grid-column-gap: 0px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .wrapper._3_col_grid {
    grid-row-gap: 56px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .wrapper.projects-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 24px;
  }

  .nav-bar {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 80px;
    padding-right: 0;
    display: block;
  }

  .nav-link {
    background-color: var(--black);
    color: var(--white);
    padding-left: 40px;
  }

  .nav-link:hover {
    background-color: var(--blackgrey);
    color: var(--white);
  }

  .nav-link:active, .nav-link:focus, .nav-link:visited {
    color: var(--white);
  }

  .nav-link.button {
    background-color: var(--blue);
    padding-left: 40px;
  }

  .logo {
    margin-top: 28px;
    margin-bottom: auto;
  }

  .nav-menu {
    background-color: var(--black);
    display: block;
  }

  .menu-button {
    background-color: var(--blackgrey);
    padding: 24px;
    display: none;
  }

  .menu-button.w--open {
    background-color: var(--blackgrey);
  }

  .hero-section {
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    height: 70vh;
    margin-bottom: 0;
    padding: 10vh 80px;
    display: block;
  }

  .heading_64px {
    align-items: flex-start;
    padding-bottom: 0;
    font-size: 48px;
    display: block;
  }

  .hero-text-block {
    flex: 0 auto;
    max-width: 85%;
    margin-top: 0;
    margin-left: 0;
  }

  .paragraph_20.hero-paragraph {
    padding-right: 5%;
  }

  .paragraph_20.hero-paragraph.light-grey {
    margin-top: 32px;
    margin-bottom: 20px;
    padding-bottom: 0;
    padding-right: 0%;
    font-size: 16px;
  }

  .paragraph_20.hero-paragraph.light-grey.footer {
    font-size: 18px;
  }

  .paragraph_20.hero-paragraph.light-grey.footer.case {
    font-size: 16px;
  }

  .experience {
    padding: 60px 80px 100px;
  }

  .heading_48 {
    font-size: 40px;
  }

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

  .number {
    color: var(--blue);
    font-family: Montserrat, sans-serif;
  }

  .heading_24 {
    font-size: 18px;
  }

  .heading_24.light-grey, .heading_24._48pxm {
    font-size: 20px;
  }

  .heading_24._48pxm.testimonial {
    font-size: 18px;
  }

  .experience-block {
    padding-bottom: 30px;
    padding-right: 16px;
  }

  .paragraph_16 {
    font-size: 14px;
  }

  .skills {
    padding: 80px;
  }

  .paragraph_18.light-grey {
    font-size: 14px;
  }

  .skill-child {
    padding-bottom: 40px;
  }

  .normal-wrapper.footer {
    padding-left: 60px;
    padding-right: 60px;
  }

  .projects-section {
    padding: 80px;
  }

  .project-block {
    margin-bottom: 0;
  }

  .project-block._24px-bottom_m {
    margin-bottom: 80px;
  }

  .cta.dark {
    text-align: center;
    width: 30%;
    padding: 20px 0;
  }

  .cta.dark.footer {
    text-align: center;
    width: 40%;
    padding-left: 0;
    padding-right: 0;
  }

  .project-intro-block {
    margin-bottom: 0;
  }

  .review-section {
    padding: 80px;
  }

  .testimonial-block._120px-bottom_margin {
    margin-bottom: 64px;
    display: block;
  }

  .testimonial-text {
    padding: 32px;
  }

  .process {
    padding: 150px 80px 100px;
  }

  .get-in-touch {
    padding-bottom: 20px;
    padding-left: 80px;
    padding-right: 80px;
  }

  .project-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }

  .project-wrapper.main {
    padding-left: 85px;
    padding-right: 85px;
  }

  .projects.case-study {
    width: 100%;
  }

  .subfooter-footer {
    padding-top: 100px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .lottie-animation {
    width: 40px;
  }

  .scroll-down, .lottie-animation-2 {
    display: none;
  }

  .get_in_touch {
    margin-bottom: 0;
  }

  .smooth-scroll {
    background-color: var(--blackgrey);
    display: block;
  }

  .testimonial-block-top._120px-bottom_margin {
    margin-bottom: 64px;
  }

  .cta-copy.dark {
    text-align: center;
    width: 30%;
    padding: 20px 0;
  }

  .cta-copy.dark.footer {
    text-align: center;
    width: 40%;
    padding-left: 0;
    padding-right: 0;
  }

  .image-9 {
    max-width: 100%;
    height: 375px;
  }

  .icon-2, .icon-3 {
    font-size: 30px;
  }

  .slide-nav {
    font-size: 10px;
  }

  .sub_head {
    font-size: 14px;
  }

  .project-highlight-div-xix, .project-highlight-div-gm {
    padding-left: 85px;
    padding-right: 85px;
  }

  .grid-2 {
    grid-row-gap: 15px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    margin-top: 27px;
    margin-bottom: 16px;
    padding-left: 20px;
  }

  .brand.w--current {
    margin-top: 28px;
  }

  .wrapper.grid {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

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

  .wrapper.projects-grid {
    grid-row-gap: 0px;
  }

  .wrapper.sticky-grid {
    grid-column-gap: 20px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .nav-bar {
    padding-left: 40px;
    padding-right: 0;
  }

  .nav-link {
    background-color: var(--black);
    border: .5px solid #ffffff0d;
    padding-left: 32px;
    transition: color .4s cubic-bezier(.77, 0, .175, 1);
    display: block;
  }

  .nav-link:hover {
    background-color: var(--blackgrey);
    display: block;
  }

  .nav-link.button {
    background-color: var(--blue);
    background-image: none;
    padding-left: 32px;
  }

  .logo {
    margin-top: 5px;
    margin-bottom: 0;
  }

  .nav-menu {
    float: none;
    clear: none;
    background-color: var(--black);
    position: relative;
    inset: auto 0%;
  }

  .menu-button {
    background-color: var(--blackgrey);
    padding: 30px 24px 28px;
  }

  .menu-button:active {
    border: 1px solid var(--kinda-black);
  }

  .menu-button.w--open {
    background-color: var(--blackgrey);
  }

  .hero-section {
    height: 90vh;
    padding-top: 16vh;
    padding-left: 60px;
    padding-right: 60px;
  }

  .heading_64px {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .hero-text-block {
    background-color: #0000;
    margin-top: 0;
    margin-left: 0;
    padding: 0 0 40px;
  }

  .paragraph_20.hero-paragraph {
    padding-right: 0%;
  }

  .paragraph_20.hero-paragraph.light-grey {
    padding-right: 0%;
    font-size: 20px;
  }

  .experience {
    padding: 40px 60px 64px;
  }

  .heading_48, .heading_48._24px_margin_bottom, .heading_48.work {
    font-size: 32px;
  }

  .experience-grid {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    grid-auto-columns: minmax(0, 1fr);
  }

  .number {
    color: var(--blue);
  }

  .experience-block {
    padding-bottom: 61px;
  }

  .skills {
    padding: 64px 40px;
  }

  .skill-child {
    padding-right: 0;
  }

  .normal-wrapper.footer {
    padding: 40px;
  }

  .projects-section {
    padding: 64px 60px;
  }

  .project-block._24px-bottom_m {
    margin-bottom: 60px;
  }

  .project-image {
    object-fit: cover;
    height: 300px;
    padding-left: 0;
    padding-right: 0;
  }

  .cta.dark {
    text-align: center;
    width: 40%;
    padding-left: 0;
    padding-right: 0;
  }

  .cta.dark.footer {
    width: 50%;
  }

  .review-section {
    padding: 64px 60px;
  }

  .testimonial-block._120px-bottom_margin {
    display: block;
  }

  .stcky-reviews {
    position: static;
  }

  .heading-32, .heading-32._24px_margin_bottom {
    font-size: 32px;
  }

  .process {
    padding: 64px 60px;
  }

  .get-in-touch {
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .social-media-icons {
    margin-bottom: 32px;
  }

  .div-block-3 {
    align-self: flex-end;
    padding-top: 0;
  }

  .project-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }

  .project-wrapper.main {
    padding-bottom: 0;
    padding-left: 65px;
    padding-right: 65px;
  }

  .subfooter-footer {
    padding-top: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .cta-copy.dark {
    text-align: center;
    width: 40%;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-copy.dark.footer {
    width: 50%;
  }

  .image-grid {
    grid-template-rows: 1fr auto;
    grid-template-columns: max-content max-content;
    align-content: space-between;
    justify-items: baseline;
  }

  .featured-image {
    width: 100%;
  }

  .image-9 {
    max-width: 100%;
    height: 275px;
  }

  .icon-2, .icon-3 {
    font-size: 20px;
  }

  .slide-nav {
    font-size: 7px;
  }

  .sub_head {
    font-size: 16px;
  }

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

@media screen and (max-width: 479px) {
  .brand {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 21px;
    padding-bottom: 22px;
    display: inline-block;
  }

  .brand.w--current {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 21px;
    padding-bottom: 22px;
  }

  .wrapper.grid {
    grid-template-rows: 40fr auto;
  }

  .nav-bar {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-link {
    background-color: var(--black);
    text-align: left;
    padding-left: 32px;
  }

  .nav-link:hover {
    background-color: var(--blackgrey);
  }

  .nav-link:visited {
    color: var(--white);
  }

  .nav-link.button {
    background-color: var(--blue);
    background-image: none;
  }

  .logo {
    width: 90%;
    height: auto;
  }

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

  .menu-button {
    background-color: var(--blackgrey);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    display: none;
  }

  .menu-button:active {
    border: 1px none var(--blackgrey);
    background-color: var(--blackgrey);
  }

  .menu-button.w--open {
    background-color: var(--blackgrey);
  }

  .hero-section {
    margin-bottom: 0;
    padding: 12vh 20px;
  }

  .heading_64px {
    margin-bottom: 0;
    font-size: 40px;
    line-height: 130%;
  }

  .hero-text-block {
    margin-top: -30px;
    padding: 0;
  }

  .paragraph_20.hero-paragraph.light-grey {
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 16px;
  }

  .paragraph_20.hero-paragraph.light-grey.footer {
    padding-right: 0%;
    font-size: 16px;
  }

  .paragraph_20.hero-paragraph.light-grey.footer.case {
    margin-top: 24px;
    margin-bottom: 0;
    padding-bottom: 55px;
    font-size: 16px;
  }

  .experience {
    padding-left: 20px;
    padding-right: 20px;
  }

  .overline {
    font-size: 12px;
  }

  .heading_48 {
    font-size: 28px;
  }

  .heading_48._24px_margin_bottom {
    max-width: none;
    font-size: 28px;
  }

  .heading_48.work {
    font-size: 28px;
  }

  .experience-grid {
    grid-template-rows: auto auto auto;
    grid-template-areas: "Area-Top Area-Top"
                         "Area-Bottom-Left ."
                         "Area-Bottom-Right Area-Bottom-Right";
    grid-auto-columns: .25fr;
  }

  .number {
    color: var(--blue);
    text-align: left;
    font-size: 80px;
    font-weight: 700;
  }

  .heading_24, .heading_24.light-grey {
    font-size: 20px;
  }

  .heading_24._48pxm {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .experience-block {
    padding-bottom: 40px;
    padding-right: 0;
  }

  .skills {
    padding: 48px 20px;
  }

  .paragraph_18.light-grey {
    font-size: 16px;
  }

  .paragraph_18.light-grey._40px-margin-bottom.footer {
    font-size: 14px;
  }

  .skill-child {
    padding-right: 0;
  }

  .normal-wrapper.footer {
    padding: 20px;
  }

  .projects-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-image {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .cta.dark {
    text-align: center;
    width: 60%;
    padding: 20px;
  }

  .cta.dark.footer {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .project-intro-block._48px-right_p._80px-bottom_m {
    margin-bottom: 0;
  }

  .project-intro-block._48px-right_p._80px-bottom_m.mobile-padding {
    margin-bottom: 24px;
  }

  .review-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-block._120px-bottom_margin {
    margin-bottom: 32px;
    display: block;
  }

  .testimonial-text {
    border-color: var(--level-1);
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-text:hover {
    border-color: var(--dim-grey);
  }

  .stcky-reviews {
    max-width: 100%;
  }

  .heading-32 {
    font-size: 30px;
  }

  .heading-32._24px_margin_bottom {
    max-width: 75%;
    font-size: 28px;
  }

  .process {
    padding-left: 20px;
    padding-right: 20px;
  }

  .get-in-touch {
    padding: 20px 20px 10px;
  }

  .social-media-icon {
    padding-right: 16px;
  }

  .footer-link {
    font-size: 13px;
  }

  .project-wrapper {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-wrapper.main {
    padding: 60px 30px 0;
  }

  .projects.case-study {
    height: auto;
  }

  .subfooter-footer {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading_24-project {
    font-size: 24px;
  }

  .heading_24-project.first {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .subhead {
    font-size: 20px;
  }

  .lottie-animation {
    width: 40px;
  }

  .get_in_touch._48px-right_p._80px-bottom_m {
    margin-bottom: 20px;
  }

  .testimonial-block-top._120px-bottom_margin {
    margin-bottom: 32px;
    display: block;
  }

  .cta-copy.dark {
    text-align: center;
    width: 60%;
    padding: 20px;
  }

  .cta-copy.dark.footer {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .overline_16px-link {
    font-size: 12px;
  }

  .image-grid {
    float: none;
    clear: none;
    grid-column-gap: 10px;
    grid-row-gap: 16px;
    text-align: left;
    grid-template-rows: 1fr auto;
    grid-template-columns: max-content max-content;
    grid-auto-columns: 1fr;
    place-content: start space-around;
    place-items: center;
    display: grid;
  }

  .underline, .underline-right {
    font-size: 12px;
  }

  .image-9 {
    max-width: 100%;
    height: 175px;
  }

  .slide-nav {
    font-size: 5px;
  }

  .sub_head {
    font-size: 12px;
    display: inline;
  }

  .publication-header {
    height: 35vh;
  }

  .project-highlight-div-xix {
    padding-left: 30px;
    padding-right: 30px;
  }

  .branding-header {
    height: 35vh;
  }

  .project-highlight-div-gm {
    padding-left: 30px;
    padding-right: 30px;
  }

  .web-header, .client-header {
    height: 35vh;
  }
}

#w-node-_1a0f3626-ba43-4a76-3dd8-379eec1c85dd-a2cda75d {
  order: -9999;
  place-self: center;
}

#w-node-_0776d628-939e-1679-8738-dadd13cd351a-a2cda75d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_90777e5e-f604-2a8b-4492-41d924967820-a2cda75d {
  grid-area: Area-Bottom-Right;
}

#w-node-d91a1927-e7d2-47eb-c93e-fd5f68996bee-a2cda75d {
  grid-area: Area-Top;
}

#w-node-_36617f86-b6f4-2ea0-4982-a95167aece05-a2cda75d {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-c2307c4a-c05c-5fd0-0970-9f72b5ddb233-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-d85f3150-b546-9f10-ab80-1be322ea0b97-84cda764, #w-node-_1b3311c8-059b-3b2b-24e2-01c6125819ae-84cda764, #w-node-d053099c-04c4-eba5-5344-6ea4654feed2-84cda764 {
  place-self: center start;
}

#w-node-_24f97b1f-0c4f-f1df-0012-5421295ef7f3-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_79557ce5-c1dd-5bd2-33b1-88c971a7c5db-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_4a21b562-d572-8a44-bd5e-a0f0cf297286-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_7622c4f1-27ee-00e5-9ed9-73c7d723a2b2-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-d61609e9-da2a-aebc-10a1-10d7cc14dc7d-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_206b0483-6361-bce9-8f74-6f771d966820-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_79166a69-73b4-8728-fac5-cc140429273d-84cda764, #w-node-_182d4501-5bc6-93d6-3550-a50980f35954-84cda764, #w-node-faaec75f-a4d7-8d19-f781-fac22684f26a-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_52417214-bd0f-d55f-a51a-d91f06d0f706-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_52417214-bd0f-d55f-a51a-d91f06d0f707-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_52417214-bd0f-d55f-a51a-d91f06d0f708-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_52417214-bd0f-d55f-a51a-d91f06d0f709-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_52417214-bd0f-d55f-a51a-d91f06d0f70a-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-_52417214-bd0f-d55f-a51a-d91f06d0f70b-84cda764 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_36617f86-b6f4-2ea0-4982-a95167aece05-a2cda75d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_36617f86-b6f4-2ea0-4982-a95167aece05-a2cda75d {
    grid-column: span 1 / span 1;
  }

  #w-node-_1b3311c8-059b-3b2b-24e2-01c6125819ae-84cda764 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_10c815ae-e603-acd7-f7ca-8caa926db76f-a2cda75d {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: auto;
  }

  #w-node-_88f99ca6-9c35-2ff0-d901-8d006af748b0-a2cda75d {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_88f99ca6-9c35-2ff0-d901-8d006af748bd-a2cda75d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_88f99ca6-9c35-2ff0-d901-8d006af748cb-a2cda75d {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-af992269-7a92-686b-afd1-28c51083be25-a2cda75d {
    grid-area: 4 / 1 / 5 / 3;
  }
}


@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-ThinItalic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-HeavyItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Duplicatesans';
  src: url('../fonts/DuplicateSans.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoletaalt';
  src: url('../fonts/RecoletaAlt-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-UltralightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-ThinItalic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-SemiboldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Ultralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-HeavyItalic.woff2') format('woff2'), url('../fonts/SFProDisplay-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Heavy.woff2') format('woff2'), url('../fonts/SFProDisplay-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprodisplay';
  src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Ultralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Heavy.woff2') format('woff2'), url('../fonts/SF-Pro-Rounded-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf pro rounded';
  src: url('../fonts/SF-Pro-Rounded-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-SemiboldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-HeavyItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfprotext';
  src: url('../fonts/SFProText-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartatext';
  src: url('../fonts/PlusJakartaText-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plusjakartadisplay';
  src: url('../fonts/PlusJakartaDisplay-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}