@font-face {
  font-family: Opensaucesans;
  src: url('../fonts/OpenSauceSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Opensaucesans;
  src: url('../fonts/OpenSauceSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fontawesome Webfont;
  src: url('../fonts/fontawesome-webfont.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --text-color: #4f5464;
  --heading-color: #050404;
  --primary-color: #285a84;
  --secondary-light-color: #ffede4;
  --secondary-color: #2490a1;
  --primary-light-color: #e7f7ff;
  --brown-1: #a24a2a;
  --ci-dark-red: #6f2524;
  --primary-darken: #00aaf8;
  --white: white;
  --grey-700: #868686;
  --ci-beige: #e4e2dd;
  --grey-400: #d7d7d7;
  --grey-600: #a0a0a0;
  --grey-300: #f6f7f8;
  --light-blue: #d0f0ff;
  --grey-500: #bbb;
  --light-grey: #eff2f5;
  --black: black;
  --ci-beige-light: #e4e2dd80;
  --flowstica-webflow-library--black: #010b15;
  --flowstica-webflow-library--white-smoke: #f7f7f7;
  --untitled-ui--gray600: #475467;
  --untitled-ui--white: white;
  --untitled-ui--gray900: #101828;
  --untitled-ui--gray500: #667085;
  --ci-green: #93a7a2;
  --untitled-ui--gray200: #eaecf0;
  --untitled-ui--gray50-2: #f9fafb;
  --untitled-ui--primary700: #6941c6;
  --untitled-ui--primary800: #53389e;
  --untitled-ui--primary600: #7f56d9;
  --untitled-ui--primary100: #f4ebff;
  --untitled-ui--gray300: #d0d5dd;
  --untitled-ui--gray700: #344054;
  --untitled-ui--gray800: #1d2939;
  --untitled-ui--gray100: #f2f4f7;
}

.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(--text-color);
  font-family: Opensaucesans, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Opensaucesans, sans-serif;
  font-size: 67px;
  font-weight: 700;
  line-height: 77px;
}

h2 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Opensaucesans, sans-serif;
  font-size: 51px;
  font-weight: 700;
  line-height: 58px;
}

h3 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Opensaucesans, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h4 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Opensaucesans, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
}

h5 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Opensaucesans, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
}

h6 {
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Opensaucesans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color .25s ease-in-out;
  display: inline;
}

a:hover, a:active {
  color: var(--primary-color);
}

ul {
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 40px;
  list-style-type: disc;
}

ol {
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 30px;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--heading-color);
  text-transform: capitalize;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

blockquote {
  background-color: var(--secondary-light-color);
  color: var(--secondary-color);
  text-align: center;
  border: 0 solid #000;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 30px 40px;
  font-size: 20px;
  line-height: 30px;
  display: flex;
}

figure {
  margin-top: 40px;
  margin-bottom: 30px;
}

figcaption {
  opacity: .6;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.section {
  min-height: 180px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.section.section-cta {
  background-color: var(--primary-light-color);
  border: 1px solid #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.section.hero {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--brown-1);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  min-height: 60vh;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  position: relative;
}

.section.footer {
  border: 1px none var(--ci-dark-red);
  flex-flow: wrap;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
}

.section.section-clients {
  padding-top: 90px;
  padding-bottom: 0;
  display: block;
}

.section.section-introduction {
  padding-top: 20px;
  padding-bottom: 90px;
}

.section.section-introduction.divider {
  display: none;
}

.section.section-projects {
  box-shadow: none;
  background-color: #bbb3;
  border-radius: 0;
  padding-bottom: 50px;
  display: block;
}

.section.page-content {
  border-bottom: .5px solid #00000080;
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.section.section-our-values {
  padding-bottom: 121px;
}

.section.section-services {
  border: .5px solid #6f252480;
  margin-bottom: 60px;
  padding-top: 120px;
  padding-bottom: 160px;
}

.section.section-testimonials {
  padding-top: 0;
  padding-bottom: 0;
}

.section.single-special-project {
  background-image: url('../images/BG_Pattern.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-attachment: scroll;
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.section.page-blog, .section.page-work {
  padding-bottom: 0;
}

.section.project-single-holder {
  padding-top: 0;
}

.section.section-introduction-leistungen {
  padding-top: 20px;
  padding-bottom: 90px;
  display: none;
}

.section.section-introduction-leistungen.divider {
  display: none;
}

.container {
  background-color: #fff0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container.absolute {
  z-index: 10;
  background-color: #f1f1ee;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  display: flex;
  position: absolute;
  inset: 0;
}

.container.hidefornow {
  display: none;
}

.paragraph-bigger {
  opacity: 1;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 34px;
}

.button {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid #0000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  transition: background-color .4s ease-in-out, opacity .4s ease-in-out, color .4s ease-in-out;
  display: flex;
}

.button:hover {
  border-color: var(--primary-darken);
  background-color: var(--primary-darken);
  color: var(--white);
}

.button:active {
  border-color: var(--primary-darken);
  background-color: var(--primary-darken);
}

.button:focus, .button:visited {
  border-color: var(--primary-darken);
  background-color: var(--primary-darken);
  color: var(--white);
}

.button.button-outline {
  border-color: var(--primary-color);
  background-color: var(--white);
  color: var(--primary-color);
}

.button.button-outline:focus {
  border-color: var(--primary-darken);
  background-color: var(--primary-darken);
  color: var(--white);
}

.button.has-arrow {
  background-image: url('../images/right-arrow-white.svg');
  background-position: 83%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 52px;
}

.post-rich-text p {
  opacity: 1;
  margin-top: 15px;
  margin-bottom: 25px;
}

.paragraph-light {
  opacity: 1;
  color: var(--grey-700);
}

.brand {
  align-items: center;
  width: 155px;
  display: flex;
}

.brand:hover {
  opacity: .8;
}

.brand:active {
  opacity: .7;
}

.brand.w--current {
  align-items: center;
  width: auto;
  display: flex;
}

.brand.w--current:hover {
  opacity: 1;
  color: #050404;
}

.brand.w--current:focus, .brand.w--current:visited {
  color: #050404;
}

.menu-wrapper {
  z-index: auto;
}

.header {
  background-color: #ecece900;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 4%;
}

.navigation-item {
  opacity: 1;
  color: #050404;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.navigation-item:hover {
  opacity: 1;
  color: var(--ci-dark-red);
  font-style: normal;
  text-decoration: none;
}

.navigation-item:active {
  opacity: 1;
}

.navigation-item:focus {
  color: var(--heading-color);
}

.navigation-item.w--current {
  opacity: 1;
  color: var(--heading-color);
  flex: 0 auto;
  order: 0;
  font-weight: 400;
}

.navigation-item.w--current:hover {
  opacity: .8;
  color: var(--ci-dark-red);
}

.navigation-item.w--current:active {
  opacity: .7;
  color: var(--ci-dark-red);
}

.navigation-item.w--current:focus {
  color: var(--heading-color);
}

.navigation-item.w--current:visited {
  color: var(--ci-dark-red);
}

.menu-button {
  display: none;
}

.logo-image {
  flex: 0 auto;
  max-width: 106%;
}

.logo-image:hover {
  opacity: 1;
  color: #050404;
}

.navigation-items {
  text-align: left;
  object-fit: fill;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  left: 37px;
}

.footer-wrapper {
  justify-content: space-between;
  padding-top: 0;
  display: flex;
}

.cta-text {
  width: 100%;
  max-width: 400px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
}

.heading-wrapper {
  justify-content: center;
  padding-bottom: 50px;
  display: flex;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-success-message {
  background-color: #12b878;
}

.status-message.error-message {
  background-color: red;
}

.get-in-touch-form {
  flex-direction: column;
  display: flex;
}

.text-field {
  border: 1px solid var(--grey-400);
  color: var(--grey-600);
  text-transform: none;
  border-radius: 2px;
  margin-bottom: 30px;
  padding: 23px 20px;
  font-size: 16px;
  line-height: 24px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active {
  border-color: #43464d;
}

.text-field:focus {
  border-color: var(--primary-color);
}

.text-field.textarea {
  text-transform: none;
  min-height: 120px;
  padding-top: 15px;
}

.contact-form {
  width: 100%;
  max-width: 700px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.team-pic {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 370px;
}

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

.team-member-title-wrap {
  border-style: solid;
  border-width: 0 1px 1px;
  border-color: var(--grey-400);
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 30px;
  display: flex;
}

.team-member-name {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  transition: color .3s;
  display: block;
}

.team-member-name:hover {
  color: var(--primary-color);
}

.blog-detail-header-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-entry-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 500px;
}

.blog-entry-image.w--current {
  margin-bottom: 60px;
}

.protected-form {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.protected-heading {
  margin-top: 0;
  margin-bottom: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  padding: 230px 30px;
  display: flex;
}

._404-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

._404-content-wrap {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.button-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-quote-wrapper {
  flex: 0 auto;
  justify-content: flex-start;
  margin-left: 30px;
  display: block;
}

.logo-wrapper {
  flex: none;
  display: block;
  overflow: hidden;
}

.hero-heading-wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin-top: 60px;
}

.hero-title {
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 30px;
}

.text-color-secondary {
  color: var(--ci-dark-red);
}

.hero-subtitle.text-lead {
  color: var(--heading-color);
  margin-bottom: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
}

.border-rotate {
  background-color: var(--heading-color);
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 4px;
  margin-top: 12px;
  display: flex;
  transform: rotate(-40deg);
}

.page-wrapper {
  padding-left: 35px;
  padding-right: 35px;
}

.hero {
  background-color: var(--primary-light-color);
}

.hero-pattern {
  vertical-align: baseline;
  flex: 0 auto;
  position: absolute;
  bottom: -125px;
  left: 48%;
  transform: translate(-50%);
}

.hero-pattern._2 {
  z-index: 999;
  position: absolute;
  top: 447px;
  bottom: auto;
}

.hero-heading {
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 35px;
  display: flex;
  overflow: hidden;
}

.hero-banner-photo {
  z-index: 99;
  color: var(--text-color);
  background-image: url('../images/2149721877.webp');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-banner-photo.test {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.heading {
  margin-bottom: 20px;
}

.heading.hero-title {
  color: var(--heading-color);
  font-family: Opensaucesans, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
}

.cta-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Opensaucesans, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.cta-paragraph {
  color: var(--text-color);
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.cta-banner {
  padding-left: 30px;
}

.footer-additional-link {
  color: var(--text-color);
  display: inline;
}

.footer-main-about {
  width: 100%;
  max-width: 322px;
}

.footer-logo, .footer-logo.w--current {
  margin-bottom: 26px;
  display: block;
}

.footer-main-navigation {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 762px;
}

.footer-link-block {
  flex-direction: column;
}

.footer-title-heading {
  margin-top: 0;
  margin-bottom: 26px;
  font-family: Opensaucesans, sans-serif;
  font-weight: 700;
}

.list-footer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-list-item {
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 34px;
}

.page-header {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
  display: flex;
}

.page-header-block {
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.page-header-block.team-header {
  max-width: 650px;
}

.page-header-block.about-page-header {
  max-width: 800px;
}

.page-header-block.contact-page-header {
  max-width: 560px;
}

.badge {
  background-color: var(--grey-300);
  color: var(--heading-color);
  letter-spacing: .4px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  display: inline-block;
}

.badge.badge-light {
  background-color: var(--secondary-light-color);
  color: var(--secondary-color);
  transition: background-color .3s, color .3s;
}

.badge.badge-light:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.page-header-title {
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Opensaucesans, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 64px;
}

.footer-logo-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.logo-block {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 150px 20px 70px;
  display: flex;
  position: relative;
}

.heading-into {
  border-top: 2px dashed var(--light-blue);
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 45px;
  display: flex;
}

.into-grid {
  grid-column-gap: 90px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 300px;
  padding-bottom: 50px;
  display: grid;
}

.intro-title {
  width: 100%;
  max-width: 773px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensaucesans, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
}

.subtitle {
  color: var(--ci-dark-red);
  letter-spacing: .4px;
  text-transform: uppercase;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.project-wrapper {
  position: relative;
  overflow: hidden;
}

.heading-content {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 525px;
  display: flex;
}

.title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 50px;
}

.title.article-title-name {
  padding-left: 10px;
}

.section-description {
  margin-top: 15px;
  margin-bottom: 0;
}

.section-description.dark {
  color: #000;
  max-width: 638px;
  padding-right: 40px;
}

.inline-flex {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab-link {
  color: var(--grey-500);
  text-transform: capitalize;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Opensaucesans, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  display: inline-block;
}

.tab-link:hover, .tab-link.w--current {
  color: var(--secondary-color);
}

.tab-categories {
  display: flex;
}

.page-header-description {
  margin-top: 15px;
  margin-bottom: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.page-header-description.header-about-description {
  margin-top: 20px;
  padding-left: 87px;
  padding-right: 87px;
  font-weight: 400;
}

.page-header-description.header-faq-description {
  margin-top: 20px;
}

.cms-collection {
  margin-top: 70px;
}

.project-info {
  z-index: 1;
  opacity: 0;
  padding: 32px;
  position: absolute;
  inset: auto 0 0;
  transform: translate(0, 100%);
}

.project-title-name {
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 21px;
  line-height: 25px;
  transition: color .3s;
}

.project-title-name:hover {
  color: var(--primary-color);
}

.empty-state {
  color: var(--white);
  text-align: center;
  background-color: #d32f2f;
  padding-left: 20px;
  padding-right: 20px;
}

.button-link {
  color: var(--heading-color);
  letter-spacing: .4px;
  text-transform: uppercase;
  background-image: url('../images/NextIconBlack.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.button-link:hover, .button-link:active {
  color: var(--heading-color);
}

.button-link.white {
  color: var(--white);
  background-image: url('../images/right-arrow-white.svg');
  background-size: auto;
}

.project-title {
  margin-bottom: 10px;
  display: block;
}

.project-title:hover {
  color: var(--primary-color);
}

.our-value-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.number-label {
  color: var(--secondary-color);
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
}

.our-value-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Opensaucesans, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
}

.our-value-description {
  margin-bottom: 0;
}

.header-container {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navigation-menu-wrapper {
  align-items: center;
  display: flex;
}

.featured-project-collection {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
}

.featured-project-collection-list {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
}

.featured-project-collection-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-preview {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  min-height: 660px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-preview-intro {
  justify-content: flex-end;
  display: flex;
}

.project-preview-info-wrapper {
  background-color: var(--white);
  flex-direction: column;
  padding: 50px;
  display: flex;
}

.project-preview-info-title {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 28px;
  line-height: 36px;
}

.project-preview-info-list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

.project-preview-list-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--grey-400);
  grid-template-rows: auto;
  grid-template-columns: 60px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.project-preview-list-item.first {
  padding-top: 0;
}

.project-preview-list-item.last {
  border-bottom-width: 0;
  padding-bottom: 0;
}

.project-item-label {
  align-items: center;
  display: flex;
}

.project-info-image {
  justify-content: flex-start;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.project-type-label {
  color: var(--heading-color);
  padding-right: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
}

.project-type-name {
  color: var(--grey-700);
  align-items: center;
  font-size: 16px;
  line-height: 18px;
  display: flex;
}

.collection-list {
  display: flex;
}

.project-single-content {
  border-bottom: 1px solid var(--grey-400);
  padding-top: 90px;
  padding-bottom: 90px;
}

.project-preview-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 36px;
}

.project-gallery, .project-related {
  padding-top: 90px;
}

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

.project-gallery-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.team-member-wrapper {
  padding-bottom: 90px;
}

.team-member-item {
  flex-direction: column;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.team-member-link {
  width: 100%;
  height: 100%;
  display: flex;
}

.team-member-job-title {
  color: var(--secondary-color);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.team-member-mail-link {
  color: var(--grey-600);
  text-transform: capitalize;
  font-size: 16px;
  line-height: 24px;
  display: block;
}

.blogs-grid-layout {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.blog-grid {
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-thumbnail {
  margin-top: -1px;
  margin-left: -1px;
  margin-right: -1px;
}

.blog-thumbnail-link {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
}

.blog-main-content {
  text-align: center;
  border: 1px solid #e3e3e3;
  border-top-width: 0;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  display: flex;
}

.blog-date {
  color: var(--secondary-color);
  text-align: left;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.blog-link-title {
  color: var(--heading-color);
  margin-top: 15px;
  display: block;
}

.blog-link-title:hover {
  color: var(--primary-color);
}

.blog-title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensaucesans, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  transition: color .3s;
}

.blog-title:hover {
  color: var(--primary-color);
}

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

.blog-entry-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  line-height: 64px;
}

.blog-categories {
  margin-bottom: 26px;
}

.blog-category-list {
  display: flex;
}

.blog-category-item {
  margin-left: 6px;
  margin-right: 6px;
}

.blog-meta-info {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.blog-bullet {
  background-color: var(--secondary-color);
  border-radius: 20px;
  width: 4px;
  height: 4px;
  margin-left: 12px;
  margin-right: 12px;
}

.blog-minute-read {
  color: var(--secondary-color);
  text-align: left;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.blog-detail-summary {
  padding-top: 90px;
  padding-bottom: 50px;
}

.blog-author {
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 50px;
  display: flex;
}

.blog-entry-content {
  width: 100%;
  max-width: 830px;
  min-height: 120px;
  margin-left: auto;
  margin-right: auto;
}

.blog-author-info {
  align-items: center;
  display: flex;
}

.blog-author-image {
  border-radius: 100%;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  overflow: hidden;
}

.blog-author-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.blog-author-label {
  color: var(--text-color);
  margin-bottom: 4px;
  line-height: 26px;
}

.blog-author-social {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.blog-author-social-item {
  margin-bottom: 0;
  margin-left: 25px;
}

.blog-latest-articles {
  border-top: 1px solid var(--grey-400);
  padding-top: 90px;
}

.blog-collection-wrapper {
  overflow: hidden;
}

.team-detail-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-detail-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 570px;
}

.team-detail-summary {
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  display: flex;
}

.team-detail-description {
  width: 100%;
  margin: 0;
}

.team-detail-link, .team-detail-link:hover, .team-detail-link:active, .team-detail-link:focus, .team-detail-link:visited {
  color: var(--secondary-color);
}

.team-detail-link.email {
  text-transform: lowercase;
  padding-right: 30px;
}

.team-detail-media {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.team-detail-media.social {
  margin-top: 26px;
}

.team-social-list {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.team-social-list-item {
  margin-bottom: 0;
  padding-right: 15px;
}

.team-social-list-item.last {
  padding-right: 0;
}

.team-social-link {
  background-color: var(--secondary-light-color);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.article-title-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-content {
  overflow: hidden;
}

.service-header {
  justify-content: space-between;
  align-items: center;
  min-height: 500px;
  margin-bottom: 90px;
  display: flex;
}

.service-content-block {
  flex-direction: column;
  width: 100%;
  max-width: 38%;
  display: flex;
}

.service-header-title {
  margin-top: 0;
  margin-bottom: 15px;
}

.service-list-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 70px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-list-item {
  text-align: center;
  border: .5px solid #6f25244d;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 40px;
  display: flex;
}

.service-icon {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: -30px;
}

.service-image {
  width: 100%;
}

.service-title {
  text-transform: none;
  margin-bottom: 15px;
  font-family: Opensaucesans, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
}

.service-description {
  margin-bottom: 0;
  font-family: Lato, sans-serif;
}

.service-banner-block {
  width: 50%;
}

.service-paragraph {
  margin-top: 10px;
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.testimonial-avatar {
  min-height: 500px;
  overflow: hidden;
}

.testimonial-intro {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 90px;
  display: flex;
  overflow: hidden;
}

.testimonial-intro.secondary {
  background-color: var(--secondary-light-color);
}

.testimonial-intro.primary {
  background-color: var(--primary-light-color);
}

.testimonial-description {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensaucesans, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.testimonial-name {
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Opensaucesans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
}

.testimonial-job-titles {
  color: #4f5464;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 26px;
}

.slack-image {
  z-index: -1;
  width: 360px;
  min-height: 200px;
  display: none;
  position: absolute;
}

.testimonial-icon {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.special-project {
  background-image: url('../images/BG_Pattern.svg');
  background-position: 0 0;
  background-size: auto;
  position: relative;
}

.special-project-title {
  color: var(--white);
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 0;
  font-family: Opensaucesans, sans-serif;
  font-size: 67px;
  font-weight: 700;
  line-height: 77px;
}

.special-project-button {
  margin-top: 40px;
  display: flex;
}

.special-project-info {
  color: var(--white);
  background-color: #285a84;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 580px;
  padding: 100px 85px;
  display: flex;
}

.about-vision {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.hero-about {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.hero-about-intro {
  border-style: solid;
  border-width: 1px 0 1px 1px;
  border-color: var(--grey-400);
  background-image: url('../images/Rainbow.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
  display: flex;
  overflow: hidden;
}

.hero-about-title {
  margin-top: 0;
  font-size: 38px;
  line-height: 44px;
}

.hero-about-button {
  margin-top: 50px;
  display: flex;
}

.process-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  display: flex;
}

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

.secondary-light-color {
  background-color: var(--secondary-light-color);
}

.gray-light-color {
  background-color: var(--light-grey);
}

.process-icon {
  width: 60px;
  height: 60px;
}

.process-title {
  text-transform: capitalize;
  margin-top: 35px;
  margin-bottom: 18px;
  font-size: 21px;
  line-height: 25px;
}

.process-description {
  margin-bottom: 0;
}

.button-team-wrapper {
  justify-content: center;
  padding-top: 50px;
  display: flex;
}

.team-detail-start {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.team-detail-start-item {
  align-items: center;
  margin-bottom: 0;
  margin-right: 30px;
  display: flex;
}

.team-detail-start-item.last {
  margin-right: 0;
}

.team-label {
  color: var(--heading-color);
  text-transform: capitalize;
  padding-right: 10px;
  font-weight: 700;
}

.contact-form-container {
  padding-top: 90px;
}

.contact-list-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 370px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.contact-fact-image {
  width: 60px;
  height: 60px;
}

.contact-fact-title {
  text-transform: capitalize;
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 25px;
}

.contact-offices {
  border-bottom: 1px solid var(--grey-400);
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
}

.contact-offices-info {
  width: 100%;
  max-width: 250px;
}

.contact-offices-social {
  width: 100%;
  max-width: 280px;
}

.contact-offices-description {
  margin-top: 20px;
  margin-bottom: 0;
}

.social-list {
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.social-list-item {
  width: 52px;
  height: 52px;
  margin-bottom: 0;
  margin-right: 15px;
}

.social-list-item.last {
  margin-right: 0;
}

.social-link {
  background-color: var(--secondary-light-color);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.contact-offices-title {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  line-height: 25px;
}

.form-button {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.form-button.form-button-quote {
  margin-top: 50px;
}

.form-filed {
  width: 48%;
  min-height: 50px;
}

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

.checkbox-field {
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  line-height: 40px;
  display: flex;
}

.checkbox {
  border: 1px solid var(--grey-400);
  border-radius: 0;
  width: 18px;
  height: 18px;
  margin-top: 0;
  margin-right: 15px;
}

.checkbox.w--redirected-checked {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.checkbox.w--redirected-focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.checkbox-field-label {
  margin-bottom: 0;
}

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

.get-quote-form {
  width: 100%;
  max-width: 700px;
  margin-bottom: 90px;
  margin-left: auto;
  margin-right: auto;
}

.select-field {
  border: 1px solid var(--grey-400);
  color: var(--grey-600);
  background-color: #0000;
  border-radius: 2px;
  height: 48px;
  margin-bottom: 30px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 24px;
}

.select-field:focus {
  border-color: var(--primary-color);
}

.team-wrapper {
  border-top: 1px solid var(--grey-400);
  padding-top: 90px;
}

.faq-wrapper {
  border-left: 1px solid var(--grey-400);
  padding-left: 70px;
}

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

.faq-heading-title {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 26px;
  line-height: 34px;
}

.faq-info-contact {
  margin-bottom: 0;
}

.accordion-item {
  border-top: 1px solid var(--grey-400);
  padding-top: 30px;
  padding-bottom: 30px;
}

.accordion-item.last {
  padding-bottom: 0;
}

.accordion-title {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 30px 0 0;
  font-size: 20px;
  line-height: 28px;
}

.accordion-body {
  overflow: hidden;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  transform: scale(3.5);
}

.accordion-header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  transition: background-color .2s, color .2s;
  display: flex;
}

.accordion-paragraph {
  margin-bottom: 0;
  padding-top: 40px;
}

.accordion-lottie-ant {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.container-830 {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.terms-wrapper {
  padding-top: 15px;
}

.rte-custom {
  margin-top: -36px;
}

.rte-custom a {
  color: var(--primary-color);
}

.rte-custom h5 {
  margin-top: 46px;
  margin-bottom: 12px;
}

.rte-custom p {
  margin-top: 15px;
  margin-bottom: 0;
}

.rte-custom h2, .rte-custom h3 {
  font-size: 21px;
  line-height: 28px;
}

.protected-form-wrapper {
  width: 100%;
  max-width: 600px;
  margin-bottom: 0;
}

.protected-form-button {
  margin-top: 10px;
}

.heading-not-found {
  margin-top: 0;
}

.not-found-button {
  justify-content: center;
  display: flex;
}

.protected-form-field {
  width: 100%;
  padding-left: 120px;
  padding-right: 120px;
}

.button-label.menu {
  font-weight: 400;
}

.button-icon {
  margin-left: 10px;
}

.phone-label {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.phone-label:hover {
  color: var(--secondary-color);
}

.header-navbar {
  align-items: center;
  display: flex;
}

.hero-button {
  z-index: 0;
  display: flex;
  position: relative;
  top: 34px;
}

.button-primary-light {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  display: flex;
}

.button-primary-light.floating {
  border: 1px solid var(--ci-dark-red);
  color: var(--ci-dark-red);
  background-color: #a24a2a00;
}

.button-primary-light.floating:hover {
  background-color: var(--ci-dark-red);
  color: var(--ci-beige);
}

.solid-background {
  background-color: var(--brown-1);
  width: 70vw;
  height: 70px;
  position: absolute;
  bottom: -70px;
  left: 0%;
}

.button-large {
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #6f2524;
  border-radius: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  position: relative;
  top: auto;
}

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

.cta-button-wrapper {
  justify-content: center;
  display: flex;
}

.intro-list-item {
  color: var(--secondary-color);
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 24px;
  line-height: 34px;
  display: flex;
}

.intro-list-icon {
  background-color: var(--brown-1);
  color: var(--secondary-color);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-right: 15px;
  display: flex;
  overflow: hidden;
}

.intro-banner-grid {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 45px;
  display: flex;
  position: relative;
}

.intro-banner-grid.vertical {
  justify-content: center;
  align-items: center;
}

.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.intro-picture-one {
  width: 270px;
  margin-left: 60px;
  padding-bottom: 110px;
}

.intro-picture-two {
  align-self: flex-end;
  width: 177px;
}

.intro-picture-three, .intro-picture-five {
  width: 270px;
}

.intro-picture-four {
  align-self: flex-end;
  width: 135px;
  margin-right: 60px;
  padding-bottom: 110px;
}

.intro-button-wrapper {
  justify-content: center;
  display: flex;
}

.project-header {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.button-primary-lighter {
  background-color: var(--white);
  color: var(--primary-color);
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  display: flex;
}

.featured-project-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 570px;
  display: grid;
  overflow: hidden;
}

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

.content-overlay {
  background-color: var(--black);
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.featured-project-empty {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.featured-heading-content {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 559px;
  display: flex;
}

.service-pattern {
  justify-content: center;
  align-items: center;
  width: 75px;
  display: flex;
  overflow: hidden;
}

.service-icon-image {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.our-value-number {
  background-color: var(--secondary-light-color);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: 30px;
  display: flex;
  overflow: hidden;
}

.special-project-subtitle {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.special-project-description {
  margin-top: 20px;
  margin-bottom: 0;
}

.featured-project-wrapper {
  background-image: url('../images/00000248-PHOTO-2024-04-08-21-52-33_100000248-PHOTO-2024-04-08-21-52-33.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.featured-project-wrapper._1 {
  background-image: url('../images/image-400x592.avif');
  background-repeat: no-repeat;
  background-size: auto;
}

.featured-project-wrapper._2 {
  background-image: url('../images/00000081-PHOTO-2024-04-08-17-03-53_100000081-PHOTO-2024-04-08-17-03-53.webp');
}

.featured-project-wrapper._3 {
  background-image: url('../images/00000108-PHOTO-2024-04-08-17-08-58_100000108-PHOTO-2024-04-08-17-08-58.webp');
  background-position: 35%;
}

.featured-project-wrapper._4 {
  background-image: url('../images/00000245-PHOTO-2024-04-08-21-51-45_100000245-PHOTO-2024-04-08-21-51-45.webp');
  background-position: 100%;
}

.featured-project-button {
  z-index: 1;
  opacity: 0;
  position: relative;
}

.featured-title-description {
  color: #4f5464;
  margin-top: 20px;
  margin-bottom: 0;
}

.button-secondary-lighter {
  background-color: var(--white);
  color: var(--secondary-color);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  display: flex;
}

.button-secondary-lighter:hover {
  color: var(--secondary-color);
}

.special-project-container {
  justify-content: flex-end;
  display: flex;
}

.special-project-thumbnail {
  background-image: url('../images/23124.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 73%;
  min-height: 740px;
}

.blog-description {
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-author-item {
  border-top: 1px solid var(--grey-400);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 0 0;
  display: flex;
}

.author-media-link {
  color: var(--grey-600);
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  display: flex;
}

.author-media-link:hover {
  color: var(--grey-600);
}

.author-media-label {
  color: var(--grey-600);
  margin-left: 15px;
}

.footer-info {
  margin-top: 10px;
  margin-bottom: 0;
}

.next {
  background-color: var(--light-grey);
  border-width: 0;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-top: 60px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.previous {
  background-color: var(--light-grey);
  border-width: 0;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-top: 60px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 0;
  display: flex;
}

.blog-slide-nav {
  justify-content: center;
  align-items: center;
  padding: 0;
  display: none;
}

.blog-slider {
  background-color: #0000;
  height: auto;
  margin-left: -15px;
  margin-right: -15px;
}

.blog-slider-collection {
  display: flex;
}

.blog-slide-item {
  width: 33.33%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.blog-slider-collection-item {
  padding-left: 15px;
  padding-right: 15px;
}

.blog-left-arrow {
  background-color: var(--light-grey);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-left: -38px;
  margin-right: 0;
  display: flex;
  position: absolute;
  inset: auto auto 0% 50%;
  transform: translate(-50%);
}

.blog-right-arrow {
  background-color: var(--light-grey);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin-left: 38px;
  margin-right: 0;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%);
}

.blog-slide-mask {
  padding-bottom: 106px;
}

.logo-slider {
  background-color: #0000;
  height: auto;
}

.logo-slider-mask {
  overflow: visible;
}

.logo-slide {
  width: 20%;
  height: 100%;
  padding: 0;
}

.logo-quote {
  z-index: 5;
  opacity: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.media-logo {
  margin: auto;
  position: absolute;
  inset: 0;
}

.none, .logo-slider-nav {
  display: none;
}

.intro-slider {
  background-color: #0000;
  height: auto;
  padding-top: 60px;
}

.intro-slider-mask {
  overflow: visible;
}

.intro-slide {
  width: auto;
  height: auto;
}

.intro-slider-nav {
  display: none;
}

.value-slider {
  background-color: #0000;
  height: auto;
}

.value-slider-mask {
  overflow: visible;
}

.value-slide-nav {
  display: none;
}

.value-slide {
  width: 33.33%;
  height: 100%;
  padding: 0;
}

.blog-empty-state {
  background-color: var(--light-grey);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.project-thumbnail-link {
  width: 100%;
  height: 100%;
  display: flex;
}

.project-link-wrapper {
  margin-top: 20px;
  display: flex;
}

.button-icon-link {
  background-color: var(--secondary-color);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 15px 30px #ff5e1440;
}

.project-location {
  color: var(--secondary-color);
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.border-overlay {
  border: 1px solid var(--grey-400);
  background-color: var(--white);
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: translate(0, 100%);
}

.project-categories-item {
  padding-right: 15px;
}

.project-single-title {
  padding-top: 90px;
  display: flex;
}

.project-title-block {
  width: 100%;
  max-width: 550px;
}

.project-content-grid {
  grid-column-gap: 70px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .55fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 500px;
  display: grid;
}

.project-sidebar {
  background-color: var(--secondary-color);
  color: var(--white);
  background-image: url('../images/Arc.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: flex-end;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-short-summary {
  color: var(--secondary-color);
  margin-bottom: 0;
  font-style: italic;
}

.project-slider {
  background-color: #0000;
  height: auto;
  position: relative;
}

.project-slider-mask {
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 106px;
}

.project-slide-item {
  width: 33.33%;
  height: 100%;
  padding: 0 15px;
}

.project-empty-state {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.project-rich-text p {
  margin-top: 10px;
  margin-bottom: 0;
}

.project-rich-text h2, .project-rich-text h3, .project-rich-text h4, .project-rich-text h1, .project-rich-text h5, .project-rich-text h6 {
  margin-bottom: 15px;
}

.project-sidebar-block {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.sidebar-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  line-height: 64px;
}

.sidebar-sub-title {
  text-transform: capitalize;
  font-size: 21px;
  font-weight: 700;
  line-height: 29px;
}

.sidebar-description {
  margin-top: 24px;
  margin-bottom: 0;
}

.sidebar-button-wrapper {
  margin-top: 56px;
  display: flex;
}

.team-link-block {
  align-items: center;
  display: flex;
}

.team-member-button {
  justify-content: center;
  display: flex;
}

.team-detail-name {
  color: var(--heading-color);
  align-items: center;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
  display: flex;
}

.team-name-label {
  margin-left: 10px;
}

.service-button-wrapper {
  margin-top: 36px;
  display: flex;
}

.pattern-in-left {
  background-image: url('../images/BG_Pattern.svg');
  background-position: 0 0;
  background-size: contain;
  width: 75%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.about-mission {
  padding-top: 90px;
  padding-bottom: 90px;
}

.about-title-wrapper {
  text-align: center;
  justify-content: center;
  display: flex;
}

.about-title {
  width: 100%;
  max-width: 600px;
}

.mission-side-wrapper {
  background-image: linear-gradient(to top, var(--white), var(--primary-light-color) 25%, var(--primary-light-color) 50%, var(--primary-light-color) 75%, var(--white));
  min-height: 550px;
  margin-top: 90px;
  padding: 0;
  position: relative;
}

.mission-side-image {
  background-image: url('../images/Mission-Vector.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.about-process {
  padding: 0;
}

.team-slider {
  background-color: #0000;
  height: auto;
  overflow: hidden;
}

.team-slide-mask {
  margin-left: -15px;
  margin-right: -15px;
}

.team-slide-item {
  width: 33.33%;
  padding: 0 15px;
}

.about-team {
  padding-top: 90px;
  padding-bottom: 90px;
  display: none;
}

.about-join-team {
  border-top: 1px solid var(--grey-400);
  padding-top: 90px;
}

.process-slider {
  background-color: #0000;
  height: auto;
  overflow: hidden;
}

.process-slide-mask {
  margin-left: -15px;
  margin-right: -15px;
}

.process-slide-item {
  width: 33.33%;
  height: 100%;
  padding: 0 15px;
}

.contact-office-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 700px;
  display: grid;
}

.help-slider {
  background-color: #0000;
  height: auto;
  overflow: hidden;
}

.help-slide-mask {
  height: 100%;
  margin-left: -15px;
  margin-right: -15px;
}

.help-slide-item {
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-author-mask {
  height: 100%;
}

.tab-pane-tab-1 {
  margin-bottom: 0;
  padding-bottom: 1rem;
  overflow: visible;
}

.tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #0c2954;
  justify-content: space-between;
  max-width: none;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.dropdown-toggle {
  color: #fff;
  background-color: #0c2954;
  border-radius: .3125rem;
  padding: 1rem 2.5rem 1rem 1.25rem;
  display: block;
}

.tab-pane_img-wrapper {
  aspect-ratio: 16 / 9;
  border-radius: .3125rem;
  max-width: 62.5rem;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  box-shadow: 0 5px 9px #0c29543d;
}

.tabs {
  width: 100%;
}

.dropdown {
  color: #fff;
  width: 50%;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.dropdown-link {
  padding: .625rem 1.25rem;
}

.tab-link-2 {
  opacity: .5;
  color: #0c2954;
  text-align: center;
  background-color: #0c295400;
  border: 1px #0c2954;
  border-bottom: .0625rem solid #0c295400;
  border-radius: 0;
  flex: 1;
  padding: 1rem 2rem;
}

.tab-link-2.w--current {
  opacity: 1;
  background-color: #0c295400;
  border-bottom-color: #0c2954;
}

.img-full-cover {
  width: 100%;
  height: 100%;
}

.dropdown-list {
  color: #0c2954;
  background-color: #e8eff9;
  border: .0625rem solid #0c2954;
  border-top-style: none;
  border-bottom-right-radius: .3125rem;
  border-bottom-left-radius: .3125rem;
  top: 3.75rem;
}

.tabs_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.icon.accordion-icon {
  color: #0009;
  cursor: pointer;
  cursor: pointer;
  flex: 0 auto;
  padding-left: 4px;
  font-family: Fontawesome Webfont, sans-serif;
  font-size: 15px;
  line-height: 30px;
}

.accordion-wrapper-2 {
  margin-top: 50px;
}

.section-faq {
  background-color: #f8f8f8;
  padding: 150px 30px;
}

.accordion-item-trigger {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.accordion-heading {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 30px;
}

.header-center-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.header-center-box._75 {
  width: 90%;
}

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

.content-wrapper-2 {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.content-wrapper-2.slim {
  max-width: 940px;
}

.accordion-item-content {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.accordion-item-2 {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 24px 30px 14px;
  box-shadow: 0 3px 7px #00000008;
}

.accordion-heading-2 {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 30px;
}

.heading-10 {
  text-transform: uppercase;
  margin-bottom: 60px;
  font-size: 36px;
  font-weight: 700;
}

.faq-heading {
  font-size: 20px;
  font-weight: 600;
}

.heading-10-copy {
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: -44px;
  font-size: 24px;
  font-weight: 500;
  line-height: 62px;
}

.section-2-copy-copy-copy {
  opacity: 1;
  background-color: #fafafa;
  background-image: none;
  background-position: 0 0;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 10% 240px;
  display: block;
  position: relative;
}

.text-span-16 {
  color: #fbb82a;
}

.logo-mobile, .grid, .grid-2 {
  display: none;
}

.grid-3 {
  grid-template-columns: 1fr;
  display: none;
}

.team-circles {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 40px 30px 100px;
  position: relative;
}

.container-831 {
  width: 100%;
  max-width: 849px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
  font-size: 42px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  margin-bottom: 24px;
}

.team-member-name-2 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
}

.firma_logo {
  margin-bottom: 20px;
}

.text-span-17 {
  font-size: 26px;
}

.fn-heading-2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}

.fn-paragraph {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-button {
  background-color: var(--ci-dark-red);
  color: #ffffffa6;
  text-align: center;
  border: 1px #df0;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.fn-button:hover {
  opacity: .9;
  color: #fff;
  border-color: #0f1213;
}

.fn-button-secondery {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 137px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color .25s;
  display: flex;
}

.fn-button-secondery:hover {
  background-color: #3e4545;
}

.fn-section {
  color: #ecf0ef;
  background-color: #e7f7ff;
  background-image: linear-gradient(85deg, #fff9 69%, #fff0 97%), url('../images/2149721876.webp');
  background-position: 0 0, 50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border: 10px solid #fff;
  border-radius: 30px 30px 0;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.fn-container-grid {
  grid-column-gap: 255px;
  grid-row-gap: 117px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.fn-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 0;
  display: flex;
}

.fn-cover-image {
  object-fit: cover;
  width: 100%;
  height: 90%;
}

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

.fn-label-small {
  color: #000;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1em;
}

.fh-section-image-wrapper-first {
  border-radius: 24px;
  width: 100%;
  height: 490px;
  overflow: hidden;
}

.fn-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: #000;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-bottom: 45px;
  padding-left: 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  list-style-type: none;
  display: flex;
}

.fn-list-item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fn-list-checkmark {
  background-color: var(--ci-dark-red);
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: flex;
  overflow: hidden;
}

.fn-list-checkmark-icon {
  color: #fff;
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 11px;
  height: 10px;
  display: flex;
}

.section-2 {
  background-image: linear-gradient(to bottom, var(--ci-beige-light), var(--ci-beige-light)), url('../images/67fc4b7603ed25771c06aefc_LORIOBACK-1.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container-832 {
  height: 100px;
  min-height: 100px;
}

.text-block {
  color: #000;
  font-weight: 400;
}

.image {
  max-width: 30%;
}

.home-intro_visual-content {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.home-intro_content {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.home-intro_visual-height {
  width: 100%;
  padding-top: 100%;
}

.marquee-vertical_img {
  width: 100%;
  margin-top: 4%;
  margin-bottom: 4%;
}

.container-833 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.8em;
}

.container-833.is-home-intro {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 5.1em;
  padding-bottom: 5.1em;
  display: grid;
}

.container-833.is-marquee-snap {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.container-833.is-home-process {
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.marquee-vertical_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 48%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-vertical_wrapper.is-2 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.marquee-vertical_panel {
  flex: none;
}

.home-intro_visual {
  width: 100%;
  position: relative;
}

.home-intro_p {
  width: 100%;
  max-width: 42em;
  font-size: .7rem;
  line-height: 1.5;
}

.marquee-vertical_gradient {
  background-image: linear-gradient(#e34b25 2%, #e34b2500 14% 86%, #e34b25 98%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section-6 {
  background-color: #e1e7eb;
  margin-top: 0;
}

.button-2 {
  grid-column-gap: 15px;
  grid-row-gap: 12px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  background-color: #2c2d37cc;
  background-image: linear-gradient(81deg, #282c67, #135983);
  border: 1px solid #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition-duration: .4s;
  display: flex;
}

.button-2:hover {
  color: #fff;
  transform: scale(1.05);
}

.button-arrow {
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: flex;
  position: relative;
}

.project-marquee {
  width: 50%;
  display: flex;
}

.project-thumbnail-container {
  margin-left: 2px;
  margin-right: 2px;
}

.explore-button-copntainer {
  flex: 1;
  justify-content: flex-end;
  max-width: 1400px;
  padding-bottom: 70px;
  display: flex;
}

.button-text {
  letter-spacing: 1px;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.projects-marquee-container {
  width: 240vw;
  display: flex;
}

.projects-wrapper {
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.explore-button-wrapper {
  z-index: 2;
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.arrow-circle {
  background-image: linear-gradient(#0b283a, #0b283a);
  border-radius: 50%;
  padding: 12px;
}

.section-7 {
  background-color: #e1e7eb;
  margin-top: 0;
}

.content-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.hero-section {
  border-bottom: 1px solid #ffffff1a;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  overflow: hidden;
}

.hero-bottom {
  border-top: 1px #ffffff1a;
  justify-content: center;
  height: 65px;
  display: flex;
}

.heading-separator {
  background-color: #ffffff1a;
  width: 60px;
  height: 2px;
}

.heading-separator.mobile-only {
  display: none;
}

.scroll-link {
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  border: 1px #000;
  border-left: 1px solid #ffffff1a;
  border-right: 1px solid #ffffff1a;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-content: stretch center;
  align-items: center;
  font-size: 11px;
  text-decoration: none;
  display: grid;
  overflow: hidden;
}

.background-image {
  background-image: url('../images/Image002_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 0;
  position: absolute;
  inset: 0%;
}

.background-image.home-background {
  background-image: url('../images/Image002_1.avif');
  background-position: 50%;
}

.circle-link {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: #060a0e;
  border: 1px #ffffff1a;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  padding: 6px;
  font-size: 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.grid-wrapper {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1500px) minmax(5vw, 1fr);
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.outline {
  border: 1px solid #ffffff1a;
  border-radius: 100%;
  margin: 9px;
  position: absolute;
  inset: 0%;
}

.background-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.home-hero-banner {
  z-index: 10;
  border-top: 1px #ffffff1a;
  border-bottom: 1px #ffffff1a;
  flex: 1;
  justify-content: center;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.looping-heading {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 52px;
  font-weight: 700;
}

.looping-heading.mobile-only {
  display: none;
}

.link-wrapper {
  margin-top: -70px;
  padding-bottom: 41px;
  position: relative;
}

.button-text-2 {
  z-index: 25;
  position: relative;
}

.looping-heading-wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  white-space: nowrap;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-items: center;
  padding-right: 48px;
  display: grid;
}

.circle-link-hover {
  background-color: #fff;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.looping-hero-top {
  border-bottom: 1px #ffffff1a;
  justify-content: flex-start;
  align-items: center;
  margin-top: 100px;
  padding-top: 60px;
  padding-bottom: 110px;
  display: flex;
}

.looping-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: stretch;
  place-items: center stretch;
  display: grid;
}

.scroll-arrow {
  width: 16px;
  height: 100%;
}

.overlay {
  background-color: #04080c80;
  position: absolute;
  inset: 0%;
}

.overlay.light {
  background-color: #04080c4d;
}

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-834 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-2 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-2 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 5%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.testimonial-slider-large {
  background-color: #e7f6ff;
  border-bottom: 1px solid #e4ebf3;
  padding: 0 10px 80px;
  position: relative;
}

.testimonial-slider-two {
  background-color: #0000;
  height: auto;
}

.testimonial-slide {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 60px 12px 60px 64px;
  display: flex;
}

.testimonial-content {
  flex-direction: column;
  align-items: flex-start;
  max-width: 460px;
  margin-right: 40px;
  display: flex;
}

.testimonial-quote-icon {
  margin-bottom: 24px;
}

.testimonial-quote {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.testimonial-info-two {
  align-items: center;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.testimonial-author-name {
  font-weight: 700;
}

.testimonial-image-two {
  object-fit: cover;
  width: 400px;
  height: 400px;
  margin: auto 0 auto auto;
}

.testimonial-author-image-three {
  object-fit: cover;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 24px;
}

.testimonial-slider-arrow {
  display: none;
}

.testimonial-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.marquee-horizontal-alt_panel {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: translate(0%);
}

.c_info-bar_component {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-wrap: wrap;
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.marquee-scrolling_panel {
  flex: none;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.marquee-snap_text {
  letter-spacing: -.03em;
  font-size: 7em;
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
}

.home-overview_bottom {
  width: 100%;
}

.marquee-horizontal-alt_logo {
  width: 6.4em;
  margin-left: 3.2em;
  margin-right: 3.2em;
}

.marquee-snap_wrapper {
  text-align: center;
  height: 9.1em;
  overflow: hidden;
}

.marquee-scrolling_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home-process_section {
  height: 500vh;
}

.home-logos_section, .home-banner_section {
  color: #a2cbd4;
  background-color: #000;
}

.home-process_img-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.home-overview_section {
  color: #e34b25;
  background-image: url('../images/pexels-scott-webb-1029615_1.avif');
  background-position: 50% 39%;
  background-repeat: no-repeat;
  background-size: cover;
}

.marquee-horizontal_wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-horizontal-alt_wrapper {
  justify-content: flex-end;
  align-items: center;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  display: flex;
  overflow: hidden;
  transform: translate(0%);
}

.marquee-horizontal_panel {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.marquee-scrolling_wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-horizontal_text {
  white-space: nowrap;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 1.3em;
  line-height: 1;
}

.home-process_heading {
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-size: 9em;
  font-weight: 700;
  line-height: .8;
}

.c_info-bar_text {
  font-size: .7rem;
  font-weight: 400;
  line-height: 1.5;
}

.features-list {
  background-image: radial-gradient(circle closest-corner, #e7f6ff4f, #ffffffa8 69%), url('../images/5004_15004.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 0;
  position: relative;
}

.container-835 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40%;
  display: flex;
}

.features-paragraph {
  margin-bottom: 24px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.features-right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-bottom: 0;
  margin-right: 16px;
}

.paragraph-17 {
  font-size: 14px;
  line-height: 1.5vw;
}

.wbs-container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.wbs-heading-h4 {
  color: var(--flowstica-webflow-library--black);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.3em;
}

.wbs-heading-h5 {
  color: var(--flowstica-webflow-library--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3em;
}

.wbs-button-link-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--flowstica-webflow-library--black);
  border-radius: 6px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.wbs-button-link-icon-image {
  height: 20px;
}

.wbs-section {
  background-color: var(--primary-light-color);
  padding: 90px 0%;
}

.wbs-spacing-30 {
  height: 1.875rem;
}

.wbs-lead-text {
  color: var(--flowstica-webflow-library--black);
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.6rem;
}

.wbs-feature-component {
  background-color: #fff;
}

.wbs-feature-title-wrap-center {
  text-align: center;
}

.wbs-feature-icon {
  border-radius: 100px;
  flex: none;
  width: 60px;
  height: 60px;
}

.wbs-feature-title {
  color: var(--flowstica-webflow-library--black);
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.2em;
}

.wbs-feature-icon-simple {
  margin-bottom: 20px;
}

.wbs-feature-split {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 200%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: grid;
}

.wbs-feature-split-right {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 60px;
  display: grid;
}

.wbs-feature-item-left {
  font-size: 16px;
}

.wbs-feature-split-left {
  background-color: var(--flowstica-webflow-library--white-smoke);
  background-image: linear-gradient(#ffffffc7, #ffffffc7), url('../images/2149345512_12149345512.webp');
  background-position: 0 0, 0%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 0;
  flex-direction: column;
  padding: 30px;
  display: flex;
  position: relative;
}

.wbs-feature-split-button {
  margin-top: auto;
}

.additional-paragraph {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.5vw;
}

.paragraph-18 {
  margin-bottom: 10px;
}

.divider-features {
  background-color: #285a846b;
  max-width: 120px;
  margin-top: auto;
  margin-bottom: 5px;
  margin-left: 0;
  padding-top: 1px;
  padding-bottom: 1px;
}

.body {
  background-color: var(--ci-beige-light);
}

.uui-text-size-medium {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-text-size-medium.text-color-white {
  color: var(--untitled-ui--white);
}

.uui-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-max-width-large {
  width: 100%;
  max-width: 48rem;
}

.uui-text-size-large {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: Opensaucesans, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-heading-medium {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Opensaucesans, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-heading-small {
  color: var(--untitled-ui--gray900);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
}

.uui-heading-small.text-color-white {
  color: var(--untitled-ui--white);
  font-size: 1.2rem;
}

.uui-button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-testimonial18_logo-wrapper {
  margin-top: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-testimonial18_content {
  background-color: var(--untitled-ui--gray500);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 32rem;
  padding: 1.5rem;
  display: flex;
}

.uui-testimonial18_content.background-color-primary600 {
  background-color: #93a7a2;
  justify-content: space-around;
  height: 28rem;
}

.uui-testimonial18_content.background-color-blue600 {
  background-color: var(--ci-dark-red);
  justify-content: space-around;
  align-items: center;
  height: 28rem;
}

.uui-testimonial18_content.background-color-indigo600 {
  background-color: #93a7a2;
  justify-content: space-around;
  height: 28rem;
}

.uui-testimonial18_content.background-color-pink600 {
  background-color: var(--ci-dark-red);
  justify-content: space-around;
  height: 28rem;
}

.uui-testimonial18_content.background-color-pink600.w2 {
  background-color: var(--ci-green);
}

.uui-testimonial18_content.background-color-lightblue600 {
  background-color: #0086c9;
}

.uui-testimonial18_content.background-color-orange600 {
  background-color: #e04f16;
}

.uui-testimonial18_arrow {
  border: 1px solid var(--untitled-ui--gray200);
  color: var(--untitled-ui--gray500);
  background-color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transition: all .3s;
  display: flex;
  inset: auto 0% 0% auto;
}

.uui-testimonial18_arrow:hover {
  background-color: var(--untitled-ui--gray50-2);
}

.uui-testimonial18_arrow.left {
  right: 4rem;
}

.uui-testimonial18_slide-nav {
  color: var(--ci-dark-red);
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.uui-testimonial18_slide {
  padding-right: 2rem;
}

.uui-testimonial18_mask {
  width: 33.33%;
  overflow: visible;
}

.uui-testimonial18_component {
  background-color: #0000;
  height: auto;
  margin-top: 4rem;
  padding-bottom: 5rem;
  position: relative;
}

.uui-section_testimonial17 {
  overflow: hidden;
}

.uui-testimonial17_logo {
  max-height: 3rem;
}

.uui-button-link {
  grid-column-gap: .5rem;
  color: var(--untitled-ui--primary700);
  white-space: nowrap;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.uui-button-link:hover {
  color: var(--untitled-ui--primary800);
}

.uui-button-link.is-alternate {
  color: var(--untitled-ui--white);
}

.uui-button-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  display: flex;
}

.uui-testimonial18_content-wrapper {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  color: var(--untitled-ui--white);
  background-color: #ffffff4d;
  border: 1px solid #ffffff80;
  height: 55%;
  padding: 1.5rem;
}

.uui-space-small {
  width: 100%;
  min-height: 1.5rem;
}

.uui-space-xsmall {
  width: 100%;
  min-height: 1rem;
}

.uui-space-medium {
  width: 100%;
  min-height: 2rem;
}

.uui-padding-vertical-xhuge {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.div-block {
  background-color: var(--ci-dark-red);
  flex-flow: row;
  justify-content: center;
  width: 90%;
  height: 1px;
  margin-top: 40px;
  display: block;
}

.hero-heading-right {
  background-color: #f5f7fa00;
  border: .5px solid #6f252480;
  margin-top: 240px;
  padding: 0 30px;
  position: relative;
}

.container-836 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.uui-max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.uui-container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.uui-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--primary600);
  background-color: var(--untitled-ui--primary600);
  color: var(--untitled-ui--white);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  border-color: var(--untitled-ui--primary700);
  background-color: var(--untitled-ui--primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui--primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
}

.uui-button.is-button-large {
  grid-column-gap: .75rem;
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.uui-heading-xlarge {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.uui-heading-xlarge.new {
  font-size: 1.5rem;
  font-weight: 400;
}

.uui-section_heroheader01 {
  overflow: hidden;
}

.uui-heroheader01_content {
  padding-top: 104px;
}

.uui-heroheader01_image-wrapper {
  position: relative;
}

.uui-button-row-2 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-heroheader01_component {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.uui-button-icon-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  display: flex;
}

.uui-button-icon-2.is-icon-large {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
}

.uui-heroheader01_image {
  object-fit: cover;
  border-top-left-radius: 10rem;
  width: 100%;
  height: 40rem;
}

.uui-heroheader01_fileupload-image-wrapper {
  width: 23rem;
  position: absolute;
  inset: auto auto 5% -16%;
}

.uui-heroheader01_pattern-image {
  width: 18.625rem;
  position: absolute;
  top: -6%;
  right: -21%;
}

.uui-heroheader01_fileupload-image1 {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: .5rem;
  width: 23rem;
  min-width: 23rem;
  margin-bottom: .75rem;
}

.uui-heroheader01_fileupload-image2 {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: .5rem;
  width: 23rem;
  min-width: 23rem;
}

.uui-text-size-xlarge {
  color: var(--untitled-ui--gray600);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
}

.uui-button-secondary-gray {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--gray300);
  background-color: var(--untitled-ui--white);
  color: var(--untitled-ui--gray700);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button-secondary-gray:hover {
  background-color: var(--untitled-ui--gray50-2);
  color: var(--untitled-ui--gray800);
}

.uui-button-secondary-gray:focus {
  background-color: var(--untitled-ui--white);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--gray100);
}

.uui-button-secondary-gray.is-button-large {
  grid-column-gap: .75rem;
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.uui-space-small-2 {
  width: 100%;
  min-height: 1.5rem;
}

.uui-space-large {
  width: 100%;
  min-height: 3rem;
}

.uui-padding-vertical-xhuge-2 {
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.text-block-2 {
  font-weight: 400;
}

.image-new {
  border: 1px solid var(--ci-dark-red);
}

.brix---mg-bottom-40px {
  margin-bottom: 40px;
}

.brix---big-icon-left {
  border-radius: 16px;
  width: 15%;
  margin-right: 16px;
}

.brix---subtitle {
  color: var(--brown-1);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.brix---text-200-bold {
  color: var(--brown-1);
  font-size: 18px;
  font-weight: 200;
  line-height: 20px;
}

.brix---paragraph-default {
  color: #000000b3;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 30px;
}

.brix---text-300-bold {
  color: #000c;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.brix---heading-h1-size {
  color: #2c200f;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 50px;
  font-weight: 500;
  line-height: 66px;
}

.code-embed-2 {
  border-radius: 14px;
}

.brix---color-neutral-800 {
  color: #211f54;
}

.brix---mg-bottom-8px {
  margin-bottom: 8px;
}

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

.brix---container-default {
  max-width: 1218px;
  padding-left: 24px;
  padding-right: 24px;
}

.brix---card-link-icon-wrapper {
  color: #6e7191;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid #f7f7fc;
  border-radius: 14px;
  align-items: center;
  padding: 14px 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  text-decoration: none;
  transition: transform .3s, border-color .3s, color .3s;
  display: flex;
  box-shadow: 0 2px 6px #14142b0f;
}

.brix---card-link-icon-wrapper:hover {
  border-color: var(--ci-dark-red);
  transform: scale3d(.96, .96, 1.01);
}

.brix---card-link-icon-wrapper.contact {
  justify-content: center;
  align-items: center;
  display: block;
}

.brix---color-neutral-600 {
  color: #6e7191;
}

.brix---section-position-relative {
  padding-top: 176px;
  padding-bottom: 176px;
  position: relative;
  overflow: hidden;
}

.brix---grid-contact-v1 {
  grid-column-gap: 60px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.2fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.brix---half-bg-right---width-36 {
  z-index: -1;
  background-color: var(--ci-dark-red);
  width: 34%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.brix---color-accent-1 {
  color: #4a3aff;
}

.brix---text-200 {
  color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 18px;
  line-height: 20px;
}

.brix---inner-container-400px {
  max-width: 400px;
}

.contact-section {
  padding-top: 176px;
  padding-bottom: 176px;
  position: relative;
  overflow: hidden;
}

.waves---main-container {
  max-width: 1352px;
  padding-left: 0;
  padding-right: 0;
}

.waves---section-medium {
  padding-top: 100px;
  padding-bottom: 100px;
}

.waves---paragraph-big {
  font-size: 20px;
  line-height: 130%;
}

.waves-master-gallery-1 {
  width: 100%;
  max-width: 1181px;
  margin-left: auto;
  margin-right: auto;
}

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

.waves-column-gallery-1 {
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

.waves-image-gallery-1 {
  border-radius: 24px;
  width: 100%;
}

.waves-text-wrap-gallery-1 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.heading-11 {
  font-size: 4rem;
}

@media screen and (min-width: 1440px) {
  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .brix---grid-contact-v1 {
    grid-column-gap: 80px;
    grid-template-columns: 1fr 1.2fr;
  }
}

@media screen and (max-width: 991px) {
  blockquote {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
    line-height: 28px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section.section-cta {
    padding: 70px 0;
  }

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

  .section.footer {
    padding: 60px 20px;
  }

  .section.section-clients {
    min-height: auto;
    padding-top: 0;
    overflow: hidden;
  }

  .section.section-introduction {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .section.page-content {
    padding-top: 6rem;
  }

  .section.section-services {
    padding: 90px 35px 120px;
  }

  .section.single-special-project {
    padding-bottom: 70px;
  }

  .section.section-introduction-leistungen {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .container.absolute {
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
  }

  .paragraph-bigger {
    font-size: 22px;
    line-height: 32px;
  }

  .button {
    justify-content: center;
  }

  .post-rich-text {
    width: 100%;
  }

  .brand {
    align-items: center;
    display: flex;
  }

  .brand.w--current {
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .menu-wrapper {
    order: 1;
    margin-left: 30px;
    padding-left: 0;
  }

  .header {
    padding: 15px 20px;
  }

  .navigation-item {
    background-color: var(--ci-beige);
    text-align: left;
    border: 0 solid #000;
    border-bottom: 1px solid #6f252424;
    width: 100%;
    padding: 15px 20px;
    transition: background-color .4s, opacity .4s, color .4s;
    display: block;
  }

  .navigation-item:hover {
    background-color: var(--white);
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .menu-button {
    color: var(--heading-color);
    cursor: pointer;
    width: 25px;
    height: 25px;
    padding: 0;
    line-height: 25px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    overflow: hidden;
    transform: translate(0, -50%);
  }

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

  .logo-image {
    width: 100px;
  }

  .navigation-items {
    background-color: var(--primary-light-color);
    position: absolute;
    inset: 100% 0% auto;
  }

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

  .cta-text {
    width: auto;
  }

  .cta-wrapper {
    grid-column-gap: 33px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1.4fr 1fr;
    grid-auto-columns: 1.25fr;
    padding-top: 0;
    padding-bottom: 0;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .team-pic {
    min-height: 349px;
  }

  .team-members {
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
  }

  .blog-detail-header-wrapper {
    width: 100%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-entry-image {
    min-height: 400px;
  }

  .utility-page-wrap {
    padding-top: 250px;
    padding-bottom: 250px;
  }

  ._404-content-wrap {
    max-width: 550px;
  }

  .button-wrapper {
    padding-right: 50px;
  }

  .logo-wrapper {
    margin-right: 0;
  }

  .hero-heading-wrapper {
    width: 100%;
    max-width: none;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .text-color-secondary {
    font-weight: 400;
  }

  .hero-subtitle.text-lead {
    margin-bottom: 36px;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
  }

  .border-rotate {
    display: none;
  }

  .hero {
    width: 100%;
  }

  .hero-pattern {
    display: none;
  }

  .hero-heading {
    text-align: center;
    align-items: center;
  }

  .hero-banner-photo {
    min-height: 500px;
  }

  .heading.hero-title {
    margin-bottom: 15px;
    padding-top: 0;
    font-size: 36px;
    line-height: 44px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 40px;
  }

  .cta-paragraph {
    padding-left: 0;
    padding-right: 0;
  }

  .cta-banner {
    padding-left: 0;
  }

  .footer-main-about {
    max-width: none;
    padding-bottom: 50px;
  }

  .footer-main-navigation {
    grid-column-gap: 60px;
    max-width: none;
  }

  .footer-list-item {
    margin-bottom: 5px;
  }

  .page-header {
    min-height: 100px;
    padding-bottom: 50px;
  }

  .page-header-block {
    max-width: 100%;
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header-block.contact-page-header {
    max-width: none;
  }

  .badge.badge-light {
    padding: 8px 23px;
    font-size: 12px;
    line-height: 20px;
  }

  .page-header-title {
    margin-bottom: 0;
    font-size: 38px;
    line-height: 55px;
  }

  .footer-logo-wrapper {
    justify-content: center;
    align-items: center;
  }

  .logo-block {
    flex-direction: column;
    padding-top: 70px;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-into {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .into-grid {
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 20px;
    padding-bottom: 0;
    display: flex;
    overflow: auto;
  }

  .intro-title {
    font-size: 34px;
    line-height: 40px;
  }

  .title {
    font-size: 38px;
    line-height: 44px;
  }

  .inline-flex {
    flex-flow: column;
    overflow: hidden;
  }

  .tab-link {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 22px;
    line-height: 28px;
  }

  .tab-link.first, .tab-link.first.w--current {
    padding-bottom: 15px;
  }

  .tab-categories {
    justify-content: center;
    width: 100%;
    overflow: auto;
  }

  .page-header-description {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .cms-collection {
    margin-top: 50px;
  }

  .project-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  .project-title-name {
    font-size: 18px;
    line-height: 23px;
  }

  .project-title {
    margin-bottom: 10px;
  }

  .our-value-item {
    margin-bottom: 30px;
  }

  .our-value-title {
    font-size: 18px;
    line-height: 23px;
  }

  .header-container {
    flex-flow: row;
  }

  .featured-project-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .project-preview {
    grid-column-gap: 30px;
  }

  .project-single-content {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .project-gallery, .project-related {
    padding-top: 70px;
  }

  .project-related-wrapper {
    padding-top: 0;
  }

  .team-member-wrapper {
    padding-bottom: 70px;
  }

  .tab-category-list-wrapper {
    justify-content: center;
    width: auto;
    min-width: 100%;
    display: flex;
    overflow: auto;
  }

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

  .project-collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-entry-title {
    font-size: 42px;
    line-height: 52px;
  }

  .blog-detail-summary {
    padding-top: 70px;
    padding-bottom: 35px;
  }

  .blog-author {
    padding-bottom: 40px;
  }

  .blog-latest-articles {
    padding-top: 70px;
  }

  .content-wrapper {
    flex-flow: row;
    display: block;
  }

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

  .team-detail-image {
    min-height: 600px;
  }

  .team-detail-summary {
    text-align: center;
    align-items: center;
    padding: 0;
  }

  .team-detail-link.email {
    padding-right: 15px;
  }

  .team-detail-media, .team-detail-media.social {
    justify-content: center;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 70px;
  }

  .service-content-block {
    text-align: center;
    align-items: center;
    max-width: none;
    padding-top: 50px;
  }

  .service-header-title {
    font-size: 30px;
    line-height: 36px;
  }

  .service-wrapper {
    overflow: hidden;
  }

  .service-list-wrapper {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    width: auto;
    padding-bottom: 15px;
    display: flex;
    overflow: auto;
  }

  .service-list-item {
    min-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-banner-block {
    order: -1;
    width: 100%;
  }

  .service-paragraph {
    margin-top: 10px;
  }

  .testimonial-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-avatar {
    min-height: 364px;
  }

  .testimonial-intro, .testimonial-intro.secondary {
    padding: 40px 20px;
  }

  .testimonial-meta {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-description {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 20px;
    line-height: 28px;
  }

  .slack-image {
    display: none;
  }

  .special-project-title {
    font-size: 57px;
    line-height: 67px;
  }

  .special-project-button {
    margin-top: 40px;
  }

  .special-project-info {
    text-align: center;
    align-items: center;
    max-width: none;
    margin-top: -90px;
    padding-left: 115px;
    padding-right: 115px;
  }

  .about-vision {
    padding-top: 70px;
    padding-bottom: 70px;
  }

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

  .hero-about-intro {
    text-align: center;
    background-size: auto;
    border-top-width: 0;
    border-right-width: 1px;
    align-items: center;
    padding: 60px;
  }

  .hero-about-title {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-about-button {
    justify-content: center;
  }

  .process-title {
    font-size: 20px;
  }

  .team-detail-start {
    justify-content: center;
  }

  .team-detail-start-item.first {
    margin-right: 15px;
  }

  .contact-form-container {
    padding-top: 70px;
  }

  .contact-list-item {
    min-height: 364px;
  }

  .contact-offices {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .social-list-item {
    width: 56px;
    height: 56px;
  }

  .contact-offices-title {
    font-size: 24px;
    line-height: 30px;
  }

  .get-quote-form {
    margin-bottom: 70px;
  }

  .team-wrapper {
    padding-top: 70px;
  }

  .faq-wrapper {
    border-left: 0 #0000;
    padding-left: 0;
  }

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

  .faq-heading-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 36px;
  }

  .faq-info-contact {
    text-align: center;
  }

  .accordion-title {
    padding-right: 10px;
  }

  .accordion-paragraph {
    padding-top: 30px;
    padding-right: 50px;
  }

  .container-830 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .policy-wrapper, .terms-wrapper {
    padding-top: 0;
  }

  .rte-custom h5 {
    margin-top: 36px;
  }

  .button-primary-light.floating {
    position: relative;
    left: -133px;
  }

  .solid-background {
    display: none;
  }

  .button-large {
    padding: 20px 40px;
  }

  .intro-list-item {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 28px;
  }

  .intro-banner-grid {
    flex-direction: row;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    max-width: 75%;
    padding-top: 0;
  }

  .intro-banner-grid.no-padding {
    margin-bottom: 0;
  }

  .intro-banner-grid.vertical.no-padding {
    align-items: flex-start;
  }

  .intro-picture-one {
    width: 539px;
    margin-left: 0;
    margin-right: 15px;
    padding-bottom: 0;
  }

  .intro-picture-two {
    align-self: flex-start;
    width: 270px;
    margin-left: 15px;
  }

  .intro-picture-three {
    margin-left: 30px;
    margin-right: 30px;
  }

  .intro-picture-five {
    align-self: flex-start;
    width: 539px;
    margin-left: 15px;
  }

  .intro-picture-four {
    width: 270px;
    margin-right: 15px;
    padding-bottom: 0;
  }

  .project-header {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 50px;
  }

  .project-button-wrapper {
    margin-top: 30px;
  }

  .featured-project-grid {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-one-column {
    height: 349px;
  }

  .project-two-column {
    height: 698px;
  }

  .featured-heading-content {
    text-align: center;
    align-items: center;
    max-width: 562px;
  }

  .featured-project-wrapper._1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    flex-flow: row;
    display: flex;
  }

  .special-project-thumbnail {
    max-width: none;
    min-height: 430px;
  }

  .blog-slide-item {
    width: 50%;
  }

  .logo-slider-mask {
    overflow: hidden;
  }

  .logo-slide {
    width: 100%;
  }

  .logo-quote {
    opacity: 1;
    max-width: 320px;
    padding-bottom: 20px;
    position: static;
  }

  .media-logo {
    width: 12%;
    position: static;
  }

  .intro-slider-mask {
    overflow: hidden;
  }

  .intro-slide {
    width: 34%;
  }

  .value-slider {
    display: none;
    overflow: hidden;
  }

  .value-slide {
    width: 100%;
    padding-left: 170px;
    padding-right: 170px;
  }

  .collection-list-wrapper {
    justify-content: center;
    width: 100%;
  }

  .collection-item {
    width: 100%;
  }

  .project-single-title {
    padding-top: 70px;
  }

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

  .project-sidebar {
    background-position: 100% 100%;
    background-size: auto;
    padding: 50px;
  }

  .sidebar-title {
    font-size: 47px;
    line-height: 55px;
  }

  .sidebar-description {
    margin-top: 15px;
  }

  .sidebar-button-wrapper {
    margin-top: 40px;
  }

  .team-detail-name {
    justify-content: center;
  }

  .pattern-in-left {
    width: 50%;
  }

  .about-mission {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .mission-side-wrapper {
    min-height: 468px;
    margin-top: 50px;
  }

  .team-slide-item {
    width: 50%;
  }

  .about-team {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-join-team {
    padding-top: 70px;
  }

  .process-slide-item {
    width: 33%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .help-slide-item {
    width: 33%;
  }

  .accordion-heading-2 {
    font-size: 26px;
  }

  .heading-10 {
    margin-bottom: 50px;
    font-size: 30px;
  }

  .faq-heading {
    font-size: 20px;
  }

  .heading-10-copy {
    font-size: 22px;
  }

  .section-2-copy-copy-copy {
    padding-top: 60px;
    padding-bottom: 180px;
  }

  .logo-mobile {
    margin-bottom: 30px;
    display: block;
  }

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

  .container-831 {
    max-width: 728px;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .fn-heading-2 {
    margin-bottom: 12px;
    font-size: 40px;
  }

  .fn-button-secondery {
    transition: none;
  }

  .fn-button-secondery:hover {
    background-color: #0000;
  }

  .fn-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fn-container-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .fh-section-image-wrapper-first {
    height: 334px;
  }

  .fn-list {
    margin-bottom: auto;
  }

  .container-833 {
    padding-left: 6%;
    padding-right: 6%;
  }

  .container-833.is-home-intro {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .button-2 {
    padding: 8px 9px 8px 21px;
  }

  .button-2:hover {
    transform: none;
  }

  .project-thumbnail-container {
    margin-left: 1px;
    margin-right: 1px;
  }

  .projects-marquee-container {
    width: 250vw;
  }

  .content-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .scroll-link {
    white-space: nowrap;
    min-width: 48vw;
    padding-left: 48px;
    padding-right: 48px;
  }

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

  .looping-heading {
    font-size: 48px;
  }

  .scroll-arrow {
    min-width: 16px;
  }

  .container-834 {
    max-width: 728px;
  }

  .team-slide-wrapper {
    width: 47%;
    margin-right: 6%;
  }

  .testimonial-slide {
    padding-left: 32px;
  }

  .testimonial-quote {
    overflow: visible;
  }

  .home-process_heading {
    font-size: 11vw;
  }

  .container-835 {
    max-width: 728px;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .features-right {
    max-width: 100%;
  }

  .wbs-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .wbs-feature-split {
    max-width: 100%;
  }

  .wbs-feature-split-right {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .uui-testimonial18_mask {
    width: 50%;
  }

  .uui-testimonial18_component {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .hero-heading-right {
    margin-top: 190px;
  }

  .container-836 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .uui-heading-xlarge {
    font-size: 3.25rem;
  }

  .uui-heroheader01_content {
    padding-top: 0;
  }

  .uui-heroheader01_component {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .uui-heroheader01_image {
    margin-bottom: -30px;
  }

  .uui-heroheader01_fileupload-image-wrapper {
    left: -2.5%;
  }

  .uui-space-large {
    min-height: 2.5rem;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .brix---subtitle {
    font-size: 16px;
  }

  .brix---heading-h1-size {
    font-size: 44px;
    line-height: 60px;
  }

  .brix---section-position-relative {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .brix---grid-contact-v1 {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .brix---half-bg-right---width-36 {
    width: 100%;
    height: 40%;
    inset: auto 0% 0%;
  }

  .contact-section {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .waves---section-medium {
    padding-left: 25px;
    padding-right: 25px;
  }

  .waves---paragraph-big {
    font-size: 18px;
  }

  .heading-11 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }

  h1 {
    font-size: 46px;
    line-height: 56px;
  }

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

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h4 {
    font-size: 24px;
    line-height: 34px;
  }

  h5 {
    font-size: 18px;
    line-height: 28px;
  }

  .section.footer {
    margin-left: 0;
    margin-right: 0;
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .section.section-introduction {
    padding-left: 0;
    padding-right: 0;
  }

  .section.section-services {
    padding-bottom: 140px;
  }

  .section.section-introduction-leistungen {
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    text-align: left;
  }

  .paragraph-bigger {
    font-size: 20px;
    line-height: 30px;
  }

  .brand {
    padding-left: 0;
  }

  .brand.w--current {
    width: 80%;
  }

  .header {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo-image {
    width: 90px;
  }

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

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

  .team-pic {
    min-height: 249px;
  }

  .team-member-title-wrap {
    min-height: 170px;
    padding: 20px;
  }

  .blog-detail-header-wrapper {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .blog-entry-image {
    min-height: 340px;
  }

  .protected-heading {
    margin-bottom: 20px;
  }

  .utility-page-wrap {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  ._404-content-wrap {
    max-width: none;
  }

  .hero-heading-wrapper {
    max-width: none;
    margin-top: auto;
    padding-top: 35px;
    padding-bottom: 0;
  }

  .hero-heading {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-banner-photo {
    min-height: 480px;
    padding: 0;
  }

  .heading.hero-title {
    font-size: 32px;
  }

  .cta-paragraph {
    font-size: 18px;
    line-height: 28px;
  }

  .cta-banner {
    padding-left: 0;
    display: none;
  }

  .footer-main-navigation {
    grid-column-gap: 30px;
    padding-left: 0;
  }

  .page-header-title {
    font-size: 36px;
    line-height: 48px;
  }

  .heading-into {
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .into-grid {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 10px;
  }

  .intro-title {
    font-size: 28px;
  }

  .heading-content {
    max-width: none;
  }

  .title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-description {
    font-size: 18px;
    line-height: 28px;
  }

  .section-description.dark {
    max-width: 288px;
  }

  .tab-link {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tab-link.first {
    padding-left: 0;
    padding-right: 0;
  }

  .tab-categories {
    justify-content: flex-start;
  }

  .page-header-description {
    font-size: 18px;
    line-height: 28px;
  }

  .projects-collection-list {
    margin-left: 0;
    margin-right: 0;
  }

  .our-value-item {
    text-align: center;
  }

  .our-value-description {
    font-size: 18px;
    line-height: 28px;
  }

  .project-collection-item {
    padding-left: 0;
    padding-right: 0;
  }

  .project-preview {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
    min-height: 568px;
    margin-bottom: 230px;
    overflow: visible;
  }

  .project-preview-intro {
    position: absolute;
    inset: 0 20px auto auto;
  }

  .project-preview-info-wrapper {
    border: 1px solid var(--grey-400);
    padding: 40px;
  }

  .project-preview-info-title {
    margin-bottom: 40px;
  }

  .project-related-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .blogs-collection-list {
    margin-top: 0;
  }

  .blogs-grid-layout {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .blog-entry-title {
    font-size: 34px;
    line-height: 40px;
  }

  .blog-author {
    padding-bottom: 30px;
  }

  .content-wrapper {
    flex-flow: row;
    display: block;
  }

  .team-detail-grid {
    grid-row-gap: 46px;
  }

  .team-detail-image {
    min-height: 528px;
  }

  .service-header {
    flex-direction: column;
    align-items: center;
  }

  .service-content-block {
    text-align: center;
  }

  .service-list-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-description {
    font-size: 18px;
    line-height: 28px;
  }

  .testimonial-avatar {
    min-height: 264px;
  }

  .testimonial-intro, .testimonial-intro.secondary {
    padding: 30px 0;
  }

  .testimonial-description {
    margin-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 19px;
    line-height: 29px;
  }

  .testimonial-name {
    margin-top: 20px;
  }

  .testimonial-icon {
    width: 30px;
    height: 30px;
  }

  .special-project-title {
    margin-top: auto;
    font-size: 42px;
    line-height: 57px;
  }

  .special-project-info {
    margin-top: -70px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-about-intro {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-item {
    flex-flow: column;
  }

  .contact-list-item {
    min-height: 264px;
  }

  .contact-offices {
    text-align: center;
  }

  .contact-offices-info {
    max-width: none;
    margin-bottom: 40px;
  }

  .contact-offices-social {
    max-width: none;
  }

  .contact-offices-description {
    margin-top: 20px;
  }

  .social-list {
    justify-content: center;
  }

  .social-list-item {
    width: 50px;
    height: 50px;
  }

  .accordion-title {
    font-size: 20px;
  }

  .accordion-paragraph {
    padding-top: 20px;
    padding-right: 10px;
  }

  .rte-custom h5 {
    margin-top: 30px;
  }

  .protected-form-wrapper {
    max-width: none;
  }

  .heading-not-found {
    margin-bottom: 20px;
  }

  .button-primary-light {
    padding: 6px 20px;
  }

  .button-primary-light.floating {
    left: -57px;
  }

  .intro-list-item {
    flex-flow: column;
    font-size: 14px;
  }

  .project-one-column {
    height: 249px;
  }

  .project-two-column {
    height: 498px;
  }

  .special-project-description {
    font-size: 16px;
  }

  .featured-title-description {
    font-size: 18px;
    line-height: 28px;
  }

  .special-project-thumbnail {
    min-height: 368px;
  }

  .blog-description, .footer-info {
    font-size: 18px;
    line-height: 28px;
  }

  .blog-slide-item {
    width: 100%;
  }

  .blog-left-arrow, .blog-right-arrow {
    width: 48px;
    height: 48px;
  }

  .blog-slide-mask {
    padding-bottom: 100px;
  }

  .logo-quote {
    font-size: 18px;
    line-height: 28px;
  }

  .media-logo {
    width: 80px;
  }

  .intro-slider {
    padding-top: 50px;
    left: -91px;
  }

  .intro-slider-mask {
    overflow: visible;
  }

  .intro-slide {
    width: 36%;
  }

  .value-slide {
    padding-left: 100px;
    padding-right: 100px;
  }

  .collection-item {
    text-align: center;
    min-width: 100%;
  }

  .project-sidebar {
    background-size: contain;
  }

  .project-slider-mask {
    padding-bottom: 90px;
  }

  .project-slide-item {
    width: 50%;
  }

  .about-title {
    padding-left: 30px;
    padding-right: 30px;
  }

  .process-slider {
    flex-flow: row;
    display: none;
  }

  .process-slide-item {
    width: 20%;
  }

  .contact-office-grid {
    grid-column-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .help-slider {
    display: none;
  }

  .tabs-menu {
    color: #fff;
    flex-flow: column;
  }

  .dropdown-toggle {
    display: block;
  }

  .dropdown {
    z-index: 9;
    color: #fff;
    background-color: #0c2954;
    border-radius: .3125rem;
    width: 100%;
  }

  .dropdown-link {
    color: #0c2954;
    border-bottom: 1px #0c2954;
  }

  .dropdown-list {
    color: #0c2954;
    top: 60px;
  }

  .dropdown-list.w--open {
    z-index: 9;
    background-color: #e8eff9;
    border: 1px solid #0c2954;
    border-top-style: none;
    border-radius: 0 0 .3125rem .3125rem;
  }

  .accordion-item-content {
    margin-right: 0;
  }

  .accordion-heading-2 {
    font-size: 24px;
  }

  .heading-10 {
    font-size: 28px;
  }

  .faq-heading {
    font-size: 18px;
  }

  .heading-10-copy {
    font-size: 20px;
  }

  .section-2-copy-copy-copy {
    padding: 40px 15px 80px;
  }

  .grid, .grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .team-circles {
    padding: 60px 15px;
  }

  .centered-heading {
    font-size: 36px;
  }

  .centered-subheading {
    font-size: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fn-heading-2 {
    font-size: 34px;
  }

  .fn-paragraph {
    margin-bottom: 24px;
  }

  .fn-button {
    width: 100%;
  }

  .fn-section {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fn-container-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .fn-label-small {
    margin-bottom: 12px;
  }

  .fn-list {
    margin-bottom: 30px;
  }

  .button-2 {
    font-size: 15px;
  }

  .button-arrow {
    width: 10px;
    height: 10px;
  }

  .explore-button-copntainer {
    padding-bottom: 50px;
  }

  .projects-marquee-container {
    width: 320vw;
  }

  .projects-wrapper {
    padding-bottom: 80px;
  }

  .scroll-link {
    border-style: none solid;
    border-color: #000 #ffffff1a;
    min-height: 65px;
  }

  .looping-heading {
    font-size: 42px;
  }

  .looping-hero-top {
    padding-top: 36px;
  }

  .team-slider-2, .testimonial-slider-large {
    padding: 60px 15px;
  }

  .testimonial-slide {
    flex-direction: column;
    padding: 23px;
  }

  .testimonial-content {
    max-width: none;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .testimonial-quote-icon {
    width: 50px;
    margin-bottom: 16px;
  }

  .testimonial-image-two {
    width: 100%;
    height: auto;
  }

  .marquee-snap_wrapper {
    font-size: 2.2vw;
  }

  .features-list {
    padding: 60px 15px;
  }

  .wbs-section {
    padding: 2rem 2%;
  }

  .wbs-feature-split {
    grid-template-columns: 1fr;
  }

  .uui-page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-text-size-large {
    font-size: 1rem;
  }

  .uui-heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-heading-small {
    font-size: 1.5rem;
  }

  .uui-button-row {
    align-self: stretch;
  }

  .uui-testimonial18_content {
    padding: 1.5rem;
  }

  .uui-testimonial18_arrow:hover {
    background-color: var(--untitled-ui--white);
  }

  .uui-testimonial18_arrow.left {
    right: 3.5rem;
  }

  .uui-testimonial18_slide {
    padding-right: 1.5rem;
  }

  .uui-testimonial18_mask {
    width: 80%;
  }

  .uui-testimonial18_component {
    margin-top: 3rem;
  }

  .uui-testimonial17_logo {
    max-height: 2.5rem;
  }

  .uui-button-link {
    font-size: 1rem;
  }

  .uui-button-link:hover {
    color: var(--untitled-ui--primary700);
  }

  .uui-button-link.is-alternate:hover {
    color: var(--untitled-ui--white);
  }

  .uui-space-small {
    min-height: 1.25rem;
  }

  .uui-space-xsmall {
    min-height: .75rem;
  }

  .uui-space-medium {
    min-height: 1.5rem;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-heading-right {
    padding: 60px 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .uui-page-padding-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui--primary600);
    background-color: var(--untitled-ui--primary600);
  }

  .uui-button.is-button-large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .uui-heading-xlarge {
    font-size: 2.25rem;
  }

  .uui-button-row-2 {
    align-self: stretch;
  }

  .uui-button-row-2.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-button-wrapper.max-width-full-mobile-landscape {
    width: 100%;
  }

  .uui-button-icon-2.is-icon-large {
    width: 1.25rem;
    height: 1.25rem;
  }

  .uui-heroheader01_image {
    border-top-left-radius: 6rem;
    height: 22rem;
  }

  .uui-heroheader01_pattern-image {
    width: 14.9rem;
    top: auto;
    bottom: -15%;
    right: -10%;
  }

  .uui-text-size-xlarge {
    font-size: 1.125rem;
  }

  .uui-button-secondary-gray {
    padding-left: 1.25rem;
    font-size: 1rem;
  }

  .uui-button-secondary-gray:hover {
    background-color: var(--untitled-ui--white);
    color: var(--untitled-ui--gray700);
  }

  .uui-button-secondary-gray.is-button-large {
    grid-column-gap: .5rem;
    padding: .75rem 1.25rem;
    font-size: 1rem;
  }

  .uui-space-small-2 {
    min-height: 1.25rem;
  }

  .uui-space-large {
    min-height: 2rem;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .brix---mg-bottom-40px {
    margin-bottom: 24px;
  }

  .brix---big-icon-left {
    border-radius: 12px;
    max-width: 56px;
  }

  .brix---subtitle {
    font-size: 17px;
    line-height: 19px;
  }

  .brix---text-200-bold {
    font-size: 16px;
    line-height: 18px;
  }

  .brix---text-300-bold {
    font-size: 18px;
    line-height: 22px;
  }

  .brix---heading-h1-size {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 46px;
  }

  .brix---section-position-relative {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .brix---grid-contact-v1 {
    grid-template-columns: 1fr;
  }

  .brix---text-200 {
    font-size: 16px;
    line-height: 18px;
  }

  .brix---inner-container-400px {
    max-width: 100%;
  }

  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .waves---main-container {
    padding-left: 0;
    padding-right: 0;
  }

  .waves---section-medium {
    padding: 80px 0;
  }

  .waves-master-gallery-1 {
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .waves-grid-gallery-1 {
    grid-template-columns: 1fr;
  }

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

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

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

  h3 {
    font-size: 26px;
    line-height: 34px;
  }

  h4 {
    font-size: 22px;
    line-height: 30px;
  }

  h5 {
    line-height: 26px;
  }

  h6 {
    font-size: 14px;
    line-height: 22px;
  }

  blockquote {
    padding: 26px 20px;
  }

  .section.section-cta {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.hero {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .section.footer {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .section.section-introduction {
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 10px;
    display: flex;
  }

  .section.section-introduction.divider {
    display: none;
  }

  .section.section-projects {
    background-color: #fff;
    padding-top: 0;
  }

  .section.page-content {
    padding-top: 4rem;
  }

  .section.section-services {
    padding: 0;
  }

  .section.industriereinigung {
    padding-top: 0;
    padding-bottom: 10px;
    display: none;
  }

  .section.section-introduction-leistungen {
    flex-flow: column;
    padding-top: 0;
    padding-bottom: 10px;
    display: none;
  }

  .section.section-introduction-leistungen.divider {
    display: none;
  }

  .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .container.absolute {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-bigger {
    font-size: 18px;
    line-height: 26px;
  }

  .post-rich-text {
    width: 100%;
    max-width: none;
  }

  .brand.w--current {
    width: 90%;
  }

  .menu-wrapper {
    margin-left: 0;
  }

  .menu-button {
    float: right;
    clear: none;
    flex-direction: row;
    flex: none;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    display: flex;
  }

  .menu-button.w--open {
    flex: none;
  }

  .logo-image {
    width: 121px;
  }

  .team-pic {
    min-height: 280px;
  }

  .team-members {
    grid-column-gap: 0px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .team-member-title-wrap {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .blog-detail-header-wrapper {
    width: 100%;
    max-width: none;
  }

  .blog-entry-image {
    min-height: 280px;
  }

  .utility-page-wrap {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .button-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-right: 40px;
  }

  .button-quote-wrapper {
    flex: none;
    justify-content: flex-end;
    align-items: center;
    min-width: auto;
    margin-left: 0;
    display: block;
  }

  .hero-heading-wrapper {
    margin-top: 0;
    padding-top: 30px;
  }

  .text-color-secondary {
    font-weight: 400;
  }

  .hero-subtitle.text-lead {
    font-size: 18px;
    line-height: 28px;
  }

  .page-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    overflow: visible;
  }

  .hero-heading {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-banner-photo {
    width: auto;
    height: auto;
    min-height: 320px;
    padding-right: 0;
  }

  .heading.hero-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
  }

  .cta-title {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 34px;
  }

  .cta-paragraph {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-main-navigation {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    margin-left: auto;
    margin-right: auto;
  }

  .page-header-block.about-page-header {
    padding-left: 30px;
    padding-right: 30px;
  }

  .page-header-title {
    font-size: 28px;
    line-height: 46px;
  }

  .into-grid {
    grid-row-gap: 50px;
    max-width: none;
    min-height: auto;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .intro-title {
    padding-left: 0;
    padding-right: 0;
    font-size: 22px;
    line-height: 38px;
  }

  .title {
    font-size: 28px;
    line-height: 34px;
  }

  .section-description {
    padding-left: 0;
    padding-right: 0;
  }

  .section-description.dark {
    font-size: 16px;
    line-height: 24px;
  }

  .tab-categories {
    padding-bottom: 5px;
  }

  .page-header-description.header-about-description {
    padding-left: 0;
    padding-right: 0;
  }

  .header-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .featured-project-collection-list {
    grid-template-columns: 1fr;
  }

  .project-preview {
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 100%;
    min-height: 320px;
    margin-bottom: 476px;
  }

  .project-preview-intro {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    inset: 0 0% auto;
  }

  .project-preview-info-wrapper {
    width: 100%;
    padding: 30px 20px;
  }

  .project-preview-list-item, .project-preview-list-item.first {
    grid-template-columns: 1fr;
  }

  .project-item-label {
    flex-wrap: wrap;
  }

  .project-info-image {
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
  }

  .project-gallery-list {
    grid-column-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .project-related-list {
    grid-column-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .team-member-wrapper {
    padding-bottom: 60px;
  }

  .tab-collection-item {
    text-align: center;
    min-width: 100%;
  }

  .tab-category-list-wrapper {
    width: 100%;
    overflow: hidden;
  }

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

  .blog-main-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .project-collection-grid {
    grid-template-columns: 1fr;
  }

  .blog-entry-title {
    font-size: 26px;
    line-height: 34px;
  }

  .blog-detail-summary {
    padding-top: 50px;
  }

  .blog-author {
    flex-direction: column;
    padding-top: 50px;
  }

  .blog-author-info {
    flex-direction: column;
    justify-content: center;
  }

  .blog-author-image {
    width: 90px;
    height: 90px;
  }

  .blog-author-name {
    margin-left: 10px;
    font-size: 18px;
    line-height: 28px;
  }

  .blog-author-info-content {
    align-items: center;
    margin-top: 20px;
    display: flex;
  }

  .blog-author-label {
    margin-bottom: 0;
  }

  .blog-author-social {
    justify-content: space-between;
    padding-top: 20px;
  }

  .blog-author-social-item {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 25px;
  }

  .blog-author-social-item.last {
    margin-right: 0;
  }

  .team-detail-image {
    min-height: 280px;
  }

  .team-detail-link.email {
    padding-right: 0;
  }

  .team-detail-media {
    flex-direction: column;
  }

  .article-title-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .service-header-title {
    font-size: 26px;
    line-height: 32px;
  }

  .service-list-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 51px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .service-list-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    text-align: center;
    font-family: Lato, sans-serif;
    font-size: 17px;
    font-weight: 300;
  }

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

  .testimonial-avatar {
    min-height: 280px;
  }

  .testimonial-intro, .testimonial-intro.secondary {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .special-project-title {
    font-size: 32px;
    line-height: 40px;
  }

  .special-project-info {
    padding: 50px 15px;
  }

  .hero-about-intro {
    background-size: cover;
  }

  .hero-about-title {
    font-size: 28px;
  }

  .hero-about-intro-text {
    padding-left: 0;
    padding-right: 0;
  }

  .process-item {
    padding: 40px 20px;
  }

  .process-title {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .team-detail-start {
    flex-direction: column;
  }

  .team-detail-start-item.last {
    margin-top: 5px;
  }

  .team-detail-start-item.first {
    margin-right: 0;
  }

  .contact-list-item {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .contact-fact-title {
    margin-top: 30px;
  }

  .form-filed {
    width: 100%;
  }

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

  .checkbox-field {
    padding-left: 0;
  }

  .checkbox {
    margin-left: 0;
  }

  .checkbox-field-label {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
  }

  .accordion-title {
    padding-right: 0;
    font-size: 18px;
  }

  .accordion-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .accordion-paragraph {
    padding-right: 0;
  }

  .accordion-lottie-ant {
    display: none;
  }

  .protected-form-field {
    padding-left: 0;
    padding-right: 0;
  }

  .button-label {
    font-size: 12px;
  }

  .button-label.menu {
    font-size: 10px;
  }

  .phone-label {
    display: none;
  }

  .button-primary-light {
    padding: 8px 13px;
    font-size: 12px;
    line-height: 1;
    position: relative;
    left: -34px;
  }

  .button-primary-light.floating {
    display: none;
  }

  .button-large {
    padding: 15px 30px;
  }

  .intro-list-icon {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-list-label {
    margin-left: auto;
    margin-right: auto;
    font-size: 10px;
  }

  .intro-banner-grid {
    max-width: none;
  }

  .intro-banner-grid.vertical.no-padding {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .intro-picture-one, .intro-picture-two {
    width: 280px;
  }

  .intro-picture-three {
    width: 140px;
  }

  .intro-picture-five, .intro-picture-four {
    width: 280px;
  }

  .project-header {
    padding-bottom: 0;
  }

  .project-one-column {
    height: auto;
  }

  .project-two-column {
    grid-column-gap: 0px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    height: auto;
  }

  .special-project-subtitle {
    font-size: 12px;
  }

  .featured-project-wrapper {
    min-height: 280px;
  }

  .featured-title-description {
    font-size: 16px;
  }

  .special-project-thumbnail {
    min-height: 320px;
  }

  .blog-slide-item {
    width: 100%;
  }

  .paragraph {
    font-size: 18px;
    line-height: 28px;
  }

  .intro-slider {
    flex-flow: column;
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    left: -37px;
  }

  .intro-slide {
    width: 34%;
  }

  .value-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .project-sidebar {
    background-size: contain;
    padding: 36px 20px 40px;
  }

  .project-slide-item {
    width: 100%;
  }

  .sidebar-title {
    font-size: 36px;
    line-height: 46px;
  }

  .sidebar-description {
    margin-top: 20px;
  }

  .sidebar-button-wrapper {
    margin-top: 36px;
  }

  .team-member-container {
    margin-bottom: 0;
  }

  .team-detail-name {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
  }

  .team-name-label {
    margin-left: 6px;
  }

  .mission-side-wrapper {
    min-height: 400px;
  }

  .team-slide-item {
    width: 100%;
  }

  .about-join-team {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .help-slide-item {
    width: 100%;
  }

  .tabs-menu {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    display: grid;
    left: -6px;
  }

  .dropdown-toggle {
    padding: .75rem 1.25rem;
  }

  .dropdown {
    border-left: 1px solid #fff0;
    border-right: 1px solid #0000;
    margin-bottom: 2rem;
    display: block;
  }

  .tab-link-2.w--current {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .dropdown-list.w--open {
    background-color: #e8eff9;
    top: 2.9375rem;
  }

  .section-faq {
    padding: 100px 15px;
  }

  .header-center-box._75 {
    width: 90%;
  }

  .accordion-heading-2 {
    font-size: 18px;
  }

  .paragraph-16 {
    font-size: 16px;
    font-weight: 300;
  }

  .heading-10 {
    font-size: 26px;
    line-height: 45px;
  }

  .faq-heading, .heading-10-copy {
    font-size: 18px;
  }

  .section-2-copy-copy-copy {
    padding-bottom: 100px;
  }

  .logo-mobile {
    margin-bottom: 20px;
  }

  .container-831 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    margin-bottom: 30px;
  }

  .text-span-17 {
    font-size: 18px;
  }

  .fn-button {
    color: #ffffffe8;
    width: 100%;
  }

  .fn-button:hover {
    color: #fff;
  }

  .fn-button-secondery {
    width: 100%;
  }

  .fn-section {
    background-image: linear-gradient(85deg, #fff0, #ffffffab 12%, #ffffffe8 48%), url('../images/2149721876.webp');
    background-position: 0 0, 61% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .fn-column {
    justify-content: flex-start;
    align-items: flex-start;
  }

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

  .fh-section-image-wrapper-first {
    height: 220px;
  }

  .fn-list {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
  }

  .fn-list-item {
    text-align: center;
    flex-flow: row;
  }

  .text-block {
    text-align: left;
    font-size: 16px;
  }

  .explore-button-copntainer {
    padding-bottom: 35px;
  }

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

  .projects-marquee-container {
    width: 500vw;
  }

  .projects-wrapper {
    padding-bottom: 60px;
  }

  .explore-button-wrapper {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .arrow-circle {
    padding: 10px;
  }

  .hero-section {
    min-height: 93vh;
  }

  .heading-separator {
    width: 36px;
  }

  .heading-separator.mobile-only {
    display: block;
  }

  .scroll-link {
    grid-column-gap: 24px;
    min-width: 70vw;
  }

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

  .looping-heading.mobile-only {
    display: block;
  }

  .looping-heading-wrapper {
    grid-column-gap: 24px;
    padding-right: 24px;
  }

  .looping-hero-top {
    padding-bottom: 120px;
  }

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

  .container-834 {
    max-width: none;
  }

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .team-slide-wrapper {
    width: 100%;
    margin-right: 0%;
  }

  .testimonial-quote-icon {
    width: 30px;
  }

  .testimonial-quote {
    font-size: 22px;
    line-height: 30px;
  }

  .testimonial-author-image-three {
    margin-right: 16px;
  }

  .container-835 {
    max-width: none;
  }

  .features-right {
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .wbs-heading-h4 {
    font-size: 1.7rem;
  }

  .wbs-section {
    background-color: var(--white);
  }

  .wbs-feature-title, .wbs-feature-icon-simple {
    text-align: center;
  }

  .wbs-feature-split-right {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .additional-paragraph, .paragraph-18 {
    text-align: center;
  }

  .divider-features {
    margin-left: auto;
  }

  .body {
    font-size: 16px;
  }

  .image-2 {
    max-width: 60%;
  }

  .uui-text-size-medium.text-color-white {
    font-size: 14px;
  }

  .uui-heading-medium {
    font-size: 28px;
  }

  .uui-testimonial18_content.background-color-primary600, .uui-testimonial18_content.background-color-blue600, .uui-testimonial18_content.background-color-indigo600, .uui-testimonial18_content.background-color-pink600 {
    height: 20rem;
  }

  .uui-testimonial18_mask {
    width: 95%;
  }

  .uui-testimonial18_content-wrapper {
    height: 60%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .paragraph-19, .paragraph-20 {
    text-align: center;
  }

  .hero-heading-right {
    margin-top: 80px;
  }

  .container-836 {
    max-width: none;
  }

  .uui-heading-xlarge {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .uui-heading-xlarge.new {
    font-size: 1.3rem;
    font-weight: 300;
  }

  .uui-heroheader01_component {
    grid-template-columns: 1fr;
  }

  .uui-heroheader01_image {
    border-top-left-radius: 4rem;
    height: 15rem;
  }

  .uui-heroheader01_pattern-image {
    width: 12.125rem;
    bottom: -25%;
    right: -20%;
  }

  .uui-padding-vertical-xhuge-2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-block-2 {
    text-align: left;
  }

  .brix---big-icon-left {
    border-radius: 14px;
    max-width: 56px;
    margin-bottom: 16px;
    margin-right: 0;
  }

  .brix---subtitle {
    font-size: 14px;
    line-height: 18px;
  }

  .brix---text-200-bold {
    font-size: 15px;
    line-height: 16px;
  }

  .brix---paragraph-default {
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
  }

  .brix---text-300-bold {
    font-size: 17px;
    line-height: 21px;
  }

  .brix---heading-h1-size {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
  }

  .brix---mg-bottom-8px {
    margin-bottom: 6px;
  }

  .brix---container-default {
    padding-left: 10px;
    padding-right: 20px;
  }

  .brix---card-link-icon-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 26px 24px;
  }

  .brix---section-position-relative {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .brix---grid-contact-v1 {
    grid-row-gap: 50px;
  }

  .brix---text-200 {
    font-size: 15px;
    line-height: 16px;
  }

  .brix---inner-container-400px {
    max-width: 100%;
  }

  .contact-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .waves---main-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .waves---section-medium {
    padding-top: 0;
    padding-bottom: 64px;
  }

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

#w-node-_8bbeeab0-56aa-93ab-a0e3-7ea5d1c992a8-1c06ad9f, #w-node-_8bbeeab0-56aa-93ab-a0e3-7ea5d1c992ad-1c06ad9f, #w-node-ec5c2060-2835-b873-080b-9cbaaf0265ea-1c06ad9f, #w-node-_1f01dcea-2502-d693-f71c-bb325f760177-1c06ad9f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bfc63a3c-08d5-5652-81aa-a0f0f31a4a9c-1c06ad9f {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: center;
}

#w-node-_6bb68777-d073-a9d8-0194-6ecd65c89c3c-51e627e8, #w-node-b9a826a7-df12-7a26-4a3d-909e431a5787-51e627e8 {
  justify-self: end;
}

#w-node-_6d646147-8af4-fb9b-4b63-cb5c969c81d0-8f79f15f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fdac8b2d-cf17-d674-8518-f80a9367f835-8f79f15f {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c582a79f-18ec-0687-66c3-296c51bce71f-1c06ada8 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_243fdba6-4561-931f-def0-84a72395f008-1c06ad9f {
    order: -9999;
  }

  #w-node-bfc63a3c-08d5-5652-81aa-a0f0f31a4a9c-1c06ad9f {
    grid-column: span 4 / span 4;
  }

  #w-node-b9a826a7-df12-7a26-4a3d-909e431a5787-51e627e8 {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6bb68777-d073-a9d8-0194-6ecd65c89c3c-51e627e8, #w-node-b9a826a7-df12-7a26-4a3d-909e431a5787-51e627e8 {
    justify-self: start;
  }

  #w-node-fdac8b2d-cf17-d674-8518-f80a9367f835-8f79f15f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bfc63a3c-08d5-5652-81aa-a0f0f31a4ab4-1c06ad9f {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: stretch;
  }

  #w-node-_6bb68777-d073-a9d8-0194-6ecd65c89c3c-51e627e8, #w-node-b9a826a7-df12-7a26-4a3d-909e431a5787-51e627e8 {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Opensaucesans';
  src: url('../fonts/OpenSauceSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensaucesans';
  src: url('../fonts/OpenSauceSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fontawesome Webfont';
  src: url('../fonts/fontawesome-webfont.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}