@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueMedium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueLight.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueRoman.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Helvetica Neue;
  src: url('../fonts/HelveticaNeueBold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #191919;
  --black: black;
  --gray-light: #cdcdcd;
  --woodsmoke\<deleted\|variable-b64243c0-2cf5-bd08-1175-63ba1b96273d\>: #1a1a1a;
  --violet-2: #edeaf7;
  --violet-1: #f1eff6;
  --violet-4: #c4b5fd;
  --violet-3: #eddeff;
  --white: white;
  --light: #f1f1f1;
  --biloba-flower\<deleted\|variable-5aefb3c5\>: #c4b5fd;
  --alabaster\<deleted\|variable-6830adfc-b734-57fa-9c3e-60ddc794ca32\>: #fcfcfc;
  --ice: #fcfcfc;
}

.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-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.body {
  color: var(--dark);
  background-color: #fff;
  font-family: Helvetica Neue, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.navbar_component {
  z-index: 100;
  position: fixed;
  inset: 0% 0% auto;
}

.container_large {
  width: 100%;
  max-width: 80rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.navbar_wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  display: flex;
}

.nav_logo-link {
  align-items: center;
  padding: .75rem .75rem .75rem 0;
  display: flex;
}

.nav_menu {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.menu_link {
  color: var(--black);
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: all .5s;
}

.menu_link:hover {
  border-bottom: 1px solid var(--gray-light);
}

.menu_link.w--current {
  border-bottom: 1px solid var(--gray-light);
  opacity: .5;
}

.section_header {
  padding-top: 12rem;
}

.header_wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  border-radius: 0;
  flex-flow: column;
  display: flex;
}

.header_heading {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.heading-texts {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 64rem;
  display: flex;
}

.heading_paragraph {
  text-align: center;
  max-width: 40rem;
}

.header_buttons {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cards_wrapper {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.cards_grid {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: stretch center;
}

.card {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border: 1px solid var(--violet-2);
  background-color: var(--violet-1);
  color: var(--black);
  border-radius: .875rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 3rem;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.card:hover {
  border: 1px solid var(--violet-4);
  background-color: var(--violet-3);
}

.card_icon {
  width: 100%;
  max-width: 4rem;
  height: auto;
}

.section_portoflio {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.portoflio_heading {
  grid-row-gap: 50px;
  width: 100%;
  max-width: 26rem;
}

.title-section {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.portfolio_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.project_card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--black);
  flex-direction: column;
  text-decoration: none;
  display: flex;
}

.project_card.spacing {
  margin-top: 4rem;
}

.project_cover {
  border-radius: .875rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.project_name {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.portfolio_wrapper {
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.project_image {
  object-fit: cover;
  flex: none;
}

.section_process {
  background-color: var(--black);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.process_wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.process_heanding {
  color: var(--white);
  text-align: center;
  width: 100%;
  max-width: 60rem;
}

.process_grid {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

.accordion_item {
  z-index: 4;
  background-color: #fff;
  border-radius: .5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.accordion_heading {
  grid-column-gap: 25px;
  align-items: center;
  display: flex;
}

.circle_number {
  background-color: var(--black);
  color: var(--light);
  text-align: center;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.process-cta {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.process-paragraph {
  max-width: 30rem;
}

.accordion_title {
  cursor: pointer;
  flex-flow: row;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.accordion_content {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  overflow: hidden;
}

.accordion-icon {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.section_services {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.services_wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.services-heading {
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 50rem;
}

.services_card-item {
  grid-row-gap: 2rem;
  background-color: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: .875rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3rem;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.services_card-item:hover {
  background-color: var(--violet-2);
}

.services_icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 3rem;
  height: auto;
  display: flex;
  position: relative;
  left: -.25rem;
}

.section_text-scroll {
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.text-scroll-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: #1a1a1a;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-scroll-item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: none;
  align-items: center;
  display: flex;
}

.text-scroll_wrapper {
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.text-scroll-content {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.section_footer {
  color: var(--light);
  padding-top: 8rem;
}

.footer-top {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 4rem;
  display: flex;
}

.footer-component {
  background-color: var(--black);
}

.footer_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.credits_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid #fff3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  place-items: center stretch;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.clock-code {
  color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-column {
  grid-row-gap: 1.4rem;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-links {
  color: var(--gray-light);
  letter-spacing: .25px;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.footer-links:hover {
  opacity: .5;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-links-block {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact_header {
  flex-direction: column;
  display: flex;
}

.contact-heading-itemns {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  margin-bottom: 50px;
}

.contac-link {
  color: var(--black);
  justify-content: flex-start;
  align-items: flex-end;
  font-size: 2.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.contac-link:hover {
  color: #1a1a1a80;
}

.contact-form {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border: 1px solid #e4e4e4;
  border-radius: .5rem;
  flex-flow: column;
  align-self: stretch;
  padding: 4rem;
  display: flex;
}

.field {
  background-color: #fff0;
  border-radius: .875rem;
  margin-bottom: 0;
  padding: 2rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
}

.field:focus {
  border: 1px solid var(--biloba-flower\<deleted\|variable-5aefb3c5\>);
}

.form-input {
  flex-direction: column;
  display: flex;
}

.form {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.submit-button {
  background-color: var(--violet-3);
  color: var(--black);
  border-radius: .875rem;
  padding: 1rem 1.6rem;
  font-weight: 500;
  transition: background-color .2s;
}

.submit-button:hover {
  background-color: var(--biloba-flower\<deleted\|variable-5aefb3c5\>);
}

.form-content {
  justify-content: space-between;
  display: flex;
}

.form-itemns {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  place-items: center stretch;
}

.faq_wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-heanding {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: flex-end;
}

.faq_heanding {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.faq_accordion-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.faq-accordion-heading {
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  display: flex;
}

.faq-cross {
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: .9rem;
  display: flex;
}

.faq_accordion-item {
  z-index: 5;
  cursor: pointer;
  border: 1px solid #0000001a;
  border-radius: .5rem;
  flex-direction: column;
  display: flex;
}

.faq-accordion-response {
  flex: 0 auto;
  height: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
}

.faq-number-title {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  align-items: center;
  display: flex;
}

.mob-nav-link {
  color: var(--black);
  text-decoration: none;
}

.mob-nav-link.w--current {
  color: #1a1a1a4d;
}

.navigation-mobile, .nav-sidebar {
  display: none;
}

.card_heading {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button_1 {
  border: 1px solid var(--black);
  background-color: var(--dark);
  color: var(--white);
  border-radius: .875rem;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1rem 1.6rem;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button_1:hover {
  border: 1px solid var(--violet-4);
  background-color: var(--violet-3);
  color: var(--black);
}

.success-message {
  background-color: var(--violet-1);
  padding: 100px;
}

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

.text-success {
  font-size: 1.6rem;
  line-height: 1.2;
}

.services-grid {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.contact-channels {
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.accordion-paragraph {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  cursor: pointer;
  flex-flow: column;
  flex: none;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 3rem 2rem;
  display: flex;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.nav_container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-style-h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.heading-style-h3 {
  letter-spacing: .25px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.text-size-medium {
  line-height: 1.3;
}

.logo-image.negative {
  filter: invert();
}

.nav_button {
  background-color: var(--dark);
  color: var(--white);
  border: 1px solid #0003;
  border-radius: .875rem;
  padding: 1rem 1.6rem;
  font-size: 1rem;
  transition: all .5s;
}

.nav_button:hover {
  border-color: var(--violet-4);
  background-color: var(--violet-3);
  color: var(--black);
}

.nav_button.w--current {
  justify-content: center;
  align-items: center;
  padding: .8rem 1.4rem;
  line-height: 1;
  display: flex;
}

.button_2 {
  color: var(--dark);
  background-color: #0000;
  border: 1px solid #0000001a;
  border-radius: .875rem;
  padding: 1rem 1.6rem;
  font-size: 1rem;
  transition: all .5s;
}

.button_2:hover {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}

.heading-style-h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-style-h2.text-weight-light {
  font-weight: 300;
}

.heading-style-h2.text-weight-light.text-color-light {
  color: var(--light);
}

.text-size-normal {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
}

.button_3 {
  color: var(--light);
  background-color: #0000;
  border: 1px solid #ffffff4d;
  border-radius: .875rem;
  padding: 1rem 1.6rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all .5s;
}

.button_3:hover {
  background-color: var(--white);
  color: var(--black);
}

.heading-style-h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.footer_logo-link {
  grid-column-gap: 50px;
  align-items: center;
  display: flex;
}

.input_fields {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.contact_image-team {
  background-image: url('../images/team-image.avif');
  background-position: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.section_contact-header {
  justify-content: flex-start;
  align-items: flex-start;
}

.padding-bottom {
  padding: 0;
}

.padding-bottom.padding-medium {
  padding-bottom: 8rem;
}

.padding-bottom.padding-large {
  padding-bottom: 12rem;
}

.padding-bottom.padding-small {
  padding-bottom: 2rem;
}

.icon {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.menu_butons {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.nav_button-light {
  color: var(--black);
  background-color: #fff0;
  border: 1px solid #0003;
  border-radius: .875rem;
  justify-content: center;
  align-items: center;
  padding: .8rem 1.4rem;
  font-size: 1rem;
  transition: all .5s;
  display: flex;
}

.nav_button-light:hover {
  color: var(--white);
  background-color: #000;
}

.nav_button-light.w--current {
  color: var(--black);
  background-color: #fff0;
  border: 1px solid #0000001a;
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-style-h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.nav_button-mobile {
  display: none;
}

.navbar {
  background-color: var(--white);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.container_small {
  width: 100%;
  max-width: 60rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.text-size-small {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .navbar_component {
    position: fixed;
    inset: 0% 0% auto;
  }

  .nav_menu {
    display: none;
  }

  .menu_link {
    transition: all .2s;
  }

  .menu_link:hover {
    opacity: .5;
    color: var(--woodsmoke\<deleted\|variable-b64243c0-2cf5-bd08-1175-63ba1b96273d\>);
  }

  .section_header {
    padding-top: 10rem;
  }

  .header_wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .cards_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .section_portoflio {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .portoflio_heading {
    margin-bottom: 25px;
  }

  .portfolio_grid {
    grid-column-gap: 2rem;
  }

  .project_card.spacing {
    margin-top: 50px;
  }

  .section_process {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .process_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .process_grid {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion_title {
    padding: 25px;
  }

  .section_services {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .services_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-bottom: 0;
  }

  .section_footer {
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer_grid {
    grid-row-gap: 2rem;
    flex: 1;
    grid-template-columns: 1fr 1fr;
  }

  .credits_grid {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    place-items: center start;
  }

  .contact_header {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .contact-heading-itemns {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .contact-form {
    padding: 2rem;
  }

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

  .faq_heanding {
    margin-bottom: 50px;
  }

  .sidebar_menu {
    background-color: var(--violet-1);
    border-radius: 0 0 0 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 0;
    margin-top: -1px;
    display: flex;
  }

  .mob-nav-link {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
    padding: 1.125rem 4rem;
    font-size: 1.5rem;
    display: flex;
  }

  .mob-nav-link.w--current {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    color: var(--black);
    justify-content: flex-start;
    align-items: center;
    padding: 1.125rem 4rem;
    display: flex;
  }

  .nav_button-icon {
    cursor: pointer;
    object-fit: cover;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navigation-mobile {
    flex-direction: column;
    display: block;
    position: fixed;
    inset: 0% 0% auto;
  }

  .navbar-mobile {
    z-index: 10;
    background-color: var(--alabaster\<deleted\|variable-6830adfc-b734-57fa-9c3e-60ddc794ca32\>);
    justify-content: space-between;
    align-items: center;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    display: flex;
  }

  .nav-mob-brand {
    color: var(--woodsmoke\<deleted\|variable-b64243c0-2cf5-bd08-1175-63ba1b96273d\>);
    padding-top: 25px;
    padding-bottom: 25px;
    text-decoration: none;
  }

  .nav-mob-brand.w--current {
    color: var(--dark);
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .nav-menu-btn {
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  .nav-sidebar {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
    overflow: hidden;
  }

  .services-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-channels {
    padding-left: 0;
  }

  .accordion-paragraph {
    padding: 25px;
  }

  .nav_container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-style-h1 {
    letter-spacing: 0;
    font-size: 3.4rem;
    line-height: 1.1;
  }

  .nav_button {
    display: none;
  }

  .contact_image-team {
    height: 20rem;
  }

  .padding-bottom.padding-small {
    padding-bottom: 4rem;
  }

  .menu_butons {
    justify-content: flex-end;
    align-items: center;
  }

  .nav_button-light {
    display: none;
  }

  .nav_button-mobile {
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
    overflow: hidden;
  }

  .nav_sidebar-wrapper {
    background-color: var(--white);
  }
}

@media screen and (max-width: 767px) {
  .section_header {
    padding-top: 8rem;
  }

  .header_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

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

  .card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 2rem;
  }

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

  .project_card.spacing {
    margin-top: 0;
  }

  .portfolio_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .process-cta {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .accordion_content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services_card-item {
    grid-row-gap: 1rem;
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

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

  .heading-style-h1 {
    letter-spacing: 0;
    font-size: 2rem;
  }

  .heading-style-h3 {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 1.3rem;
  }

  .heading-style-h2.text-weight-light, .heading-style-h2.text-weight-light.text-color-light {
    font-size: 1.4rem;
  }

  .text-size-normal {
    font-size: 1rem;
    line-height: 1.4;
  }

  .button_3 {
    flex: none;
  }

  .text-size-small {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 479px) {
  .header_heading {
    align-items: stretch;
  }

  .header_buttons {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

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

  .card {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
  }

  .portfolio_grid {
    grid-column-gap: 2.4rem;
    grid-row-gap: 2.4rem;
  }

  .project_card {
    grid-row-gap: 1rem;
  }

  .process_wrapper {
    padding: 0;
  }

  .process_heanding {
    padding-left: 25px;
    padding-right: 25px;
  }

  .circle_number {
    width: 45px;
    height: 45px;
  }

  .process-cta {
    grid-template-columns: 1fr;
    place-items: center;
  }

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

  .accordion_title {
    padding: 25px;
  }

  .accordion_content {
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .services_card-item {
    padding: 25px;
  }

  .section_text-scroll {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .section_footer {
    padding-top: 0;
  }

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

  .contact-heading-itemns {
    grid-template-rows: auto auto;
  }

  .contac-link {
    color: var(--black);
  }

  .contact-form {
    border-width: 0;
    border-color: #e4e4e400;
    padding: 0;
  }

  .form-itemns {
    grid-row-gap: 25px;
  }

  .faq_heanding {
    margin-bottom: 0;
  }

  .faq-accordion-heading {
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.125rem;
  }

  .faq-number {
    margin-left: 0;
    display: none;
  }

  .faq-cross {
    justify-content: center;
    align-items: stretch;
    margin-right: 0;
    padding-top: .25rem;
  }

  .faq-accordion-response {
    padding-left: 1.125rem;
  }

  .faq-number-title {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .mob-nav-link.w--current {
    padding-left: 4.2rem;
    padding-right: 4.2rem;
  }

  .navigation-mobile {
    overflow: hidden;
  }

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

  .contact-channels {
    padding-left: 0;
  }

  .accordion-paragraph {
    padding: 25px;
  }

  .heading-style-h1 {
    font-size: 2.3rem;
  }

  .heading-style-h3 {
    font-size: 1.125rem;
  }

  .heading-style-h2, .heading-style-h2.text-weight-light, .heading-style-h2.text-weight-light.text-color-light {
    font-size: 1.5rem;
  }

  .padding-bottom.padding-large {
    padding-bottom: 8rem;
  }
}

#w-node-a8e5d066-6259-b445-98a1-b816de113826-5664ee00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_1ae0aaa4-f614-4097-b8e6-012d8244f9d3-5664ee00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_58484285-d0b3-d6a1-2bc7-53ccd865f6cc-5664ee00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_8bb43c28-9a12-f290-9598-99e75379384d-5664ee00, #w-node-_561c8635-e751-2968-39d9-0e9c8fe553a3-5664ee00, #w-node-_8d3245ba-1643-1be4-21b9-9e20089c84a7-5664ee00, #w-node-_04ecd0b9-fce9-3192-856e-bcf59b05031c-5664ee00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_5ba86d6e-207d-d2b9-3b83-a41096659699-5664ee00, #w-node-_49d92ed0-6a6e-d17a-9a2f-fb1345c1c76a-5664ee00 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0ce2316b-88af-02ab-7bbf-d81071226163-5664ee00 {
  justify-self: end;
}

#w-node-_525842b8-277c-3d39-ca6a-1a024b9f4982-4b9f492d {
  justify-self: start;
}

#w-node-_525842b8-277c-3d39-ca6a-1a024b9f4984-4b9f492d {
  justify-self: center;
}

#w-node-_525842b8-277c-3d39-ca6a-1a024b9f4986-4b9f492d {
  justify-self: end;
}

#w-node-_7c2848cf-f067-a623-eb4e-210c325f496a-325f4966 {
  justify-self: start;
}

#w-node-_7c2848cf-f067-a623-eb4e-210c325f496c-325f4966 {
  justify-self: end;
}

#w-node-a84cd221-a500-90db-2b32-f86d1b9aae3c-561d4052 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: stretch stretch;
}

#w-node-db830341-5499-1bf1-8952-d6260bdcd7ed-561d4052 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_525842b8-277c-3d39-ca6a-1a024b9f4984-4b9f492d, #w-node-_525842b8-277c-3d39-ca6a-1a024b9f4986-4b9f492d {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0ce2316b-88af-02ab-7bbf-d81071226163-5664ee00 {
    justify-self: center;
  }

  #w-node-_525842b8-277c-3d39-ca6a-1a024b9f4981-4b9f492d {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueRoman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue';
  src: url('../fonts/HelveticaNeueBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}