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

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

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

:root {
  --text-grey: #555;
  --light-grey: #eee;
  --black: black;
  --white: white;
  --red: #ff2e00;
  --gold: #fc0;
  --dark-orange: #ff9300;
  --grey: #ddd;
  --ps-blue: #1868b7;
}

.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: var(--text-grey);
  flex-direction: column;
  font-family: Work Sans, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  display: flex;
}

.section {
  padding: 120px 60px;
}

.section.slider-gallery {
  background-color: #dddddd61;
  display: block;
}

.section.instagram {
  background-color: var(--light-grey);
  display: none;
}

.section.top-stroke {
  border-top: 5px solid var(--light-grey);
}

.container-1300 {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph {
  max-width: none;
  margin-bottom: 20px;
}

.paragraph.no-bottom-margin {
  margin-bottom: 0;
}

.paragraph.larger {
  color: var(--black);
  font-size: 22px;
  font-weight: 600;
}

.h2 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
}

.h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
}

.h3.no-bottom-margin {
  margin-bottom: 0;
}

.h4 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

.h4.small-bottom-margin {
  margin-bottom: 10px;
}

.h4.no-bottom-margin {
  margin-bottom: 0;
}

.text-block.large {
  color: var(--black);
  align-items: center;
  font-size: 25px;
  font-weight: 600;
  display: flex;
}

.text-block.large.white {
  color: var(--white);
}

.text-block.small {
  font-size: 13px;
}

.text-block.tabs {
  font-weight: 600;
}

.text-block.medium {
  color: var(--black);
  align-items: center;
  font-size: 19px;
  font-weight: 600;
  display: flex;
}

.button-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
}

.button {
  background-color: var(--red);
  text-align: center;
  border-radius: 3px;
  padding: 10px 20px;
  font-weight: 600;
  transition: opacity .2s;
}

.button:hover {
  opacity: .75;
}

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

.button.yellow {
  background-color: var(--gold);
  color: var(--black);
}

.text-link {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  transition: color .2s;
}

.text-link:hover {
  color: var(--text-grey);
  text-decoration: underline;
}

.navbar {
  background-color: var(--black);
  padding: 30px 60px 20px;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo {
  width: 130px;
}

.nav-link {
  color: var(--white);
  font-weight: 600;
  transition: color .2s;
}

.nav-link:hover {
  color: #777;
}

.nav-link.w--current {
  color: var(--dark-orange);
}

.nav-menu {
  align-items: center;
  margin-left: auto;
  display: flex;
}

.nav-contact {
  margin-left: 20px;
}

.nav-cta {
  background-color: var(--red);
  background-image: linear-gradient(96deg, var(--red), #f0ff11);
  color: var(--black);
  text-align: center;
  border-radius: 3px;
  padding: 12px 20px;
  font-weight: 600;
  transition: color .2s, background-color .2s;
}

.nav-cta:hover {
  background-image: linear-gradient(to bottom, var(--red), var(--red));
  opacity: 1;
  color: var(--white);
}

.nav-cta.w--current {
  color: #c52626;
  background-image: none;
}

.footer {
  background-color: #f9f9f9;
  margin-top: auto;
  padding: 120px 60px 40px;
}

.footer-container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.footer-content {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-links-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-links-block.right {
  align-items: flex-end;
}

.footer-link {
  color: var(--text-grey);
  margin-top: 10px;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: .7;
  color: #1a1b1fbf;
}

.footer-link.w--current {
  color: var(--dark-orange);
}

.footer-divider {
  background-color: var(--grey);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.footer-copyright {
  color: var(--text-grey);
  margin-left: 0;
  margin-right: auto;
}

.logo-footer {
  width: 130px;
}

.container-contact {
  grid-column-gap: 50px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.copy-block, .form-block {
  width: 50%;
}

.form-block-wrap {
  margin-top: 20px;
}

.text-field {
  border: 1px solid var(--black);
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 30px 20px;
  font-size: 17px;
}

.form-button {
  background-color: var(--gold);
  color: var(--black);
  text-align: center;
  border-radius: 3px;
  margin-top: 30px;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 600;
  transition: opacity .2s;
}

.form-button:hover {
  opacity: .75;
}

.text-area {
  border: 1px solid #000;
  border-radius: 3px;
  min-height: 300px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 17px;
}

.phone-link-wrap {
  margin-bottom: 20px;
}

.phone-link {
  text-decoration: none;
}

.fa-icn {
  color: var(--gold);
  margin-right: 5px;
  font-family: "Fa solid 900", sans-serif;
}

.form-block-2 {
  margin-bottom: 0;
}

.page-titles-container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.page-titles-section {
  background-color: var(--black);
  padding: 90px 60px;
}

.h1-page-titles {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
}

.h1-page-titles.black {
  color: var(--black);
}

.ig-section-copy {
  width: 50%;
}

.container-instagram {
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  max-width: 1500px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.instagram-feed {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 50%;
  display: grid;
}

.white-box {
  background-color: var(--white);
  height: 200px;
}

.top-banner {
  background-color: var(--black);
  padding: 0 60px;
}

.top-banner-container {
  border-bottom: 1px none var(--text-grey);
  justify-content: flex-end;
  align-items: center;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}

.tb-ph-link {
  text-decoration: none;
}

.tb-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.billboard {
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 90px 60px 150px;
  display: flex;
}

.bb-container {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bb-copy-wrap, .bb-img-wrap {
  width: 50%;
}

.bb-sub-copy {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

.bb-img {
  background-color: #0000;
  height: auto;
}

.footer-bus-details {
  grid-column-gap: 0px;
  grid-row-gap: 5px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.fa-icn-footer {
  color: var(--dark-orange);
  font-family: "Fa solid 900", sans-serif;
}

.bold {
  color: var(--black);
  font-weight: 600;
}

.ps-link {
  margin-left: 20px;
  transition: opacity .2s;
  display: none;
}

.ps-link:hover {
  opacity: .8;
}

.ps-logo {
  width: 30px;
}

.ph-txt-link {
  color: var(--text-grey);
  text-decoration: none;
}

.google-map {
  margin-top: 40px;
}

.google-map.mobile {
  display: none;
}

.map {
  height: 285px;
}

.container-900 {
  max-width: 900px;
  margin-left: 0;
  margin-right: auto;
}

.features-image {
  object-fit: cover;
  width: 400px;
  height: auto;
  margin-right: 0;
}

.tabs {
  display: flex;
}

.tabs-menu {
  grid-row-gap: 10px;
  flex-direction: column;
  width: 25%;
  margin-right: 4%;
  display: flex;
}

.tabs-content {
  width: 100%;
}

.tab-link {
  background-color: #0000001a;
  border-radius: 3px;
  padding: 10px 20px;
  transition: background-color .2s;
}

.tab-link:hover {
  background-color: #0000002b;
}

.tab-link.w--current {
  background-color: #00000059;
  padding: 10px 20px;
}

.tab-pane {
  width: 100%;
}

.tab-content {
  grid-column-gap: 5%;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tab-image {
  background-color: var(--white);
  background-image: url('../images/custom-preview.jpeg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: stretch;
  width: 40%;
}

.tab-copy {
  width: 60%;
}

.project-simple-link {
  background-color: var(--black);
  color: var(--white);
  padding: 3px;
  text-decoration: none;
  transition: background-color .2s;
}

.project-simple-link:hover {
  background-color: var(--ps-blue);
}

.ps {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.heading-wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.containers-grid {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 80px;
}

.grid-image-wrap {
  background-color: #0000;
  height: 300px;
  margin-bottom: 0;
  padding: 0;
}

.grid-block {
  border: 3px none var(--light-grey);
  background-color: var(--white);
  padding: 0;
}

.grid-copy {
  background-color: #0000;
  border-left: 5px #fc03;
  margin-top: 30px;
  padding: 0;
}

.gallery-mask {
  width: 33%;
  overflow: visible;
}

.slider-gallery-padding {
  padding-left: 0%;
  padding-right: 5%;
}

.gallery-arrow-left {
  background-color: var(--gold);
  color: #000;
  border: 1px #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 4rem 0% auto;
}

.spacer {
  width: 100%;
  padding-bottom: 3rem;
}

.gallery-slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-bottom: 5rem;
  position: relative;
}

.slider-padding-section-large {
  padding-top: 0;
  padding-bottom: 0;
}

.slider-container-large {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.gallery-arrow-right {
  background-color: var(--gold);
  color: #000;
  border: 1px #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  inset: auto 0% 0% auto;
}

.gallery-slide {
  padding-right: 2rem;
}

.gallery-image-wrap {
  background-color: var(--white);
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.gallery-lightbox-link {
  width: 100%;
}

.gallery-arrow-icon {
  color: var(--black);
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.slider-gallery-wrap {
  background-color: #0000;
  overflow: hidden;
}

.slider-gallery-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.gallery-slider-pagination {
  color: var(--text-grey);
  height: 1.75rem;
  font-size: .5rem;
  inset: auto auto 0% 0%;
}

.slider-gallery-heading-wrap {
  width: 100%;
  max-width: 48rem;
}

.grid-image {
  object-fit: scale-down;
  width: 100%;
  height: 100%;
}

.feature-img-wrap {
  width: 30%;
  margin-right: 0;
}

.features-right {
  grid-row-gap: 30px;
  flex-direction: column;
  max-width: 50%;
  display: flex;
}

.feature-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.feature-block-copy-wrap {
  width: auto;
}

.bb-containers {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.custom-tabs-container {
  margin-top: 80px;
}

.learn-more-link {
  color: var(--black);
  margin-top: 10px;
  text-decoration: none;
  transition: opacity .2s;
}

.learn-more-link:hover {
  opacity: .7;
}

.lm-text {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}

.fa-arrow {
  font-family: "Fa solid 900", sans-serif;
}

.flex-container {
  grid-column-gap: 50px;
  display: flex;
}

.flex-container.centred {
  align-items: center;
}

.flex-container-copy {
  width: 50%;
  max-width: none;
  margin-left: 0;
  margin-right: auto;
}

.flex-container-image {
  background-color: #0000;
  width: 50%;
}

.flex-container-image.custom {
  background-color: #0000;
}

.flex-image {
  width: 100%;
}

.custom-list-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.custom-list-item {
  align-items: center;
  display: flex;
}

.cl-icon {
  width: 30px;
}

.fa-list-check {
  color: var(--dark-orange);
  font-family: "Fa 400", sans-serif;
}

.about-image {
  background-color: #0000;
  background-image: url('../images/truck.jpg');
  background-position: 50% 80%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 600px;
}

.hw-stroke {
  background-color: var(--gold);
  border-radius: 0;
  width: 150px;
  height: 5px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.legal-copy {
  width: auto;
  max-width: none;
  margin: 60px auto 0 0;
}

.title {
  color: #040100;
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.paragraph-2 {
  color: #555;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.paragraph-2.bold {
  color: #272727;
  font-weight: 700;
}

.h3-2 {
  color: #272727;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section.slider-gallery {
    padding-left: 60px;
    padding-right: 60px;
  }

  .paragraph {
    font-size: 19px;
  }

  .paragraph.larger {
    font-size: 22px;
  }

  .h4 {
    font-size: 35px;
  }

  .text-block {
    font-size: 19px;
  }

  .text-block.small {
    font-size: 15px;
  }

  .text-block.footer-txt {
    font-size: 17px;
  }

  .button, .text-link {
    font-size: 19px;
  }

  .navbar {
    padding-left: 60px;
    padding-right: 40px;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
  }

  .nav-menu {
    background-color: var(--black);
    margin-left: 0;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }

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

  .nav-contact {
    margin-left: 0;
  }

  .nav-cta {
    color: var(--white);
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    transition: none;
  }

  .nav-cta:hover {
    background-image: linear-gradient(96deg, var(--red), #f0ff0f);
  }

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

  .footer {
    padding: 90px 60px 40px;
  }

  .footer-container {
    max-width: none;
  }

  .footer-content {
    grid-row-gap: 40px;
    flex-flow: column wrap;
  }

  .footer-links-block.right {
    align-items: flex-start;
  }

  .container-contact {
    grid-column-gap: 30px;
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .copy-block, .form-block {
    width: auto;
  }

  .form-button {
    font-size: 19px;
  }

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

  .container-instagram {
    grid-column-gap: 30px;
  }

  .instagram-feed {
    grid-template-columns: 1fr 1fr;
  }

  .white-box {
    height: 150px;
  }

  .tb-text {
    font-size: 19px;
  }

  .billboard {
    height: auto;
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .bb-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-copy-wrap {
    width: auto;
  }

  .bb-img-wrap {
    order: -1;
    width: 100%;
    height: auto;
  }

  .bb-sub-copy {
    font-size: 22px;
  }

  .bb-img {
    background-position: 60%;
    height: 100%;
  }

  .google-map.mobile {
    margin-top: 0;
    display: block;
  }

  .tabs {
    flex-direction: column;
  }

  .tabs-menu {
    width: auto;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .tab-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-image {
    width: auto;
    height: 250px;
  }

  .tab-copy {
    width: auto;
  }

  .containers-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .grid-image-wrap {
    width: 60%;
    display: flex;
  }

  .grid-copy {
    border-left-style: none;
    padding: 0;
  }

  .gallery-mask {
    width: 50%;
  }

  .spacer {
    padding-bottom: 2rem;
  }

  .slider-padding-section-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .feature-img-wrap {
    width: 50%;
    margin-right: 0;
  }

  .features-right {
    grid-row-gap: 50px;
    max-width: none;
  }

  .lm-text {
    font-size: 19px;
  }

  .flex-container {
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .flex-container-copy {
    width: auto;
  }

  .flex-container-image {
    order: -1;
    width: auto;
    height: auto;
  }

  .about-image {
    background-position: 50% 60%;
    order: -1;
    width: auto;
    height: 600px;
  }

  .legal-copy {
    margin-top: 40px;
    font-size: 19px;
  }

  .paragraph-2 {
    font-size: 18px;
  }

  .h3-2 {
    font-size: 34px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding: 60px 40px;
  }

  .section.slider-gallery {
    padding-left: 40px;
    padding-right: 40px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 30px;
  }

  .h4 {
    font-size: 35px;
  }

  .navbar {
    padding-left: 40px;
    padding-right: 20px;
  }

  .nav-menu {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .brand.w--current {
    padding-left: 0;
  }

  .footer {
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-content {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .footer-links-block.right {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    margin-left: 0;
    font-size: 17px;
    line-height: 1.5;
  }

  .container-contact {
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .copy-block, .form-block {
    width: auto;
  }

  .page-titles-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .h1-page-titles {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .ig-section-copy {
    width: auto;
  }

  .container-instagram {
    flex-direction: column;
    margin-top: 20px;
  }

  .instagram-feed {
    width: auto;
  }

  .white-box {
    height: 200px;
  }

  .top-banner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .top-banner-container {
    justify-content: flex-end;
  }

  .billboard {
    height: auto;
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bb-container {
    flex-direction: column;
  }

  .bb-copy-wrap {
    width: auto;
  }

  .bb-img-wrap {
    order: -1;
    width: 100%;
    height: auto;
  }

  .ps-link {
    margin-top: 20px;
    margin-left: 0;
  }

  .tabs {
    flex-direction: column;
  }

  .tabs-menu {
    margin-bottom: 40px;
    margin-right: 0;
  }

  .tab-content {
    flex-direction: column;
  }

  .tab-image {
    width: 100%;
    height: 300px;
  }

  .tab-copy {
    width: auto;
  }

  .project-simple-link {
    margin-top: 20px;
  }

  .containers-grid {
    margin-top: 40px;
  }

  .grid-image-wrap {
    width: 80%;
  }

  .gallery-mask {
    width: 50%;
  }

  .gallery-arrow-left {
    right: 3.5rem;
  }

  .spacer {
    padding-bottom: 1rem;
  }

  .slider-padding-section-large {
    padding-top: 0;
    padding-bottom: 0;
  }

  .gallery-slide {
    padding-right: 1.5rem;
  }

  .feature-img-wrap {
    width: 60%;
    margin-right: 20px;
  }

  .features-right {
    grid-row-gap: 40px;
  }

  .feature-block {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-block-copy-wrap {
    width: auto;
  }

  .flex-container-image {
    height: auto;
  }

  .about-image {
    height: 500px;
  }

  .h3-2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding: 40px 25px 60px;
  }

  .section.slider-gallery {
    padding-left: 25px;
    padding-right: 25px;
  }

  .paragraph.larger {
    font-size: 22px;
  }

  .h4 {
    font-size: 35px;
  }

  .navbar {
    padding-left: 25px;
    padding-right: 0;
  }

  .nav-menu {
    padding-bottom: 60px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .brand {
    padding-left: 0;
  }

  .menu-button {
    padding-right: 18px;
  }

  .nav-cta {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .footer {
    padding: 60px 25px 25px;
  }

  .footer-container {
    max-width: none;
  }

  .footer-content {
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-links-block {
    margin-top: 40px;
  }

  .footer-links-block.right {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .page-titles-section {
    padding: 40px 25px;
  }

  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .top-banner {
    padding-left: 25px;
    padding-right: 25px;
    display: block;
  }

  .top-banner-container {
    justify-content: center;
  }

  .tb-text {
    font-size: 25px;
  }

  .billboard {
    padding: 10px 25px 80px;
  }

  .bb-img-wrap {
    height: auto;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .tab-content {
    grid-row-gap: 30px;
  }

  .containers-grid {
    grid-row-gap: 30px;
    margin-top: 30px;
  }

  .grid-image-wrap {
    width: auto;
  }

  .gallery-mask {
    width: 100%;
  }

  .gallery-arrow-left {
    width: 2rem;
    height: 2rem;
  }

  .gallery-slider {
    padding-bottom: 3rem;
  }

  .gallery-arrow-right {
    width: 2rem;
    height: 2rem;
  }

  .feature-img-wrap {
    width: auto;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .flex-container-image {
    height: auto;
  }

  .about-image {
    height: 300px;
  }

  .legal-copy {
    margin-top: 30px;
  }
}

#w-node-e2b7384f-bb12-c2bf-eed8-1171d141113d-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d141113e-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d141113f-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d1411140-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d1411141-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d1411142-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d1411143-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d1411144-3bb9904c, #w-node-e2b7384f-bb12-c2bf-eed8-1171d1411145-3bb9904c, #w-node-fed2a36e-5198-ec11-dea9-5cd5871a7bb6-70b9904e, #w-node-_0de572e5-ae0f-bb36-8eb3-46a376a97305-70b9904e, #w-node-_6f18fedf-144f-b05a-18e7-28300f3766f8-70b9904e, #w-node-_6f18fedf-144f-b05a-18e7-28300f3766f9-70b9904e, #w-node-f4638374-70c3-17e6-60e5-d706487d97b2-70b9904e, #w-node-f4638374-70c3-17e6-60e5-d706487d97b3-70b9904e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


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