@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 Solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #000;
  --white: white;
  --yellow: #ffde59;
  --transparent: #fff0;
  --dark-grey: #181818;
  --grey: #a7a7a7;
}

.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(--black);
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.hero {
  background-image: linear-gradient(#00000080, #00000080), url('../images/lsj-fb-19.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.hero.svs {
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.nav-section {
  z-index: 999;
  width: 100%;
  height: auto;
  position: fixed;
}

.navbar {
  background-color: var(--black);
  border-bottom: 1px solid #fff0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.contact-link {
  background-color: var(--yellow);
  color: var(--black);
  border-radius: 50px;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  transition: all .2s;
}

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

.nav-menu {
  color: #fff;
}

.dropdl {
  background-color: var(--transparent);
  color: var(--black);
  transition: all .2s;
}

.dropdl:hover {
  background-color: var(--black);
  color: var(--white);
}

.dropdl.w--current {
  background-color: var(--black);
  color: var(--yellow);
}

.dropdown-list {
  color: #ce9595;
}

.dropdown-list.w--open {
  background-color: var(--yellow);
  color: var(--white);
  margin-top: 10px;
}

.hero-div-mid {
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  display: flex;
}

.banner-heading {
  color: var(--yellow);
  text-transform: uppercase;
  text-shadow: 0 4px 4px #00000080;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
}

.box-section {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.hero-div-full {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1.25fr .25fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 90%;
  max-width: 1200px;
  height: 50%;
  margin-top: 100px;
  display: grid;
}

.hero-div-edge {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: auto;
  display: grid;
}

.button-links {
  color: #fff;
  background-color: #0000004d;
  border: 2px solid #fff;
  border-radius: 40px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  text-decoration: none;
  transition: background-color .2s;
  box-shadow: 0 3px 5px 2px #00000080;
}

.button-links:hover {
  border-color: var(--yellow);
  background-color: var(--yellow);
  color: var(--black);
}

.side-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 26px;
  transition: opacity .2s;
  display: flex;
}

.side-button.brand {
  font-family: "Fa Brands 400", sans-serif;
}

.hero-side-button-social {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-side-button-social:hover {
  color: var(--black);
  border: 2px solid #000;
  border-radius: 100%;
}

.service-boxes {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1400px;
  height: 300px;
  margin-top: -90px;
  display: grid;
}

.svs-box {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  line-height: 40px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 12px 20px 10px #0000001a;
}

.svs-box:hover {
  margin-top: -20px;
}

.svs-box.box1 {
  background-image: url('../images/lsj-fb-13.webp');
  background-position: 50%;
  background-size: cover;
}

.svs-box.box1:hover {
  margin-bottom: 0;
}

.svs-box.box2 {
  background-image: url('../images/Driveway-installation.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 14px;
}

.svs-box.box3 {
  background-image: url('../images/New-patio.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.svs-box.box4 {
  background-image: url('../images/Domestic-fencing.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.svs-box.box5 {
  background-image: url('../images/block-paving-service-box.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.svs-txt {
  background-image: linear-gradient(#000000a6, #000000a6);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 30%;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  display: flex;
}

.svs-txt-head {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  display: flex;
}

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

.h1 {
  color: var(--white);
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 38px;
}

.txt {
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.txt.box {
  border: 2px solid var(--yellow);
  background-color: var(--dark-grey);
  height: 100%;
  margin-top: -20px;
  padding: 40px 20px 30px;
}

.txt.box._0 {
  margin-top: 0;
  margin-bottom: 20px;
  position: sticky;
  top: 160px;
  box-shadow: 0 -7px 5px 6px #0003;
}

.txt.box {
  background-color: #181818;
  border: 2px solid #ffde59;
  height: 100%;
  margin-top: -20px;
  padding: 40px 20px 30px;
}

.img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  min-height: 350px;
}

.img.home1 {
  background-image: url('../images/lsj-fb-4.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img.home2 {
  background-image: url('../images/lsj-fb-17.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img.home3 {
  background-image: url('../images/lsj-fb-23.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img.hard1 {
  background-image: url('../images/lsj-fb-12.webp');
}

.img.hard2 {
  background-image: url('../images/lsj-fb-18.webp');
}

.img.hard3 {
  background-image: url('../images/lsj-fb-19.webp');
  background-position: 50% 100%;
}

.img.hard4 {
  background-image: url('../images/lsj-fb-28.webp');
  background-position: 50% 100%;
}

.img.hard5 {
  background-image: url('../images/lsj-fb-24.webp');
}

.img.drive1 {
  background-image: url('../images/lsj-fb-27.webp');
}

.img.drive2 {
  background-image: url('../images/196602403.webp');
  background-position: 50% 100%;
}

.img.pat1 {
  background-image: url('../images/lsj-fb-10.webp');
  background-position: 50%;
}

.img.pat2 {
  background-image: url('../images/lsj-fb-17.webp');
}

.img.pat3 {
  background-image: url('../images/lsj-fb-3.webp');
}

.img.pat4 {
  background-image: url('../images/lsj-fb-1.webp');
}

.img.pat5 {
  background-image: url('../images/lsj-fb-2.webp');
}

.img.dom1 {
  background-image: url('../images/lsj-fb-24.webp');
  background-position: 50%;
}

.img.dom2 {
  background-image: url('../images/lsj-fb-23.webp');
}

.img.dom3 {
  background-image: url('../images/lsj-fb-3.webp');
  background-position: 50% 0;
}

.img.dom4 {
  background-image: url('../images/lsj-fb-15.webp');
  background-position: 50% 29%;
}

.img.dom5 {
  background-image: url('../images/lsj-fb-16.webp');
}

.img.pav1 {
  background-image: url('../images/block-paving-page---use-to-replace-image-next-to-h1.webp');
  background-position: 50%;
  background-size: cover;
}

.img.pav2 {
  background-image: url('../images/lsj-fb-12.webp');
}

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

.content-div.track {
  position: relative;
}

.testimonial-section {
  background-color: var(--yellow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.home-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.home-section._0b {
  padding-bottom: 0;
}

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

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

.call-to-action {
  background-color: var(--yellow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.footer {
  z-index: 998;
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 140px;
  display: flex;
  position: relative;
}

.how-we-work-4x1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 98%;
  margin-bottom: 0;
  display: grid;
}

.hww-div {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.box-icon {
  background-color: var(--yellow);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  display: flex;
  position: relative;
}

.hww-icons {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 35px;
  display: flex;
}

.hww-bottom {
  background-color: var(--yellow);
  text-align: center;
  border-radius: 20px;
  width: 100%;
  height: 20px;
  margin-top: -2px;
}

.hww-txt {
  width: 100%;
  margin-top: 0;
  margin-bottom: 14px;
}

.hww-divide {
  width: 100%;
}

.hww-boxes-container {
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

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

.top-p._30b {
  margin-bottom: 30px;
}

.txt-top {
  text-align: right;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-right: 20px;
  display: flex;
}

.cta {
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
}

.line {
  background-color: var(--black);
  border-radius: 20px;
  width: 60%;
  height: 5px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cta-div {
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  display: flex;
}

.cta-link {
  color: var(--black);
  font-size: 45px;
  text-decoration: none;
}

.h2 {
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 0;
  font-size: 38px;
  line-height: 48px;
}

.p {
  text-align: left;
  width: 100%;
}

.p._0b {
  margin-bottom: 0;
}

.footer-div {
  z-index: 2;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  max-width: 1400px;
  margin-top: 60px;
  display: grid;
  position: relative;
}

.txt-footer {
  background-color: var(--yellow);
  text-align: center;
  border-radius: 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  display: flex;
}

.bottom-link {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
}

.bottom-link._0 {
  margin-bottom: 0;
}

.txt-footer-map {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--yellow);
  text-align: center;
  border-radius: 300px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 400px;
  height: 400px;
  display: flex;
}

.map {
  background-image: url('../images/Capture_1Capture.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 450px;
}

.button-links-footer {
  border: 2px solid var(--black);
  color: var(--black);
  border-radius: 40px;
  flex-direction: row;
  align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-links-footer:hover {
  border-color: var(--yellow);
  background-color: var(--yellow);
  color: var(--white);
}

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

.social-footer.middle {
  text-decoration: none;
}

.social-name {
  color: var(--black);
  margin-top: 0;
}

.co-logo-link {
  width: 350px;
  padding-bottom: 0;
}

.co-logo-link.w--current {
  width: 300px;
}

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

.testimonials-div {
  width: 90%;
  max-width: 1400px;
}

.how-we-work {
  border: 2px dashed var(--grey);
  background-color: var(--dark-grey);
  border-radius: 20px;
  width: 100%;
  margin-top: 40px;
  padding: 40px;
}

.hww-icon {
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
}

.small-heading {
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 38px;
}

.hww-more-2x1 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  display: grid;
}

.hww-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  min-height: 350px;
  position: relative;
}

.hww-img.patios {
  background-image: url('../images/New-patio.webp');
}

.hww-img.fencing {
  background-image: url('../images/Domestic-fencing.webp');
  background-position: 50% 36%;
}

.hww-img.block {
  background-image: url('../images/block-paving-page---use-to-replace-image-next-to-h1.webp');
  background-position: 50% 40%;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hww-img.drives {
  background-image: url('../images/Driveway-installation.webp');
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-links {
  color: var(--white);
  text-align: center;
  width: 100%;
  text-decoration: none;
}

.text-block-6 {
  color: var(--white);
  width: 70%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.how-we-work-txt {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.list {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.list._2col {
  grid-row-gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.list._2col._50t {
  margin-top: 50px;
}

.list._3col {
  grid-row-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}

.list._3col._50t {
  margin-top: 50px;
}

.list-item {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: minmax(30px, 30px) 2.25fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  transition: all .2s;
  display: grid;
}

.h3-icon {
  background-color: var(--yellow);
  color: var(--black);
  border-radius: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 13px;
  display: flex;
}

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

.bullet-heading {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.click-to-call-div {
  z-index: 2;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: auto;
  margin-bottom: 30px;
  margin-left: 80px;
  position: fixed;
  inset: auto auto 0% 0;
}

.click-to-call-button {
  background-color: var(--yellow);
  color: var(--black);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 70px;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  box-shadow: 0 3px 3px 2px #2e2e2e4d;
}

.ct-us {
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-stopper {
  width: 100%;
  height: 0;
  position: relative;
  top: -180px;
}

.h3-div {
  width: 100%;
}

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

.co-logo {
  height: 100px;
}

.bottom-logo {
  width: 100%;
  max-width: 250px;
}

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

.fs-cc-prefs_button {
  border: 2px solid var(--black);
  background-color: var(--black);
  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(--black);
  color: var(--black);
  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(--yellow);
  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 {
  background-color: var(--white);
  color: #333;
  cursor: pointer;
  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(--black);
  width: 16px;
  height: 16px;
}

.fs-cc-prefs_content {
  background-color: var(--yellow);
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

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

.fs-cc-prefs_title {
  color: var(--black);
  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(--black);
  color: var(--black);
  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 {
  width: 24px;
  height: 24px;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #0009;
  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(--black);
  background-color: var(--black);
  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(--black);
  background-color: var(--white);
  color: var(--black);
}

.fs-cc-banner_close-2 {
  background-color: var(--black);
  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;
}

.banner-sub-heading {
  color: #fff;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 500;
  line-height: 26px;
}

.buttons-div {
  justify-content: space-between;
  align-items: center;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.btn-group.btn-black {
  margin-top: 0;
  margin-bottom: 0;
}

.btn-group.auto {
  margin-top: auto;
  margin-bottom: 0;
}

.btn {
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.btn-text {
  padding-bottom: 4px;
}

.btn-text.btn-black {
  color: var(--white);
  padding-left: 4px;
  padding-right: 4px;
  font-size: 16px;
  line-height: 26px;
  transition: all .2s;
}

.btn-text.small {
  color: #fff;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
}

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

.btn-underline.btn-underline-black {
  background-color: var(--grey);
  box-shadow: inset 0 0 0 0 var(--yellow);
  height: 5px;
}

.btn-underline.btn-underline-white {
  background-color: var(--white);
  box-shadow: inset 0 0 0 0 var(--yellow);
  height: 3px;
}

.btn-underline.btn-underline-black {
  background-color: #a7a7a7;
  height: 5px;
  box-shadow: inset 0 0 #ffde59;
}

.btn-hover-color {
  background-color: var(--yellow);
  width: 0;
  position: absolute;
  inset: 0%;
}

.yellow {
  color: var(--yellow);
}

.navlink {
  color: var(--yellow);
  transition: all .2s;
}

.navlink:hover, .navlink.w--current {
  color: var(--white);
}

.dd-toggle {
  color: var(--yellow);
  transition: all .2s;
}

.dd-toggle:hover {
  color: var(--white);
}

.box-heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.box-underline {
  background-color: var(--yellow);
  width: 100%;
  height: 5px;
}

.box-underline._30b {
  margin-bottom: 30px;
}

.ul-container {
  width: 100%;
  max-width: 500px;
  height: 5px;
  margin-bottom: 30px;
}

.underline-down {
  background-color: var(--yellow);
  width: 100%;
  height: 5px;
}

.img-reveal {
  background-color: var(--dark-grey);
  width: 0;
  margin-left: -2px;
  margin-right: -2px;
  position: absolute;
  inset: 0%;
}

.fb-icon {
  color: var(--black);
  font-family: "Fa Brands 400", sans-serif;
  font-size: 30px;
  line-height: 30px;
  text-decoration: none;
}

.live-chat-top-text {
  color: var(--yellow);
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  position: static;
}

.live-chat-top-text.block {
  color: var(--yellow);
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.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: var(--yellow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.whatsapp-icon {
  color: #fff;
  width: 35px;
  min-width: 35px;
  height: 35px;
  min-height: 35px;
  display: block;
}

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

.live-chat-text {
  color: var(--black);
  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 {
  background-color: var(--black);
  border-radius: 8px;
  width: 100%;
  padding: 15px;
}

.whatsapp-container {
  z-index: 30;
  background-color: var(--yellow);
  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;
  box-shadow: 0 2px 5px #00000080;
}

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

.whatsapp-chat {
  border: 1px solid var(--dark-grey);
  background-color: var(--black);
  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(--yellow);
  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(--white);
}

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

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

.image, .image-2 {
  width: 500px;
}

.cookies-icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
}

.home-map {
  width: 100%;
}

.circle-icon {
  filter: drop-shadow(0 2px 2px #000000e6);
  width: 40px;
}

.box-icon-2 {
  background-color: #ffde59;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  display: flex;
  position: relative;
}

.btn-hover-color-2, .btn-hover-color-3 {
  background-color: #ffde59;
  width: 0;
  position: absolute;
  inset: 0%;
}

.hww-bottom-2 {
  text-align: center;
  background-color: #ffde59;
  border-radius: 20px;
  width: 100%;
  height: 20px;
  margin-top: -2px;
}

.banner-heading-2 {
  color: #ffde59;
  text-transform: uppercase;
  text-shadow: 0 4px 4px #00000080;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 50px;
  font-weight: 700;
  line-height: 50px;
}

.bg-sec {
  background-image: linear-gradient(#000000e6, #000000e6), url('../images/jake-icon.svg');
  background-position: 0 0, -8% 11%;
  background-repeat: repeat, repeat;
  background-size: auto, 300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.bg-sec._0b {
  padding-bottom: 0;
}

.hyperlink {
  color: var(--yellow);
  font-weight: 700;
}

._5x1 {
  grid-column-gap: 37px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 30px;
  display: grid;
}

._5x1.gal {
  grid-column-gap: 17px;
  grid-row-gap: 13px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 0;
}

.div-block {
  background-color: var(--white);
  color: var(--black);
  text-align: left;
  border-radius: 0;
  min-height: 300px;
  padding: 20px;
  position: relative;
}

.div-block.auto {
  min-height: auto;
  padding-bottom: 40px;
}

.div-block.auto._100 {
  width: 100%;
}

.div-block.yel {
  background-color: var(--yellow);
}

.heading {
  margin-top: 0;
  font-size: 20px;
  line-height: 26px;
}

.heading._50t {
  margin-top: 50px;
}

.text-block-7 {
  background-image: url('../images/jake-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 26px;
  display: flex;
  position: absolute;
  inset: -30px auto auto -30px;
}

.numbered-list {
  border-bottom: 2px solid var(--white);
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.heading-2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 40px;
}

.div-block-2 {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.number {
  background-color: var(--yellow);
  color: var(--black);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  font-family: Changa One, Impact, sans-serif;
  font-size: 50px;
  line-height: 35px;
  display: inline-flex;
}

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

.text-span-2 {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 900;
}

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

.image-3 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

._3x1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
}

.div-block-3 {
  background-color: var(--white);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  text-decoration: none;
  display: flex;
}

.div-block-3.c {
  justify-content: center;
  align-items: center;
}

.div-block-4 {
  aspect-ratio: 1;
  background-color: var(--yellow);
  color: var(--black);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 20px 20px 20px 0;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 40px;
  display: flex;
}

.div-block-4.brand {
  font-family: "Fa Brands 400", sans-serif;
}

.div-block-5 {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 20px;
}

.link-block {
  text-decoration: none;
}

.google-reviews {
  width: 100%;
  margin-top: 40px;
}

.insta-div, .insta-feed {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .navbar {
    background-color: var(--black);
  }

  .contact-link {
    color: var(--black);
  }

  .contact-link:hover {
    background-color: var(--white);
  }

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

  .side-button, .hero-side-button-social {
    width: auto;
    height: auto;
  }

  .hww-bottom {
    align-items: flex-start;
  }

  .cta {
    text-align: center;
    font-size: 30px;
    line-height: 44px;
  }

  .cta-link {
    font-size: 36px;
  }

  .map {
    background-image: url('../images/Capture_1Capture.webp');
    background-position: 50%;
    background-size: cover;
    height: 450px;
  }

  .button-links-footer {
    justify-content: center;
  }

  .h3-icon {
    font-family: "Fa 300", sans-serif;
    font-size: 16px;
    line-height: 16px;
  }

  .click-to-call-button {
    outline-offset: 0px;
    border-radius: 20px;
    outline: 3px #fff;
    transition: all .4s;
  }

  .click-to-call-button:hover {
    transform: scale(1.1);
  }

  .ct-us {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 19px;
  }

  .h3-div {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hww-bottom-2 {
    align-items: flex-start;
  }
}

@media screen and (min-width: 1920px) {
  .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 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .hero {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .nav-section {
    position: sticky;
  }

  .navbar {
    z-index: 999;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    padding-bottom: 0;
    display: grid;
  }

  .contact-link {
    background-color: var(--black);
    color: var(--yellow);
    border-radius: 0;
    margin-left: 0;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    transition-property: none;
  }

  .contact-link:hover {
    color: var(--white);
  }

  .contact-link.w--current {
    color: var(--yellow);
  }

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

  .dropdl {
    color: var(--yellow);
    text-align: left;
    padding: 15px 20px;
    transition: all .2s;
  }

  .dropdl:hover {
    color: var(--white);
  }

  .dropdown-list.w--open {
    background-color: var(--black);
    color: var(--white);
    margin-top: 0;
    position: relative;
  }

  .hero-div-mid {
    justify-items: center;
    margin-bottom: 30px;
  }

  .banner-heading {
    width: 100%;
  }

  .box-section {
    width: 100%;
    height: 100%;
  }

  .hero-div-full {
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    width: 90%;
  }

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

  .button-links.middle {
    margin-left: 15px;
    margin-right: 15px;
  }

  .service-boxes {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    height: 100%;
    margin-top: 20px;
    display: none;
  }

  .svs-box {
    height: 150px;
  }

  .svs-box:hover {
    margin-top: 0;
  }

  .svs-box.box1 {
    height: 150px;
  }

  .svs-box.box1:hover {
    margin-top: 0;
  }

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

  .h1 {
    text-align: center;
    font-size: 34px;
    line-height: 44px;
  }

  .img.home1 {
    min-height: 350px;
  }

  .content-div {
    width: 90%;
  }

  .call-to-action {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer {
    width: 100%;
    height: 100%;
  }

  .how-we-work-4x1 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hww-bottom {
    display: none;
  }

  .hww-boxes-container {
    width: 100%;
  }

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

  .txt-top {
    text-align: center;
    border-right-style: none;
    align-items: center;
    padding-right: 0;
  }

  .cta {
    font-size: 30px;
    line-height: 40px;
  }

  .cta-div {
    width: 90%;
  }

  .cta-link {
    font-size: 30px;
  }

  .footer-div {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 90%;
    height: 100%;
    display: flex;
  }

  .txt-footer-map {
    grid-row-gap: 0px;
  }

  .social-footer.middle {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .co-logo-link {
    text-align: center;
    width: 500px;
  }

  .testimonials-div {
    width: 95%;
  }

  .how-we-work {
    width: 100%;
    margin-top: 40px;
  }

  .how-we-work.top {
    margin-top: 10px;
  }

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

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

  .hww-img {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }

  .menu-button {
    width: 100%;
  }

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

  .icon-2 {
    color: var(--white);
    text-align: center;
  }

  .footer-links {
    width: 100%;
    margin-top: 40px;
  }

  .text-block-6 {
    color: var(--white);
    text-align: center;
  }

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

  .click-to-call-button {
    width: 150px;
  }

  .scroll-stopper {
    top: -60px;
  }

  .banner-sub-heading, .dropdown {
    width: 100%;
  }

  .navlink {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .dd-toggle {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 20px;
  }

  .img-reveal, .hww-bottom-2 {
    display: none;
  }

  .banner-heading-2 {
    width: 100%;
  }

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

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

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

  .div-block-4 {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }

  .div-block-4.brand {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nav-section {
    position: static;
  }

  .banner-heading {
    font-size: 40px;
    line-height: 45px;
  }

  .box-section {
    width: 100%;
  }

  .button-links {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    transition-property: background-color;
  }

  .side-button, .hero-side-button-social {
    font-size: 22px;
    line-height: 22px;
  }

  .svs-box:hover {
    margin-top: 0;
  }

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

  .img, .img.home1 {
    min-height: 300px;
  }

  .content-break {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .call-to-action {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer {
    width: 100%;
    padding-bottom: 140px;
  }

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

  .txt-top {
    border-right-style: none;
    align-items: center;
    padding-right: 0;
  }

  .cta {
    font-size: 24px;
    line-height: 34px;
  }

  .cta-link {
    font-size: 28px;
  }

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

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

  .co-logo-link {
    text-align: center;
  }

  .how-we-work {
    margin-top: 30px;
    padding: 30px;
  }

  .small-heading {
    margin-bottom: 15px;
  }

  .hww-more-2x1 {
    margin-top: 20px;
  }

  .hww-img {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    min-height: 300px;
  }

  .text-block-6 {
    margin-top: 0;
  }

  .list._2col, .list._3col {
    grid-template-columns: 1fr;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .click-to-call-div {
    display: block;
  }

  .click-to-call-button {
    background-color: var(--yellow);
    border-color: #132003;
    width: 140px;
  }

  .scroll-stopper {
    top: -50px;
  }

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

  .banner-sub-heading {
    font-size: 34px;
    line-height: 42px;
  }

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

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

  ._5x1, ._5x1.gal {
    grid-template-columns: 1fr 1fr;
  }

  .heading._50t {
    margin-top: 40px;
  }

  .text-block-7 {
    left: -25px;
  }

  .heading-2 {
    font-size: 28px;
    line-height: 34px;
  }

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

  .div-block-4.brand {
    margin: 10px;
  }
}

@media screen and (max-width: 479px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero.svs {
    height: 40vh;
  }

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

  .contact-link, .dropdl {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-div-mid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 10px;
    display: inline-flex;
  }

  .banner-heading {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 31px;
  }

  .hero-div-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-content: center;
    margin-top: 0;
  }

  .button-links {
    width: 40px;
    height: 40px;
  }

  .side-button, .hero-side-button-social {
    font-size: 20px;
    line-height: 20px;
  }

  ._2x1 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    display: block;
  }

  .h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 28px;
  }

  .txt.box {
    margin-top: -30px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .img {
    min-height: 250px;
  }

  .img.home1 {
    min-height: 200px;
    margin-top: 20px;
  }

  ._2x3 {
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
  }

  .content-break {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .call-to-action {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer {
    padding-bottom: 120px;
  }

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

  .hww-bottom {
    margin-bottom: 20px;
  }

  .hww-txt {
    margin-bottom: 10px;
  }

  .top-p {
    text-align: center;
    margin-bottom: 10px;
  }

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

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

  .line {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .cta-link {
    font-size: 25px;
  }

  .h2 {
    margin-top: 0;
    font-size: 24px;
    line-height: 32px;
  }

  .footer-div {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    display: flex;
  }

  .txt-footer {
    border-radius: 0;
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .txt-footer-map {
    border-radius: 0;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .map {
    height: 300px;
    margin-bottom: 0;
  }

  .co-logo-link {
    text-align: center;
    width: 100%;
  }

  .co-logo-link.w--current {
    padding-left: 20px;
    padding-right: 20px;
  }

  .how-we-work {
    margin-top: 20px;
    padding: 20px;
  }

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

  .hww-more-2x1 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
  }

  .hww-img {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    min-height: 250px;
  }

  .menu-button, .menu-button.w--open {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer-links {
    margin-top: 20px;
  }

  .click-to-call-div {
    margin-bottom: 20px;
  }

  .click-to-call-button {
    width: 120px;
    min-width: 120px;
    height: 50px;
    min-height: 50px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 13px;
    line-height: 14px;
  }

  .scroll-stopper {
    top: -40px;
  }

  .bold-text {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .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-2 {
    position: absolute;
    inset: -22px 10px auto auto;
  }

  .banner-sub-heading {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 32px;
  }

  .buttons-div {
    flex-flow: row;
    width: 100%;
  }

  .btn-group.btn-black {
    margin-top: 10px;
    display: inline-flex;
  }

  .btn {
    margin-bottom: 40px;
  }

  .btn-text.btn-black {
    font-size: 14px;
  }

  .navlink, .dd-toggle {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .box-heading {
    margin-bottom: 5px;
  }

  .box-underline._30b, .ul-container {
    margin-bottom: 20px;
  }

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

  .circle-icon {
    width: 35px;
  }

  .box-icon-2 {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
  }

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

  .banner-heading-2 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 31px;
  }

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

  .div-block {
    min-height: auto;
  }

  .heading._50t {
    margin-top: 30px;
  }

  .text-block-7 {
    width: 60px;
    height: 60px;
    top: -20px;
    left: -10px;
  }

  .numbered-list {
    flex-flow: column;
  }

  .heading-2 {
    margin-top: 10px;
    font-size: 20px;
    line-height: 28px;
  }

  .number {
    width: 60px;
    height: 60px;
    font-size: 40px;
  }

  ._2x1-copy {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    display: block;
  }

  .div-block-3.c {
    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;
  }
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-720ed497 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-720ed497, #w-node-c9075679-4548-1408-99d7-750e101367d7-720ed497, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_325459fb-1a29-9ff1-95bb-4ed930c64a17-720ed497 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-720ed497 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-720ed497, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-720ed497, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-720ed497, #w-node-b0041845-0433-6587-3a92-46494a730ae6-720ed497, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-720ed497, #w-node-e61f9eb6-a723-3410-a88e-4cd2c9939947-720ed497, #w-node-a09ef784-74ce-f78f-1f50-8a8180092b1b-720ed497, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-720ed497 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-720ed497, #w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39042-720ed497 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b6693-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b6696-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66a1-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66a4-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66af-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66b2-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66bd-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66c0-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66cc-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-b05dcafd-6522-22c9-6309-229c938b66cd-720ed497, #w-node-ec3203f5-e49d-2ac8-3a1d-d77c1bfc356e-720ed497, #w-node-ec3203f5-e49d-2ac8-3a1d-d77c1bfc356f-720ed497, #w-node-a64d5c7f-c79f-823a-17a8-f370607bf7ca-720ed497, #w-node-_30762258-615f-3302-1cc5-6de33b1984b4-720ed497, #w-node-_85bc2718-73b3-7da3-768d-369e8d5cb41c-720ed497, #w-node-a674cc8d-6dc2-82f6-8af5-14ca36126300-720ed497, #w-node-_7bebf9b1-e231-d823-c7c2-b41a178dd515-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_74c5e823-8f45-501b-8644-580a35da6375-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-a75a3108-a715-410a-a793-ff0c0413664a-720ed497, #w-node-a75a3108-a715-410a-a793-ff0c0413664b-720ed497, #w-node-_2e6fcc71-bb9b-fca4-1b38-c44ce26d9ecd-720ed497, #w-node-ff405885-28fd-3935-99a0-2d7071b95446-720ed497, #w-node-_8e2bd5c0-1899-483f-0a10-47fb0bad79c9-720ed497, #w-node-_36965d7a-4640-1896-d82e-9d11c7c186a6-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_71cdae11-d8f7-3e49-4579-1109c5ebfd8d-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-af2bb473-a29a-d1e7-c98c-677f67def7da-720ed497, #w-node-af2bb473-a29a-d1e7-c98c-677f67def7e1-720ed497, #w-node-_3ccdbab0-df0f-a4b0-c8d9-8fd2863787be-720ed497, #w-node-f756f1d8-1890-5dfc-c5c6-a427f948c133-720ed497, #w-node-a12d6ce1-4e86-0faa-6a2e-72521149f2f2-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-af2bb473-a29a-d1e7-c98c-677f67def7f4-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-de76a8bc-6abf-ea9c-7ab3-9ac81a663853-720ed497, #w-node-de76a8bc-6abf-ea9c-7ab3-9ac81a663854-720ed497, #w-node-de76a8bc-6abf-ea9c-7ab3-9ac81a66385a-720ed497, #w-node-b4e07530-79a8-3aa9-cbae-ef0bc573f778-720ed497, #w-node-_32a3e9f4-1dcf-c1c8-a419-bb07cca7b6a3-720ed497, #w-node-_8baa9e22-9e8a-467d-50ae-d4449d12b5b3-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de76a8bc-6abf-ea9c-7ab3-9ac81a663852-720ed497 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-bdf4cd85-87b2-3caa-02f3-2d136647373e-720ed497, #w-node-_413f9428-39ab-85e4-e0b6-4290b65ff7f4-b65ff7f1, #w-node-_413f9428-39ab-85e4-e0b6-4290b65ff7f5-b65ff7f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_413f9428-39ab-85e4-e0b6-4290b65ff810-b65ff7f1 {
  place-self: center;
}

#w-node-_413f9428-39ab-85e4-e0b6-4290b65ff812-b65ff7f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_413f9428-39ab-85e4-e0b6-4290b65ff819-b65ff7f1 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_413f9428-39ab-85e4-e0b6-4290b65ff81d-b65ff7f1, #w-node-c8bbae4d-3e73-75e6-ab8d-657f6cda3ee0-b65ff7f1, #w-node-_04204743-69fe-1ffe-7d8f-6080cdb731a5-b65ff7f1, #w-node-_76da365f-a111-aaf1-aed3-b2cb02f273d3-b65ff7f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-400c7f86 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-400c7f86, #w-node-c9075679-4548-1408-99d7-750e101367d7-400c7f86, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-400c7f86 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-400c7f86, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-400c7f86, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-400c7f86, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-400c7f86, #w-node-e61f9eb6-a723-3410-a88e-4cd2c9939947-400c7f86, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-400c7f86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-400c7f86, #w-node-d4acada2-7ddd-c103-2015-7a33981b0286-400c7f86, #w-node-a060b4b2-7df7-692a-7b72-3fa25a9d056c-400c7f86, #w-node-_4acc054a-81a2-7bb2-1b74-fe16f1b53da6-400c7f86, #w-node-_76e272c6-a3e1-5b03-27f5-71a933fa5d6b-400c7f86, #w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39042-400c7f86 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_351f9baf-b3d6-46bc-1abc-c4945d087896-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_351f9baf-b3d6-46bc-1abc-c4945d087898-400c7f86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_351f9baf-b3d6-46bc-1abc-c4945d087899-400c7f86, #w-node-_8bd7a169-f026-ed33-8d3a-ca2e5499a305-400c7f86, #w-node-f343b1ec-784c-bd8c-a300-9040bedae87e-400c7f86, #w-node-_1f8bf9ef-5ddc-54c9-4d73-52b5119ed77f-400c7f86, #w-node-b78b0a27-41e5-5ad1-31f1-ed1950df85db-400c7f86, #w-node-_089a2f34-4298-ca69-d6e8-9773c90af026-400c7f86, #w-node-_7e60a0d8-b6fb-9538-5539-b09f77b0074e-400c7f86, #w-node-_6c5afd5a-1606-a976-3863-ca0cfd218457-400c7f86, #w-node-_04f6e7de-490c-1b6e-6372-55da4f11c5ca-400c7f86, #w-node-_9aaa5a7b-25fe-4208-068b-1c5498bd420e-400c7f86, #w-node-_3cfc0038-82b8-f23c-7539-c1897790191e-400c7f86, #w-node-_24b859f2-7cc9-61bb-c1a7-6d9ad68bff3d-400c7f86, #w-node-_2fe0f18c-1738-92b1-d0a7-58d367c75c90-400c7f86, #w-node-_16f2057c-5d8f-7d89-8a20-b961d2bfe079-400c7f86, #w-node-c4da49cd-c364-5535-c89f-8f16e9bc4cc5-400c7f86, #w-node-d812ac3f-f895-6fd0-1ea5-b10b0d8a0279-400c7f86, #w-node-a649dc0f-6605-fc64-b54a-dc52d0b45193-400c7f86, #w-node-e3bee94b-d347-202c-0a9d-036a6b9338d1-400c7f86, #w-node-_3e3a7d06-61cd-f08b-5902-e61753b194c4-400c7f86, #w-node-_23640fe0-5b7f-5a14-7253-112eaead2226-400c7f86, #w-node-_36738605-5bb9-177e-9def-e2b7311cd584-400c7f86, #w-node-eb52ae6a-c24e-c730-cf79-b68e849f2c89-400c7f86, #w-node-d026d40d-75e2-b272-453e-4d3af1545644-400c7f86, #w-node-_5dfb7b27-bd7d-5dac-2aa8-a5fdf0a59fba-400c7f86, #w-node-_251d1c72-6e20-9a52-87f9-cb623c0980fa-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_351f9baf-b3d6-46bc-1abc-c4945d0878a0-400c7f86 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_351f9baf-b3d6-46bc-1abc-c4945d08789f-400c7f86, #w-node-_0a76ca26-d03d-56fe-5f18-d306fd0144e5-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a76ca26-d03d-56fe-5f18-d306fd0144e7-400c7f86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0a76ca26-d03d-56fe-5f18-d306fd0144e8-400c7f86, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-400c7f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-2f4499b0 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-2f4499b0, #w-node-c9075679-4548-1408-99d7-750e101367d7-2f4499b0, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-2f4499b0 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-2f4499b0, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-2f4499b0, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-2f4499b0, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-2f4499b0, #w-node-e61f9eb6-a723-3410-a88e-4cd2c9939947-2f4499b0, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-2f4499b0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0f0b361-6398-bc97-33fb-e8ebb9a9db14-2f4499b0, #w-node-e0f0b361-6398-bc97-33fb-e8ebb9a9db1b-2f4499b0, #w-node-_6decd827-4265-7003-acc0-3bc2aa5f407d-2f4499b0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-da4e237d-efd8-617e-a31d-126e035a299a-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-da4e237d-efd8-617e-a31d-126e035a299c-2f4499b0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-da4e237d-efd8-617e-a31d-126e035a299d-2f4499b0, #w-node-_44fb0fb3-7096-28a6-bf8e-87d3f53d00d0-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_44fb0fb3-7096-28a6-bf8e-87d3f53d00d2-2f4499b0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_44fb0fb3-7096-28a6-bf8e-87d3f53d00d3-2f4499b0, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-2f4499b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-7c36ef10 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-7c36ef10, #w-node-c9075679-4548-1408-99d7-750e101367d7-7c36ef10, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-7c36ef10 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-7c36ef10, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-7c36ef10, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-7c36ef10, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-7c36ef10, #w-node-e61f9eb6-a723-3410-a88e-4cd2c9939947-7c36ef10, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-7c36ef10 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ad911390-d483-0611-302b-925af0eb3f34-7c36ef10, #w-node-ad911390-d483-0611-302b-925af0eb3f3b-7c36ef10 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39042-7c36ef10 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-a0f6b2a7-d7cc-2198-6ff8-53beccea654e-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a0f6b2a7-d7cc-2198-6ff8-53beccea6550-7c36ef10 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a0f6b2a7-d7cc-2198-6ff8-53beccea6551-7c36ef10, #w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af7f-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af81-7c36ef10 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af82-7c36ef10, #w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af88-7c36ef10, #w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af89-7c36ef10, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-7c36ef10 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-7f29a7fe {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-7f29a7fe, #w-node-c9075679-4548-1408-99d7-750e101367d7-7f29a7fe, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-7f29a7fe {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-7f29a7fe, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-7f29a7fe, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-7f29a7fe, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-7f29a7fe, #w-node-e61f9eb6-a723-3410-a88e-4cd2c9939947-7f29a7fe, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-7f29a7fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f0941b4e-341d-d824-590c-464115ca28fe-7f29a7fe, #w-node-f0941b4e-341d-d824-590c-464115ca2905-7f29a7fe, #w-node-_26f90230-acd0-4c3c-c543-2a4f5d4b4c5c-7f29a7fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-7f29a7fe, #w-node-db031724-58f8-84c0-e77d-e886f2a39042-7f29a7fe, #w-node-_6ba9a535-b5c0-d854-151d-da6449271c12-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6ba9a535-b5c0-d854-151d-da6449271c14-7f29a7fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6ba9a535-b5c0-d854-151d-da6449271c15-7f29a7fe, #w-node-d114d827-a998-512b-a230-c3b933876b2c-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d114d827-a998-512b-a230-c3b933876b2e-7f29a7fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d114d827-a998-512b-a230-c3b933876b2f-7f29a7fe, #w-node-e1c937f3-5804-037c-6e30-5df8502c60ec-7f29a7fe, #w-node-_0acfbe60-c125-b34a-d909-d5e14344bc7e-7f29a7fe, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-7f29a7fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-abb75fab {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-abb75fab, #w-node-c9075679-4548-1408-99d7-750e101367d7-abb75fab, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-abb75fab {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-abb75fab, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-abb75fab, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-abb75fab, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-abb75fab, #w-node-e61f9eb6-a723-3410-a88e-4cd2c9939947-abb75fab, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-abb75fab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee436c45-da02-f15d-bf7d-85cf0c89bddd-abb75fab, #w-node-f58f9e9d-bba0-861f-5df8-7e248b1084cd-abb75fab, #w-node-a0d30b38-3893-5215-767f-7627b4b0a7c0-abb75fab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a5c46f3e-8234-23c6-2203-815a415288a1-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a5c46f3e-8234-23c6-2203-815a415288a3-abb75fab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a5c46f3e-8234-23c6-2203-815a415288a4-abb75fab, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-abb75fab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-6725239f {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-6725239f, #w-node-c9075679-4548-1408-99d7-750e101367d7-6725239f, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-6725239f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-6725239f {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-6725239f, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-6725239f, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-6725239f, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-6725239f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-6725239f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_02dad08e-65fc-3245-0097-b786054fc541-6725239f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-11cad3e2 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-11cad3e2, #w-node-c9075679-4548-1408-99d7-750e101367d7-11cad3e2, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-11cad3e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-11cad3e2 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-11cad3e2, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-11cad3e2, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-11cad3e2, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-11cad3e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-11cad3e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-11cad3e2, #w-node-db77b4bd-4117-3905-befb-19dc15fec369-11cad3e2, #w-node-cafba804-be76-58a9-0f10-53e49b6b1024-11cad3e2, #w-node-c4e3efc4-cfe8-29d1-cf1e-033beaabe716-11cad3e2, #w-node-_7b8a6929-43fe-2608-bcf7-417f39b0e058-11cad3e2, #w-node-dbfe519c-cfcf-7179-0005-c1a250e0f3bb-11cad3e2, #w-node-db031724-58f8-84c0-e77d-e886f2a39040-11cad3e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39043-11cad3e2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-db031724-58f8-84c0-e77d-e886f2a39044-11cad3e2, #w-node-d3ed37e0-e71d-f557-4ede-bbf5342e1d72-11cad3e2, #w-node-_1a0ea488-0cc3-14ce-affa-7debedd155eb-11cad3e2, #w-node-c7174fba-e1c6-fb84-2fd2-7722627ffe62-11cad3e2, #w-node-_1d87f324-1293-a938-2ea4-0b7408ba5c70-11cad3e2, #w-node-_47db7a78-c0eb-450f-c1c8-687984f7b7bd-11cad3e2, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-11cad3e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-abb79992 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-abb79992, #w-node-c9075679-4548-1408-99d7-750e101367d7-abb79992, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-abb79992 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-abb79992 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-abb79992, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-abb79992, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-abb79992, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-abb79992 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-abb79992 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-e86d4071-2c60-cd1d-e1e2-7faf88e8357b-abb79992, #w-node-_205f7971-11a0-1cd3-62f4-386ae8d15166-abb79992, #w-node-_205f7971-11a0-1cd3-62f4-386ae8d1516b-abb79992, #w-node-_205f7971-11a0-1cd3-62f4-386ae8d15170-abb79992, #w-node-_205f7971-11a0-1cd3-62f4-386ae8d15175-abb79992, #w-node-_205f7971-11a0-1cd3-62f4-386ae8d1517a-abb79992, #w-node-d6f70a0b-c52b-c6b6-38bc-45d686186de8-abb79992 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6f70a0b-c52b-c6b6-38bc-45d686186de9-abb79992 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d6f70a0b-c52b-c6b6-38bc-45d686186dea-abb79992, #w-node-d6f70a0b-c52b-c6b6-38bc-45d686186df1-abb79992, #w-node-d6f70a0b-c52b-c6b6-38bc-45d686186df8-abb79992, #w-node-d6f70a0b-c52b-c6b6-38bc-45d686186dff-abb79992, #w-node-d6f70a0b-c52b-c6b6-38bc-45d686186e06-abb79992, #w-node-d6f70a0b-c52b-c6b6-38bc-45d686186e0d-abb79992, #w-node-_02dad08e-65fc-3245-0097-b786054fc541-abb79992 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-0d929df6 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-0d929df6, #w-node-c9075679-4548-1408-99d7-750e101367d7-0d929df6, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-0d929df6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-0d929df6 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-0d929df6, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-0d929df6, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-0d929df6, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-0d929df6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-de8699a3 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-de8699a3, #w-node-c9075679-4548-1408-99d7-750e101367d7-de8699a3, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-de8699a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-de8699a3 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-de8699a3, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-de8699a3, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-de8699a3, #w-node-_47587d21-ca64-49cd-6f5b-1c12c9a5db75-de8699a3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-ef29e161 {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-ef29e161, #w-node-c9075679-4548-1408-99d7-750e101367d7-ef29e161, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-ef29e161 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-ef29e161 {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-ef29e161, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-ef29e161, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-ef29e161, #w-node-_71d14e31-f570-4bc0-ca91-b84c6727a9a2-ef29e161 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_46bddd1a-378e-8dc0-b709-e74c2d275092-ef29e161 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-a97c0def {
  justify-self: center;
}

#w-node-_26a44383-daff-ba35-abfb-ffdd17428c85-a97c0def, #w-node-c9075679-4548-1408-99d7-750e101367d7-a97c0def, #w-node-_61ed5d2b-d675-84be-37fb-6e4dfd6d193c-a97c0def {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-a97c0def {
  justify-self: center;
}

#w-node-_7989cee6-8ef9-118a-7545-a7da855dd91f-a97c0def, #w-node-_9969a6a8-1eef-4dca-0850-2450985997b0-a97c0def, #w-node-e89678d8-6bdc-fb0d-1e8c-5bd717b0ec1a-a97c0def, #w-node-_48be4f67-3fa8-24af-7075-c8aeb16911f0-a97c0def {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-a12d6ce1-4e86-0faa-6a2e-72521149f2f0-720ed497, #w-node-_32a3e9f4-1dcf-c1c8-a419-bb07cca7b6a1-720ed497 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bdf4cd85-87b2-3caa-02f3-2d1366473741-720ed497 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-ac25390f-53e0-b18b-b18a-1d05d1ab4257-d1ab4257 {
    align-self: stretch;
  }

  #w-node-_02dad08e-65fc-3245-0097-b786054fc544-400c7f86, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-2f4499b0, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-7c36ef10, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-7f29a7fe, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-abb75fab, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-6725239f, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-11cad3e2, #w-node-_02dad08e-65fc-3245-0097-b786054fc544-abb79992, #w-node-_71d14e31-f570-4bc0-ca91-b84c6727a9a5-ef29e161 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-720ed497 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-720ed497 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-720ed497 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-720ed497 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-db031724-58f8-84c0-e77d-e886f2a39042-720ed497 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-b7578998-9fc8-bca8-0d60-2da43e850be3-720ed497 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0b0d781d-8ffb-9b64-52b7-c2a3384134b4-384134b2 {
    place-self: end center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-400c7f86 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-400c7f86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-400c7f86 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-400c7f86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-db031724-58f8-84c0-e77d-e886f2a39042-400c7f86 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-b7578998-9fc8-bca8-0d60-2da43e850be3-400c7f86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_351f9baf-b3d6-46bc-1abc-c4945d0878a0-400c7f86 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_351f9baf-b3d6-46bc-1abc-c4945d08789f-400c7f86, #w-node-_351f9baf-b3d6-46bc-1abc-c4945d0878a1-400c7f86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-2f4499b0 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-2f4499b0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-2f4499b0 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-e0f0b361-6398-bc97-33fb-e8ebb9a9db14-2f4499b0, #w-node-e0f0b361-6398-bc97-33fb-e8ebb9a9db1b-2f4499b0, #w-node-_6decd827-4265-7003-acc0-3bc2aa5f407d-2f4499b0 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-7c36ef10 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-7c36ef10 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-7c36ef10 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-ad911390-d483-0611-302b-925af0eb3f34-7c36ef10, #w-node-ad911390-d483-0611-302b-925af0eb3f3b-7c36ef10 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-7c36ef10 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-db031724-58f8-84c0-e77d-e886f2a39042-7c36ef10 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-b7578998-9fc8-bca8-0d60-2da43e850be3-7c36ef10, #w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af88-7c36ef10 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-de19d7ba-86fc-9fde-a01f-ef73b8e7af89-7c36ef10 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-7f29a7fe {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-7f29a7fe {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-7f29a7fe {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-f0941b4e-341d-d824-590c-464115ca28fe-7f29a7fe, #w-node-f0941b4e-341d-d824-590c-464115ca2905-7f29a7fe, #w-node-_26f90230-acd0-4c3c-c543-2a4f5d4b4c5c-7f29a7fe, #w-node-_5e00289f-f31b-4abf-7e75-37df2fc067f0-7f29a7fe, #w-node-db031724-58f8-84c0-e77d-e886f2a39042-7f29a7fe, #w-node-e1c937f3-5804-037c-6e30-5df8502c60ec-7f29a7fe, #w-node-_0acfbe60-c125-b34a-d909-d5e14344bc7e-7f29a7fe {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-abb75fab {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-abb75fab {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-abb75fab {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-ee436c45-da02-f15d-bf7d-85cf0c89bddd-abb75fab, #w-node-f58f9e9d-bba0-861f-5df8-7e248b1084cd-abb75fab, #w-node-a0d30b38-3893-5215-767f-7627b4b0a7c0-abb75fab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-6725239f {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-6725239f {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-6725239f {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-11cad3e2 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-11cad3e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-11cad3e2 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-abb79992 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-abb79992 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-abb79992 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-0d929df6 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-0d929df6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-0d929df6 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-de8699a3 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-de8699a3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-de8699a3 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-ef29e161 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-ef29e161 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-ef29e161 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-_46bddd1a-378e-8dc0-b709-e74c2d275092-ef29e161 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-a97c0def {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: end;
  }

  #w-node-d12cadeb-1f12-8f20-2421-9937be2b528e-a97c0def {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-a97c0def {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-720ed497 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-720ed497 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-720ed497 {
    justify-self: center;
  }

  #w-node-_413f9428-39ab-85e4-e0b6-4290b65ff7f5-b65ff7f1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-400c7f86 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-400c7f86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-400c7f86 {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-2f4499b0 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-2f4499b0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-2f4499b0 {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-7c36ef10 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-7c36ef10 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-7c36ef10 {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-7f29a7fe {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-7f29a7fe {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-7f29a7fe {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-abb75fab {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-abb75fab {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-abb75fab {
    justify-self: center;
  }

  #w-node-a0d30b38-3893-5215-767f-7627b4b0a7c0-abb75fab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-6725239f {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-6725239f {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-6725239f {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-11cad3e2 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-11cad3e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-11cad3e2 {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-abb79992 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-abb79992 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_4fc702f6-4447-0c52-2542-8ec7ba1012d4-abb79992 {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-0d929df6 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-0d929df6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-de8699a3 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-de8699a3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-ef29e161 {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-ef29e161 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_46bddd1a-378e-8dc0-b709-e74c2d275092-ef29e161, #w-node-_4e08b215-452e-56d1-476d-b6c9c7427c24-ef29e161, #w-node-_54c5cf1d-66f0-e25e-58b4-d821ea604f65-ef29e161, #w-node-_255b6aee-53d0-8ba2-a266-610da0b9a518-ef29e161, #w-node-_5ed9caee-6443-983e-be10-85bc5b2130c1-ef29e161, #w-node-_26ed3134-1550-1e55-6f25-5835669c9dd8-ef29e161, #w-node-_3366af5a-78f5-81af-6856-3464b7b9d96e-ef29e161 {
    justify-self: center;
  }

  #w-node-_1a54ecad-9466-8c35-33e3-c93306fadc1d-a97c0def {
    grid-area: 2 / 1 / 3 / 3;
    justify-self: center;
  }

  #w-node-_4f4ff0be-f979-b3f1-ab64-46e0e2e8754b-a97c0def {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-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 Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}