@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-extrabold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-semibold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --wine: #4b0000;
  --red: #c1121f;
  --white: #f2f2f2;
  --grey: #efefef;
  --white-2: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--wine);
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  line-height: 1.6;
}

.header {
  background-color: var(--red);
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 1.875rem 20px;
  display: flex;
}

.header-logo {
  max-width: 200px;
}

.nav-link {
  color: var(--white);
  letter-spacing: .5px;
  padding-bottom: 0;
  font-weight: 600;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-link.w--current {
  color: var(--white);
  text-decoration: none;
}

.container {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 66.5625rem;
  display: flex;
}

.container.header-wrapper {
  justify-content: space-between;
  align-items: flex-end;
}

.container._2-column {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.container._2-column.centre {
  align-items: center;
}

.container._3-column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container.vertical {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.container.m-width {
  max-width: 800px;
  line-height: 1.5;
}

.container.left-align {
  justify-content: flex-start;
}

.container.left-align.location {
  padding-left: 20px;
  padding-right: 20px;
}

.container.team {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 100px;
  display: grid;
}

.nav-menu {
  align-items: flex-end;
  display: flex;
}

.main-button {
  background-color: var(--wine);
  color: var(--white);
  letter-spacing: .5px;
  padding: .7rem 1.875rem;
  font-weight: 600;
  line-height: 100%;
}

.main-button.header {
  flex: none;
  margin-bottom: -.5rem;
  margin-left: 1.25rem;
}

.main-button.red {
  background-color: var(--red);
}

.section {
  justify-content: center;
  align-items: flex-start;
  padding: 4.6875rem 20px;
  display: flex;
}

.section.red {
  background-color: var(--red);
  color: var(--white);
}

.section.red.single {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}

.section.red.bottom {
  padding-bottom: 9.375rem;
  overflow: hidden;
}

.section.top {
  padding-top: 9.375rem;
}

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

.section.grey.bottom {
  padding-bottom: 9.375rem;
}

.section.grey.bottom.vertical {
  flex-direction: column;
  align-items: center;
}

.section.single {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}

.section.wine {
  background-color: var(--wine);
  color: var(--white);
}

.section.map {
  background-color: var(--grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0;
}

._50-column {
  width: 50%;
}

._50-column.left {
  padding-right: 1.25rem;
}

._50-column.left.padding-l {
  padding-right: 6rem;
}

._50-column.left.centre {
  justify-content: center;
  display: flex;
}

._50-column.right {
  padding-left: 1.25rem;
}

.hero-h1 {
  margin-bottom: 1.5625rem;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.4;
}

.paragraph.bottom {
  margin-bottom: 2.1875rem;
}

.paragraph.section-head {
  text-align: center;
  max-width: 600px;
}

.paragraph.section-head.margin-bottom-m {
  margin-bottom: 4.6875rem;
}

.paragraph.accordion-text {
  margin-bottom: 15px;
}

.body {
  font-size: 1.25rem;
  line-height: 1.3;
}

.home-hero-image {
  width: 48.7vw;
  max-width: none;
  display: inline-block;
}

.stats-box {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.stats-heading {
  color: var(--red);
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.stats-image {
  margin-bottom: 1rem;
}

._2-column {
  grid-row-gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  display: flex;
}

._2-column.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  place-items: start center;
  display: grid;
}

.bottom-margin-m {
  margin-bottom: 4.6875rem;
}

.bottom-margin-m.centre-text {
  text-align: center;
}

.service-wrapper {
  border: 4px solid var(--wine);
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  display: flex;
}

.service-wrapper.last {
  max-height: 675px;
  margin-bottom: 0;
}

.service-logo {
  max-height: 80px;
}

.service-logo.blc {
  max-height: 100%;
}

.service-logo.returned {
  max-height: 85px;
}

.service-logo.rebates {
  max-height: 55px;
}

.service-logo.contracting {
  max-height: 75px;
}

.service-photo {
  height: 420px;
}

.service-detail-wrapper {
  background-color: var(--wine);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 40px;
  line-height: 1.6;
  display: flex;
}

.service-outer-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.large-button {
  background-color: var(--red);
  padding: .5rem 1.875rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 100%;
}

.large-button.header {
  flex: none;
  margin-bottom: -.5rem;
  margin-left: 1.25rem;
}

.large-button.red {
  background-color: var(--red);
}

.service-logo-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 140px;
  padding: 10px 20px;
  display: flex;
}

.large-text {
  font-size: 2.3rem;
  font-weight: 400;
}

.bold-span {
  font-weight: 800;
}

.bottom-margin-s {
  margin-bottom: 25px;
}

.section-paragraph {
  text-align: center;
  max-width: 600px;
}

.fs_accordion-1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs_accordion-1_component.red {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--red);
  color: var(--white);
  place-content: center;
  place-items: center;
  padding: 10px 25px;
}

.feature-text {
  letter-spacing: .5px;
  text-transform: none;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.fs_accordion-1_body {
  background-color: #fff0;
  padding: 1rem 0 0;
}

.accordion-icon {
  color: var(--white);
  width: 50px;
  height: 50px;
}

.fs_accordion-1_header {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  cursor: pointer;
  background-color: #f5f5f500;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 0;
  display: flex;
}

.fs_accordion-1_header:focus-visible, .fs_accordion-1_header[data-wf-focus-visible] {
  outline-offset: 4px;
  outline: 2px solid #9b9b9b;
}

.fs_accordion-1_item {
  width: 100%;
}

.fs_accordion-1_embed {
  margin-bottom: 0;
}

.fs_accordion-1_content {
  overflow: hidden;
}

.paragraph-2 {
  text-transform: none;
  font-size: 22px;
  line-height: 1.3;
}

.testimonial-slider {
  background-color: var(--red);
  flex: 1;
  width: 100%;
}

.testimonial-mask {
  padding-bottom: 12px;
}

.slide-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  height: 100%;
  padding-bottom: 50px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.testimonial-wrapper {
  border: 2px solid var(--white);
  border-radius: 30px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  min-height: 350px;
  padding: 50px;
  display: flex;
}

.testimonial-text {
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.slide-nav {
  font-size: .8rem;
}

.column-image {
  width: 100%;
}

.column-image.small {
  max-width: 300px;
}

.column-image.medium {
  max-width: 400px;
}

.bottom-margin-sm {
  margin-bottom: 50px;
}

.bottom-margin-sm.centre-text {
  text-align: center;
}

.awards-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.award-image.prestige {
  max-height: 120px;
}

.award-image.sfa {
  max-height: 125px;
}

.award-image.badge {
  max-height: 130px;
}

.award-image.large {
  max-height: 110px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-row-1 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.footer-row-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 20px;
  display: grid;
}

.footer-logo {
  max-width: 160px;
}

.bold {
  color: var(--white);
  font-weight: 700;
  line-height: 1.6;
}

.footer-links {
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--white);
  letter-spacing: .5px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.light {
  font-weight: 400;
}

.footer-row-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 75px;
  display: grid;
}

.footer-row-4 {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.footer-image {
  max-height: 50px;
}

.members-text {
  color: var(--white);
  letter-spacing: .5px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.members-text.light {
  font-weight: 400;
}

.medium-text {
  font-size: 1.8rem;
  font-weight: 400;
}

.medium-text.semi-bold {
  font-weight: 600;
}

.medium-text.semi-bold.centre {
  text-align: center;
}

.contact-form {
  background-color: var(--red);
  color: var(--white);
  width: 100%;
  margin-bottom: 0;
  padding: 40px 20px;
}

.contact-form-heading {
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.form-field {
  min-height: 60px;
  font-size: 1.2rem;
}

.form-label {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-text-area {
  min-height: 180px;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.form-button-wrapper {
  justify-content: flex-end;
  margin-top: 25px;
  display: flex;
}

.form-name-wrapper {
  margin-bottom: 20px;
}

.success {
  background-color: var(--red);
  color: var(--white);
}

.form-success-message {
  font-size: 1.5rem;
  font-weight: 600;
}

.error {
  background-color: var(--wine);
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.error.top-margin-m {
  margin-top: 40px;
}

.contact-details {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.address {
  font-size: 1rem;
  font-weight: 600;
}

.contact-link {
  color: var(--wine);
  font-weight: 600;
}

.contact-link.top-margin-s {
  margin-top: 30px;
}

.contact-link.last {
  margin-top: 10px;
}

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

.reviews {
  width: 100%;
}

.feature-image {
  object-fit: cover;
  width: 100%;
  height: 400px;
  margin-bottom: 40px;
}

.post-body {
  width: 100%;
  max-width: 800px;
}

.post-heading {
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
  font-size: 2.4rem;
  font-weight: 600;
}

.post-meta {
  margin-bottom: 10px;
}

.post-body-heading {
  font-size: 2.8rem;
}

.post-list {
  width: 100%;
}

.post-list-item {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.post-list-image {
  margin-bottom: 15px;
}

.post-list-meta {
  margin-bottom: 10px;
  font-size: .9rem;
  font-weight: 300;
}

.post-list-title {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.post-list-excerpt {
  margin-bottom: 20px;
  font-size: .9rem;
}

.post-list-wrapper {
  color: var(--wine);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

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

.faq-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.section-2.hero {
  background-color: #f8f0f0;
}

.container-2 {
  width: 100%;
  max-width: 1200px;
  padding: 100px 30px;
}

._404 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 150px;
  line-height: 1;
}

._404.paragraph {
  font-size: 22px;
  line-height: 1.3;
}

.page-content {
  width: 100%;
}

.page-content h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.page-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 26px;
}

.page-content ul {
  line-height: 1.6;
}

.page-content li {
  margin-bottom: 10px;
}

.footer-contact-details {
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.team-image {
  width: 100%;
}

.team-name {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.7rem;
  }

  .nav-link {
    text-align: center;
    border: 2px solid #420101;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .container.header-wrapper {
    align-items: center;
  }

  .container._2-column.centre.vertical-l {
    flex-direction: column;
  }

  .container._2-column.centre.vertical-l.swap {
    flex-direction: column-reverse;
  }

  .container.left-align.location {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu {
    background-color: var(--wine);
  }

  .main-button.header {
    border: 2px solid var(--white);
    background-color: var(--red);
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section.red.single {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .section.red.bottom {
    padding-bottom: 7rem;
  }

  .section.grey.top {
    padding-top: 7rem;
  }

  .section.grey.bottom {
    padding-bottom: 7rem;
  }

  .section.single {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  ._50-column.left._100-l {
    width: 100%;
    padding-right: 0;
  }

  ._50-column.left.padding-l {
    padding-right: 1.25rem;
  }

  ._50-column.right._100-l {
    width: 100%;
    padding-left: 0;
  }

  ._50-column.right._100-l.hero {
    justify-content: flex-end;
    display: flex;
  }

  .paragraph.bottom {
    margin-bottom: 2rem;
  }

  .paragraph.section-head.margin-bottom-m {
    margin-bottom: 3.5rem;
  }

  .paragraph.accordion-text {
    font-size: 1rem;
  }

  .home-hero-image {
    width: 90%;
    margin-right: -20px;
  }

  .bottom-margin-m {
    margin-bottom: 3.5rem;
  }

  .service-wrapper.last {
    max-height: 630px;
  }

  .service-logo {
    max-height: 75px;
  }

  .service-logo.returned {
    max-height: 81px;
  }

  .service-logo.rebates {
    max-height: 50px;
  }

  .service-logo.contracting {
    max-height: 70px;
  }

  .service-photo {
    height: 350px;
  }

  .service-outer-wrapper {
    max-width: 340px;
  }

  .large-text {
    font-size: 1.8rem;
  }

  .bottom-margin-s {
    margin-bottom: 20px;
  }

  .feature-text {
    font-size: 22px;
  }

  .accordion-icon {
    width: 45px;
    height: 44px;
  }

  .fs_accordion-1_arrow-wrapper {
    flex: none;
  }

  .slide-wrapper {
    flex-direction: column;
  }

  .testimonial-wrapper {
    min-height: 300px;
  }

  .column-image.small {
    max-width: 250px;
  }

  .column-image.medium {
    max-width: 340px;
  }

  .bottom-margin-sm {
    margin-bottom: 40px;
  }

  .awards-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
  }

  .award-image {
    max-height: 90px;
  }

  .award-image.prestige {
    max-height: 100px;
  }

  .award-image.sfa, .award-image.badge {
    max-height: 110px;
  }

  .award-image.large {
    max-height: 80px;
  }

  .footer-row-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    display: flex;
  }

  .bold.footer {
    margin-bottom: 20px;
  }

  .footer-links {
    grid-row-gap: 10px;
  }

  .footer-row-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .footer-image {
    max-height: 40px;
  }

  .nav-button {
    padding: 5px;
    font-size: 3rem;
  }

  .nav-button.w--open {
    background-color: #c8c8c800;
  }

  .medium-text {
    font-size: 1.8rem;
  }

  .feature-image {
    height: 350px;
  }

  .post-heading {
    font-size: 2rem;
  }

  .footer-contact-details {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .team-name {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }

  .header-logo {
    max-width: 180px;
  }

  .container._2-column.centre {
    flex-direction: column;
  }

  .container._2-column.centre.swap {
    flex-direction: column-reverse;
  }

  .container._3-column {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

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

  ._50-column {
    width: 100%;
  }

  ._50-column.left {
    padding-right: 0;
  }

  ._50-column.right {
    padding-left: 0;
  }

  ._50-column.right.centre-s, ._50-column.centre-s {
    justify-content: center;
    display: flex;
  }

  .hero-h1 {
    font-size: 3rem;
  }

  .home-hero-image {
    width: 95%;
  }

  ._2-column.grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .service-wrapper.last {
    height: 450px;
  }

  .service-outer-wrapper {
    max-width: 380px;
    margin-left: 0;
    margin-right: 0;
  }

  .feature-text {
    font-size: 26px;
  }

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

  .slide-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }

  .testimonial-wrapper {
    min-height: 280px;
    padding: 30px;
  }

  .column-image.smaller-s {
    max-width: 420px;
  }

  .award-image.large {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-row-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .footer-image {
    max-height: 50px;
  }

  .medium-text.semi-bold.centre {
    font-size: 1.5rem;
  }

  .contact-form-heading {
    font-size: 2.9rem;
  }

  .feature-image {
    height: 300px;
    margin-bottom: 20px;
  }

  .post-heading {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .post-meta {
    font-size: .9rem;
  }

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

  .container-2 {
    padding: 50px 20px;
  }

  ._404 {
    font-size: 120px;
  }

  ._404.paragraph {
    font-size: 20px;
  }

  .team-name {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 26px;
  }

  .header {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .header-logo {
    max-width: 140px;
  }

  .container._2-column.centre {
    grid-row-gap: 30px;
  }

  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section.red.single {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section.red.bottom {
    padding-bottom: 5rem;
    overflow: hidden;
  }

  .section.grey.top {
    padding-top: 5rem;
  }

  .section.grey.bottom {
    padding-bottom: 5rem;
  }

  .section.single {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .hero-h1 {
    margin-bottom: 1.3rem;
    font-size: 2.2rem;
  }

  .paragraph.bottom {
    margin-bottom: 1.7rem;
  }

  .paragraph.section-head.margin-bottom-m {
    margin-bottom: 2.5rem;
  }

  .home-hero-image {
    width: 100%;
  }

  .stats-heading {
    font-size: 2.2rem;
  }

  ._2-column.bottom-margin-s {
    grid-row-gap: 30px;
  }

  .bottom-margin-m {
    margin-bottom: 2.5rem;
  }

  .service-wrapper.last {
    height: 400px;
  }

  .service-photo {
    height: 330px;
  }

  .service-detail-wrapper {
    height: auto;
  }

  .service-detail-wrapper.last {
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-outer-wrapper {
    max-width: 320px;
    height: auto;
  }

  .large-button {
    font-size: 1.1rem;
  }

  .service-logo-wrapper {
    height: auto;
    min-height: 100px;
  }

  .large-text {
    font-size: 1.6rem;
  }

  .bottom-margin-s {
    margin-bottom: 15px;
  }

  .feature-text {
    font-size: 18px;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
  }

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

  .testimonial-slider {
    flex-direction: row;
  }

  .testimonial-mask, .testimonial-slide {
    height: 100%;
  }

  .slide-wrapper {
    align-items: center;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-wrapper {
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
  }

  .testimonial-text {
    font-size: 1rem;
    font-weight: 600;
  }

  .column-image.small {
    max-width: 190px;
  }

  .column-image.medium {
    max-width: 240px;
  }

  .award-image {
    max-height: 80px;
  }

  .award-image.prestige {
    max-height: 90px;
  }

  .award-image.sfa, .award-image.badge {
    max-height: 100px;
  }

  .award-image.large {
    max-height: 70px;
  }

  .footer-logo {
    max-width: 140px;
  }

  .bold, .bold.footer {
    font-weight: 600;
  }

  .footer-link {
    font-size: 1rem;
    font-weight: 600;
  }

  .footer-row-3 {
    margin-bottom: 50px;
  }

  .members-text {
    font-size: 1.1rem;
    font-weight: 600;
  }

  .icon {
    font-size: 2.5rem;
  }

  .slider-arrow-right {
    margin-right: 0;
    display: none;
  }

  .slider-arrow-left {
    margin-left: 0;
    display: none;
  }

  .medium-text {
    font-size: 1.6rem;
  }

  .medium-text.semi-bold.centre {
    font-size: 1.2rem;
  }

  .contact-form-heading {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .form-field {
    min-height: 50px;
  }

  .form-text-area {
    min-height: 150px;
  }

  .feature-image {
    height: 200px;
  }

  .post-heading {
    font-size: 1.2rem;
  }

  .post-meta {
    font-size: .8rem;
  }

  .container-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  ._404 {
    font-size: 80px;
  }

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

  .team-name {
    font-size: 1rem;
  }
}

#w-node-b6295159-9207-d2df-c6ad-07b8f1e2371c-0ab34f53, #w-node-_5dc1b2c9-e4ad-53f8-5c4a-020df9a75218-0ab34f53, #w-node-_57d800be-d8be-59fd-790d-8c06fa984557-0ab34f53, #w-node-_4585b9d8-cca6-e534-af97-1bc8bf17bdc8-0ab34f53, #w-node-bb35972a-ba16-bf3b-7bb9-565872ac0416-0ab34f53, #w-node-_4a67b978-093b-8110-d3b2-03fc18ea6e63-0ab34f53, #w-node-_587e7bb8-a484-8ca4-9661-a30b87d8acad-0ab34f53, #w-node-bb85ce67-69de-944e-7f65-4d4bc28f606a-0ab34f53, #w-node-_45ab5d2e-b44f-e6e5-f0e9-f5134b4c0137-0ab34f53, #w-node-dab00447-db5d-5bfd-0b6a-cf5de2c9fee1-0ab34f53, #w-node-dc722c7a-8bca-a78e-ad67-e943e632901e-0ab34f53, #w-node-_37b2af4a-150b-7a84-890d-3042fe8ec2f1-fe8ec2ec, #w-node-_37b2af4a-150b-7a84-890d-3042fe8ec2f9-fe8ec2ec, #w-node-_37b2af4a-150b-7a84-890d-3042fe8ec2fe-fe8ec2ec, #w-node-_37b2af4a-150b-7a84-890d-3042fe8ec303-fe8ec2ec, #w-node-_37b2af4a-150b-7a84-890d-3042fe8ec308-fe8ec2ec, #w-node-fadbf301-375f-fdff-b050-a0f4d6968ca6-fe8ec2ec, #w-node-_37b2af4a-150b-7a84-890d-3042fe8ec30e-fe8ec2ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_37b2af4a-150b-7a84-890d-3042fe8ec311-fe8ec2ec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}