@charset "UTF-8";
/* COLORS
=====================================================================*/
/* == to edit the color scheme 
	1: use one of the four sections below
    2: then "activate" the correct swoosh by making it visible and the other not visible, it is the section overlay on the banner image on the home page 
    3: then select the corresponding animated SVG logo in the header (3 spots), Media search "logo", the the header "ash-logo-winter.svg" "summer" "spring" "fall"
    4: you also need to swap out the curvy swoosh under the banner (search for "top") and the curve under the about (search for "curve") ======*/
/* =================== fall orange color scheme start ===================

Add Astrisk then forward slash to select theme, remove it to deslect --> 

$color-season:				#E45E1D;
$color-season--light:		lighten($color-one,10);
$color-season--dark:		darken($color-one,10);
$color-season-btn-hover:  	linear-gradient(180deg,#E45E1D,#FCBE00);
/* =================== fall orange color scheme end===================*/
/* =================== winter blue color scheme start  =================== 

Add Astrisk then forward slash to select theme, remove it to deslect --> 

$color-season:				#2f61a7;
$color-season--light:		lighten($color-one,10);
$color-season--dark:		darken($color-one,10); 
$color-season-btn-hover:  	linear-gradient(180deg,#3062A7,#85B349); */
/*=================== winter blue color scheme end ===================*/
/*=================== spring green color scheme start ===================

Add Astrisk then forward slash to select theme, remove it to deslect --> */
/*=================== spring green color scheme end ===================*/
/*=================== summer yellow color scheme start =================== 

Add Astrisk then forward slash to select theme, remove it to deslect --> 

$color-season:				#fbbd00;
$color-season--light:		lighten($color-one,10);
$color-season--dark:		darken($color-one,10); 
$color-season-btn-hover:  	linear-gradient(180deg,#FCBE00,#E45E1D);*/
/*=================== summer yellow color scheme end ===================*/
/* SHADOWS
=====================================================================*/
/* PREVENT HORIZONTAL SCROLLING
=====================================================================*/
html {
  overflow-x: hidden;
}
/* FONTS
=====================================================================*/
/* Superscript */
sup {
  bottom: 0.4em;
  font-size: 0.6em;
}
/* Fine Print */
.fine-print {
  font-size: 13px;
  line-height: 1.5;
}
li {
  padding-bottom: 10px;
}
/* EFFECTS
=====================================================================*/
/* Drop shadow */
.bxb-box-shadow {
  box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.4);
}
/* Background Blur :: Not Supported in Firefox */
.bxb-backdrop-filter-blur {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
/* CARDS
=====================================================================*/
.bxb-card {
  background: #fff;
  box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.4);
  text-align: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.bxb-card-products img {
  padding: 1em;
}
.bxb-card:hover {
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.bxb-card h2 {
  font-size: 1em;
  margin: 0;
  padding: 0.5em;
}
.bxb-card:hover a {
  text-decoration: none;
}
/* Product cards */
.bxb-product-type-card {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  display: block;
  padding: 20px;
  text-align: center;
}
.bxb-product-type-card:hover {
  border: 1px solid #b7b7b7;
  text-decoration: none;
}
.bxb-product-type-card img {
  max-height: 240px;
  width: auto;
}
/* CUSTOMER TESTIMONIAL RESPONSES
=====================================================================*/
.bxb-testimonial-company-response {
  font-size: 0.9em;
}
.bxb-testimonial-company-response p {
  font-style: italic;
  padding-left: 23px;
}
/* MOBILE FLOATING CALL-TO-ACTION BUTTON
=====================================================================*/
@media (max-width: 768px) {
  .bxb-floating-cta {
    background: black;
    box-sizing: border-box;
    left: 0;
    padding: 8px;
    position: fixed;
    top: 0;
    text-decoration: none;
    transform: translateY(-100%);
    transition: 0.5s;
    width: 100vw;
    z-index: 999999;
  }
  .bxb-cta-fade-in {
    transform: translateY(0);
    transition: 0.5s;
  }
  .bxb-floating-cta a, .bxb-floating-cta a:hover {
    color: #fff !important;
    text-decoration: none;
  }
  .bxb-floating-cta svg {
    fill: #fff;
    height: 1em;
    margin-right: 10px;
    width: 1em;
  }
  .bxb-floating-cta p {
    align-items: center;
    background: #FCBE00;
    display: flex;
    font-size: 15px;
    justify-content: center;
    line-height: 1;
    margin: 0 0 0.65em;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
  }
  @supports (display:grid) {
    .bxb-floating-cta {
      display: grid;
      grid-gap: 0.5em;
      grid-template-columns: 1fr 1fr;
    }
    .bxb-floating-cta p {
      margin: 0;
    }
  }
}
@media (min-width: 769px) {
  .bxb-floating-cta {
    display: none;
  }
}
/* MEDIA QUERIES
=====================================================================*/
@media (max-width: 992px) {
  /* Center images on smaller devices */
  img.alignleft, img.alignright {
    display: block;
    float: none;
    margin: 1em auto;
  }
}
/* WE SERVICE ALL BRANDS
=====================================================================*/
.bxb-brands-logo-wrapper {
  display: block;
  margin: auto;
  max-width: 1100px;
}
.bxb-brands-logo-container {
  text-align: center;
}
.bxb-brands-logo-container img {
  aspect-ratio: 2;
  display: inline-block;
  height: auto;
  margin: 5px;
  max-width: 200px;
  width: 100%;
}
@supports (display:flex) {
  .bxb-brands-logo-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-evenly;
  }
  .bxb-brands-logo-container img {
    display: block;
    margin: 0;
  }
}
/* BANNERS
=====================================================================*/
.bxb-banner-image {
  width: 100%;
  margin-top: 0;
}
.bxb-banner-image .aligncenter {
  margin-bottom: 0;
  margin-top: 0;
}
/* PAGE :: MEET OUR TEAM
=====================================================================*/
/* Styling of employees on team page */
.bxb-employee-team-page-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.bxb-employee-team-page {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border: solid 2px #939393;
  border-radius: 5px;
  margin: 20px 20px 20px 0px;
  margin-top: 10px;
  padding: 0px;
  position: relative;
  max-width: 300px;
  /* set this width depending on how many columns needed */
}
.bxb-employee-team-page img {
  /* aspect-ratio: 2 / 3; ADJUST RATIO TO MATCH CLIENT'S IMAGE RATIO */
  max-width: 100%;
  object-fit: cover;
}
.bxb-employee-team-page h2 {
  margin: 10px 10px 20px 10px;
  /* if text overlaps the review bar, change the bottom margin */
  font-size: 25px;
  font-weight: bold;
  height: 60px;
  text-align: center;
  /* set this height depending if there is white space below review bar */
}
.bxb-employee-team-page p {
  font-size: 20px;
  text-align: center;
  font-weight: normal;
}
.bxb-card__employee--reviews {
  bottom: 0;
  margin: 0px;
  padding: 10px 0px;
  color: #ffffff;
  text-align: center;
  background-color: #939393;
}
.bxb-card__employee--reviews a {
  color: #ffffff;
}
.bxb-employee-review-count, .bxb-employee-review-count a, .bxb-employee-review-count a:hover, .bxb-employee-review-count a:active {
  color: #ffffff !important;
}
.bxb-employee-review-count a:hover {
  font-weight: bold !important;
}
.bxb-employee-team-page .bxb-card__employee--reviews a:first-child {
  color: white;
}
/* PAGE :: PARENT SERVICE PAGES
=====================================================================*/
/* Service links displayed as buttons */
.bxb-parent-service-page-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}
.bxb-parent-service-page-services-list a, .bxb-parent-service-page-services-list a:active, .bxb-parent-service-page-services-list a:hover {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .bxb-parent-service-page-services-list a, .bxb-parent-service-page-services-list a:hover {
    font-size: 16px;
  }
}
/* Remove the 'Customer Reviews' title from individual reviews */
.bxb-parent-service-page-reviews .ptb_loops_wrapper article:first-of-type::before {
  display: none;
}
/* PAGE :: PRODUCTS
=====================================================================*/
.bxb-product-shortcut {
  font-size: 12px;
  text-align: center;
}
.bxb-product-shortcut a:hover {
  text-decoration: none;
}
.bxb-product-shortcut img {
  margin-bottom: 1em;
}
.bxb-card-products img {
  padding: 1em;
  max-height: 300px;
}
@media (max-width: 768px) {
  .bxb-product-shortcut img {
    max-width: 50%;
  }
}
/*added to fix spacing, may need customization depending on font size*/
.bxb-product-type-card h2 {
  line-height: 1;
  font-size: 1.1em;
  height: 40px;
}
.bxb-product-type-card img {
  margin-bottom: 0px;
}
/* PAGE :: REVIEW SYSTEM - FORM CONFIRMATION
=====================================================================*/
/* styles the message that appears after a form is submitted */
.bxb-review__confirmation-container {
  overflow: auto;
}
.bxb-review__confirmation-recap {
  margin: 1em 0;
}
.bxb-review__confirmation-quote {
  font-size: 1.2em;
  font-style: italic;
}
.bxb-review__confirmation-social-media {
  float: left;
  max-width: 25%;
  padding: 1rem 1rem 0;
}
.bxb-review__confirmation-social-media img {
  margin-bottom: 1rem;
  max-width: 125px;
}
@supports (display:flex) {
  .bxb-review__confirmation-social-media-container {
    display: flex;
    flex-wrap: wrap;
  }
  .bxb-review__confirmation-social-media {
    max-width: inherit;
  }
}
/* PAGE :: SERVICE AREA LIST STYLING
=====================================================================*/
.bxb-city-page-layout {
  -webkit-columns: 3;
  -moz-columns: 3;
  columns: 3;
}
.bxb-city-page-layout li {
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  list-style-type: none;
  /* Remove bullets */
  white-space: nowrap;
}
@media (max-width: 1200px) and (min-width: 769px) {
  .bxb-city-page-layout {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
}
@media (max-width: 768px) {
  .bxb-city-page-layout {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
    margin: auto;
    width: 50%;
  }
}
/* hide extra reviews showing
div.ptb_loops_wrapper:nth-child(4) {
display: none;
} */
/* gets rid of extra spaces on city pages */
unknown {
  display: none;
}
/* Background color for Syndicated Service pages */
body[class~="logged-in"] .Syndicated-B {
  background-color: #f5fcff;
  background: linear-gradient(180deg, #f5fcff 90%, #fff);
  /*blue*/
}
body[class~="logged-in"] .Syndicated-C {
  background-color: #ffffe0;
  background: linear-gradient(180deg, #ffffe0 90%, #fff);
  /*yellow*/
}
body[class~="logged-in"] .Syndicated-D {
  background-color: #ffe6ee;
  background: linear-gradient(180deg, #ffe6ee 90%, #fff);
  /*pink*/
}
.bxb-blog-title-row .fl-row-content-wrap {
  background-color: #939393;
}
.fl-post-feed-post {
  /*padding-bottom: 4rem;*/
}
/* DEFAULT SINGLE POST LAYOUT
=====================================================================*/
.single .fl-content-left {
  border-right: none !important;
  padding-right: inherit !important;
  width: 100% !important;
}
.single .fl-sidebar-right {
  display: none !important;
}
/* PREVENT YOUTUBE VIDEO FROM OVERLAPPING OTHER ELEMENTS
=====================================================================*/
.single .rll-youtube-player iframe {
  z-index: 1;
}
/* FOOTER
=====================================================================*/
a.bxb-footer__phone {
  font-size: 5.5rem;
  font-weight: 600;
  line-height: 1;
}
.bxb-footer__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .bxb-footer__icons {
    justify-content: center;
  }
}
.bxb-footer__icons img {
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
  transition: 0.25s;
}
.bxb-footer__icons img:hover {
  transform: scale(1.1);
  transition: 0.25s;
}
.bxb-footer__icons--social img {
  width: 45px;
  height: 45px;
}
.bxb-footer__icons--associations img {
  max-height: 5em;
}
.bxb-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 18px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .bxb-footer__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.bxb-footer__menu a {
  margin: 5px 15px;
}
.footerSearch {
  width: 100%;
}
.bxb-footer__address, .bxb-footer__access {
  text-align: center;
}
.bxb-footer__address hr {
  margin-bottom: 1em;
  max-width: 3rem;
}
.bxb-footer__address p:not(:first-child) {
  font-size: 0.8em;
}
.bxb-footer__access {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.bxb-footer__access * {
  font-size: 16px;
  font-weight: 200;
}
@media (max-width: 768px) {
  /* Footer phone number */
  a.bxb-footer__phone {
    font-size: 4rem;
  }
}
/* custom css for the footer */
.footer-review-container .fa-star {
  margin: 0 2px;
}
.footer-review-container .bxb-widget-aggregate-review-rating__stars--front {
  color: #E45E25 !important;
  color: #85b348 !important;
}
.footer-review-container p, .footer-review-container p a {
  color: #fff;
  font-size: 14px;
  line-height: 15px;
}
.footer-review-container .bxb-widget-aggregate-review-rating__button {
  display: none !important;
  background-color: #2c3c4c !important;
  border: none !important;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 18px;
  padding: 6px 20px;
}
/* Set variable values 
=====================================================================*/
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* disabled by default */
/* Set overflow for table wrapper div to allow horizontal scrolling
=====================================================================*/
.bxb-maintenance-table-wrapper {
  overflow: auto;
}
/* Table styles
=====================================================================*/
/* Hide mobile scroll directions when full table is visible */
@media (min-width: 900px) {
  .bxb-maintenance-table-caption {
    display: none;
  }
}
/* Note: Width should not be set to a % or overflow won't work */
.bxb-maintenance-table {
  border-collapse: separate;
  font-size: 1.7rem;
  line-height: 1.3;
  margin: auto;
  width: 1100px;
}
.bxb-maintenance-table th, .bxb-maintenance-table td {
  border: 1px solid #000;
  padding: 0.7rem;
  text-align: center;
}
/* Column styles
=====================================================================*/
/* Column widths - Adjust if more/less than five columns - Remember to 
adjust mobile columns as well */
.bxb-maintenance-table tr th:nth-child(1), .bxb-maintenance-table tr td:nth-child(1) {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #000;
  color: #000;
  left: 0;
  position: sticky;
  width: 40%;
  z-index: 1;
}
.bxb-maintenance-table tr th:nth-child(2), .bxb-maintenance-table tr td:nth-child(2) {
  background: rgba(255, 215, 0, 0.6);
  color: #000;
  width: 15%;
}
.bxb-maintenance-table tr th:nth-child(3), .bxb-maintenance-table tr td:nth-child(3) {
  background: rgba(205, 127, 50, 0.6);
  color: #000;
  width: 15%;
}
.bxb-maintenance-table tr th:nth-child(4), .bxb-maintenance-table tr td:nth-child(4) {
  background: rgba(192, 192, 192, 0.6);
  color: #000;
  width: 15%;
}
.bxb-maintenance-table tr th:nth-child(5), .bxb-maintenance-table tr td:nth-child(5) {
  background: rgba(229, 228, 226, 0.6);
  color: #000;
  width: 15%;
}
/* Align first column content */
.bxb-maintenance-table tr th:nth-child(1), .bxb-maintenance-table tr td:nth-child(1) {
  text-align: left !important;
}
/* Alternate column colors
.bxb-maintenance-table tr th:nth-child(odd),
.bxb-maintenance-table tr td:nth-child(odd) {
  background-color: $col-odd-background;
  color: $col-odd-font-color;
} 

.bxb-maintenance-table tr th:nth-child(even),
.bxb-maintenance-table tr td:nth-child(even) {
  background-color: $col-even-background;
  color: $col-even-font-color;
} */
/* Row styles
=====================================================================*/
/* Table headers
.bxb-maintenance-table thead {
  background-color: $header-row-background;
  color: $header-row-font-color;
} */
/* Alternate row colors
.bxb-maintenance-table tr:nth-child(odd) td {
  background-color: $row-odd-background;
  color: $row-odd-font-color;
}

.bxb-maintenance-table tr:nth-child(odd) th,
.bxb-maintenance-table tr:nth-child(even) td {
  background-color: $row-even-background;
  color: $row-even-font-color;
} */
/* Icon styles
=====================================================================*/
i.fas {
  color: #3c763d;
  font-size: 1.7rem;
  text-align: center !important;
}
/* Responsive styles
=====================================================================*/
@media (max-width: 768px) {
  .bxb-maintenance-table, i.fas {
    font-size: 0.9rem;
  }
  .bxb-maintenance-table tr th:nth-child(1), .bxb-maintenance-table tr td:nth-child(1) {
    background: #ffffff;
  }
}
/* Display mobile scroll directions when full table is not visible */
@media (max-width: 799px) {
  .bxb-maintenance-table-caption {
    display: inherit;
    text-align: center;
  }
  .bxb-maintenance-table tr th:nth-child(1), .bxb-maintenance-table tr td:nth-child(1) {
    width: 25%;
  }
  .bxb-maintenance-table tr th:nth-child(2), .bxb-maintenance-table tr td:nth-child(2), .bxb-maintenance-table tr th:nth-child(3), .bxb-maintenance-table tr td:nth-child(3), .bxb-maintenance-table tr th:nth-child(4), .bxb-maintenance-table tr td:nth-child(4), .bxb-maintenance-table tr th:nth-child(5), .bxb-maintenance-table tr td:nth-child(5) {
    width: 18.75%;
  }
}
/* BxB AGGREGATE RATING WIDGET (with schema)
=====================================================================*/
.bxb-widget-aggregate-review-rating {
  display: block;
  text-align: center;
}
/* Star Rating */
.bxb-widget-aggregate-review-rating__stars {
  align-items: center;
  display: flex;
  font-size: 22px;
  justify-content: center;
}
.bxb-widget-aggregate-review-rating__stars--back {
  color: #ccc;
  display: flex;
  position: relative;
}
.bxb-widget-aggregate-review-rating__stars--front {
  color: #ffbc0b !important;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 0;
}
/* Text */
.bxb-widget-aggregate-review-rating p {
  font-size: 15px !important;
}
/* BxB AGGREGATE RATING SIMPLE WIDGET (without schema)
=====================================================================*/
.bxb-widget-aggregate-review-rating--simple {
  float: right;
}
.bxb-widget-aggregate-review-rating__review-link, .bxb-widget-aggregate-review-rating__review-link:hover, .bxb-widget-aggregate-review-rating__review-link:visited {
  background: #FCBE00;
  border: 1px solid #FCBE00;
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 2px 5px 0;
  text-decoration: none;
  text-transform: uppercase;
}
.bxb-widget-aggregate-review-rating__review-link--no-reviews, .bxb-widget-aggregate-review-rating__review-link--no-reviews:hover {
  padding: 5px 10px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .bxb-widget-aggregate-review-rating {
    display: inline !important;
    float: none;
  }
}
/* Home - Reviews Section */
.home .bxb-widget-aggregate-review-rating--simple {
  float: none;
}
.home .bxb-widget-aggregate-review-rating__review-link {
  display: none;
}
/* PLUGINS :: GRAVITY FORMS
=====================================================================*/
/* Capitalize first letter in auto-populated select fields */
select {
  text-transform: capitalize;
}
/* Format label styles */
body .gform_wrapper ul li.gfield {
  margin-top: 24px;
}
.gform_required_legend {
  display: inline-block;
  font-size: 13px;
}
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
  font-size: 16px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker), .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker) {
  margin-top: 0;
}
/* Star icons on review form */
.gsurvey-rating:not(:checked) > label {
  background-size: 30px 30px !important;
  color: transparent !important;
  font-size: 23px !important;
  line-height: 30px !important;
  width: 38px !important;
}
.gsurvey-rating:not(:checked) > label:hover, .gsurvey-rating:not(:checked) > label:hover ~ label {
  background-size: 30px 30px !important;
}
/* Prevent text field inputs from being partially hidden */
@media only screen and (max-width: 641px) {
  .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    line-height: 1;
  }
}
/*line up social media icons with column */
div.bxb-review__confirmation-social-media:nth-child(1) {
  padding-left: 0px;
}
/* PLUGINS :: POST TYPE BUILDER
=====================================================================*/
.home h2.ptb_post_title {
  font-size: 22px;
}
.ptb_loops_wrapper.ptb_list-post .ptb_post:last-child {
  margin-bottom: 0;
}
.ptb_post_title {
  margin: 0;
}
/* Color of stars */
.ptb_extra_rating .ptb_extra_voted {
  color: #E45E1D !important;
}
/* Add divider between reviews */
div.ptb_loops_wrapper:not(.ptb_masonry) .ptb_post {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1em !important;
  margin-bottom: 0px !important;
}
div.ptb_loops_wrapper:not(.ptb_masonry) .ptb_post:last-of-type {
  border: none;
  padding-bottom: 0 !important;
}
/* Star styles */
.ptb_extra_rating_medium {
  font-size: 24px;
  letter-spacing: 5px;
}
.fa-star:before {
  content: "" !important;
  margin: 0 0.1em;
}
/* Dynamically add a title above customer reviews */
.ptb_loops_wrapper article:first-of-type::before {
  color: #000000;
  content: "Customer Reviews";
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 16px;
  text-transform: capitalize !important;
}
/* Prevent title on Home and Reviews pages */
.home .ptb_loops_wrapper article:first-of-type::before, .page-id-366 .ptb_loops_wrapper article:first-of-type::before {
  content: "";
}
/* Add padding to service and city page reviews */
body:not(.home) .ptb_loops_wrapper {
  padding: 20px 0;
}
/*Internal reviews stying*/
body:not(.home) .ptb_title * {
  font-size: 35px;
  font-weight: bold;
}
body:not(.home) .ptb_post_date {
  color: #A5A5A5;
  font-size: 18px;
}
body:not(.home) .ptb_combined_customer_info i {
  font-size: 18px;
  color: #3062A7;
  font-weight: bold;
  font-style: normal;
}
/* PLUGINS :: FONT AWESOME
=====================================================================*/
.ptb_extra_rating > span svg {
  visibility: hidden;
}
.fa-star, .ptb_extra_rating > span {
  height: 25px;
  padding-left: 1em;
  position: relative;
  width: 20px;
}
.fa-star:before, .ptb_extra_rating > span::before {
  content: "" !important;
  display: inline-block;
  font: var(--fa-font-solid);
  font-family: "Font Awesome 6 Sharp";
  left: 0;
  position: absolute;
  text-rendering: auto;
  top: 0;
  -webkit-font-smoothing: antialiased;
}
@media print {
  header {
    position: initial !important;
  }
  header > .fl-row {
    display: none;
  }
  header > .fl-row#bxb-header {
    display: block;
  }
  header .fl-module-menu {
    display: none;
  }
  .bxb-cta-row, .bxb-cta-row + .fl-row, footer, #apexchat_tab_invitation_wrapper, #apexchat_prechat_invitation_wrapper {
    display: none;
  }
  a[href]:after {
    content: none !important;
  }
}
/*$button-color-bg--hover:	linear-gradient(180deg,#FCBE00,#E45E1D); */
/* MOBILE BUTTONS
=====================================================================*/
.bxb-mobile-button {
  background-color: #939393;
  border: 2px solid #000000;
  min-height: 200px;
  position: relative;
}
.bxb-mobile-button:hover {
  background-color: #adadad;
}
.bxb-mobile-button a {
  color: #000000;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-decoration: none;
}
/* Position of button same with different size text */
.bxb-feature-row-button {
  bottom: 0px;
}
/* Button */
.bxb-widget-aggregate-review-rating__button {
  background: #939393;
  border-radius: 3px;
  color: #fff !important;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 10px 7px;
  text-transform: uppercase;
  transition: 0.25s;
}
.bxb-widget-aggregate-review-rating__button:hover {
  background: #7a7a7a;
  color: #fff !important;
  text-decoration: none;
  transition: 0.25s;
}
/* CALL-TO-ACTION MODULES
=====================================================================*/
.bxb-cta-row {
  background: linear-gradient(180deg, rgba(123, 123, 123, 0.91), #4C4B4C);
  background: #FFF;
}
.fl-cta-button a.fl-button {
  background: #fff !important;
  color: #FCBE00 !important;
  font-size: 18px;
}
.fl-cta-button a.fl-button:hover {
  background: #fff !important;
  color: #FCBE00 !important;
}
/* BUTTONS :: GENERAL
=====================================================================*/
a.fl-button, a.fl-button:visited, .fl-builder-content a.fl-button, .fl-builder-content a.fl-button:visited, .bxb-parent-service-page-services-list a, .bxb-parent-service-page-services-list a:visited {
  background: #85b348;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  /*box-shadow: $shadow;*/
  padding: 9px 20px;
  transition: 0.25s;
  text-decoration: none;
  letter-spacing: 1.6px;
  font-weight: bold;
  text-transform: uppercase;
}
a.fl-button:hover, .fl-builder-content a.fl-button:hover, .bxb-parent-service-page-services-list a:hover {
  background: linear-gradient(180deg, #85B349, #3062A7);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
  transition: 0.25s;
}
/* BUTTONS :: "READ MORE" FOR BLOG POSTS
=====================================================================*/
a.fl-post-feed-more {
  background: #85b348;
  box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
  padding: 18px 36px;
  transition: 0.25s;
}
a.fl-post-feed-more:hover {
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: 0.25s;
}
/* Buttons for GRAVITY FORMS */
.gform_button {
  background: #000000 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.4) !important;
  font-size: 18px !important;
  padding: 18px 36px !important;
  transition: 0.25s;
}
.gform_button:hover {
  background: linear-gradient(180deg, #85B349, #3062A7) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4) !important;
  padding: 18px 36px !important;
  transition: 0.25s;
}
.gform_next_button {
  background: #000000 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.4) !important;
  font-size: 18px !important;
  padding: 18px 36px !important;
  transition: 0.25s;
}
.gform_next_button:hover {
  background: linear-gradient(180deg, #85B349, #3062A7) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0px 0px 5px 0 rgba(0, 0, 0, 0.4) !important;
  padding: 18px 36px !important;
  transition: 0.25s;
}
.pos-rel {
  position: relative;
}
.z-ind-1 {
  z-index: 1;
}
.z-ind-2 {
  z-index: 2;
}
.z-ind-3 {
  z-index: 3;
}
.z-ind-4 {
  z-index: 4;
}
.z-ind-5 {
  z-index: 5;
}
.z-ind-99 {
  z-index: 99 !important;
}
.left-half > .fl-col-content {
  padding-left: calc(50vw - 600px) !important;
}
.right-half > .fl-col-content {
  padding-right: calc(50vw - 600px) !important;
}
/* ============= Header ============= */
.top-header-span {
  font-size: 25px !important;
}
.top-header-button {
  background: #85b348;
  border: 1px #FFF solid;
  border-radius: 999px;
  padding: 4px 20px;
  font-size: 16px !important;
  font-weight: bold;
  margin: 0px 5px;
}
.top-header-button:hover {
  background: linear-gradient(180deg, #85B349, #3062A7);
}
/* change colored bar in header to match season color*/
.menu-season-bg-color .fl-row-content-wrap {
  background: #85b348;
}
/*Change menu hover color to match season*/
.bxb-header-a-menu .fl-menu .sub-menu > li > a:hover {
  background: #85b348;
}
/* ============= Homepage ============= */
/*Blogs*/
.home-posts .fl-post-grid-post {
  font-size: 14px;
  border: none;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding-bottom: 0px;
}
.home-posts .fl-post-text {
  padding: 30px !important;
  background: #D1D5DB;
  min-height: 100%;
  /*font-size: 16px !important;*/
  position: relative;
}
.home-posts .fl-post-title {
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 20px !important;
}
.home-posts .fl-post-meta {
  font-weight: bold;
  text-transform: uppercase;
}
.home-posts .fl-post-more-link a {
  margin-top: 10px !important;
  background: #85b348;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid #FFF;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
}
.home-posts .fl-post-more-link a:hover {
  background: linear-gradient(180deg, #FCBE00, #E45E1D);
}
.home-posts .fl-post-excerpt {
  padding-bottom: 20px;
  min-height: 285px;
}
/* ============= Footer ============= */
footer > .fl-row:first-child .fl-row-content-wrap .fl-shape-content path.fl-shape {
  fill: #85b348;
}
.season-color-heading .fl-heading .fl-heading-text {
  color: #85b348;
}
.season-color-hr .fl-separator {
  border-top-color: #85b348;
}
/* BXB REVIEW GRID
=====================================================================*/
.home-com-res-1 {
  z-index: 1 !Important;
  position: relative;
}
.home-com-res-2 {
  z-index: 0 !Important;
  position: relative;
}
.bxb-review-grid-wrapper {
  display: grid;
  height: calc(375px * 3 + 6em);
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 2em;
  grid-template-areas: "one    two     three" "four   five    six" "seven  eight   nine" "ten    eleven  twelve";
  overflow: hidden;
}
.bxb-review-grid-wrapper__box {
  background-color: #d1d5db;
  /*border: 1px solid rgba(255, 255, 255, 0.25);*/
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  height: 450px;
  max-width: 450px;
  padding: 0 30px;
  /*margin: 0 auto;*/
  /*overflow: hidden;*/
  margin-bottom: 50px;
  text-align: center;
}
/* Create Offset Columns */
.bxb-review-grid-wrapper__box:nth-child(1), .bxb-review-grid-wrapper__box:nth-child(4), .bxb-review-grid-wrapper__box:nth-child(7), .bxb-review-grid-wrapper__box:nth-child(3), .bxb-review-grid-wrapper__box:nth-child(6), .bxb-review-grid-wrapper__box:nth-child(9), .bxb-review-grid-wrapper__box:nth-child(10), .bxb-review-grid-wrapper__box:nth-child(12) {
  transform: translateY(-50%);
}
.bxb-review-grid-wrapper__box:nth-child(2), .bxb-review-grid-wrapper__box:nth-child(5), .bxb-review-grid-wrapper__box:nth-child(8) {
  transform: translateY(0%);
}
/* Review Box Names */
.bxb-review-grid-wrapper__box--1 {
  grid-area: one;
}
.bxb-review-grid-wrapper__box--2 {
  grid-area: two;
}
.bxb-review-grid-wrapper__box--3 {
  grid-area: three;
}
.bxb-review-grid-wrapper__box--4 {
  grid-area: four;
}
.bxb-review-grid-wrapper__box--5 {
  background-color: #d1d5db;
  grid-area: five;
  padding: 10% !important;
  text-align: center;
}
.bxb-review-grid-wrapper__box--5 h2 {
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
}
.bxb-review-grid-wrapper__box--5 hr {
  color: #000000 !Important;
}
.bxb-review-grid-wrapper__box--5 img {
  max-width: 150px;
  margin-top: -75px;
}
.bxb-review-grid-wrapper__box--5 a {
  background-color: #85b348;
  /*box-shadow: $shadow;*/
  border-radius: 999px;
  border: 2px solid #FFF;
  color: #fff;
  display: block;
  font-weight: bold;
  margin: 1em auto 0;
  padding: 5px;
  text-transform: uppercase;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  width: 70%;
}
.bxb-review-grid-wrapper__box--5 a:hover {
  background: linear-gradient(180deg, #85B349, #3062A7);
  /*box-shadow: $shadow--hover;*/
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.bxb-review-grid-wrapper__box--6 {
  grid-area: six;
}
.bxb-review-grid-wrapper__box--7 {
  grid-area: seven;
}
.bxb-review-grid-wrapper__box--8 {
  grid-area: eight;
}
.bxb-review-grid-wrapper__box--9 {
  grid-area: nine;
}
.bxb-review-grid-wrapper__box--10 {
  grid-area: ten;
}
.bxb-review-grid-wrapper__box--11 {
  grid-area: eleven;
}
.bxb-review-grid-wrapper__box--12 {
  grid-area: twelve;
}
/* Review Box Styles */
.home .ptb_module {
  color: #000;
  font-size: 15px;
}
.home .ptb_title {
  /*display: none;*/
  padding-top: 40px;
}
.home .ptb_overall_satisfaction {
  margin-bottom: 20px;
  text-align: center;
}
.home .bxb-review-grid-wrapper__box .ptb_extra_rating_medium {
  font-size: 30px;
  letter-spacing: 5px;
}
.fa-star:before {
  content: "★";
}
.home .ptb_extra_rating .ptb_extra_voted {
  color: #85b348 !important;
}
.home .ptb_date {
  display: none;
}
.home .ptb_post_date {
  font-size: 13px;
}
body.home {
  /* Featured Services */
}
body.home .banner-bottom img {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  left: 0px;
  _position: absolute;
  -webkit-filter: drop-shadow(0px -20px 40px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px -20px 40px rgba(0, 0, 0, 0.25));
}
body.home #featured-service-row {
  _padding-top: 200px;
  position: relative;
}
body.home #featured-service-row:before {
  content: "";
  background: url(https://allseasonsheating.com/wp-content/uploads/FS-BG-Icon.svg);
  position: absolute;
  z-index: 10;
  width: 100vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
  pointer-events: none !important;
}
body.home #featured-service-row .fl-builder-layer.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
  _bottom: -100px !important;
  z-index: 10;
}
@media (max-width: 992px) {
  body.home #featured-service-row .fl-builder-layer.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
    display: none !important;
  }
}
body.home #about .about-wrapper {
  padding: 60px 80px;
  color: #4b4b4b !important;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.75);
}
@media (max-width: 992px) {
  body.home #about .about-wrapper {
    padding: 80px 40px;
  }
}
body.home #about .about-wrapper h2 {
  color: #4b4b4b;
}
/* BODY.HOME */
.fl-node-5eb31884879f1 .fl-menu .sub-menu > li > a:hover, .fl-node-5eb31884879f1 .fl-menu .sub-menu > li > a:focus, .fl-node-5eb31884879f1 .fl-menu .sub-menu > li > a:active, .fl-node-5eb31884879f1 .fl-menu .sub-menu > li > .fl-has-submenu-container > a:hover, .fl-node-5eb31884879f1 .fl-menu .sub-menu > li > .fl-has-submenu-container > a:focus, .fl-node-5eb31884879f1 .fl-menu .sub-menu > li > .fl-has-submenu-container > a:active {
  background: #E45E1D !important;
  color: #FFFFFF !important;
}
header nav #menu-all-services-menu .submenu a {
  color: #4b4b4b !important;
}
header nav .submenu .focus {
  background: #E45E1D !important;
  color: #FFFFFF !important;
}
header nav .submenu a:hover, header nav .submenu a:focus, header nav .submenu a:active {
  background: #E45E1D !important;
  color: #FFFFFF !important;
}
header nav .current-menu-item.current_page_item a {
  color: #E45E1D !important;
}
header nav .current-menu-item.current_page_item a:hover, header nav .current-menu-item.current_page_item a:focus, header nav .current-menu-item.current_page_item a:active {
  color: #FFFFFF !important;
}
