:root {
  --text: #555;
  --transparent: #fff0;
  --black: #011f21;
  --white: white;
  --blue: #0077b6;
  --grey: #f0f0f0;
  --light-grey: #f5f5f5;
  --main-yellow: #ffaf1d;
  --darker-grey: #ddd;
  --link-blue: #3196df;
  --fourth-colour: #ff736a;
}

.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);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.body {
  flex-flow: column;
  display: flex;
}

.section {
  background-color: var(--transparent);
  padding: 120px 60px;
}

.section.footer {
  background-color: var(--black);
  color: var(--white);
  margin-top: auto;
  padding-top: 100px;
  padding-bottom: 40px;
  position: static;
  overflow: hidden;
}

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

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

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

.section.grey-bg {
  background-color: var(--light-grey);
  background-image: url('../images/grey-waves.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.style-guide {
  display: none;
}

.container-1500 {
  z-index: 1;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.navbar {
  background-color: var(--white);
  opacity: 1;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 30px 60px;
  display: flex;
  position: relative;
}

.nav-menu {
  grid-row-gap: 20px;
  flex-flow: wrap-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  display: none;
}

.nav-link {
  color: var(--black);
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: .7;
}

.nav-link.w--current {
  color: var(--main-yellow);
}

.top-banner {
  background-color: var(--light-grey);
  padding: 10px 60px;
}

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

.top-banner-container-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

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

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

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

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

.text-block.large {
  color: var(--black);
  font-size: 19px;
  font-weight: 600;
}

.container-1100 {
  max-width: 1100px;
}

.heading-wrap {
  width: auto;
  margin-bottom: 40px;
}

.heading-wrap.centred {
  text-align: center;
}

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

.h1.pt {
  color: var(--black);
  margin-bottom: 0;
}

.h1.hero {
  color: var(--white);
}

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

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

.h3 {
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
}

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

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

.h5 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}

.h5.small {
  font-size: 22px;
}

.paragraph {
  margin-bottom: 20px;
}

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

.paragraph.small {
  font-size: 13px;
}

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

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

.button-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
}

.button {
  background-color: var(--main-yellow);
  text-align: center;
  border-radius: 5px;
  min-width: 180px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 600;
  transition: opacity .2s;
}

.button:hover {
  opacity: .8;
}

.button.w--current {
  background-color: var(--darker-grey);
  color: var(--light-grey);
}

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

.text-link {
  color: var(--link-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

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

.list-wrap {
  margin-top: 20px;
  margin-bottom: 40px;
}

.list-heading {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
}

.list.custom-bullets {
  list-style-type: square;
}

.list-item {
  padding-top: 7px;
  padding-bottom: 7px;
}

.icon {
  width: 24px;
}

.link-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-block-wrap {
  display: inline-block;
}

.logo {
  width: 220px;
}

.footer-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.bb-block.right {
  text-align: right;
  flex-flow: column;
  padding-left: 0;
  display: flex;
}

.bb-block.menu {
  border-right: 1px none var(--white);
  text-align: right;
  padding-right: 0;
}

.bb-block.contact {
  border-right: 1px none var(--white);
  text-align: left;
  padding-right: 0;
}

.bb-block.bb.form {
  background-color: var(--grey);
  border-radius: 5px;
  width: 40%;
  padding: 30px;
}

.bb-block.bb.copy {
  width: 70%;
  padding-right: 40px;
}

.footer-grid-title-wrap {
  margin-bottom: 20px;
  padding-bottom: 0;
}

.footer-title {
  color: var(--main-yellow);
  font-size: 20px;
  font-weight: 600;
}

.footer-link-wrap {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  display: block;
}

.footer-link {
  color: var(--white);
  align-self: flex-start;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

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

.footer-link.w--current {
  text-decoration: underline;
}

.footer-link.small {
  font-size: 13px;
}

.footer-link.legal {
  display: none;
}

.footer-logo-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0;
  margin-left: 0;
  padding-bottom: 0;
  display: flex;
}

.social-links {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 25px;
  margin-left: 0;
  display: flex;
}

.footer-base {
  border-top: .5px none var(--text);
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  position: relative;
}

.copyright-wrap {
  align-self: center;
}

.sticky-phone-link {
  display: none;
}

.rating-stars-wrap, .rating-stars-wrap.margin-small, .rating-stars-wrap.margin-medium {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.icon-wrapper {
  flex: none;
  align-self: flex-start;
}

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

.form-message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.field-label {
  color: var(--black);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.form_message-success {
  color: #027a48;
  background-color: #ecfdf3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.contact-grid-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.form-message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.error-text {
  color: #e23939;
}

.contact-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.success-text {
  font-weight: 600;
}

.form-field-wrapper {
  position: relative;
}

.contact-details-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.form_message-error {
  color: #b42318;
  background-color: #fef3f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.text-area {
  border: 1px solid var(--white);
  border-radius: 5px;
  min-height: 180px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
}

.text-field {
  border: 1px solid var(--white);
  border-radius: 5px;
  margin-bottom: 0;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 16px;
}

.contact-grid-content-form {
  background-color: var(--grey);
  border-radius: 5px;
  padding: 30px;
}

.main-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  width: 100%;
}

.page-titles {
  background-color: var(--grey);
  background-image: url('../images/stacked-grey-waves.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 100px 60px;
  display: block;
}

.breadbrumbs-text {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}

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

.breadcrumbs-current {
  color: var(--black);
  font-weight: 500;
  text-decoration: underline;
}

.main-content-grid {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-image {
  background-color: var(--transparent);
  object-fit: fill;
  border-radius: 0;
  height: auto;
}

.grid-image.about.inline {
  display: none;
}

.faq-accordion {
  border: 1px none var(--grey);
  background-color: var(--white);
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.faq-question {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  background-color: var(--grey);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.faq-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  margin-top: 60px;
  display: grid;
}

.faq-icon-wrapper {
  align-self: flex-start;
  width: 2rem;
  display: flex;
}

.faq-answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.spacer {
  height: 40px;
}

.container-900 {
  max-width: 900px;
}

.social-link {
  transition: opacity .2s;
}

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

.margin-medium {
  margin: 2rem;
}

.margin-small {
  margin: 1.5rem;
}

.phone-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--text);
  margin-top: 0;
  text-decoration: none;
  display: flex;
}

.encoded-ea-2 {
  display: none;
}

.sb-image {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

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

.logo-wrap {
  margin-right: 20px;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav-quote-button-wrap {
  margin-left: 20px;
}

.nav-quote-button-wrap.mobile {
  display: none;
}

.nav-quote-button-wrap.desktop {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-nav-logo {
  width: 220px;
  margin-top: 0;
}

.logo-link.w--current {
  flex: none;
  text-decoration: none;
}

.back-to-top-btn {
  background-color: var(--transparent);
  opacity: 1;
  color: var(--white);
  border-radius: 0%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  margin-right: 60px;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
  position: fixed;
  inset: auto 0 0% auto;
}

.back-to-top-btn:hover {
  opacity: .8;
}

.legal-link-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ps-logo {
  width: 24px;
}

.ps-link._1 {
  display: none;
}

.text-link-2 {
  color: var(--link-blue);
  font-weight: 600;
  transition: all .2s;
}

.text-link-2:hover {
  color: #555;
}

.h6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}

.icon-2 {
  color: var(--black);
  width: 24px;
}

.billboard-container {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.billboard {
  background-color: #f5f5f5;
  background-image: linear-gradient(#0009, #0009), url('../images/switchboard-wiring-electrician-canberra.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 150px 60px;
  display: flex;
}

.text-field-2 {
  background-color: var(--white);
  border: 1px solid #fff;
  border-radius: 5px;
  margin-bottom: 0;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 16px;
}

.bb-form {
  margin-top: 30px;
}

.text-area-2 {
  background-color: var(--white);
  border: 1px solid #fff;
  border-radius: 5px;
  min-height: 150px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
}

.bb-flex-container {
  grid-column-gap: 0%;
  grid-row-gap: 0%;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

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

.desktop-nav-section {
  background-color: var(--darker-grey);
  padding: 0 60px;
}

.dt-nav-button {
  border-top: 5px solid var(--darker-grey);
  border-bottom: 5px solid var(--darker-grey);
  background-color: var(--darker-grey);
  color: var(--black);
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 10px 5px;
  font-weight: 600;
  transition: all .2s;
}

.dt-nav-button:hover {
  border-top-color: var(--grey);
  border-bottom-color: var(--grey);
  background-color: var(--grey);
  color: var(--text);
}

.dt-nav-button.w--current {
  border-top-color: var(--main-yellow);
  border-bottom-color: var(--grey);
  background-color: var(--grey);
}

.desktop-nav-container {
  z-index: 1;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  border-right: 1px solid var(--white);
  border-left: 1px solid var(--white);
  background-color: var(--white);
  justify-content: space-between;
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.nav-ph-link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.top-banner-wrap {
  margin-right: auto;
}

.top-banner-text {
  color: var(--black);
  font-size: 19px;
  font-weight: 600;
}

.services-grid {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: -120px;
  padding-top: 0;
  display: grid;
}

.service-card {
  border: 0px none var(--transparent);
  background-color: var(--grey);
  color: var(--text);
  border-radius: 5px;
  flex-flow: column;
  padding: 30px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-grid-icon-wrap {
  margin-bottom: 20px;
}

.service-icon {
  width: 64px;
}

.view-service-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.service-grid-section {
  background-color: var(--transparent);
  padding: 60px 60px 120px;
}

.map {
  background-color: var(--light-grey);
  border-radius: 5px;
  height: 300px;
  margin-bottom: 40px;
}

.map.contact-page {
  margin-top: 40px;
}

.google-map {
  border-radius: 5px;
  height: 300px;
}

.trading-hours-wrap {
  max-width: 500px;
  margin-top: -10px;
  margin-bottom: 20px;
}

.business-hours-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 2px solid #f0f1f5;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  padding-top: 5px;
  padding-bottom: 5px;
}

.service-info {
  background-color: var(--white);
  border-radius: 5px;
  min-height: 280px;
  padding: 30px 30px 10px;
  display: block;
}

.service-info-title {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-cards-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.testimonials-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 70px;
  column-count: 3;
  column-rule-style: none;
  column-rule-width: 0px;
  flex-flow: wrap;
  justify-content: flex-start;
  column-gap: 30px;
  margin-top: 0;
  display: block;
}

.testimonial {
  background-color: var(--grey);
  border: 1px #40a4ef;
  border-radius: 5px;
  flex-direction: column;
  flex: 0 auto;
  align-self: flex-start;
  width: auto;
  height: auto;
  margin-bottom: 30px;
  padding: 30px;
  text-decoration: none;
  display: block;
  overflow: auto;
}

.testimonial:hover {
  border-style: none;
  border-color: #40a4ef;
}

.quotes-wrap {
  background-color: #0000;
  border: 1px #40a4ef;
  border-radius: 0%;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
}

.quote-icon {
  opacity: .5;
  width: 64px;
  height: 64px;
  margin-left: -10px;
  padding-left: 0;
}

._5-stars {
  width: 80px;
  margin-bottom: 10px;
}

.google-5-stars {
  width: 130px;
}

.google-badge {
  margin-top: 30px;
}

.testimonial-slider-left {
  justify-content: center;
  align-items: center;
  width: 40px;
  transition: opacity .2s;
  display: flex;
  left: -50px;
}

.testimonial-slider-left:hover {
  opacity: .8;
}

.testimonial-slider-left:focus-visible, .testimonial-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slide-nav {
  display: none;
  inset: auto 0% -15%;
}

.testimonial-slider-right {
  justify-content: center;
  align-items: center;
  width: 40px;
  transition: opacity .2s;
  display: flex;
  right: -50px;
}

.testimonial-slider-right:hover {
  opacity: .8;
}

.testimonial-slider-right:focus-visible, .testimonial-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed {
  color: #1a1b1f;
}

.container-1260 {
  flex: 1;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.heading-wrap-2 {
  margin-bottom: 10px;
}

.testimonial-slide-wrapper {
  max-width: 31%;
  margin-right: 4%;
}

.h3-fbs {
  color: #272727;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-slider {
  background-color: #0000;
  max-width: none;
  height: auto;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider-wrap {
  margin-left: 40px;
  margin-right: 40px;
}

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

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

  .navbar {
    height: auto;
    padding: 20px 40px;
    position: relative;
  }

  .nav-menu {
    background-color: var(--black);
    padding-top: 40px;
    padding-bottom: 60px;
    display: flex;
  }

  .menu-button {
    padding: 10px;
  }

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

  .menu-button-icon {
    color: var(--black);
    font-size: 40px;
  }

  .nav-link {
    color: var(--white);
    text-align: left;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
  }

  .nav-link.w--current {
    color: var(--main-yellow);
  }

  .top-banner {
    padding: 10px 40px;
  }

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

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

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

  .text-block.large {
    font-size: 21px;
  }

  .heading-wrap.centred {
    text-align: left;
  }

  .h1 {
    font-size: 52px;
  }

  .h2 {
    font-size: 42px;
  }

  .h3 {
    font-size: 32px;
  }

  .h4 {
    font-size: 26px;
  }

  .h5 {
    font-size: 24px;
  }

  .paragraph {
    font-size: 18px;
  }

  .paragraph.small {
    font-size: 14px;
  }

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

  .paragraph.large {
    font-size: 21px;
  }

  .button {
    width: auto;
    min-width: 220px;
    font-size: 18px;
  }

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

  .list-heading {
    font-size: 24px;
  }

  .list-item {
    font-size: 18px;
  }

  .icon {
    width: 32px;
  }

  .icon.c-page, .icon.footer {
    width: 24px;
  }

  .logo {
    width: 220px;
  }

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

  .bb-block.right {
    text-align: left;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .bb-block.main-content-image {
    height: auto;
  }

  .bb-block.menu, .bb-block.contact {
    text-align: left;
    border-right-style: none;
    padding-right: 0;
  }

  .bb-block.bb.form {
    display: none;
  }

  .bb-block.bb.copy {
    width: auto;
    padding-right: 0;
  }

  .footer-grid-title-wrap {
    margin-bottom: 20px;
  }

  .footer-title {
    font-size: 24px;
  }

  .footer-link-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .footer-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
  }

  .footer-link.small {
    font-size: 18px;
  }

  .footer-link.legal {
    display: none;
  }

  .footer-logo-wrap {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    margin-left: 0;
  }

  .social-links {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: 0;
  }

  .footer-base {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .copyright-wrap {
    align-self: flex-start;
    margin-top: 20px;
  }

  .rating-stars-wrap {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-auto-flow: row;
    min-height: auto;
  }

  .field-label, .text-area, .text-field {
    font-size: 18px;
  }

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

  .page-titles {
    padding: 100px 40px;
  }

  .grid-image {
    margin-bottom: 50px;
  }

  .grid-image.about.side {
    display: none;
  }

  .grid-image.about.inline {
    margin-bottom: 60px;
    display: block;
  }

  .phone-link {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .encoded-ea {
    display: none;
  }

  .encoded-ea-2 {
    display: block;
  }

  .nav-quote-button-wrap.mobile {
    margin-top: 20px;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
    display: block;
  }

  .nav-quote-button-wrap.desktop {
    display: none;
  }

  .top-nav-logo {
    margin-top: 0;
  }

  .back-to-top-btn {
    margin-bottom: 30px;
    margin-right: 40px;
  }

  .legal-link-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    order: -1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .ps-logo {
    width: 32px;
  }

  .ps-link._1 {
    margin-top: 10px;
    display: none;
  }

  .ps-link._2 {
    margin-top: 10px;
  }

  .text-link-2 {
    font-size: 18px;
  }

  .h6 {
    font-size: 24px;
  }

  .icon-2 {
    width: 20px;
  }

  .billboard {
    padding: 150px 40px;
  }

  .text-field-2, .text-area-2 {
    font-size: 18px;
  }

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

  .desktop-nav-section {
    padding: 100px 40px;
    display: none;
  }

  .top-banner-text {
    font-size: 18px;
  }

  .services-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    margin-top: -100px;
  }

  .service-card:hover {
    border-color: var(--grey);
    transform: none;
  }

  .service-grid-section {
    padding: 40px 40px 100px;
  }

  .service-cards-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-wrap {
    grid-row-gap: 40px;
    flex-flow: column wrap;
    display: flex;
  }

  .testimonial {
    width: 100%;
    margin-bottom: 0;
  }

  .testimonial-slider-left {
    left: -20px;
  }

  .testimonial-slide-nav {
    bottom: -8%;
  }

  .testimonial-slider-right {
    right: -20px;
  }

  .heading-wrap-2 {
    margin-bottom: 0;
  }

  .h3-fbs {
    font-size: 40px;
  }

  .testimonial-slider-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

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

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

  .navbar {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-menu {
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .menu-button {
    padding: 5px;
  }

  .nav-link {
    padding-left: 30px;
    padding-right: 30px;
  }

  .top-banner {
    padding: 10px 30px;
  }

  .text-block.large {
    font-size: 20px;
  }

  .h1 {
    font-size: 42px;
  }

  .h2 {
    font-size: 32px;
  }

  .h3 {
    font-size: 27px;
  }

  .h4 {
    font-size: 24px;
  }

  .h5 {
    font-size: 22px;
  }

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

  .list-heading {
    font-size: 22px;
  }

  .logo {
    width: 220px;
  }

  .bb-block.main-content-image {
    height: auto;
  }

  .footer-logo-wrap {
    margin-bottom: 0;
  }

  .footer-base {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    align-items: flex-start;
  }

  .copyright-wrap {
    align-self: flex-start;
  }

  .rating-stars-wrap {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .page-titles {
    padding: 60px 30px;
  }

  .grid-image.about.inline {
    margin-bottom: 50px;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-icon-wrapper {
    width: 1.75rem;
  }

  .faq-answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .nav-quote-button-wrap.mobile {
    padding-left: 30px;
    padding-right: 30px;
  }

  .top-nav-logo {
    margin-top: 0;
  }

  .back-to-top-btn {
    margin-bottom: 25px;
    margin-right: 20px;
  }

  .h6 {
    font-size: 22px;
  }

  .billboard {
    padding: 150px 30px;
  }

  .desktop-nav-section {
    padding: 80px 30px;
  }

  .dt-nav-button {
    border-bottom-style: solid;
  }

  .top-banner-wrap {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .service-grid-section {
    padding: 30px;
  }

  .map.contact-page {
    display: none;
  }

  .service-info {
    min-height: auto;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 2%;
  }

  .h3-fbs {
    font-size: 35px;
  }

  .testimonial-slider {
    margin-top: 30px;
  }

  .mask {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

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

  .section.footer {
    padding-top: 60px;
    padding-bottom: 20px;
    position: relative;
  }

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

  .nav-menu {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .menu-button-icon {
    font-size: 36px;
  }

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
  }

  .top-banner {
    padding: 10px 20px;
  }

  .text-block.small {
    padding: 0;
  }

  .text-block.small.sticky-link {
    color: var(--white);
    font-size: 15px;
  }

  .h1 {
    font-size: 38px;
  }

  .h2 {
    font-size: 30px;
  }

  .h3 {
    font-size: 26px;
  }

  .h4 {
    font-size: 22px;
  }

  .button-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
  }

  .button {
    width: 100%;
  }

  .list {
    padding-left: 30px;
  }

  .logo {
    width: 220px;
  }

  .bb-block.main-content-image {
    height: auto;
  }

  .sticky-phone-link {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    position: sticky;
    inset: auto 0% 0%;
  }

  .sticky-phone-link.top-shadow-box {
    z-index: 1000;
    background-color: var(--main-yellow);
    padding: 0;
  }

  .sticky-phone-link-container {
    background-color: var(--black);
    text-align: center;
    width: 50%;
    padding: 20px 10px;
  }

  .sticky-phone-link-container.number {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    background-color: var(--main-yellow);
    color: var(--white);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .rating-stars-wrap {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .contact-grid-content-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-titles {
    padding: 40px 20px;
  }

  .grid-image.about.inline {
    margin-bottom: 40px;
  }

  .nav-quote-button-wrap.mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-nav-logo {
    width: 200px;
    margin-top: 0;
  }

  .back-to-top-btn {
    margin-bottom: 85px;
  }

  .billboard {
    padding: 100px 20px;
  }

  .desktop-nav-section {
    padding: 60px 20px;
  }

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

  .service-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-grid-section {
    padding: 60px 20px;
  }

  .map, .google-map {
    height: 350px;
  }

  .business-hours-grid {
    grid-template-columns: 1.25fr;
    padding-top: 5px;
  }

  .service-info {
    padding: 20px 20px 0;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-slider-left {
    width: 25px;
    left: -10px;
  }

  .testimonial-slide-nav {
    bottom: auto;
  }

  .testimonial-slider-right {
    width: 25px;
    right: -10px;
  }

  .slider-arrow-embed {
    width: 32px;
  }

  .arrow-wrapper {
    margin-right: 0;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 2%;
  }

  .h3-fbs {
    font-size: 35px;
  }

  .testimonial-slider {
    margin-top: 30px;
  }
}

#w-node-_90fb5bfa-2e70-053b-f158-d2544ce45da0-35a4bcc0 {
  align-self: center;
}

#w-node-_90fb5bfa-2e70-053b-f158-d2544ce45db3-35a4bcc0 {
  justify-self: start;
}

#w-node-b9add024-c46e-69ab-bf6c-f4884e025475-35a4bcc0, #w-node-aace0600-b9bb-42cd-6680-669719a9805b-19a98042, #w-node-_0045c4d6-7fc8-6de6-f784-429aa66df77e-19a98042 {
  align-self: start;
}

#w-node-aace0600-b9bb-42cd-6680-669719a98045-19a98042 {
  justify-self: start;
}

#w-node-eb5b93dd-91bf-bb21-20d8-d5683cf429c5-19a98042, #w-node-_2c25889c-b1b7-8586-6b79-d80248aa05b0-19a98042 {
  justify-self: end;
}

#w-node-_39cbea93-4c6b-5a6d-1dd3-ab064d1fa01e-35a4bcc1 {
  align-self: center;
}

#w-node-_3bc68877-8a43-1e2a-61c4-f99517c19c4c-35a4bcc1 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-35a4bcc2 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-35a4bcc2 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-35a4bcc5 {
  align-self: center;
}

#w-node-_1620438c-5b20-ac11-e581-3ba7e7d93fcd-35a4bcc5, #w-node-_0e9bf66e-ede0-d980-6236-ccf96287a764-35a4bcc5 {
  align-self: start;
}

#w-node-_0e9bf66e-ede0-d980-6236-ccf96287a783-35a4bcc5 {
  justify-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-35a4bcc6, #w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-35a4bcc7 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-35a4bcc7 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-35a4bcc8 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-35a4bcc8 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-35a4bcc9 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-35a4bcc9 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-03954781 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-03954781 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-3e63eb6f {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-3e63eb6f {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-130fe6f2 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-130fe6f2 {
  align-self: start;
}

#w-node-_2bfa0bb2-6719-1085-5e66-e00aa7e61af1-49d96858 {
  align-self: center;
}

#w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe07-49d96858 {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-b9add024-c46e-69ab-bf6c-f4884e025485-35a4bcc0 {
    order: -9999;
  }

  #w-node-aace0600-b9bb-42cd-6680-669719a9805b-19a98042 {
    align-self: start;
  }

  #w-node-aace0600-b9bb-42cd-6680-669719a98045-19a98042 {
    order: 9999;
    justify-self: start;
  }

  #w-node-eb5b93dd-91bf-bb21-20d8-d5683cf429c5-19a98042, #w-node-_2c25889c-b1b7-8586-6b79-d80248aa05b0-19a98042 {
    justify-self: start;
  }

  #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-35a4bcc2, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-03954781, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-3e63eb6f, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-130fe6f2, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-49d96858 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-35a4bcc2, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-03954781, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-3e63eb6f, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-130fe6f2, #w-node-a62bce9c-bdc1-c3df-a49b-eb5a695fbe17-49d96858 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


