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

@font-face {
  font-family: "Fa 100";
  src: url('../fonts/fa-thin-100.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: "Fa sharp solid 900";
  src: url('../fonts/fa-sharp-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --deep-sky-blue-2: black;
  --deep-sky-blue: #f04037;
  --black-2: #232323;
  --black: #00aeee;
  --black-3: #00131a;
}

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

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

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

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

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

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

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

.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 {
  background-color: var(--deep-sky-blue-2);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
}

.announcement-contact {
  background-color: var(--deep-sky-blue);
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  padding: 5px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.announcement-contact:hover {
  color: #212529;
}

.announcement-time {
  color: #fff;
  font-weight: 300;
}

.announcement-bar {
  background-color: var(--black-2);
}

.announcement-link {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.announcement-link:hover {
  color: #ef233c;
}

.container {
  flex-direction: column;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.container.announcement-container {
  width: 90%;
  max-width: none;
}

.announcement-icon {
  color: #fff;
  background-color: #000;
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 5px;
  font-family: "Fa 300", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  display: flex;
}

.announcement-contact-info {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.announcement-contact-info.margin-right-20 {
  margin-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.announcement-wrapper {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.header-social-media {
  display: flex;
}

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

.nav-menu.margin-auto {
  justify-content: space-between;
  margin-left: auto;
}

.dropdown-menu-link {
  background-color: var(--deep-sky-blue-2);
  color: #fff;
  border-left: 5px solid #0000;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all .2s ease-in-out;
}

.dropdown-menu-link:hover {
  border-left: 5px solid var(--deep-sky-blue);
  color: #fff;
}

.dropdown-menu-link.w--current {
  border-left-color: var(--deep-sky-blue);
  color: var(--black);
}

.drop-down-link {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
}

.brand {
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.brand.w--current {
  justify-content: center;
}

.dropdown-list {
  border-radius: 6px;
  width: 300px;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 6px;
  width: auto;
  margin-top: 19px;
  overflow: visible;
}

.nav-link {
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}

.nav-link:hover {
  color: var(--black);
  background-color: #0000;
  border-radius: 6px;
}

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

.header-social-icon {
  background-color: var(--black);
  color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 1.2em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.header-social-icon:hover {
  background-color: var(--deep-sky-blue);
  color: #fdfdfd;
}

.header-social-icon.margin-right-none {
  margin-right: 0;
}

.dropdown-link {
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.dropdown-link:hover {
  color: var(--black);
  background-color: #0000;
}

.nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-2 {
  background-color: #0000;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.navbar {
  z-index: 1000;
  background-color: #000;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: static;
}

.slider-arrow {
  background-color: #353535;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.slider-arrow:hover {
  background-color: var(--deep-sky-blue);
}

.slide {
  background-image: linear-gradient(#00000059, #00000059), url('../images/new-banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-content {
  z-index: 999;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-btn-qoute {
  background-color: var(--black);
  color: #fdfdfd;
  border-radius: 4px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 15px 40px;
  font-size: 1.25em;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.hero-btn-qoute:hover {
  transform: scale(.95);
}

.hero-large-text {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.2;
}

.hero-large-text.services {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-large-text.services.baner-title {
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 40px;
  font-weight: 700;
}

.hero-para-text {
  color: #ececec;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.hero-section {
  justify-content: center;
  align-items: center;
  height: 80vh;
  display: flex;
}

.hero-section.services {
  background-image: linear-gradient(#0006, #0006), url('../images/banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
}

.hero-section.services.brn {
  background-image: linear-gradient(#00000080, #00000080), url('../images/barn-banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-section.services.build-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/SERVICE-BANNER.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-section.services.ext-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/extension-banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-section.services.new-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/new-banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-section.services.ren-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/renov-banner.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.hero-section.services.garage {
  background-image: url('../images/garage_420356198.webp');
  background-position: 50%;
}

.hero-section.services.project {
  background-image: url('../images/project_630241813.webp');
}

.hero-slider {
  min-height: 80vh;
  display: block;
}

.slide-2 {
  background-image: linear-gradient(#fff0, #212529a8), url('../images/new-bathroom.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.arrow-icon {
  font-size: .6em;
}

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

.section-h1-wrapper.display-flex.top {
  align-items: flex-start;
}

.default-btn {
  color: #fdfdfd;
  background-color: #ffd166;
  padding: 15px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.default-btn:hover {
  transform: scale(.95);
}

.default-btn.margin-top-20 {
  border: 1px solid var(--black);
  background-color: var(--black);
  text-align: center;
  margin-top: 0;
}

.default-btn.margin-top-20.default-btn-outline {
  color: #ffd166;
  background-color: #0000;
  border: 1px solid #ffd166;
}

.default-btn.margin-top-20.default-btn-outline.marginleft-20 {
  border-color: var(--black);
  color: var(--black);
  min-width: auto;
  margin-left: 20px;
}

.default-btn.margin-top-20.default-btn-outline.marginleft-20.non {
  margin-top: 10px;
  margin-left: 0;
}

.default-btn.margin-top-20.light-btn {
  color: var(--black);
  background-color: #fdfdfd;
  border-color: #fdfdfd;
  margin-top: 20px;
}

.section-design-1-h1 {
  background-color: #ffffff0f;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-design-1-h1.bottom {
  padding-bottom: 0;
}

.text-block {
  color: var(--deep-sky-blue);
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.95;
}

.text-block.bullet-list-title {
  color: var(--deep-sky-blue);
  font-size: 1.25em;
}

.heading-1 {
  color: #3b444d;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  line-height: 1.5;
}

.heading-1.margin-bottom-30 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 27px;
  line-height: 1.3;
}

.left-section {
  flex: 0 auto;
  width: 48%;
}

.left-section._100 {
  width: 100%;
}

.btn-wrapper {
  padding-top: 20px;
}

.right-section {
  box-shadow: 11px -11px 0 0 var(--deep-sky-blue);
  align-self: stretch;
  align-items: stretch;
  width: 51%;
  display: flex;
}

.para {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 27px;
}

.para.para-sm {
  color: #fff;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.para.bullet-para {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 24px;
}

.para.para-white {
  color: #fdfdfd;
}

.para.text-white {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}

.para._20b {
  margin-bottom: 20px;
}

.para.subheading {
  color: #fdfdfd;
  font-weight: 700;
}

.inner-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: static;
}

.inner-img.contactform {
  background-image: none;
  justify-content: center;
  align-items: flex-start;
}

.inner-img.service-1 {
  background-image: url('../images/new-bathroom.webp');
}

.inner-img.ext-1 {
  background-image: url('../images/extended-houde.webp');
}

.inner-img.new-1 {
  background-image: url('../images/kitchen.webp');
}

.inner-img.ren-1 {
  background-image: url('../images/grey-kitchen.webp');
}

.inner-img.barn-1 {
  background-image: url('../images/barn_1.webp');
}

.inner-img.garage {
  background-image: url('../images/garage_572064113.webp');
}

.inner-img.project {
  background-image: url('../images/project_858020775.webp');
}

.card-bullet {
  color: #fff;
  margin-bottom: 10px;
  padding-left: 0;
  list-style-type: none;
  display: block;
}

.card-bullet._3-rpw {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-bullet.number {
  flex-direction: column;
  padding-left: 20px;
  list-style-type: decimal;
}

.card-bullet._2-row {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.top-title-content {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-2-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  line-height: 1.9;
}

.heading-2-title.heading-white {
  color: #fdfdfd;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.bullet-icon {
  color: #fff;
  text-align: left;
  background-image: url('../images/brickwall_1brickwall.webp');
  background-position: 50%;
  background-size: cover;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Fa solid 900", sans-serif;
  font-size: 4em;
  line-height: 1.5;
  display: inline-block;
}

.bullet-icon.plastering {
  color: #fff;
  background-image: url('../images/paint-roller.webp');
}

.bullet-icon.kitchen {
  background-image: url('../images/brickwall_2.webp');
  background-size: contain;
}

.bullet-icon.barn {
  background-image: url('../images/barn.webp');
}

.bullet-icon.ext {
  background-image: url('../images/garage.webp');
}

.bullet-block-title {
  color: var(--black);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.75;
}

.bullet-list-services {
  padding-top: 100px;
  padding-bottom: 140px;
}

.bullet-list-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.card-bullet-item {
  color: #838383;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
  list-style-type: none;
  display: flex;
}

.bullet-block-btn {
  background-color: var(--black);
  color: #fdfdfd;
  border-radius: 4px;
  margin-top: 20px;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.bullet-block-btn:hover {
  transform: scale(.95);
}

.bullet-block {
  background-color: var(--black-2);
  text-align: left;
  border-radius: 4px;
  padding: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #0000000d;
}

.bullet-block:hover {
  transform: translate(0, -5px);
}

.bullet-heading {
  color: #fff;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  display: flex;
}

.bullet-heading.number {
  margin-bottom: 5px;
  margin-left: 10px;
  display: block;
}

.bullet-heading.block {
  display: block;
}

.inner-text-content {
  width: 85%;
  max-width: 1400px;
  margin-left: 60px;
  margin-right: auto;
}

.inner-text-content.remove {
  width: 90%;
  margin-left: auto;
}

.inner-text-content.otherside {
  width: 85%;
  margin-left: auto;
  margin-right: 60px;
}

.container-fluid.display-flex {
  display: flex;
}

.section-2-img-full {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}

.section-2-img-full.home-2 {
  background-image: url('../images/living-room.webp');
}

.section-2-img-full.service-2 {
  background-image: url('../images/new-home.webp');
}

.section-2-img-full.ext-2 {
  background-image: url('../images/extension.webp');
}

.section-2-img-full.new-2 {
  background-image: url('../images/UK-5.webp');
}

.section-2-img-full.ren-2 {
  background-image: url('../images/white-room.webp');
}

.section-2-img-full.barn-2 {
  background-image: url('../images/coverted-small-barn.webp');
}

.section-2-img-full.barn-3 {
  background-image: url('../images/barn_2.webp');
}

.section-2-img-full.grg1 {
  background-image: url('../images/garage_572115183.webp');
}

.section-2-img-full.grg2 {
  background-image: url('../images/garage_877702131.webp');
}

.section-2-img-full.project {
  background-image: url('../images/project_597788669.webp');
  background-position: 20%;
}

.section-2-h2-w-img-vid {
  background-color: #232323;
  padding-top: 0;
  padding-bottom: 0;
}

.text-content {
  background-color: var(--black-2);
  width: 50%;
  padding: 50px 0;
}

.text-content._100 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text-content._100.b {
  background-color: #000;
}

.heading-3-cta-section {
  background-color: var(--black-3);
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-3-cta-section.bkakc {
  background-color: #000;
}

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

.h3-wrapper.left {
  align-items: flex-start;
}

.content-h3-box {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  display: flex;
}

.content-h3-box._100 {
  width: 100%;
}

.heading-3-text {
  color: #fdfdfd;
  text-align: center;
  margin-bottom: 20px;
  padding-right: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
}

.heading-3-text.head {
  border: 0px none var(--black);
  color: var(--black);
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #fff;
  margin-bottom: 20px;
  font-size: 1.7em;
}

.h3-cta-call-btn {
  background-color: var(--black);
  color: #fff;
  margin-right: 20px;
  padding: 15px 40px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline;
}

.brand-bands {
  background-color: #f5f8fa;
  padding-top: 40px;
  padding-bottom: 40px;
}

.brand-band-wrapper {
  justify-content: space-between;
  display: flex;
}

.brand-icon {
  color: #bdbdbd;
  font-family: "Fa brands 400", sans-serif;
  font-size: 5em;
  line-height: 1;
  display: inline-block;
}

.footer-col {
  width: 30%;
}

.contact-block-1 {
  border-right: 1px solid #8a8a8a;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 33%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.contact-block-1.border-none {
  border-right-style: none;
  align-items: center;
}

.footer-mid-content {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.footer-mid-content.google {
  border: 3px solid var(--black);
  background-image: url('../images/New-Map-01.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0;
  width: 100%;
  height: 600px;
}

.footer-section {
  background-color: var(--deep-sky-blue-2);
  flex-flow: column;
  padding-top: 40px;
  padding-bottom: 0;
  display: block;
}

.footer-menu-text {
  color: var(--deep-sky-blue);
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 600;
}

.contact-type-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2;
}

.footer-contact-info {
  border: 1px solid #46484b94;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 30px;
  display: flex;
}

.footer-contact-info.vert {
  flex-direction: column;
}

.contact-icon {
  background-color: var(--deep-sky-blue);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  font-family: "Fa 300", sans-serif;
  font-size: 1.5em;
  line-height: 1;
  display: flex;
}

.contact-info-link {
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  display: inline-block;
}

.footer-copy {
  background-color: var(--black);
  border-top: 1px solid #ffffff17;
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-social-media-block {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.scroll-up {
  z-index: 1;
  background-color: var(--deep-sky-blue);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 10px 10px auto;
}

.scroll-arrow-up {
  color: #fdfdfd;
  justify-content: center;
  align-items: center;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.5em;
  font-style: normal;
  line-height: 1;
  text-decoration: none;
}

.services-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.services-link-box {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  justify-content: center;
  align-items: flex-end;
  min-height: 350px;
  padding: 20px;
  text-decoration: none;
  display: flex;
}

.services-link-box._1 {
  background-image: url('../images/_307345480.webp');
}

.services-link-box._2 {
  background-image: url('../images/_170058942.webp');
}

.services-link-box._3 {
  background-image: url('../images/_490090324.webp');
}

.services-link-box._4 {
  background-image: url('../images/_221509466.webp');
}

.services-link-box._5 {
  background-image: url('../images/_221509504.webp');
}

.text-block-2 {
  background-color: var(--black);
  color: #fff;
  border-radius: 1px;
  padding: 20px;
  font-weight: 600;
  text-decoration: none;
}

.mask {
  height: auto;
  min-height: 250px;
}

.who-made-comment {
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.qoate-symbol {
  color: #ef233c;
  justify-content: flex-end;
  margin-left: auto;
  padding-bottom: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 60px;
  display: flex;
  position: relative;
}

.underline {
  background-color: #fb6749;
  border-radius: 6px;
  width: 60%;
  height: 5px;
  line-height: 30px;
  position: absolute;
  inset: 15px 0 auto auto;
}

.underline.testemonials-underline {
  flex: 0 auto;
  width: 20%;
  position: relative;
  left: 0%;
  right: 0;
}

.underline.testemonials-underline.orange {
  background-color: #ef233c;
  width: 30%;
  position: absolute;
  top: 0;
}

.underline.testemonials-underline.gray {
  background-color: var(--deep-sky-blue-2);
  width: 100%;
}

.left-arrow {
  background-color: var(--black);
  color: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 25%;
  transition: all .3s ease-in-out;
  display: flex;
  inset: auto auto 0% 0%;
}

.left-arrow:hover {
  background-color: var(--deep-sky-blue);
  transform: scale(.95);
}

.customer-title {
  color: #aaacaf;
}

.testemonial-content-everything {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.container-2 {
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 0;
}

.testimonials-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.right-arrow {
  background-color: var(--black);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 25%;
  margin-left: 100px;
  transition: all .3s ease-in-out;
  display: flex;
  inset: auto auto 0% 0%;
}

.right-arrow:hover {
  background-color: var(--deep-sky-blue);
  color: #fff;
  transform: scale(.95);
}

.slide-nav {
  display: none;
  position: absolute;
}

.slide-3 {
  background-color: var(--deep-sky-blue-2);
  height: auto;
  padding: 15px;
}

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

.text-block-3 {
  color: #fff;
  flex: none;
  margin-top: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: 26px;
  display: block;
  position: static;
  inset: 0%;
}

.testemonials-slider {
  position: static;
}

.sub-heading {
  color: #ef233c;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 700;
}

.block-quote {
  color: #fff;
  border-left-style: none;
  margin-bottom: 0;
  padding: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
}

.heading-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 10px;
  padding-right: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.slider-2 {
  height: auto;
  position: static;
}

.customer-img {
  background-image: url('../images/vicky-hladynets-C8Ta0gwPbQg-unsplash_1vicky-hladynets-C8Ta0gwPbQg-unsplash.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  min-width: 80px;
  min-height: 80px;
  margin-right: 10px;
}

.logo {
  object-fit: contain;
  width: 100%;
  height: 50px;
}

.logo.footer {
  width: auto;
  height: 60px;
  margin-right: 20px;
}

.footer-list-items {
  padding-left: 0;
  list-style-type: none;
}

.footer-link-2 {
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  transition: all .2s;
  display: flex;
}

.footer-link-2:hover {
  color: #f91818;
}

.foot-nav {
  color: #000;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.foot-nav.w--current {
  color: #ec1f27;
  font-weight: 500;
  text-decoration: none;
}

.foot-nav.w {
  color: #fff;
}

.foot-nav.w:hover {
  color: var(--black);
}

.foot-nav.w.w--current {
  color: #ec1f27;
}

.h1-small {
  color: var(--black);
  font-size: 26px;
  font-weight: 400;
}

.list-icon {
  background-image: url('../images/arrow-2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: none;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  display: flex;
}

.baner-title {
  color: #fff;
  text-transform: uppercase;
  background-color: #0009;
  padding: 5px;
  font-size: 30px;
  font-weight: 600;
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--deep-sky-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.hyperlink:hover {
  box-shadow: inset 0 -50px 0 0 var(--deep-sky-blue);
}

.footerlinks {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
}

.fa-2.dark {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.fa-2.dark.area {
  color: #00aeed;
  font-family: "Fa solid 900", sans-serif;
}

.list {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  font-weight: 500;
  list-style-type: none;
}

.list._2-row {
  grid-column-gap: 7px;
  grid-row-gap: 6px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  display: grid;
}

.list-item {
  align-items: center;
  margin-bottom: 10px;
  font-size: 17px;
  display: flex;
}

.area {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.bullet-icon-2 {
  color: #000;
  background-color: #fff;
  border: 2px solid #afafaf;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: flex;
}

.bullet-icon-2.black-line {
  background-color: #0000;
  background-image: url('../images/arrow-2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #0000;
  border-radius: 20px;
  flex: none;
  width: 32px;
  height: 32px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
}

.bullet-icon-2.black-line.remove {
  background-image: none;
}

.contacf {
  width: 100%;
}

.bottom-left-div-2 {
  background-color: #333;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 50%;
  padding: 60px 60px 60px 40px;
  display: flex;
}

.bottom-left-div-2.sitemap {
  background-color: #0000;
  align-items: center;
  width: 100%;
  padding: 0;
}

.bottom-nav-link-2 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  text-decoration: none;
}

.bottom-nav-link-2.w--current {
  color: #00aeed;
  font-weight: 500;
}

.bottom-nav-link-2.site {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.contactform {
  width: 100%;
}

.contact-icon-2 {
  color: #fff;
  background-color: #f5ad2c;
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.2em;
  line-height: 1;
  display: flex;
}

.contact-icon-2.footer {
  background-color: var(--deep-sky-blue);
  color: #fff;
}

.contact-link {
  color: #000;
  text-decoration: none;
}

.contact-link.white {
  color: #fff;
}

.contact-left-div-2 {
  width: 100%;
}

.contact-div-2.display-flex {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.contact-div-2.display-flex.border-bottom {
  border-bottom: 1px solid #cac9c959;
  width: 100%;
}

.contact-div-2.display-flex.border-bottom.footer {
  border-bottom-style: none;
  padding: 5px 0;
  transition: all .3s ease-in-out;
}

.contact-div-2.display-flex.border-bottom.footer:hover {
  transform: translate(5px);
}

.contact-page-map {
  color: #000;
}

.contact-page-map.footer.white {
  color: #fff;
}

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

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

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

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

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

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

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #03052499;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_component {
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

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

.fs-cc-banner_button {
  color: #fff;
  text-align: center;
  background-color: #4353ff;
  border: 2px solid #4353ff;
  border-radius: 500px;
  min-width: 140px;
  margin-left: 16px;
  padding: 10px 20px;
  font-size: 16px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #f5f5f5;
  border-color: #4353ff;
}

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

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

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

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

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

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

.fs-cc-prefs_button {
  background-color: #4353ff;
  border: 2px solid #4353ff;
  border-radius: 500px;
  margin-right: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #4353ff;
  background-color: #fff;
  border-color: #4353ff;
}

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

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

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

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

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 16px;
  height: 16px;
}

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

.fs-cc-prefs_text {
  color: #021a69;
  font-size: 12px;
}

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

.fs-cc-banner_text {
  color: #616161;
  margin-right: 24px;
}

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

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

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

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

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

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

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

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

.fs-cc-banner_component {
  z-index: 1000;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.grid-2 {
  grid-row-gap: 17px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

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

.grid-2.a.mid {
  grid-column-gap: 16px;
  grid-row-gap: 17px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.lightbox {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.lb {
  border: .5px solid var(--black);
  height: 300px;
}

.h1-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
}

.h1-2.small {
  text-align: center;
  font-size: 20px;
}

.lottie-animation {
  z-index: 90;
  height: 400px;
  margin-top: -150px;
  margin-bottom: -180px;
  position: relative;
}

.case-study-section {
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.case-study-section.grey {
  background-color: var(--black-2);
}

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

.right-image.home-3 {
  background-image: url('../images/NorthLane13.webp');
  border-radius: 10px;
}

.logo-div-2 {
  z-index: 1;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
  position: relative;
}

.logo-div-2._2 {
  margin-bottom: 0;
  margin-left: 20px;
}

._2-image-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 100%;
  min-height: 100px;
  margin-top: 0;
  margin-bottom: 30px;
  display: grid;
}

._2-image-div._3-img {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

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

.left-image.home-2 {
  background-image: url('../images/LowerBourne12.webp');
  border-radius: 10px;
}

.left-image.home-1 {
  background-image: url('../images/house-extension.webp');
  border-radius: 10px;
}

.red-line {
  border: 3px solid #f4413c;
  width: 150px;
  height: 1px;
  margin: 0 0 20px;
}

.red-line._20t {
  border-color: #f4413c;
  margin-top: 20px;
}

.body-container-div-2 {
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-logo-link {
  z-index: 100;
  position: relative;
}

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

.hero-logo.display-none-mobile {
  object-fit: scale-down;
  margin-bottom: 10px;
}

.p {
  color: #fff;
  text-align: center;
  background-color: #0000;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
}

.p._100z {
  z-index: 100;
  position: relative;
}

.insta {
  width: 100%;
}

.bottom-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.sister-link {
  background-color: #333;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.link-block-5 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.image-2 {
  width: 150px;
}

.h3-call-btn {
  color: #fff;
  background-color: #00aeed;
  margin-top: 60px;
  padding: 15px 60px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease-in-out;
  box-shadow: 0 1px 3px #00000026;
}

.h3-call-btn:hover {
  transform: scale(.96);
}

.h3-call-btn.top {
  margin-top: 20px;
}

.btn_group {
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

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

.btn_group.flex.center {
  z-index: 9;
  justify-content: flex-end;
  position: relative;
  inset: 0% 0% 10%;
}

.link-block-4 {
  background-color: #00000063;
  border-radius: 20px;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 12px 20px;
  text-decoration: none;
}

.body-container-div-3 {
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.body-container-div-3.gallery {
  width: 100%;
  max-width: 100%;
}

.lightbox-2 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

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

.h2 {
  color: #000;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

.h2.center {
  color: #00aeed;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-block-5 {
  padding-top: 10px;
}

.lightbox-3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.code-embed {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.map-insert {
  background-image: url('../images/New-Map-01.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 500px;
  display: block;
}

.service-heading {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.8em;
  line-height: 1.8;
}

.bullet-title {
  color: #fff;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
}

.bullet-title.number {
  margin-bottom: 5px;
  margin-left: 10px;
  display: block;
}

.lightbox-4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.text-block-6 {
  padding-top: 10px;
}

.case-study-section-2 {
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.vimeo {
  width: 100%;
}

.video {
  height: 80vh;
  position: absolute;
}

.menu-pop {
  width: 69%;
  margin-left: auto;
}

.hero-content-2 {
  z-index: 2;
  background-color: #ffffff17;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.contact-details-div {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 90%;
  display: flex;
  position: static;
}

.main-div {
  z-index: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.dropdown-toggle {
  color: #fff;
  text-align: right;
  background-color: #000;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-toggle:hover {
  background-color: #00aeed;
}

.menu-button-2 {
  z-index: 1;
  text-align: right;
  width: 100%;
  margin-right: 0;
  display: block;
}

.menu-button-2.w--open {
  background-color: #0000;
  margin-right: auto;
  position: static;
}

.icon-2 {
  color: #fff;
  width: 100%;
  font-size: 26px;
}

.dropdown-link-2 {
  color: #fff;
  text-align: right;
  background-color: #000;
}

.dropdown-link-2:hover {
  background-color: #00aeed;
}

.dropdown-link-2.w--current {
  color: #fff;
  background-color: #00aeed;
}

.arrow-link {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 110px;
  margin-top: 0;
  text-decoration: none;
  display: flex;
  position: absolute;
  bottom: 60px;
}

.top-link-2 {
  color: #fff;
  letter-spacing: 1.5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
}

.service-nav {
  z-index: 99999;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.email-link {
  color: #fff;
  letter-spacing: 1.5px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.navbar-3 {
  background-color: #0000;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu-2 {
  z-index: 9999999;
  background-color: #000000ba;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 60px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.dropdown {
  width: 100%;
}

.new-bg-video {
  z-index: 1;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.hero-arrow {
  width: 40px;
}

.nav-link-2 {
  z-index: auto;
  color: #fff;
  text-align: right;
  background-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  overflow: visible;
}

.nav-link-2:hover {
  background-color: #00aeed;
}

.nav-link-2.w--current {
  color: #fff;
  background-color: #00aeed;
}

@media screen and (max-width: 991px) {
  .container.announcement-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.nav-fluid {
    width: 100%;
    padding: 0;
  }

  .announcement-contact-info.margin-right-20 {
    flex: none;
  }

  .announcement-contact-info.margin-right-20.mobile-display-none {
    display: none;
  }

  .announcement-wrapper {
    flex-direction: row;
  }

  .header-social-media {
    justify-content: space-around;
  }

  .nav-menu {
    background-color: #fff;
    width: 100%;
    margin-top: 20px;
  }

  .nav-menu.margin-auto {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    margin-top: 0;
  }

  .dropdown-menu-link {
    color: #000;
    background-color: #0000;
  }

  .dropdown-menu-link:hover {
    color: #000;
  }

  .drop-down-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .drop-down-link:hover {
    color: #fff;
  }

  .dropdown-list.w--open {
    background-color: #f7f7f7;
    border-radius: 0;
    margin-top: 0;
  }

  .nav-link {
    background-color: var(--deep-sky-blue-2);
    color: #fff;
    border-bottom: 1px solid #0000000d;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link:hover {
    background-color: var(--deep-sky-blue);
    color: #fdfdfd;
    border-radius: 0;
  }

  .header-social-icon {
    color: #353535;
    background-color: #fdfdfd;
    border-right: 1px solid #3535353d;
    width: 33.3%;
    height: auto;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 22px;
  }

  .header-social-icon.margin-right-none {
    text-align: left;
    font-size: 22px;
  }

  .dropdown-link {
    background-color: var(--deep-sky-blue-2);
    color: #fff;
    border-bottom: 1px solid #0000000d;
    border-radius: 0;
    width: 100%;
  }

  .dropdown-link:hover {
    background-color: var(--deep-sky-blue);
    color: #fff;
    border-radius: 0;
  }

  .dropdown-link.w--open {
    background-color: var(--deep-sky-blue);
    color: #fff;
  }

  .dropdown-link.no-border {
    color: #fff;
    border-bottom-style: none;
  }

  .burger-menu {
    color: #fff;
    font-size: 1.2em;
  }

  .nav-toggle {
    border-radius: 6px;
    margin-right: 10px;
  }

  .nav-toggle.w--open {
    background-color: #0000;
  }

  .nav {
    background-color: #353535;
    height: 100%;
    margin-bottom: auto;
  }

  .navbar-2 {
    justify-content: space-between;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-large-text {
    font-size: 3em;
  }

  .hero-para-text {
    font-size: 1.1em;
  }

  .section-h1-wrapper.display-flex {
    flex-direction: column-reverse;
  }

  .section-h1-wrapper.display-flex.rev, .section-h1-wrapper.display-flex.top.rev {
    flex-direction: column;
  }

  .default-btn.margin-top-20 {
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .default-btn.margin-top-20.default-btn-outline.marginleft-20 {
    margin-left: auto;
    margin-right: auto;
  }

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

  .left-section {
    width: 100%;
    margin-bottom: 20px;
  }

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

  .right-section {
    width: 100%;
    margin-bottom: 40px;
  }

  .card-bullet._3-rpw, .bullet-list-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inner-text-content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .inner-text-content.remove {
    width: 90%;
  }

  .inner-text-content.otherside {
    margin-right: auto;
  }

  .container-fluid.display-flex {
    flex-direction: column;
  }

  .section-2-img-full {
    width: 100%;
  }

  .section-2-img-full.project {
    background-position: 50%;
  }

  .text-content {
    width: 100%;
  }

  .text-content._0b {
    padding-bottom: 0;
  }

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

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

  .content-h3-box {
    width: 100%;
  }

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

  .contact-block-1 {
    border-bottom: 1px #8a8a8a;
    border-right-style: none;
    justify-content: flex-start;
    width: 100%;
  }

  .contact-block-1.border-none {
    border-bottom-style: none;
  }

  .footer-mid-content {
    justify-content: space-between;
    width: 90%;
    padding-left: 0;
  }

  .footer-mid-content.google, .footer-section {
    height: 600px;
  }

  .footer-contact-info {
    flex-direction: column;
  }

  .scroll-up {
    z-index: 1;
  }

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

  .left-arrow {
    color: #fff;
    background-color: #ef233c;
    bottom: -25%;
    left: auto;
    right: 15%;
  }

  .customer-title {
    font-size: 1.2rem;
  }

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

  .right-arrow {
    background-color: #ef233c;
    inset: auto 0% -25% auto;
  }

  .text-block-3 {
    color: #fff;
  }

  .block-quote {
    font-size: 1.25rem;
  }

  .heading-2 {
    padding-right: 0;
  }

  .slider-2 {
    position: relative;
  }

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

  .fa-2.dark {
    font-family: "Fa 300", sans-serif;
  }

  .bullet-icon-2.black-line {
    width: 32px;
    height: 32px;
  }

  .contact-page-map {
    width: 100%;
  }

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

  .grid-2.a.mid {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    display: flex;
  }

  .case-study-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  ._2-image-div._3-img {
    grid-template-columns: 1fr;
  }

  .bottom-div {
    flex-flow: column;
    display: flex;
  }

  .h3-call-btn {
    display: none;
  }

  .div-block-2 {
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .lb-2 {
    height: 250px;
  }

  .case-study-section-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-pop {
    width: 100%;
  }

  .contact-details-div {
    text-align: left;
    align-items: flex-start;
  }

  .main-div {
    height: 700px;
  }

  .dropdown-toggle {
    background-color: #000;
  }

  .menu-button-2 {
    text-align: right;
    background-color: #0000;
  }

  .menu-button-2.w--open {
    text-align: right;
    background-color: #2b2b2b;
    width: 100%;
  }

  .icon-2 {
    color: #afafaf;
  }

  .arrow-link {
    bottom: 40px;
  }

  .service-nav {
    grid-column-gap: 16px;
    grid-row-gap: 7px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .nav-menu-2 {
    background-color: #2b2b2b;
  }

  .new-bg-video {
    height: 800px;
  }

  .nav-link-2 {
    text-align: right;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .announcement-contact {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    padding: 20px 40px;
  }

  .container.announcement-container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .container.nav-fluid {
    padding-top: 0;
  }

  .announcement-contact-info.margin-right-20 {
    margin-right: 0;
  }

  .announcement-contact-info.margin-right-20.mobile-display-none {
    margin-right: 10px;
  }

  .announcement-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-large-text {
    font-size: 2.5em;
  }

  .hero-slider {
    min-height: 50vh;
  }

  .para.para-sm {
    width: 100%;
  }

  .card-bullet._2-row, .card-bullet._1-row, .bullet-list-grid {
    grid-template-columns: 1fr;
  }

  .section-2-img-full {
    min-height: 250px;
  }

  .brand-band-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .footer-col {
    width: 100%;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .footer-mid-content {
    flex-direction: column;
    padding-top: 0;
  }

  .footer-mid-content.google {
    height: 500px;
  }

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

  .qoate-symbol {
    margin-left: 0;
    padding-bottom: 10px;
    padding-right: 0;
    line-height: 1;
    position: static;
  }

  .underline {
    width: 50%;
  }

  .left-arrow {
    width: 80px;
    height: 80px;
    margin-top: 20px;
    margin-left: auto;
    padding-top: 0;
    bottom: -5%;
    right: 20%;
  }

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

  .testimonials-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .right-arrow {
    width: 80px;
    height: 80px;
    bottom: -5%;
  }

  .slide-3 {
    margin-left: auto;
    margin-right: auto;
  }

  .testemonials-slider {
    width: 95%;
    position: static;
  }

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

  .slider-2 {
    justify-content: center;
    align-items: center;
    display: block;
    position: static;
  }

  .bottom-left-div-2 {
    align-items: center;
    width: 100%;
    padding: 30px;
  }

  .contact-left-div-2 {
    width: 100%;
  }

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

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

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

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

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

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

  .grid-2.a, .grid-2.a.mid {
    grid-template-columns: 1fr 1fr;
  }

  .lb {
    height: 300px;
  }

  .case-study-section {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .right-image {
    width: 100%;
    height: 350px;
  }

  ._2-image-div {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .left-image {
    width: 100%;
    height: 350px;
  }

  .hero-logo {
    max-width: 200px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .h3-call-btn {
    top: 471px;
  }

  .lb-2 {
    height: 200px;
    display: block;
  }

  .map-insert {
    background-position: 0%;
  }

  .case-study-section-2 {
    height: auto;
  }

  .menu-pop {
    width: 100%;
    padding-top: 0;
  }

  .hero-content-2 {
    padding-top: 100px;
    top: auto;
    bottom: auto;
  }

  .contact-details-div {
    text-align: left;
    align-items: flex-start;
    width: 100%;
    padding-left: 5px;
  }

  .main-div {
    height: 140px;
  }

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

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

  .dropdown-link-2 {
    text-align: center;
  }

  .arrow-link {
    display: none;
    bottom: 30px;
  }

  .top-link-2 {
    font-size: 14px;
  }

  .service-nav {
    grid-column-gap: 16px;
    grid-row-gap: 7px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
  }

  .email-link {
    text-align: left;
    font-size: 14px;
  }

  .new-bg-video {
    height: 600px;
    display: flex;
  }

  .nav-link-2 {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  .announcement-contact {
    width: 100%;
  }

  .announcement-link {
    font-size: 18px;
  }

  .announcement-icon {
    font-size: 1.2em;
  }

  .announcement-contact-info.margin-right-20 {
    text-align: center;
  }

  .announcement-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .nav-menu.margin-auto {
    border-top: 1px solid #0000000d;
    width: 100%;
  }

  .brand {
    text-align: center;
  }

  .slider-arrow {
    display: none;
  }

  .hero-content {
    justify-content: center;
    align-items: center;
    width: 100%;
    top: 24%;
  }

  .hero-btn-qoute {
    display: none;
  }

  .hero-large-text {
    font-size: 1.5em;
  }

  .hero-large-text.services.baner-title {
    text-align: center;
    font-size: 25px;
  }

  .section-design-1-h1 {
    padding-bottom: 10px;
  }

  .card-bullet._3-rpw {
    grid-template-columns: 1fr;
  }

  .bullet-list-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .heading-3-text {
    margin-bottom: 20px;
    font-size: 1.3em;
  }

  .h3-cta-call-btn {
    text-align: center;
    flex: none;
    width: 100%;
    margin-right: 0;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-mid-content.google {
    background-position: 0%;
    background-size: cover;
    height: 300px;
  }

  .footer-copy {
    margin-top: 40px;
  }

  .services-link-box {
    min-height: 250px;
  }

  .text-block-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .qoate-symbol {
    padding-bottom: 10px;
    padding-right: 0;
    font-size: 2rem;
  }

  .underline {
    width: 30%;
  }

  .testemonials-text {
    line-height: 1;
  }

  .left-arrow {
    width: 60px;
    height: 60px;
    bottom: -10%;
  }

  .testemonial-content-everything {
    width: 92%;
    padding-right: 0;
  }

  .container-2.test-container {
    width: 95%;
  }

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

  .right-arrow {
    width: 60px;
    height: 60px;
    bottom: -10%;
  }

  .slide-3 {
    padding: 0;
  }

  .testemonials {
    overflow: hidden;
  }

  .text-block-3 {
    font-size: 22px;
  }

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

  .block-quote {
    font-size: .95rem;
  }

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

  .slider-2 {
    width: 100%;
  }

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

  .foot-nav.w {
    line-height: 26px;
  }

  .baner-title {
    background-color: #00000096;
    padding: 5px;
    font-size: 26px;
  }

  .list._2-row {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .list-item {
    margin-bottom: 0;
  }

  .bullet-icon-2.black-line {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .bottom-left-div-2 {
    padding: 30px;
  }

  .bottom-nav-link-2, .bottom-nav-link-2.w--current {
    line-height: 26px;
  }

  .contact-icon-2 {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .contact-icon-2.footer {
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .contact-left-div-2, .contact-div-2.display-flex.border-bottom {
    width: 100%;
  }

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

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

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

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

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

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

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

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

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

  .grid-2.a.mid {
    flex-flow: column;
  }

  .lb {
    height: 200px;
  }

  .h1-2 {
    text-transform: uppercase;
    font-size: 27px;
    line-height: 32px;
  }

  .h1-2.small {
    font-size: 16px;
    line-height: 22px;
  }

  .case-study-section {
    height: auto;
    padding: 20px;
  }

  .right-image {
    width: 100%;
    height: 250px;
    margin-top: 0;
  }

  ._2-image-div {
    flex-direction: column;
  }

  .left-image {
    width: 100%;
    height: 250px;
  }

  .body-container-div-2 {
    width: 100%;
  }

  .hero-logo {
    width: 300px;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .hero-logo.display-none-mobile {
    margin-top: 0;
    display: block;
  }

  .p {
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .h3-call-btn.top.show {
    margin-top: 0;
    display: block;
  }

  .div-block-2 {
    align-items: center;
  }

  .link-block-4 {
    width: 100%;
    max-width: 250px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .body-container-div-3 {
    width: 100%;
  }

  .lb-2 {
    height: 250px;
  }

  .map-insert {
    height: 300px;
  }

  .case-study-section-2 {
    height: auto;
    padding: 40px 20px;
  }

  .menu-pop {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  .hero-content-2 {
    justify-content: flex-start;
    height: 140px;
    padding-top: 0;
  }

  .contact-details-div {
    width: auto;
  }

  .main-div {
    justify-content: flex-start;
    align-items: center;
    height: 400px;
  }

  .menu-button-2, .icon-2 {
    text-align: right;
  }

  .arrow-link {
    margin-bottom: 10px;
    display: none;
    bottom: 10px;
  }

  .arrow-link.w--current {
    display: none;
  }

  .top-link-2 {
    font-size: 15px;
  }

  .service-nav {
    grid-row-gap: 0px;
    text-align: center;
    background-color: #ffffff21;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 0 0;
  }

  .email-link {
    margin-top: 5px;
    font-size: 15px;
  }

  .navbar-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .nav-menu-2 {
    margin-top: 60px;
  }

  .new-bg-video {
    position: relative;
  }

  .nav-link-2 {
    text-align: center;
  }
}

#w-node-_30198d32-180e-c6a8-cc1d-c038b6a9619d-e4081963 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-a21e526e-307e-8a16-02ec-1565817bd3b4-e4081963, #w-node-a21e526e-307e-8a16-02ec-1565817bd3cd-e4081963, #w-node-a21e526e-307e-8a16-02ec-1565817bd3e6-e4081963, #w-node-_8a188656-9753-5cb7-c1b5-c3fc74050c77-e4081963 {
  place-self: auto;
}

#w-node-ac155a19-2cfb-1e51-53ac-300e3fdcf761-2afe73af {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-ac155a19-2cfb-1e51-53ac-300e3fdcf763-2afe73af, #w-node-ac155a19-2cfb-1e51-53ac-300e3fdcf765-2afe73af, #w-node-ac155a19-2cfb-1e51-53ac-300e3fdcf767-2afe73af, #w-node-ac155a19-2cfb-1e51-53ac-300e3fdcf769-2afe73af, #w-node-_4a06b0d8-fec4-9624-bf1b-6b88f303d290-2afe73af, #w-node-fbe42457-e5ba-36cf-fa3a-f1b903a04339-2afe73af {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_30198d32-180e-c6a8-cc1d-c038b6a9619d-e4081963 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a9dae87a-1e41-1c5a-4895-c9782e2c085b-e4081963 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a9dae87a-1e41-1c5a-4895-c9782e2c085b-e4081963 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55e7-5e6d55df {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55ec-5e6d55df {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55f1-5e6d55df {
    grid-area: span 2 / span 1 / span 2 / span 1;
    place-self: center;
  }

  #w-node-ac155a19-2cfb-1e51-53ac-300e3fdcf761-2afe73af {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4a06b0d8-fec4-9624-bf1b-6b88f303d290-2afe73af {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55e7-5e6d55df, #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55ec-5e6d55df {
    justify-self: center;
  }

  #w-node-_70385179-4d1c-3a17-8fc3-115a5e6d55f1-5e6d55df {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa duotone 900';
  src: url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa sharp solid 900';
  src: url('../fonts/fa-sharp-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}