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

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

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

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

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

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

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

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

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

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

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

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

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

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

:root {
  --black: black;
  --white: #fff;
  --primary: #04265d;
  --third: #88a9dd;
  --secondary: #053e9b;
  --silver: #b7b5b5;
  --transparent: #fff0;
  --cookies-bg: #0009;
  --pale-grey: #ddd;
}

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

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

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

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

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

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

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

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

.body {
  background-color: var(--black);
  color: var(--black);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.p {
  color: var(--black);
  text-align: left;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  transition: opacity .2s;
  display: block;
}

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

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

.p.white {
  color: var(--white);
  margin-top: 10px;
}

.p.topp {
  padding-top: 20px;
}

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

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

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

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

.body-section._0b._0 {
  margin-top: 0;
}

.body-section.whitebg {
  background-color: var(--white);
  padding-bottom: 20px;
}

.body-section.whitebg.hori {
  flex-flow: row;
  display: flex;
}

.body-section.whitebg.hori.nop {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.body-section.whitebg._0p {
  margin-top: 0;
}

.body-section.bluebg {
  background-color: var(--third);
}

.body-section.bluebg._0p {
  margin-top: 0;
  padding-bottom: 20px;
}

.body-section._0p {
  margin-top: 0;
}

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

.container.bp {
  margin-bottom: 40px;
  padding-top: 40px;
}

.container.hori {
  flex-flow: row;
}

.service-grid {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  margin-top: 60px;
}

.service-div {
  border-bottom: 1px solid var(--white);
  height: auto;
  padding-bottom: 20px;
}

.service-top-image {
  background-image: url('../images/PHOTO-2026-04-21-10-52-42.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-end;
  height: 350px;
  display: flex;
}

.service-top-image._2 {
  background-image: url('../images/PHOTO-2026-04-21-10-52-362.webp');
  background-position: 50%;
  background-size: cover;
}

.service-top-image._3 {
  background-image: url('../images/PHOTO-2026-04-21-10-29-598.webp');
  background-position: 50%;
  background-size: cover;
}

.service-top-image._4 {
  background-image: url('../images/PHOTO-2026-04-21-10-39-283.webp');
  background-position: 50%;
  background-size: cover;
}

.service-number {
  color: var(--secondary);
  margin-top: 25px;
  font-family: Oswald, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
}

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

.service-header {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 0;
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
}

.service-text {
  color: var(--white);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
}

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

.service-light-text {
  color: var(--silver);
  text-decoration: none;
  transition: color .45s ease-in-out;
}

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

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

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

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

.para {
  width: 60%;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 16px;
}

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

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

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

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

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

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

.footer-col.large {
  margin-right: 60px;
}

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

.footer-link-text {
  max-width: 800px;
  color: var(--silver);
  text-align: right;
  border-bottom: 1px #dfdfdf;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 14px;
}

.footer-list-item {
  color: var(--white);
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

.footer-list-item:hover {
  color: var(--third);
}

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

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

.footer-section-title {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 300;
  line-height: 34px;
}

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

.footer-section {
  border-top: 1px solid #e0e0e080;
  padding-top: 60px;
}

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

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

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

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

.header-social-icon:hover {
  color: var(--primary);
  background-color: #0000;
}

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

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

.full-width-image-section {
  background-image: linear-gradient(90deg, black, var(--transparent)), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.full-width-image-section.para-img {
  background-image: linear-gradient(#00000059, #00000059), linear-gradient(to right, #000000cf, #fff0), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

.co-logo {
  width: 150px;
}

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

.logo-link {
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.nav-menu {
  width: 100%;
}

.lrg-heading {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
}

.lrg-heading._20b {
  margin-bottom: 20px;
}

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

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

.white-section._0 {
  padding-top: 0;
}

.h2 {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
  overflow: visible;
}

.h2.b-30 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 36px;
  font-weight: 300;
}

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

.h2.black.small {
  font-size: 40px;
}

.h2.center {
  margin-bottom: 30px;
  margin-left: 50px;
}

.h2.hero-text {
  text-align: center;
  font-size: 80px;
  line-height: 90px;
}

.h3-large {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}

.h3-large.b-30 {
  color: var(--white);
  text-transform: uppercase;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 50px;
  font-weight: 200;
  display: flex;
}

.footer-logo {
  width: 250px;
  max-width: 600px;
}

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

.list-head {
  color: var(--black);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

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

.list-head.white {
  color: var(--white);
}

.comments {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.comment-column {
  border: 1px none var(--silver);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  display: flex;
}

.comment-column._2 {
  border-style: solid;
  border-color: #ffffff40;
  width: 100%;
  height: auto;
  margin-left: 0;
  padding: 30px;
}

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

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

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

.single-comments:hover {
  transform: translate(15px);
}

.arrow {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

.hyperlink.blackj {
  box-shadow: inset 0 11px 0 0 var(--white);
  color: var(--black);
}

.hyperlink.blackj:hover {
  box-shadow: inset 0 -50px 0 0 var(--third);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.areas-list-item.areas-list-flex {
  color: var(--white);
  border-bottom: 1px solid #5f5f511f;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 400;
  display: flex;
}

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

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

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

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

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

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

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

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

.sitemap-list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  flex-direction: column;
  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: 20px;
  display: flex;
}

.sitemap-link {
  color: #353535;
  width: 90%;
  margin-bottom: 20px;
  font-weight: 500;
  text-decoration: none;
}

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

.nav-link-text:hover {
  color: var(--third);
  border-bottom: 1px solid #000;
}

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

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

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

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

.list._3col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

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

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

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

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

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

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

.buttons.dark {
  border-style: none;
  border-color: var(--white);
  background-color: var(--primary);
  color: var(--white);
  border-radius: 0;
  margin-top: 20px;
  margin-right: 0;
  padding: 20px 40px;
  font-family: Poppins, sans-serif;
  line-height: 22px;
}

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

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

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

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

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

.section.cta {
  background-image: linear-gradient(to bottom, var(--white), var(--white));
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.top-text {
  color: #d77474;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

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

.button-container {
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.button-container._0p {
  margin-top: 0;
}

.gallery {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 40px;
}

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

.testimonials {
  margin-top: 20px;
}

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

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

.button {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 40px;
  font-size: 13px;
  line-height: 22px;
  text-decoration: none;
  transition: all .4s;
}

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

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

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

.button.red {
  border-color: var(--primary);
  background-color: var(--third);
  color: var(--white);
}

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

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

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

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

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

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

.fs-cc-banner_text {
  color: var(--white);
  margin-right: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section-title {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
}

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

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

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

.contact-left {
  width: 40%;
}

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

.form-2 {
  width: 100%;
}

.cta-text-2 {
  color: var(--primary);
  margin-top: 10px;
}

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

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

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: none;
  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 {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

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

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

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

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

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

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

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

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

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

.livechat-button {
  background-color: var(--black);
  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(--primary);
}

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

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

.h3-heading {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.faq-div {
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--pale-grey);
  width: 100%;
}

.tab-dropdown {
  border-bottom: 1px solid #d3d3d3;
  width: 100%;
}

.tab-toggle {
  width: 100%;
}

.tab-dropdown-container.w--open {
  border-top: 1px solid var(--pale-grey);
  background-color: var(--primary);
  padding: 20px;
  position: relative;
}

.faq-title {
  color: var(--black);
  white-space: pre-wrap;
}

.faq-icon {
  color: var(--third);
}

.hero-section {
  background-image: linear-gradient(270deg, var(--transparent) 59%, var(--black)), url('../images/AdobeStock_451880390-1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100vh;
  min-height: 800px;
  padding-bottom: 3.5rem;
  display: flex;
  position: relative;
}

.hero-section.roofing {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/AdobeStock_434545693.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 60vh;
  min-height: 600px;
  padding-bottom: 0;
}

.hero-section.roofing.cr {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/PHOTO-2026-04-21-10-52-36.webp');
}

.hero-section.roofing.flat {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/AdobeStock_164780620.webp');
}

.hero-section.roofing.nr {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/PHOTO-2026-04-21-10-39-40.webp');
}

.hero-section.roofing.lead {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/PHOTO-2026-04-21-10-52-42.webp');
}

.hero-section.roofing.contact {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/AdobeStock_284840354.webp');
  background-size: auto, cover;
  height: 65vh;
}

.hero-section.roofing.faq {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/AdobeStock_1639504244.webp');
}

.hero-section.roofing.reigate {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/AdobeStock_173897207.webp');
}

.hero-section.roofing.awc {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/AdobeStock_177471655.webp');
}

.hero-section.roofing.g {
  background-image: linear-gradient(101deg, black, var(--transparent)), url('../images/PHOTO-2026-04-21-10-29-594.webp');
}

.container-main {
  z-index: 2;
  border-radius: 0;
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem;
  position: relative;
}

.hero-header_wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-wrap: balance;
  background-color: #fff;
  flex-flow: column;
  width: 100%;
  max-width: 800px;
  padding: 3.5rem;
  display: flex;
}

.line_element--hrz {
  height: .0625rem;
  color: var(--black);
  background-color: #000;
  margin-top: .75rem;
  margin-bottom: .75rem;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 60%;
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: none;
  position: absolute;
  inset: 0%;
}

.h1 {
  color: var(--black);
  text-transform: capitalize;
  font-family: Merriweather, serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 55px;
}

.div-block-2 {
  position: absolute;
  inset: 0%;
}

.paralax-image-front {
  z-index: 5;
  object-fit: cover;
  width: 300px;
  height: 300px;
  position: absolute;
}

.column {
  z-index: 5;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding-right: 5vw;
  display: flex;
  position: relative;
}

.column.right-side {
  justify-content: center;
  align-items: center;
}

.home-intro-section {
  z-index: 1;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 75vh;
  padding: 1rem 5vw .125rem;
  display: flex;
}

.paralax-image-back {
  z-index: 2;
  object-fit: cover;
  width: 400px;
  height: 500px;
  position: absolute;
  bottom: -5rem;
  right: -2.2rem;
  overflow: hidden;
}

.simple-paragraph {
  font-weight: 400;
}

.simple-paragraph.black {
  color: var(--black);
}

.paralax-column {
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
  overflow: visible;
}

.basic-container {
  z-index: 2;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  display: flex;
  position: relative;
}

.button-3 {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 20px 40px;
  font-size: 13px;
  line-height: 22px;
  text-decoration: none;
  transition: all .4s;
}

.button-3:hover {
  border-style: none;
  border-color: var(--third);
  background-color: var(--third);
  color: #fff;
  transform: translate(0, -5px);
}

.button-3.email {
  border-color: var(--third);
  color: #fff;
  background-color: #fff0;
  margin-left: 20px;
}

.button-3.email:hover {
  border-color: #fff;
}

.button-3.email.blacktxt {
  color: var(--black);
}

.button-3.email.blacktxt:hover {
  border-style: solid;
  border-color: var(--third);
}

.button-3.email.blacktxt.nop {
  margin-left: 0;
}

.button-3.blue {
  background-color: var(--secondary);
  color: var(--white);
}

.img-div-2 {
  width: 46%;
  box-shadow: -15px 17px 0 0 var(--third);
  background-image: url('../images/PHOTO-2026-04-21-10-39-41.webp');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.img-div-2.roofing {
  background-image: url('../images/AdobeStock_512441063.webp');
  background-position: 50%;
  background-size: cover;
}

.img-div-2.roofing.nr {
  background-image: url('../images/FB2.jpg');
}

.img-div-2.roofing.lead {
  background-image: url('../images/PHOTO-2026-04-21-10-52-411.webp');
  background-position: 50% 100%;
}

.p-3 {
  color: #fff;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.p-3.black {
  color: var(--black);
}

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

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

.body-section-2._0b.white-bg {
  background-color: var(--white);
}

.home-logo {
  width: 20%;
  display: flex;
}

.nav {
  background-color: var(--transparent);
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-button-3 {
  color: var(--black);
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

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

.nav-menu-2 {
  margin-left: auto;
}

.dropdown-toggle-2 {
  color: var(--white);
}

.dropdown-toggle-2:hover {
  border-bottom: 1px solid var(--white);
  color: var(--primary);
}

.dropdown-list {
  background-color: #ddd;
}

.dropdown-list.w--open {
  background-color: var(--third);
}

.nav-links {
  color: var(--white);
  transition: all .3s;
}

.nav-links:hover {
  border-bottom: 1px solid var(--white);
  color: var(--primary);
}

.nav-links.w--current {
  color: var(--secondary);
}

.section2 {
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.paragraph {
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.7em;
}

.div-block-4 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.div-block-4.r {
  align-items: flex-end;
  padding-right: 0%;
  position: relative;
}

.div-block-3 {
  justify-content: space-between;
  align-items: center;
  display: block;
}

.div-block-5 {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 550px;
  max-width: 100%;
  padding: 0;
  display: block;
}

.button-4 {
  z-index: 20;
  color: #000;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #868686;
  border-radius: 50px;
  margin-bottom: 2.5%;
  margin-right: 0%;
  padding: 20px 30px;
  font-size: 17px;
  position: relative;
  inset: auto 0% 0% auto;
}

.button-4:hover {
  color: #fff;
  background-color: #133a28;
  border-color: #133a28;
}

.button-4._2 {
  z-index: 10;
  color: #fff;
  letter-spacing: .5px;
  background-color: #fff0;
  border-width: 0;
  border-color: #86868600;
  margin-left: 0%;
  margin-right: 0%;
  padding: 20px 14px 19px 0;
  font-size: 18px;
  position: relative;
  inset: auto auto 0% 0%;
}

.button-4._2.sss {
  color: #000;
  background-image: url('../images/right-arrow-black_1right arrow black.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 11px;
  border-radius: 0;
  margin-left: 3%;
  padding-bottom: 20px;
  padding-right: 20px;
  transition: all .3s;
}

.button-4._2.sss {
  color: #000;
  background-image: url('../images/right-arrow-black_1right arrow black.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 11px;
  margin-left: 3%;
  padding-bottom: 20px;
  padding-right: 20px;
  transition: all .3s;
}

.button-4._2.sss:hover {
  padding-right: 26px;
}

.button-4.ss {
  z-index: 10;
  color: #fff;
  background-color: #133a28;
  border-radius: 0;
  margin-top: 50px;
  position: relative;
}

.button-4.ss {
  z-index: 10;
  color: #fff;
  background-color: #133a28;
  margin-top: 50px;
  position: relative;
}

.button-4.ss:hover {
  background-color: #0d271b;
}

.text-block-4 {
  color: #000;
  margin-bottom: 6%;
  margin-left: auto;
  margin-right: auto;
  font-size: 42px;
  line-height: 1em;
}

.div-block-6 {
  background-color: var(--primary);
  background-image: url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0;
  background-size: contain;
  width: 88%;
  max-width: 100%;
  height: 60%;
  margin-bottom: -91px;
  margin-left: auto;
  margin-right: 0;
  padding: 79px;
  position: absolute;
}

.div-block-6._2 {
  background-color: #b3acac;
  background-image: url('../images/AdobeStock_367833784.webp');
  background-position: 46%;
  background-size: cover;
  width: 86%;
  height: 60%;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.co {
  justify-content: space-between;
  align-items: center;
  width: 1500px;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

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

.left-div.r {
  align-items: flex-end;
  padding-right: 0%;
  position: relative;
}

.div-block-9 {
  justify-content: space-between;
  align-items: center;
  height: 110vh;
  display: block;
}

.div-block-10 {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 550px;
  max-width: 100%;
  padding: 0;
  display: block;
}

.div-block-11 {
  background-color: #133a28;
  background-image: url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0;
  background-size: contain;
  width: 88%;
  max-width: 100%;
  height: 60%;
  margin-bottom: -91px;
  margin-left: auto;
  margin-right: 0;
  padding: 79px;
  position: absolute;
}

.div-block-11._2 {
  background-color: #b3acac;
  background-image: url('../images/scottish-highland-cattle-on-a-pasture-2024-09-17-06-59-12-utc_1scottish-highland-cattle-on-a-pasture-2024-09-17-06-59-12-utc.avif');
  background-position: 46%;
  background-size: cover;
  width: 86%;
  height: 60%;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.div-block-12 {
  justify-content: space-between;
  align-items: center;
  width: 1500px;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

.div-block-13 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.div-block-13.r {
  align-items: flex-end;
  padding-right: 0%;
  position: relative;
}

.div-block-14 {
  justify-content: space-between;
  align-items: center;
  height: 110vh;
  display: block;
}

.div-block-15 {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 550px;
  max-width: 100%;
  padding: 0;
  display: block;
}

.div-block-16 {
  background-color: #133a28;
  background-image: url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0;
  background-size: contain;
  width: 88%;
  max-width: 100%;
  height: 60%;
  margin-bottom: -91px;
  margin-left: auto;
  margin-right: 0;
  padding: 79px;
  position: absolute;
}

.div-block-16._2 {
  background-color: #b3acac;
  background-image: url('../images/scottish-highland-cattle-on-a-pasture-2024-09-17-06-59-12-utc_1scottish-highland-cattle-on-a-pasture-2024-09-17-06-59-12-utc.avif');
  background-position: 46%;
  background-size: cover;
  width: 86%;
  height: 60%;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.body-div {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.body-div.down {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.left1 {
  width: 48%;
}

.right-2 {
  justify-content: space-between;
  align-items: flex-start;
  width: 48%;
  display: block;
  position: relative;
}

.div-block-17 {
  background-color: #133a28;
  background-image: url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0;
  background-size: contain;
  width: 88%;
  max-width: 100%;
  height: 60%;
  margin-bottom: -91px;
  margin-left: auto;
  margin-right: 0;
  padding: 79px;
  position: absolute;
}

.div-block-17._2 {
  background-color: #b3acac;
  background-image: url('../images/scottish-highland-cattle-on-a-pasture-2024-09-17-06-59-12-utc_1scottish-highland-cattle-on-a-pasture-2024-09-17-06-59-12-utc.avif');
  background-position: 46%;
  background-size: cover;
  width: 86%;
  height: 60%;
  margin-bottom: 2%;
  margin-right: 8%;
  position: absolute;
}

.pattern-div {
  background-color: var(--primary);
  background-image: url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0;
  background-size: contain;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 20px 0 0 40px;
  padding: 0 10px 10px;
  position: relative;
}

.imagediv {
  background-color: #133a28;
  background-image: url('../images/Minimalist-Seamless-Patterns.png');
  background-position: 0 0;
  background-size: contain;
  width: 88%;
  max-width: 100%;
  height: 60%;
  margin-bottom: -91px;
  margin-left: auto;
  margin-right: 0;
  padding: 79px;
  position: absolute;
}

.imagediv._2 {
  z-index: 10;
  background-color: #b3acac;
  background-image: url('../images/PHOTO-2026-04-21-10-52-37.webp');
  background-position: 46%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 20px;
  right: 0;
}

.imagediv.roofing {
  z-index: 5;
  background-color: var(--transparent);
  background-image: url('../images/AdobeStock_648421497.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.imagediv.roofing.flat {
  background-image: url('../images/PHOTO-2026-04-21-10-29-595.webp');
}

.imagediv.roofing.nr {
  background-image: url('../images/PHOTO-2026-04-21-10-29-597.webp');
  height: 90%;
}

.imagediv.roofing.lead {
  background-image: url('../images/FB1.jpg');
  width: 98%;
  height: 95%;
}

.imagediv.cr {
  z-index: 5;
  background-image: url('../images/PHOTO-2026-04-21-10-52-353.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.contact-info-block {
  border-radius: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  transition: box-shadow .2s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.contact-info-block.last {
  margin-bottom: 0;
}

.git-icon {
  background-color: var(--third);
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  font-family: "Fa Sharp 300", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.contact-info-text {
  flex-direction: column;
  display: flex;
}

.cta-text-contact {
  color: #212121;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.cta-link {
  color: #7e7e7e;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.cta-link.address {
  max-width: 350px;
}

.ch-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.ch-grid-div {
  border: 2px dashed var(--secondary);
  padding: 15px;
}

.subheading {
  font-size: 18px;
  font-weight: 600;
}

.subheading.white {
  color: var(--white);
}

.full-w-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 300px;
}

.full-w-img.cr {
  background-image: url('../images/PHOTO-2026-04-21-10-52-28.webp');
}

.full-w-img.flat {
  background-image: url('../images/PHOTO-2026-04-21-10-29-598.webp');
}

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

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

.rc-div-grid {
  border: 2px dashed var(--third);
  padding: 15px;
}

.bullet-icon {
  background-color: var(--third);
  color: #fff;
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: "Fa Sharp 300", sans-serif;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

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

.faq-list {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style-type: square;
}

.list-item-3, .list-item-4, .white-bullet, .list-item-5, .list-item-6 {
  color: var(--white);
}

@media screen and (min-width: 1280px) {
  .paralax-image-back {
    width: 28rem;
  }

  .basic-container {
    max-width: 1100px;
  }
}

@media screen and (min-width: 1440px) {
  .paralax-image-front {
    width: 17rem;
    height: 25rem;
  }

  .paralax-image-back {
    width: 25rem;
  }

  .basic-container {
    max-width: 1200px;
  }
}

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

  .container {
    max-width: 1800px;
  }

  .service-grid {
    width: 100%;
  }

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

  .whatsapp-chat {
    display: none;
  }

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

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

  .hero-header_wrap {
    max-width: 800px;
  }

  .paralax-image-front {
    box-sizing: content-box;
    object-fit: cover;
    width: 40rem;
    max-width: 400px;
  }

  .column.right-side {
    padding-right: 25vw;
  }

  .home-intro-section {
    padding-left: 0;
    padding-right: 0;
  }

  .paralax-image-back {
    height: 35rem;
  }

  .basic-container {
    max-width: 1700px;
  }

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

@media screen and (max-width: 991px) {
  .p {
    position: static;
  }

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

  .container.hori {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .service-div {
    width: 100%;
  }

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

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

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

  .para {
    width: 100%;
  }

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

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

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

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

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

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

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

  .footer-div {
    flex-direction: column;
    place-content: center;
    justify-items: stretch;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .lrg-heading {
    font-size: 50px;
    line-height: 60px;
  }

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

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

  .comment-column {
    padding: 30px;
  }

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

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

  .top-div {
    width: 95%;
  }

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

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

  .icon-5 {
    color: #fff;
  }

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

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

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

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

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

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

  .google-maps {
    width: 100%;
  }

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

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

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

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

  .buttons.dark {
    margin-top: 0;
  }

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

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

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

  .lb-img {
    height: 180px;
  }

  .dropdown-toggle {
    width: 100%;
  }

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

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

  .contact-left {
    width: 100%;
  }

  .whatsapp-block {
    display: flex;
  }

  .hero-section {
    justify-content: flex-end;
    align-items: center;
    height: 80vh;
    min-height: 700px;
  }

  .hero-header_wrap {
    width: 100%;
  }

  .h1 {
    font-size: 35px;
    line-height: 45px;
  }

  .div-block-2 {
    width: 100%;
    height: 400px;
  }

  .column {
    width: 100%;
  }

  .home-intro-section {
    padding: 0 5vw 5.5rem;
  }

  .paralax-image-back {
    height: 20rem;
    bottom: auto;
  }

  .paralax-column {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 4rem;
  }

  .basic-container {
    max-width: 700px;
  }

  .img-div-2 {
    width: 100%;
    min-height: 400px;
  }

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

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

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

  .body-div {
    flex-flow: column;
  }

  .left1 {
    width: 100%;
  }

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

  .pattern-div {
    width: 89%;
    margin-left: 0;
    padding-left: 0;
  }

  .imagediv._2 {
    width: 80%;
    bottom: 0;
    right: 40px;
  }

  .contact-info-block.last {
    margin-bottom: 30px;
  }

  .cta-link.address {
    max-width: 100%;
  }
}

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

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

  .container.hori {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

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

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

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

  .footer-list-item {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-columns: 1.25fr;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .footer-section-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 24px;
  }

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

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

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

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

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

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

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

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

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

  .comment-column._2 {
    padding: 20px;
  }

  .timeline {
    text-align: left;
  }

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

  .top-container-black {
    width: 90%;
  }

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

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

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

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

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

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

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

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

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

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

  .buttons {
    text-align: center;
  }

  .buttons.banner {
    display: none;
  }

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

  .button-container {
    margin-bottom: 40px;
  }

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

  .lb-img {
    height: 150px;
  }

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

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

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

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

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

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

  .whatsapp-container {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
  }

  .hero-header_wrap {
    padding: 1.5rem;
  }

  .paralax-image-front {
    width: 14rem;
    height: 16rem;
  }

  .column {
    margin-bottom: 1rem;
  }

  .paralax-image-back {
    width: 18rem;
    height: 16rem;
    margin-right: 20px;
  }

  .paralax-column {
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .p-3 {
    font-size: 15.5px;
  }

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

  .home-logo.w--current {
    width: 40%;
  }

  .div-block-4 {
    width: 100%;
  }

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

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

  .cta-link.address {
    max-width: 330px;
  }
}

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

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

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

  .container {
    width: 85%;
  }

  .container.bp {
    padding-top: 30px;
  }

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

  .service-div {
    height: auto;
  }

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

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

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

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

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

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

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

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

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

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

  .footer-col {
    width: 100%;
  }

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

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

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

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

  .footer-div {
    align-items: center;
    width: 100%;
    padding-bottom: 80px;
  }

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

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

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

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

  .co-logo {
    width: 125px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .h2.center {
    margin-left: 25px;
  }

  .h2.hero-text {
    font-size: 50px;
    line-height: 60px;
  }

  .h3-large.b-30 {
    font-size: 38px;
  }

  .footer-logo {
    width: 160px;
  }

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

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

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

  .comment-column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 20px;
  }

  .comment-column._2 {
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

  .content-section.white {
    padding-bottom: 40px;
  }

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

  .h3-logo {
    width: 200px;
    margin-bottom: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .areas-list-item.areas-list-flex {
    font-size: 14px;
  }

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

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

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

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

  .buttons {
    margin-bottom: 10px;
  }

  .buttons.dark {
    width: auto;
  }

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

  .section.cta {
    background-color: var(--white);
    background-image: none;
    padding: 30px 10px;
  }

  .button-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .gallery {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .lb-img {
    height: 120px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .container-2 {
    width: 85%;
  }

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

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

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

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

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

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

  .livechat-button {
    width: 90%;
  }

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

  .hero-section {
    justify-content: center;
    align-items: center;
    height: 65vh;
    padding-bottom: 0;
  }

  .hero-section.roofing {
    min-height: 500px;
  }

  .hero-section.roofing.contact {
    background-position: 0 0, 100%;
  }

  .container-main.is--hero {
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    display: flex;
  }

  .hero-header_wrap {
    padding: 2rem;
  }

  .hero-image {
    min-height: 500px;
  }

  .h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .div-block-2 {
    flex-flow: row;
    display: none;
  }

  .paralax-image-front {
    width: 20rem;
    height: 13rem;
    display: none;
  }

  .column {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0%;
    padding-right: 0;
  }

  .home-intro-section {
    min-height: 75px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .paralax-image-back {
    display: none;
  }

  .paralax-column {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }

  .button-3 {
    text-align: center;
    width: 100%;
  }

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

  .img-div-2 {
    min-height: 250px;
    margin-top: 30px;
    margin-bottom: 0;
    box-shadow: -8px 6px #fff;
  }

  .p-3 {
    font-size: 14.5px;
    line-height: 25px;
  }

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

  .home-logo {
    width: 50%;
  }

  .button-4 {
    position: relative;
  }

  .button-4._2 {
    padding-top: 0;
    position: relative;
    inset: 0%;
  }

  .body-div {
    grid-column-gap: 41px;
    grid-row-gap: 41px;
  }

  .pattern-div {
    width: 100%;
  }

  .imagediv._2 {
    width: 90%;
    right: 16px;
  }

  .contact-info-block.last {
    margin-bottom: 20px;
  }

  .git-icon {
    font-size: 1em;
    display: none;
  }

  .cta-text-contact {
    margin-bottom: 0;
  }

  .ch-grid, .rc-grid {
    grid-template-columns: 1fr;
  }
}

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

#w-node-_349bf6d0-cd4c-8c32-86b3-e8506248ba12-72c6be78, #w-node-_2aaacf63-82e3-d195-3948-8161aaad1b4c-72c6be78, #w-node-_0b56cdb3-48b4-81fd-5379-5bf21f54e5dc-72c6be78, #w-node-_7449c15a-8fe0-c795-9670-db84b26bbf62-72c6be78 {
  align-self: center;
}

#w-node-bbfebfb5-6500-7e2f-cb58-932472e01d13-72c6be78 {
  place-self: center;
}

#w-node-bbfebfb5-6500-7e2f-cb58-932472e01d16-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d38-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d44-72c6be78 {
  place-self: start;
}

#w-node-bbfebfb5-6500-7e2f-cb58-932472e01d53-72c6be78 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a999-72c6be79 {
  place-self: center;
}

#w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a99c-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9be-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9ca-72c6be79 {
  place-self: start;
}

#w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d9-72c6be79 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d601e413-21f9-8b03-e4c7-04e9a0eafca0-a0eafc98, #w-node-d601e413-21f9-8b03-e4c7-04e9a0eafca8-a0eafc98, #w-node-d601e413-21f9-8b03-e4c7-04e9a0eafcb0-a0eafc98, #w-node-d601e413-21f9-8b03-e4c7-04e9a0eafcb8-a0eafc98 {
  align-self: center;
}

#w-node-_4f1ab840-c804-50e3-8767-5149f61cf932-72c6be7a {
  place-self: center;
}

#w-node-_4f1ab840-c804-50e3-8767-5149f61cf935-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf957-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf963-72c6be7a {
  place-self: start;
}

#w-node-_4f1ab840-c804-50e3-8767-5149f61cf972-72c6be7a, #w-node-f7ddb82a-3a9d-011f-6705-5af787b64c21-72c6be7b, #w-node-f7ddb82a-3a9d-011f-6705-5af787b64c27-72c6be7b, #w-node-f7ddb82a-3a9d-011f-6705-5af787b64c2d-72c6be7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87f94-72c6be7b {
  place-self: center;
}

#w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87f97-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fb9-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fc5-72c6be7b {
  place-self: start;
}

#w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fd4-72c6be7b, #w-node-_229c4e81-8d94-afef-de53-fb056944cfa8-72c6be7c, #w-node-_5a6e24a3-2941-5227-0fb6-29c7e508fdab-72c6be7c, #w-node-_414d2728-2d6b-9a9b-e379-94bb674964fd-72c6be7c, #w-node-a4be77d9-642e-95df-e3bb-6f5fbff6da4b-72c6be7c, #w-node-_589219e4-468e-b7ca-88f4-c6315a513c00-72c6be7c, #w-node-ade1fbc7-7725-790e-bbd2-4d26982d4e2a-72c6be7c, #w-node-_5c6b5f2a-236b-98e6-f42c-ccad1ed848a0-72c6be7c, #w-node-_7de29f83-e4f4-54e2-448a-ac4da997f048-72c6be7c, #w-node-ab82496b-de09-8f2c-4ba3-b70cc2fe483e-72c6be7c, #w-node-d784583c-33ec-2cbd-1a63-caf768190af6-72c6be7c, #w-node-_9d2b4b7d-e4ee-3971-524b-c584d8c882b6-72c6be7c, #w-node-dec5a98f-7d07-a967-2b29-0e08379f2990-72c6be7c, #w-node-_36c0251e-28e2-a23e-9041-f0389cb539db-72c6be7c, #w-node-d503504b-4a6d-64f1-3201-ef9a3f14e4ed-72c6be7c, #w-node-_70b285b2-7617-b3f3-9ef6-010e6d281a05-72c6be7c, #w-node-_71b2e440-7710-2190-8de5-7e30abd282b7-72c6be7c, #w-node-_0d40862b-c81d-6eab-58b8-e1f226e24388-72c6be7c, #w-node-_9a5daf6f-a777-1bd3-344a-f9f0bc4ac490-72c6be7c, #w-node-_838d6331-0ac9-6ead-59dc-417a8a3f7370-72c6be7c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7326-72c6be7c {
  place-self: center;
}

#w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7329-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a734b-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7357-72c6be7c {
  place-self: start;
}

#w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7366-72c6be7c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_39f46612-5675-4492-dd3b-0b627859e361-72c6be7e {
  place-self: center;
}

#w-node-_39f46612-5675-4492-dd3b-0b627859e364-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e386-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e392-72c6be7e {
  place-self: start;
}

#w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef4f0-72c6be80 {
  place-self: center;
}

#w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef4f3-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef515-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef521-72c6be80 {
  place-self: start;
}

#w-node-_349bf6d0-cd4c-8c32-86b3-e8506248ba12-1128b1d8, #w-node-_2aaacf63-82e3-d195-3948-8161aaad1b4c-1128b1d8, #w-node-_0b56cdb3-48b4-81fd-5379-5bf21f54e5dc-1128b1d8, #w-node-_7449c15a-8fe0-c795-9670-db84b26bbf62-1128b1d8 {
  align-self: center;
}

#w-node-ab81d46e-a4c5-abe4-25f8-e0da72646016-1128b1d8 {
  place-self: center;
}

#w-node-ab81d46e-a4c5-abe4-25f8-e0da72646019-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da7264603b-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646047-1128b1d8 {
  place-self: start;
}

#w-node-ab81d46e-a4c5-abe4-25f8-e0da72646056-1128b1d8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_349bf6d0-cd4c-8c32-86b3-e8506248ba12-627c5528, #w-node-_2aaacf63-82e3-d195-3948-8161aaad1b4c-627c5528, #w-node-_0b56cdb3-48b4-81fd-5379-5bf21f54e5dc-627c5528, #w-node-_7449c15a-8fe0-c795-9670-db84b26bbf62-627c5528 {
  align-self: center;
}

#w-node-abb44578-ca61-2676-a411-e1bfd0b00111-627c5528 {
  place-self: center;
}

#w-node-abb44578-ca61-2676-a411-e1bfd0b00114-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00136-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00142-627c5528 {
  place-self: start;
}

#w-node-abb44578-ca61-2676-a411-e1bfd0b00151-627c5528 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b79d-2ac44f63 {
  place-self: center;
}

#w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7a0-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7c2-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7ce-2ac44f63 {
  place-self: start;
}

#w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7dd-2ac44f63 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_349bf6d0-cd4c-8c32-86b3-e8506248ba12-baf7c9ef, #w-node-_2aaacf63-82e3-d195-3948-8161aaad1b4c-baf7c9ef, #w-node-_0b56cdb3-48b4-81fd-5379-5bf21f54e5dc-baf7c9ef, #w-node-_7449c15a-8fe0-c795-9670-db84b26bbf62-baf7c9ef {
  align-self: center;
}

#w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af47-baf7c9ef {
  place-self: center;
}

#w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af4a-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af6c-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af78-baf7c9ef {
  place-self: start;
}

#w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af87-baf7c9ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_349bf6d0-cd4c-8c32-86b3-e8506248ba12-fd92b4c6, #w-node-_2aaacf63-82e3-d195-3948-8161aaad1b4c-fd92b4c6, #w-node-_0b56cdb3-48b4-81fd-5379-5bf21f54e5dc-fd92b4c6, #w-node-_7449c15a-8fe0-c795-9670-db84b26bbf62-fd92b4c6 {
  align-self: center;
}

#w-node-_6b791a5a-bdbf-834c-97e8-d0b03b4040fd-fd92b4c6 {
  place-self: center;
}

#w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404100-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404122-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b40412e-fd92b4c6 {
  place-self: start;
}

#w-node-_6b791a5a-bdbf-834c-97e8-d0b03b40413d-fd92b4c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a999-87410476 {
  place-self: center;
}

#w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a99c-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9be-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9ca-87410476 {
  place-self: start;
}

#w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d9-87410476 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_86dc6770-16cb-81fb-c036-7e9b77c027e6-72c6be78 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d13-72c6be78 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d4e-72c6be78 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d53-72c6be78 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a999-72c6be79 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d4-72c6be79 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d9-72c6be79 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_4f1ab840-c804-50e3-8767-5149f61cf932-72c6be7a {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_4f1ab840-c804-50e3-8767-5149f61cf96d-72c6be7a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f1ab840-c804-50e3-8767-5149f61cf972-72c6be7a {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87f94-72c6be7b {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fcf-72c6be7b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fd4-72c6be7b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7326-72c6be7c {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7361-72c6be7c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7366-72c6be7c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_39f46612-5675-4492-dd3b-0b627859e361-72c6be7e {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_39f46612-5675-4492-dd3b-0b627859e39c-72c6be7e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef4f0-72c6be80 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef52b-72c6be80 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646016-1128b1d8 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646051-1128b1d8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646056-1128b1d8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-abb44578-ca61-2676-a411-e1bfd0b00111-627c5528 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-abb44578-ca61-2676-a411-e1bfd0b0014c-627c5528 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-abb44578-ca61-2676-a411-e1bfd0b00151-627c5528 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b79d-2ac44f63 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7d8-2ac44f63 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7dd-2ac44f63 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af47-baf7c9ef {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af82-baf7c9ef {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af87-baf7c9ef {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b4040fd-fd92b4c6 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404138-fd92b4c6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b40413d-fd92b4c6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a999-87410476 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d4-87410476 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d9-87410476 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d16-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d38-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d44-72c6be78, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a99c-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9be-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9ca-72c6be79, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf935-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf957-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf963-72c6be7a {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center start;
  }

  #w-node-f7ddb82a-3a9d-011f-6705-5af787b64c21-72c6be7b, #w-node-f7ddb82a-3a9d-011f-6705-5af787b64c27-72c6be7b, #w-node-f7ddb82a-3a9d-011f-6705-5af787b64c2d-72c6be7b {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87f97-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fb9-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fc5-72c6be7b, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7329-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a734b-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7357-72c6be7c, #w-node-_39f46612-5675-4492-dd3b-0b627859e364-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e386-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e392-72c6be7e, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef4f3-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef515-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef521-72c6be80, #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646019-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da7264603b-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646047-1128b1d8, #w-node-abb44578-ca61-2676-a411-e1bfd0b00114-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00136-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00142-627c5528, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7a0-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7c2-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7ce-2ac44f63, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af4a-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af6c-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af78-baf7c9ef, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404100-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404122-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b40412e-fd92b4c6, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a99c-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9be-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9ca-87410476 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d13-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d16-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d38-72c6be78, #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d44-72c6be78 {
    justify-self: start;
  }

  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d4e-72c6be78 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bbfebfb5-6500-7e2f-cb58-932472e01d53-72c6be78 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a999-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a99c-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9be-72c6be79, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9ca-72c6be79 {
    justify-self: start;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d4-72c6be79 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d9-72c6be79 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_4f1ab840-c804-50e3-8767-5149f61cf932-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf935-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf957-72c6be7a, #w-node-_4f1ab840-c804-50e3-8767-5149f61cf963-72c6be7a {
    justify-self: start;
  }

  #w-node-_4f1ab840-c804-50e3-8767-5149f61cf96d-72c6be7a {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_4f1ab840-c804-50e3-8767-5149f61cf972-72c6be7a {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87f94-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87f97-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fb9-72c6be7b, #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fc5-72c6be7b {
    justify-self: start;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fcf-72c6be7b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a9dc9c3a-de3b-a000-63a5-a945f7a87fd4-72c6be7b {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7326-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7329-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a734b-72c6be7c, #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7357-72c6be7c {
    justify-self: start;
  }

  #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7361-72c6be7c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0edaaf97-ed91-dc80-0e30-c7fd249a7366-72c6be7c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_39f46612-5675-4492-dd3b-0b627859e361-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e364-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e386-72c6be7e, #w-node-_39f46612-5675-4492-dd3b-0b627859e392-72c6be7e {
    justify-self: start;
  }

  #w-node-_39f46612-5675-4492-dd3b-0b627859e39c-72c6be7e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef4f0-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef4f3-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef515-72c6be80, #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef521-72c6be80 {
    justify-self: start;
  }

  #w-node-d7d9e6ac-a2ce-56ca-41bf-6a3e0eaef52b-72c6be80 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646016-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646019-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da7264603b-1128b1d8, #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646047-1128b1d8 {
    justify-self: start;
  }

  #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646051-1128b1d8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-ab81d46e-a4c5-abe4-25f8-e0da72646056-1128b1d8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-abb44578-ca61-2676-a411-e1bfd0b00111-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00114-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00136-627c5528, #w-node-abb44578-ca61-2676-a411-e1bfd0b00142-627c5528 {
    justify-self: start;
  }

  #w-node-abb44578-ca61-2676-a411-e1bfd0b0014c-627c5528 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-abb44578-ca61-2676-a411-e1bfd0b00151-627c5528 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b79d-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7a0-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7c2-2ac44f63, #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7ce-2ac44f63 {
    justify-self: start;
  }

  #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7d8-2ac44f63 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0554fb9-7d09-6d94-7f5a-de593cf9b7dd-2ac44f63 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af47-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af4a-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af6c-baf7c9ef, #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af78-baf7c9ef {
    justify-self: start;
  }

  #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af82-baf7c9ef {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9a3a20a6-0f4c-2b27-3d5d-29491425af87-baf7c9ef {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b4040fd-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404100-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404122-fd92b4c6, #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b40412e-fd92b4c6 {
    justify-self: start;
  }

  #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b404138-fd92b4c6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6b791a5a-bdbf-834c-97e8-d0b03b40413d-fd92b4c6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a999-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a99c-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9be-87410476, #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9ca-87410476 {
    justify-self: start;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d4-87410476 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fbf4f4fd-a48e-8d13-60b5-68499a33a9d9-87410476 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }
}


@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Sharp Solid 900';
  src: url('../fonts/fa-sharp-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Sharp 400';
  src: url('../fonts/fa-sharp-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Sharp 300';
  src: url('../fonts/fa-sharp-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Duotone 900';
  src: url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6';
  src: url('../fonts/FA6-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 solid';
  src: url('../fonts/FA6-Solid.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa6 brands';
  src: url('../fonts/FA6-Brands.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brands 400';
  src: url('../fonts/Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arrow right solid';
  src: url('../fonts/arrow-right-solid.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}