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

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

:root {
  --white: #fff;
  --black: black;
  --dark-blue: #0a144b;
  --pale-blue: #ca0202;
  --logs-red: #ca0202;
  --grey: #dad9d5;
  --90-grey: #dad9d5e6;
  --85-blue: #0a144bd9;
  --50-blue: #0a144b80;
  --transparent: #fff0;
}

.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: Plus Jakarta Sans, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.nav-link {
  color: var(--dark-blue);
  text-transform: uppercase;
  padding: 10px;
  font-size: 13px;
  line-height: 23px;
  transition: all .2s ease-in-out;
}

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

.nav-link.w--current {
  color: var(--logs-red);
}

.nav-link.contact-nav {
  background-color: var(--grey);
  color: var(--dark-blue);
  margin-left: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

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

.co-logo-link {
  background-color: var(--white);
  border-radius: 50%;
  margin-bottom: -90px;
  padding: 10px;
  box-shadow: 0 10px 10px -10px #0003;
}

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

.nav-menu {
  text-align: right;
  margin-left: auto;
}

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

.dropdown-list.w--open {
  background-color: var(--white);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-top: 30px;
  padding-bottom: 0;
}

.navbar {
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  display: flex;
  box-shadow: 0 2px 8px #0003;
}

.drop-down-link {
  z-index: 1;
  text-transform: uppercase;
  padding: 15px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  transition: all .2s;
}

.drop-down-link:hover {
  color: var(--pale-blue);
}

.navigation-bar {
  z-index: 10000;
  border-radius: 5px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  inset: 0 0% auto;
  overflow: visible;
}

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

.dd-toggle.nav-link {
  color: var(--dark-blue);
  padding: 10px 30px 10px 10px;
}

.dd-toggle.nav-link:hover {
  color: var(--pale-blue);
}

.p {
  color: var(--pale-blue);
  width: 100%;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 28px;
}

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

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

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

.p.white._20t {
  margin-top: 20px;
  margin-bottom: 0;
}

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

.hero-section {
  z-index: 50;
  background-color: var(--black);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100vh;
  min-height: 700px;
  position: relative;
}

.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;
  justify-content: space-between;
  display: grid;
}

.section-info-title {
  color: var(--dark-blue);
  text-transform: uppercase;
  font-weight: 500;
}

.section-info-title.large-text {
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
}

.section-info-title.white {
  color: var(--white);
}

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

.services-desc {
  color: var(--white);
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.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;
  width: 100%;
  margin-top: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
}

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

.section-line.large-line {
  background-color: var(--dark-blue);
  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(--logs-red);
  text-transform: uppercase;
  margin: 30px 20px 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.section-info-wrapper {
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  position: static;
}

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

.service-btn {
  background-color: var(--logs-red);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

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

.service-btn.blue {
  background-color: var(--white);
  color: var(--dark-blue);
  padding: 10px 20px;
  display: inline-block;
}

.service-btn.blue:hover {
  background-color: var(--grey);
  color: var(--dark-blue);
}

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

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

._2-col-div, ._2-col-div.display-flex {
  justify-content: space-between;
  display: flex;
}

._2-col-div._60b {
  margin-bottom: 60px;
}

.text-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 48.5%;
  display: flex;
}

.text-div.blue {
  background-color: var(--dark-blue);
  width: 50%;
  padding: 50px 40px 40px;
  position: relative;
}

.text-div.blue._100 {
  width: 90%;
  max-width: 1400px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-div.blue._95 {
  width: 92%;
  max-width: 1400px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-div._100 {
  width: 100%;
}

.text-div._100-blue {
  background-color: var(--dark-blue);
  width: 100%;
  padding: 30px;
}

.text-div._48 {
  width: 48%;
}

.text-div.blue-bg {
  background-color: var(--dark-blue);
  width: 50%;
  padding: 60px 40px;
  position: relative;
}

.text-div._100-lightblue {
  background-color: var(--pale-blue);
  width: 100%;
  padding: 30px;
}

.text-div.red {
  background-color: var(--logs-red);
  width: 50%;
  padding: 60px 40px;
  position: relative;
}

.h1 {
  color: var(--white);
  text-transform: uppercase;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 800;
  line-height: 38px;
}

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

.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.5%;
  min-height: 300px;
}

.right-img.home {
  background-image: url('../images/Tree-2.webp');
  background-position: 20%;
}

.right-img.tree {
  background-image: url('../images/LJN12_1LJN12.webp');
  background-position: 50% 90%;
  margin-left: 0;
  margin-right: auto;
}

.right-img.stump {
  background-image: url('../images/stump-1.webp');
  background-position: 20%;
}

.right-img.fencing {
  background-image: url('../images/fence-7-w600h600_1fence-7-w600h600.webp');
}

.right-img.fencing2 {
  background-image: url('../images/knotweed.webp');
}

.right-img.clear {
  background-image: url('../images/commercial2_1commercial2.webp');
}

._2-col {
  justify-content: space-around;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

._2-col.display-flex {
  justify-content: space-between;
  display: flex;
}

._2-col-section._50t {
  margin-top: 70px;
  margin-bottom: 0;
}

._2-col-section._100t {
  padding-top: 100px;
}

._2-col-section.contact {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

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

.left-img.home {
  background-image: url('../images/Tree-4.webp');
  background-position: 50%;
}

.left-img.clear {
  background-image: url('../images/image6_1image6.webp');
  width: 50%;
}

.left-img.clear2 {
  background-image: url('../images/ljn-tree-17.webp');
  background-position: 50%;
  width: 50%;
}

.left-img.stump {
  background-image: url('../images/stump-2.webp');
}

.left-img.fencing {
  background-image: url('../images/ljn-tree-5.webp');
}

.left-img.fencing3 {
  background-image: url('../images/planting-3-w600h600-crop-u15202.webp');
  background-position: 50% 0;
}

.left-img.commercial {
  background-image: url('../images/ljn-tree-21.webp');
  background-position: 0 100%;
  width: 50%;
}

.h2 {
  color: var(--dark-blue);
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
}

.h2.white {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
}

.h2._50t-40b {
  border-top: 1px solid var(--grey);
  margin-bottom: 40px;
  padding-top: 50px;
}

.h2._10b {
  margin-bottom: 10px;
}

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

.bottom-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  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._2 {
  background-image: url('../images/ljn-tree-8.webp');
  background-position: 50%;
  background-size: cover;
}

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

.bottom-img._3 {
  background-image: url('../images/ljn-tree-21.webp');
}

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

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

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

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

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

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

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

.title-as-section {
  color: var(--grey);
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

.heading-3-right-text {
  background-color: var(--logs-red);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50.5%;
  padding: 40px;
  display: flex;
}

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

.light-text-line {
  background-color: var(--grey);
  color: var(--grey);
  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: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

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

.footer-link {
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

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

.footer-col-text-title {
  border-bottom: 2px none var(--logs-red);
  box-shadow: 0 1px 0 0 var(--logs-red);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
  padding-bottom: 5px;
  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 {
  background-color: var(--dark-blue);
  margin-top: 10px;
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-copy-section {
  background-color: var(--dark-blue);
  padding-top: 20px;
  padding-bottom: 70px;
}

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

.footer-social-icon {
  border: 1px solid var(--90-grey);
  background-color: var(--dark-blue);
  color: var(--grey);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: "Brands 400", Arial, sans-serif;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.footer-social-icon:hover {
  background-color: var(--logs-red);
  color: var(--90-grey);
}

.footer-link-texts {
  color: var(--white);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.arrow-up {
  z-index: 500;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 1% 10px auto;
}

.socials {
  z-index: 500;
  background-color: var(--pale-blue);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto auto 20px 80px;
}

.social-button {
  background-color: var(--logs-red);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Brands 400", Arial, sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

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

.arrow-up-2 {
  z-index: 1000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 20px 20px auto;
  box-shadow: 0 2px 4px #0003;
}

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

.back-to-top:hover {
  background-color: var(--logs-red);
  color: var(--white);
}

.hyperlink {
  box-shadow: inset 0 -.5px 0 0 var(--pale-blue);
  color: #000;
  padding-left: 2px;
  padding-right: 2px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.hyperlink:hover {
  box-shadow: inset 0 -50px 0 0 var(--pale-blue);
  color: #fff;
}

.hyperlink.grey {
  box-shadow: inset 0 0 0 0 var(--dark-blue);
  color: var(--grey);
  font-weight: 800;
}

.hyperlink.grey:hover {
  box-shadow: inset 0 -50px 0 0 var(--dark-blue);
}

.hyperlink.white {
  box-shadow: inset 0 -.5px 0 0 var(--logs-red);
  color: var(--white);
  font-weight: 800;
}

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

.img-div {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 50.5%;
  min-height: 500px;
}

.img-div.home {
  background-image: url('../images/Tree-1.webp');
  background-position: 65%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-div.tree {
  background-image: url('../images/Tree-Surgeyr-page-_1Tree Surgeyr page .webp');
  background-position: 100%;
  width: 50.5%;
}

.img-div.clear {
  background-image: url('../images/Tree-6.webp');
  background-position: 50% 75%;
}

.img-div.stump {
  background-image: url('../images/ljn-tree-10.webp');
}

.img-div.fencing {
  background-image: url('../images/fence.webp');
  background-position: 100%;
}

.welcome-div {
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  position: static;
}

.title-container-3.m-bottom {
  width: 100%;
}

.icon-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

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

.header-contact {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  margin-left: 20px;
  display: flex;
}

.header-cont-info {
  color: var(--black);
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  display: flex;
}

.fa-icon {
  background-color: var(--pale-blue);
  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 {
  background-color: var(--dark-blue);
  color: var(--white);
  border-radius: 50px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-right: 5px;
  font-size: 10px;
  line-height: 10px;
}

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

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

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
  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(--pale-blue);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

.fs-cc-prefs_title {
  color: var(--dark-blue);
  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(--pale-blue);
  color: var(--pale-blue);
  font-weight: 400;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

.whatsapp-icon {
  width: 25px;
  min-width: 25px;
  height: 25px;
  min-height: 25px;
}

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

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

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 24px;
}

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

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

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

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

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

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

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

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

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

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

.livechat-button:hover {
  background-color: var(--grey);
}

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

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

.onload {
  z-index: 999999;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.spin-lottie {
  width: 35%;
}

.co-logo {
  width: 200px;
  margin-left: 4px;
  padding-bottom: 0;
}

.hero-slider {
  background-color: var(--black);
  width: 100%;
  height: 100%;
}

.slider-nav {
  justify-content: center;
  align-items: center;
  display: flex;
}

.left-arrow {
  z-index: 10;
  width: 50px;
}

.right-arrow {
  width: 50px;
}

.hero-slide-1 {
  background-image: url('../images/surgeon-6.webp');
  background-position: 50%;
  background-size: cover;
}

.hero-slide-2 {
  background-image: url('../images/firewood-1.webp');
  background-position: 0 100%;
  background-size: cover;
}

.hero-slide-3 {
  background-image: url('../images/stump-2_1.webp');
  background-position: 0 100%;
  background-size: cover;
}

.hero-slide-4 {
  background-image: url('../images/site_1284678190.webp');
  background-position: 50%;
  background-size: cover;
}

.left-arrows {
  background-color: #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 10px;
  font-size: 20px;
  transition: all .3s;
  display: flex;
}

.left-arrows:hover {
  background-color: #000;
}

.right-arrows {
  background-color: #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 10px;
  font-size: 20px;
  transition: all .3s;
  display: flex;
}

.right-arrows:hover {
  background-color: #000;
}

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

.hero-div {
  z-index: 2;
  border: 1px solid var(--white);
  background-color: var(--85-blue);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  max-width: 700px;
  margin-bottom: 60px;
  margin-right: 60px;
  padding: 25px 30px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
  box-shadow: 0 20px 10px -10px #000c;
}

.slider-text {
  color: var(--white);
  width: 100%;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  text-decoration: none;
}

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

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

.list._2col._0b {
  margin-bottom: 0;
}

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

.list-item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bullet-heading {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

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

.bullet-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  margin-right: 10px;
}

.faq-widget {
  margin-top: 10px;
  margin-left: -10px;
}

.svs-block {
  border-style: solid;
  border-width: 1px 1px 2px;
  border-color: var(--90-grey) var(--90-grey) var(--dark-blue);
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
  transition: all .5s;
  display: flex;
  box-shadow: 0 2px 6px #0003;
}

.svs-block:hover {
  transform: translate(0, -30px);
}

.svs-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 250px;
}

.svs-img.tree {
  background-image: url('../images/Tree-Surgeyr-page-_1Tree Surgeyr page .webp');
}

.svs-img.stump {
  background-image: url('../images/download2-crop-u6994_1download2-crop-u6994.webp');
  background-position: 0%;
}

.svs-img.site {
  background-image: url('../images/commercial2_1commercial2.webp');
  background-position: 50% 65%;
}

.svs-img.other {
  background-image: url('../images/46239272_1803572256437219_8155850270392188928_n.webp');
  background-position: 50% 65%;
}

.h3-img {
  background-image: url('../images/stump_1282287154.webp');
  background-position: 50%;
  background-size: cover;
  width: 50%;
  min-height: 350px;
}

.h3-img.tree {
  background-image: url('../images/LJN10_1LJN10.webp');
}

.h3-img.home {
  background-image: url('../images/ljn-tree-15.webp');
}

.h3-img.clear {
  background-image: url('../images/LJN10_1LJN10.webp');
}

.h3-img.stump {
  background-image: url('../images/stump_1282287154.webp');
}

.h3-img.fencing {
  background-image: url('../images/planting-6-w600h600-crop-u15214.webp');
  background-position: 50%;
}

.form-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 48%;
  display: flex;
}

.home-nav {
  z-index: 10000;
  border-radius: 5px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  inset: 0 0% auto;
  overflow: visible;
}

.h3 {
  color: var(--dark-blue);
  width: 100%;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
}

.h3.white {
  color: var(--white);
  margin-bottom: 15px;
}

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

._4-box-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr .9fr;
  width: 100%;
}

.box-div {
  border-right: 1px solid var(--logs-red);
  margin-right: 25px;
  padding-right: 25px;
}

.box-div._4, .box-div._0r {
  border-right-width: 0;
  margin-right: 0;
  padding-right: 0;
}

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

.areas-list {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
  display: grid;
}

.areas-map {
  width: 50%;
}

.numbered-div {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.number-div {
  background-image: url('../images/blade-mid.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  margin-top: -15px;
  margin-left: -15px;
  margin-right: 15px;
  display: flex;
}

.number {
  text-align: center;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 30px;
}

.numbered-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 10px;
}

.numbered-container {
  border: 1px solid var(--grey);
  padding: 30px;
  box-shadow: 0 10px 10px -10px #0000004d;
}

.white-grid-div {
  border: 1px solid var(--pale-blue);
  width: 100%;
  padding: 30px;
}

.team-name {
  color: #0a144b;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
}

.side-line {
  background-color: var(--grey);
  transform-style: preserve-3d;
  width: 2px;
  height: 100%;
  margin-right: 35px;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate3d(0, 0, 180px);
}

.team-block {
  z-index: 3;
  background-color: #0a144b;
  border-top-left-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  transition: all .2s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-block:hover {
  background-color: var(--pale-blue);
}

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

.lightbox-link {
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
}

.bottom-line {
  background-color: var(--grey);
  width: 100%;
  height: 2px;
  margin-bottom: 35px;
  position: absolute;
  inset: auto 0% 0% auto;
}

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

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

.contact-div {
  background-color: var(--white);
  color: var(--dark-blue);
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-icon {
  z-index: 1;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 40px;
  line-height: 50px;
  position: relative;
}

.contact-link {
  z-index: 1;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  position: relative;
}

.contact-blade {
  position: absolute;
  overflow: hidden;
}

.cta-text-contact-2 {
  border-bottom: 1px solid var(--pale-blue);
  color: #0a144b;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}

.tel-grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: start;
  place-items: center start;
  width: 48%;
  margin-top: 40px;
  display: grid;
}

.contact-info-block-2 {
  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;
}

.section-info-title-2 {
  color: #0a144b;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-link-2 {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s ease-in-out;
  display: inline-block;
}

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

.footer-link-2.black {
  color: var(--black);
  font-size: 24px;
  line-height: 24px;
}

.icon-2 {
  color: #fff;
  background-color: #0a144b;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 26px;
  text-decoration: none;
  display: flex;
}

.section-line-2 {
  background-color: #0a144b;
  width: 30px;
  height: 1px;
  margin-right: 10px;
}

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

.btt {
  width: 0;
  height: 0;
}

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

.firewood-logo {
  width: 150px;
  margin-right: 20px;
}

.firewood-txt {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.get-in-touch {
  width: 100%;
  height: 0;
  margin-top: -100px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.dd-link-div {
  position: relative;
  overflow: hidden;
}

.dd-blade {
  width: 200px;
  margin-top: -50px;
  position: absolute;
  overflow: hidden;
}

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

.timber-img {
  width: 100%;
  max-width: 400px;
  margin-top: 15px;
}

.timber-div {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.slider-div {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.firewood-mob-div {
  background-color: var(--dark-blue);
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  max-width: 420px;
  margin-bottom: 80px;
  margin-right: 10px;
  padding: 15px;
  text-decoration: none;
  transition: all .3s;
  display: none;
  box-shadow: 0 20px 10px -10px #000c;
}

.firewood-mob-div:hover {
  background-color: var(--logs-red);
}

.get-in-touch-text {
  z-index: 2;
  background-color: var(--logs-red);
  color: var(--white);
  letter-spacing: 1px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 140px;
  margin-bottom: 0;
  margin-right: 20px;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  box-shadow: 0 8px 12px #000c;
}

.get-in-touch-text:hover {
  background-color: var(--dark-blue);
}

.firewood-link {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-span {
  font-weight: 500;
}

@media screen and (min-width: 1920px) {
  .whatsapp-chat {
    display: none;
  }

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

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

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

  .drop-downmenu {
    width: 100%;
  }

  .co-logo-link {
    z-index: 50;
    margin-bottom: -60px;
  }

  .nav-container {
    border-radius: 0;
    width: 95%;
  }

  .nav-menu {
    border: 1px solid var(--grey);
    background-color: var(--white);
    margin-top: 70px;
    margin-left: 19px;
    margin-right: 19px;
  }

  .dropdown-list.w--open {
    margin-top: 0;
    position: relative;
  }

  .menu-button {
    background-color: var(--dark-blue);
    color: var(--white);
    margin-left: auto;
  }

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

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

  .navigation-bar, .dd-toggle.nav-link {
    width: 100%;
  }

  .dd-toggle.nav-link:hover {
    color: var(--pale-blue);
  }

  .hero-section {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    height: 650px;
    min-height: auto;
    padding-top: 0;
  }

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

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

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

  .section-info-wrapper.text-center {
    margin-bottom: 30px;
  }

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

  ._2-col-div {
    flex-flow: column;
  }

  ._2-col-div.display-flex {
    flex-direction: column;
  }

  ._2-col-div.rvs {
    flex-flow: column-reverse;
  }

  ._2-col-div._60b {
    margin-bottom: 50px;
  }

  .text-div {
    width: 100%;
  }

  .text-div.blue {
    background-color: var(--dark-blue);
    width: 100%;
  }

  .text-div.blue._100, .text-div._48 {
    width: 100%;
  }

  .text-div.blue-bg {
    background-color: var(--dark-blue);
    width: 100%;
  }

  .text-div.red {
    width: 100%;
  }

  .h1 {
    font-size: 35px;
  }

  .right-img {
    width: 100%;
    min-height: 450px;
    margin-bottom: 40px;
  }

  .right-img.home, .right-img.tree, .right-img.stump, .right-img.fencing, .right-img.fencing2, .right-img.clear {
    margin-top: 40px;
    margin-bottom: 0;
  }

  ._2-col {
    flex-flow: column;
  }

  ._2-col.display-flex {
    background-image: none;
    flex-direction: column;
  }

  ._2-col.rvs {
    flex-flow: column-reverse;
  }

  ._2-col-section._50t {
    margin-top: 40px;
  }

  ._2-col-section._100t {
    padding-top: 60px;
  }

  ._2-col-section.contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .left-img {
    width: 100%;
    min-height: 450px;
  }

  .left-img.clear, .left-img.clear2, .left-img.commercial {
    width: 100%;
  }

  .h2._50t-40b {
    padding-top: 40px;
  }

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

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

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

  .h3-cta-text {
    font-size: 28px;
    line-height: 36px;
  }

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

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

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

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

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

  .img-div.home {
    background-size: auto;
  }

  .img-div.tree {
    background-position: 50%;
    width: 100%;
  }

  .form {
    margin-top: 10px;
  }

  .live-chat-top-text.block {
    line-height: 22px;
  }

  .whatsapp-block {
    display: flex;
  }

  .chat-section {
    background-color: var(--grey);
  }

  .whatsapp-container:hover {
    background-color: var(--pale-blue);
  }

  .whatsapp-chat {
    margin-right: -50px;
    display: none;
  }

  .livechat-button {
    background-color: var(--dark-blue);
  }

  .livechat-button:hover {
    background-color: var(--pale-blue);
  }

  .spin-lottie {
    width: 60%;
  }

  .co-logo {
    width: 150px;
  }

  .hero-div {
    width: 85%;
    max-width: 100%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
    inset: auto 0% 0%;
  }

  .slider-text {
    font-size: 22px;
    line-height: 32px;
  }

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

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

  .faq-widget {
    margin-bottom: 0;
  }

  .svs-block:hover {
    transform: none;
  }

  .h3-img {
    width: 100%;
    min-height: 300px;
  }

  .form-div, .home-nav {
    width: 100%;
  }

  ._4-box-grid {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: ". ."
                         ". Area";
  }

  .box-div {
    border-right-width: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .box-div._4 {
    padding-left: 20px;
  }

  .box-div._2 {
    border-right-width: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 0;
  }

  .box-div._3 {
    padding-right: 20px;
  }

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

  .areas-map {
    width: 100%;
  }

  .numbered-div {
    margin-bottom: 15px;
  }

  .number-div {
    margin-right: 10px;
  }

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

  .side-line {
    margin-right: 29px;
  }

  .team-block {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
  }

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

  .lightbox-link {
    height: 350px;
  }

  .bottom-line {
    margin-bottom: 29px;
  }

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

  .contact-blade {
    display: none;
  }

  .tel-grid-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    align-content: start;
    place-items: start;
    width: 100%;
    margin-top: 30px;
  }

  .firewood-txt {
    margin-top: -40px;
    font-size: 18px;
    line-height: 18px;
  }

  .get-in-touch {
    margin-top: -140px;
  }

  .dd-blade {
    display: none;
  }

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

  .slider-div {
    padding-bottom: 20px;
  }

  .firewood-mob-div {
    width: 85%;
    max-width: 85%;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .get-in-touch-text {
    margin-top: 120px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 18px;
    line-height: 18px;
  }

  .firewood-link {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .nav-container {
    width: 100%;
    margin-top: 0;
  }

  .nav-menu {
    margin-left: 28px;
    margin-right: 28px;
  }

  .menu-button {
    padding: 10px;
  }

  .navigation-bar {
    position: relative;
  }

  .hero-section {
    height: 650px;
    margin-top: -10px;
  }

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

  .section-info-title.large-text {
    font-size: 24px;
    line-height: 30px;
  }

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

  ._2-col-div.display-flex.flex-reverse {
    flex-direction: column-reverse;
  }

  ._2-col-div._60b {
    margin-bottom: 40px;
  }

  .text-div.blue, .text-div.blue-bg, .text-div.red {
    padding: 30px;
  }

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

  .right-img {
    min-height: 350px;
  }

  .right-img.tree {
    margin-top: 30px;
  }

  ._2-col-section._100t {
    padding-top: 40px;
  }

  ._2-col-section.contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .left-img {
    min-height: 350px;
  }

  .h2 {
    font-size: 30px;
  }

  .h2.white {
    font-size: 24px;
    line-height: 32px;
  }

  .h2._50t-40b {
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .right-img-grid {
    margin-top: 30px;
    margin-bottom: 0;
  }

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

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

  .h3-cta-text {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 34px;
  }

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

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

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

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

  .img-div {
    min-height: 350px;
  }

  .header-contact {
    display: none;
  }

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

  .whatsapp-icon {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
  }

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

  .spin-lottie {
    width: 80%;
  }

  .co-logo {
    width: 120px;
  }

  .left-arrow, .right-arrow {
    width: 40px;
  }

  .hero-div {
    margin-top: 110px;
    margin-bottom: 40px;
    padding: 20px;
  }

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

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

  .svs-img {
    height: 350px;
  }

  .h3-img {
    width: 100%;
    min-height: 250px;
    margin-top: 0;
  }

  .home-nav {
    position: relative;
  }

  .h3.white {
    font-size: 24px;
    line-height: 32px;
  }

  ._4-box-grid {
    grid-template-columns: 1fr;
  }

  .box-div._4, .box-div._2 {
    padding-left: 0;
  }

  .box-div._3 {
    padding-right: 0;
  }

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

  .number-div {
    margin-left: -10px;
  }

  .numbered-container {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .firewood-logo {
    width: 80px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .firewood-txt {
    margin-top: 0;
    line-height: 22px;
  }

  .get-in-touch {
    margin-top: 0;
  }

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

  .timber-img {
    max-width: 450px;
  }

  .firewood-mob-div {
    width: 90%;
    max-width: 90%;
  }

  .get-in-touch-text {
    margin-top: 30px;
    margin-right: 28px;
  }

  .firewood-link {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .co-logo-link {
    margin-bottom: -40px;
    padding: 0 5px 5px;
  }

  .nav-container {
    width: 100%;
  }

  .nav-menu {
    margin-top: 40px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .navbar {
    padding: 10px;
  }

  .hero-section {
    height: 650px;
  }

  .section-info-title.large-text {
    font-size: 22px;
  }

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

  .services-title {
    margin-top: 20px;
  }

  .section-info-wrapper.text-center {
    margin-bottom: 20px;
  }

  .service-btn {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }

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

  ._2-col-div.display-flex.flex-reverse {
    flex-direction: column-reverse;
  }

  ._2-col-div._60b {
    margin-bottom: 30px;
  }

  .text-div.blue, .text-div._100-blue {
    padding: 20px;
  }

  .text-div.blue-bg {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-div._100-lightblue {
    padding: 20px;
  }

  .text-div.red {
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1 {
    font-size: 22px;
    line-height: 30px;
  }

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

  .right-img.home {
    margin-top: 20px;
    margin-bottom: 0;
  }

  ._2-col-section._50t {
    margin-top: 20px;
  }

  ._2-col-section._100t {
    padding-top: 30px;
  }

  ._2-col-section.contact {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .left-img {
    min-height: 250px;
  }

  .h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .h2.white {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 28px;
  }

  .h2._50t-40b {
    margin-bottom: 20px;
    padding-top: 20px;
  }

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

  .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._4, .top-img._1 {
    height: 100%;
  }

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

  .h3-cta-text {
    font-size: 20px;
    line-height: 30px;
  }

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

  .f-col {
    padding-top: 0;
    padding-bottom: 20px;
  }

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

  .footer-social-icon {
    font-size: 25px;
    line-height: 25px;
  }

  .socials {
    justify-content: flex-start;
    align-items: center;
    display: none;
    bottom: 10px;
  }

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

  .img-div {
    min-height: 250px;
  }

  .welcome-div {
    margin-bottom: 10px;
  }

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

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

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

  .form {
    margin-top: 0;
  }

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

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

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

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

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

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

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

  .livechat-button {
    width: 90%;
  }

  .spin-lottie {
    width: 95%;
  }

  .co-logo {
    width: 80px;
  }

  .slider-nav {
    height: 30px;
    font-size: 12px;
    line-height: 18px;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .hero-slide-1 {
    background-position: 35%;
  }

  .hero-slide-2 {
    background-position: 60%;
  }

  .hero-slide-3 {
    background-position: 30%;
  }

  .hero-slide-4 {
    background-position: 50%;
  }

  .hero-div {
    width: 94%;
    margin-top: 100px;
    margin-bottom: 10px;
    padding: 15px;
  }

  .slider-text {
    font-size: 18px;
    line-height: 25px;
  }

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

  .faq-widget {
    margin-top: 10px;
    margin-left: -5px;
  }

  .svs-img {
    height: 150px;
  }

  .svs-img.other {
    background-position: 50% 70%;
  }

  .h3-img {
    min-height: 200px;
  }

  .h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .h3.white {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
  }

  ._4-box-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .box-div._4, .box-div._2 {
    border-top: 1px solid var(--pale-blue);
    margin-top: 20px;
    padding-top: 20px;
    padding-left: 0;
  }

  .box-div._3 {
    border-top: 1px solid var(--pale-blue);
    margin-top: 20px;
    padding-top: 20px;
    padding-right: 0;
  }

  .box-div._0r {
    margin-top: 20px;
  }

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

  .areas-item {
    line-height: 24px;
  }

  .numbered-div {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .number-div {
    width: 55px;
    min-width: 55px;
    height: 55px;
    min-height: 55px;
    margin-top: 0;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .number {
    font-size: 26px;
    line-height: 26px;
  }

  .numbered-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 0;
  }

  .numbered-container {
    padding-top: 12px;
  }

  .white-grid-div {
    margin-bottom: 20px;
    padding: 20px;
  }

  .team-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .lightbox-link {
    height: 250px;
  }

  .contact-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 0;
  }

  .contact-div {
    padding: 20px;
  }

  .contact-icon {
    margin-bottom: 10px;
  }

  .contact-link {
    font-size: 20px;
    line-height: 20px;
  }

  .cta-text-contact-2 {
    font-size: 18px;
    line-height: 28px;
  }

  .tel-grid-2 {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .footer-link-2.black {
    font-size: 20px;
    line-height: 20px;
  }

  .icon-2 {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    margin-right: 5px;
    font-size: 1em;
  }

  .firewood-logo {
    width: 60px;
    margin-bottom: 5px;
  }

  .firewood-logo._2 {
    display: none;
  }

  .firewood-txt {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

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

  .timber-img {
    max-width: 320px;
    margin-top: 10px;
  }

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

  .firewood-mob-div {
    flex-flow: column;
    margin-top: 20px;
    padding: 15px 10px;
    display: flex;
  }

  .get-in-touch-text {
    margin-top: 40px;
    margin-right: 15px;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 22px;
  }
}

#w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d75-3a993035, #w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d7e-3a993035, #w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d87-3a993035 {
  justify-self: start;
}

#w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d8a-3a993035 {
  align-self: center;
}

#w-node-a0894574-2858-94b2-60ae-1a96b9d175d4-d4673b6f, #w-node-a0894574-2858-94b2-60ae-1a96b9d175da-d4673b6f, #w-node-f9aaa2f4-e290-b90e-4527-bf04097708d5-a604a446 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f31b6d6b-e9ee-12a3-5f59-0d6facbfe915-a604a446, #w-node-_2200894e-e21d-3714-678c-61317ce287f5-5491492b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d0605de-e83d-5539-d7a0-edabb69fc5fe-e5b51c58, #w-node-_9d0605de-e83d-5539-d7a0-edabb69fc604-e5b51c58 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_16fd28ea-0d74-c0aa-1bd6-41cc8c094d94-8c094d91 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f9aaa2f4-e290-b90e-4527-bf04097708d5-a604a446, #w-node-_2200894e-e21d-3714-678c-61317ce287f5-5491492b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2a636c0d-10cc-a0b7-a4be-e7e7eea5a6a3-d4673b6f, #w-node-dfd41aa0-2819-5fcf-ceb5-d91e4cc006bf-d4673b6f, #w-node-db5c0feb-cabd-622c-92dc-365d579ffc57-d4673b6f, #w-node-_25de4f94-d22d-cc6a-323b-3385e594e26f-d4673b6f, #w-node-_293f1f2c-f944-8738-ff51-8191954cc231-b0a7e6a0, #w-node-_293f1f2c-f944-8738-ff51-8191954cc237-b0a7e6a0, #w-node-_293f1f2c-f944-8738-ff51-8191954cc23d-b0a7e6a0, #w-node-_293f1f2c-f944-8738-ff51-8191954cc243-b0a7e6a0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_16fd28ea-0d74-c0aa-1bd6-41cc8c094d94-8c094d91 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d74-3a993035 {
    align-self: center;
  }

  #w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d75-3a993035 {
    place-self: stretch stretch;
  }

  #w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d7d-3a993035 {
    align-self: center;
  }

  #w-node-_4f20547d-dc3e-9e8b-17ec-e963309a2d7e-3a993035 {
    place-self: stretch stretch;
  }

  #w-node-_2a636c0d-10cc-a0b7-a4be-e7e7eea5a6a3-d4673b6f, #w-node-dfd41aa0-2819-5fcf-ceb5-d91e4cc006bf-d4673b6f, #w-node-db5c0feb-cabd-622c-92dc-365d579ffc57-d4673b6f, #w-node-_25de4f94-d22d-cc6a-323b-3385e594e26f-d4673b6f, #w-node-_293f1f2c-f944-8738-ff51-8191954cc231-b0a7e6a0, #w-node-_293f1f2c-f944-8738-ff51-8191954cc237-b0a7e6a0, #w-node-_293f1f2c-f944-8738-ff51-8191954cc23d-b0a7e6a0, #w-node-_293f1f2c-f944-8738-ff51-8191954cc243-b0a7e6a0 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@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;
}
@font-face {
  font-family: 'Brands 400';
  src: url('../fonts/Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}