:root {
  --black: #1d1d1d;
  --600: #868686;
  --red: #d72027;
  --blue: #002e6e;
  --dark-slate-blue: #034694;
  --cream-white: #f3f3f3;
  --400: #dadada;
  --700: #333030;
  --medium-red: #741817;
  --500: #a8a8a8;
  --300: #f0f0f0;
  --dark-red: #3f1110;
  --white: white;
  --black-2: #1d1d1da3;
  --dark-slate-blue-2: #034694b3;
}

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

body {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 800;
  line-height: 62px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
}

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

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

p {
  color: var(--600);
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 30px;
}

a {
  color: var(--red);
  font-weight: 500;
  text-decoration: underline;
}

li {
  color: var(--600);
  font-size: 16px;
  line-height: 30px;
}

.text-size-1-5rem {
  font-size: 1.5rem;
  line-height: 1.2;
}

.button-row-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: center start;
  display: grid;
}

.button-row-grid.tablet-1-col {
  grid-template-rows: auto auto;
}

.button-row-grid.landscape-1-col.hide, .button-row-grid.mobile-1-col.hide {
  display: none;
}

.heading-4 {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.heading-3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.heading-3.no-margin {
  color: var(--dark-slate-blue);
  line-height: 32px;
}

.max-width-20 {
  width: 100%;
  max-width: 20%;
}

.tab-link-style-empty {
  opacity: .5;
  color: var(--black);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: all .3s;
  display: inline-block;
}

.tab-link-style-empty:hover {
  opacity: 1;
}

.tab-link-style-empty.w--current {
  border-bottom: 2px solid var(--red);
  opacity: 1;
  color: var(--red);
  background-color: #0000;
  font-weight: 500;
}

.background-color-black {
  background-color: var(--blue);
  color: #f5f5f5;
  background-image: linear-gradient(#002e6ecc, #002e6ecc), url('../images/closeup-shot-water-flowing-from-basin-mixer-tap-bathroom.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.heading-large {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.padding-medium {
  padding: 2rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.padding-huge {
  padding: 6rem;
}

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

.icon-small {
  width: 2rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.padding-xlarge {
  padding: 4rem;
}

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.text-weight-black {
  font-weight: 900;
}

.text-color-white-smoke {
  color: var(--cream-white);
}

.form-input {
  color: #272f39;
  background-color: #fff;
  border: 1.5px solid #eff2f6;
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 16px;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:hover {
  border-color: #aa1f1e33;
}

.form-input:focus, .form-input:focus-visible, .form-input[data-wf-focus-visible] {
  border-color: var(--red);
}

.form-input::placeholder {
  color: #0009;
  text-align: left;
}

.form-input.text-area {
  border-radius: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.select {
  background-color: #fff;
}

.form-input.newsletter {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

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

.padding-xhuge {
  padding: 7rem;
}

.icon-xsmall {
  width: 1.5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.tabs-menu {
  border-bottom: 1px solid #00000026;
  display: flex;
  overflow: auto;
}

.tabs-menu.no-scrollbar {
  color: #170f49;
  padding-right: 24px;
}

.padding-tiny {
  padding: .25rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-huge {
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  height: 100%;
  padding: 5.3rem 0 0;
  display: flex;
}

.padding-top.padding-xhuge, .padding-top.padding-custom-1, .padding-top.padding-xlarge, .padding-top.padding-xxhuge, .padding-top.padding-xxlarge, .padding-top.padding-xsmall, .padding-top.padding-large, .padding-top.padding-small, .padding-top.padding-xxsmall, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-0 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.margin-xhuge {
  margin: 7rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxlarge {
  padding: 5rem;
}

.text-block {
  color: var(--black);
}

.image-wrapper-3-2 {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
}

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

.margin-0 {
  margin: 0;
}

.image-wrapper-16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.icon-xxsmall {
  width: 1rem;
}

.max-width-80 {
  width: 100%;
  max-width: 80%;
}

.padding-bottom, .padding-bottom.padding-huge, .padding-bottom.padding-xxhuge, .padding-bottom.padding-xsmall, .padding-bottom.padding-0, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-xlarge, .padding-bottom.padding-xhuge, .padding-bottom.padding-xxlarge, .padding-bottom.padding-large, .padding-bottom.padding-xxsmall, .padding-bottom.padding-custom-2, .padding-bottom.padding-small {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.container-90 {
  width: 90%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.container-90.services {
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.heading-2 {
  color: var(--blue);
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
}

.margin-xxhuge {
  margin: 10rem;
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.styleguide-grid-colours {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.icon-medium {
  width: 3rem;
}

.cloneable-header {
  background-color: #fff;
  border-radius: 18px;
  margin-bottom: 44px;
  padding: 24px 32px;
  box-shadow: 0 3px 14px #4a3aff08, 0 -2px 4px #14142b05, 0 12px 24px #14142b03;
}

.cloneable-header.position-sticky {
  position: sticky;
}

.cloneable-header.position-sticky.item-1 {
  z-index: 3;
  margin-bottom: 0;
  top: 35px;
}

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

.subtitle {
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.subtitle.small {
  color: var(--red);
  font-size: .75rem;
  line-height: 18px;
}

.subtitle.black {
  color: var(--black);
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.margin-left, .margin-left.margin-custom-3, .margin-left.margin-xsmall {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-left.margin-medium {
  margin: 0 0 0 2rem;
}

.margin-left.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-left.margin-small {
  margin: 0 0 0 1.5rem;
}

.margin-left.margin-large, .margin-left.margin-xlarge, .margin-left.margin-xhuge, .margin-left.margin-xxlarge, .margin-left.margin-xxhuge, .margin-left.margin-huge, .margin-left.margin-0, .margin-left.margin-xxsmall {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.stylesystem-color-sample {
  border: 1px solid #d9dbe9;
  border-radius: 10px;
  padding: 12rem 1.5rem 3.25rem 3rem;
}

.stylesystem-color-sample._200 {
  background-color: var(--cream-white);
}

.stylesystem-color-sample._700 {
  background-color: var(--700);
}

.stylesystem-color-sample.black {
  background-color: var(--black);
}

.stylesystem-color-sample.secondary-color {
  background-color: var(--medium-red);
}

.stylesystem-color-sample.white {
  background-color: #fff;
}

.stylesystem-color-sample._500 {
  background-color: var(--500);
}

.stylesystem-color-sample.primary-color {
  background-color: var(--red);
}

.stylesystem-color-sample._300 {
  background-color: var(--300);
}

.stylesystem-color-sample._400 {
  background-color: var(--400);
}

.stylesystem-color-sample._600 {
  background-color: var(--600);
}

.stylesystem-color-sample.tertiary-color {
  background-color: var(--dark-red);
}

.button-secondary {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  background-color: #0000;
  border-radius: 0;
  margin-top: 0;
  padding: 24px 56px;
  font-size: 18px;
  font-weight: 500;
  transition: box-shadow .2s, transform .2s;
}

.button-secondary:hover {
  transform: translate(0, -2px);
  box-shadow: 0 2px 30px #0000001a;
}

.button-secondary.white {
  color: #fff;
  border-color: #fff;
  transition: background-color .2s, transform .2s;
}

.button-secondary.white:hover {
  color: #272f39;
  background-color: #fff;
  transform: translate(0, -2px);
}

.button-secondary.button-small {
  padding: 15px 30px;
  font-size: 16px;
  line-height: 18px;
}

.padding-right, .padding-right.padding-tiny, .padding-right.padding-large, .padding-right.padding-xhuge, .padding-right.padding-xsmall, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-xxsmall, .padding-right.padding-custom-1, .padding-right.padding-medium, .padding-right.padding-xxhuge, .padding-right.padding-xlarge, .padding-right.padding-small, .padding-right.padding-xxlarge {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.form-checkbox-icon {
  cursor: pointer;
  border: 1px solid #a0acbd;
  border-radius: 5px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #bf0000;
  background-image: url('../images/Kitchn-Webflow-Template-Restaurant---icon-check.svg');
  background-size: cover;
  background-attachment: scroll;
  border-width: 1px;
  border-color: #bf0000;
  padding: 3px;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #ffcece;
}

.text-weight-medium {
  font-weight: 500;
}

.paragraph {
  color: var(--600);
  font-size: 18px;
  line-height: 30px;
  text-decoration: none;
}

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

.margin-tiny {
  margin: .25rem;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form-grid-1-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.styleguide-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-style-all-caps {
  text-transform: uppercase;
}

.styleguide-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.text-size-0-5rem {
  font-size: .5rem;
  line-height: 1.2;
}

.display-horizontal-space-around {
  justify-content: space-around;
  display: flex;
}

.display-horizontal-stretch {
  display: flex;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-large {
  margin: 3rem;
}

.styleguide-subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: static;
  top: 32px;
}

.display-vertical-bottom {
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

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

.button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--red);
  color: #fff;
  text-align: center;
  border: 1px #000;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 56px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color .2s, transform .2s;
  display: inline-block;
}

.button:hover {
  color: #fff;
  background-color: #bf0000e6;
  transform: translate(0, -2px);
}

.button.black {
  background-color: var(--dark-slate-blue);
}

.button.black:hover {
  background-color: #1a1e24;
}

.button.button-small {
  padding: 15px 30px;
  font-size: 16px;
  line-height: 18px;
}

.button.button-small:hover {
  background-color: #aa1f1ee6;
}

.button.white {
  color: #272f39;
  background-color: #fff;
  transition: background-color .2s, transform .2s;
}

.button.white:hover {
  background-color: #d9e0e9;
  transform: translate(0, -2px);
}

.button.getquote {
  background-color: #d72027e6;
  height: 45px;
  padding: 14px 24px 34px;
}

.button.getquote:hover {
  background-color: #d72027;
}

.button-tertiary {
  color: var(--red);
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button-tertiary.invert-colors {
  color: #fff;
}

.form-radio-label {
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 1.2;
}

.max-width-30 {
  width: 100%;
  max-width: 30%;
}

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

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

.icon-large {
  width: 5rem;
}

.heading-5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.padding-large {
  padding: 3rem;
}

.background-color-200 {
  background-color: #f7f8fb;
}

.max-width-50 {
  width: 100%;
  max-width: 50%;
}

.display-vertical-right {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.display-vertical-stretch {
  flex-direction: column;
  display: flex;
}

.text-weight-bold {
  font-weight: 700;
}

.max-width-90 {
  width: 100%;
  max-width: 90%;
}

.text-style-muted {
  opacity: .6;
  color: #514f6e;
}

.image-wrapper-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.tab-pane-tab-1 {
  color: #170f49;
}

.text-weight-light {
  font-weight: 300;
}

.styleguide-icons-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

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

.display-vertical-center.text-align-center {
  height: 100%;
}

.heading-small {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.max-width-55 {
  width: 100%;
  max-width: 55%;
}

.text-style-italic {
  font-style: italic;
}

.form-field-wrapper {
  position: relative;
}

.padding-xxsmall {
  padding: .5rem;
}

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

.display-horizontal-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.display-horizontal-right.gap-10px {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.margin-top, .margin-top.margin-xxhuge, .margin-top.margin-xxsmall, .margin-top.margin-tiny, .margin-top.margin-xxlarge, .margin-top.margin-large, .margin-top.margin-xhuge, .margin-top.margin-custom-1, .margin-top.margin-xlarge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  margin-top: 2rem;
}

.margin-top.margin-small {
  margin: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}

.margin-top.margin-0, .margin-top.margin-xsmall, .margin-top.margin-huge, .margin-top.margin-custom-2 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

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

.heading-1 {
  font-size: 55px;
  font-weight: 800;
  line-height: 62px;
}

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

.field-label {
  margin-bottom: .5rem;
  padding-left: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.form-radio-icon {
  cursor: pointer;
  border: 1px solid #a0acbd;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon:hover {
  border-width: 2px;
  border-color: #ffcece;
}

.form-radio-icon:active {
  border-width: 6px;
  border-color: #bf0000;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #bf0000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-width: 6px;
  border-color: #bf0000;
  margin-top: 0;
}

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

.margin-xxlarge {
  margin: 5rem;
}

.max-width-40 {
  width: 100%;
  max-width: 40%;
}

.margin-right, .margin-right.margin-0, .margin-right.margin-xsmall, .margin-right.margin-large, .margin-right.margin-xxlarge, .margin-right.margin-xxsmall {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-right.margin-small {
  margin: 0 1.5rem 0 0;
}

.margin-right.margin-tiny, .margin-right.margin-huge, .margin-right.margin-custom-1, .margin-right.margin-xxhuge, .margin-right.margin-xhuge {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-right.margin-medium {
  margin: 0 2rem 0 0;
}

.margin-right.margin-xlarge {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.display-vertical-space-around {
  flex-direction: column;
  justify-content: space-around;
  display: flex;
}

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

.heading-medium {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.max-width-60 {
  width: 100%;
  max-width: 60%;
}

.heading-xlarge {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.icon-xlarge {
  width: 6.5rem;
}

.text-weight-normal {
  font-weight: 400;
}

.text-size-1-25rem {
  font-size: 1.25rem;
  line-height: 1.2;
}

.display-horizontal-bottom {
  align-items: flex-end;
  display: flex;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.stylesystem-class-label {
  cursor: context-menu;
  background-color: #83747426;
  border-radius: 5px;
  padding-left: .5rem;
  padding-right: .5rem;
  display: inline-block;
}

.text-color-grey {
  color: var(--500);
}

.max-width-45 {
  width: 100%;
  max-width: 45%;
}

.margin-bottom, .margin-bottom.margin-xhuge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  margin: 0 0 2rem;
}

.margin-bottom.margin-xsmall, .margin-bottom.margin-tiny, .margin-bottom.margin-xxhuge, .margin-bottom.margin-xxlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  margin-bottom: 1.5rem;
}

.margin-bottom.margin-large {
  margin: 0 0 1.3rem;
}

.margin-bottom.margin-custom-3, .margin-bottom.margin-0, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-xlarge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-left, .padding-left.padding-tiny, .padding-left.padding-small, .padding-left.padding-0, .padding-left.padding-large, .padding-left.padding-xxhuge, .padding-left.padding-xhuge, .padding-left.padding-medium, .padding-left.padding-xlarge, .padding-left.padding-huge, .padding-left.padding-xxsmall, .padding-left.padding-xsmall, .padding-left.padding-xxlarge, .padding-left.padding-custom-1 {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.heading-6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.form-checkbox-label {
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 1.2;
}

.margin-all-small {
  margin: 1.5rem;
}

.background-color-lightgrey {
  background-color: var(--cream-white);
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-horizontal, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-tiny, .margin-horizontal.margin-large, .margin-horizontal.margin-0, .margin-horizontal.margin-custom-3, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-xxsmall {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-horizontal.margin-medium {
  margin: 0 2rem;
}

.margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-horizontal.margin-small {
  margin: 0 1.5rem;
}

.margin-horizontal.margin-huge {
  margin-top: 0;
  margin-bottom: 0;
}

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

.text-size-0-75rem {
  font-size: .75rem;
  line-height: 1.2;
}

.heading-xsmall {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.block-quote {
  color: #272f39;
  font-size: 1rem;
  line-height: 1.5;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.text-color-dark-grey {
  color: var(--600);
}

.background-color-300 {
  background-color: var(--300);
}

.padding-horizontal, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-huge {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-horizontal.padding-xlarge {
  padding: 0 4rem;
}

.padding-horizontal.padding-0, .padding-horizontal.padding-tiny, .padding-horizontal.padding-large, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-small, .padding-horizontal.padding-custom-3, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-medium {
  padding-top: 0;
  padding-bottom: 0;
}

.display-horizontal-space-btw {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.display-horizontal-space-btw.align-top {
  align-items: flex-start;
}

.display-horizontal-space-btw.gap-1rem {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.margin-vertical, .margin-vertical.margin-xlarge, .margin-vertical.margin-xsmall {
  margin-left: 0;
  margin-right: 0;
}

.margin-vertical.margin-medium {
  margin: 2rem 0;
}

.margin-vertical.margin-large, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxsmall, .margin-vertical.margin-custom-1 {
  margin-left: 0;
  margin-right: 0;
}

.margin-vertical.margin-small {
  margin: 1.5rem 0;
}

.margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xhuge, .margin-vertical.margin-xxlarge {
  margin-left: 0;
  margin-right: 0;
}

.max-width-70 {
  width: 100%;
  max-width: 70%;
}

.stylesystem-images-layout {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.display-horizontal-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.display-horizontal-left.gap-1rem {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.display-horizontal-left.gap-5px {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.button-tertiary-icon {
  width: 1rem;
  height: 1rem;
  margin-left: .5rem;
}

.text-style-no-wrap {
  white-space: nowrap;
}

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

.text-size-1-75 {
  font-size: 1.75rem;
  line-height: 1.2;
}

.text-color-white {
  color: var(--white);
  font-size: 16px;
  line-height: 26px;
}

.text-color-white.bigger-text {
  font-size: 30px;
}

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

.stylesystem-spacing-wrapper {
  color: #170f49;
  background-color: #f4f4f4;
}

.padding-vertical, .padding-vertical.padding-small, .padding-vertical.padding-xxsmall, .padding-vertical.padding-xsmall, .padding-vertical.padding-tiny, .padding-vertical.padding-0 {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-large {
  flex-direction: column;
  align-items: center;
  padding: 2.6rem 0 3.6rem;
  display: flex;
}

.padding-vertical.padding-large.footer-padding {
  padding-top: 2.6rem;
  padding-bottom: .1rem;
}

.padding-vertical.padding-huge {
  border: 1px none var(--blue);
  background-color: var(--white);
  padding: 5.4rem 0 2.5rem;
}

.padding-vertical.padding-huge.still-huge-mobile {
  border-style: none;
  align-items: center;
  display: flex;
}

.padding-vertical.padding-huge.bigger-padding {
  padding-top: 11.5rem;
}

.padding-vertical.padding-medium, .padding-vertical.padding-xhuge, .padding-vertical.padding-xxhuge {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-xlarge {
  padding: 4rem 0;
  display: block;
}

.padding-vertical.padding-xxlarge, .padding-vertical.padding-custom-3 {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.other-padding {
  background-color: #0000000a;
  padding-top: 55px;
  padding-bottom: 55px;
}

.padding-xxhuge {
  padding: 10rem;
}

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

.heading-xxlarge {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section {
  background-image: linear-gradient(#003175b0, #003175b0), url('../images/Untitled-design-2.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: auto;
  padding-top: 113px;
}

.hero-section.services {
  height: 70vh;
}

.hero-section.services.services-main {
  background-image: linear-gradient(to bottom, null, null), url('../images/Untitled-design-2.png');
  background-position: 0 0, 50%;
  justify-content: flex-start;
  align-items: center;
  height: 60vh;
  padding-top: 118px;
  display: flex;
}

.hero-section.galley {
  height: 60vh;
  padding-top: 114px;
  display: flex;
}

.hero-section.home {
  background-image: linear-gradient(#003175b0, #003175b0);
  background-position: 0 0;
  height: 80vh;
}

.image-hero-style {
  background-image: linear-gradient(#ffffff26, #ffffff26);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 0;
  display: flex;
  position: relative;
}

.heading-hero {
  color: #fffffff7;
  margin-top: 1px;
  margin-bottom: 1px;
  font-size: 55px;
  font-weight: 700;
  line-height: 95px;
}

.heading-hero.small {
  font-size: 45px;
  font-style: italic;
  line-height: 60px;
}

.heading-hero.smaller {
  color: #fffc;
  margin-bottom: 16px;
  font-size: 45px;
  line-height: 55px;
}

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

.background-color-secondary {
  background-color: var(--red);
  color: var(--white);
  background-image: linear-gradient(#d72027b3, #d72027b3), url('../images/Preventative-Maintenance-2.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.background-color-primary {
  background-color: var(--red);
  color: var(--white);
  background-image: linear-gradient(#002e6ecc, #002e6ecc), url('../images/modern-bathroom-with-toilet-bathtub.jpg');
  background-position: 0 0, 50% 80%;
  background-size: auto, cover;
}

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

.grid-4x1.left-column-1-75fr {
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
}

.no-margin {
  color: var(--dark-slate-blue);
  margin: 0;
}

.no-margin.white-text {
  color: var(--white);
}

.no-margin.white-text.more-padding-down {
  margin-bottom: 20px;
}

.no-margin.text-color-white {
  color: var(--white);
  font-size: 30px;
}

.position-absolute {
  position: absolute;
}

.position-absolute.item-1 {
  color: var(--blue);
  min-width: 25%;
  max-width: 25%;
  inset: auto auto 0% 0%;
  transform: rotate(0);
}

.position-absolute.item-2 {
  object-fit: cover;
  min-width: 75%;
  max-width: 75%;
  max-height: none;
  inset: 0% 0% auto auto;
}

.position-absolute.item-3 {
  inset: 0% auto auto 0%;
}

.position-absolute.item-4 {
  background-color: var(--red);
  width: 100%;
  min-width: 100%;
  height: 3px;
  margin-top: auto;
  margin-bottom: auto;
  inset: 0%;
}

.position-absolute.item-5 {
  inset: 0% auto auto 0%;
}

.position-absolute.item-6 {
  transform-style: preserve-3d;
  inset: auto 0% 0% auto;
  transform: rotateX(180deg)rotateY(0)rotateZ(0)rotateX(0)rotateY(180deg)rotateZ(0);
}

.position-absolute.item-7 {
  inset: 0% auto auto 0%;
}

.position-absolute.item-8 {
  transform-style: preserve-3d;
  inset: auto 0% 0% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0)rotateX(180deg)rotateY(0)rotateZ(0);
}

.position-absolute.item-9 {
  transform-style: preserve-3d;
  inset: auto 0% 0% auto;
  transform: rotateX(180deg)rotateY(0)rotateZ(0)rotateX(0)rotateY(180deg)rotateZ(0);
}

.position-absolute.item-10 {
  inset: 0% auto auto 0%;
}

.position-absolute.item-13 {
  transform-style: preserve-3d;
  inset: auto 0% 0% auto;
  transform: rotateX(180deg)rotateY(180deg)rotateZ(0);
}

.position-relative {
  position: relative;
}

.position-relative.z-index-10 {
  z-index: 10;
}

.position-relative.service-image {
  max-width: 50%;
  max-height: 20%;
}

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

.grid-2x1.gap-50px {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.grid-2x1.gap-50px.align-items-center {
  align-items: center;
}

.grid-2x1.left-column-1-5fr {
  grid-template-columns: 1.5fr 1fr;
}

.grid-2x1.left-column-1-25fr {
  grid-template-columns: 1.25fr 1fr;
}

.grid-2x1.align-items-stretch {
  align-items: stretch;
}

.max-height-600px {
  max-height: 600px;
}

.max-height-600px.min-width-100 {
  min-width: 100%;
}

.fit-cover {
  object-fit: cover;
}

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

.grid-2x2.gap-50px {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.service-card {
  background-color: var(--cream-white);
  padding: 2rem;
}

.max-height-300px {
  max-height: 300px;
}

.max-height-300px.min-width-100 {
  min-width: 100%;
}

.subtitle-line {
  background-color: var(--red);
  width: 3rem;
  height: 2px;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

.feature-section.padding-y-5 {
  background-color: #0000000f;
  padding-top: 16px;
  padding-bottom: 50px;
}

.min-height-100 {
  width: 300px;
  min-height: 100%;
}

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

.grid-4x0.align-items-center {
  place-items: center;
}

.process-style {
  background-color: var(--red);
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
  display: flex;
}

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

.grid-4x2.align-items-stretch {
  align-items: stretch;
}

.background-color-cream-white {
  background-color: #0000;
}

.slider-testimonials {
  background-color: #0000;
  height: auto;
  padding-bottom: 5rem;
}

.hidden {
  display: none;
}

.slide-testimonials {
  border: 1px solid var(--300);
  background-color: var(--white);
  width: 100%;
  max-width: 45%;
  margin-right: 2rem;
  padding: 0;
  box-shadow: 0 2px 30px #3330300d;
}

.customer-picture-wrapper {
  background-image: url('../images/REBUILD-Webflow-Construction-Template---customer-2.jpeg');
  background-position: 50%;
  background-size: cover;
  border-radius: 100%;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  min-height: 4rem;
}

.customer-picture-wrapper._2 {
  background-image: url('../images/REBUILD-Webflow-Construction-Template---customer-1.jpeg');
}

.customer-picture-wrapper._3 {
  background-image: url('../images/REBUILD-Webflow-Construction-Template---customer-3.jpeg');
}

.mask {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 50px;
}

.right-arrow {
  background-color: var(--red);
  border-radius: 100px;
  width: 4rem;
  height: 4rem;
  font-size: 20px;
  inset: auto 0% 0% auto;
}

.left-arrow {
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 100px;
  width: 4rem;
  height: 4rem;
  font-size: 20px;
  inset: auto 5rem 0% auto;
}

.bullet-separator {
  background-color: var(--red);
  border-radius: 100px;
  width: .5rem;
  height: .5rem;
}

.max-width-25 {
  width: 100%;
  max-width: 25%;
}

.max-width-25.position-sticky {
  position: sticky;
  top: 0;
}

.max-width-25.position-sticky.sticky-top---110px {
  top: 110px;
}

.sticky-cta-card {
  background-color: var(--cream-white);
  color: var(--black);
  padding: 2rem;
}

.min-max-height-200px {
  min-height: 200px;
  max-height: 200px;
}

.min-max-height-200px.min-width-100 {
  min-width: 100%;
}

.faq-divider {
  border-style: none none solid;
  border-width: .5px .5px 1px;
  border-color: var(--300) var(--300) #b9b9b9;
  min-width: 100%;
  margin-bottom: 10px;
}

.navbar {
  z-index: 100;
  background-color: var(--white);
  border: 1px #000;
  min-width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: fixed;
}

.nav-link {
  color: var(--dark-slate-blue);
  text-align: center;
  font-size: 16px;
  line-height: 18px;
}

.nav-link.w--current {
  color: var(--red);
  text-align: center;
  line-height: 20px;
}

.nav-link.emergency {
  background-image: url('../images/phone-icon.png'), linear-gradient(to bottom, var(--dark-slate-blue), var(--dark-slate-blue));
  color: var(--300);
  text-align: center;
  background-position: 7%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 25px, auto;
  flex-direction: column;
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  width: 160px;
  height: 49px;
  padding: 0 13px 4px 40px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
  display: flex;
}

.nav-link.emergency:hover {
  margin-bottom: 4px;
}

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

.grid-2x3 {
  grid-template-rows: auto auto auto;
}

.grid-2x3.gap-30px {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.max-height-500px {
  max-height: 500px;
}

.max-height-500px.min-width-100 {
  min-width: 100%;
}

.max-height-500px.min-width-100.fit-cover.fit-top {
  object-position: 50% 100%;
}

.value-card-style {
  border: 1px solid var(--300);
  background-color: var(--white);
  padding: 1.5rem;
}

.footer-section {
  border-top: .5px solid var(--dark-slate-blue);
  background-color: #fff;
}

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

.grid-6x1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  justify-items: end;
}

.grid-6x1.align-items-left {
  justify-items: start;
}

.divider-footer {
  background-color: var(--blue);
  color: var(--blue);
  min-width: 100%;
  height: 1px;
}

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

.link-block---services {
  color: var(--black);
  text-decoration: none;
}

.text-link---footer {
  color: var(--black);
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
}

.display-vertical-center---tablet {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.nav-menu {
  display: flex;
}

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

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

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

.icon-1x1-xmedium {
  width: 4rem;
  height: 4rem;
}

.grid-contact-form {
  grid-template-rows: auto auto auto auto;
}

.form-style-wrapper {
  background-color: var(--cream-white);
  flex-direction: column;
  align-self: center;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  padding: 2rem 2.4rem;
  display: flex;
  overflow: scroll;
}

.projects-section {
  display: block;
}

.projects-section.hidden {
  display: flex;
}

.project-card {
  background-color: var(--white);
  padding: 2rem;
  box-shadow: 0 2px 30px #1d1d1d1a;
}

.image-service-style {
  object-fit: cover;
  min-width: 100%;
  min-height: auto;
  max-height: none;
}

.grid-icons-licenses {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

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

.button-absolute {
  background-color: var(--red);
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s, background-color .2s;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.button-absolute:hover {
  background-color: #aa1f1ee6;
  transform: translate(0, -2px);
}

.success-message {
  background-color: var(--white);
  color: var(--red);
  font-weight: 500;
  box-shadow: 0 2px 30px #1d1d1d1a;
}

.error-message {
  background-color: var(--red);
  color: var(--white);
  font-weight: 500;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: auto;
  max-height: none;
  padding-top: 12rem;
  padding-bottom: 6rem;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 50%;
  display: flex;
}

.icon-1x1-huge {
  width: 10rem;
  height: 10rem;
}

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

.image {
  width: 200px;
}

.heading-7, .text-span {
  color: var(--blue);
}

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

.modal {
  z-index: 100;
  color: #000;
  background-color: #000000b3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: auto;
  height: auto;
  padding: 22px 0 32px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.modal-close {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 18px;
}

.lightbox-link-gallery {
  width: 100%;
  height: 100%;
}

.image-hover {
  background-color: #002e6e26;
  position: absolute;
  inset: 0%;
}

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

.base-container {
  flex-direction: column;
  align-items: center;
  max-width: none;
  height: auto;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: scroll;
}

.image-callery {
  border-radius: 10px;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.image-callery.height {
  height: 100%;
}

.section {
  padding: 80px 51px;
}

.section.none-padding {
  width: 100vw;
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 0;
}

.gallery-grid-home-2 {
  grid-template: "Area Area Area Area"
                 "Area Area Area Area"
                 ". . . ."
                 / 1fr 1fr 1fr 1fr;
  align-content: stretch;
  width: 100%;
}

.image-div {
  width: 50%;
}

.image-2 {
  max-width: 5%;
}

.heading-8 {
  color: var(--blue);
}

.heading-9 {
  color: var(--blue);
  font-size: 30px;
  line-height: 38px;
}

.heading-10, .heading-11 {
  color: var(--blue);
}

.heading-11.red, .heading-12 {
  color: var(--red);
}

.heading-13, .heading-14, .heading-15 {
  color: var(--blue);
}

.project-div {
  perspective: 1000px;
  background-color: #fff;
  border: 1px #e4e8ee;
  border-radius: 5px;
  width: 50%;
  height: 350px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 20px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  display: block;
  position: relative;
}

.project-div.in-flex {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  font-family: Lato, sans-serif;
  position: absolute;
  inset: 0%;
}

.icon-wrapper {
  background-color: #d72027ba;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 60px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.project-header {
  float: none;
  clear: none;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

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

.container-wrapper {
  z-index: 10;
  flex-direction: row;
  flex: 1;
  order: 0;
  justify-content: space-between;
  align-self: auto;
  align-items: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  display: block;
  position: relative;
}

.priject-icon {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.priject-icon.padding {
  z-index: 20;
  background-color: #1d1d1db5;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 85%;
  height: 60px;
  margin-bottom: 0;
  margin-right: auto;
  padding: 10px 0;
  position: absolute;
  inset: auto auto 0% 0%;
}

.lightbox {
  width: 100%;
  height: auto;
}

.lightbox.third {
  background-image: url('../images/hutomo-abrianto-9ZvuWg8deho-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  margin-bottom: 20px;
  position: relative;
}

.lightbox.third.big {
  background-image: url('../images/Gallery-1.jpg');
  height: 721px;
  margin-bottom: 16px;
}

.lightbox.third.big._9 {
  background-image: url('../images/20230914_130833_HDR.jpg');
}

.lightbox.third.big._11 {
  background-image: url('../images/20230914_130845_HDR.jpg');
}

.lightbox.fourth {
  background-image: url('../images/hutomo-abrianto-9ZvuWg8deho-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  margin-bottom: 20px;
  position: relative;
}

.lightbox.fourth.big {
  background-image: url('../images/Gallery-3.jpg');
  background-position: 50%;
  background-size: cover;
  height: 721px;
  margin-bottom: 16px;
}

.lightbox.fourth.big._7 {
  background-image: url('../images/20230914_130604.jpg');
}

.lightbox.fourth.big._10 {
  background-image: url('../images/20230914_131026.jpg');
}

.lightbox.second {
  background-image: url('../images/Gallery-5.jpg');
  background-position: 50% 36%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  margin-bottom: 16px;
  position: relative;
}

.lightbox.second._8 {
  background-image: url('../images/20230914_131210.jpg');
}

.lightbox.second._8._9 {
  background-image: url('../images/20230914_131110.jpg');
}

.lightbox.sixth {
  background-image: url('../images/shutterstock-4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  margin-bottom: 16px;
  position: relative;
}

.lightbox.fifth {
  background-image: url('../images/Gallery-4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 720px;
  margin-bottom: 16px;
  position: relative;
}

.lightbox.fifth._8 {
  background-image: url('../images/20230914_130938.jpg');
}

.lightbox.first {
  background-image: url('../images/Gallery-2.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  margin-bottom: 16px;
  position: relative;
}

.lightbox.first._10 {
  background-image: url('../images/20230914_130914.jpg');
  background-position: 50%;
}

.heading-16 {
  color: var(--red);
}

.text-block-2 {
  text-align: left;
  font-size: 10px;
}

.link-2 {
  color: var(--blue);
  text-decoration: none;
}

.div-block {
  width: 75%;
}

.grid-2 {
  display: block;
}

.paragraph-2 {
  font-size: 16px;
  line-height: 26px;
}

.link-3 {
  color: var(--dark-slate-blue);
  text-decoration: none;
}

.paragraph-3 {
  font-size: 16px;
  line-height: 26px;
}

.heading-17 {
  color: var(--blue);
}

.paragraph-4, .heading-18 {
  color: var(--white);
}

.div-block-2 {
  padding-top: 60px;
  padding-bottom: 57px;
}

.div-block-3 {
  padding-top: 54px;
  padding-bottom: 75px;
}

.heading-15-copy {
  color: var(--blue);
}

.service-items {
  color: var(--blue);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-item {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-style: italic;
}

.service-item._2 {
  padding-right: 10px;
}

.div-block-4 {
  display: flex;
}

.padding-x-5 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 50px;
  padding-right: 50px;
  display: grid;
}

.image-3 {
  opacity: .69;
  max-width: 85%;
}

.image-4 {
  max-width: 80%;
  transition: all .425s;
}

.image-4:hover {
  max-width: 84%;
}

.image-5 {
  max-width: 70%;
}

.heading-19 {
  color: var(--dark-slate-blue);
  text-align: center;
  margin-bottom: 55px;
}

.link-with-icon {
  color: #ff6137;
  letter-spacing: 1.28px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  transition: all .5s, color .5s;
  display: flex;
}

.link-with-icon:hover {
  color: #d7a43f;
  letter-spacing: 1.78px;
}

.link-with-icon.black-button {
  color: #fae372;
}

.link-with-icon.black-button.left-alignment {
  justify-content: flex-start;
}

.div-block-77 {
  flex-direction: column;
  justify-content: space-around;
  height: 160px;
  padding: 16px 30px;
  transition: all .625s;
  display: flex;
}

.content-wrap {
  z-index: 1;
  padding-right: 20px;
  display: block;
  position: relative;
}

.text-button-icon {
  margin-left: 20px;
  font-size: 13px;
  display: inline-block;
}

.div-block-78 {
  opacity: 1;
  background-color: #03469421;
  border: 3px #f2c753;
  border-radius: 6px;
  flex-direction: column;
  justify-content: space-around;
  width: 32%;
  height: auto;
  display: flex;
}

.div-block-78:hover {
  background-color: #03469438;
}

.div-block-79 {
  justify-content: space-between;
  width: 90%;
  margin-top: 0;
  margin-bottom: 25px;
  display: flex;
}

.text-white {
  color: #201f16;
  text-align: center;
  font-size: 22px;
  line-height: 30px;
}

.future-icon {
  color: #f2c753;
  width: 60px;
  height: auto;
}

.heading-20 {
  color: var(--dark-slate-blue);
  text-align: center;
  font-size: 42px;
}

.div-block-80 {
  flex-direction: column;
  align-items: center;
  padding: 64px 0 39px;
  display: flex;
}

.slide {
  background-image: linear-gradient(to bottom, var(--black-2), var(--black-2)), url('../images/Untitled-design-2.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slider {
  height: 100%;
}

.slide-nav {
  display: none;
}

.slide-2 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/plumbing-consultation-1200x565.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.slide-2.slide-3 {
  background-image: linear-gradient(to bottom, var(--black-2), var(--black-2)), url('../images/Property-Management-Solutions.png');
}

.slide-2.slide-4 {
  background-image: linear-gradient(#0009, #0009), url('../images/pexels-heiko-ruth-7859953.jpg');
}

.slide-2.slide-5 {
  background-image: linear-gradient(to bottom, var(--black-2), var(--black-2)), url('../images/service-maintenance-worker-repairing.jpg');
}

.bold-text {
  text-decoration: none;
}

.link-4 {
  font-weight: 700;
  text-decoration: none;
}

.bold-text-2 {
  line-height: 38px;
}

.div-block-81 {
  align-self: center;
  align-items: center;
  display: flex;
}

.bold-text-3 {
  font-size: 16px;
  font-weight: 600;
}

.div-block-82 {
  background-color: #f0f0f0;
  flex-direction: column;
  align-self: center;
  align-items: center;
  width: 576px;
  padding-top: 24px;
  padding-left: 59px;
  padding-right: 59px;
  display: flex;
}

.div-block-83 {
  background-color: #ececec;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 600px;
  padding: 17px 27px;
  display: flex;
}

.image-69 {
  width: 65%;
  max-width: none;
  margin-top: 12px;
  margin-bottom: 37px;
}

.close-link-2 {
  clear: none;
  color: #000;
  margin-bottom: 32px;
  text-decoration: none;
  display: none;
  position: static;
}

.close-link-2:hover {
  color: #ed0808;
}

.field-label-4 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bold-text-75 {
  color: #2482ce;
  font-size: 26px;
}

.italic-text-30 {
  color: #1c69a7;
  font-size: 18px;
  font-weight: 400;
}

.error-message-4 {
  color: #fff;
  background-color: #f33;
}

.pop-up-wrapper-3 {
  opacity: 1;
  text-align: center;
  background-color: #eee;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border: 2px solid #247cff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 600px;
  margin-top: 17px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0 34px;
  display: flex;
}

.contact-map-form {
  text-align: center;
  background-color: #fff;
  border: 7px solid #2482ce;
  width: auto;
  padding: 0;
  transition: background-color .5s;
  position: static;
  top: 0;
}

.modal-wrapper-2 {
  z-index: 99999;
  text-align: center;
  background-color: #000000a1;
  height: 100%;
  padding-top: 81px;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal-wrapper-2.modal-2 {
  background-color: #000000c4;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  min-height: auto;
  padding-top: 38px;
  display: none;
  position: fixed;
}

.bold-text-77 {
  color: #666f77;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  display: inline-block;
}

.contact-form-2 {
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.paragraph-29 {
  color: #ffcb05;
  justify-content: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 24px;
  display: none;
}

.link-50 {
  color: #fff;
  text-align: right;
  letter-spacing: 1px;
  margin-bottom: 17px;
  margin-left: 0;
  margin-right: 16px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.italic-text-31 {
  color: #666f77;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 9px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 27px;
  display: grid;
}

.italic-text-12 {
  color: #000;
  font-size: 26px;
}

.link-block-10 {
  text-align: center;
  width: 100%;
  padding-left: 7px;
  padding-right: 7px;
  text-decoration: none;
}

.link-block-10:hover {
  color: #2ca7fa;
}

.text-field-4 {
  border-radius: 4px;
  margin-bottom: 0;
}

.text-field-4.space-down {
  margin-bottom: 13px;
  padding-bottom: 73px;
}

.heading-21 {
  color: #1f5980;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: color .55s;
}

.heading-21:hover {
  color: #0e89db;
}

.paragraph-86 {
  background-color: #0000;
  margin-top: 1px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 28px;
}

.success-message-3 {
  color: #000;
  background-color: #6fdda3;
  margin-top: 27px;
}

.form-block-4 {
  display: none;
}

.div-block-53, .div-block-52 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
}

.paragraph-85 {
  background-color: #0000;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

.italic-text-11 {
  color: #000;
  font-size: 18px;
  display: none;
}

.submit-button-4 {
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  transition: all .45s;
}

.submit-button-4:hover {
  background-color: #1061ad;
}

.grid-4 {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
}

.div-block-84 {
  flex-flow: column;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .container-90 {
    max-width: 90%;
  }

  .button.getquote {
    height: 100%;
    padding: 15px 31px;
  }

  .display-horizontal-space-btw {
    align-items: center;
  }

  .padding-vertical.padding-large {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-menu {
    text-align: center;
    align-self: center;
    position: static;
  }

  .image-callery._290-px-image, .image-callery._01 {
    height: 290px;
  }

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

  .gallery-grid-home-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-areas: "Area Area"
                         "Area Area";
  }

  .content-wrap {
    padding-right: 30px;
  }

  .div-block-79 {
    width: 90%;
  }

  .grid-3 {
    grid-template-rows: auto auto auto;
    padding-bottom: 39px;
  }

  .bold-text-2 {
    line-height: 36px;
  }
}

@media screen and (min-width: 1920px) {
  .container-90 {
    max-width: 70%;
  }

  .div-block-78 {
    border-color: #f2c753;
  }
}

@media screen and (max-width: 991px) {
  .button-row-grid.tablet-1-col {
    grid-auto-flow: row;
  }

  .tab-link-style-empty {
    white-space: nowrap;
  }

  .heading-large {
    font-size: 2.25rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .container-70 {
    max-width: 90%;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .max-width-80 {
    max-width: 100%;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .max-width-30 {
    max-width: 100%;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .max-width-50 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .max-width-55 {
    max-width: 100%;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-1 {
    font-size: 55px;
    line-height: 62px;
  }

  .container-50 {
    max-width: 90%;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .max-width-40 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

  .max-width-60 {
    max-width: 100%;
  }

  .heading-xlarge {
    font-size: 2.75rem;
  }

  .max-width-45 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .display-horizontal-space-btw.align-top.vertical-left---tablet {
    flex-direction: column;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .max-width-70 {
    max-width: 100%;
  }

  .container-60 {
    max-width: 90%;
  }

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

  .padding-vertical.padding-xxhuge {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .heading-xxlarge {
    font-size: 3.25rem;
  }

  .position-absolute.item-3 {
    max-height: 30px;
  }

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

  .grid-2x1.left-column-1-25fr {
    grid-template-columns: 1fr;
  }

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

  .slide-testimonials {
    max-width: 90%;
  }

  .max-width-25.position-sticky.sticky-top---110px {
    max-width: 100%;
    position: static;
  }

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

  .grid-footer {
    grid-template-rows: auto auto auto;
    grid-template-columns: 2.25fr;
    align-items: center;
  }

  .display-vertical-center---tablet {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-menu {
    background-color: var(--white);
  }

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

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

  .utility-page-content {
    max-width: 80%;
  }

  .base-container {
    flex-direction: column;
    max-width: none;
    height: auto;
    padding-left: 26px;
    padding-right: 26px;
    display: flex;
  }

  .section {
    padding: 47px 34px 9px;
  }

  .icon-wrapper {
    width: 20%;
  }

  .project-header {
    font-size: 16px;
    line-height: 22px;
  }

  .priject-icon.padding {
    width: 80%;
  }

  .lightbox {
    width: 100%;
  }

  .link-with-icon {
    justify-content: center;
  }

  .content-wrap {
    padding-right: 40px;
  }

  .grid-3 {
    flex-direction: column;
    display: flex;
  }

  .image-69 {
    width: 50%;
  }

  .pop-up-wrapper-3 {
    text-align: center;
    background-size: 240px;
    margin-top: 15px;
  }

  .contact-map-form {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .modal-wrapper-2 {
    padding-top: 58px;
    padding-left: 51px;
    padding-right: 51px;
    display: block;
  }

  .modal-wrapper-2.modal-2 {
    min-height: 5550px;
    display: none;
  }

  .bold-text-77 {
    font-weight: 400;
  }

  .link-50 {
    margin-bottom: 18px;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
  }

  .heading-21 {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .text-size-1-5rem {
    font-size: 1.125rem;
  }

  .button-row-grid.landscape-1-col {
    grid-auto-flow: row;
  }

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

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .container-70 {
    max-width: 90%;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .tabs-menu {
    z-index: 100;
    background-color: #fff;
    justify-content: flex-start;
    position: sticky;
    top: 80px;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 40px;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .display-horizontal-space-around, .display-horizontal-stretch {
    flex-direction: column;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-small {
    font-size: 1.25rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-medium.no-margin---landscape {
    margin: 0;
  }

  .text-size-2-rem {
    font-size: 1.125rem;
  }

  .heading-1 {
    font-size: 44px;
    line-height: 55px;
  }

  .container-50._100-landscape {
    max-width: 100%;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .heading-medium {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .text-size-1-25rem {
    font-size: 1.125rem;
  }

  .display-horizontal-bottom {
    flex-direction: column;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .margin-all-small {
    margin: 1.25rem;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-xsmall {
    font-size: 1.125rem;
  }

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

  .padding-small {
    padding: 1.25rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .text-style-no-wrap {
    white-space: normal;
  }

  .text-size-1-75 {
    font-size: 1.125rem;
  }

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

  .padding-xxhuge {
    padding: 5rem;
  }

  .heading-xxlarge {
    font-size: 2.5rem;
  }

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

  .grid-4x1.left-column-1-75fr {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .position-absolute.item-3 {
    max-height: 30px;
  }

  .position-absolute.item-4 {
    width: 3px;
    min-width: 3px;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
  }

  .position-absolute.item-5, .position-absolute.item-6, .position-absolute.item-7, .position-absolute.item-8, .position-absolute.item-9, .position-absolute.item-10 {
    max-height: 30px;
  }

  .position-relative.z-index-10.min-height-100---landscape {
    min-height: 100%;
    display: inline;
  }

  .collection-grid, .grid-4x0.align-items-center._1x4-landscape {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-4x0.align-items-center._1x4-landscape.min-height-100---landscape {
    place-content: space-between;
    place-items: stretch stretch;
    height: 100%;
    min-height: 100%;
  }

  .grid-4x0._1x4-landscape {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .mask {
    padding-left: 0;
  }

  .display-vertical-center---tablet {
    align-items: flex-start;
  }

  .display-process-style {
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }

  .base-container {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-callery.height {
    height: 250px;
  }

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

  .gallery-grid-home-2 {
    grid-template-columns: 1fr 1fr;
  }

  .icon-wrapper {
    width: 15%;
  }

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

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

  .priject-icon.padding {
    width: 85%;
  }

  .lightbox.third.big, .lightbox.fourth.big {
    height: 300px;
  }

  .content-wrap {
    padding-right: 20px;
  }

  .text-white {
    width: 100%;
    font-size: 22px;
  }

  .bold-text-75 {
    font-size: 24px;
  }

  .pop-up-wrapper-3 {
    background-position: 5% 40%;
    background-size: 180px;
    width: auto;
    margin-top: 11px;
    padding: 17px 35px 6px;
  }

  .contact-map-form {
    padding-left: 34px;
    padding-right: 34px;
  }

  .modal-wrapper-2 {
    height: 100%;
    padding: 43px 52px;
    display: block;
  }

  .modal-wrapper-2.modal-2 {
    min-height: 6320px;
    display: none;
  }

  .bold-text-77 {
    color: #252a2e;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .contact-form-2 {
    width: 100%;
    padding: 21px 0;
  }

  .paragraph-29 {
    padding-top: 0;
    font-size: 11px;
    line-height: 18px;
  }

  .link-50 {
    margin-left: 0;
  }

  .italic-text-12 {
    font-size: 18px;
  }

  .link-block-10 {
    margin-top: 0;
  }

  .heading-21 {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    display: flex;
  }

  .paragraph-86 {
    margin-bottom: 17px;
  }

  .paragraph-85 {
    line-height: 16px;
  }

  .italic-text-11 {
    font-size: 12px;
    line-height: 12px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 44px;
    line-height: 55px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .button-row-grid.mobile-1-col {
    grid-auto-flow: row;
  }

  .tab-link-style-empty {
    text-align: center;
    flex: none;
    align-self: stretch;
  }

  .background-color-black {
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-medium {
    padding: 1.4rem 1.1rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .container-90 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-2 {
    color: var(--black);
  }

  .subtitle {
    margin-top: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .display-vertical-center.text-align-center {
    margin-bottom: 14px;
  }

  .display-horizontal-right.gap-10px.vertical-left---mobile {
    flex-direction: column;
    align-items: flex-start;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .display-vertical-space-btw {
    padding-left: 16px;
    padding-right: 16px;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-medium {
    margin-bottom: -.6rem;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .stylesystem-images-layout {
    grid-template-columns: 1fr;
  }

  .display-horizontal-left.gap-1rem, .display-horizontal-left.gap-1rem.vertical-left---mobile {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-color-white.bigger-text {
    font-size: 20px;
  }

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

  .padding-vertical.padding-large {
    width: 100%;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .padding-vertical.padding-large.footer-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-huge {
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .padding-vertical.padding-huge.still-huge-mobile {
    padding-top: 5rem;
  }

  .padding-vertical.padding-xhuge {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .padding-vertical.padding-xlarge {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section.services.services-main {
    height: 40vh;
    padding-left: 25px;
    padding-right: 25px;
  }

  .heading-hero {
    font-size: 44px;
    line-height: 55px;
  }

  .grid-4x1.left-column-1-75fr {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .no-margin {
    font-size: 20px;
    line-height: 30px;
  }

  .no-margin.text-color-white {
    font-size: 24px;
    line-height: 32px;
  }

  .position-absolute.item-13 {
    max-height: 30px;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-2x1.align-items-stretch.left-column-1-5fr.grid-1x2-mobile {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

  .service-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .collection-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .process-style {
    width: 3rem;
    height: 3rem;
  }

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

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

  .background-color-cream-white {
    padding-left: 19px;
    padding-right: 19px;
  }

  .slide-testimonials {
    max-width: 100%;
  }

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

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

  .display-vertical-center---tablet {
    align-items: flex-start;
  }

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

  .form-style-wrapper {
    padding: 1rem;
  }

  .icon-1x1-huge {
    width: 5rem;
  }

  .base-container {
    max-width: 90%;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section {
    margin-top: 96px;
    padding: 0;
  }

  .section.none-padding {
    margin-top: 50px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .heading-12 {
    font-size: 22px;
    line-height: 30px;
  }

  .icon-wrapper {
    width: 20%;
  }

  .project-header {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 18px;
  }

  .container-wrapper {
    justify-content: space-between;
  }

  .priject-icon.padding {
    width: 80%;
  }

  .lightbox.third.big, .lightbox.fourth.big, .lightbox.second, .lightbox.sixth, .lightbox.fifth, .lightbox.first {
    height: 200px;
  }

  .div-block {
    width: auto;
  }

  .link-3 {
    font-size: 20px;
  }

  .paragraph-4 {
    font-size: 14px;
    line-height: 26px;
  }

  .div-block-2 {
    padding-top: 17px;
  }

  .padding-x-5 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .image-5 {
    margin-bottom: 25px;
  }

  .heading-19 {
    font-size: 34px;
  }

  .link-with-icon {
    justify-content: flex-start;
  }

  .div-block-78 {
    width: auto;
    margin-bottom: 15px;
  }

  .div-block-79 {
    flex-direction: column;
  }

  .bold-text-2 {
    line-height: 32px;
  }

  .image-69 {
    width: 70%;
    margin-bottom: 13px;
    margin-left: 10px;
  }

  .close-link-2 {
    margin-bottom: 85px;
  }

  .bold-text-75 {
    font-size: 18px;
    line-height: 22px;
  }

  .italic-text-30 {
    font-size: 14px;
  }

  .pop-up-wrapper-3 {
    text-align: center;
    background-position: 50% 6%;
    background-size: 115px;
    flex-direction: column;
    margin-top: 6px;
    padding: 11px 7px 21px;
    display: flex;
  }

  .contact-map-form {
    width: 100%;
    padding: 7px 0;
  }

  .modal-wrapper-2 {
    flex-direction: column;
    padding: 20px 16px 18px;
    display: block;
  }

  .modal-wrapper-2.modal-2 {
    min-height: 6240px;
    display: none;
  }

  .bold-text-77 {
    font-size: 13px;
    line-height: 16px;
  }

  .contact-form-2 {
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
  }

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

  .link-50 {
    margin-bottom: 11px;
    margin-left: -1px;
  }

  .italic-text-12 {
    display: block;
  }

  .link-block-10 {
    text-align: center;
    margin-top: 0;
    display: inline-block;
  }

  .heading-21 {
    text-align: center;
    font-size: 11px;
    display: inline;
  }

  .paragraph-86 {
    font-size: 14px;
    line-height: 20px;
  }

  .paragraph-85 {
    line-height: 14px;
  }

  .italic-text-11 {
    display: none;
  }

  .bold-text-78 {
    font-size: 32px;
    line-height: 20px;
  }

  .rich-text-block {
    padding-left: 19px;
    padding-right: 19px;
  }

  .section-2 {
    height: 100vh;
  }
}

#w-node-_863b481a-ae6f-a0c8-ea4d-25d4810f8cb8-9e1ede0a, #w-node-_22008336-29ba-bd44-6a8a-0d7700cab91c-9e1ede0a, #w-node-d4b65a53-e9ef-8358-a2d4-c38852f01643-9e1ede0a, #w-node-_16de5249-80e1-31f0-71df-7429312ec94f-9e1ede0a, #w-node-c2eb43e2-64c6-c26c-cb5a-995d06b5c694-9e1ede0a, #w-node-af2af186-b866-f435-58a2-88a7caa608d5-9e1ede0a, #w-node-_0c8fcc68-2f11-719f-c217-348e10ad8ccf-9e1ede0a, #w-node-_0c8fcc68-2f11-719f-c217-348e10ad8cd4-9e1ede0a, #w-node-_0c8fcc68-2f11-719f-c217-348e10ad8cd5-9e1ede0a, #w-node-_0c8fcc68-2f11-719f-c217-348e10ad8cdb-9e1ede0a, #w-node-_0c8fcc68-2f11-719f-c217-348e10ad8ce1-9e1ede0a, #w-node-_0c8fcc68-2f11-719f-c217-348e10ad8ce7-9e1ede0a, #w-node-_241d639b-b19f-9165-dd83-9610b0d5dabc-9e1ede0a, #w-node-_241d639b-b19f-9165-dd83-9610b0d5dacc-9e1ede0a, #w-node-_241d639b-b19f-9165-dd83-9610b0d5dadc-9e1ede0a, #w-node-_241d639b-b19f-9165-dd83-9610b0d5daec-9e1ede0a, #w-node-_241d639b-b19f-9165-dd83-9610b0d5dafc-9e1ede0a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c4d-774b8c45 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: end;
}

#w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c4e-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c50-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c54-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c56-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c58-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c52-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c5d-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c80-774b8c45, #w-node-_1dba9af4-adcf-87e7-0e7e-35ef774b8c6d-774b8c45, #w-node-d20be531-a1a4-9c5b-5b78-3c9897322ae4-97322ade, #w-node-d20be531-a1a4-9c5b-5b78-3c9897322aea-97322ade {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9fb92c6e-4d44-e57e-efdc-66b6c6d27673-c6d2765c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9fb92c6e-4d44-e57e-efdc-66b6c6d27677-c6d2765c, #w-node-_02524463-201e-6741-ead9-b25334e0428c-9e1ede1f, #w-node-_99d627fc-c1c7-d6fc-073c-850e7f5708cc-9e1ede1f, #w-node-eca100a3-9f70-26c2-e01f-8a903f67060f-9e1ede1f, #w-node-b2795ab2-1254-fa6a-b94f-abe3f352fd3c-9e1ede1f, #w-node-ec57d6c1-c9a3-2de1-8d6b-245bf9082145-9e1ede1f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bb40ebe8-fa86-ab74-86f7-e60e40d82465-9e1ede1f {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b9c64a90-068d-da74-9a76-3b49aac4674a-9e1ede1f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54a6aed9-dbc6-4aef-1751-f681c307e46d-9e1ede1f {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_03d14a1b-dd11-3b66-3b5d-e2b6c244c6ec-9e1ede1f, #w-node-d593dfe7-c6de-4ad8-1d84-ef32809f6d58-9e1ede1f, #w-node-cc94e611-a806-139c-e2ef-acfdd566b659-9e1ede1f, #w-node-_9dd05776-e863-1339-4a9a-2d9c310d4a2b-9e1ede1f, #w-node-_7eff2a3e-875f-5359-4da0-f1d7df778b2e-9e1ede1f, #w-node-_38b80b47-bc11-21ac-ff49-8886cf507469-9e1ede1f, #w-node-dc7e4982-6427-2d01-8cc3-61a7403b3c5c-9e1ede1f, #w-node-fd24e472-a994-28da-58e2-5716c1fec0a3-c1fec09d, #w-node-fd24e472-a994-28da-58e2-5716c1fec0a9-c1fec09d, #w-node-_20f3ea2e-fd44-a675-55e5-b993b6e36c7a-9e1ede21, #w-node-_8d1e1d02-3be2-6e56-e637-192434bff4d7-9e1ede21, #w-node-_8d1e1d02-3be2-6e56-e637-192434bff4d9-9e1ede21, #w-node-_8d1e1d02-3be2-6e56-e637-192434bff4db-9e1ede21, #w-node-_8d1e1d02-3be2-6e56-e637-192434bff4dd-9e1ede21, #w-node-_8d1e1d02-3be2-6e56-e637-192434bff4df-9e1ede21, #w-node-_8d1e1d02-3be2-6e56-e637-192434bff4e1-9e1ede21, #w-node-f212e2fb-20cf-a653-df31-6570de703fef-9e1ede21, #w-node-_64b2074b-75eb-acb6-96ff-02321340af31-9e1ede23, #w-node-_6dcae106-e406-ed85-10bb-f3eefc5be24a-9e1ede23, #w-node-_539b72d4-2d4a-fb49-447d-8c125b8b533d-9e1ede23, #w-node-ff4b0712-622f-0b46-8cd9-3542828432a2-9e1ede23, #w-node-_8e648c2f-9a20-8fc2-1190-6fac72746a01-9e1ede23 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8c7dc1f1-abe1-d1c3-4e8c-c25f92132dfc-9e1ede23 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4f7e8c1d-0f7a-6036-25df-429b836374c7-9e1ede23, #w-node-_4e5e815f-ee05-dc92-51d3-b6d477e811e4-77e811de, #w-node-_4e5e815f-ee05-dc92-51d3-b6d477e811ea-77e811de, #w-node-b1a5c795-db15-9874-7436-418d5efccf96-9e1ede26, #w-node-_6ba3e0cd-1f91-6f0a-0e61-5ccaa11fec47-9e1ede26, #w-node-_3e9b02da-29e0-341e-c369-5b2b8018364f-9e1ede26, #w-node-_64529d5a-3f33-2087-7a62-6113433ccda1-9e1ede26, #w-node-_8a9d7d41-393b-fd6e-ace7-90a70aceb4d9-9e1ede26, #w-node-_44246d89-1546-3215-fa19-f99bc2d329b6-9e1ede26, #w-node-_7bb064bf-e4f7-24af-96bf-e01dffc8e97b-9e1ede26, #w-node-_1886cad1-5910-49e2-84e6-0df31d9fd857-9e1ede26, #w-node-_1fdeaaf6-e31b-b7b0-4fc8-03606dce2edd-9e1ede26, #w-node-a52c280a-d061-24c8-632b-972ec93208c6-9e1ede26, #w-node-_95996d5f-8f7d-c4bc-0f09-62d9cbf9dd72-9e1ede26, #w-node-e11d74dc-7ffe-9952-0dee-0da3b8568321-9e1ede26, #w-node-_288a712c-da0f-6c55-c499-f717f95ad401-9e1ede26, #w-node-_00aa49a7-5911-a39b-48c3-c34f0f66f6ff-9e1ede26, #w-node-_1c6e1d78-99f9-6941-8a19-289ea0bc82a2-9e1ede26, #w-node-d5db096f-a2ec-2c6c-89b4-d2ef61c9ca6e-9e1ede26, #w-node-ee057361-335e-a647-7f89-2dc158759ec0-9e1ede26, #w-node-_0af052e7-9e94-3612-4280-dae49095a490-9e1ede26, #w-node-ebe37f00-f151-6a71-4bf9-ef084c53363e-9e1ede26, #w-node-_626094ba-abff-2946-117b-2a483791bf06-9e1ede26, #w-node-_918d201e-fe0b-5cbc-cc41-c46a86a469c7-9e1ede26, #w-node-f9d6f867-8d2e-d794-ec8d-36340ad64ac5-9e1ede26, #w-node-_2cdfd980-73e0-7e7c-ee55-3b117ee7039f-9e1ede26, #w-node-_63b80e11-3460-e427-8349-66fc2f1d614e-9e1ede26, #w-node-_41075520-a88e-f301-f742-147f71ed1977-9e1ede26, #w-node-_6a01bc94-1ac0-2d4d-e743-bbdf4b15c9dd-9e1ede26, #w-node-_1aee6a3d-3c1a-4d37-334d-7bf9453e7109-9e1ede26, #w-node-f08a8a91-0b37-6640-19b3-77ac564584aa-9e1ede26, #w-node-d1505f9e-ca7b-c510-5244-cf55e969d7dc-9e1ede27, #w-node-d1505f9e-ca7b-c510-5244-cf55e969d7de-9e1ede27, #w-node-_588e001d-5533-0e5c-6dab-c89181da1d70-9e1ede3e, #w-node-_7c62726d-35a8-294f-8eca-6aec8ee3a108-9e1ede3e, #w-node-f552bbf0-1048-8848-565a-9a8f3a7a20ea-9e1ede3e, #w-node-f552bbf0-1048-8848-565a-9a8f3a7a20fa-9e1ede3e, #w-node-f552bbf0-1048-8848-565a-9a8f3a7a210a-9e1ede3e, #w-node-f552bbf0-1048-8848-565a-9a8f3a7a211a-9e1ede3e, #w-node-f552bbf0-1048-8848-565a-9a8f3a7a212a-9e1ede3e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-454236c4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b3b-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b59-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b5a-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b8f-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bc4-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235be8-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235beb-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bee-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf1-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf6-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bfb-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c00-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c05-454236c4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-60f14aae {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b3b-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b59-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b5a-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b8f-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bc4-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235be8-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235beb-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bee-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf1-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf6-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bfb-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c00-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c05-60f14aae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-1272cf8f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b3b-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b59-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b5a-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b8f-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bc4-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235be8-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235beb-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bee-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf1-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf6-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bfb-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c00-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c05-1272cf8f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-2b836cc6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b3b-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b59-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b5a-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b8f-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bc4-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235be8-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235beb-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bee-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf1-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf6-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bfb-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c00-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c05-2b836cc6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-1b11db16 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b3b-1b11db16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b5a-1b11db16 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bc4-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235be8-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235beb-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bee-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf1-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bf6-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235bfb-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c00-1b11db16, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235c05-1b11db16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-_4e5e815f-ee05-dc92-51d3-b6d477e811ea-77e811de {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_863b481a-ae6f-a0c8-ea4d-25d4810f8cb8-9e1ede0a {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_863b481a-ae6f-a0c8-ea4d-25d4810f8cb8-9e1ede0a, #w-node-_9fb92c6e-4d44-e57e-efdc-66b6c6d27673-c6d2765c, #w-node-_8c7dc1f1-abe1-d1c3-4e8c-c25f92132dfc-9e1ede23, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-454236c4, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-60f14aae, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-1272cf8f, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-2b836cc6, #w-node-e4dc6cf3-8dfe-ad59-1ca0-237fba235b37-1b11db16 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


