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

@font-face {
  font-family: Eudoxussans;
  src: url('../fonts/EudoxusSans-ExtraLight.woff2') format("woff2"), url('../fonts/EudoxusSans-ExtraLight.woff') format("woff"), url('../fonts/EudoxusSans-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Eudoxussans;
  src: url('../fonts/EudoxusSans-ExtraBold.woff2') format("woff2"), url('../fonts/EudoxusSans-ExtraBold.woff') format("woff"), url('../fonts/EudoxusSans-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

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

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

:root {
  --dark-outline: #e2e7f1;
  --body-display: #6e7488;
  --dark: #090b19;
  --pin-stripe: #f3f6fc;
  --dark-red: #940404;
  --firebrick: #d40713;
  --black: #0d0d0d;
}

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

h1 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25em;
}

h3 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6em;
}

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

blockquote {
  border-left: 3px solid var(--dark-outline);
  color: var(--body-display);
  background-color: #ffffffa6;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 18px 24px;
  font-size: 18px;
  line-height: 1.6em;
}

.section {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 5vw 120px;
  display: block;
  position: relative;
}

.section.dark {
  z-index: 10;
  background-color: var(--dark);
  color: #fff;
}

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

.section.no-verticle-padding.dark {
  background-color: #333;
}

.section.video-section {
  z-index: 10;
  color: #fff;
  padding-top: 150px;
  padding-bottom: 160px;
}

.section.no-top-padding {
  padding-top: 0;
  padding-bottom: 80px;
}

.section.no-bottom-padding {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.section.no-horizontal-padding {
  padding-left: 0;
  padding-right: 0;
}

.section.normale {
  padding-left: 0;
  padding-right: 0;
}

.section.gray {
  background-color: var(--pin-stripe);
}

.section.white {
  background-color: #fff;
}

.section.padding {
  padding-top: 220px;
}

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

.background-image {
  z-index: 1;
  background-image: url('../images/Space002.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-image.testimonial-001 {
  background-image: url('../images/Portrait015.jpeg');
  background-position: 50% 40%;
}

.background-image.testimonial-002 {
  background-image: url('../images/Portrait012.jpeg');
  background-position: 50% 20%;
}

.background-image.testimonial-003 {
  background-image: url('../images/Portrait019.jpeg');
  background-position: 50% 10%;
}

.background-image.testimonial-004 {
  background-image: url('../images/Portrait007.jpeg');
}

.background-image.testimonial-005 {
  background-image: url('../images/Portrait020.jpeg');
  background-position: 50% 65%;
}

.background-image.zanzariere {
  background-image: url('../images/tierre-zanzariere3.jpg');
}

.background-image.tenda {
  background-image: url('../images/1-pergole.jpg');
}

.background-image.serramenti {
  background-image: url('../images/serramenti.jpg');
}

.background-image.scale-interne {
  background-image: url('../images/scale-interne_0000_13-2.jpg');
}

.background-image.scale-sicurezza {
  background-image: url('../images/tierre-scale-di-sicurezza_0004_WhatsApp-Image-2021-07-29-at-16.35.10.jpg');
}

.background-image.tettoie {
  background-image: url('../images/tierre-capannoni-tettoie-pensiline_0016_STRUTTURA.jpg');
}

.background-image.cancelli {
  background-image: url('../images/cancelli-recinzioni-ringhiere_0013_Schermata-2021-11-04-alle-18.16.48.jpg');
}

.background-image.cancelli._2 {
  background-image: url('../images/cancelli-reciznioni.jpg');
}

.background-image.acciaio {
  background-image: url('../images/lavorazioni-acciaio_0004_Schermata-2021-11-04-alle-19.19.04.jpg');
}

.background-image.carpenteria {
  background-image: url('../images/carpenteria.jpg');
}

.background-image.sanificazioni {
  background-image: url('../images/tierre-sanificazioni.jpg');
}

.background-image.bonus {
  background-image: url('../images/tierre-ecobonus.jpg');
}

.background-image.scale {
  background-image: url('../images/scale-interne_0001_IMG_0777.jpg');
}

.image-overlay {
  z-index: 1;
  background-color: #0000007d;
  position: absolute;
  inset: 0%;
}

.image-overlay.light-overlay {
  background-color: #090b1926;
}

.image-overlay.dark-overylay {
  background-color: #94040436;
}

.image-overlay.dark-overylay.dark {
  background-color: #0000008c;
}

.navbar {
  background-color: #ddd0;
  justify-content: center;
  height: 75px;
  padding-left: 5vw;
  padding-right: 5vw;
  font-family: Inter, sans-serif;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.wrapper {
  z-index: 10;
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
}

.wrapper.navbar-wrapper {
  border: 1px solid #f3f6fc;
  border-top: 1px #f3f6fc00;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.wrapper.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.wrapper.padding {
  padding: 20px;
}

.nav-link {
  color: var(--dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.left-navbar {
  z-index: 30;
  border: 1px none var(--pin-stripe);
  letter-spacing: -.03em;
  background-color: #fff;
  justify-content: space-between;
  width: 33.33%;
  min-width: 275px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.menu-wrapper {
  border: 1px #f3f6fc00;
  flex: 1;
  justify-content: flex-end;
  align-items: stretch;
  width: 33.33%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-menu {
  z-index: 10;
  border: 1px #f3f6fc00;
  justify-content: flex-end;
  width: 100%;
  display: flex;
}

.brand {
  color: var(--dark);
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-left: 24px;
  font-size: 22px;
  display: flex;
}

.body {
  color: var(--dark);
  font-family: Open Sans, sans-serif;
}

.full-menu-button {
  border-right: 1px solid var(--pin-stripe);
  border-left: 1px solid var(--pin-stripe);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 80px;
  margin-right: -.5px;
  padding: 26px;
  display: flex;
}

.stripe-wrapper {
  z-index: 5;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.stripe-container {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
}

.pin-stripe {
  background-color: var(--dark-red);
  width: 1px;
}

.pin-stripe.white {
  background-color: #fff;
}

.pin-stripe.white.hide-horizontal-mobile.grey {
  background-color: #6b6b6b;
}

.pin-stripe.white.hide-tablet._2 {
  background-color: #af0000;
}

.pin-stripe.white._1 {
  background-color: #fff0;
}

.hero-content-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  display: grid;
}

.xxl-heading {
  letter-spacing: -.05em;
  margin-right: 1px;
  font-size: 78px;
}

.xxl-heading.one, .xxl-heading.two {
  font-family: Varela, sans-serif;
}

.clip {
  position: relative;
  overflow: hidden;
}

.page-wrapper {
  z-index: 15;
  background-color: #fff;
  min-height: 100vh;
  position: relative;
}

.banner-wrapper {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content.about {
  min-height: 500px;
}

.banner-intro {
  z-index: 20;
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  display: grid;
  position: relative;
}

.large-heading {
  margin-bottom: 10px;
  font-family: Varela, sans-serif;
  font-size: 50px;
  line-height: 50px;
}

.large-heading.one {
  font-size: 40px;
  line-height: 40px;
}

.large-heading.two {
  margin-top: 0;
  padding-left: 10px;
}

.body-display {
  color: var(--body-display);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}

.body-display.white {
  color: #ffffffe6;
  font-family: Montserrat, sans-serif;
}

.body-display.white.in-footer {
  padding-left: 10px;
  padding-right: 15px;
  font-size: 14px;
}

.body-display.large {
  font-size: 18px;
}

.body-display.display-none {
  color: #fff;
  display: none;
}

.project-item {
  grid-column-gap: 18px;
  grid-row-gap: 24px;
  color: #fff;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  height: 30vw;
  min-height: 300px;
  max-height: 465px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.horizontal-line {
  background-color: var(--dark-outline);
  flex: 1;
  height: 1px;
  margin-left: 18px;
}

.horizontal-line.white {
  background-color: #ffffff1f;
}

.button {
  border: 1px solid var(--dark);
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 16px 28px;
  font-size: 11px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button:hover {
  border-color: var(--dark-outline);
  background-color: var(--dark-outline);
  color: var(--dark);
}

.button.small {
  padding: 9px 18px;
  font-size: 9px;
}

.button.solid-white {
  color: var(--dark);
  background-color: #fff;
  border-color: #fff;
  margin-right: 10px;
}

.button.solid-white:hover {
  background-color: var(--dark-outline);
}

.button.white-outline {
  background-color: #090b1900;
  border-style: solid;
  border-color: #ffffffbf;
  border-radius: 10px;
  font-family: Montserrat, sans-serif;
}

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

.button.grey-outline {
  border-color: var(--dark-outline);
  color: var(--dark);
  background-color: #090b1900;
}

.button.grey-outline:hover {
  border-color: var(--dark);
  background-color: var(--dark);
  color: #fff;
}

.button.grey-outline.small {
  font-size: 8px;
}

.button.grey-outline.small:hover {
  background-color: var(--firebrick);
}

.button.green {
  background-color: #70a041;
}

.navigation-cover {
  border-left: 1px solid var(--pin-stripe);
  background-color: #fff;
  flex: 1;
  justify-content: space-between;
  height: 100%;
  margin-left: -1px;
  margin-right: -5px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

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

.testimonial-arrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1f1f1f80;
  border-right: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50%;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 14px;
  display: flex;
  inset: auto auto 0% 0;
}

.testimonial-arrow.right-arrow {
  background-color: #1f1f1f80;
  border-bottom: 1px solid #ffffff1a;
  display: flex;
  top: 0;
  bottom: auto;
  right: auto;
}

.slider-dots {
  display: none;
}

.testimonial-content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  min-height: 550px;
  display: grid;
}

.testimonial-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 48px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.rotate-text {
  transform: rotate(-90deg);
}

.stacked-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr;
  grid-auto-columns: .25fr;
  place-content: stretch;
  justify-items: center;
  display: grid;
  position: relative;
}

.stacked-description.large {
  grid-row-gap: 24px;
}

.stacked-description.horizontal {
  grid-column-gap: 12px;
  border: 1px #000;
  grid-template-columns: auto auto;
  grid-auto-flow: column;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.stacked-description.short {
  grid-row-gap: 12px;
  padding-right: 0;
}

.credits-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 36px;
  background-color: var(--pin-stripe);
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: space-between;
  justify-items: stretch;
  width: auto;
  padding: 60px 48px;
  display: grid;
}

.page-info-ribbon {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: block;
}

.page-info-ribbon.partner {
  background-color: var(--pin-stripe);
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.credit-item {
  justify-content: center;
  align-items: center;
  max-width: 120px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 45px;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.card-hover-item {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  border-top: 1px none var(--pin-stripe);
  border-bottom: 1px none var(--pin-stripe);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start stretch;
  padding: 0;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.card-hover-item.no-top-border {
  border-top-style: none;
}

.card-hover-item.no-borders {
  border-top-style: none;
  border-bottom-style: none;
}

.icon {
  z-index: 10;
  background-color: var(--pin-stripe);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-radius: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  font-size: 14px;
  display: flex;
  position: relative;
}

.icon.black {
  background-color: #3b3b3b;
}

.icon.green {
  background-color: #70a041;
}

.subtitle-wrapper {
  margin-bottom: 18px;
  overflow: hidden;
}

.subtitle-wrapper.small-subtitle {
  margin-bottom: 12px;
}

.subtitle {
  z-index: 10;
  color: var(--dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  position: relative;
}

.subtitle.small {
  font-size: 12px;
}

.subtitle.white {
  color: #fff;
  text-align: left;
  letter-spacing: 3px;
  font-family: Montserrat, sans-serif;
}

.subtitle.white.display-none {
  display: none;
}

.subtitle.quote-credit {
  border-left: 2px solid var(--dark);
  margin-left: -1px;
  padding-left: 18px;
}

.subtitle.grey {
  color: var(--body-display);
}

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

.subtitle.red {
  color: var(--dark-red);
  font-size: 14px;
}

.subtitle.red.bold {
  color: var(--firebrick);
  font-size: 14px;
  font-weight: 600;
}

.tripple-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: ". Area" 1fr
  / .5fr 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  margin-bottom: 60px;
  display: grid;
}

.tripple-grid.no-margin {
  margin-bottom: 0;
}

.section-bottom-cover {
  z-index: 20;
  background-color: #fff;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.intro-wrapper {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.services-grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-top: 1px solid var(--pin-stripe);
  border-right: 1px solid var(--pin-stripe);
  border-left: 1px solid var(--pin-stripe);
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.services-grid.two-column {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top-style: none;
  grid-template-rows: minmax(36px, auto);
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(36px, auto);
}

.services-grid.top-border {
  border-top: 1px solid var(--pin-stripe);
  border-left-style: none;
  border-right-style: none;
}

.card-circle {
  background-color: #94040426;
  border-radius: 100%;
  width: 6vw;
  max-width: 800px;
  height: 6vw;
  max-height: 800px;
  position: absolute;
  inset: -6vw -6vw auto auto;
}

.card-circle.white {
  background-color: #fff;
}

.card-circle.overlay {
  background-color: #090b1959;
}

.card-circle.green {
  background-color: #70a04178;
}

.heading {
  z-index: 10;
  margin-bottom: 10px;
  font-family: Varela, sans-serif;
  position: relative;
}

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

.logos-headline {
  color: var(--body-display);
  align-items: center;
  display: flex;
}

.hover-link-wrapper {
  z-index: 100;
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 10px;
  display: flex;
  position: absolute;
  inset: auto 0 5vw auto;
}

.hover-link-wrapper.video-link-wrapper {
  margin-left: -24px;
  position: relative;
  inset: 0 0 0 0;
}

.hover-link-wrapper.project-view-link {
  position: relative;
  bottom: auto;
  right: auto;
}

.hover-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #fff0;
  border: 1px solid #fff;
  border-radius: 10%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  text-decoration: none;
  display: flex;
}

.dual-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .85fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.video-info {
  grid-column-gap: 16px;
  grid-row-gap: 100px;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
  display: grid;
}

.project-categories-wrapper {
  z-index: 20;
  justify-content: center;
  width: 100%;
  min-height: 156px;
  margin-top: -36px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  inset: 0% 0% auto;
  overflow: visible;
}

.large-menu-wrapper {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  background-color: #fffffff5;
  flex-direction: column;
  grid-template-rows: 75px auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 25px;
  display: grid;
  position: relative;
}

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

.project-collection-item:nth-child(odd) {
  margin-top: 60px;
  margin-bottom: 80px;
}

.project-categories {
  background-color: var(--pin-stripe);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 36px;
  display: flex;
}

.project-card-info {
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 24px;
  display: flex;
  position: relative;
}

.project-hover-link-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-info-top {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-info-top.team-info {
  flex-direction: row;
  justify-content: space-between;
}

.project-info-bottom {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.categories-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  height: 100%;
  display: grid;
}

.category-collection-list-wrapper {
  background-color: var(--pin-stripe);
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.projects-search-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  height: 75px;
  display: grid;
}

.search {
  border: 1px solid var(--dark-outline);
  background-color: #fff;
  border-radius: 100px;
  margin-bottom: 0;
  padding: 3px;
  display: flex;
  overflow: hidden;
}

.search-input {
  border: 1px #000;
  min-height: 42px;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 13px;
  font-weight: 300;
}

.search-input::placeholder {
  color: var(--body-display);
}

.search-wrapper {
  padding-left: 24px;
  padding-right: 24px;
}

.search-button {
  background-color: var(--dark);
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0 32px;
  font-size: 9px;
}

.mega-category-list {
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
}

.mega-category-list.middle {
  border-right: 1px solid var(--dark-outline);
  border-left: 1px solid var(--dark-outline);
}

.mega-menu {
  z-index: 25;
  border-style: none none none solid;
  border-width: 1px;
  border-color: var(--pin-stripe);
  margin-left: -1px;
  margin-right: -1px;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.mega-menu-overlay {
  z-index: 20;
  background-color: #090b1980;
  display: none;
  position: fixed;
  inset: 0%;
}

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

.collection-list.two-columns {
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
}

.team-collection-item {
  flex-direction: column;
}

.team-collection-item:nth-child(2n) {
  margin-top: 80px;
  margin-bottom: 80px;
}

.team-collection-item:last-child {
  margin-top: 160px;
}

.team-collection-item.two-column-item:nth-child(2n) {
  margin-top: 80%;
  margin-bottom: -20%;
}

.team-collection-item.two-column-item:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.team-social-wrapper {
  grid-column-gap: 9px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.team-social-icon {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 10px;
  display: flex;
}

.team-social-icon.outline {
  border: 1px solid var(--dark-outline);
}

.team-social-icon.small {
  width: 30px;
  height: 30px;
  padding: 7px;
}

.featured-news-list {
  border-top: 1px none var(--pin-stripe);
  border-bottom: 1px none var(--pin-stripe);
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-content: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
  display: grid;
}

.post-list-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--dark);
  grid-template-rows: auto;
  grid-template-columns: 1fr 36px;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 100%;
  min-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 18px;
  line-height: 1.25em;
  text-decoration: none;
  display: grid;
}

.post-list-item.category-list-item {
  grid-template-columns: 1fr;
  grid-auto-flow: column;
  min-height: 80px;
  padding-left: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25em;
}

.collection-list-item {
  border-top: 1px #000;
  border-bottom: 1px solid var(--pin-stripe);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-list-item:nth-child(odd) {
  border-bottom-style: solid;
}

.collection-list-item:nth-child(2n) {
  margin-top: 48px;
  margin-bottom: -48px;
}

.inner-page-hero-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding-bottom: 24px;
  display: grid;
}

.team-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  min-height: 30vh;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

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

.navigation-links {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.services-menu-wrapper {
  z-index: 10;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: visible;
}

.banner-items {
  background-color: var(--pin-stripe);
  white-space: nowrap;
  align-items: center;
  height: 120px;
  display: flex;
  overflow: hidden;
}

.banner-items.project-categories {
  background-color: #0000;
}

.banner-items.template-credit {
  height: auto;
  overflow: visible;
}

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

.sticky-services-menu {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  white-space: nowrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.sticky-services-menu.left-side {
  border-right: 1px solid var(--pin-stripe);
  margin-right: -.5px;
}

.sticky-services-menu.extra-top-margin {
  top: 148px;
}

.menu-list-item {
  grid-column-gap: 18px;
  grid-row-gap: 16px;
  border-top: 1px none var(--pin-stripe);
  border-bottom: 1px solid var(--pin-stripe);
  color: var(--body-display);
  letter-spacing: -.03em;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  padding: 18px 24px;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
  transition: padding .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
  display: grid;
}

.menu-list-item:hover {
  color: var(--dark);
}

.menu-list-item.w--current {
  color: var(--dark);
  padding-left: 36px;
}

.menu-list-item.white {
  color: #fff;
  cursor: pointer;
  border-top-color: #ffffff26;
  border-bottom-color: #ffffff26;
  align-items: center;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
}

.menu-list-item.white.small {
  padding-top: 19px;
  padding-bottom: 19px;
}

.menu-list-item.small {
  padding-top: 20px;
  padding-bottom: 20px;
}

.menu-list-item.discovery-item {
  border: 1px #000;
  width: 100%;
  height: 100%;
}

.menu-list-item.dark {
  background-color: var(--dark);
  color: #fff;
}

.service-menu-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--pin-stripe);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-menu-list.white {
  border-top-color: #ffffff26;
  width: 100%;
  margin-left: 1px;
  margin-right: 1px;
}

.list-heading-wrapper {
  grid-column-gap: 7px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
  display: grid;
}

.scrolling-text {
  align-items: center;
  height: 100%;
  display: flex;
}

.dark-dot {
  background-color: var(--dark);
  border-radius: 100px;
  width: 4px;
  min-width: 4px;
  height: 4px;
  min-height: 4px;
  margin-left: 6px;
  margin-right: 10px;
}

.mega-social-wrapper {
  justify-content: flex-end;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.services-menu-hide-cover {
  background-color: var(--dark);
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  inset: 0% 0;
}

.team-portrait-wrapper {
  min-height: 475px;
  position: relative;
  overflow: hidden;
}

.rich-text {
  color: var(--body-display);
  font-size: 16px;
}

.rich-text h2 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.25em;
}

.rich-text h4 {
  color: var(--dark);
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25em;
}

.rich-text h3 {
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 18px;
  line-height: 1.25em;
}

.rich-text h5 {
  color: var(--dark);
  margin-top: 9px;
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.25em;
}

.rich-text h6 {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.3em;
}

.rich-text h1 {
  color: var(--dark);
}

.rich-text p {
  margin-bottom: 16px;
  font-size: 16px;
}

.right-grid-intro {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 24px;
  display: grid;
}

.blog-card-image-wrapper {
  z-index: 1;
  width: 100%;
  min-height: 225px;
  position: relative;
  overflow: hidden;
}

.post-card-description {
  z-index: 10;
  grid-column-gap: 12px;
  grid-row-gap: 48px;
  color: var(--dark);
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: space-between;
  padding: 36px 36px 24px;
  text-decoration: none;
  display: grid;
  position: relative;
  overflow: hidden;
}

.mega-menu-list-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-top: 1px solid var(--dark-outline);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.post-card-info {
  flex-direction: column;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.preloader {
  z-index: 10000;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-middle {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: space-between;
  justify-items: center;
  width: 100vw;
  height: 100%;
  display: grid;
  position: absolute;
  inset: 0%;
}

.left-preloader {
  border-bottom: 1px solid var(--pin-stripe);
  background-color: #fff;
  width: 100%;
}

.middle-preloader {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.right-preloader {
  border-bottom: 1px solid var(--pin-stripe);
  background-color: #fff;
  width: 100%;
}

.stripe-preloader {
  border-right: 1px solid var(--pin-stripe);
  border-bottom: 1px solid var(--pin-stripe);
  background-color: #fff;
  width: 33.33%;
}

.stripe-preloader.left {
  border-left: 1px solid var(--pin-stripe);
}

.grid-wrapper {
  z-index: 5;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1400px) minmax(5vw, 1fr);
  grid-auto-columns: minmax(5vw, 1fr);
  grid-auto-flow: row;
  place-content: space-between;
  place-items: stretch start;
  width: 100%;
  display: grid;
  position: relative;
}

.grid-wrapper.projects-search {
  z-index: 15;
  flex: 0 auto;
  justify-content: space-between;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  right: auto;
  overflow: hidden;
}

.grid-wrapper.fixed {
  z-index: 25;
  align-content: end;
  align-items: end;
  max-height: 0;
}

.grid-wrapper.two-row {
  flex: 0 auto;
  grid-template-rows: 1fr auto;
  align-content: space-between;
}

.hero-bottom-feature {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  color: var(--dark);
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  width: 33.33%;
  padding: 0;
}

.featured-project-column {
  background-color: var(--pin-stripe);
  color: var(--body-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 11px;
  display: flex;
}

.hero-feature-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--dark);
  grid-template-rows: auto;
  grid-template-columns: 1fr 36px;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 36px;
  text-decoration: none;
  display: grid;
}

.card-button-wrapper {
  display: flex;
}

.feature-card-description {
  z-index: 10;
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.footer-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 106px;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-credits {
  font-size: 13px;
  font-weight: 400;
}

.project-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

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

.hero-background-image {
  background-image: url('../images/Space008.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.hero-background-image.team-background {
  background-image: url('../images/tierre1.jpg');
  background-position: 50% 0;
}

.hero-background-image.projects-background {
  background-image: url('../images/Space008.jpeg');
  background-position: 50% 40%;
}

.hero-background-image.services-background {
  background-image: none;
}

.hero-background-image.services-background.serramenti {
  background-image: url('../images/serramenti-header.jpg');
}

.hero-background-image.contact-background {
  background-image: url('../images/Space007.jpeg');
}

.hero-background-image.news-background {
  background-image: url('../images/Space006.jpeg');
}

.hero-background-image._404-background {
  background-image: url('../images/Space012.jpeg');
}

.hero-background-image.password-background {
  background-image: url('../images/Space007.jpeg');
}

.hero-background-image.search-background {
  background-image: url('../images/Space002.jpeg');
}

.hero-background-image.zanzariere {
  background-image: url('../images/tierre-zanzariere3.jpg');
}

.hero-background-image.tenda {
  background-image: url('../images/header-schermature.jpg');
  background-position: 50% 0;
}

.hero-background-image.serramenti {
  background-image: url('../images/Senza-titolo-1.jpg');
}

.hero-background-image.scale-interne {
  background-image: url('../images/scale-interne_0001_IMG_0777.jpg');
}

.hero-background-image.scale-sicurezza {
  background-image: url('../images/cover-scale-esterne.jpg');
  background-position: 50%;
}

.hero-background-image.tettoie {
  background-image: url('../images/tierre-capannoni-tettoie-pensiline_0016_STRUTTURA.jpg');
}

.hero-background-image.cancelli {
  background-image: url('../images/cover-cancelli.jpg');
}

.hero-background-image.carpenteria {
  background-image: url('../images/carpenteria-leggera-fornaretti-castilenti-tierre.jpeg');
  background-position: 50%;
}

.hero-background-image.acciaio {
  background-image: url('../images/lavorazioni-acciaio_0002_Schermata-2021-11-04-alle-19.18.53.jpg');
}

.hero-background-image.casseformi {
  background-image: url('../images/casseformi-costruzionitecnologiche_0000_Schermata-2021-11-06-alle-10.04.33.jpg');
}

.hero-background-image.display-none {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.project-details-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 1px;
  margin-right: 1px;
  display: grid;
  position: relative;
}

.project-detail-item {
  border-top: 1px solid #ffffff1f;
  border-left: 1px #ffffff1f;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 24px 12px 48px 24px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.project-detail-item.middle-item {
  border-left-style: solid;
  border-left-color: #ffffff1f;
}

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

.featured-project-details {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #ffffff26;
  border-top: 2px solid #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-gallery-wrapper {
  z-index: 15;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.gallery-items-wrapper {
  z-index: 20;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  padding-top: 123px;
  padding-bottom: 48px;
  padding-right: 6px;
  display: flex;
  position: relative;
  overflow: visible;
}

.more-projects-wrapper {
  z-index: 25;
  flex-direction: column;
  justify-content: flex-end;
  height: 0;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.fly-out-button {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  background-color: var(--pin-stripe);
  white-space: nowrap;
  cursor: pointer;
  border-top: 1px #ffffff1f;
  grid-template-rows: auto;
  grid-template-columns: 5vw 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 33.33%;
  max-width: 33.33%;
  height: 48px;
  max-height: 48px;
  padding: 0 5vw 0 0;
  display: grid;
  position: relative;
  overflow: hidden;
}

.fly-out-button.on-click {
  z-index: 50;
  background-color: #fff;
}

.fly-out-button.off-click {
  z-index: 50;
  color: #fff;
  background-color: #c90e0e;
  width: 100%;
  max-width: 100%;
}

.projects-lottie {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.projects-lottie.white {
  color: #fff;
}

.project-search-items {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(100px, 1fr);
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(100px, 1fr);
  grid-auto-columns: 1fr;
  margin-bottom: 24px;
  display: grid;
}

.project-search-collection {
  flex-direction: column;
  flex: 1;
  padding-right: 12px;
  display: flex;
  overflow: auto;
}

.project-search-collection-item {
  border-bottom: 1px solid var(--dark-outline);
  width: 100%;
  display: flex;
  overflow: hidden;
}

.project-search-collection-item:first-child {
  border-top: 1px solid var(--dark-outline);
}

.project-search-collection-item:last-child {
  border-bottom-style: none;
}

.project-description-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch;
  place-items: stretch start;
  display: grid;
}

.project-description {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--pin-stripe);
  color: var(--dark);
  grid-template-rows: auto;
  grid-template-columns: .5fr;
  grid-auto-columns: .25fr;
  justify-content: start;
  padding: 80px 60px;
  display: grid;
  position: relative;
}

.project-description.top-grey-border {
  border-top: 1px solid var(--dark-outline);
}

.project-features {
  padding-top: 80px;
}

.general-collection-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  display: grid;
}

.projects-lottie-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 14px;
  display: flex;
}

.project-gallery-overlay {
  z-index: 5;
  background-color: #090b1980;
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.news-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.news-list-item {
  border-bottom: 1px solid var(--pin-stripe);
}

.news-list-item:nth-child(2n) {
  margin-top: 80px;
  margin-bottom: 80px;
}

.pagination {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pagination-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  grid-template-rows: minmax(0, auto);
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: stretch;
  align-items: center;
  display: grid;
}

.large-search-wrapper {
  background-color: #fff;
  border-radius: 100px;
  width: 50%;
  margin-bottom: 0;
  padding: 4px;
  display: flex;
}

.large-search-input {
  background-color: #fff0;
  border: 1px #000;
  border-radius: 100px;
  min-height: 48px;
  margin-bottom: 0;
  padding-left: 24px;
}

.large-search-button {
  background-color: var(--dark);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 11px;
}

.search-results-info {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.search-result-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.search-result-item {
  width: 100%;
  padding: 0;
}

.search-results-link {
  border-right: 1px solid var(--pin-stripe);
  border-bottom: 1px solid var(--dark-outline);
  border-left: 1px solid var(--pin-stripe);
  color: var(--dark);
  padding: 48px 36px 48px 24px;
  text-decoration: none;
  transition: background-color .4s linear;
}

.search-results-link:hover {
  background-color: #fff;
}

.search-result-wrapper {
  border-top: 1px solid var(--dark-outline);
  background-color: var(--pin-stripe);
  padding-top: 0;
}

.results-help-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  background-color: var(--dark);
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  display: grid;
}

.author-post-item {
  grid-column-gap: 24px;
  grid-row-gap: 9px;
  border-bottom: 1px solid var(--pin-stripe);
  color: var(--body-display);
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  width: 100%;
  padding: 18px 24px;
  text-decoration: none;
  transition: color .4s cubic-bezier(.25, .46, .45, .94);
  display: grid;
}

.author-post-item:hover {
  color: var(--dark);
}

.list-item-arrow {
  width: 18px;
  min-width: 18px;
}

.gallery-heading {
  white-space: nowrap;
  padding-left: 24px;
}

.author-card {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--pin-stripe);
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 24px;
  padding-left: 24px;
  display: grid;
}

.author-avatar {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  width: 100px;
  height: 100px;
}

.empty-state {
  background-color: #0000;
}

.empty-collection {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  background-color: var(--pin-stripe);
  text-align: center;
  white-space: normal;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  padding: 36px;
  display: grid;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  font-family: Montserrat, sans-serif;
  display: grid;
}

.field-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field {
  border: 1px solid var(--dark-outline);
  background-color: #ffffffa6;
  border-radius: 2px;
  min-height: 54px;
  margin-bottom: 0;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  background-color: #fff;
  border-color: #d4ddee;
}

.text-field::placeholder {
  color: var(--body-display);
}

.text-field.large {
  min-height: 140px;
}

.text-field.light {
  color: #fff;
  background-color: #ffffff14;
  border-color: #ffffff29;
  font-family: Montserrat, sans-serif;
  font-weight: 200;
}

.text-field.light:focus {
  background-color: #fff0;
  border-color: #fff;
}

.text-field.light::placeholder {
  color: #ffffffd9;
}

.submit-button {
  background-color: var(--dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 10px;
  min-width: 160px;
  padding: 16px 32px;
  font-size: 12px;
}

.submit-button.white {
  color: var(--dark);
  background-color: #fff;
  border-radius: 10px;
}

.utility-message {
  background-color: #0000;
  height: 100%;
  margin-top: auto;
  padding: 0;
}

.success-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  border: 1px solid var(--dark-outline);
  background-color: #d0ffcdd9;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  padding: 60px;
  display: grid;
}

.success-wrapper.dark {
  color: #fff;
  background-color: #fff0;
  border-style: none;
  align-content: center;
  height: 100%;
}

.error-message {
  color: var(--dark);
  background-color: #ffa4a4;
  margin-top: 10px;
  padding: 12px 18px;
  font-family: Montserrat, sans-serif;
}

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

.fly-out-button-wrapper {
  margin-left: -5vw;
  padding-left: 5vw;
  display: flex;
  overflow: hidden;
}

.services-wrapper {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between;
  place-items: start stretch;
  padding-top: 60px;
  display: grid;
}

.services-wrapper.grey {
  background-color: #e0e0e0;
  padding-left: 20px;
}

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

.services-info {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-rows: 1.75fr;
  grid-template-columns: 2fr 2fr;
  grid-auto-columns: 1fr;
  margin-bottom: 30px;
  display: grid;
}

.mission-description {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 30vw;
  min-height: 300px;
  max-height: 465px;
  padding-bottom: 20%;
  padding-left: 24px;
  display: grid;
}

.about-quote {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  height: 30vw;
  min-height: 300px;
  max-height: 465px;
  padding-top: 20%;
  padding-left: 24px;
  display: grid;
}

.project-gallery-image-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  align-items: stretch;
  display: grid;
}

.project-gallery-image:nth-child(odd) {
  margin-top: 160px;
  margin-bottom: 36px;
}

.project-schowcae-title {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 160px;
  margin-bottom: 36px;
  display: grid;
}

.tablet-mobile-menu, .tablet-mobile-nav-links {
  display: none;
}

.image-cover {
  z-index: 20;
  background-color: #fff;
  justify-content: center;
  width: 0%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.image-cover-wrapper {
  z-index: 15;
  width: 66.66%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
  overflow: visible;
}

.image-cover-wrapper.right-side {
  justify-content: flex-end;
  display: flex;
  inset: 0% 0% 0% auto;
}

.subtitle-name-grid {
  grid-column-gap: 7px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.template-screen {
  z-index: 10;
  border: 1px solid var(--pin-stripe);
  flex-direction: row;
  width: 100%;
  margin-bottom: 6px;
  padding-top: 0;
  display: flex;
  position: relative;
}

.feature-card-info {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.template-showcase-grid {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  grid-template-rows: minmax(80px, auto) minmax(80px, auto) auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(80px, auto);
  grid-auto-columns: 1fr;
  display: grid;
}

.page-info {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--pin-stripe);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 120px;
  display: grid;
  overflow: hidden;
}

.page-info.no-clip {
  overflow: visible;
}

.client-quote {
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-discovery-cover {
  z-index: 10;
  background-color: var(--pin-stripe);
  width: 100%;
}

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

.project-discovery-list {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.screen-image {
  width: 100%;
  max-width: none;
  height: 100%;
}

.client-quote-credit {
  border-left: 2px solid #fff;
  margin-left: -24px;
  padding-left: 24px;
}

.news-category-item {
  border-bottom: 1px none var(--pin-stripe);
}

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

.background-banner {
  background-image: url('../images/Space002.jpeg');
  background-position: 50%;
  background-size: cover;
  height: 116%;
  position: absolute;
  inset: auto 0%;
}

.background-banner.video-banner {
  background-image: none;
  background-position: 0 0;
}

.background-banner.projects-banner {
  background-image: url('../images/Space013.jpeg');
}

.background-banner.projects-banner.ecobonus {
  background-image: url('../images/tierre-ecobonus.jpg');
}

.background-banner.team-banner {
  background-image: url('../images/serramenti.jpg');
}

.background-banner.service-1-banner {
  background-image: url('../images/Space006.jpeg');
}

.background-banner.service-2-banner {
  background-image: url('../images/Space025.jpeg');
}

.background-banner.service-3-banner {
  background-image: url('../images/Space021.jpeg');
}

.background-banner.newsletter-banner {
  background-image: url('../images/Space002.jpeg');
  background-position: 0%;
}

.background-banner.zanzariere {
  background-image: url('../images/tierre-zanzariere2.jpg');
}

.background-banner.tenda {
  background-image: url('../images/1-pergole.jpg');
}

.background-banner.serramenti {
  background-image: url('../images/finestra.jpg');
}

.background-banner.scale-interne {
  background-image: url('../images/scale-interne_0006_15-1-1.jpg');
}

.background-banner.scale-sicurezza {
  background-image: url('../images/scala-sicurezza-tierre.jpg');
  background-position: 50%;
  background-size: cover;
}

.background-banner.tettoie {
  background-image: url('../images/carpenteria-metallica-facciate-carpenteria-castilenti.jpg');
  background-position: 50%;
}

.background-banner.cancelli {
  background-image: url('../images/cancelli-castilenti-teramo.jpeg');
}

.background-banner.carpenteria {
  background-image: url('../images/carpeteria-leggera-tierre-castilenti-carpenteria.jpeg');
  background-position: 0 0;
}

.background-banner.acciaio {
  background-image: url('../images/lavorazioni-acciaio_0004_Schermata-2021-11-04-alle-19.19.04.jpg');
}

.background-banner.casseformi {
  background-image: linear-gradient(to bottom, var(--dark-red), #fff0), url('../images/casseformi-costruzionitecnologiche_0002_Schermata-2021-11-06-alle-10.04.47.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.background-banner.cta-portfolio {
  background-image: url('../images/tierre-capannoni-tettoie-pensiline_0016_STRUTTURA.jpg');
}

.background-banner.cta-portfolio._2 {
  filter: grayscale();
  background-image: url('../images/tierre2.jpg');
}

.background-banner.riqualificazione {
  background-image: url('../images/5.png');
}

.body-display-name-grid {
  grid-column-gap: 6px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.dark-cover {
  background-color: var(--dark);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.newsletter-form-wrapper {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  color: #fff;
  grid-template-rows: auto 1fr;
  grid-template-columns: .5fr;
  grid-auto-columns: 4.25fr;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.newsletter-intro {
  z-index: 10;
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  background-color: var(--pin-stripe);
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 60px 36px;
  display: grid;
  position: relative;
}

.form-block {
  z-index: 20;
  margin-bottom: 0;
  position: relative;
}

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

.form-column.right {
  padding-left: 24px;
  padding-right: 24px;
}

.radio-button {
  border-color: #fff;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 18px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.radio-button.w--redirected-checked {
  box-shadow: none;
  background-color: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

.field-label {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.checklist {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.checklist-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.checklist-icon {
  border: 1px solid var(--dark-outline);
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
}

.radio-item {
  cursor: pointer;
  border-bottom: 1px solid #ffffff1f;
  align-items: center;
  height: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  font-size: 16px;
  display: flex;
}

.button-text {
  z-index: 10;
  text-align: center;
  letter-spacing: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  font-weight: 400;
  position: relative;
}

.button-text.nav {
  letter-spacing: 2px;
  font-size: 12px;
}

.menu-collection-list-item {
  border-bottom: 1px solid var(--dark-outline);
}

.empty-search-results {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  display: grid;
}

.sticky-section {
  z-index: 200;
  justify-content: center;
  align-items: stretch;
  height: 0;
  margin-bottom: 120px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: sticky;
  top: 75px;
}

.page-hero {
  z-index: 10;
  color: #fff;
  justify-content: center;
  min-height: 650px;
  padding-top: 120px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page-hero.scale-sicurezza {
  min-height: 820px;
}

.projects-hero {
  z-index: 10;
  color: #fff;
  justify-content: center;
  min-height: 750px;
  padding-top: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.password-hero {
  z-index: 10;
  color: #fff;
  justify-content: center;
  min-height: 100vh;
  padding-top: 36px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

._404-hero {
  z-index: 10;
  color: #fff;
  justify-content: center;
  min-height: 650px;
  padding-top: 36px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-description {
  padding-right: 24px;
}

.about-description {
  grid-column-gap: 0px;
  grid-row-gap: 12px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-right: 24px;
  display: grid;
}

.category-description {
  grid-column-gap: 0px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  max-width: 280px;
  display: grid;
}

.category-link {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 120px;
  padding-left: 12px;
  padding-right: 12px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.services-card {
  grid-column-gap: 0px;
  grid-row-gap: 36px;
  border-top: 1px none var(--pin-stripe);
  border-bottom: 1px none var(--pin-stripe);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 36px;
  display: grid;
}

.banner-categories {
  width: 100%;
  height: 100%;
  padding-top: 36px;
  overflow: hidden;
}

.minimal-card {
  z-index: 10;
  border-top: 1px none var(--pin-stripe);
  border-bottom: 1px solid var(--pin-stripe);
  align-items: flex-start;
  height: 100%;
  padding: 36px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.anchor-link {
  z-index: 10;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.banner-items-wrapper {
  height: 120px;
  overflow: hidden;
}

.home-hero {
  z-index: 10;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding-top: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-section {
  z-index: 10;
  color: #fff;
  background-color: #3a3a3a;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 120px 5vw 36px;
  display: block;
  position: relative;
}

.template-card {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  border-top: 1px solid var(--pin-stripe);
  border-bottom: 1px none var(--pin-stripe);
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 36px;
  display: grid;
}

.template-card.bottom-border {
  border-bottom-style: solid;
}

.newsletter-overlay {
  background-color: #090b19e6;
  position: absolute;
  inset: 0%;
}

.template-credit {
  white-space: nowrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.nav-link-hover-button {
  border: 1px solid #ffffff1f;
  border-radius: 100px;
  width: 100%;
  height: 46px;
  position: absolute;
}

.banner-scrolling-wrapper {
  background-color: var(--pin-stripe);
  width: 100%;
  height: 100%;
}

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

.text-block {
  margin-top: -74px;
  font-family: Montserrat, sans-serif;
}

.link-footer {
  color: #303030;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

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

.heading-3 {
  text-align: left;
  font-family: Montserrat, sans-serif;
}

.checkbox-field {
  font-family: Montserrat, sans-serif;
}

.checkbox {
  font-size: 14px;
}

.html-embed {
  filter: contrast(200%) grayscale(66%);
  width: 100%;
  height: 450px;
  margin-bottom: 40px;
}

.logo-footer {
  padding-left: 10px;
  display: block;
}

.div-block-2 {
  border: 1px solid var(--firebrick);
}

.div-block-2.negative {
  margin-top: 150px;
}

.div-block-2.positive {
  margin-top: -185px;
}

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

.left-arrow, .right-arrow {
  display: none;
}

.slide {
  width: 25%;
}

.slide-nav {
  color: #494949;
  padding-bottom: 5px;
  font-size: 10px;
}

.text-red {
  color: var(--firebrick);
}

.container {
  flex: 0 auto;
  display: block;
}

.box-manuale {
  cursor: pointer;
  width: 100%;
  min-height: 200px;
  transition: all .4s;
}

.box-manuale:hover {
  box-shadow: 1px 1px 3px #d4d4d4;
}

.img-manuale {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.link-block {
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.html-embed-2 {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
}

.title-form {
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.check-box {
  margin-top: 10px;
  margin-bottom: 20px;
}

.image {
  margin: 20px auto;
  display: block;
}

.img-partner {
  filter: grayscale();
  transition: all .45s;
}

.img-partner:hover {
  filter: none;
}

.container-2 {
  padding-left: 0;
}

.background-video {
  width: 100%;
  height: 100%;
}

.html-embed-3 {
  z-index: 999;
  color: var(--body-display);
  text-transform: uppercase;
  background-color: #fff0;
  margin-top: 40px;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  position: relative;
}

.html-embed-4 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  text-decoration: none;
}

@media screen and (min-width: 1280px) {
  .image-overlay.dark-overylay {
    background-color: #9404044d;
  }

  .wrapper {
    max-width: 100%;
  }

  .banner-content.about {
    min-height: 450px;
  }

  .card-hover-item {
    padding: 0;
  }

  .card-circle {
    border-radius: 100%;
    display: block;
  }

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

  .hero-background-image.team-background {
    background-image: url('../images/tierre1.jpg');
  }

  .hero-background-image.services-background {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .project-description.top-grey-border {
    grid-auto-flow: row;
    display: block;
  }

  .background-banner.cta-portfolio._2 {
    background-image: url('../images/tierre2.jpg');
  }

  .newsletter-form-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .newsletter-intro {
    padding: 80px 48px;
  }

  .sticky-section {
    width: 100%;
  }

  .footer-section {
    background-color: #858585;
  }

  .background-video {
    width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .wrapper {
    max-width: 100%;
  }

  .credits-wrapper {
    grid-column-gap: 80px;
  }

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

  .hero-feature-card {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .page-hero.scale-sicurezza {
    min-height: 870px;
  }

  .services-card {
    padding: 48px;
  }
}

@media screen and (min-width: 1920px) {
  .section.video-section {
    padding-bottom: 100px;
  }

  .section.white {
    background-color: #fff;
  }

  .wrapper {
    max-width: 100%;
  }

  .menu-list-item.white.small {
    padding-top: 0;
  }

  .hero-feature-card {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 48px;
  }

  .page-hero.scale-sicurezza {
    min-height: 950px;
  }

  .footer-section {
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .section.video-section {
    padding-top: 180px;
    padding-bottom: 120px;
  }

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

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

  .nav-link {
    padding: 20px 12px;
    font-size: 12px;
    text-decoration: none;
  }

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

  .left-navbar {
    width: 100%;
  }

  .nav-menu, .pin-stripe.hide-tablet {
    display: none;
  }

  .hero-content-wrapper {
    max-width: none;
  }

  .xxl-heading {
    font-size: 64px;
  }

  .banner-content {
    min-height: 325px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .body-display.dark {
    color: var(--dark);
  }

  .project-item {
    min-height: 375px;
    max-height: 550px;
  }

  .testimonial-arrow {
    height: 25%;
    top: 25%;
    bottom: auto;
  }

  .testimonial-content {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-auto-flow: row;
  }

  .testimonial-column {
    min-height: 400px;
    padding: 48px 24px;
  }

  .testimonial-column.testimonial-description {
    min-height: auto;
  }

  .testimonial-column.testimonial-image {
    min-height: 450px;
  }

  .stacked-description.horizontal {
    justify-items: start;
  }

  .page-info-ribbon {
    grid-template-columns: 1fr;
  }

  .subtitle {
    text-align: left;
  }

  .tripple-grid {
    grid-row-gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

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

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

  .project-categories-wrapper {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .large-menu-wrapper {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    padding-top: 75px;
    padding-bottom: 0;
  }

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

  .project-collection-item:nth-child(odd) {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

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

  .search-wrapper {
    display: flex;
  }

  .mega-category-list {
    display: block;
  }

  .mega-menu, .mega-menu-overlay {
    display: none;
  }

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

  .team-collection-item:nth-child(odd) {
    margin-top: 0;
  }

  .team-collection-item:nth-child(2n) {
    margin-top: 60%;
    margin-bottom: -40%;
  }

  .featured-news-list {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    display: block;
  }

  .post-list-item {
    height: auto;
    font-size: 16px;
  }

  .post-list-item.category-list-item {
    min-height: 60px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 16px;
  }

  .inner-page-hero-wrapper {
    grid-template-columns: 1fr;
  }

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

  .sticky-services-menu {
    position: relative;
    top: 0;
  }

  .sticky-services-menu.extra-top-margin {
    top: 0;
  }

  .rich-text h2 {
    font-size: 28px;
  }

  .rich-text h4 {
    font-size: 18px;
  }

  .rich-text h3 {
    font-size: 22px;
  }

  .right-grid-intro {
    padding-left: 0;
  }

  .hero-bottom-feature {
    width: 50%;
  }

  .footer-wrapper {
    grid-template-rows: minmax(44px, auto) minmax(106px, auto) minmax(106px, auto) minmax(36px, auto);
    grid-template-columns: 1fr 1fr;
  }

  .featured-project-details {
    grid-template-columns: 1fr;
  }

  .gallery-items-wrapper {
    padding-top: 160px;
  }

  .fly-out-button {
    width: 50%;
    max-width: 50%;
  }

  .fly-out-button.on-click {
    width: 66.66%;
    max-width: 66.66%;
  }

  .project-description-wrapper {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .project-description {
    padding: 36px 24px;
  }

  .project-features {
    padding-top: 0;
  }

  .general-collection-wrapper {
    flex-direction: column;
    display: flex;
  }

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

  .news-list-item:nth-child(2n) {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .pagination {
    grid-template-columns: 1fr 1fr;
    padding-top: 36px;
  }

  .large-search-wrapper {
    width: 100%;
  }

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

  .about-quote {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 0%;
  }

  .project-gallery-image-wrapper {
    grid-template-rows: auto 1fr;
  }

  .project-schowcae-title {
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin-bottom: 0;
  }

  .tablet-mobile-menu {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .dropdown {
    border-bottom: 1px solid var(--dark-outline);
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .dropdown.top {
    border-top: 1px solid var(--dark-outline);
  }

  .dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 24px;
    display: flex;
  }

  .tablet-mobile-nav-links {
    background-color: #fff;
    display: flex;
  }

  .dropdown-list {
    background-color: #fff;
    position: relative;
    inset: 0% 0% auto;
    overflow: hidden;
  }

  .image-cover-wrapper {
    width: 50%;
  }

  .dropdown-lottie {
    justify-content: center;
    align-items: center;
    width: 18px;
    margin-left: 24px;
    display: flex;
  }

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

  .page-info {
    overflow: auto;
  }

  .background-banner.newsletter-banner {
    background-position: 50% 0;
  }

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

  .services-card {
    padding: 36px 24px;
  }

  .banner-categories {
    padding-top: 0;
  }

  .minimal-card {
    padding: 24px;
  }

  .footer-section {
    padding-top: 100px;
  }

  .template-card {
    padding: 24px;
  }

  .div-block-2.negative, .div-block-2.positive {
    margin-top: 10px;
  }

  .container-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
  }

  blockquote {
    padding-left: 18px;
    padding-right: 12px;
  }

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

  .wrapper.navbar-wrapper {
    border-style: none;
    border-color: #000;
  }

  .nav-link {
    border-bottom: 1px solid var(--pin-stripe);
    justify-content: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link.bottom {
    border-bottom-style: none;
  }

  .left-navbar {
    border-style: none solid solid;
    width: 100%;
    min-width: auto;
    padding-left: 0;
  }

  .menu-wrapper {
    display: none;
  }

  .brand {
    padding-left: 18px;
  }

  .pin-stripe.hide-horizontal-mobile {
    display: none;
  }

  .xxl-heading {
    font-size: 54px;
  }

  .body-display.white.in-footer {
    margin-bottom: 30px;
  }

  .project-item {
    place-content: stretch space-around;
    place-items: stretch stretch;
    width: 100%;
    height: auto;
    display: flex;
  }

  .testimonial-arrow {
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1f;
    width: 50%;
    height: 60px;
    top: 0%;
  }

  .testimonial-arrow.right-arrow {
    border-right-style: none;
    left: auto;
    right: 0;
  }

  .testimonial-content {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .testimonial-column {
    min-height: auto;
  }

  .testimonial-column.testimonial-description {
    border-top: 1px solid #ffffff1f;
  }

  .testimonial-column.testimonial-image {
    min-height: 400px;
  }

  .rotate-text.no-rotate-on-mobile {
    transform: none;
  }

  .credits-wrapper {
    grid-column-gap: 24px;
    padding: 36px;
  }

  .tripple-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

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

  .services-grid.two-column {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .services-grid.top-border {
    grid-row-gap: 0px;
  }

  .hover-link-wrapper {
    display: none;
  }

  .hover-link-wrapper.video-link-wrapper, .hover-link-wrapper.project-view-link {
    display: flex;
  }

  .large-menu-wrapper {
    grid-template-rows: 65px auto;
  }

  .collection-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .project-collection-item:nth-child(odd) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .project-categories {
    margin-top: 0;
  }

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

  .projects-search-wrapper {
    height: 65px;
  }

  .search-wrapper {
    display: none;
  }

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

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

  .team-collection-item {
    flex-direction: row;
    min-height: 500px;
    display: flex;
  }

  .team-collection-item:nth-child(2n) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .team-collection-item.two-column-item:nth-child(2n) {
    margin-top: 0%;
    margin-bottom: 0%;
  }

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

  .collection-list-item:nth-child(2n) {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .inner-page-hero-wrapper {
    grid-row-gap: 60px;
    grid-template-rows: auto auto auto;
  }

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

  .navigation-links {
    grid-template-columns: 1fr;
  }

  .banner-items {
    height: 80px;
  }

  .banner-items.project-categories {
    padding-top: 0;
  }

  .banner-items.template-credit {
    height: 100px;
  }

  .menu-list-item {
    grid-template-columns: auto 1fr;
  }

  .menu-list-item.discovery-item, .mega-social-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .right-grid-intro {
    margin-bottom: 24px;
  }

  .grid-wrapper {
    grid-row-gap: 120px;
  }

  .grid-wrapper.two-row {
    grid-row-gap: 60px;
  }

  .hero-bottom-feature {
    width: 100%;
  }

  .hero-feature-card {
    padding: 24px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(36px, auto);
  }

  .project-detail-items {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-items-wrapper {
    padding-top: 140px;
  }

  .fly-out-button {
    grid-template-columns: 60px 1fr;
    width: 66.66%;
    max-width: 66.66%;
  }

  .fly-out-button.on-click {
    width: 100%;
    max-width: 100%;
  }

  .project-description {
    grid-row-gap: 36px;
    grid-template-columns: 1fr;
  }

  .general-collection-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 36px;
    display: flex;
  }

  .news-list {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .news-list-item:nth-child(2n) {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .results-help-wrapper {
    grid-template-columns: auto;
    justify-content: center;
    justify-items: center;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .list-item-arrow {
    width: 14px;
    min-width: 14px;
  }

  .gallery-heading {
    padding-left: 18px;
  }

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

  .services-wrapper {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .service-examples-wrapper, .services-info {
    grid-template-columns: 1fr;
  }

  .mission-description {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-bottom: 0;
    padding-left: 0;
  }

  .about-quote {
    padding-bottom: 24px;
    padding-left: 0;
  }

  .project-gallery-image-wrapper {
    grid-row-gap: 36px;
  }

  .project-gallery-image:nth-child(odd) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .project-schowcae-title {
    grid-template-columns: 1fr;
  }

  .dropdown-toggle {
    min-height: 60px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-collection-item {
    border-bottom: 1px solid var(--dark-outline);
  }

  .category-collection-item:nth-child(odd) {
    border-right: 1px solid var(--dark-outline);
  }

  .image-cover-wrapper {
    width: 100%;
  }

  .page-info {
    height: auto;
  }

  .background-banner.newsletter-banner {
    background-position: 50% 0;
  }

  .dark-cover {
    background-color: #0000;
  }

  .newsletter-form-wrapper {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .newsletter-intro {
    padding: 36px 24px;
  }

  .form-column.right {
    flex-direction: column;
  }

  .sticky-section {
    height: auto;
    margin-bottom: 0;
    position: relative;
    top: 0;
  }

  .page-hero {
    min-height: 550px;
  }

  ._404-hero {
    min-height: 450px;
  }

  .category-link {
    min-height: 80px;
  }

  .anchor-link {
    border-bottom: 1px solid var(--dark-outline);
    min-height: 80px;
  }

  .anchor-link.bottom {
    border-bottom-style: none;
  }

  .banner-items-wrapper {
    height: 80px;
  }

  .footer-section {
    padding-bottom: 72px;
  }

  .template-card {
    border-bottom-style: solid;
  }

  .container-2 {
    padding-left: 30px;
  }
}

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

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 14px;
  }

  blockquote {
    padding-left: 18px;
    padding-right: 0;
    font-size: 16px;
  }

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

  .section.video-section {
    padding: 140px 20px 100px;
  }

  .navbar {
    height: 65px;
  }

  .brand {
    align-items: stretch;
    padding-left: 18px;
  }

  .xxl-heading {
    font-size: 48px;
  }

  .xxl-heading.one {
    line-height: 50px;
  }

  .banner-content {
    min-height: auto;
    padding: 48px 12px;
  }

  .banner-intro {
    grid-row-gap: 24px;
  }

  .large-heading {
    font-size: 36px;
  }

  .body-display {
    font-size: 13px;
  }

  .body-display.white.in-footer {
    margin-bottom: 40px;
    padding-bottom: 0;
    font-size: 12px;
  }

  .horizontal-line {
    width: 100%;
    min-height: 1px;
    margin-top: 0;
    margin-left: 6px;
  }

  .horizontal-line.white {
    margin-top: 0;
  }

  .button.grey-outline.small {
    padding: 5px 10px;
  }

  .testimonial-arrow {
    font-size: 12px;
  }

  .testimonial-column.testimonial-description {
    border-top-style: none;
    padding-top: 36px;
  }

  .testimonial-column.testimonial-image {
    width: 100%;
    min-height: 350px;
  }

  .testimonial-column.testimonial-name {
    z-index: 1;
    background-color: #090b1959;
    border-top: 1px #ffffff1f;
    border-bottom: 1px #ffffff1f;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .stacked-description {
    grid-column-gap: 16px;
    grid-row-gap: 18px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: .25fr;
    justify-items: start;
    display: grid;
  }

  .stacked-description.horizontal {
    margin-bottom: 5px;
  }

  .credits-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 18px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    padding-left: 24px;
    padding-right: 24px;
  }

  .icon {
    margin-bottom: 36px;
  }

  .subtitle {
    font-size: 10px;
    line-height: 16px;
  }

  .subtitle.white {
    font-size: 10px;
  }

  .tripple-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-bottom: 36px;
  }

  .tripple-grid.no-margin {
    grid-row-gap: 36px;
  }

  .logos-headline {
    flex-direction: row;
    align-items: center;
  }

  .video-info {
    grid-row-gap: 48px;
    padding-left: 0;
  }

  .project-categories-wrapper {
    position: relative;
  }

  .large-menu-wrapper {
    padding-top: 65px;
  }

  .project-card-info {
    padding: 18px 12px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .category-collection-list-wrapper {
    overflow: hidden;
  }

  .collection-list {
    grid-row-gap: 24px;
  }

  .team-collection-item {
    min-height: 350px;
  }

  .featured-news-list {
    width: 100%;
  }

  .post-list-item.category-list-item {
    height: auto;
  }

  .inner-page-hero-wrapper {
    grid-row-gap: 60px;
  }

  .banner-items.template-credit {
    height: 80px;
  }

  .menu-list-item {
    grid-template-columns: auto 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .menu-list-item.white {
    grid-template-columns: auto 1fr;
  }

  .menu-list-item.discovery-item {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .service-menu-list {
    grid-auto-rows: 1fr;
  }

  .list-heading-wrapper {
    grid-template-columns: auto 1fr;
    width: 100%;
    padding-left: 18px;
  }

  .team-portrait-wrapper {
    min-height: 400px;
  }

  .rich-text h2 {
    font-size: 26px;
  }

  .right-grid-intro {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }

  .post-card-description {
    padding: 24px;
  }

  .mega-menu-list-wrapper {
    grid-template-rows: auto;
    grid-auto-rows: auto;
    align-items: start;
  }

  .grid-wrapper {
    grid-row-gap: 100px;
  }

  .grid-wrapper.two-row {
    grid-row-gap: 36px;
  }

  .hero-bottom-feature {
    width: 100%;
  }

  .featured-project-column {
    font-size: 9px;
  }

  .hero-feature-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-background-image.scale-sicurezza {
    background-position: 55%;
  }

  .project-detail-item {
    padding: 36px 18px;
  }

  .project-detail-item.middle-item {
    border-left-style: solid;
  }

  .project-detail-items {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .featured-project-details {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-items-wrapper {
    padding-top: 140px;
  }

  .fly-out-button {
    width: 100%;
    max-width: 100%;
  }

  .fly-out-button.off-click {
    grid-template-columns: 40px 1fr;
    font-size: 14px;
  }

  .project-description {
    grid-row-gap: 24px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .projects-lottie-wrapper {
    font-size: 14px;
  }

  .search-result-list, .search-result-item {
    flex-direction: column;
    display: flex;
  }

  .search-results-link {
    padding: 36px 18px;
  }

  .search-result-wrapper {
    flex-direction: column;
  }

  .results-help-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .author-post-item {
    padding-left: 18px;
    padding-right: 18px;
  }

  .author-card {
    grid-row-gap: 24px;
    text-align: center;
    grid-template-columns: auto;
    padding-left: 0;
  }

  .dropdown-toggle {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .dropdown-list {
    height: auto;
  }

  .category-collection-item:nth-child(odd) {
    border-right-style: none;
  }

  .category-collection-item:last-child {
    border-bottom: 1px #000;
  }

  .client-quote-credit {
    margin-left: 0;
    padding-left: 18px;
  }

  .background-banner.newsletter-banner {
    background-position: 50% 0;
  }

  .radio-item {
    padding-left: 18px;
  }

  .button-text.nav {
    font-size: 10px;
    line-height: 16px;
  }

  .page-hero {
    min-height: 450px;
    padding-top: 89px;
  }

  .projects-hero {
    padding-top: 89px;
  }

  .password-hero {
    min-height: 93vh;
  }

  .category-link {
    min-height: 60px;
  }

  .services-card {
    padding: 36px 18px;
  }

  .minimal-card {
    padding: 24px;
  }

  .anchor-link {
    min-height: 60px;
  }

  .home-hero {
    min-height: 93vh;
    padding-top: 89px;
  }

  .footer-section {
    padding-top: 80px;
  }

  .div-block {
    width: 100%;
  }

  .nav-link-hover-button {
    font-size: 10px;
  }

  .logo-footer {
    width: 200px;
  }

  .container-2 {
    padding-left: 20px;
  }

  .image-2 {
    margin-bottom: 20px;
  }

  .image-3 {
    margin-top: 20px;
  }
}

#w-node-dd002ff0-1786-f7aa-b0cb-21b79ffd8f18-fbbd718d {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center start;
}

#w-node-_8e07c8f2-059d-6f6d-2fac-5813639df6f0-fbbd718d {
  grid-area: 2 / 2 / 4 / 3;
  place-self: end;
}

#w-node-d71299dc-e2cf-e714-cc8e-cbf4e6f5ae15-fbbd718d {
  grid-area: 2 / 2 / 3 / 3;
  justify-self: start;
}

#w-node-_991b9d86-d746-6bac-12b8-a27bc65d39a9-fbbd718d {
  justify-self: start;
}

#w-node-c3dc174b-78b2-9eb5-4dbe-d315274a7469-fbbd718d {
  grid-area: 1 / 3 / 4 / 4;
}

#w-node-_70edc27a-5d85-b4b7-cc4a-a4055e230b7f-fbbd718d {
  grid-area: 1 / 3 / 2 / 4;
  place-self: center end;
}

#w-node-fce747e9-421f-c9f3-2122-f738bf568eee-fbbd718d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-fce747e9-421f-c9f3-2122-f738bf568ef1-fbbd718d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-d56ca079-049b-55b7-0bb4-65c2201bf821-fbbd718d {
  justify-self: start;
}

#w-node-_56a51d81-08ec-2ee7-96f9-e1db6a6b7ebe-fbbd718d, #w-node-_4aa1e293-2ce7-c7b6-5938-b5dfd439db55-fbbd718d {
  grid-area: 1 / 3 / 2 / 4;
  place-self: center end;
}

#w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b81-fbbd718d, #w-node-_8f986286-6be5-7fda-4809-b0f5bd56244c-fbbd718d, #w-node-_55b430a6-fcdd-50cc-dc29-08e683d8133e-fbbd718d, #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b689c-fbbd718d {
  align-self: end;
}

#w-node-f0c63057-7c7c-2a90-b49b-0a201e7e42b3-fbbd718d {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: stretch;
}

#w-node-_86d8087c-f402-31b5-d612-f055e8856137-fbbd718d {
  grid-area: 1 / 1 / 2 / 2;
  align-self: stretch;
}

#w-node-_9e302ef9-a044-afc5-3392-3585167ef4fb-fbbd718d {
  align-self: start;
}

#w-node-c401ca72-aae4-9c20-edba-400cc2545a1a-fbbd718d, #w-node-_158353d8-f5c3-bf30-52a2-714256d40766-fbbd718d, #w-node-fa1f8cec-23d9-cc72-cc5a-6169aabb1732-fbbd718d, #w-node-fa1f8cec-23d9-cc72-cc5a-6169aabb1733-fbbd718d, #w-node-_9fb60b98-6b85-1cf8-84f5-4c9583a249af-fbbd718d, #w-node-_9fb60b98-6b85-1cf8-84f5-4c9583a249b0-fbbd718d {
  align-self: center;
}

#w-node-_107b1a5c-bae2-6efc-eb37-ccb7490c376d-fbbd718d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-bffc60b2-ad33-2b9a-4184-6b56bb9d8cc8-fbbd718d {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: stretch;
}

#w-node-_1aa5acca-7f49-679e-50b8-388c32a77251-fbbd718d {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_1aa5acca-7f49-679e-50b8-388c32a7727d-fbbd718d, #w-node-_9c405c4f-0a01-25e1-132e-34c6ba329563-fbbd718d, #w-node-_77a16468-8635-176e-b0ad-9ca7498f8fc3-fbbd718d {
  place-self: center end;
}

#w-node-_9df7d6be-d736-e347-79c1-f2fbf7e2ab9a-fbbd718d {
  place-self: auto;
}

#w-node-f1fee38e-2cd0-a7d2-ac51-3c89bff81d4d-fbbd718d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f1fee38e-2cd0-a7d2-ac51-3c89bff81d52-fbbd718d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_20770fc9-14d5-143f-7ba3-37023ddfb9ad-fbbd718d, #w-node-_1aa5acca-7f49-679e-50b8-388c32a77269-fbbd718d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-be149a0b-6298-faa0-2b2f-e4e9152cb286-fbbd718d {
  place-self: center;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b923-c426b91d {
  grid-area: 2 / 3 / 6 / 4;
  place-self: start stretch;
}

#w-node-_45b34427-e110-886f-d0e2-cced08d779d4-c426b91d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b937-c426b91d {
  grid-area: 2 / 2 / 5 / 3;
  place-self: start stretch;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b92d-c426b91d {
  place-self: center start;
}

#w-node-_3ba5fc0d-00d1-0032-83ee-52ea90be55fb-c426b91d {
  place-self: center end;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b931-c426b91d {
  place-self: center start;
}

#w-node-d7478ca7-7861-03a0-e2af-d807b17707c6-c426b91d {
  place-self: center end;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b94a-c426b91d {
  grid-area: 2 / 1 / 4 / 2;
  align-self: start;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b93c-c426b91d {
  place-self: center start;
}

#w-node-eaf30d13-d8b4-446b-d7d2-d527e95fa99a-c426b91d {
  place-self: center end;
}

#w-node-f759b7e1-8cd0-a110-9e74-10e148104a35-c426b91d {
  place-self: center start;
}

#w-node-f759b7e1-8cd0-a110-9e74-10e148104a37-c426b91d {
  place-self: center end;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b945-c426b91d {
  place-self: center start;
}

#w-node-_47bab92c-8f85-cc70-5380-573db90b0da1-c426b91d {
  place-self: center end;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b948-c426b91d {
  place-self: center start;
}

#w-node-f9bea813-e527-c7ca-8e20-11a3cd4098db-c426b91d {
  place-self: center end;
}

#w-node-f7de0c6f-7f26-1b79-241a-c2751acbecb1-c426b91d {
  place-self: center start;
}

#w-node-f7de0c6f-7f26-1b79-241a-c2751acbecb3-c426b91d {
  place-self: center end;
}

#w-node-c6a86f47-145d-b8c8-1c44-2b43c426b94f-c426b91d {
  grid-area: 6 / 3 / 7 / 4;
  align-self: end;
}

#w-node-_397244f1-6d58-8f51-019c-f7e5a2b1e41a-f9270e17 {
  justify-self: stretch;
}

#w-node-_849e754c-a02b-b240-b303-2bf5e8a0db81-f9270e17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a30333d2-032c-03e5-f1b1-a5d31eb7f5e4-f9270e17 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: stretch stretch;
}

#w-node-f6bc36f4-f383-6c75-acad-0cc5e40ffa88-f9270e17, #w-node-_756b123b-f952-040b-6a04-6a62d666ee8e-f9270e17, #w-node-_7cca9805-4373-8561-ef55-05880a6d60d4-f9270e17, #w-node-f6bc36f4-f383-6c75-acad-0cc5e40ffa84-f9270e17, #w-node-_09c30d23-30c6-3503-8c11-f17537c541e4-f9270e17, #w-node-_7f619a7f-e1ee-72b5-a721-3dc57979fec4-f9270e17, #w-node-bd6173f5-52cd-1a73-8515-5f0eba24f727-f9270e17, #w-node-_5db97198-acbd-1e4c-6d87-a5039ff2856d-f9270e17, #w-node-a412036a-1872-78ab-9b20-a8cd8fd92b75-f9270e17, #w-node-f6bc36f4-f383-6c75-acad-0cc5e40ffa80-f9270e17 {
  place-self: center end;
}

#w-node-_24909537-2aef-fa73-cf08-5d19c7632e15-f9270e17 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a30333d2-032c-03e5-f1b1-a5d31eb7f5f0-f9270e17 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-a30333d2-032c-03e5-f1b1-a5d31eb7f5f1-f9270e17 {
  place-self: center start;
}

#w-node-a30333d2-032c-03e5-f1b1-a5d31eb7f5f3-f9270e17 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c1267971-e98a-4887-2b61-4f4973f4569f-f9270e17 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: stretch;
}

#w-node-fc177a8e-c247-e188-8355-4c56f9270e1a-f9270e17 {
  place-self: center start;
}

#w-node-fc177a8e-c247-e188-8355-4c56f9270e1c-f9270e17 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_17c43587-c790-b4d8-1466-5f40336b9d5b-336b9d43 {
  grid-area: 1 / 2 / 2 / 4;
  place-self: center stretch;
}

#w-node-_17c43587-c790-b4d8-1466-5f40336b9d5d-336b9d43 {
  place-self: center stretch;
}

#w-node-_16738520-6de8-1fcc-6cbc-d48e45d42b91-336b9d43 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_16738520-6de8-1fcc-6cbc-d48e45d42b93-336b9d43 {
  align-self: center;
}

#w-node-f4f0ce64-1f82-9e16-20fb-882e6946b843-336b9d43 {
  justify-self: end;
}

#w-node-b1f54d60-8162-982a-d9da-7a1f0883a553-336b9d43 {
  align-self: center;
}

#w-node-b1f54d60-8162-982a-d9da-7a1f0883a555-336b9d43 {
  justify-self: end;
}

#w-node-be6e1212-c8c8-b564-9d2f-b92422ca9045-336b9d43 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-fbfab365-c38f-1be6-6e51-32f69bada7bf-bbbd7190 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start;
}

#w-node-fbfab365-c38f-1be6-6e51-32f69bada7c2-bbbd7190 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center stretch;
}

#w-node-fbfab365-c38f-1be6-6e51-32f69bada7ce-bbbd7190 {
  grid-area: 3 / 1 / 4 / 4;
  align-self: end;
}

#w-node-_2f63b0aa-4d8d-1fa1-5a06-4ca21859a81f-bbbd7190 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2f63b0aa-4d8d-1fa1-5a06-4ca21859a803-bbbd7190 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_26839ce7-6d80-da5b-5e89-56d12f47a617-69bd7191 {
  align-self: start;
}

#w-node-_55545b2c-fd2c-f381-a702-fc88f5a9dbe3-69bd7191 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_55545b2c-fd2c-f381-a702-fc88f5a9dbeb-69bd7191 {
  grid-area: 3 / 1 / 4 / 3;
  align-self: end;
}

#w-node-_820c470e-2642-280b-4e92-cb88549a75a8-5cbd7193 {
  align-self: start;
}

#w-node-ed18e026-2679-c3d8-da62-56bb6b9e9b7c-5cbd7193 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-ed18e026-2679-c3d8-da62-56bb6b9e9b82-5cbd7193 {
  grid-area: 3 / 1 / 4 / 3;
  align-self: end;
}

#w-node-_0afe1988-388e-b5cb-404e-8a553a0bef5a-5cbd7193 {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: stretch;
}

#w-node-d9b4b9fb-17b5-5c17-e325-5cac706fc24d-5cbd7193 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0afe1988-388e-b5cb-404e-8a553a0bef68-5cbd7193 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-e9ec757d-bde5-cfd1-09ea-ee86b7bf3893-5cbd7193 {
  place-self: center start;
}

#w-node-e9ec757d-bde5-cfd1-09ea-ee86b7bf3895-5cbd7193 {
  place-self: center end;
}

#w-node-b5f0f859-f2e3-8e3f-1204-c264ea8fba83-5cbd7193 {
  place-self: center start;
}

#w-node-b5f0f859-f2e3-8e3f-1204-c264ea8fba85-5cbd7193 {
  place-self: center end;
}

#w-node-_49ddcbc7-212b-8d87-9172-4e02de9f526e-5cbd7193 {
  place-self: center start;
}

#w-node-_49ddcbc7-212b-8d87-9172-4e02de9f5270-5cbd7193 {
  place-self: center end;
}

#w-node-c4709cc9-6219-1334-e0b3-a683d50a9d42-5cbd7193 {
  place-self: center start;
}

#w-node-c4709cc9-6219-1334-e0b3-a683d50a9d44-5cbd7193 {
  place-self: center end;
}

#w-node-b57d97ad-744c-763d-df42-64a37c179c93-5cbd7193 {
  place-self: center start;
}

#w-node-b57d97ad-744c-763d-df42-64a37c179c95-5cbd7193 {
  place-self: center end;
}

#w-node-bde488ce-86c8-ac24-95b3-72f7ecc728aa-5cbd7193 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3205229-c2c3-f431-bb7a-14128002a3f6-22bd7199 {
  grid-area: 1 / 2 / 3 / 3;
  place-self: end;
}

#w-node-b3205229-c2c3-f431-bb7a-14128002a3f9-22bd7199 {
  grid-area: 1 / 3 / 3 / 4;
  justify-self: stretch;
}

#w-node-b3205229-c2c3-f431-bb7a-14128002a3fa-22bd7199 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: stretch stretch;
}

#w-node-b3205229-c2c3-f431-bb7a-14128002a3fb-22bd7199, #w-node-_78d7eb77-73ee-d100-2893-47b251164ce4-22bd7199 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b3205229-c2c3-f431-bb7a-14128002a3fd-22bd7199 {
  grid-area: 2 / 1 / 4 / 3;
  place-self: center start;
}

#w-node-f4914fd8-9661-30e6-850c-9d19244344ea-22bd7199 {
  grid-area: 2 / 1 / 9 / 2;
}

#w-node-_51e59de1-b435-e6c0-8330-88ce3c921551-22bd7199, #w-node-_3549fca4-0b88-8373-420e-189838fcdc23-22bd7199, #w-node-_300a6bbb-d4bc-5c6d-fff6-7980173ea82b-22bd7199, #w-node-_4c13e76c-76bb-cf29-9753-d7dc9015d5a9-22bd7199 {
  place-self: center end;
}

#w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac517f-22bd7199 {
  grid-area: 1 / 2 / 2 / 4;
}

#static.w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac518a-22bd7199 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac518b-22bd7199 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_353ee41b-0568-f449-8721-15e5500de963-22bd7199 {
  grid-area: 2 / 2 / 4 / 3;
}

#w-node-_12102cb7-b253-85df-5ce8-de413b78032d-22bd7199 {
  grid-area: 3 / 1 / 5 / 2;
}

#w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ada-22bd7199 {
  grid-area: 4 / 2 / 5 / 4;
}

#CMS.w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ae5-22bd7199 {
  grid-area: 5 / 2 / 6 / 4;
}

#w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ae6-22bd7199 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14af3-22bd7199 {
  grid-area: 2 / 2 / 4 / 3;
}

#w-node-e3b5db22-8e43-4f70-f4f3-5544dc291662-22bd7199 {
  grid-area: 7 / 2 / 8 / 4;
}

#utility.w-node-e3b5db22-8e43-4f70-f4f3-5544dc29166d-22bd7199 {
  grid-area: 8 / 2 / 9 / 4;
}

#w-node-e3b5db22-8e43-4f70-f4f3-5544dc29166e-22bd7199 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-e3b5db22-8e43-4f70-f4f3-5544dc29167b-22bd7199 {
  grid-area: 2 / 2 / 4 / 3;
}

#w-node-e3b5db22-8e43-4f70-f4f3-5544dc291688-22bd7199 {
  grid-area: 3 / 1 / 5 / 2;
}

#w-node-_209c1835-6d01-8fe3-3168-bf7fb2b47e76-22bd7199 {
  grid-area: 9 / 2 / 10 / 4;
}

#green.w-node-_895dbeff-1b92-6e2b-13b3-fabc664d8448-22bd7199 {
  grid-area: 10 / 2 / 11 / 4;
}

#w-node-_895dbeff-1b92-6e2b-13b3-fabc664d8449-22bd7199 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-ff11f385-19e7-2610-e10a-74658e22583e-bfbd719a {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-ff11f385-19e7-2610-e10a-74658e225841-bfbd719a {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center stretch;
}

#w-node-ff11f385-19e7-2610-e10a-74658e225846-bfbd719a {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-f401a23e-7b45-ba45-9d27-4acdd5da1d88-bfbd719a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f401a23e-7b45-ba45-9d27-4acdd5da1d78-bfbd719a {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_01c4e3cf-0ca8-0926-bf92-4bf4daeb8ca0-bfbd719a, #w-node-ba34e9c2-df0a-57da-3430-f5bf64771393-bfbd719a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ba34e9c2-df0a-57da-3430-f5bf6477139a-bfbd719a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d59e9609-7efc-4afd-8f71-7d2c1f85a44c-bfbd719a {
  place-self: end center;
}

#w-node-_605cd59d40ef8e036e3d508d00000000001a-bfbd719a {
  place-self: start center;
}

#w-node-_9a966d75-8ba6-8c66-a053-3fb940aae614-bfbd719a {
  justify-self: end;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad0c-bfbd719a {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad13-bfbd719a {
  place-self: center start;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad15-bfbd719a {
  place-self: center end;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad17-bfbd719a {
  place-self: center start;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad19-bfbd719a {
  place-self: center end;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad1b-bfbd719a {
  place-self: center start;
}

#w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad1d-bfbd719a {
  place-self: center end;
}

#w-node-_256f98c7-18a8-c7d5-c690-4bfe1bbed2c8-bdbd719b {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-_256f98c7-18a8-c7d5-c690-4bfe1bbed2cb-bdbd719b {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_256f98c7-18a8-c7d5-c690-4bfe1bbed2d0-bdbd719b {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_7f1f6b0a-25a1-a3f6-ffa0-7d8f329d9398-bdbd719b {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: stretch;
}

#w-node-dab5903c-a7e0-3d67-1fc1-3f4bc831cca3-bdbd719b {
  grid-area: 1 / 1 / 2 / 3;
  align-self: start;
}

#w-node-dab5903c-a7e0-3d67-1fc1-3f4bc831cca4-bdbd719b {
  justify-self: start;
}

#w-node-_7f1f6b0a-25a1-a3f6-ffa0-7d8f329d93a6-bdbd719b {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5ef7b72b-ba8b-2d27-ce02-b7b47ea3e12c-bdbd719b {
  place-self: center;
}

#w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-d3bd719c {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_06d98f73-386f-106d-9b9d-8057c0e4f1b4-d3bd719c {
  justify-self: start;
}

#w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-d3bd719c {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-d3bd719c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b7478-d3bd719c {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b747b-d3bd719c {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_792cce88-f7a5-d11d-f236-79d89b593844-d3bd719c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ca8ccc23-8d6d-8d56-208a-3f9deccdec62-d3bd719c {
  align-self: stretch;
}

#w-node-ca8ccc23-8d6d-8d56-208a-3f9deccdec6d-d3bd719c {
  justify-self: end;
}

#w-node-_462cb455-d0d5-1b6f-29b8-a45ab0064b5b-d3bd719c {
  align-self: stretch;
}

#w-node-_462cb455-d0d5-1b6f-29b8-a45ab0064b68-d3bd719c {
  justify-self: end;
}

#w-node-_34664252-cc0a-c0d7-5fa4-47396950db72-d3bd719c {
  align-self: stretch;
}

#w-node-_34664252-cc0a-c0d7-5fa4-47396950db7f-d3bd719c {
  justify-self: end;
}

#w-node-_73ddc849-29e3-f33a-cfa8-9f779aa8fd33-d3bd719c {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-_0fb8815d-20d5-3c26-78ac-331de63809e9-d3bd719c {
  justify-self: start;
}

#w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-04bd719d {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-04bd719d {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_328ccf60-c3cf-2f30-f7b3-b8b9bc95d220-04bd719d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_328ccf60-c3cf-2f30-f7b3-b8b9bc95d223-04bd719d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-4dbd719f {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_06d98f73-386f-106d-9b9d-8057c0e4f1b4-4dbd719f {
  justify-self: start;
}

#w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-4dbd719f {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-4dbd719f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b7478-4dbd719f {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b747b-4dbd719f {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_792cce88-f7a5-d11d-f236-79d89b593844-4dbd719f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_73ddc849-29e3-f33a-cfa8-9f779aa8fd33-4dbd719f {
  grid-area: 1 / 2 / 2 / 3;
  align-self: start;
}

#w-node-_0fb8815d-20d5-3c26-78ac-331de63809e9-4dbd719f {
  justify-self: start;
}

#w-node-ca8ccc23-8d6d-8d56-208a-3f9deccdec62-4dbd719f {
  align-self: stretch;
}

#w-node-ca8ccc23-8d6d-8d56-208a-3f9deccdec6d-4dbd719f {
  justify-self: end;
}

#w-node-_0c18d33a-421f-4988-25b4-7fbd6b212866-4dbd719f {
  align-self: stretch;
}

#w-node-_0c18d33a-421f-4988-25b4-7fbd6b212873-4dbd719f {
  justify-self: end;
}

#w-node-ddc0b3eb-5634-527a-b499-fc26c676045e-4dbd719f {
  align-self: stretch;
}

#w-node-ddc0b3eb-5634-527a-b499-fc26c676046b-4dbd719f {
  justify-self: end;
}

#w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-6783c518 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_06d98f73-386f-106d-9b9d-8057c0e4f1b4-6783c518 {
  justify-self: start;
}

#w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-6783c518 {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-6783c518 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b7478-6783c518 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_30697c31-5cdb-6fcf-5548-b4be320b747b-6783c518 {
  grid-area: 2 / 2 / 3 / 3;
  align-self: start;
}

#w-node-_2a12a16f-2933-4d3b-515c-d2de66a131e6-6783c518 {
  grid-area: 1 / 3 / 3 / 4;
  align-self: start;
}

#w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-9be8bffe {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_06d98f73-386f-106d-9b9d-8057c0e4f1b4-9be8bffe {
  justify-self: start;
}

#w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-9be8bffe {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-f257f1c4 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-f257f1c4 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-f257f1c4 {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-f257f1c4 {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-f257f1c4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-f257f1c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-f257f1c4 {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-f257f1c4 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-f257f1c4 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-f257f1c4 {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-f257f1c4 {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-f257f1c4 {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-f257f1c4 {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-8f063acd {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-8f063acd {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-8f063acd {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-8f063acd {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-8f063acd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-8f063acd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-8f063acd {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-8f063acd {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-8f063acd {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-8f063acd {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-8f063acd {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-8f063acd {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-8f063acd {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-9168a8ba {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-9168a8ba {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-9168a8ba {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-9168a8ba {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-9168a8ba {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-9168a8ba {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-9168a8ba {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-9168a8ba {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-9168a8ba {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-9168a8ba {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-9168a8ba {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-9168a8ba {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-9168a8ba {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-2d44e453 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-2d44e453 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-2d44e453 {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-2d44e453 {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-2d44e453 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-2d44e453 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-2d44e453 {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-2d44e453 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-2d44e453 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-2d44e453 {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-2d44e453 {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-2d44e453 {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-2d44e453 {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-d92123ab {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-d92123ab {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-d92123ab {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-d92123ab {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-d92123ab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-d92123ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-d92123ab {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-d92123ab {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-d92123ab {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-d92123ab {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-d92123ab {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-d92123ab {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-d92123ab {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-82810669 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-82810669 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-82810669 {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-82810669 {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-82810669 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-82810669 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-82810669 {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-82810669 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-82810669 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-82810669 {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-82810669 {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-82810669 {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-82810669 {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-8f7242b7 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-8f7242b7 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-8f7242b7 {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-8f7242b7 {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-8f7242b7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-8f7242b7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-8f7242b7 {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-8f7242b7 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-8f7242b7 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-8f7242b7 {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-8f7242b7 {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-8f7242b7 {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-8f7242b7 {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-0c3952e7 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-0c3952e7 {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-0c3952e7 {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-0c3952e7 {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-0c3952e7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-0c3952e7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-0c3952e7 {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-0c3952e7 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-0c3952e7 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-0c3952e7 {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-0c3952e7 {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-0c3952e7 {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-0c3952e7 {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-bd3cd3ad {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-bd3cd3ad {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-bd3cd3ad {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-bd3cd3ad {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-bd3cd3ad {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-bd3cd3ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-bd3cd3ad {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-bd3cd3ad {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-bd3cd3ad {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-bd3cd3ad {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-bd3cd3ad {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-bd3cd3ad {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-bd3cd3ad {
  justify-self: end;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a94-b67fd2be {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-b67fd2be {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-b67fd2be {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-b67fd2be {
  grid-area: 1 / 2 / 2 / 4;
  justify-self: center;
}

#w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc06-b67fd2be {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677b-b67fd2be {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7396286b-1f85-7bfc-8120-d1309122677c-b67fd2be {
  justify-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-b67fd2be {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-b67fd2be {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987e1-b67fd2be {
  place-self: stretch stretch;
}

#w-node-fbd4279b-ffa1-6e4f-b787-7c57722987ee-b67fd2be {
  justify-self: end;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd172-b67fd2be {
  align-self: stretch;
}

#w-node-ce7b0859-cdc5-c9df-c11c-9efe815dd17f-b67fd2be {
  justify-self: end;
}

#w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-9ffa4fdb {
  grid-area: 2 / 1 / 3 / 3;
  place-self: center start;
}

#w-node-_06d98f73-386f-106d-9b9d-8057c0e4f1b4-9ffa4fdb {
  justify-self: start;
}

#w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-9ffa4fdb {
  grid-area: 3 / 1 / 4 / 3;
  place-self: center stretch;
}

#w-node-_45c7d718-db20-47c2-254f-d305514b4964-9ffa4fdb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45c7d718-db20-47c2-254f-d305514b4965-9ffa4fdb {
  justify-self: start;
}

@media screen and (min-width: 1280px) {
  #w-node-d9b4b9fb-17b5-5c17-e325-5cac706fc24d-5cbd7193 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_864b30ac-902a-1bc5-c775-6b8cda770129-fbbd718d, #w-node-_56a51d81-08ec-2ee7-96f9-e1db6a6b7eb7-fbbd718d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f8995adf-f440-eb1c-b576-c54a6fe6800c-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4aa1e293-2ce7-c7b6-5938-b5dfd439db55-fbbd718d {
    grid-column: 2 / 3;
  }

  #w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b84-fbbd718d, #w-node-_8f986286-6be5-7fda-4809-b0f5bd56244f-fbbd718d, #w-node-_55b430a6-fcdd-50cc-dc29-08e683d81341-fbbd718d, #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b689f-fbbd718d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86d8087c-f402-31b5-d612-f055e8856137-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bffc60b2-ad33-2b9a-4184-6b56bb9d8cc8-fbbd718d {
    grid-column-end: 3;
  }

  #w-node-_1aa5acca-7f49-679e-50b8-388c32a77251-fbbd718d {
    grid-column: 1 / 2;
  }

  #w-node-_1aa5acca-7f49-679e-50b8-388c32a77273-fbbd718d {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b923-c426b91d {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b937-c426b91d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b94a-c426b91d {
    grid-row-end: 3;
    grid-column-end: 2;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b94f-c426b91d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_849e754c-a02b-b240-b303-2bf5e8a0db81-f9270e17, #w-node-a30333d2-032c-03e5-f1b1-a5d31eb7f5e4-f9270e17 {
    grid-column-end: 3;
  }

  #w-node-_93ff6921-d28d-6640-4312-da6eaaed889e-f9270e17 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_17c43587-c790-b4d8-1466-5f40336b9d5b-336b9d43 {
    grid-column: 1 / 2;
  }

  #w-node-_6fe66bf6-22c6-7c4b-e980-c09ffd4740ae-336b9d43 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
  }

  #w-node-d364a0a1-eed2-cc02-8c38-c72be241387a-336b9d43 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-be6e1212-c8c8-b564-9d2f-b92422ca9045-336b9d43 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-fbfab365-c38f-1be6-6e51-32f69bada7c2-bbbd7190 {
    grid-column-end: 2;
  }

  #w-node-fbfab365-c38f-1be6-6e51-32f69bada7ce-bbbd7190, #w-node-_55545b2c-fd2c-f381-a702-fc88f5a9dbe3-69bd7191, #w-node-ed18e026-2679-c3d8-da62-56bb6b9e9b7c-5cbd7193 {
    grid-column-end: 3;
  }

  #w-node-_0afe1988-388e-b5cb-404e-8a553a0bef5a-5cbd7193 {
    grid-column-end: 2;
  }

  #w-node-_0afe1988-388e-b5cb-404e-8a553a0bef68-5cbd7193 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f4914fd8-9661-30e6-850c-9d19244344ea-22bd7199 {
    order: -9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac517f-22bd7199, #static.w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac518a-22bd7199, #w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ada-22bd7199, #CMS.w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ae5-22bd7199, #w-node-e3b5db22-8e43-4f70-f4f3-5544dc291662-22bd7199, #utility.w-node-e3b5db22-8e43-4f70-f4f3-5544dc29166d-22bd7199, #w-node-_209c1835-6d01-8fe3-3168-bf7fb2b47e76-22bd7199, #green.w-node-_895dbeff-1b92-6e2b-13b3-fabc664d8448-22bd7199 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ff11f385-19e7-2610-e10a-74658e225841-bfbd719a, #w-node-ff11f385-19e7-2610-e10a-74658e225846-bfbd719a {
    grid-column-end: 2;
  }

  #w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad0c-bfbd719a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_256f98c7-18a8-c7d5-c690-4bfe1bbed2cb-bdbd719b, #w-node-_256f98c7-18a8-c7d5-c690-4bfe1bbed2d0-bdbd719b {
    grid-column-end: 2;
  }

  #w-node-_7f1f6b0a-25a1-a3f6-ffa0-7d8f329d9398-bdbd719b {
    grid-column: 1 / 3;
  }

  #w-node-_7f1f6b0a-25a1-a3f6-ffa0-7d8f329d93a6-bdbd719b {
    grid-row: 2 / 3;
  }

  #w-node-_1c13acc5-517c-491d-fcdf-0a83558a1ead-bdbd719b {
    align-self: stretch;
  }

  #w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-d3bd719c, #w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-d3bd719c {
    grid-column-end: 2;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-d3bd719c {
    grid-column: span 2 / span 2;
  }

  #w-node-_792cce88-f7a5-d11d-f236-79d89b593844-d3bd719c {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0300c3cf-3371-d677-333b-9e0d43680cce-d3bd719c {
    align-self: stretch;
  }

  #w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-04bd719d, #w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-04bd719d {
    grid-column-end: 2;
  }

  #w-node-_328ccf60-c3cf-2f30-f7b3-b8b9bc95d214-04bd719d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-4dbd719f, #w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-4dbd719f {
    grid-column-end: 2;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-4dbd719f {
    grid-column: span 2 / span 2;
  }

  #w-node-_792cce88-f7a5-d11d-f236-79d89b593844-4dbd719f {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-ffe990b8-a909-b7d8-c60d-227afef824d9-4dbd719f {
    align-self: stretch;
  }

  #w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-6783c518, #w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-6783c518 {
    grid-column-end: 2;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-6783c518 {
    grid-column: span 2 / span 2;
  }

  #w-node-_2a12a16f-2933-4d3b-515c-d2de66a131e6-6783c518 {
    grid-column: 1 / 2;
    grid-row-start: 2;
  }

  #w-node-_3f75dec8-53c9-acc4-d42c-bf059a1bde58-6783c518 {
    align-self: stretch;
  }

  #w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-9be8bffe, #w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-9be8bffe, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-f257f1c4, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-f257f1c4 {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-f257f1c4 {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-f257f1c4 {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-f257f1c4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-8f063acd, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-8f063acd {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-8f063acd {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-8f063acd {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-8f063acd {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-9168a8ba, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-9168a8ba {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-9168a8ba {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-9168a8ba {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-9168a8ba {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-2d44e453, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-2d44e453 {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-2d44e453 {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-2d44e453 {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-2d44e453 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-d92123ab, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-d92123ab {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-d92123ab {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-d92123ab {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-d92123ab {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-82810669, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-82810669 {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-82810669 {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-82810669 {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-82810669 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-8f7242b7, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-8f7242b7 {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-8f7242b7 {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-8f7242b7 {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-8f7242b7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-0c3952e7, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-0c3952e7 {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-0c3952e7 {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-0c3952e7 {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-0c3952e7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-bd3cd3ad, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-bd3cd3ad {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-bd3cd3ad {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-bd3cd3ad {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-bd3cd3ad {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-aa67be40-6194-fb25-9946-fcb8173e0a97-b67fd2be, #w-node-aa67be40-6194-fb25-9946-fcb8173e0a9e-b67fd2be {
    grid-column-end: 2;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-b67fd2be {
    grid-column: 1 / 3;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cfe-b67fd2be {
    place-self: start stretch;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-b67fd2be {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_01b97761-a9cc-43ed-8464-397b3f35f8f2-9ffa4fdb, #w-node-_0b683e9b-74f4-bffd-89ea-d63131dd4bb7-9ffa4fdb {
    grid-column-end: 2;
  }

  #w-node-_54b5b632-c458-3b53-5b9c-4bf5e199118c-9ffa4fdb {
    align-self: stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_864b30ac-902a-1bc5-c775-6b8cda770129-fbbd718d {
    grid-column: span 1 / span 1;
  }

  #w-node-_70edc27a-5d85-b4b7-cc4a-a4055e230b7f-fbbd718d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-fce747e9-421f-c9f3-2122-f738bf568eee-fbbd718d, #w-node-fce747e9-421f-c9f3-2122-f738bf568ef1-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_56a51d81-08ec-2ee7-96f9-e1db6a6b7eb7-fbbd718d {
    grid-column: span 1 / span 1;
  }

  #w-node-_56a51d81-08ec-2ee7-96f9-e1db6a6b7ebe-fbbd718d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-f8995adf-f440-eb1c-b576-c54a6fe6800c-fbbd718d {
    grid-column: span 1 / span 1;
  }

  #w-node-_4aa1e293-2ce7-c7b6-5938-b5dfd439db55-fbbd718d {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
  }

  #w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b79-fbbd718d {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b84-fbbd718d {
    grid-column-end: 3;
  }

  #w-node-_8f986286-6be5-7fda-4809-b0f5bd562444-fbbd718d {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_8f986286-6be5-7fda-4809-b0f5bd56244f-fbbd718d {
    grid-column-end: 3;
  }

  #w-node-_55b430a6-fcdd-50cc-dc29-08e683d81336-fbbd718d {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_55b430a6-fcdd-50cc-dc29-08e683d81341-fbbd718d {
    grid-column-end: 3;
  }

  #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b6893-fbbd718d {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b689f-fbbd718d {
    grid-column-end: 3;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b923-c426b91d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b94f-c426b91d {
    grid-row: 5 / 6;
  }

  #w-node-_849e754c-a02b-b240-b303-2bf5e8a0db81-f9270e17, #w-node-a30333d2-032c-03e5-f1b1-a5d31eb7f5e4-f9270e17 {
    grid-column-end: 4;
  }

  #w-node-_93ff6921-d28d-6640-4312-da6eaaed889e-f9270e17 {
    grid-column: span 3 / span 3;
  }

  #w-node-fbfab365-c38f-1be6-6e51-32f69bada7ce-bbbd7190, #w-node-_55545b2c-fd2c-f381-a702-fc88f5a9dbe3-69bd7191, #w-node-_55545b2c-fd2c-f381-a702-fc88f5a9dbeb-69bd7191, #w-node-ed18e026-2679-c3d8-da62-56bb6b9e9b7c-5cbd7193, #w-node-ed18e026-2679-c3d8-da62-56bb6b9e9b82-5cbd7193 {
    grid-column-end: 2;
  }

  #w-node-b3205229-c2c3-f431-bb7a-14128002a3fd-22bd7199 {
    grid-row-start: 3;
  }

  #w-node-f4914fd8-9661-30e6-850c-9d19244344ea-22bd7199 {
    grid-column: span 1 / span 1;
  }

  #w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac517f-22bd7199 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #static.w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac518a-22bd7199 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-dfe8ed20-f70d-2ea6-9e0f-fc9a91ac518b-22bd7199, #w-node-_353ee41b-0568-f449-8721-15e5500de963-22bd7199, #w-node-_12102cb7-b253-85df-5ce8-de413b78032d-22bd7199 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ada-22bd7199 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #CMS.w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ae5-22bd7199 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14ae6-22bd7199, #w-node-_9ba435a0-b481-4e63-0a19-fa9c7ec14af3-22bd7199 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-e3b5db22-8e43-4f70-f4f3-5544dc291662-22bd7199 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #utility.w-node-e3b5db22-8e43-4f70-f4f3-5544dc29166d-22bd7199 {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-e3b5db22-8e43-4f70-f4f3-5544dc29166e-22bd7199, #w-node-e3b5db22-8e43-4f70-f4f3-5544dc29167b-22bd7199, #w-node-e3b5db22-8e43-4f70-f4f3-5544dc291688-22bd7199 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_209c1835-6d01-8fe3-3168-bf7fb2b47e76-22bd7199, #green.w-node-_895dbeff-1b92-6e2b-13b3-fabc664d8448-22bd7199 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_895dbeff-1b92-6e2b-13b3-fabc664d8449-22bd7199 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_01c4e3cf-0ca8-0926-bf92-4bf4daeb8ca0-bfbd719a {
    grid-column: span 1 / span 1;
  }

  #w-node-_9a966d75-8ba6-8c66-a053-3fb940aae614-bfbd719a {
    justify-self: center;
  }

  #w-node-_7f1f6b0a-25a1-a3f6-ffa0-7d8f329d9398-bdbd719b {
    grid-column-end: 2;
  }

  #w-node-dab5903c-a7e0-3d67-1fc1-3f4bc831cca3-bdbd719b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-d3bd719c {
    grid-column: span 1 / span 1;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7478-d3bd719c, #w-node-_30697c31-5cdb-6fcf-5548-b4be320b747b-d3bd719c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_792cce88-f7a5-d11d-f236-79d89b593844-d3bd719c {
    grid-column-end: 2;
  }

  #w-node-_73ddc849-29e3-f33a-cfa8-9f779aa8fd33-d3bd719c {
    grid-column: 1 / 2;
  }

  #w-node-_328ccf60-c3cf-2f30-f7b3-b8b9bc95d214-04bd719d {
    grid-column: span 1 / span 1;
  }

  #w-node-_328ccf60-c3cf-2f30-f7b3-b8b9bc95d220-04bd719d, #w-node-_328ccf60-c3cf-2f30-f7b3-b8b9bc95d223-04bd719d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-4dbd719f {
    grid-column: span 1 / span 1;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7478-4dbd719f, #w-node-_30697c31-5cdb-6fcf-5548-b4be320b747b-4dbd719f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_792cce88-f7a5-d11d-f236-79d89b593844-4dbd719f {
    grid-column-end: 2;
  }

  #w-node-_73ddc849-29e3-f33a-cfa8-9f779aa8fd33-4dbd719f {
    grid-column: 1 / 2;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7475-6783c518 {
    grid-column: span 1 / span 1;
  }

  #w-node-_30697c31-5cdb-6fcf-5548-b4be320b7478-6783c518, #w-node-_30697c31-5cdb-6fcf-5548-b4be320b747b-6783c518 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-f257f1c4 {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-f257f1c4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-8f063acd {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-8f063acd {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-9168a8ba {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-9168a8ba {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-2d44e453 {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-2d44e453 {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-d92123ab {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-d92123ab {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-82810669 {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-82810669 {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-8f7242b7 {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-8f7242b7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-0c3952e7 {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-0c3952e7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-bd3cd3ad {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-bd3cd3ad {
    grid-column: span 1 / span 1;
  }

  #w-node-_758100bb-d39f-4ebb-c2b3-5927f804bc05-b67fd2be {
    grid-column-end: 2;
  }

  #w-node-_65615104-6bb6-b25f-8da4-7c88af773cff-b67fd2be {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b76-fbbd718d, #w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b79-fbbd718d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_4f60ef0f-3908-f7a3-dbd4-1c535b280b84-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8f986286-6be5-7fda-4809-b0f5bd562441-fbbd718d, #w-node-_8f986286-6be5-7fda-4809-b0f5bd562444-fbbd718d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_8f986286-6be5-7fda-4809-b0f5bd56244f-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_55b430a6-fcdd-50cc-dc29-08e683d81333-fbbd718d, #w-node-_55b430a6-fcdd-50cc-dc29-08e683d81336-fbbd718d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_55b430a6-fcdd-50cc-dc29-08e683d81341-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b6890-fbbd718d, #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b6893-fbbd718d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_830ed10a-4e3a-18a3-71fe-6c61591b689f-fbbd718d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1aa5acca-7f49-679e-50b8-388c32a77251-fbbd718d {
    grid-column-end: 2;
  }

  #w-node-c6a86f47-145d-b8c8-1c44-2b43c426b923-c426b91d {
    place-self: center start;
  }

  #w-node-_01c4e3cf-0ca8-0926-bf92-4bf4daeb8ca0-bfbd719a, #w-node-b22aeac6-9557-5b9b-37e1-4e65fd78ad0c-bfbd719a {
    grid-column: span 2 / span 2;
  }
}


@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Regular.woff2') format('woff2'), url('../fonts/EudoxusSans-Regular.woff') format('woff'), url('../fonts/EudoxusSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-ExtraLight.woff2') format('woff2'), url('../fonts/EudoxusSans-ExtraLight.woff') format('woff'), url('../fonts/EudoxusSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-ExtraBold.woff2') format('woff2'), url('../fonts/EudoxusSans-ExtraBold.woff') format('woff'), url('../fonts/EudoxusSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Bold.woff2') format('woff2'), url('../fonts/EudoxusSans-Bold.woff') format('woff'), url('../fonts/EudoxusSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Light.woff2') format('woff2'), url('../fonts/EudoxusSans-Light.woff') format('woff'), url('../fonts/EudoxusSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eudoxussans';
  src: url('../fonts/EudoxusSans-Medium.woff2') format('woff2'), url('../fonts/EudoxusSans-Medium.woff') format('woff'), url('../fonts/EudoxusSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}