@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 {
  --navy: #0a0077;
  --white: white;
  --goldenrod: #d2a041;
  --red: #f91818;
  --silver: #8e8e8e;
  --black: black;
  --snow: #f5eded;
  --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(--navy);
  font-family: Poppins, sans-serif;
}

.banner-header {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: row;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 70px;
}

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

.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(--goldenrod);
  background-color: var(--goldenrod);
  color: var(--white);
}

.button-outline.edit-btn {
  margin-top: 30px;
}

.button-outline.edit-btn:hover {
  border-color: var(--navy);
  background-color: var(--navy);
}

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

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

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

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

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

.body-section.primary-bg.padding {
  border-top: 1px solid #ffffff4a;
  padding-top: 100px;
  padding-bottom: 100px;
}

.body-section.primary-bg.padding.p-bottom {
  padding-bottom: 140px;
}

.body-section.primary-bg.padding.p-bottom._0 {
  padding-top: 0;
  padding-bottom: 100px;
}

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

.body-section.primary-bg._0b {
  border-top: 1px solid #ffffff4a;
  padding-top: 100px;
  padding-bottom: 0;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  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;
}

.hero-bg-grad {
  background-image: linear-gradient(135deg, var(--navy) 2%, transparent 49%), url('../images/banner.webp');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  width: 100%;
  height: 1000px;
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 0;
  position: sticky;
}

.left-section {
  width: 65%;
  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(--goldenrod);
  background-color: var(--goldenrod);
  color: var(--white);
  margin-top: 0;
  margin-left: 0;
  padding: 10px 20px;
  font-size: 16px;
  transition-duration: .3s;
}

.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/IMG-20230412-WA0028.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/img-20.webp');
  background-position: 50%;
}

.service-top-image._3 {
  background-image: url('../images/Homepage---commercial-scaffold---service-box..webp');
  background-position: 50% 30%;
  background-repeat: no-repeat;
}

.service-top-image._4 {
  background-image: url('../images/IMG-20230411-WA0001.webp');
  background-position: 50%;
  background-repeat: no-repeat;
}

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

.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: 35px;
  margin-bottom: 40px;
  margin-right: 0;
  font-family: Oswald, sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.service-text {
  color: var(--white);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  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-link {
  background-color: var(--goldenrod);
  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);
  width: 60%;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.75;
}

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

.left-side.contact-form {
  box-shadow: none;
}

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

.inner-img.cs-1 {
  background-image: url('../images/IMG-20230412-WA0030.webp');
  background-position: 50% 39%;
}

.inner-img.cs-2 {
  background-image: url('../images/IMG-20230411-WA0000.webp');
  background-position: 50%;
}

.inner-img.ds-1 {
  background-image: url('../images/img-10.webp');
  background-position: 50% 0;
}

.inner-img.ds-2 {
  background-image: url('../images/img-9.webp');
  background-position: 50%;
}

.inner-img.tr-1 {
  background-image: url('../images/IMG-20230412-WA0019.webp');
  background-position: 50% 35%;
}

.inner-img.tr-2 {
  background-image: url('../images/IMG-20230411-WA0001.webp');
}

.inner-img.tr-3 {
  background-image: url('../images/img-5.webp');
  background-position: 50% 0;
}

.inner-img.img-2 {
  background-image: url('../images/ban-4.webp');
}

.inner-img.img-1 {
  background-image: url('../images/Homepage---commercial-scaffold---service-box..webp');
}

.inner-img.wat-1 {
  background-image: url('../images/PHOTO-2024-03-06-10-06-541.webp');
}

.inner-img.wat-2 {
  background-image: url('../images/PHOTO-2024-03-06-10-06-5514.webp');
}

.inner-img.wat-3 {
  background-image: url('../images/PHOTO-2024-03-06-10-06-559.webp');
}

.inner-img.wat-4 {
  background-image: url('../images/PHOTO-2024-03-06-10-06-551.webp');
}

.inner-img.wat-5 {
  background-image: url('../images/PHOTO-2024-03-06-10-06-543.webp');
}

.inner-img.wat-6 {
  background-image: url('../images/PHOTO-2024-03-06-10-06-552.webp');
}

.inner-img.hrr {
  background-image: url('../images/banner.webp');
  background-position: 50% 0;
}

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

.section-h1-wrapper.display-flex._w-100.flex-verticle {
  flex-direction: column;
}

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

.footer-list-items {
  flex-direction: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.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(--black);
  padding-top: 0;
  padding-bottom: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 32px;
  transition: all .2s;
}

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

.footer-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  grid-template-rows: auto;
  grid-template-columns: 2.25fr 1.25fr 1.25fr 1.25fr;
  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(--black);
  text-transform: uppercase;
  font-size: 1.8em;
}

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

.footer-copy {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--black);
  border-top: 1px solid #0a00773b;
  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(--black);
  margin-bottom: 20px;
  font-size: 16.5px;
  font-weight: 300;
  line-height: 32px;
}

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

.header-social-media.top {
  margin-top: 2px;
}

.header-social-icon {
  color: var(--navy);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
  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(--goldenrod);
  background-color: #0000;
}

.header-social-icon.top {
  color: var(--goldenrod);
  margin-top: 5px;
}

.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(#0000008c, #0000008c), linear-gradient(to right, #000000cf, #fff0), url('../images/_131050169.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 140px;
  padding-bottom: 140px;
}

.full-width-image-section.para-img.parallaxxx {
  background-image: linear-gradient(90deg, var(--navy), #fff0), url('../images/img-18.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

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

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

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

.co-logo {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

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

.logo-link {
  border-radius: 11px;
  flex: none;
  width: 20%;
  max-width: 250px;
}

.logo-link.w--current {
  background-color: var(--white);
  border-radius: 10px;
  height: auto;
}

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

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

.dropdown-link.w--current {
  background-color: var(--goldenrod);
  color: var(--navy);
}

.contact-div-2 {
  flex: none;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  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(--goldenrod);
}

.contact-section {
  z-index: 5;
  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: #0a007773;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 15px;
  font-weight: 300;
  transition: all .25s ease-in-out;
}

.service-navlink:hover {
  color: var(--goldenrod);
  background-color: #0a0077fc;
}

.service-navlink.w--current {
  color: var(--goldenrod);
}

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

.service-navlink.transparent {
  background-color: #0a007700;
}

.nav-menu-4 {
  text-align: center;
  flex: none;
  width: auto;
}

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

.h1 {
  color: var(--white);
  text-transform: uppercase;
  flex-flow: column;
  width: 100%;
  margin-top: 10px;
  font-family: Oswald, sans-serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 70px;
}

.h1._20t {
  margin-top: 40px;
  font-size: 40px;
}

.h1-red {
  color: var(--goldenrod);
  display: block;
}

.background-video {
  background-image: linear-gradient(#00000080, #00000080), url('../images/img-4.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  height: 650px;
}

.gallery-hover {
  background-image: linear-gradient(0deg, #00000073, #0000);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-bottom: 40px;
  font-family: Oswald, sans-serif;
  transition: all .2s ease-out;
  display: flex;
  box-shadow: 1px 1px 3px #000000bf;
}

.gallery-hover:hover {
  background-color: #0000;
  background-image: linear-gradient(to top, #000000b3 20%, #0000);
  padding-bottom: 170px;
}

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

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

.gallery-head {
  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;
}

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

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

.project3 {
  box-shadow: 25px 25px 0 -18px var(--goldenrod);
  background-image: linear-gradient(357deg, #1b1b1b99, #0000), url('../images/IMG-20230412-WA0019.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 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-size: 36px;
  font-weight: 500;
}

.h2.b-30.color {
  color: var(--goldenrod);
  font-family: Oswald, sans-serif;
}

.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;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  display: block;
}

.company-logo {
  width: 100%;
  max-width: 350px;
}

.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;
  text-align: left;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

.list-head.contact-page {
  text-align: left;
  margin-bottom: 0;
}

.list-head.flex {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.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 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-style: solid;
  border-color: #ffffff40;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: auto;
  margin-left: 0;
  padding: 20px;
  display: grid;
}

.comment-column.middle {
  background-color: var(--goldenrod);
  border-style: solid;
  border-color: #ffffff40;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: 0;
  padding: 30px 20px 40px;
}

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

.single-comments {
  text-align: center;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 0 20px 10px;
  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 {
  width: 100%;
  margin-top: 40px;
}

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

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

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

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

.font-awsome.email {
  color: var(--goldenrod);
  font-family: Fa6 solid, sans-serif;
  font-size: 18px;
}

.top-div-2 {
  background-color: #0000;
  justify-content: space-between;
  width: 95%;
  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;
  margin-top: 10px;
  display: flex;
}

.cta {
  padding-bottom: 100px;
}

.cta-tect {
  color: var(--snow);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 37px;
}

.footer-contact {
  color: var(--black);
  text-decoration: none;
}

.footer-contact:hover {
  color: var(--goldenrod);
}

.footer-acc {
  background-image: url('../images/Main.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 250px;
}

.h3 {
  color: var(--navy);
  font-weight: 800;
  display: inline-block;
}

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

.footer-link {
  color: var(--black);
  text-decoration: none;
  display: inline-block;
}

.page-top {
  background-image: linear-gradient(#00000080, #00000080), url('../images/IMG-20230412-WA0028.webp');
  background-position: 0 0, 50% 32%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  min-height: 480px;
}

.page-top.ds {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ban-3.webp');
  background-position: 0 0, 50% 32%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 119%;
}

.page-top.tr {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ban-2.webp');
  background-position: 0 0, 50% 21%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.c-d {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ban-4.webp');
  background-position: 0 0, 50% 40%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.ss {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ban-5.webp');
  background-position: 0 0, 50% 15%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.hs {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ban-1.webp');
  background-position: 0 0, 50% 53%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.ports {
  background-image: linear-gradient(#00000080, #00000080), url('../images/Homepage---commercial-scaffold---service-box..webp');
  background-position: 0 0, 50% 32%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.reviews {
  background-image: linear-gradient(#00000080, #00000080), url('../images/ban-5.webp');
  background-position: 0 0, 50% 56%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.gallery {
  background-image: linear-gradient(#00000080, #00000080), url('../images/img-8.webp');
  background-position: 0 0, 50% 32%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.contact {
  background-image: linear-gradient(#00000080, #00000080), url('../images/img-5.webp');
  background-position: 0 0, 50% 12%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.site {
  background-image: linear-gradient(#00000080, #00000080), url('../images/img-22.webp');
  background-position: 0 0, 50% 43%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.page-top.areas {
  background-image: linear-gradient(#00000080, #00000080), url('../images/img-6.webp');
  background-position: 0 0, 50% 32%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.sitemap-item {
  color: #fff;
  padding-left: 0;
  list-style-type: none;
}

.sitemap-itemss {
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.sitemap-link:hover, .sitemap-link.w--current {
  color: var(--goldenrod);
}

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

.contact-form {
  width: 100%;
  height: 100%;
}

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

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

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

.bold-text {
  color: var(--goldenrod);
  text-transform: uppercase;
  flex: none;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
}

.reviews {
  width: 100%;
}

.social-banner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--goldenrod);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.link {
  background-color: var(--navy);
  color: var(--white);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Fa6 solid, sans-serif;
  font-size: 20px;
  text-decoration: none;
  display: flex;
}

.link.fb {
  background-color: var(--navy);
  font-family: Fa6 brands, sans-serif;
  font-size: 19px;
}

.socials {
  z-index: 80;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 160px;
  display: flex;
  position: fixed;
  inset: 300px 0% 0% auto;
}

.social-button {
  border-bottom: 1px solid var(--navy);
  background-color: var(--goldenrod);
  color: var(--navy);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: Fa6 brands, sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.social-button:hover {
  background-color: var(--silver);
}

.social-button.non {
  font-family: Fa6 solid, sans-serif;
}

.social-button.non._0b {
  border-bottom-width: 0;
}

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

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

.fs-cc-banner_close-icon {
  color: var(--navy);
  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: #03052499;
  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(--navy);
  background-color: var(--navy);
  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(--navy);
  color: var(--navy);
  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(--navy);
  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(--navy);
  background-color: var(--navy);
  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(--navy);
  color: var(--navy);
  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: var(--black);
  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 {
  background-color: var(--goldenrod);
  height: 100%;
  padding: 40px 32px;
  overflow: scroll;
}

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

.fs-cc-prefs_label {
  color: var(--black);
  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(--navy);
  color: var(--navy);
  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;
  box-shadow: 0 2px 4px #0003;
}

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

.fs-cc-banner_component {
  z-index: 998;
  background-color: var(--goldenrod);
  border-top: 1px solid #4353ff29;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: auto 0% 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-block {
  z-index: 3;
  background-color: var(--goldenrod);
  border-top-left-radius: 10px;
  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-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
}

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

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

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

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

  .container {
    max-width: 1800px;
  }

  .service-grid {
    width: 100%;
  }
}

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

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

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

  .body-section.primary-bg, .body-section.primary-bg.padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .body-section.primary-bg.padding.p-bottom, .body-section.primary-bg.padding.p-bottom._0 {
    padding-bottom: 60px;
  }

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

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

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

  .service-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 20px;
  }

  .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, .left-side {
    width: 100%;
  }

  .left-side._60b {
    margin-bottom: 60px;
  }

  .left-side._20t {
    margin-top: 20px;
  }

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

  .inner-img.ds-2 {
    margin-top: 0;
  }

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

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

  .right-side.content._20 {
    margin-bottom: 50px;
  }

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

  .footer-copy-text {
    text-align: center;
    padding-top: 40px;
  }

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

  .footer-copy {
    flex-direction: column;
    place-content: center;
    justify-items: stretch;
    padding-top: 0;
    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;
    display: none;
  }

  .header-social-media.top {
    justify-content: flex-start;
    align-items: center;
  }

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

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

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

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

  .logo-link {
    width: 100%;
    max-width: 200px;
  }

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

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

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

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

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

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

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

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

  .h1._20t {
    margin-top: 20px;
  }

  .background-video {
    height: 500px;
  }

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

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

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

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

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

  .project2 {
    margin-bottom: 10px;
  }

  .company-logo {
    max-width: 250px;
  }

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

  .comments._0p {
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .comment-column._2._40b {
    margin-bottom: 40px;
  }

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

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

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

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

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

  .cta {
    padding-bottom: 60px;
  }

  .footer-acc {
    min-height: 160px;
  }

  .page-top.ds {
    background-image: linear-gradient(to bottom, null, null), url('../images/ban-3.webp');
    background-size: auto, cover;
  }

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

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

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

  .p {
    font-size: 15.5px;
  }

  .button-outline {
    margin-top: 20px;
  }

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

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

  .body-section.primary-bg, .body-section.primary-bg.padding, .body-section.primary-bg.padding.p-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .body-section.primary-bg.padding.p-bottom._0 {
    padding-bottom: 40px;
  }

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

  .left-section {
    width: 95%;
    margin-top: 180px;
    padding-right: 0;
  }

  .service-grid {
    margin-top: 10px;
  }

  .service-number {
    margin-top: 30px;
    line-height: 72px;
  }

  .service-header {
    margin-bottom: 20px;
    line-height: 32px;
  }

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

  .left-side {
    box-shadow: -10px 10px 0 0 var(--goldenrod);
    margin-top: 0;
  }

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

  .right-side.content._20 {
    margin-bottom: 40px;
  }

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

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

  .footer-copy {
    padding-bottom: 80px;
  }

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

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

  .logo-link {
    max-width: 150px;
  }

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

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

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

  .background-video {
    height: 350px;
  }

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

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

  .white-section._100 {
    padding-bottom: 20px;
  }

  .h3-large.b-30 {
    flex-wrap: wrap;
    font-size: 40px;
  }

  .company-logo {
    max-width: 220px;
  }

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

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

  .comment-column._2._40b {
    margin-bottom: 30px;
  }

  .form {
    margin-top: 30px;
  }

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

  .cta {
    padding-bottom: 40px;
  }

  .footer-acc {
    min-height: 130px;
  }

  .page-top.ds {
    min-height: 420px;
  }

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

  .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 {
    flex-direction: column;
    width: 100%;
    margin-top: -116px;
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 44px;
  }

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

  .button-outline {
    text-align: center;
    margin-top: 10px;
    font-size: 14.5px;
  }

  .button-outline.edit-btn {
    margin-top: 10px;
  }

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

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

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

  .body-section.primary-bg, .body-section.primary-bg.padding, .body-section.primary-bg.padding.p-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .body-section.primary-bg.padding.p-bottom._0, .body-section.primary-bg.bottom {
    padding-bottom: 30px;
  }

  .container {
    width: 90%;
  }

  .hero-bg-grad {
    background-image: linear-gradient(125deg, var(--navy) 20%, transparent 66%, #0000), url('../images/ban-1.webp');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    height: 110vh;
    padding-top: 0;
  }

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

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

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

  .service-div {
    height: auto;
  }

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

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

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

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

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

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

  .left-side.contact-form {
    margin-bottom: 20px;
  }

  .left-side._60b {
    margin-bottom: 40px;
  }

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

  .inner-img.cs-2 {
    margin-bottom: 0;
  }

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

  .right-side.content._20 {
    margin-bottom: 30px;
  }

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

  .footer-copy-text {
    margin-bottom: 0;
    padding-top: 10px;
  }

  .footer-wrapper {
    grid-template-columns: 1.25fr;
    width: 100%;
    padding-bottom: 0;
  }

  .footer-section-title.white {
    margin-bottom: 10px;
    font-size: 1.5em;
    line-height: 18px;
  }

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

  .footer-copy {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .header-social-media.top {
    justify-content: center;
    align-items: center;
    display: none;
  }

  .header-social-icon {
    color: var(--goldenrod);
    margin-left: 10px;
  }

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

  .co-logo {
    width: 180px;
  }

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

  .logo-link {
    text-align: center;
    border-radius: 10px;
    width: auto;
    height: 120px;
  }

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

  .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: 30px;
  }

  .menu-button {
    padding-top: 5px;
    padding-bottom: 5px;
  }

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

  .h1._20t {
    font-size: 30px;
  }

  .background-video {
    height: 400px;
  }

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

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

  .project1 {
    height: 350px;
  }

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

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

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

  .white-section._100 {
    padding-bottom: 10px;
  }

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

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

  .h2.b-30.color {
    line-height: 37px;
  }

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

  .company-logo {
    width: 160px;
  }

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

  .list-head.contact-page {
    line-height: 23px;
  }

  .list-head.flex {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .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;
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
  }

  .comment-column._2._40b {
    margin-bottom: 20px;
  }

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

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

  .single-comments {
    padding: 5px 0;
  }

  .foot-link-lower {
    line-height: 24px;
  }

  .form {
    margin-top: 10px;
  }

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

  .top-links.top {
    margin-top: 0;
    margin-bottom: 5px;
  }

  .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;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .cta {
    padding-bottom: 30px;
  }

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

  .footer-acc {
    min-height: 100px;
  }

  .footer-link {
    font-size: 15px;
  }

  .page-top.ds {
    background-image: linear-gradient(#00000080, #00000080), url('../images/ban-3.webp');
    background-position: 0 0, 50% 32%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    min-height: 370px;
  }

  .page-top.ds.c-d, .page-top.tr, .page-top.ss, .page-top.hs, .page-top.ports, .page-top.reviews, .page-top.gallery, .page-top.contact, .page-top.site, .page-top.areas {
    min-height: 420px;
  }

  .sitemap-itemss {
    padding-top: 5px;
    padding-bottom: 5px;
  }

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

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

  .bold-text {
    font-size: 17px;
  }

  .socials {
    height: 180px;
  }

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

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

  .lightbox-link {
    height: 300px;
  }

  .team-name {
    font-size: 23px;
  }

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

#w-node-_69c96db0-982e-a7a2-7fad-4b8ee40c0636-c3a1130d, #w-node-_5a20e1e6-2aa0-8dbf-9d10-51e0c0d2583e-c3a1130d, #w-node-_5a20e1e6-2aa0-8dbf-9d10-51e0c0d2584a-c3a1130d, #w-node-_5a20e1e6-2aa0-8dbf-9d10-51e0c0d25856-c3a1130d, #w-node-_5a20e1e6-2aa0-8dbf-9d10-51e0c0d25862-c3a1130d, #w-node-ea9daf52-45c6-7b49-96b5-f2daf2bd504d-c3a1130d, #w-node-fcbd946d-f36a-3f97-dd24-9aa0c0c02538-c3a1130d, #w-node-b0e9295b-a4c8-ff64-a291-227e9cb7956d-c3a1130d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54a894af-d4bb-d18c-859d-70ec4d1125dc-c3a1130d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_54a894af-d4bb-d18c-859d-70ec4d1125dd-c3a1130d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e23b1c73-1495-7065-2119-39fd04c2e8f3-c3a1130d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742caf-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742ccb-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cda-1d742ca9 {
  place-self: start;
}

#w-node-cdcbb21f-e8f5-f5c5-0dd7-9f5ee95b9e58-49b5a3a9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-cdcbb21f-e8f5-f5c5-0dd7-9f5ee95b9e59-49b5a3a9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_57212a0b-8d84-ffad-55cd-2c6d73cf5f1e-49b5a3a9, #w-node-_6a1cbbcd-b81f-458b-c4c6-851b37b74b94-b2c4df82 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_6a1cbbcd-b81f-458b-c4c6-851b37b74b95-b2c4df82 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4937b737-c7ca-933c-4a9e-95d025f6af8b-b2c4df82, #w-node-_0759fd04-1319-2710-e90b-aa378fee9b7b-438ba81e, #w-node-ea2a1c97-2ecb-8c0c-d972-c5621392a740-921863e5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-_88d4787c-09dc-d24b-66b5-05554cc21b3c-91443ce3, #w-node-_919c2991-ae6c-b0f6-a5a4-bcab1f6f08ce-91443ce3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0759fd04-1319-2710-e90b-aa378fee9b7b-91443ce3, #w-node-_0759fd04-1319-2710-e90b-aa378fee9b7b-6933614f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

#w-node-e1dc643e-a047-c13f-7b95-670168148113-15c5bcca, #w-node-dbd2592c-f265-abdf-b1d5-cd3a34e36a3c-15c5bcca {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f0402972-d4a3-830c-3037-4654e9e5e612-15c5bcca {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center start;
}

@media screen and (max-width: 991px) {
  #w-node-_5a20e1e6-2aa0-8dbf-9d10-51e0c0d2583e-c3a1130d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b0e9295b-a4c8-ff64-a291-227e9cb7956d-c3a1130d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cac-1d742ca9 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cdf-1d742ca9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742ce2-1d742ca9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b0e9295b-a4c8-ff64-a291-227e9cb7956d-c3a1130d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742caf-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742ccb-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cda-1d742ca9 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    place-self: center start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_54a894af-d4bb-d18c-859d-70ec4d1125dc-c3a1130d, #w-node-e23b1c73-1495-7065-2119-39fd04c2e8f3-c3a1130d {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cac-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742caf-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742ccb-1d742ca9, #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cda-1d742ca9 {
    justify-self: start;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742cdf-1d742ca9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0aa06ecb-b0b6-8daa-2a6a-e6821d742ce2-1d742ca9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: end;
  }

  #w-node-cdcbb21f-e8f5-f5c5-0dd7-9f5ee95b9e58-49b5a3a9, #w-node-_57212a0b-8d84-ffad-55cd-2c6d73cf5f1e-49b5a3a9, #w-node-_6a1cbbcd-b81f-458b-c4c6-851b37b74b94-b2c4df82 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_2d83bc5f-5cec-1d41-71fb-b6a0c8fc82ba-b2c4df82 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4937b737-c7ca-933c-4a9e-95d025f6af8b-b2c4df82, #w-node-_0759fd04-1319-2710-e90b-aa378fee9b7b-438ba81e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-ea2a1c97-2ecb-8c0c-d972-c5621392a740-921863e5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_0759fd04-1319-2710-e90b-aa378fee9b7b-91443ce3, #w-node-_0759fd04-1319-2710-e90b-aa378fee9b7b-6933614f, #w-node-f0402972-d4a3-830c-3037-4654e9e5e612-15c5bcca {
    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;
}