:root {
  --light-grey: #ddd;
  --primary-brand-color: #cda852;
  --section-padding: 1.25rem;
  --light-color: white;
  --dark-color: black;
  --secondary-brand-color: #8b7e6b;
  --mid-grey: #73777b;
}

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

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

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

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

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

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

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

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

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

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

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

body {
  color: var(--light-grey);
  background-color: #131313;
  font-family: Cormorant, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.125;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 58px;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
  font-family: Sora, sans-serif;
}

a {
  color: var(--primary-brand-color);
  text-decoration: underline;
}

.section-padding {
  padding-right: var(--section-padding);
  padding-left: var(--section-padding);
}

.container {
  z-index: 1;
  max-width: 1100px;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.style-guide-grid {
  grid-column-gap: 40px;
  grid-row-gap: 41px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.style-guide-category {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-bottom: 5px;
  font-weight: 700;
}

.style-guide-edit {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 10px;
  margin-bottom: 10px;
}

.light-text {
  color: var(--light-color);
}

.style-guide-element {
  color: #fff;
  background-color: #3b83f7;
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class {
  color: #fff;
  background-color: #3b83f7;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class.tag-class {
  background-color: #cc55b8;
}

.style-guide-edit-wrap {
  opacity: .4;
}

.style-guide-edit-wrap:hover {
  opacity: 1;
}

.small-p {
  font-size: 14px;
  line-height: 18px;
}

.medium_p {
  font-family: Ppneuemontreal, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
}

.style-guide-color-wrap {
  height: 100px;
  background-color: var(--dark-color);
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  padding: 15px 30px;
  display: flex;
}

.style-guide-color-wrap.primary-color-background {
  background-color: var(--primary-brand-color);
}

.style-guide-color-wrap.secondary-color-background {
  background-color: var(--secondary-brand-color);
}

.style-guide-color-wrap.mid-grey-color-background {
  background-color: var(--mid-grey);
}

.style-guide-color-wrap.light-color-background, .style-guide-color-wrap.white-background {
  background-color: var(--light-color);
}

.style-guide-color-wrap.light-grey-color-background {
  background-color: var(--light-grey);
}

.button {
  background-color: var(--primary-brand-color);
  border-radius: 1rem;
  margin-top: 0;
  transition: opacity .2s;
}

.button.ghost-button {
  border: 2px solid var(--primary-brand-color);
  color: var(--primary-brand-color);
  background-color: rgba(0, 0, 0, 0);
}

.button.ghost-button.invese-ghost {
  border-color: var(--light-color);
  color: var(--light-color);
}

.button.inverse-button {
  background-color: var(--light-color);
  color: var(--primary-brand-color);
}

.button.form-submit {
  margin-top: 15px;
}

.style-guide-grid-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  justify-items: stretch;
  padding-top: 10px;
  display: grid;
}

.list {
  padding-left: 15px;
}

.list-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-field.form-select {
  background-color: var(--light-color);
}

.form-lable {
  margin-top: 20px;
}

.form-checkbox {
  width: 20px;
}

.style-guide-layout-demo {
  background-color: #d3d3d3;
  border: 1px solid #d3d3d3;
}

.style-guide-layout-demo.section-padding {
  margin-top: 30px;
}

.style-guide-white-div {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 20px;
}

.popup-background-wrap {
  z-index: 100;
  background-color: rgba(0, 0, 0, .8);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.popup-card {
  max-width: 450px;
  background-color: var(--light-color);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
  position: relative;
}

.style-guide-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 20px;
  display: flex;
}

.close-popup-button {
  color: var(--dark-color);
  padding: 15px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  top: -5px;
  bottom: auto;
  left: auto;
  right: -5px;
}

.style-guide-popup-wrap {
  background-color: var(--dark-color);
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 22px;
  display: flex;
}

.delete-this {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.medium-p {
  font-size: 1.125rem;
  line-height: 1.25;
}

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

.large-p {
  font-size: 22px;
  line-height: 28px;
}

.heading-2 {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.125;
}

.heading-2.white {
  width: 100%;
  color: var(--light-color);
  font-size: 2rem;
}

.heading-2.white.projcets-heading {
  width: auto;
  height: auto;
}

.heading-2.white.info {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 3rem;
}

.heading-2.white.footer {
  width: 80%;
  height: auto;
  font-size: 1.5rem;
}

.hero-section {
  z-index: 1;
  height: 100vh;
  position: relative;
}

.hero-text-wrap {
  width: 65%;
  height: 100%;
  max-height: 100%;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-content: stretch;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.h1 {
  font-size: 3.5rem;
}

.hero-p {
  font-size: 1.5rem;
  font-weight: 300;
}

.hero-back-img {
  z-index: -5;
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.about-section {
  z-index: 1;
  background-color: var(--light-color);
  position: relative;
}

.about-section-title-wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-navbar {
  border-bottom: 1px solid var(--light-grey);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, .4);
  padding-top: 1rem;
  padding-bottom: .5rem;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-link {
  color: var(--light-color);
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all .45s cubic-bezier(.445, .05, .55, .95);
}

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

.nav-link.w--current {
  color: var(--light-color);
  font-weight: 400;
  text-decoration: underline;
}

.nav-link.underline {
  text-decoration: underline;
}

.section-title {
  color: var(--dark-color);
  font-family: Sora, sans-serif;
  font-weight: 600;
}

.section-title.white {
  color: var(--light-color);
  padding-bottom: .75rem;
}

.about-cont-wrap {
  grid-row-gap: 4.5rem;
  background-color: rgba(255, 254, 254, .6);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
}

.about-section-text-wrap {
  grid-row-gap: 4.5rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.about-text-small-p {
  width: 50%;
  color: var(--dark-color);
  text-align: center;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

.about-text-medium-p {
  width: 740px;
  color: var(--dark-color);
  text-align: center;
  font-family: Sora, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2rem;
}

.image {
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.right-arrow-img {
  z-index: -5;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.left-arrow-img {
  z-index: -5;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.services-section {
  z-index: 1;
  background-color: #000;
  flex-direction: row;
  position: relative;
}

.services-cont-wrap {
  z-index: 0;
  padding-top: 16rem;
  padding-left: .1875rem;
  display: flex;
  position: relative;
}

.services-section-text-wrap {
  width: 100%;
  grid-row-gap: .75rem;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 7rem;
  padding-top: 64px;
  display: flex;
}

.services-text-small-p {
  width: 100%;
  color: var(--light-color);
  text-align: left;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  display: block;
}

.services-grid-cont-box {
  grid-row-gap: 1.5rem;
  border: 1px solid var(--primary-brand-color);
  border-radius: 8px;
  flex-direction: column;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
  display: flex;
}

.services-grid-title {
  color: var(--light-color);
  text-align: left;
  padding-top: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.services-grid-text {
  color: var(--secondary-brand-color);
  font-family: Sora, sans-serif;
}

.services-grid-title-wrap {
  grid-column-gap: .75rem;
  text-align: center;
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.services-back-img {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.project-section {
  background-color: #000;
}

.projects-title-cont-wrap {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-top: 10rem;
  display: flex;
}

.projects-grid-3col-2row {
  grid-template-columns: 1fr 1fr 1fr;
}

.projects-grid-box {
  grid-row-gap: 1rem;
  border: 1px solid var(--primary-brand-color);
  border-radius: 8px;
  flex-direction: column;
  padding-bottom: .5rem;
  display: flex;
}

.projects-grid-box-title {
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.projects-grid-box-text {
  color: var(--secondary-brand-color);
  font-family: Sora, sans-serif;
}

.projects-gird-cont-wrap {
  grid-row-gap: 1rem;
  flex-direction: column;
  padding: 1rem;
  display: flex;
}

.projects-footer-wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.projects-footer-text {
  color: var(--light-color);
  margin-top: 3rem;
  margin-bottom: .5rem;
  font-weight: 700;
}

.projects-catalog-button {
  background-color: rgba(56, 152, 236, 0);
  font-size: 1.125rem;
  font-weight: 700;
  transition: all .45s cubic-bezier(.445, .05, .55, .95);
}

.projects-catalog-button:hover {
  color: var(--primary-brand-color);
}

.projects-footer-button-wrap {
  grid-column-gap: .5rem;
  border: 1px solid var(--primary-brand-color);
  color: var(--light-color);
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: .5rem;
  display: flex;
}

.info-section {
  z-index: 1;
  background-color: #fff;
  position: relative;
}

.info-cont-wrap {
  width: 100%;
  color: var(--light-color);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  display: flex;
}

.info-heading-wrap {
  width: 50%;
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.image-2 {
  z-index: 2;
  position: absolute;
}

.downward-vec-img {
  z-index: 1;
  width: 100%;
  max-width: none;
  position: absolute;
}

.polygon-back-img {
  z-index: -1;
  width: 100%;
  max-width: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

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

.info-grid-4col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-self: stretch;
  margin-top: 20.3rem;
  padding-bottom: 6rem;
}

.info-grid-cont-box {
  grid-row-gap: 1.75rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.info-grid-big-text {
  color: var(--primary-brand-color);
  font-family: Sora, sans-serif;
  font-size: 4rem;
  font-weight: 600;
}

.info-grid-small-text {
  color: var(--secondary-brand-color);
  font-size: 1.8rem;
  font-weight: 700;
}

.spline-section {
  background-color: #000;
  position: relative;
}

.vector-section {
  z-index: 0;
  background-color: var(--dark-color);
}

.vector-con-wrap {
  background-color: #000;
  padding-bottom: 28rem;
}

.cta-section {
  background-color: #000;
  padding-bottom: 1rem;
}

.cta-cont-wrap {
  grid-row-gap: 1rem;
  background-color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cta-grid-3col-wrap {
  width: 100%;
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: stretch;
  justify-items: stretch;
}

.cta-grid-box {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  display: flex;
}

.cta-grid-box.centered {
  flex-direction: column;
  align-items: flex-start;
}

.cta-grid-box.centered.big {
  width: 175%;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  margin-left: -8rem;
  padding-left: 0;
}

.cta-grid-box.right {
  align-items: flex-start;
  padding-left: 87px;
}

.text-block {
  border-bottom: 1px solid var(--primary-brand-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-text-link {
  color: var(--light-color);
  font-family: Sora, sans-serif;
  font-weight: 300;
  text-decoration: none;
}

.cta-link-header {
  border-bottom: 1px solid var(--primary-brand-color);
  color: var(--light-color);
  padding-right: 63px;
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-mid-text {
  text-align: center;
  font-family: Sora, sans-serif;
  font-weight: 300;
  line-height: 1.5rem;
}

.cta-button {
  border: 1px solid var(--primary-brand-color);
  color: var(--primary-brand-color);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  font-family: Sora, sans-serif;
}

.sm-logo-wrap {
  grid-column-gap: 1.5rem;
  display: flex;
}

.cta-contact-text {
  width: 100%;
  font-family: Sora, sans-serif;
  font-weight: 300;
}

.line-img {
  width: 100%;
  margin-top: 9rem;
  position: absolute;
}

.footer-section {
  background-color: #000;
  position: relative;
}

.footer-text-wrap {
  justify-content: space-between;
  display: flex;
}

.footer-left-text, .footer-right-text {
  font-family: Sora, sans-serif;
}

.footer-cont-wrap {
  border-top: 1px solid var(--secondary-brand-color);
  background-color: var(--dark-color);
  align-self: stretch;
  padding-top: 1rem;
}

.footer-line-img {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.footer-text-link {
  text-decoration: none;
}

.services-back-img-wrap {
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: auto;
}

.info-back-img-wrap {
  z-index: -2;
  min-width: 100svh;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.downward-vec-img--vec {
  z-index: 2;
  width: 50%;
  max-width: none;
  display: block;
}

.vector-back-img-wrap {
  position: absolute;
}

.spline-img {
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
}

.divider {
  min-height: 50svh;
  opacity: 0;
  flex-direction: column;
  justify-content: space-between;
  display: block;
}

.back-img-wrap {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 2.5rem;
  }

  .hero-section.section-padding {
    height: 100%;
  }

  .hero-text-wrap {
    width: 60%;
    grid-row-gap: .5rem;
    margin-bottom: 1rem;
  }

  .h1 {
    font-size: 2.5rem;
  }

  .hero-p {
    font-size: 1.2rem;
  }

  .hero-back-img {
    width: auto;
    height: 100%;
    max-width: 100%;
  }

  .about-section-title-wrap {
    width: 60%;
    text-align: center;
  }

  .nav-menu {
    background-color: var(--dark-color);
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .about-cont-wrap, .about-section-text-wrap {
    grid-row-gap: 2rem;
  }

  .about-text-small-p {
    font-size: .875rem;
    line-height: 1.4;
  }

  .about-text-medium-p {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .services-cont-wrap {
    grid-column-gap: 2rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .services-section-text-wrap {
    grid-row-gap: 0rem;
    margin-bottom: 2rem;
    margin-right: 0;
    padding-top: 0;
  }

  .services-text-small-p {
    line-height: 1.5;
  }

  .services-grid-cont-box {
    background-color: var(--dark-color);
  }

  .projects-grid-3col-2row {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .info-grid-4col {
    display: flex;
  }

  .cta-grid-3col-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .cta-grid-box.centered.big {
    width: 50%;
    margin-left: 0;
  }

  .cta-grid-box.left {
    align-items: flex-start;
  }

  .cta-grid-box.right {
    align-items: flex-end;
    padding-left: 0;
  }

  .cta-contact-text {
    width: auto;
    text-align: right;
    align-self: flex-end;
  }

  .menu-button {
    border: 1px solid var(--light-grey);
    border-radius: 8px;
  }

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

@media screen and (max-width: 767px) {
  .container {
    flex: 0 auto;
  }

  .style-guide-color-wrap {
    height: auto;
  }

  .heading-2 {
    font-size: 1.5rem;
  }

  .heading-2.white.info {
    font-size: 2rem;
  }

  .h1 {
    font-size: 1.875rem;
  }

  .hero-p {
    font-size: 1rem;
  }

  .nav-menu {
    float: none;
  }

  .info-cont-wrap {
    padding-top: 2rem;
  }

  .info-grid-4col {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    margin-top: 8rem;
    padding-bottom: 2rem;
    display: grid;
  }

  .info-grid-cont-box {
    grid-row-gap: 1rem;
  }

  .info-grid-big-text {
    font-size: 3rem;
  }

  .info-grid-small-text {
    font-size: 1.5rem;
  }

  .info-back-img-wrap {
    min-width: auto;
  }
}

@media screen and (max-width: 479px) {
  .style-guide-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .style-guide-grid-item-wrap {
    grid-template-columns: 1fr;
  }

  .heading-2.white.info {
    font-size: 1.3rem;
  }

  .hero-section.section-padding {
    min-height: 100svh;
  }

  .hero-text-wrap {
    width: auto;
  }

  .about-text-small-p {
    width: 80%;
  }

  .about-text-medium-p {
    width: 90%;
  }

  .right-arrow-img {
    height: auto;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .left-arrow-img {
    height: auto;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .services-grid-2col2row, .projects-grid-3col-2row {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .info-cont-wrap {
    padding-top: 1rem;
  }

  .info-grid-4col {
    margin-top: 2rem;
  }

  .info-grid-big-text {
    font-size: 2rem;
  }

  .info-grid-small-text {
    font-size: 1rem;
  }

  .cta-grid-3col-wrap {
    flex-direction: column;
  }

  .cta-grid-box.centered.big {
    width: auto;
  }

  .cta-grid-box.left {
    align-self: stretch;
    align-items: center;
  }

  .cta-grid-box.right {
    justify-content: center;
    align-items: center;
  }

  .cta-link-header {
    text-align: center;
    align-self: stretch;
    padding-right: 0;
  }

  .cta-contact-text {
    text-align: center;
    align-self: flex-start;
  }

  .services-back-img-wrap {
    display: none;
    overflow: visible;
  }

  .downward-vec-img--vec {
    margin-top: 0;
  }
}

#w-node-_3cfbc696-85be-d66a-8cc6-0dfbcfe3dfa5-5c70eb62, #w-node-_492c1e0d-50ef-1193-d979-7e9374831a75-5c70eb62, #w-node-_9012d834-b9e3-3620-7926-27a0c621861e-5c70eb62, #w-node-_023de739-37f7-3c92-61e7-b8d3e0bdcc3a-5c70eb62, #w-node-_0ab2f316-e3f6-2722-a42c-e7eabaad5385-5c70eb62, #w-node-_2495c577-e841-0a5f-97fe-44cb33fb7580-5c70eb62, #w-node-_4fcda286-05d7-62e6-3545-dfee774cdfc6-5c70eb62, #w-node-_066c43b6-3bfe-c0bd-ae1a-a947e2377660-5c70eb62, #w-node-b872a3fd-3445-79b3-6e76-f7e7d503dc0d-5c70eb62, #w-node-bd2db0f1-0d54-31d3-d8e7-9fc794de9fe2-5c70eb62, #w-node-_365e8445-38b3-d350-4d05-ffeb29a25e3a-5c70eb62, #w-node-fabc0243-87ef-f322-3228-9a46212b2420-5c70eb62, #w-node-ac812d01-0986-b98d-4c1f-f90d6d262894-5c70eb62, #w-node-_5cc2a023-1ebd-942e-71e3-b81b5a56b442-5c70eb62, #w-node-ddb07fc6-29ba-5805-8b84-662b0bb66998-5c70eb62, #w-node-edbfacbb-704c-5cce-2d24-dac306f953ad-5c70eb62 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af6ac8e3-b1ce-cda6-23dc-a32b43a6a065-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cef64361-1f9b-8732-7793-1d4785eeed97-5c70eb63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4313243-b51c-03bb-11ad-c431ebe2a80b-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d0d2d682-3502-a29f-1a22-871f47028af2-5c70eb63, #w-node-eb00ca3d-f0c1-8354-e9aa-1faf574614be-5c70eb63, #w-node-_85cb43b8-5298-9d0a-b169-853350d81ae0-5c70eb63, #w-node-_5ce572de-a6ee-b264-99b3-588be3f1debe-5c70eb63, #w-node-e573c9ae-1e4b-15b0-7098-638502628a9c-5c70eb63, #w-node-_0c02166c-4ee3-9762-cc8d-f567a47991b2-5c70eb63, #w-node-_31bfd8e3-b79a-c6a8-c644-de3e1d6aef06-5c70eb63, #w-node-_8101b2ee-d87b-6d50-ecc4-1cc6560df4db-5c70eb63, #w-node-aa9291ec-5ca1-3ae2-496b-ff742d602a68-5c70eb63, #w-node-_479385eb-f044-0d6d-9fb9-3510fe0092c5-5c70eb63, #w-node-_36d6a540-3dac-ba1b-4887-4e460e7ddc86-5c70eb63, #w-node-_58a77a61-8d2a-f298-bcf8-5b5d6bda4258-5c70eb63, #w-node-_84eebd00-708d-d564-7474-81a48d7f1aa8-5c70eb63, #w-node-c0ceb277-bbf2-2cf4-4072-7fa273a7e783-5c70eb63, #w-node-_293d8aee-201d-8e8e-7d11-7b9b1bf3932f-5c70eb63, #w-node-e02f6cf5-e81b-07a2-d153-c916403846e7-5c70eb63, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec6-5c70eb63, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec7-5c70eb63, #w-node-_40d4d6df-e38b-f778-5115-ea8f93d0542e-5c70eb63, #w-node-c9d7c3ab-d31b-4fe2-e290-666f73a76a6a-5c70eb63, #w-node-_1cb2eaff-c085-9ab3-df4a-1725ee4f484b-5c70eb63, #w-node-_1229091c-99d0-b728-5727-37785a9996e2-5c70eb63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f637bbff-835b-0236-4124-4ac1eef82ac3-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_826fbc41-7f9a-f875-b76e-3e9c3ff2002b-5c70eb63, #w-node-ed82fd76-b394-3b31-d285-0d24c40a28ca-5c70eb63, #w-node-_11717b33-079b-321a-8523-e173de28bfe2-5c70eb63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e383549d-c8b3-87cd-ee42-73f99aa01117-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55db6e40-b97b-9254-09df-2929df1b67ad-5c70eb63, #w-node-_8a96fce1-c74f-35f2-c6f4-3587e7d0e79a-5c70eb63, #w-node-bfdc7d70-2863-8331-b4f9-ad395f381310-5c70eb63, #w-node-_8219438d-b20e-01aa-f124-d537d0821573-5c70eb63, #w-node-df52a5df-cf6e-cd43-ccd8-20633efad3fb-5c70eb63, #w-node-cd8a551e-24bb-f985-80c2-ed654c7036ec-5c70eb63, #w-node-c73ec5c5-9d1c-c71a-647d-93fd71def3a3-5c70eb63, #w-node-b28db8fa-48cc-0fc7-f454-c90e65fa4e38-5c70eb63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18765f94-c4e6-c755-ac1d-a3de06ce4dbc-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91cfe370-0245-0733-cc80-e0128461d2a5-5c70eb63, #w-node-_983a314a-baad-360b-c27c-560bd790abd0-5c70eb63, #w-node-dec986e8-2989-ac3d-9697-51959cdb817b-5c70eb63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_539debc5-c3bf-e500-5373-a3259d80206f-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aecd07ed-cd8b-1716-e906-11a45aa52757-5c70eb63, #w-node-_432c5549-5a58-4527-4926-71dbf8e6a1d1-5c70eb63, #w-node-_165d79eb-b2a5-28c4-eb36-16dde57c961e-5c70eb63, #w-node-c962fc9a-3fcf-08e3-bdf2-4ecd4a9701dd-5c70eb63, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554aa-5c70eb63, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554ab-5c70eb63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bca97c44-ed2a-c4d2-234a-6c62ee4dc6b5-5c70eb63 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_65cb131a-038a-ef25-ea34-fb9ed9c178b0-5c70eb63, #w-node-_50c4eecd-635c-c0cb-6b83-c35774246b79-5c70eb63, #w-node-_3cfbc696-85be-d66a-8cc6-0dfbcfe3dfa5-5e508a39, #w-node-_492c1e0d-50ef-1193-d979-7e9374831a75-5e508a39, #w-node-_9012d834-b9e3-3620-7926-27a0c621861e-5e508a39, #w-node-_023de739-37f7-3c92-61e7-b8d3e0bdcc3a-5e508a39, #w-node-_0ab2f316-e3f6-2722-a42c-e7eabaad5385-5e508a39, #w-node-_2495c577-e841-0a5f-97fe-44cb33fb7580-5e508a39, #w-node-_4fcda286-05d7-62e6-3545-dfee774cdfc6-5e508a39, #w-node-_066c43b6-3bfe-c0bd-ae1a-a947e2377660-5e508a39, #w-node-b872a3fd-3445-79b3-6e76-f7e7d503dc0d-5e508a39, #w-node-bd2db0f1-0d54-31d3-d8e7-9fc794de9fe2-5e508a39, #w-node-_365e8445-38b3-d350-4d05-ffeb29a25e3a-5e508a39, #w-node-fabc0243-87ef-f322-3228-9a46212b2420-5e508a39, #w-node-ac812d01-0986-b98d-4c1f-f90d6d262894-5e508a39, #w-node-_5cc2a023-1ebd-942e-71e3-b81b5a56b442-5e508a39, #w-node-ddb07fc6-29ba-5805-8b84-662b0bb66998-5e508a39, #w-node-edbfacbb-704c-5cce-2d24-dac306f953ad-5e508a39 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-SemiBolditalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal';
  src: url('../fonts/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ppneuemontreal Book';
  src: url('../fonts/PPNeueMontreal-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}