@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: Arrow right solid;
  src: url('../fonts/arrow-right-solid.svg') format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-slate-grey: #3d414a;
  --white: white;
  --black: black;
  --sky-blue: #63e1ff;
  --black-2: #23262c;
  --red: #f91818;
  --silver: #b7b5b5;
  --snow: #f5eded;
  --black-3: #00000059;
  --firebrick: #bb0606;
}

.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(--dark-slate-grey);
  font-family: Poppins, sans-serif;
}

.banner-header {
  color: var(--white);
  letter-spacing: 1px;
  flex-flow: column;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  display: flex;
}

.p {
  color: var(--white);
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

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

.button-outline {
  border: 1.5px solid var(--white);
  color: #fdfdfd;
  background-color: #0000;
  border-radius: 20px 2px;
  margin-top: 35px;
  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(--sky-blue);
  background-color: var(--sky-blue);
  color: var(--black);
}

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

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

.body-section.white {
  border-top: 1px solid #ffffffa6;
}

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

.body-section.dark {
  background-color: var(--black-2);
  padding-top: 100px;
  padding-bottom: 140px;
}

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

.hero-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

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

.container.t60 {
  margin-top: 30px;
}

.hero-bg-grad {
  background-image: linear-gradient(#00000080, #00000080), url('../images/homepage-banner.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100%;
  height: 750px;
  margin-top: 0;
  padding-bottom: 0;
  position: sticky;
}

.left-section {
  width: 65%;
  margin-bottom: 60px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 60px;
  transition: all .2s ease-in-out;
}

.button-fill {
  border: 1.5px solid var(--white);
  color: #fdfdfd;
  background-color: #0000;
  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:hover {
  border-width: 1.5px;
  border-color: var(--red);
  background-color: var(--red);
  color: var(--white);
}

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

.button-fill.header:hover {
  border-color: var(--white);
  color: var(--white);
  background-color: #0009;
}

.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/grey-roof-corner.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/old-roofing.webp');
  background-position: 50%;
  background-size: cover;
}

.service-top-image._3 {
  background-image: url('../images/flat-roof-in-garden.webp');
  background-position: 50% 23%;
  background-size: cover;
}

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

.service-number {
  color: var(--sky-blue);
  margin-top: 50px;
  font-family: Oswald, sans-serif;
  font-size: 72px;
  font-weight: 700;
}

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

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

.service-text {
  color: var(--white);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1.7rem;
}

.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: #a9a9a9;
  font-size: .9rem;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

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

.service-link {
  background-color: var(--dark-slate-grey);
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  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-head {
  justify-content: space-between;
  margin-bottom: 0;
  display: flex;
}

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

.para {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.75;
}

.left-side {
  box-shadow: -15px 17px 0 0 var(--white);
  align-self: stretch;
  align-items: stretch;
  width: 46%;
  display: flex;
}

.inner-img {
  background-image: url('../images/long-roof-siding.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: static;
}

.inner-img.roof1 {
  background-image: url('../images/roofing-services-page-roofing-company-in-keynsham.webp');
  background-position: 50%;
}

.inner-img.rep1 {
  background-image: url('../images/old-roofing.webp');
  background-position: 0%;
}

.inner-img.repairs1 {
  background-image: url('../images/scaffolding-along-roofing-services.webp');
}

.inner-img.flat1 {
  background-image: url('../images/flat-roof-top.webp');
  background-position: 50% 0;
}

.inner-img.velux {
  background-image: url('../images/grey-roof-with-velux-windows.webp');
}

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

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

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

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

.instagram-live-feed {
  width: 100%;
  margin-top: 40px;
}

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

.submit-button {
  background-color: var(--red);
  text-transform: uppercase;
  border: 1px solid #0000;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-left: 10px;
  padding: 15px 20px;
  transition: all .3s ease-in-out;
}

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

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

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

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

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

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

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

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

.text-field {
  border: 1px solid #09665852;
  border-radius: 4px 0 0 4px;
  height: 100%;
  margin-bottom: 0;
}

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

.form-wrapper-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

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

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

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

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

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

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

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

.header-social-icon._2 {
  font-size: 4vw;
}

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

.full-width-image-section.para-img {
  background-image: linear-gradient(#0000007d, #0000007d), linear-gradient(to right, #000000cf, #fff0), url('../images/van.webp');
  background-position: 0 0, 0 0, 50% 95%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 100px;
  padding-bottom: 100px;
}

.full-width-image-section.para-img.svs {
  background-image: linear-gradient(#0000007d, #0000007d), linear-gradient(to right, #000000cf, #fff0), url('../images/black-roof-replacement.webp');
}

.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-4 {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.logo-link {
  width: auto;
}

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

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

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

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

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

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

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

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

.service-navlink:hover {
  color: var(--red);
}

.service-navlink.w--current {
  color: #fff;
}

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

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

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

.banner-red._15 {
  margin-left: 15px;
}

.h1 {
  color: var(--white);
  margin-top: 0;
  font-family: Oswald, sans-serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 70px;
}

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

.gallery-hover {
  opacity: .58;
  background-image: linear-gradient(to top, #000000b0, #0000);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 40px;
  transition: all .3s;
  display: flex;
}

.gallery-hover:hover {
  opacity: 1;
  background-color: #0000;
  justify-content: flex-end;
  padding-bottom: 170px;
}

.project1 {
  box-shadow: 26px 24px 0 -18px var(--white);
  background-image: url('../images/scaffolding-on-old-house-with-velux.webp');
  background-position: 50%;
  background-size: cover;
  height: 450px;
  text-decoration: none;
}

.project1.roof1 {
  background-image: url('../images/side-roofing-installation.webp');
}

.project1.roof2 {
  background-image: url('../images/roof-tiles-upgraded.webp');
}

.project1.roof3 {
  background-image: url('../images/roof-with-velux.webp');
}

.project1.rep1 {
  background-image: url('../images/black-roofing.webp');
}

.project1.rep2 {
  background-image: url('../images/the-corner-of-a-roof.webp');
}

.project1.rep3 {
  background-image: url('../images/roof-without-tiling.webp');
}

.project1.dom1 {
  background-image: url('../images/grey-roof-with-velux-windows.webp');
}

.project1.dom2 {
  background-image: url('../images/three-windows-on-a-dormer.webp');
}

.project1.dom3 {
  background-image: url('../images/long-roof-siding.webp');
}

.project1.flat2 {
  background-image: url('../images/flat-roofing-small.webp');
}

.project1.flat1 {
  background-image: url('../images/flat-roof-in-garden.webp');
}

.project1.flat3 {
  background-image: url('../images/flat-roof-replacement.webp');
}

.project1.velux1 {
  background-image: url('../images/side-roofing-installation.webp');
}

.project1.velux2 {
  background-image: url('../images/roof-repairs.webp');
  background-position: 100%;
}

.project1.velux3 {
  background-image: url('../images/black-roof-with-velux-small.webp');
}

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

.gallery-head {
  color: #fff;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  text-decoration: none;
  display: flex;
}

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

.gallery-sub {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.white-section {
  background-color: var(--black-2);
  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._100 {
  background-color: var(--black-2);
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.project3 {
  box-shadow: 25px 25px 0 -18px var(--white);
  background-image: url('../images/full-house-view---dormer-addition.webp');
  background-position: 50%;
  background-size: cover;
  height: 450px;
  text-decoration: none;
}

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

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

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

.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: 4em;
  font-weight: 200;
  line-height: 1.3;
  display: flex;
}

.image {
  width: 300px;
}

.image._2 {
  width: 180px;
}

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

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

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

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

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

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

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

.timeline-sub-heading-2 {
  color: #fff;
  text-align: left;
  width: 100%;
  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: column;
  align-items: flex-start;
  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-lower {
  color: var(--silver);
  text-decoration: none;
}

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

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

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

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

.font-awsome {
  color: #fff;
  text-align: center;
  margin-right: 8px;
  font-family: Fa6 solid, sans-serif;
  font-size: 16.5px;
}

.font-awsome.email {
  color: #fff;
  font-family: Fa6 solid, sans-serif;
  font-size: 16.5px;
}

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

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

.background-image {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), url('../images/black-roof-with-velux.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  min-height: 550px;
}

.background-image.roof2 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), url('../images/scaffolding-along-roofing-services.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.background-image.rep2 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), url('../images/black-roof-replacement.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.background-image.repairs2 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), url('../images/dormer-without-glass.webp');
  background-position: 0 0, 50% 85%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.background-image.flat2 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), url('../images/old-flat-roofing.webp');
}

.background-image.velux2 {
  background-image: linear-gradient(to bottom, var(--black-3), var(--black-3)), url('../images/wooden-mansard-conversion-siding.webp');
  background-position: 0 0, 50% 0;
}

.hyperlink {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  transition: color .45s ease-in-out;
}

.hyperlink:hover {
  color: var(--sky-blue);
}

.hyperlink:visited {
  color: var(--white);
}

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

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

.bold-text {
  color: #fff;
  text-transform: uppercase;
}

.h3 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.h3.m-bottom-20 {
  color: #005cb9;
  margin-bottom: 20px;
}

.button {
  color: #fff;
  background-color: #fda000;
  border: 1px #fda000;
  border-radius: 3px;
  margin-top: 20px;
  padding: 14px 40px;
  transition: all .3s ease-in-out;
}

.button:hover {
  transform: scale(.95);
}

.button.bt-blue {
  background-color: var(--sky-blue);
  color: var(--black);
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

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

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

.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%;
  padding-bottom: 20px;
  display: grid;
}

.list-wrapper._20t {
  margin-top: 20px;
}

.top-links-2 {
  color: #fff;
  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(--sky-blue);
}

.dropdown-link-2 {
  color: #fff;
  text-align: left;
  background-color: #000;
  font-size: 16.5px;
  transition: color .45s ease-in-out;
}

.dropdown-link-2:hover {
  color: var(--sky-blue);
}

.dropdown-link-2.w--current {
  background-color: var(--sky-blue);
  color: var(--black);
}

.service-nav {
  z-index: 100;
  background-color: var(--dark-slate-grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: static;
}

.service-nav.home {
  background-color: #0000;
  position: absolute;
}

.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(--sky-blue);
  background-color: var(--sky-blue);
  color: var(--black);
  margin-top: 0;
  margin-left: 0;
  padding: 10px 20px;
  font-size: 16px;
  transition-property: all;
  transition-duration: .45s;
}

.button-fill-2.header:hover {
  color: #fff;
  background-color: #0009;
  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: #fff;
  letter-spacing: 0;
  text-transform: none;
  background-color: #0000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16.5px;
  font-weight: 400;
  transition: all .4s;
}

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

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

.service-nav-text-2 {
  margin-right: 18px;
}

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

.service-banner {
  background-image: linear-gradient(#00000080, #00000080), url('../images/van.webp');
  background-position: 0 0, 50% 89%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  display: flex;
}

.service-banner.svs1 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/roof-tiles-upgraded.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.svs2 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/long-roof-siding.webp');
  background-position: 0 0, 50% 90%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.svs3 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/black-roofing.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.svs4 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/flat-roof-top.webp');
  background-position: 0 0, 50% 32%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.service-banner.svs5 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/black-roof-with-velux.webp');
  background-position: 0 0, 50% 16%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h1-2 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  font-family: Oswald, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
}

.h1-2.small {
  font-size: 60px;
  line-height: 70px;
}

.para-2 {
  color: #fff;
  width: 70%;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.75;
}

.para-2._100 {
  width: 100%;
  margin-bottom: 15px;
}

.para-2._100.t20 {
  margin-top: 20px;
}

.list-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  margin-top: 40px;
  display: grid;
}

.list-div.bagshot {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 25px;
  display: block;
}

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

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

.h2-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 44px;
  overflow: visible;
}

.h2-2.t-20 {
  margin-top: 20px;
}

.h2-2.b-30 {
  color: #fff;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;
}

.bullet-font-icon-3 {
  color: #f9b328;
  background-color: #0000;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  font-family: Fa6 solid, sans-serif;
  font-size: 1.2em;
  font-weight: 100;
  display: flex;
}

.h1-red-2 {
  color: #f9b328;
  font-size: 62px;
}

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

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

.list-head-2 {
  color: #fff;
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 28px;
  display: flex;
}

.int-link {
  color: #f9b328;
  font-weight: 700;
  text-decoration: none;
  transition: color .45s ease-in-out;
}

.int-link:hover {
  color: #fff;
}

.single-comments-3 {
  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-3:hover {
  transform: translate(15px);
}

.list-head-3 {
  color: #fff;
  text-align: left;
  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-3.bullet-font-icon-2 {
  margin-right: 10px;
}

.bullet-font-icon-4 {
  background-color: var(--sky-blue);
  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;
}

.contact-page-link-2 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.form-new-2 {
  color: #fff;
  width: 100%;
  margin-top: 40px;
  font-size: 15px;
}

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

.h1-3 {
  color: #fff;
  margin-top: 10px;
  font-family: Oswald, sans-serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 70px;
}

.h1-red-3 {
  color: #f91818;
}

.phone-icon-2 {
  color: #fff;
  font-family: Fa6 solid, sans-serif;
  font-size: 48px;
  line-height: 54px;
}

.text-block-2 {
  color: #fff;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 40px;
}

.image-2 {
  width: 100%;
}

.testimonial {
  background-color: var(--white);
  border-radius: 6px;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 40px;
  display: flex;
}

.div-block {
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
  display: flex;
}

.text-block-3 {
  text-align: right;
}

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

.big {
  font-size: 20px;
  line-height: 30px;
}

.html-embed {
  width: 100%;
  margin-top: 20px;
}

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

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

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

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

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

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

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

.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_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.fs-cc-banner_button {
  border: 2px solid var(--dark-slate-grey);
  background-color: var(--dark-slate-grey);
  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(--dark-slate-grey);
  color: var(--dark-slate-grey);
  background-color: #f5f5f5;
}

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

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

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

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

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

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

.fs-cc-prefs_button {
  border: 2px solid var(--dark-slate-grey);
  background-color: var(--dark-slate-grey);
  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(--dark-slate-grey);
  color: var(--dark-slate-grey);
  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-banner_buttons-wrapper {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.onload {
  background-color: var(--dark-slate-grey);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.team-line-bottom {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 32px;
}

.team-line-side {
  background-color: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
}

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

.team-text {
  margin-top: 32px;
}

.lightbox-link {
  width: 100%;
  height: 360px;
  position: relative;
}

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

.team-block {
  z-index: 3;
  background-color: var(--sky-blue);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-name {
  color: #fff;
  letter-spacing: -.04em;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
}

.p-5 {
  color: #111;
  width: 100%;
  margin-bottom: 0;
  font-size: 1.1em;
  line-height: 1.7em;
}

.p-5.price-text {
  color: #fff;
  font-weight: 400;
  line-height: 2;
}

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

  .container {
    max-width: 1800px;
  }

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

  .service-grid {
    width: 100%;
  }

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

@media screen and (max-width: 991px) {
  .banner-header {
    flex-direction: column;
  }

  .left-section {
    width: 90%;
    margin-top: 20px;
  }

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

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

  .left-side {
    width: 100%;
    margin-bottom: 40px;
  }

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

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

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

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

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

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

  .footer-section {
    padding-bottom: 60px;
  }

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

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

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

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

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

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

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

  .logo-link.w--current {
    margin-right: 40px;
  }

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

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

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

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

  .banner-red._15 {
    margin-left: 0;
  }

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

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

  .h1 {
    font-size: 50px;
  }

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

  .project1 {
    height: 300px;
    margin-bottom: 10px;
  }

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

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

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

  .project2 {
    margin-bottom: 10px;
  }

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

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

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

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

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

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

  .icon-5 {
    color: #fff;
  }

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

  .menu-button-2 {
    background-color: var(--sky-blue);
    text-align: right;
    width: 100%;
  }

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

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

  .h1-2 {
    font-size: 50px;
  }

  .para-2 {
    width: 100%;
  }

  .contact-page-link-2 {
    font-size: 16px;
  }

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

  .h1-3 {
    font-size: 50px;
  }

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

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

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

@media screen and (max-width: 767px) {
  .banner-header {
    margin-top: 60px;
    font-size: 48px;
  }

  .p {
    font-size: 15.5px;
  }

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

  .left-section {
    width: 95%;
    padding-right: 0;
  }

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

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

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

  .header-social-media {
    justify-content: flex-start;
  }

  .header-social-icon._2 {
    font-size: 8vw;
  }

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

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

  .banner-red {
    margin-left: 10px;
    font-size: 52px;
  }

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

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

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

  .timeline-sub-heading-2 {
    text-align: left;
  }

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

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

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

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

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

  .dropdown-link-2.w--current {
    color: #f94d18;
  }

  .menu-button-2 {
    background-color: var(--sky-blue);
    text-align: right;
    width: 100%;
  }

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

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

  .service-ban-text {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    line-height: 26px;
  }

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

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

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

  .h1-2.small {
    font-size: 43px;
    line-height: 48px;
  }

  .single-comments-2 {
    padding-right: 0;
  }

  .h1-red-2 {
    font-size: 47px;
  }

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

  .list-head-2 {
    text-align: left;
  }

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

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

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

  .text-block-2 {
    font-size: 18px;
  }

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

  .testimonial {
    flex-direction: column;
  }

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

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

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

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

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

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

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

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

@media screen and (max-width: 479px) {
  .banner-header {
    text-align: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 34px;
  }

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

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

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

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

  .container {
    width: 85%;
  }

  .hero-bg-grad {
    height: auto;
    padding-top: 0;
    position: static;
  }

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

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

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

  .service-div {
    height: auto;
  }

  .service-number {
    margin-bottom: 20px;
    font-size: 68px;
  }

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

  .service-header {
    font-size: 28px;
    line-height: 38px;
  }

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

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

  .small-head {
    flex-direction: row;
  }

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

  .left-side {
    box-shadow: -8px 6px 0 0 var(--white);
    margin-top: 60px;
    margin-bottom: 0;
  }

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

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

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

  .footer-wrapper {
    grid-template-columns: 1.25fr;
  }

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

  .footer-copy {
    width: 100%;
  }

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

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

  .header-social-icon._2 {
    font-size: 12vw;
  }

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

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

  .co-logo {
    width: 125px;
  }

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

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

  .logo-link.w--current {
    margin-right: 0;
  }

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

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

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

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

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

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

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

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

  .banner-red._15 {
    margin-left: 10px;
    font-size: 25px;
  }

  .h1 {
    font-size: 42px;
  }

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

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

  .project1 {
    height: 325px;
  }

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

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

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

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

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

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

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

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

  .image {
    width: 160px;
  }

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

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

  .comment-column._2 {
    grid-template-rows: auto auto auto;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }

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

  .timeline-sub-heading-2 {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

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

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

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

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

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

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

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

  .list-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    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;
  }

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

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

  .menu-button-2 {
    text-align: center;
    background-color: #0000;
    width: 100%;
  }

  .menu-button-2:hover {
    background-color: var(--sky-blue);
  }

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

  .service-nav.home {
    position: static;
  }

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

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

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

  .service-ban-head {
    text-align: center;
  }

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

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

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

  .h1-2 {
    font-size: 42px;
    line-height: 55px;
  }

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

  .list-div {
    width: 100%;
    margin-top: 40px;
  }

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

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

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

  .h1-red-2 {
    font-size: 44px;
    line-height: 48px;
  }

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

  .list-head-2 {
    text-align: left;
    line-height: 25px;
  }

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

  .list-head-3 {
    text-align: left;
    line-height: 25px;
  }

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

  .contact-page-link-2 {
    font-size: 16.5px;
  }

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

  .h1-3 {
    font-size: 42px;
  }

  .text-block-2 {
    font-size: 16.5px;
  }

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

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

  .div-block-2 {
    margin-top: 20px;
  }

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

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

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

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

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

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

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

#w-node-_86dc6770-16cb-81fb-c036-7e9b77c027e6-ff5846a8, #w-node-f144fa74-7035-038d-61cc-54a3e89c38a7-ff5846a8, #w-node-_6eba55bf-997e-67b8-6385-042e8a8d2233-ff5846a8, #w-node-_3ee81e69-aa64-9f71-f0c3-601841aae282-ff5846a8, #w-node-_80a39957-184d-cff1-23dd-d059bb39d682-ff5846a8, #w-node-_98ad4002-6f3a-9f1b-de22-4e36e1cc41ed-ff5846a8, #w-node-b751fee3-ec2a-d925-ee62-043d3ca0cff1-ff5846a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-_815a6f1e-659b-f001-acef-5fd91ab787b4-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787ba-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787c0-ff5846a8, #w-node-_196b53a7-90e8-5231-f06d-e34d3721d0e1-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787c6-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787cc-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787d2-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787d8-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787de-ff5846a8, #w-node-_815a6f1e-659b-f001-acef-5fd91ab787e4-ff5846a8, #w-node-_981eace2-8873-1303-995a-9f4f46f2da2e-ff5846a8, #w-node-_01f869d8-6717-6d74-a6fa-c6df4d3eef3f-ff5846a8, #w-node-_39935e98-11b4-58ad-52aa-7062e25b123b-ff5846a8, #w-node-ef548531-2acd-058a-5992-1e7848ee1f49-ff5846a8, #w-node-_6e5c4a6d-b90e-6dd9-8a01-5dcf206b770c-ff5846a8, #w-node-_044d10c8-7f62-57c7-5dbc-605d5d7c8bcb-ff5846a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b2b-f5208114 {
  place-self: center;
}

#w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b2e-f5208114, #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b50-f5208114 {
  place-self: start;
}

#w-node-_4e857339-e105-f58a-5540-b350c395abd4-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abda-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abe0-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abe6-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abec-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abf2-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abf8-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395abfe-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395ac04-ff5846aa, #w-node-_4e857339-e105-f58a-5540-b350c395ac0a-ff5846aa, #w-node-_3588e156-678d-061f-21ac-2ba7cdb8d237-ff5846ac, #w-node-_3588e156-678d-061f-21ac-2ba7cdb8d23d-ff5846ac, #w-node-_3588e156-678d-061f-21ac-2ba7cdb8d243-ff5846ac, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a0b-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a11-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a17-ff5846ad, #w-node-_91d248f3-d7c4-5ef1-9a13-4794ef15899a-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a1d-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a23-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a29-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a35-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a3b-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a41-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a47-ff5846ad, #w-node-ea85d9f7-081c-83e6-f40c-8a2d8e07092c-ff5846ad, #w-node-_9286e9d5-e877-9124-6bb4-1cf428fb5189-ff5846ad, #w-node-_0a054e82-c752-18f9-75cd-61f8b31e1c0e-ff5846ad, #w-node-_003387aa-8b0b-fd99-6742-9695d7663fd1-ff5846ad, #w-node-f37788fb-6bb0-d903-b89c-679b128de17a-ff5846ad, #w-node-df6b8457-21c0-5027-083c-b26b253cf57c-ff5846ad, #w-node-d5557c17-c6e8-fd4e-d26e-4009a06bdc1e-ff5846ad, #w-node-_73a70606-e63c-d23c-a128-70a44eda068c-ff5846ad, #w-node-_473194a2-8bc4-8ed2-e63f-3467f4c54a4d-ff5846ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-d84f16bf-56c2-2dd9-4899-efef1e94de2a-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de30-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de36-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de3c-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de42-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de48-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de4e-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de54-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de5a-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de60-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de66-ff5846ad, #w-node-d84f16bf-56c2-2dd9-4899-efef1e94de6c-ff5846ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce146e1-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce146e7-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce146ed-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce146f3-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce146f9-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce146ff-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce14705-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce1470b-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce14711-f0ec37ad, #w-node-_3a94b8e0-6748-1bad-1efa-12277ce14717-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d6f-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d75-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d7b-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d81-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d87-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d8d-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d93-f0ec37ad, #w-node-bebf207b-0504-7461-8335-2cf90f2a6d99-f0ec37ad, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e05-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e0b-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e11-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e17-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e1d-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e23-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e29-c190edde, #w-node-_267f1852-4de7-c147-0a01-5a1b3a7f7e2f-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9c3-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9c9-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9cf-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9d5-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9db-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9e1-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9e7-c190edde, #w-node-c0aeb2b7-83a2-fce3-a3f3-88aab538c9ed-c190edde {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-c75b0cc5-421c-2231-80b0-2714663ab5bf-4967911a, #w-node-c75b0cc5-421c-2231-80b0-2714663ab5c5-4967911a, #w-node-c75b0cc5-421c-2231-80b0-2714663ab5cb-4967911a, #w-node-c75b0cc5-421c-2231-80b0-2714663ab5d1-4967911a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-a2476e7c-d4d3-bf72-e854-0350246ecbab-36336d48, #w-node-a2476e7c-d4d3-bf72-e854-0350246ecbb1-36336d48, #w-node-a2476e7c-d4d3-bf72-e854-0350246ecbb7-36336d48, #w-node-a2476e7c-d4d3-bf72-e854-0350246ecbbd-36336d48, #w-node-a2476e7c-d4d3-bf72-e854-0350246ecbc3-36336d48, #w-node-a2476e7c-d4d3-bf72-e854-0350246ecbc9-36336d48, #w-node-_5c7c864c-07b5-570d-79d7-5f371789f3b8-36336d48, #w-node-a2f970e3-00bc-220d-9c47-84d1dd715be0-36336d48 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

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

#w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb2747f1-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb2747f7-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb2747fd-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb274803-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb274809-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb27480f-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb274815-de694e3a, #w-node-_119a3150-f5ca-f8bb-f8e6-4cafdb27481b-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f23-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f29-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f2f-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f35-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f3b-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f41-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f47-de694e3a, #w-node-d3ff4939-24dd-7a4e-2132-8660b68d1f4d-de694e3a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_14e092b2-fa56-af12-7a34-ce6d0dafa51d-29b7b658 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

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

  #w-node-_80a39957-184d-cff1-23dd-d059bb39d682-ff5846a8, #w-node-_98ad4002-6f3a-9f1b-de22-4e36e1cc41ed-ff5846a8, #w-node-b751fee3-ec2a-d925-ee62-043d3ca0cff1-ff5846a8, #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b2b-f5208114 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-fb832e82-9975-7557-c550-2071f5208165-f5208114 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fb832e82-9975-7557-c550-2071f520816e-f5208114 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b2e-f5208114, #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b50-f5208114 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: center start;
  }

  #w-node-_3588e156-678d-061f-21ac-2ba7cdb8d237-ff5846ac, #w-node-_3588e156-678d-061f-21ac-2ba7cdb8d23d-ff5846ac, #w-node-_3588e156-678d-061f-21ac-2ba7cdb8d243-ff5846ac {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

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

  #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b2b-f5208114, #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b2e-f5208114, #w-node-_79441312-6097-14a9-83c1-3d5d4e6d1b50-f5208114 {
    justify-self: start;
  }

  #w-node-fb832e82-9975-7557-c550-2071f5208165-f5208114 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-fb832e82-9975-7557-c550-2071f520816e-f5208114 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-a44f7773-d406-a8e8-ee9a-cd0874986af5-ff5846ad, #w-node-a44f7773-d406-a8e8-ee9a-cd0874986af5-4967911a, #w-node-a44f7773-d406-a8e8-ee9a-cd0874986af5-36336d48, #w-node-a44f7773-d406-a8e8-ee9a-cd0874986af5-de694e3a {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }
}


@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: 'Arrow right solid';
  src: url('../fonts/arrow-right-solid.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}