@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy (2)";
  src: url('../fonts/Gilroy-SemiBold-2.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-BlackItalic.ttf') format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Gilroy;
  src: url('../fonts/Gilroy-BoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

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

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

:root {
  --midnight-blue: #002e58;
  --orange-red: #ff0051;
  --light-slate-grey: #6f798d;
  --alice-blue: #e5ebf0;
  --orange: #ee7821;
  --misty-rose: #ffe0e0;
  --snow-3: #fffafb;
  --snow: #fff9f933;
  --snow-2: #fff9f9cc;
  --slate-grey: #6d7d93;
  --white-smoke-3: #f2f5f8;
  --white-smoke-2: #f3f7f9;
  --white-smoke: #f8fafb;
  --orange-red-2: #ea520e;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

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

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

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

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

body {
  color: var(--midnight-blue);
  font-family: Gilroy, sans-serif;
  font-size: 16px;
}

h1 {
  color: var(--midnight-blue);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  color: var(--midnight-blue);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gilroy, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  color: var(--midnight-blue);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gilroy, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
}

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

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

p {
  color: var(--midnight-blue);
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

a {
  color: var(--midnight-blue);
  text-decoration: none;
}

li {
  margin-bottom: 16px;
}

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

label {
  margin-bottom: 8px;
  font-weight: 700;
  display: block;
}

blockquote {
  border-left: 5px solid var(--orange-red);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero-grid {
  grid-column-gap: 72px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.hero-section {
  padding: 172px 3% 124px;
}

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

.orange-span {
  color: var(--orange-red);
}

.title {
  color: var(--orange-red);
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
}

.title.margin-small {
  margin-bottom: 20px;
}

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

.paragraph-large {
  letter-spacing: -.03px;
  font-size: 18px;
  line-height: 32px;
}

.paragraph-large.margin-top-14 {
  margin-top: 14px;
}

.detail-title-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
}

.button-magenta {
  border: 1px solid var(--orange-red);
  background-color: var(--orange-red);
  color: #fff;
  white-space: nowrap;
  justify-content: center;
  max-height: 60px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.button-magenta:hover {
  border: 1px solid var(--orange-red);
  color: var(--orange-red);
  background-color: #fff;
}

.button-magenta.margin-right-16 {
  margin-right: 16px;
}

.button-magenta.margin-top-24 {
  margin-top: 24px;
}

.content-section {
  padding: 92px 3%;
  position: relative;
  overflow: hidden;
}

.content-section.grey {
  background-color: #f8fafb;
  margin-bottom: 0;
}

.content-section.grey.border-bottom {
  border-bottom: 1px solid #6d7d9338;
}

.content-section.padding-top-small {
  padding-top: 0;
}

.navbar {
  background-color: #0000;
  padding: 24px 3%;
  display: block;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.navigation-right {
  justify-content: flex-end;
  display: flex;
}

.logo {
  width: 190px;
}

.navigation-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-link {
  color: #96a0b5;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

.nav-link:hover {
  color: #3c4263;
}

.nav-link.w--current {
  color: #ff5e15;
}

.heading-wrap {
  max-width: 650px;
  margin-bottom: 62px;
}

.heading-wrap.large {
  max-width: 820px;
}

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

.service-image {
  height: 300px;
  margin-bottom: 32px;
  overflow: hidden;
}

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

.container-small.logo-container {
  max-width: 1180px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.button-arrow {
  background-color: var(--orange-red);
  color: #fff;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  width: 180px;
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow {
  margin-left: 8px;
}

.hero-image-grid-wrap {
  justify-content: flex-end;
  display: flex;
}

.text-link-large {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
}

.h2-title-centre {
  text-align: center;
}

.logo-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 20px;
}

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

.projects-wrapper {
  grid-column-gap: 120px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.service-type {
  letter-spacing: 1.5px;
  margin-right: 24px;
  line-height: 24px;
  display: inline;
}

.grey-line {
  background-color: #96a0b5;
  flex: 1;
  height: 1px;
}

.client-wrap {
  white-space: nowrap;
  align-items: center;
  max-width: 80%;
  margin-bottom: 24px;
  display: flex;
}

.paragraph-grey {
  color: var(--light-slate-grey);
  margin-bottom: 40px;
}

.feature-grid {
  grid-column-gap: 72px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
}

.feature-grid.bottom {
  grid-column-gap: 72px;
  margin-bottom: 60px;
}

.item-services {
  margin-right: 60px;
}

.slider-services {
  background-color: #0000;
  align-items: center;
  width: auto;
  max-width: 460px;
  height: auto;
  display: flex;
}

.mask-services {
  width: 100%;
  height: auto;
  overflow: visible;
}

.project-item {
  margin-bottom: 60px;
}

.project-collection-list {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.h3-title {
  margin-bottom: 16px;
}

.h3-title.text-white.center {
  margin-top: 16px;
}

.expert-card {
  border: 1px solid var(--alice-blue);
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px 60px;
  transition: all .3s;
  display: flex;
}

.expert-card:hover {
  border-color: var(--orange-red);
}

.employees-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.title-wrap-centre {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.testimonial-slider-grid {
  grid-column-gap: 100px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.2fr;
}

.slider-content-block {
  border-top: 1px solid #e5ebf0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.testimonial-quote-wrap {
  margin-bottom: 40px;
  display: flex;
}

.testimonial-author-wrap {
  align-items: center;
  font-weight: 700;
  display: flex;
}

.line-accent {
  background-color: #121f3e;
  width: 50px;
  height: 1px;
  margin-right: 16px;
}

.left-arrow {
  border: 1px solid var(--orange-red);
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  inset: auto auto -120px 0%;
}

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

.style-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.font-size {
  color: #96a0b5;
  font-size: 16px;
}

.collection-item-projects {
  width: 100%;
  margin-right: 32px;
}

.right-arrow {
  background-color: var(--orange-red);
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  inset: auto auto -120px 70px;
}

.employee-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.employee-image-wrap {
  background-image: linear-gradient(#ff5e15, #ff5e1524);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  margin-bottom: 36px;
  padding: 5px;
  display: flex;
  position: relative;
}

.slide-navigation {
  display: none;
}

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

.slider-accent-block {
  background-color: #ff5e1514;
  width: 200px;
  height: 200px;
  position: absolute;
  inset: -20px -20px auto auto;
}

.statistics-grid {
  grid-column-gap: 52px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

.typography-block, .color-block {
  border-bottom: 1px solid #ececec;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.color-style-block {
  flex: 0 auto;
  width: 180px;
  margin-right: 16px;
}

.orange-light {
  background-color: var(--orange);
  margin-bottom: 8px;
}

.style-color-wrap {
  display: flex;
}

.medium-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
}

.medium-title.margin {
  white-space: normal;
  margin-bottom: 16px;
}

.medium-title._8-margin-right {
  margin-right: 8px;
}

.medium-title._16-margin {
  margin-bottom: 16px;
}

.medium-title.margin-8 {
  margin-bottom: 8px;
}

.subtitle-2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.subtitle-3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.paragraph-style-wrap {
  max-width: 560px;
}

.orange {
  background-color: var(--orange-red);
  margin-bottom: 8px;
}

.orange-dark {
  background-color: var(--orange);
  margin-bottom: 8px;
}

.pink {
  background-color: var(--misty-rose);
  margin-bottom: 8px;
}

.cream {
  background-color: var(--snow-3);
  margin-bottom: 8px;
}

.cream-lightest {
  background-color: var(--snow);
  margin-bottom: 8px;
}

.cream-light {
  background-color: var(--snow-2);
  margin-bottom: 8px;
}

.navy {
  background-color: var(--midnight-blue);
  margin-bottom: 8px;
}

.grey {
  background-color: var(--light-slate-grey);
  margin-bottom: 8px;
}

.grey-dark {
  background-color: var(--slate-grey);
  margin-bottom: 8px;
}

.grey-light {
  background-color: var(--alice-blue);
  margin-bottom: 8px;
}

.grey-lighter {
  background-color: var(--white-smoke-3);
  margin-bottom: 8px;
}

.ivory {
  background-color: var(--white-smoke-2);
  margin-bottom: 8px;
}

.ivory-light {
  background-color: var(--white-smoke);
  margin-bottom: 8px;
}

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

.button-white {
  color: var(--orange-red);
  background-color: #fff;
  border: 1px solid #ff5e15;
  justify-content: center;
  width: 180px;
  max-height: 60px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.button-white:hover {
  background-color: var(--orange-red);
  color: #fff;
}

.hero-heading {
  margin-bottom: 32px;
}

.hero-heading.text-white {
  color: #fff;
}

.hero-paragraph {
  color: var(--light-slate-grey);
  letter-spacing: -.03px;
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}

.button-wrap {
  align-items: center;
  display: flex;
}

.number {
  color: var(--midnight-blue);
  letter-spacing: 2px;
  white-space: nowrap;
  margin-top: 6px;
  margin-right: 40px;
  font-weight: 400;
  line-height: 24px;
}

.slider-nav {
  display: none;
}

.h2-title {
  margin-bottom: 16px;
}

.h2-title._40-bottom-margin {
  margin-bottom: 40px;
}

.h2-title.margin-max-width {
  max-width: 640px;
  margin-bottom: 40px;
}

.right-arrow-testimonial {
  background-color: var(--orange-red);
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  inset: auto auto 0% 70px;
}

.left-arrow-testimonial {
  border: 1px solid var(--orange-red);
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  inset: auto auto 0% 0%;
}

.slide-detail-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 52px;
  display: flex;
}

.slide-number {
  color: var(--midnight-blue);
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 24px;
}

.link-large-orange {
  color: var(--orange-red);
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: underline;
}

.subtitle-large-grey {
  color: var(--light-slate-grey);
  font-size: 20px;
  line-height: 30px;
}

.statistic-title {
  color: var(--light-slate-grey);
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}

.statistic {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
}

.stats-grid {
  max-width: 560px;
}

.statistics-wrap {
  max-width: 550px;
}

.cta-text-wrap {
  max-width: 430px;
}

.service-section {
  background-color: #fff;
  padding: 100px 3% 200px;
  overflow: hidden;
}

.project-column.column-padding {
  padding-top: 90px;
}

.large-title {
  color: var(--midnight-blue);
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
}

.footer-section {
  background-color: var(--white-smoke);
  padding: 100px 3%;
}

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

.footer-link {
  color: var(--midnight-blue);
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all .2s;
  display: block;
}

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

.footer-legal {
  background-color: var(--midnight-blue);
  padding-left: 3%;
  padding-right: 3%;
}

.legal-wrap {
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.white-link {
  color: #fff;
  text-decoration: underline;
}

.footer-link-wrap {
  align-items: center;
  display: flex;
}

.legal-link {
  color: #fff;
  padding: 10px 12px;
  font-weight: 500;
  transition: opacity .2s;
  display: block;
}

.legal-link:hover {
  opacity: .8;
}

.cta-block {
  border-bottom: 4px solid var(--orange-red);
  background-color: var(--midnight-blue);
  justify-content: space-between;
  padding: 8%;
  display: flex;
}

.cta-block.small {
  padding: 30px 6%;
}

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

.link-large {
  color: var(--orange-red);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.project-image-wrapper {
  height: 500px;
  margin-bottom: 32px;
  overflow: hidden;
}

.feature-image {
  height: 600px;
}

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

.testimonial-image {
  justify-content: flex-end;
  height: 700px;
  display: flex;
}

.footer-grid {
  grid-template-rows: auto;
}

.footer-logo {
  width: 190px;
  margin-bottom: 20px;
}

.paragraph-white {
  color: var(--snow-3);
}

.footer-left-content-block {
  flex-direction: column;
  justify-content: space-between;
  max-width: 260px;
  display: flex;
}

.footer-social-link {
  border: 1px solid var(--snow);
  border-radius: 50%;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px;
  transition: all .3s;
}

.footer-social-link:hover {
  background-color: var(--orange-red-2);
  border-color: #fff9f9;
}

.service-image-large {
  height: 380px;
  overflow: hidden;
}

.collection-item-services {
  margin-bottom: 72px;
}

.services-text-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 45px;
  display: flex;
}

.service-short-description {
  color: var(--light-slate-grey);
  max-width: 500px;
  margin-bottom: 64px;
}

.service-menu {
  background-color: var(--white-smoke);
  padding: 40px;
  position: sticky;
  top: 35px;
}

.services-navigation-grid {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
  margin-top: 32px;
}

.services-navigation-link {
  justify-content: space-between;
  padding: 20px 24px;
  transition: background-color .2s;
  display: flex;
}

.services-navigation-link:hover {
  background-color: #96a0b51a;
}

.services-navigation-link.w--current {
  background-color: #96a0b51a;
  transition: background-color .4s;
}

.service-content-block {
  margin-bottom: 120px;
}

.nav-arrow {
  width: 6px;
  margin-left: 37px;
}

.benefit-number {
  color: var(--orange-red);
  margin-bottom: 24px;
  line-height: 24px;
}

.features-grid {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
}

.benefit-rich-text h3 {
  margin-bottom: 24px;
}

.service-content-grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

.service-description {
  color: var(--midnight-blue);
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 32px;
}

.project-image {
  width: 100%;
  height: 240px;
  margin-bottom: 32px;
  overflow: hidden;
}

.benefits-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto auto;
}

.benefits-grid._1-col {
  grid-row-gap: 20px;
  grid-template-columns: 1fr;
}

.benefits-grid._1-col.leasing {
  margin-top: -20px;
  margin-bottom: 40px;
}

.orange-circle {
  background-color: var(--orange-red);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  display: flex;
}

.benefits-wrapper {
  white-space: normal;
  align-items: center;
  width: 100%;
  font-weight: 500;
  display: flex;
}

.text-detail-grey {
  color: var(--midnight-blue);
  line-height: 1.5;
}

.orange-check {
  width: 14px;
}

.video-link-full {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.play-circle {
  background-color: var(--snow-2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  display: flex;
}

.play-button {
  background-color: var(--snow);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 128px;
  display: flex;
  position: absolute;
}

.breadcrumb-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 8px;
  margin-right: 6px;
  font-weight: 400;
  line-height: 24px;
}

.contact-grid {
  grid-column-gap: 110px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
}

.contact-block-grey {
  background-color: var(--white-smoke-2);
  padding: 60px;
}

.input-field {
  letter-spacing: .05px;
  border: 1px solid #fff;
  min-height: 54px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  transition: border-color .2s;
}

.input-field:hover {
  border-style: solid;
  border-color: var(--orange-red);
}

.input-field:focus {
  border-color: var(--orange-red);
}

.input-field::placeholder {
  color: #96a0b5;
}

.field-wrapper {
  flex: 1;
}

.send-button-right {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.contact-column {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.h5-title {
  margin-bottom: 8px;
}

.h1-title {
  margin-bottom: 32px;
}

.contact-information {
  grid-row-gap: 32px;
}

.small-button-orange {
  background-color: var(--orange-red);
  color: #fff;
  white-space: nowrap;
  justify-content: center;
  width: 170px;
  max-height: 60px;
  padding: 20px 30px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.form-email {
  width: 530px;
  display: flex;
}

.email-field {
  background-color: var(--white-smoke-3);
  border: 1px solid #f2f5f8;
  height: 60px;
  margin-bottom: 0;
  margin-right: 16px;
  padding-left: 18px;
  padding-right: 18px;
  transition: all .2s;
}

.email-field:hover {
  border-color: var(--orange-red);
  background-color: #fff;
}

.form-block {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.blog-block {
  border-top: 5px solid var(--orange-red);
  background-color: #fff;
  max-width: 390px;
  padding: 32px;
}

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

.author-profile-image {
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin-right: 16px;
  overflow: hidden;
}

.blog-link-block {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  align-items: flex-end;
  width: 100%;
  height: 580px;
  display: flex;
}

.container-extra-small {
  width: 100%;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.blog-content p {
  margin-top: 32px;
  margin-bottom: 32px;
}

.collection-list-wrapper-blog {
  display: block;
}

.collection-item-blogs {
  display: flex;
}

.collection-list-blog {
  grid-column-gap: 32px;
  grid-row-gap: 64px;
  flex-wrap: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.h1-title-centre {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 77px;
}

.about-image-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 60px;
}

.our-story-grid {
  grid-column-gap: 124px;
  grid-row-gap: 80px;
  grid-template-columns: 1.25fr 1fr;
}

.grey-banner {
  z-index: -1;
  background-color: var(--white-smoke-2);
  width: 100%;
  min-height: 35%;
  position: absolute;
  inset: auto 0% 0%;
}

.cta-grid {
  grid-column-gap: 80px;
  grid-row-gap: 42px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
}

.cta-image {
  position: relative;
}

.cta-accent-block {
  z-index: -1;
  background-color: var(--misty-rose);
  width: 150px;
  height: 150px;
  position: absolute;
  inset: -8% auto auto -6%;
}

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

.blog-hero-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.feature-content-wrap {
  align-items: flex-start;
  height: 100%;
  padding-top: 60px;
  display: flex;
}

.footer-link-block {
  margin-bottom: 24px;
}

.service-grid {
  grid-column-gap: 0px;
  border: 1px solid var(--alice-blue);
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.testimonial-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
}

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

.service-header-image {
  height: 500px;
  margin-bottom: 60px;
}

.service-content-container {
  max-width: 900px;
}

.title-wrap {
  margin-bottom: 40px;
  display: block;
}

.tab-link-category {
  border: 1px solid var(--orange-red);
  color: var(--orange-red);
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  width: 160px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.tab-link-category.w--current {
  background-color: var(--orange-red);
  color: #fff;
  transition: color .2s, background-color .2s;
}

.tabs-menu {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: flex-start;
  align-items: flex-start;
  margin-bottom: 80px;
  display: block;
}

.tabs {
  margin-top: 40px;
}

.blog-thumbnail-image {
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.blog-title {
  max-width: 330px;
  margin-bottom: 24px;
}

.paragraph {
  margin-bottom: 32px;
}

.blog-category {
  color: var(--light-slate-grey);
  margin-bottom: 16px;
}

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

.our-story-content-wrap {
  padding-top: 20px;
}

.testimonial-card {
  border: 1px solid var(--alice-blue);
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 32px;
  display: flex;
}

.blog-heading-wrap {
  max-width: 900px;
  margin-bottom: 48px;
}

.blog-image-wrap {
  height: 600px;
  margin-bottom: 24px;
}

.collection-list-blog-post-footer {
  grid-column-gap: 32px;
  grid-row-gap: 64px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-message {
  background-color: var(--orange-red);
  color: var(--white-smoke);
}

.contact-form-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 40px;
}

.message-field-large {
  letter-spacing: .05px;
  border: 1px solid #fff;
  min-height: 130px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  transition: border-color .2s;
}

.message-field-large:hover, .message-field-large:focus {
  border-color: var(--orange-red);
}

.message-field-large::placeholder {
  color: #96a0b5;
}

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

.blog-block-featured {
  border-top: 5px solid var(--orange-red);
  background-color: #fff;
  max-width: 540px;
  padding: 42px 60px 42px 32px;
  position: relative;
  bottom: 42px;
  left: 42px;
}

.breadcrumb {
  margin-bottom: 32px;
  display: flex;
}

.project-link {
  width: 100%;
}

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

.latest-projects-list {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.licence-graphic {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 250px;
  margin-bottom: 32px;
  display: flex;
  overflow: hidden;
}

.license-block {
  background-color: #fff;
  margin-bottom: 60px;
  position: relative;
}

.licence-asset-icon {
  object-fit: scale-down;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.google-span {
  color: #121f3e80;
  font-size: 24px;
}

.licence-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.licence-card {
  background-color: var(--white-smoke);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 24px 32px;
  transition: all .25s;
  display: flex;
}

.template-section {
  padding: 10px 3% 100px;
  overflow: hidden;
}

.plus-icon {
  width: 12px;
}

.faq-paragraph {
  color: var(--light-slate-grey);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.faq-question-bar {
  color: var(--midnight-blue);
  letter-spacing: -.03em;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.faq-question-bar:hover {
  color: var(--orange-red);
}

.faq-wrapper {
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
}

.faq-question-wrap {
  cursor: pointer;
}

.faq-content {
  color: #b1bac8;
  overflow: hidden;
}

.faq-circle {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 35px;
  display: flex;
}

.accordian-line {
  background-color: #e9ecf0;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 60vh;
  max-height: 100%;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.submit-button {
  background-color: var(--midnight-blue);
  height: 60px;
}

.password-field {
  border: 1px solid var(--light-slate-grey);
  height: 60px;
}

.password-field:focus {
  border-color: var(--midnight-blue);
}

.password-field::placeholder {
  color: var(--midnight-blue);
  font-size: 17px;
}

.blog-author-image {
  border-radius: 50%;
  width: 200px;
  margin-bottom: 35px;
  display: inline-block;
  overflow: hidden;
}

.blog-author-heading-block {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.blog-author-bio {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
}

.project-write-up p {
  margin-top: 18px;
  margin-bottom: 32px;
}

.content-block-hero.text-white {
  color: #fff;
}

.hero-image-large {
  z-index: 5;
  width: 100%;
  max-width: 40%;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.header-large {
  background-color: #f8fafb;
  justify-content: center;
  align-items: center;
  min-height: 830px;
  padding: 80px 3% 20px;
  display: flex;
  position: relative;
}

.header-large.gradient {
  background-image: linear-gradient(135deg, var(--midnight-blue) 14%, var(--orange-red));
}

.navbar-fixed {
  background-color: #0000;
  padding-left: 3%;
  padding-right: 3%;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.navigation-container-large {
  justify-content: space-between;
  align-items: center;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.white-bar-bottom {
  background-color: #fff;
  height: 8%;
  position: absolute;
  inset: auto 0% 0%;
}

.logo-wrapper {
  margin-top: 40px;
  position: static;
}

.button-navigation {
  background-color: var(--white-smoke);
  color: var(--orange-red);
  white-space: nowrap;
  border: 1px solid #ff5e15;
  justify-content: center;
  max-height: 60px;
  margin-left: 20px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.button-navigation:hover {
  color: #fff;
  background-color: #ee5611;
}

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

.brand-logo {
  margin-right: 60px;
}

.hero-title {
  color: var(--light-slate-grey);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 24px;
}

.hero-title.slogan {
  color: var(--orange-red);
  font-size: 22px;
  font-weight: 300;
}

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

.navigation-line {
  background-color: #e5ebf0;
  max-width: 55%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.nav-link-dark {
  color: var(--midnight-blue);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  transition: color .2s;
}

.nav-link-dark:hover, .nav-link-dark.w--current {
  color: var(--orange-red);
}

.nav-link-dark.mobile-only {
  display: none;
}

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

.button-navigation-white {
  border: 1px solid var(--alice-blue);
  color: var(--orange-red);
  white-space: nowrap;
  background-color: #fff;
  justify-content: center;
  width: 220px;
  max-height: 60px;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s;
  display: flex;
}

.button-navigation-white:hover {
  border-color: var(--orange-red);
  background-color: var(--orange-red);
  color: #fff;
}

.empty-state {
  background-color: var(--orange-red-2);
  color: #fff;
  padding: 20px;
}

.contact-section {
  padding: 220px 3% 130px;
  overflow: hidden;
}

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

.author-social {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 24px;
  margin-bottom: 24px;
}

.social-link {
  background-color: #f3f6fb;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

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

.service-description-grid {
  color: var(--light-slate-grey);
  margin-bottom: 32px;
}

.service-image-small {
  height: 280px;
  overflow: hidden;
}

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

.heading-wrap-large {
  max-width: 660px;
  margin-bottom: 80px;
}

.section-large {
  padding: 200px 3% 0;
}

.dropdown-list {
  background-color: var(--white-smoke);
}

.dropdown-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
  left: -45px;
  box-shadow: 28px 28px 50px #6d7d9326;
}

.icon {
  margin-right: 18px;
  display: none;
}

.dropdown-toggle {
  padding-right: 20px;
  font-size: 18px;
  font-weight: 500;
  transition: color .2s;
}

.dropdown-toggle:hover {
  color: var(--orange-red);
}

.dropdown-toggle.white {
  color: var(--white-smoke);
}

.dropdown-wrapper {
  color: #fff;
  background-color: #fff;
  flex-direction: column;
  align-items: stretch;
  min-width: 220px;
  display: block;
  position: relative;
}

.dropdown-link {
  color: var(--midnight-blue);
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all .2s;
}

.dropdown-link:hover {
  border-left-color: var(--orange-red);
  background-color: #fff;
}

.dropdown-link.w--current {
  color: var(--orange-red);
}

.blog-block-small {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  align-items: flex-end;
  width: 100%;
  height: 500px;
  display: flex;
}

.question-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

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

.service-number {
  margin-right: 16px;
  font-weight: 300;
}

.contact-block {
  background-color: var(--white-smoke-2);
  padding: 60px;
}

.input-field-border {
  border: 1px solid var(--alice-blue);
  letter-spacing: .05px;
  min-height: 56px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
}

.input-field-border::placeholder {
  color: #96a0b5;
}

.message-field-border {
  border: 1px solid var(--alice-blue);
  letter-spacing: .05px;
  min-height: 150px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
}

.message-field-border::placeholder {
  color: #96a0b5;
}

.send-button-left {
  justify-content: flex-start;
  display: flex;
}

.content-grid-small {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

.service-link-wrapper {
  width: 100%;
}

.orange-link {
  color: var(--orange-red);
  text-decoration: underline;
}

.contact-grid-information {
  grid-template-columns: 1fr;
  margin-bottom: 60px;
}

.bold-text {
  color: var(--midnight-blue);
}

.project-collection-column {
  grid-column-gap: 72px;
  grid-row-gap: 120px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.banner-header {
  background-color: #e1e7ef;
  padding: 170px 3% 72px;
}

.flowbase-link {
  color: var(--orange-red);
}

.social-text-link {
  margin-bottom: 20px;
  margin-right: 40px;
  font-weight: 600;
  transition: color .2s;
}

.social-text-link:hover {
  color: var(--orange-red);
}

.social-link-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.button-text {
  color: var(--orange-red);
  background-color: #0000;
  justify-content: center;
  max-height: 60px;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.button-text:hover {
  text-decoration: underline;
}

.service-image-wrap {
  height: 240px;
}

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

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

.service-card {
  background-color: #fff;
  box-shadow: 8px 8px 32px #121f3e0d;
}

.service-content-card {
  padding: 30px 24px;
}

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

.arrow-small {
  width: 28px;
}

.list {
  list-style-type: decimal;
}

.article h4, .article h2, .article h1 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.changelog-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 72px;
  display: flex;
}

.update-badge {
  color: var(--orange-red-2);
  letter-spacing: -.03em;
  background-color: #ea520e14;
  border-radius: 100px;
  margin-bottom: 24px;
  padding: 4px 16px;
  font-weight: 500;
}

.style-guide-block {
  background-color: var(--orange-red);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 32px;
  padding: 60px 42px;
  display: flex;
}

.body-large-white {
  color: #fff;
  letter-spacing: -.03em;
  font-size: 18px;
  line-height: 32px;
}

.link-white {
  color: #fffc;
}

.h3-title-white {
  color: var(--snow-3);
  margin-bottom: 16px;
}

.service-block-small {
  margin-top: 32px;
}

.author-name-small {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.author-name-small._4-margin-bottom {
  margin-bottom: 4px;
}

.header-block {
  max-width: 500px;
}

.logo-section {
  background-color: var(--orange-red);
  padding: 92px 3%;
  position: relative;
  overflow: hidden;
}

.h2-title-white-centre {
  color: var(--white-smoke);
  text-align: center;
}

.project-image-short {
  height: 380px;
  margin-bottom: 32px;
  overflow: hidden;
}

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

.quote-block {
  background-color: var(--orange);
  color: var(--white-smoke);
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 50px;
  display: flex;
  position: absolute;
  inset: auto -5% -5% auto;
}

.service-section-grey {
  background-color: #f8fafb;
  padding: 100px 3% 220px;
  overflow: hidden;
}

.content-wrap-section {
  align-items: center;
  margin-bottom: 100px;
  display: flex;
  position: relative;
}

.content-image-wrap-large {
  width: 80%;
  height: 530px;
}

.content-image-large {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-square-1 {
  background-color: #fff;
  min-width: 40%;
  max-width: 420px;
  padding: 60px 48px;
  position: absolute;
  inset: auto 0% auto auto;
}

.content-square-left {
  background-color: #fff;
  min-width: 40%;
  max-width: 420px;
  padding: 60px 48px;
  position: absolute;
  inset: auto auto auto 0;
}

.content-wrap-right-section {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
  position: relative;
}

.project-image-post {
  height: 600px;
  margin-bottom: 24px;
}

.header-line-gradient {
  background-image: linear-gradient(225deg, var(--midnight-blue), var(--orange-red));
  width: 100%;
  height: 16px;
  position: absolute;
  inset: auto 0% 0%;
}

.text-white {
  color: #fff;
}

.heading {
  white-space: nowrap;
}

.form-star {
  color: var(--orange-red);
}

.margin-top-label {
  margin-top: 26px;
  margin-bottom: -18px;
}

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

.dropdown-field {
  letter-spacing: .05px;
  background-color: #fff;
  background-image: url('../images/Chevron-Down.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #fff;
  border-radius: 0;
  min-height: 54px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  transition: border-color .2s;
}

.dropdown-field:hover {
  border-style: solid;
  border-color: var(--orange-red);
}

.dropdown-field:focus {
  border-color: var(--orange-red);
}

.dropdown-field::placeholder {
  color: #96a0b5;
}

.label-with-no-padding {
  margin-bottom: 0;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-banner_close-icon {
  width: 24px;
  height: 24px;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #04050f99;
  background-image: linear-gradient(#05020f59, #05020f59);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner_text-link {
  color: #05020f;
  border-bottom: 2px solid #05020f;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 40px;
}

.fs-cc-prefs_text {
  color: #05020f;
  font-size: 12px;
}

.fs-cc-banner_button {
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#ff0051, #ff0051);
  border-radius: 500px;
  min-width: 140px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(#ff0051, #ff0051);
  border-color: #001dff;
}

.fs-cc-prefs_trigger, .fs-cc-banner_trigger, .fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_label {
  color: #ff0051;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  margin-top: 25px;
  margin-right: 25px;
  padding: 10px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: -12px -12px auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-top: 0;
  display: block;
  position: relative;
  top: -5px;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
}

.fs-cc-prefs_space-small {
  margin-bottom: 12px;
}

.fs-cc-prefs_component {
  z-index: 997;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

.set-all-components-to-display-none-and-use-this-div-to-create-a-symbol {
  z-index: 2147483647;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-manager_icon {
  width: 32px;
  height: 32px;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999px;
  width: 44px;
  height: 24px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  flex-direction: column;
  padding: 10px;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-banner_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 32px;
  margin-right: -8px;
  display: flex;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 576px;
  height: auto;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
  overflow: auto;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: #fff;
  border-top: 1px #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
  box-shadow: 0 0 8px #0d12542b;
}

.fs-cc-prefs_title {
  color: #05020f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 500px;
  margin-left: 12px;
  padding: 10px;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 40px 32px;
  overflow: auto;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_text {
  color: #000;
  margin-right: 24px;
  font-size: 14px;
}

.fs-cc-prefs_button {
  color: #fff;
  background-color: #0000;
  background-image: linear-gradient(#ff0051, #ff0051);
  border-radius: 500px;
  margin-right: 8px;
  padding: 13px 29px;
  font-size: 15px;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #fff;
  background-color: #fff;
  background-image: linear-gradient(#ff0051, #ff0051);
  border-color: #001dff;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.bold-text-2 {
  color: #ff0051;
}

@media screen and (max-width: 991px) {
  .hero-grid {
    grid-row-gap: 100px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .button-magenta.button-anfrage {
    display: none;
  }

  .nav-menu {
    background-color: #fff;
    padding-bottom: 12px;
  }

  .menu-button {
    border: 1px solid #96a0b526;
    margin-left: 20px;
  }

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

  .projects-wrapper {
    grid-column-gap: 50px;
  }

  .feature-grid.bottom {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .project-collection-list {
    grid-column-gap: 42px;
  }

  .employees-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-slider-grid {
    grid-column-gap: 42px;
  }

  .style-grid {
    display: block;
  }

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

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

  .color-block {
    display: block;
  }

  .style-color-wrap {
    flex-wrap: wrap;
  }

  .text-wrap {
    margin-bottom: 16px;
  }

  .medium-title {
    font-size: 20px;
    line-height: 28px;
  }

  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-text-wrap {
    margin-bottom: 40px;
  }

  .link-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
  }

  .legal-wrap {
    flex-direction: column;
  }

  .footer-link-wrap {
    margin-top: 40px;
  }

  .cta-block {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .project-image-wrapper {
    height: 350px;
  }

  .testimonial-image {
    height: 530px;
  }

  .footer-grid {
    grid-template-columns: .75fr 1fr;
  }

  .service-image-large {
    height: 380px;
  }

  .service-short-description {
    margin-bottom: 32px;
  }

  .features-grid {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
  }

  .service-content-grid {
    grid-template-columns: 2.5fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-column {
    max-width: none;
  }

  .our-story-grid {
    grid-column-gap: 32px;
    grid-row-gap: 60px;
  }

  .grey-banner {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .licence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .licence-card {
    padding: 32px 16px;
  }

  .faq-question-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-block-hero {
    max-width: none;
    margin-bottom: 60px;
  }

  .hero-image-large {
    max-width: 100%;
    height: 520px;
    position: relative;
  }

  .header-large {
    flex-direction: column-reverse;
    min-height: auto;
    padding-top: 160px;
  }

  .white-bar-bottom {
    height: 20%;
  }

  .button-navigation {
    margin-right: 20px;
  }

  .header-grid {
    grid-template-columns: 1fr;
  }

  .navigation-line {
    max-width: 100%;
  }

  .service-list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .question-title {
    font-size: 20px;
    line-height: 28px;
  }

  .service-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .header-block {
    max-width: none;
    margin-bottom: 24px;
  }

  .project-image-short {
    height: 350px;
  }

  .content-image-wrap-large {
    width: 88%;
  }
}

@media screen and (max-width: 767px) {
  .nav-menu {
    background-color: #fff;
  }

  .heading-wrap {
    margin-bottom: 40px;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-wrapper {
    grid-template-columns: 1fr;
  }

  .client-wrap {
    max-width: 100%;
  }

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

  .feature-grid.bottom {
    grid-template-rows: auto;
  }

  .project-collection-list {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .expert-card {
    min-width: 340px;
    margin-right: 24px;
  }

  .employees-grid {
    flex-wrap: nowrap;
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    overflow: scroll;
  }

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

  .slider-content-block {
    min-height: 450px;
  }

  .hero-heading {
    font-size: 50px;
  }

  .service-section {
    padding-top: 60px;
  }

  .project-column.column-padding {
    margin-bottom: 32px;
    padding-top: 0;
  }

  .legal-wrap {
    text-align: center;
    flex-direction: column;
  }

  .project-image-wrapper {
    height: 460px;
  }

  .feature-image {
    height: 480px;
  }

  .footer-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .service-image-large {
    height: 300px;
  }

  .services-text-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }

  .features-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-block-grey {
    padding: 30px;
  }

  .collection-list-blog {
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    display: none;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-wrap {
    padding-right: 14px;
  }

  .our-story-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1.25fr;
  }

  .cta-grid, .blog-hero-grid, .service-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-header-image {
    height: 350px;
  }

  .tab-link-category {
    margin-bottom: 0;
  }

  .tabs-menu {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    overflow: auto;
  }

  .our-story-content-wrap {
    margin-bottom: 64px;
  }

  .our-story-image {
    max-height: 300px;
  }

  .blog-image-wrap {
    height: 550px;
  }

  .collection-list-blog-post-footer {
    grid-template-columns: 1fr 1fr;
  }

  .blog-block-featured {
    bottom: 0;
    left: 0;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }

  .latest-projects-list {
    grid-template-columns: 1fr;
  }

  .licence-graphic {
    height: 240px;
  }

  .licence-grid {
    grid-template-columns: 1fr;
  }

  .navigation-line {
    max-width: 100%;
  }

  .service-list-grid {
    grid-template-columns: 1fr;
  }

  .heading-wrap-large {
    margin-bottom: 40px;
  }

  .contact-block {
    padding: 30px;
  }

  .project-collection-column {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .service-collection-list, .project-grid {
    grid-template-columns: 1fr;
  }

  .project-image-short {
    height: 460px;
  }

  .testimonial-grid-large {
    grid-template-columns: 1fr;
  }

  .content-wrap-section {
    flex-direction: column;
  }

  .content-image-wrap-large {
    width: 100%;
    height: 370px;
  }

  .content-square-1, .content-square-left {
    max-width: none;
    position: relative;
  }

  .content-wrap-right-section {
    flex-direction: column;
  }

  .project-image-post {
    height: 450px;
  }

  .fs-cc-banner_text-link {
    margin-right: 8px;
  }

  .fs-cc-banner_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-prefs_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 36px;
  }

  .button-magenta.margin-right-16 {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .content-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .heading-wrap {
    margin-bottom: 40px;
  }

  .card-content {
    flex-direction: column;
  }

  .service-image {
    height: 220px;
  }

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

  .projects-wrapper {
    grid-template-columns: 1fr;
  }

  .client-wrap {
    max-width: 80%;
  }

  .feature-grid.bottom {
    margin-bottom: 40px;
  }

  .expert-card {
    min-width: 100%;
  }

  .employees-grid {
    grid-template-columns: 1fr;
  }

  .slider-content-block {
    padding-bottom: 100px;
  }

  .left-arrow, .right-arrow {
    bottom: -100px;
  }

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

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

  .number {
    margin-bottom: 16px;
  }

  .h2-title {
    font-size: 27px;
  }

  .link-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .footer-link-wrap {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }

  .project-image-wrapper {
    height: 330px;
  }

  .feature-image {
    height: 340px;
  }

  .testimonial-image {
    height: 320px;
  }

  .footer-left-content-block {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .service-image-large {
    height: 220px;
  }

  .services-text-wrap {
    padding: 20px;
  }

  .service-menu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-navigation-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .features-grid, .benefits-grid {
    grid-template-columns: 1fr;
  }

  .contact-block-grey {
    padding: 24px;
  }

  .send-button-right {
    flex-direction: column;
  }

  .h1-title {
    font-size: 40px;
  }

  .contact-information {
    grid-template-columns: 1fr;
  }

  .small-button-orange {
    width: 100%;
  }

  .form-email {
    flex-direction: column;
    width: 100%;
  }

  .email-field {
    margin-bottom: 8px;
  }

  .form-block {
    flex-direction: column;
    width: 100%;
  }

  .collection-list-blog {
    grid-template-columns: 1fr;
  }

  .h1-title-centre {
    font-size: 40px;
  }

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

  .feature-content-wrap {
    flex-direction: column;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-header-image {
    height: 280px;
  }

  .tabs-menu {
    grid-template-columns: 1fr 1fr;
  }

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

  .blog-image-wrap {
    height: 420px;
  }

  .collection-list-blog-post-footer {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .blog-block-featured {
    padding-left: 20px;
    padding-right: 20px;
  }

  .latest-projects-list {
    grid-template-columns: 1fr;
  }

  .licence-graphic {
    height: 180px;
  }

  .template-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq-question-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .content-block-hero {
    text-align: center;
  }

  .hero-image-large {
    height: 470px;
  }

  .header-large {
    padding-top: 172px;
    padding-bottom: 40px;
  }

  .nav-link-dark {
    width: 100%;
  }

  .nav-link-dark.mobile-only {
    display: flex;
  }

  .button-navigation-white {
    display: none;
  }

  .social-link-wrap {
    margin-top: 40px;
  }

  .contact-section {
    padding-top: 180px;
  }

  .heading-wrap-large {
    margin-bottom: 40px;
  }

  .section-large {
    padding-top: 180px;
    padding-bottom: 100px;
  }

  .contact-block {
    padding: 24px;
  }

  .content-grid-small {
    grid-row-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .author-name {
    margin-bottom: 4px;
  }

  .logo-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .project-image-short {
    height: 330px;
  }

  .testimonial-grid-large {
    grid-template-columns: 1fr;
  }

  .content-image-large {
    object-position: 0% 50%;
  }

  .content-square-1 {
    padding: 32px 20px;
  }

  .content-square-left {
    padding: 20px 32px;
  }

  .project-image-post {
    height: 400px;
  }

  .heading-3 {
    font-size: 40px;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: 10px;
  }

  .fs-cc-prefs_component {
    padding: 24px;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -22px 10px auto auto;
  }

  .fs-cc-prefs_content {
    padding: 24px;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-prefs_button {
    margin-bottom: 8px;
    line-height: 20px;
  }
}

#w-node-_09a73c0c-5b96-c71e-2f13-f64d8e736866-d7111e8f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4f25e39a-88e2-ced4-191e-97130486c289-78111e91 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_580d6844-66df-4b36-8962-5c6198d990d8-74111e92 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-f9ea3998-97b6-02cf-4f0e-83167ccd33d6-74111e92 {
  grid-area: 2 / 2 / 2 / 3;
}

#w-node-fd6cf530-7ab0-f0c6-e794-8ce9458288d5-74111e92 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_69822025-2da7-ca5d-054f-2615ed44b014-74111e92 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-fb89dcac-1995-64ce-e542-c498e71acf57-74111e92 {
  grid-area: 5 / 1 / 4 / 3;
}

#w-node-f57db55f-c474-459a-e7b3-90b6fe984d1d-74111e92 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_2e4a35d4-0493-2ff7-8bd9-465c8a015bec-74111e92 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b42753a9-05ba-9687-d6e0-2126387d8162-05111e94, #w-node-b42753a9-05ba-9687-d6e0-2126387d816a-05111e94, #w-node-b42753a9-05ba-9687-d6e0-2126387d816e-05111e94 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_96a6dfb2-953d-6053-f14e-da9a39147c10-74111e9a, #w-node-_4381ac3f-f27e-b1aa-1b66-998427659ce8-27659ce2 {
  align-self: center;
}

#w-node-_30614c7c-d834-066d-2b45-96a8595124a6-b4e89122 {
  justify-self: end;
}

#w-node-_4442bf1c-4cf9-0c5c-52fe-299b087db25c-087db251, #w-node-_4442bf1c-4cf9-0c5c-52fe-299b087db263-087db251, #w-node-_4442bf1c-4cf9-0c5c-52fe-299b087db26a-087db251, #w-node-_4442bf1c-4cf9-0c5c-52fe-299b087db271-087db251, #w-node-_4442bf1c-4cf9-0c5c-52fe-299b087db278-087db251, #w-node-_4442bf1c-4cf9-0c5c-52fe-299b087db27f-087db251 {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_05dd72fd-64df-48cb-28ec-053455d1e895-55d1e885 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_09a73c0c-5b96-c71e-2f13-f64d8e736866-d7111e8f {
    grid-column: span 1 / span 1;
  }

  #w-node-b88f7db0-2f7e-2c9e-149c-94de91a47e42-78111e91 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_580d6844-66df-4b36-8962-5c6198d990d8-74111e92, #w-node-f9ea3998-97b6-02cf-4f0e-83167ccd33d6-74111e92, #w-node-fb89dcac-1995-64ce-e542-c498e71acf57-74111e92, #w-node-b42753a9-05ba-9687-d6e0-2126387d8162-05111e94, #w-node-b42753a9-05ba-9687-d6e0-2126387d816a-05111e94, #w-node-b42753a9-05ba-9687-d6e0-2126387d816e-05111e94, #w-node-_5a6b3cda-b675-81b3-d0dc-bde176cda768-74111e9a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-eb916aac-4981-1ab4-b25d-59f8ec95d5c4-b4e89122 {
    order: 9999;
  }

  #w-node-_9be4fc4b-7dc0-9378-b526-9535f3a55386-b4e89122 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_30614c7c-d834-066d-2b45-96a859512492-b4e89122 {
    order: 9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_30614c7c-d834-066d-2b45-96a8595124a7-b4e89122 {
    order: -9999;
  }

  #w-node-_30614c7c-d834-066d-2b45-96a8595124aa-b4e89122 {
    order: 9999;
  }

  #w-node-_30614c7c-d834-066d-2b45-96a8595124bd-b4e89122 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_09a73c0c-5b96-c71e-2f13-f64d8e736866-d7111e8f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_580d6844-66df-4b36-8962-5c6198d990d8-74111e92, #w-node-f9ea3998-97b6-02cf-4f0e-83167ccd33d6-74111e92, #w-node-fb89dcac-1995-64ce-e542-c498e71acf57-74111e92, #w-node-b42753a9-05ba-9687-d6e0-2126387d8162-05111e94 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_5a6b3cda-b675-81b3-d0dc-bde176cda768-74111e9a, #w-node-_9be4fc4b-7dc0-9378-b526-9535f3a55386-b4e89122 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy (2)';
  src: url('../fonts/Gilroy-SemiBold-2.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}