@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 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 Sharp 400";
  src: url('../fonts/fa-sharp-regular-400.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;
}

@font-face {
  font-family: "Fa Sharp 300";
  src: url('../fonts/fa-sharp-light-300.ttf') format("truetype");
  font-weight: 300;
  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 100";
  src: url('../fonts/fa-thin-100.ttf') format("truetype");
  font-weight: 100;
  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: Fa6;
  src: url('../fonts/FA6-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa6 solid;
  src: url('../fonts/FA6-Solid.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Fa6 brands;
  src: url('../fonts/FA6-Brands.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Polysanstrial Neutral;
  src: url('../fonts/polysanstrial-neutral.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Polysanstrial Median;
  src: url('../fonts/polysanstrial-median.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Polysanstrial Bulky;
  src: url('../fonts/polysanstrial-bulky.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Polysanstrial Slim;
  src: url('../fonts/polysanstrial-slim.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arrow right solid;
  src: url('../fonts/arrow-right-solid.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --primary: #151282;
  --black: black;
  --silver: #838383;
  --third: #0c0b4e;
  --pale-grey: #ddd;
  --transparent: #fff0;
  --cookies-bg: #0009;
  --secondary: #100e6b;
}

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

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

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

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

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

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

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

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

.body {
  background-color: var(--white);
  color: var(--white);
  font-family: Polysanstrial Slim, Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.p {
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.p.c {
  margin-left: auto;
  margin-right: auto;
}

.button-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 20px 2px;
  margin-top: 20px;
  padding: 15px 32px;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

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

.body-section {
  color: var(--black);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.body-section.notop {
  padding-top: 100px;
  padding-bottom: 0;
}

.body-section.white {
  border-top: 1px solid var(--silver);
}

.body-section.form-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.body-section.a {
  padding-bottom: 60px;
}

.container {
  flex-direction: column;
  align-items: flex-start;
  width: 92%;
  max-width: 1600px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-bg-grad {
  background-image: linear-gradient(#0000007d, #0000007d), url('../images/Main-Ban.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  padding-bottom: 140px;
  display: flex;
  position: sticky;
}

.service-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  width: 100%;
  margin-top: 30px;
}

.service-div {
  height: auto;
}

.service-top-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-end;
  height: 350px;
  display: flex;
}

.service-top-image._2 {
  background-image: url('../images/img17.webp');
  background-position: 50%;
  background-size: cover;
}

.service-top-image._3 {
  background-image: url('../images/img9.webp');
  background-position: 50%;
  background-size: cover;
}

.service-top-image._4 {
  background-image: url('../images/img24.webp');
  background-position: 50% 30%;
  background-size: cover;
}

.service-top-image._1 {
  background-image: url('../images/img15.webp');
}

.service-number {
  color: var(--primary);
  font-family: Polysanstrial Bulky, Tahoma, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
}

.service-box-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.service-header {
  color: var(--primary);
  text-transform: capitalize;
  margin-top: 15px;
  margin-bottom: 20px;
  margin-right: 0;
  font-family: Polysanstrial Median, Tahoma, sans-serif;
  font-size: 36px;
  font-weight: 600;
}

.service-text {
  color: var(--black);
  letter-spacing: -.2px;
  margin-bottom: 0;
  font-family: Polysanstrial Slim, Tahoma, sans-serif;
  font-size: 15px;
  line-height: 33px;
}

.service-paragraph {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-left: 40px;
  display: flex;
}

.service-link {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  margin-bottom: -5px;
  margin-right: -5px;
  text-decoration: none;
  transition: all .4s ease-in-out;
  display: flex;
  position: static;
  bottom: 10px;
  right: 10px;
  box-shadow: 0 2px 5px #0003;
}

.service-link:hover {
  transform: scale(1.2);
}

.small-sub {
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 10px;
  font-family: Poppins;
  font-size: 16.5px;
  font-weight: 400;
}

.para {
  color: var(--white);
  width: 60%;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.para.b {
  color: var(--black);
  width: 100%;
}

.para.long {
  width: 100%;
}

.img-div {
  box-shadow: -15px 17px 0 0 var(--third);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  align-items: stretch;
  width: 46%;
  display: flex;
}

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

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

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

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

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

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

.section-h1-wrapper.display-flex {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 40px;
  display: flex;
}

.right-side {
  flex: 0 auto;
  width: 45%;
}

.right-side.content {
  width: 50%;
}

.right-side._w---100 {
  width: 100%;
}

.instagram-live-feed {
  background-color: var(--white);
  width: 100%;
  margin-top: 40px;
}

.footer-col.large {
  flex-flow: wrap;
  margin-right: 60px;
  display: flex;
}

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

.footer-copy-text {
  color: var(--white);
  text-align: right;
  border-bottom: 1px #dfdfdf;
  padding-bottom: 0;
  font-size: 14px;
}

.footer-link {
  color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 32px;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

.footer-link:hover {
  color: var(--pale-grey);
  font-weight: 400;
}

.footer-link.w--current {
  color: var(--white);
}

.footer-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr .75fr;
  grid-auto-columns: 1fr;
  padding-bottom: 40px;
  display: grid;
}

.footer-section-title {
  color: #b7b5b5;
  margin-bottom: 20px;
  font-size: 1.35em;
  font-weight: 300;
}

.footer-section-title.white {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.8em;
}

.footer-section {
  background-color: var(--silver);
  border-top: 1px solid #e0e0e080;
  padding-top: 60px;
  padding-bottom: 60px;
}

.footer-copy {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: #a9a9a9;
  border-top: 1px solid #ffffff80;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer-p {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 32px;
}

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

.header-social-icon {
  color: var(--white);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-right: 28px;
  font-family: Fa6 brands, sans-serif;
  font-size: 26px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.header-social-icon:hover {
  background-color: #0000;
}

.header-social-icon.margin-right-none {
  color: var(--white);
  width: auto;
  height: auto;
  margin-right: 28px;
}

.header-social-icon.margin-right-none:hover {
  background-color: #0000;
}

.full-width-image-section {
  background-image: linear-gradient(to right, #000000cf, #fff0), url('../images/ionut-vlad-idXQEOxhmvU-unsplash.jpeg');
  background-position: 0 0, 50% 60%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.full-width-image-section.para-img {
  background-image: linear-gradient(to bottom, #00000059, #00000059), linear-gradient(90deg, var(--primary), #fff0), url('../images/img13.webp');
  background-position: 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.full-width-image-section.para-img.a {
  background-image: linear-gradient(to bottom, #00000059, #00000059), linear-gradient(90deg, var(--primary), #fff0);
}

.full-width-image-section._0 {
  background-image: url('../images/Menu-Image.webp');
  background-position: 50%;
  background-size: cover;
}

.div-full-width {
  flex: 0 auto;
  width: 100%;
}

.div-full-width._60 {
  width: 60%;
}

.nav-cta-wrapper {
  align-items: center;
  display: flex;
}

.nav-cta-wrapper.margin-left-auto {
  justify-content: space-between;
  margin-right: 0;
}

.co-logo {
  width: 150px;
}

.navbar-4 {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.logo-link {
  width: auto;
}

.dropdown-link {
  background-color: var(--black);
  color: var(--white);
  text-align: left;
  font-size: 16.5px;
  transition: all .3s;
}

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

.contact-div-2 {
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: 1600px;
  display: flex;
}

.service-nav-text {
  color: var(--white);
  margin-right: 18px;
  transition: all .35s ease-in-out;
}

.service-nav-text:hover {
  color: var(--primary);
}

.contact-section {
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
}

.service-dropdown-arrow {
  color: var(--white);
}

.nav-link {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16.5px;
  font-weight: 300;
  transition: all .3s ease-in-out;
}

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

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

.nav-link.dropdown {
  padding-left: 0;
  padding-right: 0;
}

.nav-menu-4 {
  width: 100%;
}

.banner-red {
  color: var(--primary);
  margin-left: 0;
  font-size: 62px;
}

.h1 {
  color: var(--black);
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Polysanstrial Median, Tahoma, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 54px;
}

.h1._20b {
  margin-bottom: 40px;
}

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

.gallery-hover {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  transition: all .45s ease-out;
  display: flex;
  box-shadow: 1px 1px 3px #000000bf;
}

.gallery-hover:hover {
  background-color: #0000;
}

.project1 {
  box-shadow: 26px 24px 0 -18px var(--white);
  background-image: url('../images/img14.webp'), linear-gradient(357deg, #1b1b1b99, #0000);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  height: 450px;
  text-decoration: none;
}

.services-block-home-2 {
  z-index: 10;
  text-align: center;
  background-color: #0000;
  border: 1px #edeff3;
  border-radius: 4px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.gallery-head {
  background-color: var(--silver);
  color: var(--white);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 10px;
  font-size: 25px;
  text-decoration: none;
  display: flex;
  position: relative;
}

._3x1-gallery {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: none;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-sub {
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.white-section {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: static;
}

.white-section._100 {
  background-color: var(--primary);
  color: var(--white);
}

.white-section._0 {
  color: var(--black);
  padding-top: 0;
}

.project2 {
  box-shadow: 25px 24px 0 -18px var(--white);
  background-image: url('../images/img21.webp');
  background-position: 50%;
  background-size: cover;
  height: 450px;
  text-decoration: none;
}

.project3 {
  box-shadow: 25px 25px 0 -18px var(--white);
  background-image: url('../images/img25.webp'), linear-gradient(357deg, #1b1b1b99, #0000);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  height: 450px;
  text-decoration: none;
}

.h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 400;
  line-height: 44px;
  overflow: visible;
}

.h2.b-30 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 36px;
}

.h2.b {
  color: var(--black);
}

.h3-large {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

.h3-large.b-30 {
  color: var(--white);
  text-transform: uppercase;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 30px;
  display: flex;
}

.h3-large.b-30.sm {
  color: var(--black);
  margin-bottom: 20px;
  font-size: 21px;
}

.h3-large.b-30.b {
  color: var(--black);
}

.footer-logo {
  width: 100%;
}

.footer-logo-link {
  margin-bottom: 30px;
}

.foot-div {
  width: 90%;
  max-width: 1500px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.list-head {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

.list-head.bullet-font-icon-2 {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.comments {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 20px auto;
  display: grid;
}

.comments.grid {
  grid-column-gap: 16px;
  grid-row-gap: 21px;
  grid-template-columns: 1fr 1fr 1fr;
}

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

.comment-column {
  border: 2px solid #c61f2f;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 420.009px;
  height: 685px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  display: flex;
}

.comment-column._2 {
  background-color: var(--white);
  outline-offset: -10px;
  color: var(--black);
  border-style: solid;
  border-color: #ffffff40;
  border-radius: 6px;
  outline: 4px dashed #ececec;
  width: 100%;
  height: 100%;
  margin-left: 0;
  padding: 30px 20px;
  box-shadow: 4px 6px 5px #0000000f;
}

.comment-column._2.b {
  border-color: #00000040;
}

.bullet-font-icon-2 {
  background-color: var(--primary);
  color: #fff;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin-right: 0;
  font-family: Fa6 solid, sans-serif;
  font-size: 14px;
  font-weight: 100;
  display: flex;
}

.timeline {
  color: var(--white);
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.single-comments {
  background-color: #0000;
  flex-direction: row;
  align-items: center;
  font-size: 16.5px;
  transition: all .2s ease-in-out;
  display: flex;
}

.arrow {
  filter: invert();
  margin-top: 5px;
}

.foot-link-lower {
  color: var(--white);
  text-decoration: none;
}

.form {
  color: var(--white);
  width: 100%;
  margin-top: 40px;
}

.top-links {
  color: var(--white);
  text-align: right;
  margin-bottom: 0;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

.top-links:hover {
  color: var(--primary);
}

.top-container-black {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.font-awsome {
  color: var(--white);
  text-align: center;
  margin-right: 8px;
  font-family: Fa6 solid, sans-serif;
  font-size: 16.5px;
  font-weight: 400;
}

.font-awsome.email {
  color: var(--white);
  font-family: Fa6 solid, sans-serif;
  font-size: 16.5px;
  font-weight: 400;
}

.top-div-2 {
  background-color: #0000;
  justify-content: space-between;
  width: 92%;
  max-width: 1600px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-top {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.background-image {
  background-image: linear-gradient(#00000059, #00000059), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  min-height: 550px;
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--white);
  color: var(--white);
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

.hyperlink:hover {
  box-shadow: inset 0 -100px 0 0 var(--white);
  color: var(--primary);
}

.hyperlink.b {
  box-shadow: inset 0 -2px 0 0 var(--primary);
  color: var(--primary);
}

.hyperlink.b:hover {
  box-shadow: inset 0 -100px 0 0 var(--primary);
  color: var(--white);
}

.content-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 0;
  display: flex;
}

.content-section.orange {
  background-color: var(--third);
}

.bold-text {
  color: var(--white);
  text-transform: uppercase;
}

.h3 {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.h3._20p {
  color: var(--silver);
  margin-top: 20px;
  margin-bottom: 20px;
}

.h3-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1300px;
  display: flex;
}

.h3-logo {
  background-image: url('../images/realestate.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 450dvh;
  min-height: 200px;
  margin-bottom: 20px;
  display: flex;
}

.h3-logo.w--current {
  background-image: url('../images/elliott-builders-white-logo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 450px;
  min-height: 150px;
  margin-bottom: 20px;
}

.list-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.list-wrapper._2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}

.list-wrapper._3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 10px;
}

.top-links-2 {
  color: var(--white);
  text-align: right;
  margin-bottom: 0;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

.top-links-2:hover {
  color: var(--primary);
}

.service-nav {
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: static;
}

.button-fill-2 {
  color: #fdfdfd;
  background-color: #0000;
  border: 1.5px solid #fff;
  border-radius: 2px;
  margin-top: 20px;
  padding: 15px 32px;
  font-family: Poppins;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.button-fill-2:hover {
  color: #fff;
  background-color: #f91818;
  border-width: 1.5px;
  border-color: #f91818;
}

.button-fill-2.header {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  margin-top: 0;
  margin-left: 0;
  padding: 10px 20px;
  font-size: 16px;
  transition-property: all;
  transition-duration: .45s;
}

.button-fill-2.header:hover {
  background-color: var(--black);
  color: #fff;
  border-color: #fff;
}

.top-container-black-2 {
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.service-navlink-2 {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16.5px;
  font-weight: 400;
  transition: all .45s ease-in-out;
}

.service-navlink-2:hover, .service-navlink-2.w--current {
  color: var(--primary);
}

.service-navlink-2.dropdown {
  padding-left: 0;
  padding-right: 0;
}

.co-logo-2 {
  width: 200px;
}

.service-banner {
  background-image: linear-gradient(#000000a6, #000000a6), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 100px;
  display: flex;
}

.service-banner.bs {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img4.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.hr {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img25.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.he {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img14.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.lc {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img9.webp');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.nb {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img24.webp');
  background-position: 0 0, 50% 59%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.awc {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img12.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.tet {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img4.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.gal {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img7.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.test {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/img2.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.ct {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/Main-Ban.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.st {
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/Menu-Image.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-ban-head {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 60px;
}

.service-ban-text {
  color: #fff;
  text-transform: uppercase;
  margin-top: 25px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
}

.areas-we-coverr-section {
  width: 100%;
  margin-top: 20px;
}

.areas-list {
  padding-left: 0;
}

.areas-list.areas-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.areas-list-item.areas-list-flex {
  border-bottom: 1px solid #5f5f511f;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.font-icon {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: Fa6 solid, sans-serif;
  display: flex;
}

.google-maps {
  color: var(--white);
  width: 100%;
  font-size: 15px;
}

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

.contact-div-block {
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.phone-icon {
  color: var(--white);
  font-family: Fa6 solid, sans-serif;
  font-size: 48px;
  line-height: 54px;
}

.text-block {
  color: var(--white);
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.contact-page-link {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.form-new {
  color: var(--white);
  width: 100%;
  margin-top: 40px;
  font-size: 15px;
}

.sitemap-list {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.sitemap-link {
  color: #353535;
  margin-bottom: 5px;
  font-family: Lato, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.nav-link-text {
  font-size: 15px;
  font-weight: 400;
  transition: color .45s ease-in-out;
}

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

.btn-underline {
  object-fit: fill;
  background-color: #fff;
  height: 2px;
  position: relative;
  box-shadow: inset 0 0 #c7a675;
}

.btn-underline.nav-underline {
  width: 0;
}

.btn-underline.nav-underline.sitempa {
  background-color: #282828;
}

.list {
  padding-left: 0;
}

.list._3-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.list-item {
  margin-bottom: 5px;
  list-style-type: none;
  display: flex;
}

.bullet-font-icon-4 {
  border: 1px solid var(--white);
  background-color: var(--primary);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 0;
  font-family: Fa6 solid, sans-serif;
  font-weight: 400;
  display: flex;
}

.buttons {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px #fff;
  border-radius: 0;
  height: auto;
  margin-left: 20px;
  padding: 20px 40px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  transition: all .4s;
}

.buttons:hover {
  background-color: var(--primary);
  opacity: 1;
  color: #fff;
  border: 0 #0000;
  font-weight: 400;
  transform: translate(0, -1px);
}

.buttons.dark {
  border-style: none;
  border-color: var(--white);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 40px;
  line-height: 22px;
}

.buttons.dark:hover {
  border-style: none;
  border-color: var(--white);
  background-color: var(--black);
  transform: translate(0, -6px);
}

.buttons.dark.w--current:hover {
  background-color: var(--black);
}

.buttons.dark.footer {
  margin-top: 40px;
}

.buttons._2 {
  border-style: solid;
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 0;
  padding: 20px 40px;
  line-height: 22px;
  transition-duration: .45s;
  transition-timing-function: ease-in-out;
}

.buttons._2:hover {
  border-style: solid;
  border-color: var(--pale-grey);
  color: #fff;
  background-color: #000;
  transform: translate(0, -6px);
}

.buttons.banner {
  background-color: var(--primary);
  color: var(--white);
  border-style: none;
  border-color: #000;
  border-radius: 10px 0;
  margin-right: 0;
  padding: 16px 40px;
  font-family: Poppins;
  line-height: 22px;
}

.buttons.banner:hover {
  background-color: var(--black);
  border-style: none;
  border-color: #53d7db;
  transform: translate(0, -6px);
}

.section {
  border-top: 1px solid #ebebeb;
  padding-top: 120px;
  padding-bottom: 120px;
  font-weight: 500;
  position: relative;
}

.section.cta {
  background-image: linear-gradient(90deg, var(--white) 26%, #fff0 57%), url('../images/img25.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  border-top-style: none;
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-text {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.top-text.cta {
  color: var(--primary);
  text-align: left;
  text-align: left;
  padding-bottom: 0;
}

.sticky_btn_call {
  z-index: 1000;
  color: #f0f6f8;
  text-align: center;
  background-color: #0000;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 80px;
  font-size: 1.9em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 20px;
  left: -14px;
}

.sticky_btn_call:hover {
  transform: scale(.9);
}

.lottie-animation {
  color: var(--white);
  width: auto;
  height: auto;
  font-size: 4em;
}

.btn-group {
  align-items: center;
  margin-top: 30px;
  display: flex;
}

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

.lb-img {
  object-fit: cover;
  width: 100%;
  height: 260px;
}

.testimonials {
  width: 100%;
}

.dropdown-toggle {
  color: var(--white);
  transition: all .3s;
}

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

.button {
  border: 1px solid var(--silver);
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-left: 20px;
  padding: 20px 40px;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  transition: all .4s;
}

.button:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: translate(0, -5px);
}

.button.email {
  border-color: var(--primary);
  background-color: var(--transparent);
  color: var(--white);
  margin-left: 20px;
}

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

.button.dark {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  margin-left: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

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

.button._0 {
  margin-left: 0;
}

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

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

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #fff;
}

.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-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: var(--black);
  margin-right: 24px;
}

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

.fs-cc-prefs_label {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs_text {
  color: var(--black);
  font-size: 12px;
}

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

.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_container {
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.fs-cc-prefs_close-icon {
  color: var(--primary);
  width: 16px;
  height: 16px;
  display: flex;
}

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

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

.fs-cc-prefs_title {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_trigger {
  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-manager_trigger {
  display: none;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 400;
  text-decoration: none;
}

.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, .fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_component {
  z-index: 997;
  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-banner_close-icon {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: var(--cookies-bg);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.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_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

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

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #f5f5f5;
}

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

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

.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_space-medium {
  margin-bottom: 40px;
}

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

.form-white-bg {
  color: var(--black);
  background-color: #fff;
  border-radius: 7px;
  justify-content: center;
  align-items: flex-start;
  width: 65%;
  padding: 20px;
  display: flex;
}

.button-2 {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px #fff;
  border-radius: 0;
  height: auto;
  margin-right: 12px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  transition: all .4s;
}

.button-2:hover {
  opacity: 1;
  color: #fff;
  background-color: #ac1313;
  border: 0 #0000;
  font-weight: 400;
  transform: translate(0, -1px);
}

.button-2.dark {
  background-color: var(--primary);
  color: #fff;
  border-style: none;
  border-color: #000;
  border-radius: 0;
  margin-top: 25px;
  margin-right: 0;
  padding: 20px 40px;
  line-height: 22px;
}

.button-2.dark:hover {
  background-color: var(--black);
  color: #fff;
  border-style: none;
  border-color: #53d7db;
  transform: translate(0, -6px);
}

.section-tittle-2 {
  color: #000;
  font-size: 40px;
  line-height: 50px;
}

.section-tittle-2.cta {
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 36px;
  line-height: 46px;
}

.container-2 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 92%;
  max-width: 1600px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-2.z {
  flex-flow: row;
}

.contact-left {
  width: 30%;
}

.contact-span-2 {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.form-2 {
  width: 100%;
}

.cta-text-2 {
  color: var(--primary);
  margin-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.button_icon-1 {
  filter: invert();
  padding: 1px;
  position: absolute;
  inset: 0%;
}

.button-group {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group._2 {
  margin-top: 1.5rem;
}

.button-text {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-family: Polysanstrial Median, Tahoma, sans-serif;
  font-weight: 400;
}

.home-hero_content-left {
  flex: none;
  max-width: 800px;
  position: relative;
}

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

.home-hero_component {
  position: relative;
}

.home-hero-h1 {
  letter-spacing: -2px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 60px;
  font-weight: 500;
  line-height: 52px;
}

.home-hero_content-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-end start;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  display: flex;
}

.button-3 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border: 1.45px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  background-color: #0000;
  border-radius: .875rem;
  justify-content: center;
  align-items: center;
  padding: .575rem 1.5rem;
  font-size: 16px;
  text-decoration: none;
  transition: all .5s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  overflow: hidden;
}

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

.button-3.is-secondary {
  border-style: none;
  border-radius: 0;
  padding: 0;
  transition-property: none;
  display: block;
}

.button-3.is-secondary:hover {
  background-color: #0000;
}

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

.margin-bottom.margin-small {
  margin: 1rem 1rem 1rem 0;
}

.home-hero_scoll-wrapper {
  width: 1px;
  height: 10rem;
  position: absolute;
  inset: auto auto -14rem 0;
  overflow: hidden;
}

.button-icon-2 {
  padding: 1px;
  position: absolute;
  inset: 0%;
  transform: translate(-131%);
}

.home-hero_ix-trigger {
  z-index: -1;
  margin-top: 100vh;
  position: absolute;
  inset: 0%;
}

.button_icon-wrapper {
  width: 1rem;
  height: 1rem;
  position: relative;
  overflow: hidden;
}

.button-text-2 {
  letter-spacing: -.02em;
}

.button-text-2.text-color-white {
  color: var(--white);
  margin-bottom: 0;
  text-decoration: none;
}

.navbar_logo-line {
  background-color: #ff5330;
  width: 1.75px;
  height: 2rem;
}

.navbar_logo-line.black {
  background-color: #ff5330;
}

.navbar_menu-button {
  z-index: 999;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  cursor: pointer;
  background-color: #d6d6d6;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: .375rem .5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar_logo-word-image {
  height: 1.5rem;
  padding-top: 1px;
  padding-bottom: 1px;
}

.navbar_logo-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.navbar_logo-wrapper.is-mobile {
  display: none;
}

.navbar_menu-line-top {
  background-color: #292929;
  width: 100%;
  height: 2px;
}

.navbar_right-wrapper {
  z-index: 99999;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar_container {
  justify-content: space-between;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar_menu-line-middle {
  background-color: #292929;
  width: 100%;
  height: 1.5px;
}

.navbar {
  z-index: 999;
  -webkit-backdrop-filter: blur(.5rem);
  backdrop-filter: blur(.5rem);
  background-color: #e7e2dc1f;
  align-items: center;
  width: 100%;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.button-4 {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  border: 1px solid var(--white);
  background-color: var(--primary);
  color: var(--white);
  letter-spacing: .5px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: .575rem 1.5rem;
  text-decoration: none;
  transition: all .5s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  overflow: hidden;
}

.button-4:hover {
  background-color: var(--third);
}

.button-4.top {
  background-color: var(--primary);
  margin-top: .15rem;
  margin-bottom: .15rem;
}

.button-4.top:hover {
  border-color: var(--silver);
  background-color: var(--silver);
}

.button-4.top:active {
  background-color: #ff5330;
  border-color: #ff5330;
}

.navbar_logo-word-wrapper {
  position: relative;
  overflow: hidden;
}

.navbar_logo-word-wrapper.is-1 {
  padding-right: .625rem;
}

.navbar_logo-word-wrapper.is-2 {
  padding-left: .75rem;
}

.navbar_menu-line-bottom {
  background-color: #292929;
  width: 100%;
  height: 2px;
}

.navbar_right-inner-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  display: flex;
  position: relative;
}

.image-2 {
  height: 70px;
}

.paragraph {
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-family: Polysanstrial Slim, Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

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

.menu_text-link {
  z-index: 1;
  letter-spacing: -.02em;
  font-size: 4.75rem;
  line-height: 1.2;
  position: relative;
}

.menu_text-link.is-6, .menu_text-link.is-4, .menu_text-link.is-5, .menu_text-link.is-3, .menu_text-link.is-2, .menu_text-link.is-1 {
  font-size: 30px;
  line-height: 1.1;
}

.menu_left-panel {
  perspective: 1000px;
  background-color: #b9b9b9;
  background-image: url('../images/Menu-Image.webp');
  background-position: 50%;
  background-size: cover;
  width: 50%;
  position: relative;
}

.menu_tablet-nav-spacer {
  display: flex;
}

.menu_parent {
  z-index: 1000;
  width: 50%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.menu_click-whipe {
  background-color: #737373;
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.menu_image-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 80%;
  display: flex;
  position: fixed;
  inset: 0% -75% 0% auto;
  overflow: hidden;
}

.menu-link-parent {
  color: #fff;
  border-bottom: 1.5px solid #272486;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px 60px;
  display: flex;
  position: relative;
}

.menu_icon-image {
  z-index: 1;
  height: 25px;
  position: relative;
}

.menu_card-whipe {
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.menu_right-panel {
  z-index: 1;
  background-color: var(--primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.paragraph-2 {
  margin-bottom: 0;
}

.hero-div {
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bottom-logo {
  width: 400px;
}

.bullet-icon {
  border: 1px solid var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-right: 10px;
  font-family: "Fa Solid 900", sans-serif;
  display: flex;
}

.text-span {
  font-size: 39px;
  line-height: 35px;
}

.live-chat-top-text {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  position: static;
}

.live-chat-top-text.block {
  color: #494949;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 2px auto auto 2px;
}

.live-chat-bottom-text {
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

.live-chat-bottom-text.bold {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}

.chat-section {
  background-color: #b7b5b5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.whatsapp-icon {
  color: #fff;
  display: block;
}

.small-whatsapp-icon {
  margin-right: 10px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.chat-block {
  color: var(--black);
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.whatsapp-container {
  z-index: 30;
  background-color: var(--primary);
  cursor: pointer;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: var(--black);
  transform: scale(1.05);
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 300px;
  max-width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: none;
  overflow: hidden;
}

.livechat-button {
  background-color: var(--primary);
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.livechat-button:hover {
  background-color: var(--black);
}

.top-section-2 {
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-icon-chat {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

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

.image-3.long {
  background-color: #3c3c3c;
  border-radius: 6px;
  width: auto;
  height: 70px;
  padding: 10px;
}

.div-block {
  background-color: #ffffffeb;
  border-radius: 6px;
  flex-flow: column;
  padding: 10px;
  display: flex;
  box-shadow: 2px 3px 5px #000000ad;
}

.div-block.a {
  padding: 40px;
}

.text-block-2 {
  color: var(--black);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
}

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

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

.text-span-2 {
  background-color: var(--silver);
  background-image: url('../images/we.webp');
  background-position: 40%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 6px;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: -50% auto auto 20px;
  box-shadow: 0 2px 5px #0003;
}

.icon-blick {
  z-index: 30;
  flex-flow: row;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 110px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.icon-con {
  z-index: 30;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  border: 1px solid #ffffff4d;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Fa Brands 400", sans-serif;
  text-decoration: none;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.icon-con:hover {
  background-color: var(--black);
  transform: scale(1.05);
}

.icon-con.a {
  margin-left: 5px;
  margin-right: 5px;
}

.icon-con._2 {
  font-family: "Fa Solid 900", sans-serif;
}

.icon-con._2.socials {
  font-family: "Fa Brands 400", sans-serif;
}

.link-block {
  width: auto;
  margin-right: 20px;
}

.div-to-stop-the-background-images-from-touching-because-apparently-thats-an-issue {
  background-color: var(--secondary);
  width: 100%;
  height: 30px;
}

.div-block-2 {
  width: 100%;
  margin-bottom: 20px;
}

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

.just-giving-div {
  background-color: var(--secondary);
  text-align: left;
  width: 45%;
}

.just {
  color: var(--pale-grey);
  font-weight: 400;
  text-decoration: none;
}

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

  .container {
    max-width: 1800px;
  }

  .hero-bg-grad {
    height: 950px;
  }

  .service-grid {
    width: 100%;
  }

  .container-2 {
    max-width: 1800px;
  }

  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .body-section, .body-section.form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .service-div {
    width: 100%;
  }

  .service-top-image._2 {
    height: 375px;
  }

  .service-box-wrapper {
    justify-content: flex-start;
    width: 100%;
  }

  .service-paragraph {
    margin-left: 40px;
  }

  .para {
    width: 100%;
  }

  .img-div {
    width: 100%;
    min-height: 400px;
    margin-bottom: 40px;
  }

  .inner-img {
    margin-top: 60px;
  }

  .section-h1-wrapper.display-flex {
    flex-direction: column-reverse;
    margin-top: 40px;
  }

  .right-side, .right-side.content, .right-side._w---100 {
    width: 100%;
  }

  .footer-col.large {
    margin-right: 0;
  }

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

  .footer-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 32px;
    grid-template-columns: 1.25fr 1.25fr 1fr;
  }

  .footer-copy {
    flex-direction: column;
    place-content: center;
    justify-items: stretch;
    display: flex;
  }

  .footer-p {
    font-size: 1.25em;
  }

  .header-social-media {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0%;
    margin-bottom: 0;
  }

  .header-social-icon {
    color: #fdfdfd;
    background-color: #0000;
    border-right: 1px #353535;
    width: 10%;
    margin-right: 0;
  }

  .header-social-icon.margin-right-none {
    background-color: #0000;
    border-right-style: none;
    border-right-width: 0;
    width: 10%;
    margin-right: 0;
  }

  .div-full-width, .div-full-width._60 {
    width: 100%;
  }

  .navbar-4 {
    justify-content: flex-end;
    width: 90%;
  }

  .dropdown-link {
    text-align: right;
    padding: 20px 25px;
    font-size: 16px;
    display: block;
  }

  .contact-div-2 {
    flex-direction: row;
  }

  .nav-link {
    background-color: var(--black);
    text-align: right;
    width: 100%;
    font-size: 16px;
  }

  .icon-4 {
    color: var(--white);
  }

  .banner-red {
    font-size: 50px;
  }

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

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

  .h1 {
    font-size: 50px;
  }

  .gallery-hover {
    padding-bottom: 60px;
  }

  .project1 {
    margin-bottom: 10px;
  }

  .gallery-head {
    font-size: 28px;
  }

  ._3x1-gallery {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .gallery-sub {
    margin-top: 20px;
    font-size: 15px;
  }

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

  .project2 {
    margin-bottom: 10px;
  }

  .footer-logo {
    width: 400px;
  }

  .footer-logo-link {
    width: 100%;
  }

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

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

  .top-links {
    font-size: 16px;
    display: flex;
  }

  .font-awsome.email {
    display: block;
  }

  .top-div-2 {
    width: 95%;
  }

  .content-section.orange {
    background-color: var(--third);
  }

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

  .top-links-2 {
    font-size: 16px;
    display: flex;
  }

  .icon-5 {
    color: #fff;
  }

  .menu-button-2 {
    background-color: #f94d18;
  }

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

  .button-fill-2.header {
    margin-right: 0;
    display: none;
  }

  .service-navlink-2 {
    text-align: right;
    background-color: #000;
    width: 100%;
    font-size: 16px;
  }

  .service-banner {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

  .google-maps {
    width: 100%;
  }

  .contact-div-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block, .contact-page-link {
    font-size: 16px;
  }

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

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

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

  .btn-group {
    margin-bottom: 50px;
  }

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

  .lb-img {
    height: 180px;
  }

  .dropdown-toggle {
    width: 100%;
  }

  .form-white-bg {
    width: 100%;
    margin-top: 40px;
  }

  .container-2.z {
    flex-flow: column;
  }

  .contact-left {
    width: 100%;
  }

  .home-hero_content-left {
    flex: 0 auto;
  }

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

  .home-hero_component {
    height: auto;
  }

  .home-hero_content-wrapper {
    grid-row-gap: 4rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    height: auto;
    padding-top: 6rem;
    position: static;
  }

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

  .menu_text-link, .menu_text-link.is-6, .menu_text-link.is-4, .menu_text-link.is-5, .menu_text-link.is-3, .menu_text-link.is-2 {
    font-size: 22px;
  }

  .menu_text-link.is-1 {
    margin-bottom: 0;
    font-size: 22px;
  }

  .menu_left-panel {
    display: none;
  }

  .menu_tablet-nav-spacer {
    flex: none;
    width: 100%;
    height: 10vh;
    padding: 0;
    display: block;
  }

  .menu_parent {
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: none;
  }

  .menu-link-parent {
    padding-top: 20px;
    padding-bottom: 20px;
    text-decoration: none;
  }

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

  .menu_right-panel {
    background-color: #0000;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
  }

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

@media screen and (max-width: 767px) {
  .p {
    font-size: 15.5px;
  }

  .body-section, .body-section.form-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-bg-grad {
    height: 100vh;
    padding-top: 0;
  }

  .inner-img {
    margin-top: 40px;
  }

  .section-h1-wrapper.display-flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
  }

  .footer-col {
    text-align: center;
    width: 100%;
  }

  .footer-col.large {
    justify-content: flex-start;
    align-items: center;
  }

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

  .footer-wrapper {
    grid-template-columns: 1fr;
    place-items: center;
  }

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

  .header-social-media {
    justify-content: center;
  }

  .full-width-image-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .dropdown-link, .nav-link {
    font-size: 15px;
  }

  .banner-red {
    margin-left: 0;
    font-size: 34px;
  }

  .h1 {
    font-size: 34px;
    line-height: 50px;
  }

  .white-section {
    padding-top: 40px;
  }

  .h3-large.b-30 {
    font-size: 3.5em;
  }

  .footer-logo {
    width: 400px;
  }

  .comments, .comments.grid, .comments.grid._2 {
    grid-template-columns: 1fr;
  }

  .timeline {
    text-align: left;
  }

  .top-links {
    font-size: 15px;
  }

  .top-container-black {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-div-2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

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

  .menu-button-2 {
    background-color: #f9b328;
  }

  .top-container-black-2 {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-navlink-2 {
    font-size: 15px;
  }

  .service-banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-banner.tet {
    height: 300px;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .service-ban-text {
    text-align: center;
    width: 80%;
    line-height: 26px;
  }

  .contact-div-block {
    min-height: 180px;
  }

  .text-block, .contact-page-link {
    font-size: 18px;
  }

  .buttons {
    text-align: center;
  }

  .buttons.banner {
    display: none;
  }

  .section.cta {
    background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/img25.webp');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .btn-group {
    margin-bottom: 40px;
  }

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

  .lb-img {
    height: 150px;
  }

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

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

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

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

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

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

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

  .home-hero-h1 {
    font-size: 40px;
  }

  .home-hero_content-wrapper {
    padding-top: 4rem;
  }

  .button-3 {
    text-align: center;
    flex-wrap: wrap;
  }

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

  .home-hero_scoll-wrapper {
    display: none;
  }

  .navbar_logo-word-image {
    height: 1.65rem;
  }

  .navbar_logo-wrapper.is-mobile {
    display: flex;
  }

  .button-4 {
    text-align: center;
    flex-wrap: wrap;
  }

  .navbar_logo-word-wrapper.is-1 {
    padding-right: .25rem;
  }

  .navbar_logo-word-wrapper.is-2 {
    padding-left: .25rem;
  }

  .menu_text-link {
    font-size: 3.5rem;
  }

  .just-giving-div {
    width: 70%;
  }
}

@media screen and (max-width: 479px) {
  .p {
    font-size: 14.5px;
    line-height: 25px;
  }

  .button-outline {
    font-size: 14.5px;
  }

  .body-section {
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .body-section.notop {
    padding-top: 40px;
  }

  .body-section.form-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .container {
    width: 85%;
  }

  .hero-bg-grad {
    height: 80vh;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .service-grid {
    grid-row-gap: 19px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .service-div {
    height: auto;
  }

  .service-top-image, .service-top-image._2 {
    height: 250px;
  }

  .service-number {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 50px;
  }

  .service-box-wrapper {
    flex-direction: column;
    margin-top: 0;
  }

  .service-header {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 38px;
  }

  .service-text {
    font-size: 1rem;
  }

  .service-paragraph {
    margin-left: 0;
  }

  .para {
    font-size: 15px;
    line-height: 24px;
  }

  .img-div {
    box-shadow: -8px 6px 0 0 var(--white);
    min-height: 250px;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .inner-img {
    min-height: 250px;
    margin-top: 0;
  }

  .section-h1-wrapper.display-flex {
    margin-top: 20px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col.large {
    margin-right: 0;
  }

  .footer-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    text-align: center;
    grid-template-columns: 1.25fr;
    padding-bottom: 20px;
  }

  .footer-section-title.white {
    font-size: 1.6em;
  }

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

  .footer-copy {
    align-items: center;
    width: 100%;
  }

  .header-social-icon {
    margin-left: 10px;
  }

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

  .full-width-image-section.para-img {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .full-width-image-section._0 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .nav-cta-wrapper.margin-left-auto {
    display: block;
  }

  .co-logo {
    width: 125px;
  }

  .navbar-4 {
    text-align: center;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .logo-link {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .dropdown-link {
    text-align: center;
    font-size: 16px;
    display: block;
  }

  .contact-div-2 {
    flex-direction: column;
    width: 100%;
    max-width: none;
  }

  .service-nav-text {
    margin-left: 20px;
  }

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

  .nav-link {
    text-align: center;
    font-size: 16px;
  }

  .nav-link.w--current {
    text-align: center;
  }

  .icon-4 {
    color: var(--white);
    font-size: 32px;
  }

  .banner-red {
    margin-left: 0;
    font-size: 30px;
  }

  .h1 {
    margin-top: 0;
    font-size: 30px;
    line-height: 40px;
  }

  .gallery-hover {
    padding-bottom: 20px;
  }

  .gallery-hover:hover {
    padding-bottom: 120px;
  }

  .project1 {
    height: 250px;
  }

  .services-block-home-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-head {
    font-size: 22px;
  }

  ._3x1-gallery {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .gallery-sub {
    margin-top: 10px;
    font-size: 13px;
  }

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

  .white-section._100 {
    padding-top: 60px;
  }

  .project2, .project3 {
    height: 250px;
  }

  .h2.b-30 {
    font-size: 26px;
    font-weight: 300;
    line-height: 32px;
  }

  .h3-large.b-30 {
    flex-flow: wrap;
    font-size: 26px;
    display: block;
  }

  .h3-large.b-30.sm {
    margin-bottom: 10px;
  }

  .footer-logo {
    width: 160px;
  }

  .footer-logo-link {
    margin-bottom: 0;
  }

  .footer-logo-link.w--current {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: inline-flex;
  }

  .list-head {
    text-align: left;
    font-size: 14.5px;
    line-height: 25px;
  }

  .comment-column {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    height: auto;
    display: grid;
  }

  .comment-column._2 {
    outline-offset: -10px;
    outline: 4px #ececec;
    grid-template-rows: auto auto auto;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .bullet-font-icon-2 {
    flex: none;
  }

  .timeline {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    font-size: 14.5px;
  }

  .single-comments {
    margin-bottom: 0;
    padding-right: 10px;
  }

  .top-links {
    text-align: center;
    line-height: 23px;
  }

  .top-links.top {
    margin-top: 10px;
  }

  .top-container-black {
    flex-direction: column;
    padding-top: 0;
    display: none;
  }

  .font-awsome {
    margin-right: 10px;
    font-size: 20px;
  }

  .font-awsome.email {
    margin-left: 0;
    margin-right: 10px;
    font-size: 20px;
  }

  .contact-top {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .background-image {
    min-height: 400px;
  }

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

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

  .h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .h3-logo, .h3-logo.w--current {
    width: 200px;
  }

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

  .list-wrapper._2, .list-wrapper._3 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    grid-template-columns: 1fr;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .top-links-2 {
    text-align: center;
    line-height: 23px;
  }

  .top-links-2.top {
    margin-top: 10px;
  }

  .icon-5 {
    color: #fff;
    font-size: 32px;
  }

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

  .service-nav {
    padding-top: 12px;
  }

  .button-fill-2.header {
    margin-top: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    display: none;
  }

  .top-container-black-2 {
    flex-direction: column;
    padding-top: 0;
  }

  .service-navlink-2 {
    text-align: center;
    font-size: 16px;
  }

  .service-navlink-2.w--current {
    text-align: center;
  }

  .co-logo-2 {
    width: 200px;
  }

  .service-banner {
    height: 300px;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .service-ban-head {
    text-align: center;
    font-size: 40px;
    line-height: 50px;
  }

  .service-ban-text {
    width: 90%;
    margin-top: 20px;
  }

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

  .contact-div-block {
    min-height: 200px;
  }

  .text-block, .contact-page-link {
    font-size: 16.5px;
  }

  .list._3-row {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .bullet-font-icon-4 {
    flex: none;
  }

  .buttons {
    margin-bottom: 10px;
  }

  .buttons.dark {
    width: auto;
  }

  .buttons._2 {
    width: 161.591px;
    margin-top: 10px;
    margin-left: 0;
  }

  .buttons.banner {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .section.cta {
    padding: 30px 10px;
  }

  .sticky_btn_call {
    width: 70px;
    height: auto;
    bottom: 1%;
    left: auto;
    right: 1%;
  }

  .btn-group {
    flex-flow: wrap;
    align-items: flex-start;
    margin-bottom: 0;
  }

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

  .lb-img {
    height: 120px;
  }

  .dropdown-toggle {
    padding-left: 40px;
  }

  .button {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }

  .button.email {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

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

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

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

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

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

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

  .button-2 {
    margin-bottom: 10px;
  }

  .button-2.dark {
    width: auto;
  }

  .section-tittle-2 {
    font-size: 30px;
    line-height: 40px;
  }

  .section-tittle-2.cta {
    width: 100%;
    font-size: 30px;
    line-height: 36px;
  }

  .container-2 {
    width: 85%;
  }

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

  .cta-text-2 {
    width: 100%;
  }

  .button-text {
    letter-spacing: .1em;
    font-size: 12px;
  }

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

  .home-hero-h1 {
    letter-spacing: 0;
    font-size: 30px;
    line-height: 30px;
  }

  .button-3 {
    letter-spacing: 0;
    flex-flow: row;
    font-size: 13px;
  }

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

  .button_icon-wrapper, .navbar_logo-wrapper {
    display: none;
  }

  .navbar_logo-wrapper.is-desktop {
    display: block;
  }

  .button-4 {
    display: none;
  }

  .paragraph.smaller {
    text-align: left;
    font-size: 16px;
  }

  .menu_text-link {
    letter-spacing: -.03em;
    font-size: 3.25rem;
  }

  .menu_text-link.is-6, .menu_text-link.is-4, .menu_text-link.is-5, .menu_text-link.is-3, .menu_text-link.is-2 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .menu_text-link.is-1 {
    font-size: 18px;
  }

  .menu_left-panel {
    width: 0%;
  }

  .menu_parent {
    display: none;
  }

  .menu-link-parent {
    padding: 15px 6vw;
  }

  .menu-link-parent.w--current {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .menu_icon-image {
    height: .9rem;
  }

  .menu_right-panel {
    width: 100%;
  }

  .bottom-logo {
    width: 200px;
  }

  .text-span {
    font-size: 20px;
    line-height: 21px;
  }

  .whatsapp-block {
    margin-bottom: 10px;
    margin-right: 10px;
    inset: auto 0% 0% auto;
  }

  .live-icon {
    width: 12px;
    height: 13px;
  }

  .whatsapp-container {
    width: 65px;
    height: 65px;
    bottom: 10px;
    right: 0;
  }

  .whatsapp-chat {
    width: 280px;
    max-width: 280px;
    height: 40vh;
    position: relative;
  }

  .livechat-button {
    width: 90%;
  }

  .image-3, .image-3.long {
    height: 60px;
  }

  .div-block {
    width: 100%;
  }

  .div-block.a {
    padding: 20px;
  }

  .icon-blick {
    z-index: 22;
    flex-flow: column;
    margin-bottom: 10px;
    margin-right: 10px;
    inset: auto 0% 90px auto;
  }

  .icon-con {
    bottom: 10px;
    right: 0;
  }

  .icon-con.a {
    margin: 5px 0;
  }

  .div-block-3 {
    grid-template-columns: 1fr;
  }

  .just-giving-div {
    text-align: left;
    width: auto;
  }
}

#w-node-_7cd9a03a-3660-0c5d-79b5-8f61c0ef1951-abc7489e {
  justify-self: end;
}

#w-node-_86dc6770-16cb-81fb-c036-7e9b77c027e6-abc7489e, #w-node-f144fa74-7035-038d-61cc-54a3e89c38a7-abc7489e, #w-node-_6eba55bf-997e-67b8-6385-042e8a8d2233-abc7489e, #w-node-_3ee81e69-aa64-9f71-f0c3-601841aae282-abc7489e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a44f7773-d406-a8e8-ee9a-cd0874986af5-abc7489e {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_80a39957-184d-cff1-23dd-d059bb39d682-abc7489e, #w-node-_98ad4002-6f3a-9f1b-de22-4e36e1cc41ed-abc7489e, #w-node-b751fee3-ec2a-d925-ee62-043d3ca0cff1-abc7489e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1e940b0a-1211-2880-edb3-72043d76c632-3d76c62f {
  place-self: center;
}

#w-node-_1e940b0a-1211-2880-edb3-72043d76c635-3d76c62f, #w-node-_1e940b0a-1211-2880-edb3-72043d76c654-3d76c62f {
  place-self: start;
}

#w-node-_1e940b0a-1211-2880-edb3-72043d76c67b-3d76c62f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_932bf91b-23e1-5afc-09ef-5e557add9d10-abc748a3, #w-node-_932bf91b-23e1-5afc-09ef-5e557add9d15-abc748a3, #w-node-_932bf91b-23e1-5afc-09ef-5e557add9d1a-abc748a3, #w-node-b3689960-7f8b-6e93-dc6e-45ab7cd03e54-abc748a3, #w-node-_3e3bc9db-8abf-50eb-6a5a-b3f4eab5ccd0-abc748a3, #w-node-_18b43489-8814-1d0e-8ff9-0e3eb6dd101b-abc748a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-fb636678-bb7c-654c-6df3-3e05c694379d-abc748a3, #w-node-_5b649ab6-7d5a-0220-d8a5-d7564b8dccd1-abc748a3, #w-node-_229df1ca-e124-9741-0d48-ddf72cc2fef4-abc748a3, #w-node-fd728def-f69a-3c81-4e48-dc787fc8f35c-abc748a3, #w-node-dd94a382-7e72-144c-eb4f-7487fce47c75-abc748a3, #w-node-_1fbb1b94-4d2b-99e4-684d-d37b88a20092-abc748a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fcda223d-e3da-bf84-2f37-8a0d8dbb0131-abc748a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_21d04508-2538-1f16-9f87-2413f1d5259f-abc748a3, #w-node-_21d04508-2538-1f16-9f87-2413f1d525a3-abc748a3, #w-node-_21d04508-2538-1f16-9f87-2413f1d525a7-abc748a3, #w-node-_21d04508-2538-1f16-9f87-2413f1d525ab-abc748a3, #w-node-_21d04508-2538-1f16-9f87-2413f1d525af-abc748a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06b07039-82b3-5e89-cadc-f464da1de6b0-abc748a5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b0b8f46c-144c-f8cb-6e8a-70c289d43a7c-abc748a7, #w-node-_47a6ed01-bfd4-5b72-9901-40829ced5680-abc748a7, #w-node-_7d2d7bae-5a94-626d-1d14-3a8f9915bbdd-abc748a7, #w-node-_7aa64ad8-c2c1-8756-bc72-7a084cc78dff-abc748a7, #w-node-_22fd7c95-a0fb-3466-1589-9eecbb3b54ff-abc748a7, #w-node-_52cd83c8-cc3b-9208-57b1-f5da11c8b8c4-abc748a7, #w-node-_7335fae8-080b-b3ce-2547-6c24cdadcbda-abc748a7, #w-node-f3a0dfd5-c2c3-d680-f9c7-f8553bdf45d5-abc748a7, #w-node-dc8c07f1-71d1-1bb5-8067-c4010da5e789-abc748a7, #w-node-bf653349-cc91-4697-d871-d020c5f77f8d-abc748a7, #w-node-_4bb05dc4-1f3d-f756-60f3-01455301bae8-abc748a7, #w-node-_9caf785b-1fcf-e92e-c2cf-bee433361b93-abc748a7, #w-node-_318f2f11-3405-8785-6ba6-675b2edfdc7a-abc748a7, #w-node-_08d3627e-8edc-6ff5-ef26-0bca4e7817af-abc748a7, #w-node-fe36c815-82a8-7a1c-8d82-80ac1a569a37-abc748a7, #w-node-_354ef2f5-d0bb-80c6-80f3-ce6873812551-abc748a7, #w-node-_44282aa0-c13a-5a95-8e68-45ac83c75be0-abc748a7, #w-node-_25103077-cc10-d6d5-b919-c61410f5a770-abc748a7, #w-node-_35d29da2-b2d0-9a58-621e-d55a33f5b6b9-abc748a7, #w-node-_766e053e-0910-6388-361e-c156e4ad8caf-abc748a7, #w-node-f06efb8f-d223-b79f-f141-e9a7f9bbbdc0-abc748a7, #w-node-c6e818b4-34aa-017d-14f5-903b9b042b5c-abc748a7, #w-node-aeefc318-259c-6562-f491-4ee0674d67fe-abc748a7, #w-node-_9c28a361-b17c-94b8-1dff-39183f2c9b77-abc748a7, #w-node-ab95333b-969d-621d-3f91-9c37560f8344-abc748a7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46ce2777-8558-e7db-5dc5-1db4ec53e2a5-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_46ce2777-8558-e7db-5dc5-1db4ec53e2a9-abc748a8, #w-node-b5b44c0b-fcd7-29ac-e359-6bba8a0e905c-abc748a8, #w-node-_800e819b-231a-3050-2b38-ccb2d51db956-abc748a8, #w-node-_981edb9c-d8c4-178f-a990-ad9f55c0d478-abc748a8, #w-node-d95c7438-6922-ce04-b745-16edcf43ef50-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-aba7dd33-ce40-eefb-8e92-723d83034d00-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-aba7dd33-ce40-eefb-8e92-723d83034d04-abc748a8, #w-node-aba7dd33-ce40-eefb-8e92-723d83034d08-abc748a8, #w-node-aba7dd33-ce40-eefb-8e92-723d83034d0c-abc748a8, #w-node-aba7dd33-ce40-eefb-8e92-723d83034d10-abc748a8, #w-node-aba7dd33-ce40-eefb-8e92-723d83034d14-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bb521dc8-d277-0766-07d6-eb72001c4b4a-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-bb521dc8-d277-0766-07d6-eb72001c4b4e-abc748a8, #w-node-bb521dc8-d277-0766-07d6-eb72001c4b52-abc748a8, #w-node-bb521dc8-d277-0766-07d6-eb72001c4b56-abc748a8, #w-node-bb521dc8-d277-0766-07d6-eb72001c4b5a-abc748a8, #w-node-bb521dc8-d277-0766-07d6-eb72001c4b5e-abc748a8, #w-node-bb521dc8-d277-0766-07d6-eb72001c4b62-abc748a8, #w-node-f0a81453-5748-061e-12c8-e051fd8827e6-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bca2-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bca6-abc748a8, #w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bcaa-abc748a8, #w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bcae-abc748a8, #w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bcb2-abc748a8, #w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bcb6-abc748a8, #w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bcba-abc748a8, #w-node-b11e9a1a-789a-4167-e816-9e9d4b27c52a-abc748a8, #w-node-f9d70b7f-2766-ad9a-21f6-5438439b024e-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_74556b81-9e50-dcd4-06b1-94921ef60221-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_74556b81-9e50-dcd4-06b1-94921ef60225-abc748a8, #w-node-_74556b81-9e50-dcd4-06b1-94921ef60229-abc748a8, #w-node-_74556b81-9e50-dcd4-06b1-94921ef6022d-abc748a8, #w-node-_74556b81-9e50-dcd4-06b1-94921ef60231-abc748a8, #w-node-_74556b81-9e50-dcd4-06b1-94921ef60235-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_776de47b-f630-6697-de80-ccce62da216e-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_776de47b-f630-6697-de80-ccce62da2172-abc748a8, #w-node-_776de47b-f630-6697-de80-ccce62da2176-abc748a8, #w-node-_776de47b-f630-6697-de80-ccce62da217a-abc748a8, #w-node-_776de47b-f630-6697-de80-ccce62da217e-abc748a8, #w-node-_66a756e8-c299-bc54-84df-9e37d26010eb-abc748a8, #w-node-_15ffe630-1a9e-52d5-d809-8c564aa34e82-abc748a8, #w-node-_08512be5-f440-aa65-e066-0b835fc1eee2-abc748a8, #w-node-d9514d6d-16aa-8d2a-005a-06b1443397b2-abc748a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e0d9-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e0dd-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0e1-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0e5-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0e9-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0ed-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e0f1-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e0f5-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0f9-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0fd-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e101-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e105-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e109-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e10d-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e111-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e115-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e119-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e11d-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e121-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e125-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e129-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e12d-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e131-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e135-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e139-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e13d-abc748a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e14d-abc748a9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_6d804b57-76ff-dc00-39fd-939054e2e151-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e155-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e159-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e15d-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e161-abc748a9, #w-node-c745ac9e-b8b2-0d14-ee3b-2f1f72a5280a-abc748a9, #w-node-eddf8c3b-aefc-b0e2-3797-28d93a75422a-abc748a9, #w-node-_175a5039-01de-a01e-49f5-913f25974103-abc748a9, #w-node-c687a891-f616-fa0d-ea59-7e52fb077f5e-abc748a9, #w-node-c687a891-f616-fa0d-ea59-7e52fb077f62-abc748a9, #w-node-c687a891-f616-fa0d-ea59-7e52fb077f66-abc748a9, #w-node-c687a891-f616-fa0d-ea59-7e52fb077f6a-abc748a9, #w-node-c687a891-f616-fa0d-ea59-7e52fb077f6e-abc748a9, #w-node-_03ea1e3a-7e07-b822-27de-07a88ddf8ce2-abc748aa, #w-node-_03ea1e3a-7e07-b822-27de-07a88ddf8ce6-abc748aa, #w-node-_03ea1e3a-7e07-b822-27de-07a88ddf8cea-abc748aa, #w-node-_03ea1e3a-7e07-b822-27de-07a88ddf8cee-abc748aa, #w-node-_03ea1e3a-7e07-b822-27de-07a88ddf8cf2-abc748aa, #w-node-_03ea1e3a-7e07-b822-27de-07a88ddf8cf6-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc36-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc3a-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc3e-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc42-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc46-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc4a-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc4e-abc748aa, #w-node-_3ebd3ba4-0d01-7f4d-f382-b57f3643bc52-abc748aa, #w-node-a3514ae8-5cc7-05de-9cac-557bcdd704fd-abc748ab, #w-node-a3514ae8-5cc7-05de-9cac-557bcdd70501-abc748ab, #w-node-a3514ae8-5cc7-05de-9cac-557bcdd70505-abc748ab, #w-node-a3514ae8-5cc7-05de-9cac-557bcdd70509-abc748ab, #w-node-a3514ae8-5cc7-05de-9cac-557bcdd7050d-abc748ab, #w-node-e71d7461-37e7-cfce-9ff3-f53b54c65248-abc748ab, #w-node-e71d7461-37e7-cfce-9ff3-f53b54c6524c-abc748ab, #w-node-e71d7461-37e7-cfce-9ff3-f53b54c65250-abc748ab, #w-node-e71d7461-37e7-cfce-9ff3-f53b54c65254-abc748ab, #w-node-e71d7461-37e7-cfce-9ff3-f53b54c65258-abc748ab, #w-node-e71d7461-37e7-cfce-9ff3-f53b54c6525c-abc748ab, #w-node-c7c4e5fe-b9d9-abcd-9f1d-ec5048837d78-abc748ab, #w-node-_45e33701-86e4-7604-3070-938eedb32efb-abc748ab, #w-node-fe96177d-2acc-f399-717e-3d9fc16de0de-abc748ac, #w-node-fe96177d-2acc-f399-717e-3d9fc16de0e2-abc748ac, #w-node-fe96177d-2acc-f399-717e-3d9fc16de0e6-abc748ac, #w-node-fe96177d-2acc-f399-717e-3d9fc16de0ea-abc748ac, #w-node-fe96177d-2acc-f399-717e-3d9fc16de0ee-abc748ac, #w-node-bc5d6076-7a42-60e0-2477-24fbf2d1821a-abc748ac, #w-node-d7aa703e-f0d2-2245-7c2f-3509582e9f61-abc748ac, #w-node-a5ec809d-e848-f6ca-e0cc-6b1269605d4d-abc748ac, #w-node-a0cde35e-67a5-cc3e-7cd2-4ad48c06411c-abc748ac, #w-node-_0e76bb1b-55c0-4de8-9082-8bf53dc6e6f1-abc748ac, #w-node-_0980eae7-8a13-1631-ead2-f82197cf8879-abc748ac, #w-node-_62a791b6-8a9c-bc2f-6119-85fb83e7c27c-abc748ac, #w-node-b1874ed3-d235-661f-0cd8-5207ae51f34d-abc748ac, #w-node-_97603386-6edf-5e26-2aac-6131899957ce-abc748ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2316b197-b18b-68f9-cf26-ebcdfecf1017-abc748ac, #w-node-_2316b197-b18b-68f9-cf26-ebcdfecf102f-abc748ac, #w-node-_2316b197-b18b-68f9-cf26-ebcdfecf1047-abc748ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

@media screen and (max-width: 991px) {
  #w-node-_7cd9a03a-3660-0c5d-79b5-8f61c0ef1951-abc7489e {
    justify-self: auto;
  }

  #w-node-_86dc6770-16cb-81fb-c036-7e9b77c027e6-abc7489e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_80a39957-184d-cff1-23dd-d059bb39d682-abc7489e, #w-node-_98ad4002-6f3a-9f1b-de22-4e36e1cc41ed-abc7489e, #w-node-b751fee3-ec2a-d925-ee62-043d3ca0cff1-abc7489e, #w-node-_1e940b0a-1211-2880-edb3-72043d76c632-3d76c62f {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_1e940b0a-1211-2880-edb3-72043d76c67b-3d76c62f {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_06b07039-82b3-5e89-cadc-f464da1de6b0-abc748a5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1e940b0a-1211-2880-edb3-72043d76c632-3d76c62f {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_1e940b0a-1211-2880-edb3-72043d76c635-3d76c62f, #w-node-_1e940b0a-1211-2880-edb3-72043d76c654-3d76c62f, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e14d-abc748a9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a44f7773-d406-a8e8-ee9a-cd0874986af5-abc7489e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_1e940b0a-1211-2880-edb3-72043d76c632-3d76c62f, #w-node-_1e940b0a-1211-2880-edb3-72043d76c635-3d76c62f, #w-node-_1e940b0a-1211-2880-edb3-72043d76c654-3d76c62f {
    justify-self: start;
  }

  #w-node-_1e940b0a-1211-2880-edb3-72043d76c67b-3d76c62f {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_932bf91b-23e1-5afc-09ef-5e557add9d10-abc748a3, #w-node-_932bf91b-23e1-5afc-09ef-5e557add9d15-abc748a3, #w-node-_932bf91b-23e1-5afc-09ef-5e557add9d1a-abc748a3, #w-node-b3689960-7f8b-6e93-dc6e-45ab7cd03e54-abc748a3, #w-node-_3e3bc9db-8abf-50eb-6a5a-b3f4eab5ccd0-abc748a3, #w-node-_18b43489-8814-1d0e-8ff9-0e3eb6dd101b-abc748a3, #w-node-fcda223d-e3da-bf84-2f37-8a0d8dbb0131-abc748a3, #w-node-_46ce2777-8558-e7db-5dc5-1db4ec53e2a5-abc748a8, #w-node-aba7dd33-ce40-eefb-8e92-723d83034d00-abc748a8, #w-node-bb521dc8-d277-0766-07d6-eb72001c4b4a-abc748a8, #w-node-_2cf34e03-b445-f0a9-3851-cb27eae0bca2-abc748a8, #w-node-_74556b81-9e50-dcd4-06b1-94921ef60221-abc748a8, #w-node-_776de47b-f630-6697-de80-ccce62da216e-abc748a8, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0d9-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e0f1-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e109-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e129-abc748a9, #w-node-_6d804b57-76ff-dc00-39fd-939054e2e14d-abc748a9, #w-node-_2316b197-b18b-68f9-cf26-ebcdfecf1017-abc748ac, #w-node-_2316b197-b18b-68f9-cf26-ebcdfecf102f-abc748ac, #w-node-_2316b197-b18b-68f9-cf26-ebcdfecf1047-abc748ac {
    grid-area: span 1 / span 2 / span 1 / span 2;
    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 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 Sharp 400';
  src: url('../fonts/fa-sharp-regular-400.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;
}
@font-face {
  font-family: 'Fa Sharp 300';
  src: url('../fonts/fa-sharp-light-300.ttf') format('truetype');
  font-weight: 300;
  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 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  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: 'Fa6';
  src: url('../fonts/FA6-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 solid';
  src: url('../fonts/FA6-Solid.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 brands';
  src: url('../fonts/FA6-Brands.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polysanstrial Neutral';
  src: url('../fonts/polysanstrial-neutral.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polysanstrial Median';
  src: url('../fonts/polysanstrial-median.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polysanstrial Bulky';
  src: url('../fonts/polysanstrial-bulky.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Polysanstrial Slim';
  src: url('../fonts/polysanstrial-slim.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arrow right solid';
  src: url('../fonts/arrow-right-solid.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}