:root {
  --white: white;
  --text: #274254;
  --dark-blue: #2b3f6d;
  --mid-green: #6ab143;
  --mid-blue: #83b6e1;
  --dark-green: #41691c;
  --black: #000;
  --transparent: #fff0;
  --light-blue: #f2f8fc;
  --darker-blue: #1f2f4f;
  --ratings: #ccd477;
  --red: red;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  color: var(--text);
  font-family: ff-real-text-pro-2, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--dark-blue);
  cursor: pointer;
  font-family: ff-real-text-pro, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 1s;
}

a:hover {
  color: var(--mid-green);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px;
}

li {
  text-align: left;
  margin-bottom: 6px;
}

strong {
  font-family: ff-real-text-pro, sans-serif;
  font-weight: 600;
}

.columns {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.ul-point {
  margin-bottom: 14px;
  padding-left: 40px;
}

.spacer {
  height: 30px;
}

.spacer.thin {
  height: 12px;
}

.title-border {
  background-color: #e89c53;
  width: 60px;
  height: 4px;
}

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

.body-container {
  z-index: 4;
  max-width: 1000px;
  position: relative;
}

.body-container.blog {
  padding-right: 25%;
}

.body-container.sizer {
  height: 240px;
}

.body-container.head {
  padding-right: 25%;
  font-size: 21px;
}

.colours-box {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.colour-example {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 18%;
  height: 120px;
  display: flex;
}

.colour-example._2 {
  background-color: var(--mid-blue);
}

.colour-example._3 {
  background-color: var(--dark-green);
  color: #fff;
}

.colour-example._4 {
  background-color: var(--black);
  color: #fff;
}

.colour-example._1 {
  background-color: var(--dark-blue);
}

.main-button {
  z-index: 2;
  border: 1px solid var(--dark-blue);
  background-color: var(--dark-blue);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  cursor: pointer;
  border-radius: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 180px;
  height: 52px;
  padding: 4px 22px;
  font-family: ff-real-text-pro, sans-serif;
  font-weight: 500;
  line-height: 1;
  transition: color 1s, background-color 1s;
  display: inline-flex;
  position: relative;
}

.main-button:hover {
  background-color: var(--white);
  color: var(--dark-blue);
  text-decoration: none;
}

.main-button.alt {
  border-color: var(--mid-green);
  background-color: var(--mid-green);
  transition: border-color 1s, color 1s, background-color 1s;
}

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

.main-button.alt.white-border {
  border-color: var(--white);
}

.main-button.white {
  border-color: var(--white);
  background-color: var(--transparent);
}

.main-button.white:hover {
  background-color: var(--white);
}

.button-holder {
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  font-size: 16px;
  display: flex;
}

.button-holder.left {
  justify-content: flex-start;
  align-items: center;
}

.column-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 420px;
}

.title-holder {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.title-holder.left {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.body-section {
  z-index: 1;
  background-color: var(--white);
  text-align: center;
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 10%;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.body-section.blog {
  padding-top: 60px;
}

.body-section.light {
  background-color: var(--light-blue);
}

.body-section.dark {
  background-color: var(--darker-blue);
  color: var(--white);
}

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

.body-section.calc-body {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 120px;
  display: flex;
}

.body-section.image {
  border-radius: 0%;
  width: 100%;
}

.body-section.overtop {
  z-index: 30;
  background-color: var(--transparent);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 0;
  padding-top: 80px;
  padding-bottom: 110px;
  display: flex;
  overflow: visible;
}

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

.column.relative {
  position: relative;
}

.text-restrict {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
}

.text-restrict._2-cols {
  text-align: left;
  column-count: 2;
  column-gap: 50px;
}

.background-overlay {
  z-index: 2;
  background-color: #000000e6;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.background-overlay.light {
  background-color: var(--light-blue);
  mix-blend-mode: hard-light;
}

.background-overlay.video {
  color: #fff;
  text-align: center;
  background-color: #00000080;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 10%;
  padding-right: 10%;
}

.background-overlay.video-overlay {
  background-color: #00000080;
}

.background-overlay.slides-overlay {
  background-color: #0009;
}

.background-overlay.blog {
  background-color: #1f2f4fe6;
}

.background-overlay.fencing {
  background-color: var(--darker-blue);
  opacity: .69;
  mix-blend-mode: multiply;
}

.page-header {
  z-index: 1;
  color: #fff;
  text-align: left;
  cursor: auto;
  background-color: #1d1d1d;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 400px;
  padding: 120px 10% 80px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.page-header.blog {
  min-height: auto;
  padding-bottom: 40px;
}

.bottom-orange-border {
  z-index: 3;
  background-color: var(--mid-blue);
  width: 66.6%;
  height: 6px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.background-image {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.background-image.half {
  width: 50%;
  margin-left: -30px;
}

.background-image.half.right {
  margin-left: 0;
  margin-right: -30px;
  left: auto;
}

.background-image.grey {
  filter: grayscale();
}

.blog-title {
  font-size: 46px;
}

.blog-columns {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 70% 30%;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

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

.blog-side-bar {
  grid-row-gap: 60px;
  border-left: 1px solid #d6d6d6;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-left: 20px;
  display: flex;
}

.blog-side-bar-items {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.blog-side-bar-title {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.blog-side-bar-links {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 20px;
  font-weight: 400;
  display: flex;
}

.blog-side-bar-links:hover {
  color: var(--mid-blue);
}

.card-item-date {
  color: #5e5e5e;
  font-size: 14px;
}

.benefits-grid {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: grid;
}

.benefit-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.benefit-icon-holder {
  background-color: #00a4cb;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 18px;
  display: flex;
}

.benefit-icon-holder.orange {
  background-color: #e89c53;
}

.benefit-icon-holder.red {
  background-color: #e94e1b;
}

.benefit-icon {
  background-color: var(--mid-blue);
  object-fit: contain;
  width: 100px;
  height: 70px;
}

.benefit-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.faqs-holder {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: flex;
}

.faq-item {
  border-left: 6px solid var(--dark-blue);
  cursor: pointer;
  width: 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.faq-title {
  background-color: var(--light-blue);
  min-height: 52px;
  padding: 12px 100px 12px 20px;
  font-family: ff-real-text-pro, sans-serif;
  font-weight: 500;
  line-height: 1.2;
}

.faq-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.faq-line-1 {
  background-color: var(--dark-blue);
  width: 2px;
  height: 100%;
}

.faq-line-2 {
  background-color: var(--dark-blue);
  width: 100%;
  height: 2px;
  position: absolute;
}

.faq-answer {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}

.faq-spacer {
  width: 100%;
  height: 20px;
}

.menu-line-top {
  background-color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 4px;
  position: absolute;
  top: 0;
}

.menu-line-low {
  background-color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 4px;
  position: absolute;
  bottom: 0;
}

.menu-line-mid {
  background-color: #fff;
  border-radius: 4px;
  width: 42px;
  height: 4px;
}

.menu-button {
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 28px;
  display: none;
  position: absolute;
  right: 30px;
}

.menu-inner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.main-button-2 {
  z-index: 2;
  color: #165365;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fff0;
  border: 1px solid #165365;
  border-radius: 50px;
  width: auto;
  min-width: 180px;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: border-color 1s, color 1s, background-color 1s;
  position: relative;
}

.main-button-2:hover {
  color: #fff;
  background-color: #e89c53;
  border-color: #e89c53;
  text-decoration: none;
}

.main-button-2.alt {
  color: #fff;
  background-color: #e94e1b;
  border-color: #e94e1b;
  font-size: 16px;
}

.main-button-2.alt:hover {
  color: #fff;
  background-color: #fff0;
  border-color: #fff;
}

.main-button-2.alt.head {
  border-color: var(--white);
  background-color: var(--transparent);
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  height: 52px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  display: flex;
}

.main-button-2.alt.head:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

.menu-link {
  grid-column-gap: 8px;
  color: #fff;
  letter-spacing: 1px;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.menu-link:hover {
  color: var(--mid-blue);
}

.menu-link.drop {
  padding: 8px 12px;
  transition: background-color 1s, color 1s;
}

.menu-link.drop:hover {
  background-color: var(--mid-blue);
  color: var(--dark-blue);
}

.menu-drawer {
  z-index: 997;
  width: 100%;
  height: 100%;
  display: block;
}

.nav-bar {
  z-index: 998;
  background-color: var(--dark-blue);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 0 30px 0 160px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header-logo-link {
  z-index: 6;
  width: auto;
  height: auto;
  position: absolute;
  left: 30px;
}

.brand-logo {
  object-fit: contain;
  object-position: 0% 0%;
  width: 124.055px;
  height: 60px;
}

.counterweight {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 5px;
}

.home-header {
  z-index: 1;
  color: #fff;
  text-align: left;
  background-color: #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 600px;
  padding: 220px 10% 100px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.header {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 300;
}

.move-link, .move-link:hover {
  color: #fff;
}

.header-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  font-size: 30px;
  display: flex;
  transform: rotate(-90deg);
}

.hidden-nav {
  display: none;
}

.home-slider-mask {
  width: 100%;
  height: 100%;
}

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

.home-slider, .home-background-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-link-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #fff;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  min-height: 82px;
  display: flex;
  position: relative;
}

.menu-link-2 {
  grid-column-gap: 8px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.menu-link-2:hover {
  color: #df312b;
}

.menu-link-2.drop {
  white-space: pre-wrap;
  border-bottom: 1px solid #df312b;
  justify-content: flex-start;
  align-items: center;
  min-height: 42px;
  padding: 6px 14px;
  transition: background-color 1s, color 1s;
}

.menu-link-2.drop:hover {
  color: #11182d;
  background-color: #df312b;
}

.menu-icon {
  color: #fff;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 14px;
  transform: rotate(-90deg);
}

.drop-holder {
  border-top: 2px solid var(--darker-blue);
  background-color: var(--dark-blue);
  flex-flow: column;
  width: auto;
  min-width: 250px;
  max-width: 400px;
  display: none;
  position: absolute;
  top: 82px;
  left: 0;
}

.pre-head {
  color: var(--mid-blue);
  text-transform: uppercase;
  margin-bottom: -2px;
  font-size: 16px;
}

.right-border {
  aspect-ratio: 3 / 4;
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: auto;
  height: 30vw;
  display: flex;
  position: relative;
}

.right-border.inner {
  background-color: var(--mid-green);
  width: auto;
  height: 70%;
}

.border {
  z-index: 20;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 2px;
  display: flex;
  position: relative;
}

.border.left {
  justify-content: flex-start;
  align-items: center;
  margin-top: 60px;
}

.left-border {
  aspect-ratio: 3 / 4;
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 30vw;
  display: flex;
}

.left-border.inner {
  background-color: var(--dark-blue);
  height: 70%;
}

.background-icon {
  z-index: 0;
  object-fit: contain;
  object-position: 0% 100%;
  width: 75%;
  height: 90%;
  position: absolute;
  inset: 10% 25% 0 0;
}

.background-icon.right {
  object-position: 100% 100%;
  left: 25%;
  right: 0%;
}

.services-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 40px;
  display: grid;
}

.service-item {
  background-color: var(--white);
  border-radius: 30px;
  width: 100%;
  height: 310px;
  min-height: 310px;
  padding: 14px;
  transition: box-shadow 1s;
  position: relative;
  box-shadow: 0 2px 12px 2px #0003;
}

.service-item:hover {
  box-shadow: 0 2px 12px 2px #00000073;
}

.service-item-image {
  z-index: 1;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 282px;
  position: relative;
}

.service-item-title {
  z-index: 2;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--white);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 14px;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 14px 16px 30px;
  font-size: 21px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-item-icon {
  border: 2px solid var(--dark-blue);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 5px 7px 5px 5px;
  display: flex;
}

.si-arrow {
  background-color: var(--dark-blue);
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 2px;
  display: flex;
}

.si-arrow-tip {
  border-right: 2px solid var(--dark-blue);
  border-bottom: 2px solid var(--dark-blue);
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
}

.background-triangle {
  aspect-ratio: 1;
  border: 5vw solid var(--white);
  width: 200%;
  position: absolute;
  top: -150%;
  left: -8%;
  transform: rotate(45deg);
}

.background-triangle-holder {
  aspect-ratio: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: auto;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.benefits-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: var(--mid-blue);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 40px;
  font-size: 16px;
  display: grid;
}

.holder {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.contact-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 12px;
  display: flex;
}

.contact-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--dark-blue);
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 34px;
  font-family: ff-real-text-pro-2, sans-serif;
  font-weight: 400;
  display: flex;
  position: relative;
}

.contact-item:hover {
  color: var(--darker-blue);
}

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

.contact-item.white:hover {
  color: var(--mid-blue);
}

.contact-icon {
  background-color: var(--mid-blue);
  width: 24px;
  height: 24px;
  margin-top: 1px;
  position: absolute;
  left: 0;
}

.contact-form {
  border-style: solid;
  border-width: 1px 1px 6px;
  border-color: var(--mid-blue);
  background-color: var(--white);
  border-radius: 30px;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-shadow: 0 2px 12px 2px #0003;
}

.contact-form.pop-up {
  border: 1px none var(--transparent);
  border-radius: 0;
  padding: 0;
  box-shadow: 0 2px 12px 2px #0000;
}

.text-field {
  border: 1px solid var(--dark-blue);
  cursor: text;
  border-radius: 12px;
  height: 52px;
  margin-bottom: 0;
  font-size: 16px;
  transition: border-color 1s, background-color 1s;
}

.text-field:hover {
  border-color: var(--mid-green);
  background-color: var(--light-blue);
}

.text-field.area {
  min-height: 110px;
  max-height: 110px;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}

.inner-form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.form-title {
  margin-bottom: 12px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 24px;
  font-weight: 200;
}

.header-background-over {
  z-index: 2;
  background-image: linear-gradient(90deg, var(--dark-green), #41691c00), linear-gradient(180deg, var(--dark-green), #41691c80);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header-background-over.with-slider {
  opacity: .85;
}

.header-background-over.fencing-calculator {
  z-index: 2;
  position: absolute;
  top: 10%;
}

.footer {
  z-index: 1;
  background-color: var(--darker-blue);
  color: var(--white);
  text-align: left;
  cursor: auto;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 70px 10% 100px;
  font-size: 16px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.footer.blog {
  padding-top: 60px;
}

.footer.light {
  background-color: var(--light-blue);
}

.footer.dark {
  background-color: var(--darker-blue);
  color: var(--white);
}

.footer-details {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-right: 40px;
  display: flex;
}

.footer-links-col {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.brand-logo-footer {
  object-fit: contain;
  object-position: 0% 0%;
  width: 160px;
  height: 77.375px;
  margin-bottom: 12px;
}

.footer-main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 35% 65%;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.footer-logo-link {
  z-index: 6;
  width: auto;
  height: auto;
  margin-bottom: 12px;
}

.footer-link {
  color: #fff;
  font-weight: 400;
}

.footer-link:hover {
  color: var(--mid-blue);
}

.footer-links {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  font-size: 16px;
  display: grid;
}

.social-link {
  background-color: #fff;
  width: 28px;
  height: 28px;
  transition-property: background-color;
}

.social-link:hover {
  background-color: var(--mid-blue);
}

.footer-col-border {
  border-bottom: 1px solid var(--mid-blue);
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-size: 18px;
}

.social-icons {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: flex;
}

.copyright-info {
  background-color: var(--mid-blue);
  color: var(--darker-blue);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 10%;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.copyright-holder {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

.contact-icon-white {
  background-color: var(--white);
  width: 24px;
  height: 24px;
  margin-top: 1px;
  position: absolute;
  left: 0;
}

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

.projects-slider {
  background-color: var(--transparent);
  width: 100%;
  height: 440px;
  margin-top: 40px;
  padding: 0 70px;
}

.projects-slider-nav {
  color: var(--darker-blue);
  cursor: pointer;
  width: 80px;
  height: 100%;
  font-size: 50px;
  transition: color 1s;
}

.projects-slider-nav:hover {
  color: var(--mid-blue);
}

.projects-slider-nav.white {
  color: var(--white);
}

.projects-slider-nav.white:hover {
  color: var(--mid-blue);
}

.projects-slider-mask {
  width: 100%;
  height: 100%;
}

.projects-slide {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: hidden;
}

.project-slide-inner {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px 2px #0003;
}

.project-slide-image {
  z-index: 1;
  filter: brightness(110%) saturate(110%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-slide-cover {
  z-index: 2;
  opacity: 0;
  filter: saturate(110%) brightness(110%);
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.project-before {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.project-slide-buttons {
  z-index: 4;
  background-color: var(--white);
  border-radius: 30px;
  justify-content: flex-end;
  align-items: center;
  height: 46px;
  padding: 6px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 16px;
  font-weight: 200;
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.before, .after {
  z-index: 2;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 20px;
  width: 100px;
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 700;
  position: relative;
}

.project-button-select {
  background-color: var(--mid-blue);
  border-radius: 20px;
  width: 100px;
  height: 34px;
  position: absolute;
}

.project-slide-view {
  z-index: 4;
  border: 1px solid var(--white);
  background-color: var(--darker-blue);
  color: var(--white);
  letter-spacing: 1px;
  border-radius: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 4px 22px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 1s, color 1s;
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.project-slide-view:hover {
  background-color: var(--white);
  color: var(--darker-blue);
}

.blog-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-top: 30px;
  font-size: 16px;
  display: grid;
}

.blog-item {
  background-color: var(--white);
  border-radius: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 12px 12px 14px;
  transition: box-shadow 1s;
  display: flex;
  box-shadow: 0 2px 12px 2px #0003;
}

.blog-item:hover {
  box-shadow: 0 2px 12px 2px #0006;
}

.blog-item-image-link {
  background-color: var(--dark-blue);
  border-radius: 20px;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-item-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: filter 1s, opacity 1s;
}

.blog-item-image:hover {
  opacity: .5;
  filter: grayscale();
}

.blog-item-title {
  font-size: 21px;
}

.blog-item-title-link {
  font-family: ff-real-headline-pro, sans-serif;
  font-weight: 700;
}

.blog-item-title-link:hover {
  color: var(--mid-blue);
}

.blog-item-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-left: 6px;
  padding-right: 6px;
  display: flex;
}

.marquee-holder {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.marquee-bit {
  text-align: center;
  flex: 0 auto;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 160px;
  display: flex;
}

.clients-grid {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.logo-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.client-logo {
  object-fit: contain;
  width: 100%;
  min-width: 100px;
  max-width: 200px;
  height: 100%;
  min-height: 80px;
  max-height: 100px;
}

.accreds-bar {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.accreds-image {
  object-fit: contain;
  width: auto;
  min-width: 80px;
  max-width: 140px;
  height: auto;
  min-height: 60px;
  max-height: 80px;
}

.blog-category {
  background-color: var(--mid-green);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 20px 0 0;
  padding: 4px 14px 4px 16px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 12px;
  font-weight: 200;
  position: absolute;
  bottom: 0;
  left: 0;
}

.reviews-holder-details {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  font-family: ff-real-text-pro, sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.reviews-holder-details.left {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px;
}

.star-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.ratings-star {
  background-color: var(--ratings);
  width: 24px;
  height: 24px;
}

.review-item {
  background-color: var(--white);
  border-radius: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 40px 20px 120px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 12px 2px #0003;
}

.quote-marks {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.review-place {
  color: var(--mid-blue);
  margin-bottom: 8px;
  font-size: 14px;
}

.review-name {
  letter-spacing: 1px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.review-item-details {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
}

.responsive-column-image {
  object-fit: contain;
  object-position: 0% 0%;
  width: 40%;
  height: auto;
  position: absolute;
  top: -40px;
  left: 0;
}

.page-header-copy {
  z-index: 1;
  color: #fff;
  text-align: left;
  background-color: #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 150px 10% 60px;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.gallery-holder {
  grid-column-gap: 3%;
  grid-row-gap: 20px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  display: flex;
}

.gallery-lightbox {
  aspect-ratio: 1;
  object-fit: contain;
  width: 22.5%;
  height: auto;
  transition-property: box-shadow;
}

.gallery-lightbox:hover {
  box-shadow: 0 2px 12px 2px #00000040;
}

.gallery-thumb {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 1s;
}

.gallery-thumb:hover {
  filter: brightness(80%);
}

.video-holder {
  aspect-ratio: 16 / 9;
  background-color: var(--mid-green);
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: auto;
  transition: box-shadow 1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-holder:hover {
  box-shadow: 0 2px 12px 2px #00000073;
}

.video-placeholder {
  z-index: 2;
  opacity: .5;
  filter: grayscale();
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-play {
  z-index: 6;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 12px 10px 12px 14px;
  transition: background-color 1s;
  display: flex;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.video-play:hover {
  background-color: var(--dark-green);
}

.play-inner {
  background-color: #fff;
  width: 80%;
  height: 100%;
}

.review-video {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.accred-logo {
  border: 1px solid var(--darker-blue);
  background-color: var(--white);
  border-radius: 12px;
  width: 120px;
  height: 127.422px;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.accred-logo.alt {
  border: 0px none var(--transparent);
  background-color: var(--transparent);
  filter: brightness(0%) invert();
  border-radius: 0;
  width: 72.75px;
  height: 77.37px;
  margin-left: 30px;
  padding: 0;
  position: static;
}

.block-title {
  margin-top: -10px;
  margin-bottom: 10px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.header-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: ff-real-text-pro-2, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.page-contact-form {
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.form-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 14px;
  display: flex;
}

.blog-pop-up {
  z-index: 99;
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  min-width: 35%;
  height: auto;
  padding: 30px 40px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 0;
  box-shadow: 0 2px 12px 2px #00000073;
}

.text-field-2 {
  color: #050d3d;
  cursor: text;
  background-color: #fff;
  border: 1px solid #050d3d;
  border-radius: 8px;
  width: 100%;
  height: 52px;
  margin-bottom: 0;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 1s;
}

.text-field-2:hover {
  background-color: #ebf0f5;
  border-style: solid;
  border-width: 1px;
}

.text-field-2.area {
  height: 110px;
  min-height: 110px;
  max-height: 110px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.form-field-grid {
  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;
}

.main-button-3 {
  z-index: 2;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #050d3d;
  border: 1px solid #ebf0f5;
  border-radius: 50px;
  width: auto;
  min-width: 180px;
  padding: 16px 22px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 1s, color 1s, background-color 1s;
  position: relative;
}

.main-button-3:hover {
  color: #050d3d;
  background-color: #fff;
  border-color: #050d3d;
  text-decoration: none;
}

.main-button-3.submit:hover {
  background-color: #45d8ef;
}

.pop-up-close {
  color: var(--dark-green);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color 1s;
  position: absolute;
  top: 2px;
  left: 10px;
}

.pop-up-close:hover {
  color: var(--mid-green);
}

.contact-link {
  color: #050d3d;
  font-weight: 500;
}

.contact-link:hover {
  color: #45d8ef;
}

.contact-list-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.contact-link-inner {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-icon-2 {
  filter: invert();
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.contact-link-icon {
  background-color: #45d8ef;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  display: flex;
}

.contact-link-icon.pop-up {
  background-color: var(--mid-blue);
}

.contact-link-icon.pop-up:hover {
  background-color: var(--darker-blue);
}

.mobile-blog-pop-up {
  display: none;
}

.pop-up-heading {
  color: var(--dark-blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.form-grid-inner {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

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

.person-card {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: flex;
}

.person-image {
  aspect-ratio: 2 / 2.5;
  border: 2px solid var(--dark-blue);
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 12px 2px #0003;
}

.team-member-name {
  color: var(--dark-blue);
  letter-spacing: 1px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.team-role {
  margin-top: -16px;
  font-size: 18px;
}

.input-holder {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
}

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

.panel-options.large {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex: 0 auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 80%;
  font-size: 16px;
  font-weight: 400;
}

.top-right-border {
  aspect-ratio: 1;
  opacity: .3;
  object-fit: contain;
  border: 3px solid #fcc04c;
  border-radius: 100%;
  width: 20vw;
  height: auto;
  position: absolute;
  top: -5vw;
  left: -5vw;
}

.quote-form-inner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--darker-blue);
  color: var(--white);
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  max-width: 600px;
  height: auto;
  padding: 30px;
  display: flex;
}

.estimate-amount-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: #fcc04c;
  background-color: #1d1d1b;
  border: 2px solid #172227;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 4px 22px;
  font-size: 32px;
  font-weight: 700;
  display: flex;
}

.minus-button {
  cursor: pointer;
  background-color: #fcc04c;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}

.calc-title-icon {
  background-color: #fcc04c;
  width: 40px;
  height: 40px;
}

.pre-title {
  color: #fcc04c;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
}

.input {
  border: 1px solid var(--dark-blue);
  cursor: text;
  border-radius: 4px;
  justify-content: flex-end;
  align-items: center;
  width: 140px;
  height: 42px;
  padding: 6px;
  display: flex;
}

.middle-right-border {
  aspect-ratio: 1;
  opacity: .3;
  object-fit: contain;
  border: 3px solid #fcc04c;
  border-radius: 100%;
  width: 40vw;
  height: auto;
  position: absolute;
  bottom: -20vw;
  right: -10vw;
}

.text-field-3 {
  cursor: text;
  background-color: #f2fdff;
  border: 1px solid #fcc04c;
  border-radius: 26px;
  height: 52px;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 16px;
  transition: border-color 1s;
}

.text-field-3:hover {
  border-color: #172227;
}

.text-field-3.white {
  background-color: #fff;
}

.calc-disclaimer {
  font-size: 16px;
}

.quote-form {
  z-index: 4;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 20px;
  display: flex;
  position: relative;
}

.calc-title {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.calc-results {
  color: #1d1d1b;
  background-color: #fcc04c;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 30px;
  display: flex;
}

.tooltip {
  color: #172227;
  cursor: pointer;
  background-color: #f2fdff;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  position: relative;
}

.elec-option, .battery-option {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.option-select {
  border: 2px solid var(--darker-blue);
  background-color: var(--white);
  cursor: pointer;
  border-radius: 100px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  transition: background-color 1s;
}

.option-select.active {
  border-color: var(--black);
  background-color: var(--darker-blue);
}

.option-select.active.blue-bac {
  background-color: var(--darker-blue);
}

.option-select.large {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  height: 50px;
  min-height: auto;
  transition: background-color 1s, color 1s;
  display: flex;
}

.option-select.large.fill {
  background-color: var(--darker-blue);
  color: var(--white);
  font-weight: 700;
}

.option-select.large.option-image {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-width: 1px;
  border-color: var(--transparent);
  background-color: var(--transparent);
  border-radius: 12px;
  width: 100%;
  height: auto;
  padding: 20px 10px;
  transition: border-color 1s, background-color 1s, color 1s;
}

.option-select.large.option-image.active {
  border-width: 1px;
  border-color: var(--mid-green);
}

.body-section-2 {
  z-index: 1;
  text-align: center;
  cursor: auto;
  background-color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px 10%;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.body-section-2.dark {
  color: #fff;
  background-color: #172227;
}

.quant-icon {
  z-index: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
  padding: 6px;
  position: relative;
}

.solar-panels-input {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
}

.outer-border {
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid #fcc04c;
  border-radius: 100%;
  width: auto;
  height: auto;
  position: absolute;
  inset: -20px -10px 0;
}

.text-restrict-2 {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
}

.body-container-2 {
  z-index: 4;
  max-width: 1200px;
  position: relative;
}

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

.quant-number {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 40px;
  font-size: 32px;
  display: flex;
}

.calc-option {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #17222740;
  border: 1px solid #fcc04c;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.quant-background {
  z-index: -1;
  background-color: #fcc04c;
  border-radius: 100%;
  width: auto;
  height: auto;
  position: absolute;
  inset: 0%;
}

.tooptip-popup {
  background-color: #f2fdff;
  border-radius: 12px;
  width: 200px;
  height: auto;
  padding: 12px;
  display: none;
  position: absolute;
  top: -106px;
}

.main-button-4 {
  z-index: 2;
  color: #1d1d1b;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fcc04c;
  border: 1px solid #fcc04c;
  border-radius: 50px;
  width: auto;
  min-width: 180px;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: color 1s, background-color 1s;
  position: relative;
}

.main-button-4:hover {
  color: #1d1d1b;
  background-color: #fff;
  text-decoration: none;
}

.plus-button {
  cursor: pointer;
  background-color: #fcc04c;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}

.columns-2 {
  grid-column-gap: 60px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  display: grid;
}

.columns-2.calc {
  text-align: center;
  font-size: 16px;
}

.solar-calculator {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.gdpr-text {
  font-size: 14px;
}

.text-field-4 {
  cursor: text;
  background-color: #f2fdff;
  border: 1px solid #fcc04c;
  border-radius: 26px;
  height: 52px;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 16px;
  transition: border-color 1s;
}

.text-field-4:hover {
  border-color: #172227;
}

.text-field-4.white {
  background-color: #fff;
}

.body-section-3 {
  z-index: 1;
  text-align: center;
  cursor: auto;
  background-color: #fff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px 10%;
  font-style: normal;
  position: relative;
  overflow: hidden;
}

.body-section-3.dark {
  color: #fff;
  background-color: #172227;
  display: none;
}

.text-restrict-3 {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 10%;
  padding-right: 10%;
}

.body-container-3 {
  z-index: 4;
  max-width: 1200px;
  position: relative;
}

.main-button-5 {
  z-index: 2;
  color: #1d1d1b;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fcc04c;
  border: 1px solid #fcc04c;
  border-radius: 50px;
  width: auto;
  min-width: 180px;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: color 1s, background-color 1s;
  position: relative;
}

.main-button-5:hover {
  color: #1d1d1b;
  background-color: #fff;
  text-decoration: none;
}

.fencing-cal-input-box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.calc-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.calc-row.fence-cal-radio-btn {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.fence-cal-heading {
  color: var(--dark-blue);
  margin-top: 0;
  font-size: 42px;
}

.input-holder-alt {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
}

.fencing-cal-results {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--white);
  border: 0 solid #000;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px;
  display: flex;
  box-shadow: 0 2px 12px 2px #07195e33;
}

.fencing-cal-result-heading {
  color: var(--darker-blue);
  text-align: left;
  font-size: 28px;
}

.calc-result-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

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

.result-alt.fence-calc-total-price {
  font-size: 24px;
}

.result-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  align-items: stretch;
  display: flex;
}

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

.fence-calc-total-price {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--dark-green);
  font-size: 24px;
  display: flex;
}

.disclaimer {
  text-align: left;
  font-size: 12px;
}

.paragraph {
  text-align: left;
}

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

.fencing-cal-body {
  z-index: 4;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #0092fa0d;
  border: 1px solid #83b6e187;
  border-radius: 12px;
  flex-flow: column;
  max-width: 1000px;
  padding: 40px 30px;
  display: flex;
  position: relative;
}

.fencing-cal-body.blog {
  padding-right: 25%;
}

.fencing-cal-body.sizer {
  height: 240px;
}

.fencing-cal-body.head {
  padding-right: 25%;
  font-size: 21px;
}

.bold-text {
  color: var(--dark-blue);
}

.image.active-panel {
  border-color: var(--mid-green);
}

.text-field-5 {
  cursor: text;
  background-color: #f2fdff;
  border: 1px solid #fcc04c;
  border-radius: 26px;
  height: 52px;
  margin-bottom: 0;
  padding: 12px 20px;
  font-size: 16px;
  transition: border-color 1s;
}

.text-field-5:hover {
  border-color: #172227;
}

.text-field-5.white {
  background-color: #fff;
}

.quote-form-title {
  font-family: ff-real-text-pro, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.quote-form-background {
  z-index: 1;
  background-color: var(--light-blue);
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  width: 150%;
  height: 25%;
  position: absolute;
  bottom: -1px;
  left: -25%;
  right: -25%;
}

.option {
  aspect-ratio: 1;
  border: 4px solid var(--transparent);
  border-radius: 50%;
  width: 70%;
  transition: border-color 1s;
}

.option.active-panel {
  border-color: var(--mid-green);
  width: 70%;
}

.text-column-restrict {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 40%;
  display: flex;
}

.dark-blue-overlay {
  z-index: 2;
  mix-blend-mode: hard-light;
  background-color: #1f2f4fcc;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fencing-strip {
  background-color: var(--darker-blue);
  color: var(--white);
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.fencing-strip-text {
  z-index: 4;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.fencing-strip-title {
  letter-spacing: 1px;
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.hgi-icon-inner {
  object-fit: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.hgib-border {
  background-color: #e21983;
  width: 100%;
  height: 1px;
  margin-right: 12px;
}

.header-grid {
  z-index: 4;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  display: grid;
  position: relative;
}

.service-item-link {
  color: var(--dark-green);
  text-transform: none;
  font-family: ff-real-headline-pro, sans-serif;
  font-weight: 700;
}

.service-item-link:hover {
  color: var(--darker-blue);
}

.header-grid-item-button {
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.hgil {
  color: #bd0064;
  white-space: nowrap;
}

.hgil:hover {
  color: #8d98a5;
}

.hgi-icon {
  border: 2px solid var(--mid-blue);
  border-radius: 100%;
  width: 110px;
  height: 110px;
  padding: 4px;
  position: absolute;
  top: -40px;
  right: 24px;
}

.header-grid-item-holder {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  height: auto;
  padding: 60px 30px 20px;
  font-family: ff-real-text-pro-2, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: box-shadow 1s, background-color 1s;
  position: relative;
  overflow: visible;
  box-shadow: 0 -1px 12px 2px #00000040;
}

.header-grid-item-holder:hover {
  background-color: var(--light-blue);
  color: var(--text);
  box-shadow: 0 -1px 12px 2px #00000073;
}

.top-benefit-title {
  color: var(--darker-blue);
  font-family: ff-real-headline-pro, sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.header-grid-item-border {
  background-color: var(--mid-blue);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 62px;
  }

  h3 {
    font-size: 44px;
  }

  .column-image {
    min-height: 320px;
  }

  .services-grid {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }

  .projects-slider {
    height: 450px;
  }

  .panel-options {
    font-size: 18px;
  }

  .quote-form-inner {
    max-width: 600px;
  }

  .calc-title {
    font-size: 21px;
  }

  .calc-results {
    max-width: 600px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 64px;
  }

  h3 {
    font-size: 46px;
  }

  .column-image {
    min-height: 330px;
  }

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

  .body-section.calc-body {
    justify-content: center;
    align-items: center;
  }

  .menu-inner {
    grid-column-gap: 30px;
  }

  .services-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .projects-slider {
    height: 480px;
  }

  .team-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .calc-title {
    font-size: 24px;
  }

  .body-section-2, .body-section-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .top-benefit-title {
    font-size: 22px;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 21px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 46px;
  }

  h3 {
    font-size: 48px;
  }

  .main-button {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .column-image {
    min-height: 340px;
  }

  .body-section {
    z-index: 1;
    font-size: 18px;
  }

  .body-section.calc-body {
    align-items: center;
  }

  .text-restrict._2-cols {
    column-gap: 60px;
  }

  .blog-title {
    font-size: 48px;
  }

  .menu-inner {
    grid-column-gap: 40px;
  }

  .main-button-2 {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

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

  .brand-logo {
    width: 240px;
    height: 55px;
  }

  .menu-link-2 {
    font-size: 18px;
  }

  .services-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .footer {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .brand-logo-footer {
    width: 240px;
    height: 55px;
  }

  .projects-slider {
    height: 520px;
  }

  .blog-item-title {
    font-size: 24px;
  }

  .main-button-3 {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .team-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .body-section-2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .main-button-4 {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .body-section-3 {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .main-button-5 {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 16px;
  }

  .image, .option {
    border-radius: 50%;
  }

  .header-grid {
    grid-column-gap: 40px;
    max-width: 1400px;
  }

  .top-benefit-title {
    font-size: 24px;
  }
}

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

  h2, h3 {
    font-size: 38px;
  }

  .columns {
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
  }

  .columns.reverse {
    flex-direction: column-reverse;
  }

  .main-button {
    font-size: 16px;
  }

  .column-image {
    min-height: 280px;
    max-height: 320px;
  }

  .body-section {
    padding: 60px 5%;
  }

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

  .column.image-spacer {
    height: 270px;
  }

  .column.relative.ls {
    display: none;
  }

  .text-restrict {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-restrict._2-cols {
    text-align: center;
    column-count: 1;
  }

  .background-overlay.video, .page-header {
    padding-left: 5%;
    padding-right: 5%;
  }

  .background-image.half {
    width: 100%;
    height: 340px;
    margin-left: 0;
    bottom: auto;
  }

  .background-image.half.right {
    margin-right: 0;
  }

  .blog-title {
    font-size: 42px;
  }

  .blog-columns {
    flex-direction: column;
    display: flex;
  }

  .blog-content {
    padding-right: 0;
  }

  .blog-side-bar {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    border-top: 1px solid #d6d6d6;
    border-left-style: none;
    border-left-width: 0;
    flex-flow: wrap;
    padding-top: 40px;
    padding-left: 0;
  }

  .blog-side-bar-items {
    width: 50%;
    padding-right: 60px;
  }

  .blog-side-bar-links {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .benefits-grid {
    font-size: 16px;
  }

  .benefit-icon-holder {
    width: 80px;
    height: 80px;
  }

  .benefit-title {
    font-size: 18px;
  }

  .faqs-holder {
    padding-left: 0%;
    padding-right: 0%;
  }

  .faq-title {
    padding-left: 20px;
    padding-right: 80px;
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-line-top {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 0;
  }

  .menu-line-low {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    bottom: 0;
  }

  .menu-line-mid {
    border-radius: 2px;
    width: 42px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-button {
    z-index: 999;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 28px;
    padding: 0;
    display: flex;
    position: absolute;
    right: 20px;
  }

  .menu-inner {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 72px;
    position: relative;
  }

  .main-button-2.alt.head {
    position: absolute;
    top: 0;
    left: 0;
  }

  .menu-link {
    font-size: 21px;
  }

  .menu-link.drop {
    padding: 0;
  }

  .menu-link.drop:hover {
    background-color: var(--transparent);
    color: var(--mid-blue);
  }

  .menu-drawer {
    background-color: var(--dark-blue);
    height: 100%;
    padding: 100px 5% 40px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .header-logo-link {
    z-index: 999;
  }

  .home-header {
    padding-left: 5%;
    padding-right: 5%;
  }

  .menu-link-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .menu-link-2 {
    font-size: 21px;
  }

  .menu-link-2.drop {
    white-space: normal;
    border-bottom: 0 #fff0;
    min-height: auto;
    margin-left: 20px;
    padding: 0;
  }

  .menu-link-2.drop:hover {
    color: #df312b;
    background-color: #fff0;
  }

  .menu-icon {
    display: none;
  }

  .drop-holder {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    background-color: #fff0;
    border-top: 0 #fff0;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-top: 8px;
    padding-left: 20px;
    display: flex;
    position: static;
  }

  .background-icon {
    width: 80%;
    right: 20%;
  }

  .background-icon.right {
    left: 20%;
  }

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

  .background-triangle {
    left: -18%;
  }

  .benefits-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .contact-list.pop-up {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .contact-form {
    padding-top: 20px;
  }

  .footer {
    padding: 60px 5%;
  }

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

  .footer-main {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-logo-link {
    z-index: 999;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-icons {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .copyright-info {
    padding-left: 5%;
    padding-right: 5%;
  }

  .projects-slider {
    margin-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .projects-slider-nav {
    width: 60px;
  }

  .blog-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .marquee-bit {
    height: 120px;
  }

  .clients-grid {
    grid-column-gap: 40px;
  }

  .client-logo {
    min-width: 80px;
    max-width: 150px;
    min-height: 60px;
    max-height: 100px;
  }

  .responsive-column-image {
    display: none;
  }

  .page-header-copy {
    min-height: auto;
    padding-left: 5%;
    padding-right: 5%;
  }

  .gallery-lightbox {
    width: 31%;
  }

  .block-title {
    margin-top: -4px;
    font-size: 52px;
  }

  .page-contact-form {
    margin-top: 0;
  }

  .form-block {
    align-items: center;
    margin-top: 0;
  }

  .blog-pop-up {
    display: none;
  }

  .pop-up-close.mobile {
    left: auto;
    right: 10px;
  }

  .contact-list-2 {
    grid-column-gap: 40px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
  }

  .contact-list-2.pop-up {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-link-icon.pop-up {
    transition: background-color 1s;
  }

  .contact-link-icon.pop-up:hover {
    background-color: #050d3d;
  }

  .mobile-blog-pop-up {
    z-index: 99;
    background-color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: auto;
    height: auto;
    padding: 10px 30px 30px;
    display: none;
    position: fixed;
    bottom: 0;
    left: 20px;
    right: 20px;
    box-shadow: 0 2px 12px 2px #00000073;
  }

  .team-grid {
    grid-column-gap: 60px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .panel-options.large {
    width: 100%;
  }

  .calc-title {
    font-size: 21px;
  }

  .elec-option {
    font-size: 16px;
  }

  .option-select.large.option-image {
    padding-left: 20px;
    padding-right: 20px;
  }

  .body-section-2 {
    padding: 50px 5%;
  }

  .text-restrict-2 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .columns-2 {
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .body-section-3 {
    padding: 50px 5%;
  }

  .text-restrict-3 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .fence-cal-heading {
    font-size: 38px;
  }

  .header-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hgi-icon {
    width: 90px;
    height: 90px;
    right: 20px;
  }

  .header-grid-item-holder {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .top-benefit-title {
    font-size: 18px;
  }
}

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

  h2, h3 {
    font-size: 36px;
  }

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

  .body-container.blog, .body-container.head {
    padding-right: 0%;
  }

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

  .body-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .body-section.overtop {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .column.image-spacer {
    height: 210px;
  }

  .background-overlay.video, .page-header {
    padding-left: 30px;
    padding-right: 30px;
  }

  .background-image.half {
    height: 280px;
  }

  .blog-title {
    font-size: 38px;
  }

  .blog-side-bar-items {
    width: 100%;
  }

  .benefits-grid {
    grid-column-gap: 4%;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

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

  .menu-drawer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .home-header {
    min-height: auto;
    padding: 120px 30px 60px;
  }

  .border.left {
    margin-top: 40px;
  }

  .background-icon {
    width: 85%;
    right: 15%;
  }

  .background-icon.right {
    left: 15%;
  }

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

  .background-triangle {
    left: -56%;
  }

  .benefits-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }

  .contact-list {
    width: 80%;
  }

  .contact-list.pop-up {
    width: 100%;
  }

  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .copyright-info {
    padding-left: 30px;
    padding-right: 30px;
  }

  .projects-slider {
    height: 400px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .projects-slider-nav {
    width: 50px;
    font-size: 42px;
  }

  .project-slide-buttons {
    inset: 10px 10px auto auto;
  }

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

  .marquee-holder {
    margin-top: 0;
  }

  .clients-grid {
    grid-column-gap: 30px;
  }

  .client-logo {
    max-width: 100%;
    max-height: 60px;
  }

  .accreds-bar {
    grid-column-gap: 40px;
    justify-content: center;
  }

  .accreds-image {
    max-width: 100px;
  }

  .reviews-holder-details {
    flex-flow: wrap;
  }

  .page-header-copy {
    padding: 120px 30px 60px;
  }

  .gallery-holder {
    grid-column-gap: 5%;
  }

  .gallery-lightbox {
    width: 46%;
  }

  .video-play {
    width: 80px;
    height: 80px;
  }

  .block-title {
    font-size: 46px;
  }

  .mobile-blog-pop-up {
    padding-top: 2px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .panel-options.large {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .quote-form-inner {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    width: 100%;
  }

  .option-select.large.fill {
    font-size: 14px;
  }

  .body-section-2 {
    padding: 40px 30px;
  }

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

  .contact-form-inner-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .columns-2.calc {
    grid-row-gap: 30px;
  }

  .solar-calculator {
    padding-left: 0%;
    padding-right: 0%;
  }

  .body-section-3 {
    padding: 40px 30px;
  }

  .body-container-3 {
    padding-left: 0;
  }

  .calc-row {
    font-size: 16px;
  }

  .calc-row.fence-cal-option {
    flex-flow: column;
  }

  .fence-cal-heading {
    font-size: 36px;
  }

  .input-holder-alt {
    font-size: 16px;
  }

  .fencing-cal-results {
    padding: 20px;
  }

  .result-alt.fence-calc-total-price {
    font-size: 20px;
  }

  .result-row {
    font-size: 16px;
  }

  .fence-calc-total-price {
    font-size: 20px;
  }

  .disclaimer {
    font-size: 10px;
  }

  .fencing-cal-body {
    padding-left: 30px;
  }

  .fencing-cal-body.blog, .fencing-cal-body.head {
    padding-right: 0%;
  }

  .text-block {
    font-size: 16px;
  }

  .text-block.fence-cal-option {
    font-size: 12px;
  }

  .text-column-restrict {
    padding-right: 0%;
  }

  .header-grid {
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .hgi-icon {
    width: 80px;
    height: 80px;
    display: none;
    top: -30px;
  }

  .header-grid-item-holder {
    padding-top: 0;
  }

  .top-benefit-title {
    font-size: 21px;
  }
}

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

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 32px;
  }

  .spacer {
    height: 20px;
  }

  .body-container.head {
    font-size: 18px;
  }

  .main-button {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-button.fence-cal-btn {
    font-size: 14px;
  }

  .button-holder {
    grid-row-gap: 16px;
    flex-wrap: wrap;
  }

  .column-image {
    min-height: 200px;
    max-height: 220px;
  }

  .title-holder {
    align-items: flex-start;
  }

  .body-section {
    text-align: left;
    padding: 50px 20px;
  }

  .body-section.calc-body {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 92px;
  }

  .column.image-spacer {
    height: 170px;
  }

  .text-restrict._2-cols {
    text-align: left;
  }

  .background-overlay.video {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header {
    text-align: left;
    min-height: auto;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .background-image.half {
    height: 240px;
  }

  .blog-title {
    font-size: 36px;
  }

  .blog-side-bar-items {
    padding-right: 20px;
  }

  .benefits-grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .benefit-item {
    align-items: flex-start;
    width: 100%;
  }

  .faq-title {
    padding-left: 14px;
  }

  .faq-answer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .menu-inner {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .main-button-2 {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .menu-drawer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-bar {
    height: 72px;
  }

  .header-logo-link {
    left: 20px;
  }

  .brand-logo {
    width: 103.383px;
    height: 50px;
  }

  .home-header {
    text-align: left;
    padding: 110px 20px 80px;
  }

  .menu-link-2 {
    font-size: 18px;
  }

  .pre-head {
    font-size: 14px;
  }

  .right-border {
    height: 40vw;
  }

  .border.left {
    margin-top: 20px;
  }

  .left-border {
    height: 40vw;
  }

  .background-icon {
    width: 100%;
    right: 0%;
  }

  .background-icon.right {
    width: 199%;
    left: 0%;
  }

  .service-item {
    height: 290px;
    min-height: 290px;
  }

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

  .service-item-image {
    height: 262px;
  }

  .service-item-title {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    border-radius: 0 0 30px 30px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
  }

  .service-item-icon {
    width: 28px;
    height: 28px;
  }

  .si-arrow-tip {
    width: 8px;
    height: 8px;
  }

  .background-triangle {
    border-width: 10vw;
  }

  .background-triangle-holder {
    width: 60%;
  }

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

  .contact-form {
    padding-bottom: 20px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer {
    text-align: left;
    padding: 50px 20px;
  }

  .footer-logo-link {
    left: 20px;
  }

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

  .social-link {
    width: 42px;
    height: 42px;
  }

  .copyright-info {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .projects-slider {
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .projects-slider-nav {
    height: 50px;
    margin-bottom: 0;
    margin-left: 0;
    bottom: 0;
    left: 0%;
  }

  .projects-slider-nav.right {
    margin-left: 50px;
  }

  .projects-slide {
    padding: 0;
  }

  .project-slide-inner {
    border: 1px solid var(--mid-blue);
    box-shadow: 0 2px 12px 2px #0000;
  }

  .project-slide-buttons {
    font-size: 14px;
    top: 6px;
    right: 6px;
  }

  .project-slide-view {
    bottom: 6px;
    right: 6px;
  }

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

  .marquee-bit {
    overflow: hidden;
  }

  .clients-grid {
    grid-column-gap: 18vw;
    grid-row-gap: 40px;
  }

  .client-logo {
    min-width: 31vw;
    min-height: 90px;
    max-height: 90px;
  }

  .reviews-holder-details {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .reviews-holder-details.left {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .page-header-copy {
    text-align: left;
    padding: 110px 20px 80px;
  }

  .gallery-lightbox {
    width: 100%;
  }

  .video-play {
    width: 44px;
    height: 44px;
    bottom: 16px;
    left: 16px;
  }

  .accred-logo.alt {
    margin-left: 24px;
  }

  .block-title {
    font-size: 38px;
  }

  .form-block {
    align-items: flex-start;
  }

  .form-field-grid {
    flex-direction: column;
    display: flex;
  }

  .main-button-3 {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-list-2 {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .contact-list-2.pop-up {
    flex-flow: row;
  }

  .contact-link-inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .contact-link-icon.pop-up {
    width: 52px;
    height: 52px;
    padding: 14px;
  }

  .pop-up-link-text {
    display: none;
  }

  .mobile-blog-pop-up {
    padding-bottom: 20px;
  }

  .pop-up-title {
    font-size: 32px;
  }

  .pop-up-heading {
    font-size: 26px;
  }

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

  .input-holder {
    justify-content: flex-start;
    align-items: center;
  }

  .panel-options {
    width: 100%;
  }

  .panel-options.large {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    font-size: 14px;
  }

  .quote-form-inner {
    padding: 14px;
  }

  .estimate-amount-holder {
    width: 100%;
    font-size: 28px;
  }

  .input {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .calc-title {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    line-height: 1.2;
  }

  .calc-results {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }

  .elec-option {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .battery-option {
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }

  .option-select.large.option-image {
    text-align: center;
    padding: 10px;
  }

  .body-section-2 {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .solar-panels-input {
    justify-content: flex-start;
    align-items: center;
  }

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

  .calc-option {
    text-align: left;
    padding: 14px;
  }

  .tooptip-popup {
    right: 0;
  }

  .main-button-4 {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-button-4.highlight {
    border-color: #000;
  }

  .columns-2, .solar-calculator {
    text-align: left;
  }

  .body-section-3 {
    text-align: left;
    padding: 40px 20px 50px;
  }

  .main-button-5 {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-button-5.highlight {
    border-color: #000;
  }

  .calc-row {
    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;
    place-items: stretch stretch;
    display: flex;
  }

  .calc-row.fence-cal-radio-btn {
    justify-content: center;
    align-items: stretch;
  }

  .fence-cal-heading {
    text-align: center;
    font-size: 26px;
  }

  .input-holder-alt {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    font-size: 14px;
  }

  .fencing-cal-results {
    padding: 14px;
  }

  .fencing-cal-result-heading {
    font-size: 20px;
  }

  .result-alt.fence-calc-total-price {
    font-size: 14px;
  }

  .result-row {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .fence-calc-total-price {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
  }

  .fencing-cal-body {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .fencing-cal-body.head {
    font-size: 18px;
  }

  .fencing-cal-body.body-container {
    z-index: 1;
    flex-flow: column;
    width: 100%;
    position: relative;
  }

  .image {
    width: 90%;
  }

  .quote-form-title {
    font-size: 26px;
  }

  .option {
    width: 90%;
  }

  .fencing-strip {
    padding: 14px;
  }

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

  .hgi-icon {
    left: 20px;
    right: auto;
  }
}

#w-node-_6acf35fe-8343-7495-e318-899819c2e6af-6204c1c7, #w-node-_6acf35fe-8343-7495-e318-899819c2e6c0-6204c1c7 {
  place-self: start stretch;
}

#w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4303-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4313-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4314-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4318-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4324-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4328-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4334-6204c1c7, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4338-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c0-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c2-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c4-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c6-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03ca-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03cc-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03ce-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d0-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d4-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d6-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d8-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03da-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03de-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03e0-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03e2-6204c1c7, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03e4-6204c1c7, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68077-6204c1c8, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68079-6204c1c8, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68087-6204c1c8, #w-node-d8c8a0ec-0b59-53c8-3f29-560b94c68094-6204c1c8, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a8c-6204c1c9, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a93-6204c1c9, #w-node-_4828f7d7-7397-29ae-c9dc-ecc86eb35a9a-6204c1c9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_70961c28-513d-aa82-c2bc-d18637adbac8-6204c1c9, #w-node-_70961c28-513d-aa82-c2bc-d18637adbad9-6204c1c9 {
  place-self: start stretch;
}

#w-node-_1de40879-5880-1c95-59c1-9ac333221230-6204c1c9, #w-node-_2f1f3cbc-2b08-df90-d49b-3bacab8f7122-6204c1c9, #w-node-_677084bf-c51d-d6f7-3fe7-85d6246b1244-6204c1c9, #w-node-_677084bf-c51d-d6f7-3fe7-85d6246b1243-6204c1c9, #w-node-c2978013-604f-0156-dd8f-0db7c24ddddd-6204c1ca, #w-node-c2978013-604f-0156-dd8f-0db7c24ddde6-6204c1ca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6acf35fe-8343-7495-e318-899819c2e6af-3f5cf62b, #w-node-_6acf35fe-8343-7495-e318-899819c2e6c0-3f5cf62b {
  place-self: start stretch;
}

#w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4303-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4313-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4314-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4318-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4324-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4328-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4334-3f5cf62b, #w-node-_41e2d87e-2c88-4831-c9b2-3e0dd34a4338-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c0-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c2-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c4-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03c6-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03ca-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03cc-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03ce-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d0-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d4-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d6-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03d8-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03da-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03de-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03e0-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03e2-3f5cf62b, #w-node-_28aa81df-5ce2-c3ef-8098-8e76e73b03e4-3f5cf62b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-bdeaa983-ebed-5fc9-4ff3-adf15f824c66-c332974c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bdeaa983-ebed-5fc9-4ff3-adf15f824c4c-c332974c {
    justify-self: auto;
  }
}

