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

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

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

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

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

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

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

:root {
  --white: #fff;
  --black: black;
  --primary: #101b22;
  --secondary: #1573b7;
  --grey: #7e8182;
  --transparent: #fff0;
  --third: #227baf;
}

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

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

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.body {
  background-color: var(--white);
  color: var(--black);
  font-family: Open Sans, sans-serif;
}

.nav-link {
  color: var(--primary);
  text-transform: uppercase;
  border-right: 1px solid #0000001a;
  padding: 25px 15px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease-in-out;
}

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

.nav-link.w--current {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.nav-link.w--current:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.nav-link.contact-nav {
  background-color: var(--secondary);
  color: var(--white);
  transition: all .2s ease-in-out;
}

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

.nav-link.contact-nav.call-btn {
  display: none;
}

.brand {
  min-width: 170px;
  margin-left: 10px;
  margin-right: 0;
}

.nav-container {
  border-radius: 5px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.dropdown-list {
  z-index: 30;
  margin-top: 20px;
}

.dropdown-list.w--open {
  background-color: #f0f6f8;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-top: 0;
}

.dropdown-list.z.w--open {
  flex-flow: wrap;
  width: 320px;
  display: flex;
}

.navbar {
  background-color: var(--white);
  border-radius: 5px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-right: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  position: static;
  box-shadow: 0 2px 8px #0003;
}

.drop-down-link {
  z-index: 10;
  text-transform: uppercase;
  border-bottom: 1px solid #1b1b1b0d;
  border-left: 5px solid #0000;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  transition: all .4s cubic-bezier(.645, .045, .355, 1);
}

.drop-down-link:hover {
  border-left-color: var(--white);
  background-color: var(--secondary);
  color: #fefefe;
  padding-left: 25px;
}

.drop-down-link.w--current {
  background-color: var(--secondary);
  color: var(--white);
}

.drop-down-link.lg-area {
  width: 160px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-flex;
}

.drop-down-link.lg-area._100 {
  width: 100%;
}

.navigation-bar {
  z-index: 10;
  background-color: #1b1b1b03;
  border-radius: 5px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0 0% auto;
  overflow: visible;
}

.dropdown-toggle {
  padding-top: 25px;
  padding-bottom: 25px;
}

.dropdown-toggle.nav-link {
  z-index: 30;
  color: var(--primary);
  padding: 25px 10px;
}

.dropdown-toggle.nav-link:hover {
  color: var(--white);
}

.hero-container {
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
}

.hero-intro-text {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.7;
}

.banner-text {
  color: var(--white);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
}

.p {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.75;
}

.p.light {
  color: var(--white);
}

.p.black {
  color: var(--primary);
  font-weight: 400;
}

.p.large {
  background-color: var(--grey);
  margin-bottom: 40px;
  margin-right: 40px;
  padding: 10px 20px;
  font-size: 1.3rem;
  font-weight: 600;
  display: inline-flex;
}

.p.large._40t {
  margin-top: 40px;
}

.hero-section {
  background-color: #fff;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  display: flex;
}

.hero-section.small {
  min-height: 60vh;
}

.hero-section.service1 {
  background-image: linear-gradient(#fff0, #1b1b1b91), url('../images/gal-img-2.webp');
  min-height: 60vh;
}

.hero-section.service2 {
  background-image: linear-gradient(#fff0, #1b1b1b91), url('../images/TRV-1.webp');
  background-position: 0 0, 50% 40%;
  min-height: 60vh;
}

.hero-section.service3 {
  background-image: linear-gradient(#fff0, #1b1b1b91), url('../images/SKIP-1.webp');
  background-position: 0 0, 50%;
  min-height: 60vh;
}

.hero-section.service4 {
  background-image: linear-gradient(#fff0, #1b1b1b91), url('../images/WAIT-AND-LOAD.webp');
  background-position: 0 0, 50%;
  min-height: 60vh;
}

.hero-section.area {
  background-image: linear-gradient(#fff0, #1b1b1b91), url('../images/Area.webp');
  min-height: 60vh;
}

.hero_btn {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  margin-top: 20px;
  margin-right: 20px;
  padding: 20px 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all .45s ease-in-out;
  display: inline-block;
}

.hero_btn:hover {
  border: 1px solid var(--white);
  background-color: var(--transparent);
}

.hero_btn.outline-btn {
  border: 1px solid var(--white);
  background-color: var(--transparent);
  color: var(--white);
  transition: all .45s ease-in-out;
}

.hero_btn.outline-btn:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
}

.hero-card {
  border-left: 5px solid var(--secondary);
  background-color: #0000008c;
  width: 60%;
  margin-top: 100px;
  margin-left: 5%;
  padding: 25px;
}

.hero-content {
  background-image: url('../images/Banner.webp');
  background-position: 50%;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.services-wrapper.display-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: space-between;
  display: grid;
}

.section-info-title {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
}

.section-info-title.large-text {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.section-info-title.light {
  color: var(--white);
  font-weight: 800;
}

.services-section {
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 0;
  position: relative;
}

.services-desc {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.75;
}

.services-text-block {
  border-bottom: 2px none var(--primary);
  background-color: var(--secondary);
  flex-flow: column;
  place-content: space-around flex-start;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.services-button-group {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  display: grid;
}

.section-line {
  background-color: var(--primary);
  width: 30px;
  height: 1px;
  margin-right: 10px;
}

.section-line.large-line {
  background-color: var(--primary);
  width: 35px;
  margin-right: 0;
}

.section-line.light {
  background-color: #fefefe;
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.container.container-fluid {
  width: 98%;
  max-width: none;
}

.container.container-1600px {
  width: 90%;
  max-width: 1600px;
}

.container.display-flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.services-title {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.5;
}

.services-block {
  border-bottom: 2px solid var(--primary);
  background-color: var(--secondary);
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  transition: transform .3s ease-in-out;
  display: flex;
  box-shadow: 1px 1px 3px #101b2240;
}

.services-block:hover {
  transform: translate(0, -20px);
}

.section-info-wrapper {
  align-items: center;
  display: flex;
  position: static;
}

.section-info-wrapper.text-center {
  text-align: center;
  justify-content: center;
  padding-bottom: 40px;
}

.services-image {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 35%;
  width: 100%;
  height: 300px;
  max-height: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 1px 1px 3px #101b2240;
}

.service-btn {
  border: 1px solid var(--white);
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.service-btn:hover {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--secondary);
}

.img-section {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.img-section._0b._2 {
  padding-top: 40px;
}

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

.img-section._40p._100b {
  padding-bottom: 100px;
}

.img-section._40t-0b {
  padding-top: 40px;
  padding-bottom: 0;
}

.section-h1-wrapper.display-flex {
  justify-content: space-between;
  display: flex;
}

.sm-inner-img {
  background-color: var(--secondary);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 10%;
  margin-top: -25px;
  margin-bottom: 0;
  margin-right: -25px;
  display: flex;
}

.left-section._20t {
  padding-top: 20px;
}

.left-section._20t.flex {
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 0;
  display: flex;
}

.project-img-title {
  color: var(--white);
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.img-text {
  width: 48%;
}

.img-text._40p {
  align-self: center;
  width: 50%;
  margin-bottom: auto;
  padding: 40px;
  position: relative;
}

.img-text._40p._100, .img-text._100--width {
  width: 100%;
}

.img-text.area {
  width: 90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
  position: relative;
}

.heading-1 {
  color: #101b22;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.heading-1._10p {
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 800;
}

.heading-1.margin-top-bottom-10 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
}

.heading-1.margin-top-bottom-10.white {
  color: var(--white);
  font-weight: 800;
}

.heading-1._10b {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 800;
}

.right-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 48%;
}

.right-img.image {
  background-image: url('../images/Home3.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.image.contact {
  background-image: none;
}

.right-img.image.map {
  background-image: none;
  flex-direction: column-reverse;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 0;
}

.right-img.s1-1, .right-img.s1-3, .right-img.s2-1, .right-img.s2-3, .right-img.s3-1, .right-img.s3-3, .right-img.s4-1, .right-img.s4-3 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.skip, .right-img.skip2 {
  background-image: url('../images/Home2.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.skip2 {
  background-image: url('../images/SKIP-1.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.skip1 {
  background-image: url('../images/gal-img-13.webp');
  background-position: 0%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.cage {
  background-image: url('../images/gal-img-5.webp');
  background-position: 50% 90%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.cage2 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.right-img.rubbish {
  background-image: url('../images/WAIT-AND-LOAD.webp');
  background-position: 50% 35%;
}

.right-img.rubbish._1 {
  background-image: url('../images/TRV-5.webp');
}

.right-img.rubbish.comm {
  background-image: url('../images/Wait-and-Load-Services.webp');
  background-position: 50%;
}

.right-img.rubbish2 {
  background-image: url('../images/TRV-5.webp');
  min-height: 350px;
}

.right-img.rubbish2._1 {
  background-image: url('../images/skiphire-4.webp');
}

.right-img.rubbish2.comm3 {
  background-image: url('../images/WAIT-AND-LOAD.webp');
}

.right-img.wait {
  background-image: url('../images/TRV-2_1.webp');
}

.right-img.wait.cage {
  background-image: url('../images/Testimonials.webp');
  background-position: 50%;
}

.right-img.wait.roro1 {
  background-image: url('../images/Wait-and-Load-Services.webp');
  background-position: 50%;
}

.right-img.wait.skip1 {
  background-image: url('../images/TRV-6.webp');
  background-position: 31%;
}

.right-img.wait2 {
  background-image: url('../images/gal-img-7.webp');
  min-height: 350px;
}

.right-img.wait2.cage3 {
  background-image: url('../images/tipper5.jpg');
}

.right-img.wait2.roro3 {
  background-image: url('../images/gal-img-11.webp');
}

.right-img.wait2.skip2 {
  background-image: url('../images/TRV-3.webp');
  background-position: 39%;
}

.button {
  color: #101b22;
  background-color: #ffe135;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.button:hover {
  color: #fefefe;
  background-color: #101b22;
}

.button.margin-top-40 {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  margin-top: 20px;
  transition-duration: .45s;
}

.button.margin-top-40:hover {
  border-color: var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.button.margin-top-40 {
  text-transform: uppercase;
  margin-top: 40px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.button.margin-top-40.white {
  background-color: var(--white);
  color: var(--primary);
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 0;
  transition-duration: .45s;
}

.button.margin-top-40.white:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.button._20t {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 14px;
  transition-duration: .45s;
}

.button._20t:hover {
  border-color: var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.button._20l {
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  margin-left: 20px;
  font-size: 14px;
  transition-duration: .45s;
}

.button._20l:hover {
  border-color: var(--primary);
  background-color: var(--white);
  color: var(--primary);
}

.section-hedaing-2-wrapper.display-flex {
  background-image: linear-gradient(90deg, #fff0, var(--secondary) 52%);
  justify-content: space-between;
  display: flex;
}

.section-hedaing-2-wrapper.display-flex.flex-reverse {
  background-image: linear-gradient(90deg, var(--secondary) 48%, #fff0);
  flex-direction: row-reverse;
}

.section-hedaing-2-wrapper.display-flex.gradiant-reverse {
  background-image: linear-gradient(90deg, var(--secondary) 48%, var(--transparent));
}

.section-hedaing-2-wrapper.display-flex.no-bg {
  background-image: none;
}

.section-hedaing-2-wrapper.area {
  background-image: linear-gradient(90deg, var(--secondary), var(--secondary) 52%);
  justify-content: space-between;
  display: flex;
}

.section-hedaing-2-wrapper.blue {
  background-color: var(--secondary);
}

.section-hedaing-2-wrapper.blue.z {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blue-section.m-top-10 {
  margin-top: 20px;
  margin-bottom: 0;
}

.blue-section.margin-bottom-20 {
  margin-bottom: 20px;
}

.grad-section {
  background-image: linear-gradient(90deg, #fff0, #0009), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.grad-section.min-height-300 {
  min-height: 300px;
}

.grad-section.min-height-300.img-edit {
  background-image: linear-gradient(90deg, #fff0, #16252e99), url('../images/Testimonials.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.grad-section.s1-2, .grad-section.s2-2, .grad-section.s3-2, .grad-section.s4-2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.grad-section.home {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/Home2.webp');
}

.grad-section.skip {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/skiphire-2.webp');
  background-position: 0 0, 0%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.grad-section.skip2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/SKIP-4.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.grad-section.skiphire {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/TRV-3.webp');
}

.grad-section.cage {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/gal-img-6.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.grad-section.rubbish {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/SKIP-3.webp');
}

.grad-section.rubbish._1 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/Home-5.webp');
  background-position: 0 0, 50%;
}

.grad-section.rubbish.comm2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/SKIP-2.webp');
  background-position: 0 0, 50% 100%;
}

.grad-section.wait {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/TRV-6_1.webp');
  background-position: 0 0, 50% 90%;
}

.grad-section.wait.cage2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/Testimonials.webp');
}

.grad-section.wait.roro2 {
  background-image: linear-gradient(90deg, #fff0, #0009), url('../images/Home2.webp');
  background-position: 0 0, 50%;
}

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

.h2.white {
  color: var(--white);
  margin-top: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 39px;
}

.h2.white._30t {
  margin-top: 30px;
}

.h2.white._0t, .h2.white._0p {
  margin-top: 0;
}

.h2.white._40b {
  margin-bottom: 40px;
}

.h2.white.z {
  text-align: center;
  margin-bottom: 20px;
}

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

.col-1 {
  flex-direction: column;
  justify-content: flex-start;
  width: 48%;
  display: flex;
}

.col-1.flex-grid {
  display: none;
}

.bottom-img {
  background-image: url('../images/TRV-6.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  height: 45%;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #101b229c;
}

.bottom-img:hover {
  transform: translate(-10px);
}

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

.bottom-img.img-2:hover {
  transform: translate(10px);
}

.col-2 {
  flex-direction: column-reverse;
  justify-content: flex-start;
  width: 48%;
  display: flex;
}

.right-img-grid {
  justify-content: space-between;
  width: 48%;
  display: flex;
}

.top-img {
  background-image: url('../images/272168413_1272168413.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 45%;
}

.top-img.margin-top-10 {
  background-image: url('../images/TRV-2.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  margin-top: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #101b229c;
}

.top-img.margin-top-10:hover {
  transform: translate(0, 10px);
}

.top-img.margin-bottom-10 {
  background-image: url('../images/SKIP-4.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: all .2s ease-in-out;
  box-shadow: 1px 1px 3px #101b229c;
}

.top-img.margin-bottom-10:hover {
  transform: translate(0, -10px);
}

.title-as-section {
  color: var(--white);
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: 800;
}

.left-image {
  background-image: url('../images/SKIP-2.webp');
  background-position: 50% 75%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 49.5%;
  min-height: 250px;
}

.heading-3-right-text {
  background-color: var(--secondary);
  width: 49.5%;
  padding: 40px;
}

.heading-3-top-title {
  align-items: center;
  display: flex;
}

.light-text-line {
  background-color: var(--white);
  color: var(--black);
  width: 40px;
  height: 2px;
}

.heading-3-wrapper {
  justify-content: space-between;
  display: flex;
}

.h3-cta-text {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.heading-3-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-brand {
  text-decoration: none;
}

.div-block {
  grid-column-gap: 3px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 4.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-link {
  color: #f0f6f8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

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

.footer-link.black {
  color: #000;
}

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

.footer-col-text-title {
  border-bottom: 2px none var(--secondary);
  box-shadow: 0 1px 0 0 var(--secondary);
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
}

.footer-links-block {
  flex-direction: column;
  padding-top: 10px;
  display: flex;
}

.footer-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.footer-section {
  z-index: 999;
  background-color: var(--black);
  margin-top: 10px;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-copy-section {
  background-color: var(--black);
  padding-top: 20px;
  padding-bottom: 100px;
}

.footer-copy-social {
  justify-content: flex-end;
  display: flex;
}

.footer-social-icon {
  border: 1px solid var(--secondary);
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Fa brands 400", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.footer-social-icon:hover {
  background-color: var(--secondary);
  color: var(--black);
}

.footer-social-icon.solid {
  font-family: "Fa solid 900", sans-serif;
}

.footer-link-texts {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.arrow-up {
  z-index: 998;
  background-color: #ffd900;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 10px;
  left: auto;
}

.socials {
  z-index: 998;
  border: 1px solid var(--primary);
  background-color: var(--secondary);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto auto 20px 90px;
}

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

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

.social-button.right {
  border-right-style: none;
}

.social-button.solid {
  font-family: "Fa solid 900", sans-serif;
}

.arrow-up-2 {
  z-index: 1000;
  background-color: #ffd900;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 100px 20px auto;
}

.back-to-top {
  border: 1px solid var(--secondary);
  background-color: var(--white);
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.back-to-top:hover {
  background-color: var(--secondary);
}

.hyperlink {
  box-shadow: inset 0 -2px 0 0 var(--white);
  color: var(--white);
  padding-left: 2.5px;
  padding-right: 2.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all .45s ease-in-out;
}

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

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

.areas-list.areas-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.areas-list-item.areas-list-flex {
  color: #000;
  border-bottom: 1px solid #5f5f511f;
  align-items: center;
  padding-top: 0;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 25px;
  display: flex;
}

.font-icon {
  background-color: var(--third);
  color: var(--white);
  border: 1px #e5605c;
  border-radius: 50px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  display: flex;
}

.hyperlinks {
  box-shadow: inset 0 -2px 0 0 var(--secondary);
  color: #000;
  margin-left: -2px;
  margin-right: -2px;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: all .45s ease-in-out;
  display: inline-block;
}

.hyperlinks:hover {
  box-shadow: inset 0 -100px 0 0 var(--secondary);
  color: #f7f7f2;
}

.hyperlinks.w--current {
  box-shadow: inset 0 -2px 0 0 var(--secondary);
  transition-duration: .45s;
}

.hyperlinks.w--current:hover {
  box-shadow: inset 0 -100px 0 0 var(--secondary);
  color: var(--white);
}

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

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

.contactform {
  width: 100%;
}

.google-map {
  filter: grayscale(65%);
  width: 100%;
}

.footer-links-block-2 {
  flex-direction: column;
  padding-top: 20px;
  display: flex;
}

.footer-links-block-2.remove {
  padding-top: 0;
}

.footer-link-2 {
  color: #f0f6f8;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: flex;
}

.footer-link-2:hover {
  color: #fff;
}

.footer-link-2.black {
  color: #000;
  margin-bottom: 5px;
}

.heading-2-img-section-2 {
  background-image: linear-gradient(90deg, #fff0, #16252e99), url('../images/TRV-3.webp');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.wrapper-2 {
  align-items: center;
  display: flex;
  position: static;
}

.wrapper-2._20b {
  margin-bottom: 20px;
}

.para {
  font-size: 1rem;
  line-height: 1.75;
}

.para.light {
  color: var(--white);
}

.default-btn-2 {
  background-color: var(--secondary);
  color: var(--black);
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.default-btn-2:hover {
  color: #fefefe;
  background-color: #101b22;
}

.default-btn-2.margin-top-40 {
  text-transform: uppercase;
  margin-top: 40px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn-2.margin-top-40.hover-white {
  border: 1px solid var(--white);
  background-color: var(--secondary);
  color: var(--white);
  text-transform: uppercase;
  margin-top: 20px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
  transition-duration: .45s;
}

.default-btn-2.margin-top-40.hover-white:hover {
  background-color: var(--white);
  color: var(--black);
}

.default-btn-2.margin-top-40.white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  margin-top: 20px;
  transition-duration: .45s;
}

.default-btn-2.margin-top-40.white:hover {
  border: 1px solid var(--white);
  background-color: var(--secondary);
  color: var(--white);
}

.heading-2-img-section-3 {
  background-image: linear-gradient(to right, #fff0, #16252e99), url('../images/294173684_1294173684.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 50%;
  min-height: 500px;
}

.heading-2-img-section-3.no-img {
  background-image: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-2-img-section-3.no-img.grid-edit {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  display: grid;
}

.contact-info-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  padding: 0;
  transition: box-shadow .2s cubic-bezier(.455, .03, .515, .955);
  display: grid;
}

.contact-info-block.m-bottom-20 {
  border-bottom: 1px solid #15162314;
  border-radius: 0;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 0 10px;
  transition-property: none;
}

.contact-info-block.m-bottom-20.m-top-60 {
  border-bottom: 1px solid #1516230f;
  border-radius: 0;
  place-items: end stretch;
  margin-top: 0;
  padding-bottom: 10px;
}

.cta-text-contact {
  color: var(--secondary);
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 1.25em;
  font-weight: 800;
}

.icon-block {
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  display: flex;
}

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

.cta-link {
  color: var(--primary);
  font-size: 1.05em;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
}

.form {
  width: 100%;
}

.icon {
  background-color: var(--secondary);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 1.8em;
  line-height: 1.2;
  display: flex;
}

.icon.fb {
  font-family: "Fa brands 400", sans-serif;
}

.header-contact {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  margin-left: 60px;
  margin-right: auto;
  display: flex;
}

.header-cont-info {
  align-items: center;
  display: flex;
}

.fa-icon {
  background-color: var(--secondary);
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 16px;
  display: flex;
}

.fa-icon.sm {
  color: var(--white);
  width: 26px;
  height: 26px;
  margin-right: 5px;
  font-size: 12px;
}

.header-link-cont {
  color: var(--primary);
  text-decoration: none;
}

.top-co-logo {
  width: 180px;
}

.h1-light {
  font-weight: 300;
}

.h2-light {
  font-weight: 400;
}

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

.bullet-list._10p {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  list-style-type: none;
}

.bullet-list._2col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bullet-list._2col._10p {
  margin-top: 10px;
  margin-bottom: 10px;
}

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

.bullet-list._4col._10b {
  margin-top: 10px;
  margin-bottom: 10px;
}

.bullet-list._3col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bullet-list._3col._10p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.list-item {
  color: #787879;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 500;
  display: flex;
}

.list-item.white {
  color: #e4e4e4;
}

.list-item.white.z {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.bullet-heading {
  color: var(--primary);
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

.bullet-heading.w {
  color: var(--white);
}

.font-icon-2 {
  color: #f9f9f9;
  background-color: #ff6363;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  display: flex;
}

.font-icon-2.edit {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 10px;
  flex: none;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-right: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: .5rem;
  font-weight: 300;
}

.font-icon-2.w {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 10px;
  flex: none;
  width: 30px;
  height: 30px;
  font-family: "Fa solid 900", sans-serif;
  font-size: .5rem;
  font-weight: 300;
}

.font-icon-2.nopad {
  background-color: var(--white);
  color: var(--primary);
  background-color: var(--white);
  border-radius: 10px;
  flex: none;
  margin-right: 0;
  font-family: "Fa solid 900", sans-serif;
  font-size: .5rem;
  font-weight: 300;
}

.foot-link-white {
  color: var(--white);
  font-size: 1rem;
}

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

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

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

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

.chat-section {
  background-color: #b7b5b5;
  background-image: url('../images/WA-Background.webp');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 16px 20px;
  display: flex;
  position: relative;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  inset: 2px auto auto 2px;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
  display: none;
  position: fixed;
  inset: auto 0% 0% auto;
}

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

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

.livechat-button {
  background-color: var(--secondary);
  color: var(--white);
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.livechat-button:hover {
  background-color: #326db1;
}

.live-chat-top-text {
  color: var(--secondary);
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 26px;
  position: static;
}

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

.live-chat-bottom-text {
  font-size: 11px;
}

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

.live-chat-bottom-text.block {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 24px;
}

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

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

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

.icon-2 {
  display: none;
}

.footer-links {
  color: var(--grey);
  text-decoration: none;
}

.envo-logo {
  width: 150px;
  margin-top: 20px;
}

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

.fs-cc-prefs_button {
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
  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(--secondary);
  color: var(--secondary);
  background-color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
  z-index: 999;
  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_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 20px 20px;
}

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

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

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

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

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

.svs-link {
  width: 0;
  height: 0;
  margin-top: -100px;
  position: absolute;
}

.contact-div {
  background-color: var(--secondary);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 20px;
  transition: all .2s;
  display: flex;
}

.contact-div:hover {
  background-color: var(--grey);
}

.contact-icon {
  color: var(--white);
  margin-right: 10px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  line-height: 20px;
}

.tabs-2 {
  width: 100%;
}

.tabs-menu-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab {
  background-color: var(--third);
  color: var(--white);
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px 40px;
  display: flex;
}

.tab.w--current {
  color: var(--black);
  background-color: #fff;
  flex-flow: column;
}

.product-img {
  width: auto;
  height: 100px;
  margin-bottom: 20px;
}

.html-embed {
  color: #000;
  width: 100%;
}

.html-embed.times {
  width: 100%;
  margin-bottom: 40px;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
}

.tab-pane {
  background-color: var(--white);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.tab-pane.caged {
  display: none;
}

.areas-link {
  position: absolute;
  inset: 0%;
}

.icon-3 {
  width: 20px;
}

.c-icon {
  margin-right: 10px;
}

._w-features {
  padding-top: 40px;
  padding-bottom: 40px;
}

._w-pricing-table-item {
  background-color: #fff;
  border-radius: 5px;
  padding: 40px 35px;
  box-shadow: 1px 1px 15px #00000026;
}

._w-pricing-table-item.focus {
  padding: 60px 35px;
  position: relative;
}

.c-highlight {
  position: absolute;
  inset: 0% 0% auto;
}

.divider {
  border-bottom: 1px dashed #000000bf;
}

.c-divider {
  margin-top: 30px;
}

.c-s-header {
  margin-bottom: 40px;
}

.section {
  text-align: center;
  background-color: #f1f1f1;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

._w-plantype {
  margin-bottom: 20px;
}

.c-features-item {
  margin-bottom: 10px;
}

.s-header {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.s-header.small {
  margin-bottom: 15px;
  font-size: 29px;
}

.s-header.topppp {
  margin-top: 45px;
  margin-bottom: 20px;
}

.feature-text {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

._w-price {
  justify-content: center;
  font-weight: 600;
  display: flex;
}

.c-amount {
  align-items: flex-end;
  display: flex;
}

.c-pricing-table-item {
  margin: 10px 5px;
}

.currency {
  margin-right: 3px;
}

._w-highlight {
  background-image: linear-gradient(225deg, var(--third), var(--primary));
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.plantype {
  text-align: center;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 700;
}

.f-pricing-table {
  justify-content: center;
  align-items: center;
  display: flex;
}

._w-features-item {
  border-top: .5px #000;
  border-bottom: .5px solid #000;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

._w-features-item.big {
  height: 100px;
}

.a-price-btn {
  background-image: linear-gradient(225deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 5px;
  width: 100%;
  padding: 10px 40px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}

.a-price-btn:hover {
  transform: translate(0, -5px);
  box-shadow: 0 6px 10px #0003;
}

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

.highlight {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 1px 1px #00000040;
  padding: 7px 20px;
  font-weight: 700;
}

.price-small {
  font-size: 20px;
}

.price-box {
  background-color: var(--white);
  width: 70%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  box-shadow: 0 2px 6px 4px #0000001f;
}

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

.div-block-3 {
  background-color: var(--white);
  padding: 20px;
}

.sm {
  margin-top: 0;
  font-size: 22px;
}

.sm.w {
  color: var(--white);
}

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

.default-btn-3 {
  color: #000;
  background-color: #1573b7;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.default-btn-3:hover {
  color: #fefefe;
  background-color: #101b22;
}

.default-btn-3.margin-top-40 {
  text-transform: uppercase;
  margin-top: 40px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
}

.default-btn-3.margin-top-40.hover-white {
  color: #fff;
  text-transform: uppercase;
  background-color: #1573b7;
  border: 1px solid #fff;
  margin-top: 20px;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 600;
  transition-duration: .45s;
}

.default-btn-3.margin-top-40.hover-white:hover {
  color: #000;
  background-color: #fff;
}

.h3-cta-text-2 {
  color: #fff;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.title-as-section-2 {
  color: #fff;
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: 800;
}

.heading-3-right-text-2 {
  background-color: #1573b7;
  width: 49.5%;
  padding: 40px;
}

.hyperlink-2 {
  color: #fff;
  padding-left: 2.5px;
  padding-right: 2.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all .45s ease-in-out;
  box-shadow: inset 0 -2px #fff;
}

.hyperlink-2:hover {
  color: #1573b7;
  box-shadow: inset 0 -100px #fff;
}

.light-text-line-2 {
  color: #000;
  background-color: #fff;
  width: 40px;
  height: 2px;
}

.text-block {
  background-color: #fff;
  padding: 10px 10px 10px 20px;
  font-weight: 700;
  box-shadow: 0 2px 5px -3px #0003;
}

.tablecontainer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.tabletext {
  background-color: var(--grey);
  color: var(--white);
  text-align: center;
  border: 1px solid #000;
  width: 100%;
  padding: 8px;
}

.tabletext.w {
  background-color: var(--white);
  color: var(--black);
}

.tabletext.w.big {
  font-size: 14px;
}

.tabletext.w.head {
  font-weight: 700;
}

.tabletext.big {
  border-width: 2px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 24px;
}

.tabletext.d {
  color: var(--black);
  background-color: #ececec;
}

.tabletext.d.head {
  font-weight: 700;
}

.table-column {
  display: flex;
}

.table-column.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tablehead {
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.tablehead.bold {
  font-size: 24px;
}

.hide {
  display: none;
}

@media screen and (min-width: 1920px) {
  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .nav-link {
    background-color: var(--white);
  }

  .nav-link.contact-nav.call-btn {
    background-color: var(--secondary);
    color: var(--primary);
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
  }

  .drop-downmenu {
    width: 100%;
  }

  .nav-container {
    border-radius: 0;
    max-width: 1300px;
  }

  .nav-menu {
    background-color: var(--white);
    display: flex;
  }

  .menu-button {
    background-color: var(--primary);
    color: var(--white);
  }

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

  .navbar {
    border-radius: 0;
    width: 100%;
  }

  .drop-down-link {
    text-transform: uppercase;
  }

  .drop-down-link.lg-area {
    width: 100%;
  }

  .navigation-bar {
    width: 100%;
    position: absolute;
  }

  .dropdown-toggle.nav-link {
    border-right-width: 0;
    padding-right: 40px;
  }

  .dropdown-toggle.nav-link:hover {
    color: var(--white);
  }

  .banner-text {
    font-size: 2rem;
  }

  .hero-card {
    width: 90%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .services-section {
    padding-bottom: 0;
  }

  .container.container-fluid {
    width: 90%;
  }

  .container.display-flex.container-1600px.copy-flex {
    text-align: center;
    flex-direction: column;
  }

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

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

  .left-section._20t {
    padding-top: 10px;
  }

  .img-text {
    width: 100%;
  }

  .img-text._40p {
    background-color: var(--secondary);
    width: 100%;
  }

  .img-text._40p.bg-white {
    background-color: #0000;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .img-text.area {
    background-color: var(--secondary);
    width: 100%;
  }

  .right-img.image {
    width: 100%;
    height: 500px;
    margin-top: 100px;
  }

  .right-img.image.contact, .right-img.image.map {
    height: auto;
  }

  .right-img.s1-1, .right-img.s1-3 {
    width: 100%;
    height: 500px;
    margin-top: 100px;
  }

  .right-img.s2-1, .right-img.s2-3 {
    width: 100%;
    height: 500px;
    margin-top: 60px;
  }

  .right-img.s3-1 {
    width: 100%;
    height: 500px;
    margin-top: 100px;
  }

  .right-img.s3-3 {
    width: 100%;
    height: 500px;
    margin-top: 60px;
  }

  .right-img.s4-1, .right-img.s4-3, .right-img.skip {
    width: 100%;
    height: 500px;
    margin-top: 100px;
  }

  .right-img.skip, .right-img.skip2 {
    width: 100%;
    height: 500px;
    margin-top: 60px;
  }

  .right-img.skip2 {
    width: 100%;
    height: 500px;
    margin-top: 100px;
  }

  .right-img.skip1, .right-img.cage, .right-img.cage2 {
    width: 100%;
    height: 500px;
    margin-top: 60px;
  }

  .section-hedaing-2-wrapper.display-flex {
    background-image: none;
    flex-direction: column;
  }

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

  .section-hedaing-2-wrapper.area {
    background-image: none;
    flex-direction: column;
  }

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

  .grad-section {
    width: 100%;
  }

  .grad-section.skip, .grad-section.skip2 {
    background-position: 0 0, 50%;
  }

  .h2._0p {
    margin-bottom: 0;
  }

  .right-img-grid {
    width: 100%;
    min-height: 500px;
    margin-top: 40px;
    padding-top: 0;
  }

  .left-image {
    width: 100%;
    margin-top: 10px;
  }

  .heading-3-right-text {
    width: 100%;
    margin-bottom: 30px;
  }

  .heading-3-wrapper {
    flex-direction: column-reverse;
  }

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

  .div-block {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

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

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

  .footer-copy-social {
    margin-top: 20px;
  }

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

  .google-map, .heading-2-img-section-2, .heading-2-img-section-3 {
    width: 100%;
  }

  .heading-2-img-section-3.no-img.grid-edit {
    width: 100%;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
  }

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

  .font-icon-2.edit, .font-icon-2.w, .font-icon-2.nopad, .font-icon-2.nopad {
    flex: none;
  }

  .icon-2 {
    display: flex;
  }

  .svs-link {
    margin-top: -10px;
  }

  .tab {
    justify-content: center;
    align-items: center;
    width: 50%;
  }

  ._w-pricing-table-item, .a-price-btn {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .heading-3-right-text-2 {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    margin-right: auto;
  }

  .menu-button {
    margin-right: 7px;
  }

  .navigation-bar {
    z-index: 999;
    position: relative;
  }

  .hero-section {
    height: auto;
    min-height: auto;
  }

  .hero-card {
    width: 90%;
    margin: 60px auto;
  }

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

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

  .services-text-block {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-block {
    margin-bottom: 60px;
  }

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

  .img-section._40p, .img-section._40t-0b {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .sm-inner-img {
    width: auto;
    margin-top: -10px;
    margin-right: -10px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .img-text._40p {
    padding: 30px;
  }

  .img-text._40p.bg-white {
    padding-top: 20px;
  }

  .img-text.area {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .right-img {
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
  }

  .right-img.image, .right-img.s1-1, .right-img.s1-3 {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.s2-1, .right-img.s2-3 {
    height: 400px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.s3-1, .right-img.s3-3, .right-img.s4-1, .right-img.s4-3, .right-img.skip, .right-img.skip, .right-img.skip2, .right-img.skip2, .right-img.skip1 {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.cage, .right-img.cage2 {
    height: 400px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .button.margin-top-40 {
    text-align: center;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

  .button._20t {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }

  .button._20l {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .grad-section.s2-2, .grad-section.cage {
    min-height: 400px;
  }

  .left-image {
    width: 100%;
    margin-top: 0;
  }

  .heading-3-right-text {
    width: 100%;
    margin-bottom: 0;
  }

  .heading-3-wrapper {
    flex-direction: column;
  }

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

  .f-col {
    border-bottom: 1px solid #f0f6f81f;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .f-col.no-padding {
    border-bottom-style: none;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 300px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .footer-links-block {
    padding-top: 10px;
  }

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

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

  .areas-list.areas-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }

  .areas-list-item.areas-list-flex {
    line-height: 22px;
  }

  .lb {
    height: 160px;
  }

  .footer-links-block-2 {
    padding-top: 10px;
  }

  .default-btn-2.margin-top-40 {
    text-align: center;
    width: 100%;
  }

  .header-contact {
    display: none;
  }

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

  .bullet-heading {
    line-height: 24px;
  }

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

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

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

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

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

  .svs-link {
    margin-top: -10px;
  }

  .tabs-menu-3 {
    flex-flow: column;
  }

  .tab {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

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

  .c-pricing-table-item {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .f-pricing-table {
    flex-direction: column;
  }

  .default-btn-3.margin-top-40 {
    text-align: center;
    width: 100%;
  }

  .heading-3-right-text-2 {
    width: 100%;
    margin-bottom: 0;
  }

  .tabletext {
    display: none;
  }

  .tabletext.w {
    display: block;
  }

  .tabletext.w.head {
    background-color: var(--grey);
    color: var(--white);
    display: block;
  }

  .tabletext.big.lg {
    display: block;
  }

  .table-column {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
  }

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

  .hide {
    margin-right: 5px;
    display: inline-block;
  }
}

@media screen and (max-width: 479px) {
  .nav-link.contact-nav.call-btn {
    display: none;
  }

  .hero-intro-text {
    font-size: .8rem;
    line-height: 1.5;
  }

  .banner-text {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .p {
    font-size: .9rem;
    line-height: 1.5;
  }

  .p.light, .p.black {
    font-size: 1rem;
    line-height: 1.75;
  }

  .p.large {
    margin-right: 0;
  }

  .hero-section {
    height: 50vh;
    min-height: 450px;
  }

  .hero-section.service1, .hero-section.service2, .hero-section.service3, .hero-section.area {
    min-height: 450px;
  }

  .hero_btn {
    text-align: center;
    width: 100%;
    margin-top: 10px;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero_btn.outline-btn {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

  .hero-card {
    width: 90%;
    margin: 20px auto 30px;
    padding: 20px 10px;
  }

  .section-info-title.large-text {
    font-size: 1.5rem;
  }

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

  .services-desc {
    margin-bottom: 0;
  }

  .services-text-block {
    padding: 10px;
  }

  .services-block {
    margin-bottom: 30px;
  }

  .services-image {
    height: 250px;
    max-height: 250px;
  }

  .service-btn {
    font-weight: 400;
  }

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

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

  .sm-inner-img {
    width: auto;
    margin-top: 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .left-section._20t {
    padding-top: 0;
  }

  .project-img-title {
    font-size: 1rem;
  }

  .img-text._40p {
    background-color: var(--secondary);
    padding: 20px;
  }

  .img-text._40p.bg-white {
    padding-top: 30px;
  }

  .img-text.area {
    background-color: var(--secondary);
  }

  .heading-1._10p {
    color: #16252e;
    text-transform: uppercase;
    font-size: 1.5rem;
  }

  .heading-1.margin-top-bottom-10 {
    color: #16252e;
    text-transform: uppercase;
    font-size: 22px;
  }

  .heading-1.margin-top-bottom-10.white {
    color: #f0f6f8;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .heading-1._10b {
    color: #16252e;
    text-transform: uppercase;
    font-size: 1.5rem;
  }

  .right-img {
    height: 250px;
    margin-bottom: 20px;
  }

  .right-img.image {
    height: 250px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.s1-1, .right-img.s1-3, .right-img.s2-1 {
    height: 300px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.s2-3 {
    height: 300px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .right-img.s3-1, .right-img.s3-3, .right-img.s4-1, .right-img.s4-3, .right-img.skip, .right-img.skip, .right-img.skip2 {
    height: 300px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.skip2 {
    height: 250px;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .right-img.skip1 {
    height: 250px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .right-img.cage {
    height: 250px;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .right-img.cage2 {
    height: 300px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .title-container {
    margin-bottom: 10px;
  }

  .blue-section.margin-bottom-20 {
    margin-bottom: 0;
  }

  .grad-section, .grad-section.min-height-300.img-edit, .grad-section.home, .grad-section.skip2, .grad-section.skiphire, .grad-section.cage, .grad-section.rubbish {
    min-height: 250px;
  }

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

  .h2.white {
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .col-1 {
    width: 100%;
    min-height: 300px;
    display: none;
  }

  .col-1.flex-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    min-height: 480px;
    margin-bottom: 30px;
    display: grid;
  }

  .bottom-img {
    height: 100%;
  }

  .col-2 {
    width: 100%;
    min-height: 300px;
  }

  .right-img-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .top-img.margin-top-10, .top-img.margin-bottom-10 {
    height: 100%;
  }

  .heading-3-right-text {
    padding: 20px;
  }

  .h3-cta-text {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .heading-3-section, .footer-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .socials {
    max-width: 120px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    inset: auto 0% 0%;
  }

  .arrow-up-2 {
    bottom: 10px;
    right: 5%;
  }

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

  .areas-list-item.areas-list-flex {
    line-height: 22px;
  }

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

  .footer-link-2 {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .footer-link-2.black {
    font-size: 14px;
  }

  .heading-2-img-section-2 {
    min-height: 250px;
  }

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

  .para {
    font-weight: 300;
  }

  .default-btn-2.margin-top-40.hover-white, .default-btn-2.margin-top-40.white {
    margin-top: 10px;
  }

  .title-container-2 {
    margin-bottom: 0;
  }

  .heading-2-img-section-3 {
    min-height: 300px;
  }

  .heading-2-img-section-3.no-img.grid-edit {
    grid-template-columns: 1fr;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .title-container-3 {
    margin-bottom: 20px;
  }

  .contact-info-block {
    padding: 25px;
  }

  .contact-info-block.m-bottom-20.m-top-60 {
    margin-bottom: 0;
  }

  .icon-block {
    margin-right: 10px;
  }

  .cta-link {
    font-size: 1em;
    font-weight: 400;
  }

  .form {
    margin-top: 0;
  }

  .icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    font-size: 1.4em;
  }

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

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

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

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

  .livechat-button {
    width: 90%;
  }

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

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

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

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

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

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

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

  .svs-link {
    margin-top: 0;
  }

  .tabs-menu-3 {
    flex-flow: column;
  }

  .tab {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .s-header.small {
    font-size: 20px;
    line-height: 25px;
  }

  .s-header.topppp {
    font-size: 29px;
    line-height: 36px;
  }

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

  .price-small {
    font-size: 17px;
  }

  .price-box {
    width: 100%;
  }

  .default-btn-3.margin-top-40.hover-white {
    margin-top: 10px;
  }

  .h3-cta-text-2 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .heading-3-right-text-2 {
    padding: 20px;
  }

  .tabletext.w.big {
    border-width: 1px;
  }

  .tabletext.big.lg {
    border-width: 1px;
    font-size: 18px;
  }
}

#w-node-aff942e5-7f39-1f40-e2bc-1e82feb5851e-0f670125, #w-node-aff942e5-7f39-1f40-e2bc-1e82feb5853a-0f670125 {
  place-self: stretch stretch;
}

#w-node-_88e00164-4fc9-2b48-65fb-5821daa6a678-8c094d91 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c4091-8e0c4081 {
  align-self: center;
}

#w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c4097-8e0c4081 {
  align-self: end;
}

#w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c409b-8e0c4081, #w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c40a5-8e0c4081, #w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c40ae-8e0c4081 {
  align-self: center;
}

#w-node-da8d081e-77ee-7f1c-884a-22efd67750f7-0f67016e, #w-node-a4318616-944c-5cc4-4588-f50bdd6b39ea-8380783d, #w-node-c9a3f9e6-5468-8211-3b3c-6b10dcb21eaa-8380783d, #w-node-_9b5dbb9a-72fc-96d6-af32-f9ec590d531b-8380783d, #w-node-_946cb31e-984a-5705-7b5c-e93426ecab07-8380783d, #w-node-be0ec67c-71f7-3ae5-cd0f-b8839a94f9e8-8380783d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f1fba41a-2eef-af5d-a00c-f09c7a3288a2-0ef6fe2a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-f1fba41a-2eef-af5d-a00c-f09c7a3288a2-0ef6fe2a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c408d-8e0c4081 {
    align-self: center;
  }

  #w-node-_0bc8de3a-a091-6c0e-f4e4-1e6c8e0c408e-8e0c4081 {
    place-self: stretch stretch;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa sharp solid 900';
  src: url('../fonts/fa-sharp-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 300';
  src: url('../fonts/fa-light-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 100';
  src: url('../fonts/fa-thin-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa duotone 900';
  src: url('../fonts/fa-duotone-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}