/*--- Importing Files ---*/
:root {
  --clr-primary: #247ec1;
  --clr-secondary: #27b48c;
  --clr-light: #ffffff;
  --clr-dark: #000;
  --clr-grey: #a3a3a3;
  --clr-accent: #23b28a;
  --clr-shadow: #dadada;
  --clr-darker-prim: #156498;
  --clr-lighter-prim: #309ce3;
  --clr-darker-secd: #1b8566;
  --clr-lighter-secd: #30d6a6;
  --clr-darker-dark: #121011;
  --clr-lighter-dark: #484043;
  --clr-darker-grey: #8a8a8a;
  --clr-lighter-grey: #bdbdbd;
  --clr-darker-accent: #1b8769;
  --clr-lighter-accent: #31d7a8;
  --clr-darker-shadow: #c1c1c1;
  --clr-lighter-shadow: #f4f4f4;
  --clr-secondary-2: #1AB0FC;
  --clr-base-1: #202D38;
  --trn-slow: all 0.6s ease;
  --trn-normal: all 0.4s ease;
  --trn-fast: all 0.25s ease;
  --fnt-primary: "Fredoka";
  --fnt-secondary: "Open Sans";
  --fnt-divi: etmodules;
  --fnt-global: 18px;
  --fnt-gm: 16px;
  --fnt-gs: 15px;
  --fnt-h0: clamp(3.438rem, 1.543vw + 3.148rem, 5rem);
  --fnt-h1: clamp(2.556rem, 1.358vw + 2.329rem, 3.778rem);
  --fnt-h2: clamp(2.222rem, 0.926vw + 2.068rem, 3.056rem);
  --fnt-h3: clamp(1.944rem, 0.494vw + 1.862rem, 2.389rem);
  --fnt-h4: clamp(1.667rem, 0.494vw + 1.584rem, 2.111rem);
  --fnt-h5: clamp(1.556rem, 0.309vw + 1.504rem, 1.833rem);
  --fnt-h6: clamp(1.389rem, 0.309vw + 1.337rem, 1.667rem);
  --fnt-m: clamp(1rem, 0.556vw + 0.896rem, 1.563rem);
  --fnt-s: clamp(0.938rem, 0.432vw + 0.856rem, 1.375rem);
  --fnt-lg-base: clamp(0.889rem, 0.247vw + 0.848rem, 1.111rem);
  --fnt-md-base: clamp(0.778rem, 0.247vw + 0.737rem, 1rem);
  --fnt-xs: 0.94444em;
  --fnt-xxs: 0.83333em;
  --fnt-x: 0.77778em;

  --fnt-menu-link: 1rem;
  --heading-spacing: clamp(0.75rem, 0.802vw + 0.6rem, 1.563rem);

  --hero-height-main: clamp(22.222rem, 25.926vw + 17.901rem, 45.556rem);
  --btn-min-width: clamp(7.5rem, 7.099vw + 6.169rem, 14.688rem);
  --btn-radius: 18px;
  --btn-height: clamp(3.125rem, 0.617vw + 3.009rem, 3.75rem);

  --spacing-10: clamp(0.375rem, 0.247vw + 0.329rem, 0.625rem);
  --spacing-18: clamp(0.75rem, 0.37vw + 0.681rem, 1.125rem);
  --spacing-20: clamp(0.75rem, 0.494vw + 0.657rem, 1.25rem);
  --spacing-24: clamp(0.875rem, 0.617vw + 0.759rem, 1.5rem);
  --spacing-30: clamp(0.938rem, 0.926vw + 0.764rem, 1.875rem);
  --spacing-40: clamp(1.25rem, 1.235vw + 1.019rem, 2.5rem);
  --spacing-50: clamp(1.875rem, 1.235vw + 1.644rem, 3.125rem);
  --spacing-60: clamp(1.875rem, 1.852vw + 1.528rem, 3.75rem);
  --spacing-70: clamp(2.188rem, 2.16vw + 1.782rem, 4.375rem);
  --spacing-80: clamp(2.5rem, 2.469vw + 2.037rem, 5rem);

  --ratio-standard: calc((3 / 4) * 100%);
  --ratio-custom-1: calc((14 / 16) * 100%);
  --ratio-classic: calc((2 / 3) * 100%);
  --ratio-square: calc((1 / 1) * 100%);

  --overlap-content-width: clamp(27.813rem, 16.507vw + 17.692rem, 37.5rem);
  --fancy-border-height: clamp(1.667rem, 5.882vw + 0.686rem, 3.889rem);
  --map-height: clamp(18.75rem, 15.432vw + 15.856rem, 34.375rem);
  --clip-translate-y: clamp(5.313rem, 25.617vw + 0.509rem, 31.25rem);
}

/*
  Custom Styles by Morningstar Digital (MD)
  Your custom style will be added here.
  */
/* GLOBAL CSS */
html {
  font-size: var(--fnt-global);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

.md {
  color: var(--clr-dark);
  font-size: 100%;
  font-family: var(--fnt-secondary);
  font-weight: normal;
  line-height: 1.6;
}

.md ::-moz-selection {
  background-color: var(--clr-primary);
  color: var(--clr-light);
}

.md ::selection {
  background-color: var(--clr-primary);
  color: var(--clr-light);
}

.md h1,
.md h2,
.md h3,
.md h4,
.md h5,
.md h6 {
  color: var(--clr-dark);
  font-family: var(--fnt-primary);
  line-height: 1.075;
  padding-bottom: var(--spacing-18);
}

.md h1 {
  font-size: var(--fnt-h1);
  margin-bottom: 0;
  margin-top: 0;
}

.md h2 {
  font-size: var(--fnt-h2);
}

.md h3 {
  font-size: var(--fnt-h3);
}

.md h4 {
  font-size: var(--fnt-h4);
}

.md h5 {
  font-size: var(--fnt-h5);
}

.md h6 {
  font-size: var(--fnt-h6);
}

.md a {
  color: var(--clr-primary);
}

.md a:hover {
  color: var(--clr-primary);
}

.md.et-db #et-boc .et-l .et_pb_button {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  padding-top: .75em;
  padding-bottom: .75em;
  font-weight: 600;
  min-width: var(--btn-min-width);
  text-align: center;
  letter-spacing: 1px;
  /* background-color: #23b087; */
  /* background-color: #1b82c5; */
  /* border: 2px solid #ffffff; */
  /* border-radius: 25px; */
  /* display: inline-block; */
  /* font-weight: 600; */
  /* text-transform: uppercase; */
  /* letter-spacing: 0.4px; */
  /* min-width: 235px; */
  /* padding-top: 15px !important; */
  /* padding-bottom: 15px !important; */
}

.md.et-db #et-boc .et-l .et_pb_button:hover {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  padding-top: .75em;
  padding-bottom: .75em;
  /* padding-left: 1em; */
}

.md .et_pb_button:after {
  font-size: var(--fnt-m);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}


/* GLOBAL CSS */

.md .et_pb_scroll_top.et-pb-icon {
  right: 12px;
  bottom: 60px;
  border-radius: 0;
  padding: 12px;
  background-color: var(--clr-primary);
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.md .et_pb_scroll_top.et-pb-icon:hover {
  background-color: var(--clr-darker-prim);
}

.md #main-footer {
  display: none;
}

.md #md__footer {
  background-color: transparent;
  padding-bottom: 0;
  margin-top: -16px;
  z-index: 99;
}

.md .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.md.page-contact-us .md__r-beforeAfterCta {
  margin-top: 0;
  margin-bottom: 4em;
}

.md.page-about-us .md__r-reviews {
  padding-top: 3em;
}

.md #md_carousel .owl-nav .owl-prev {
  background-color: rgba(30, 152, 201, 0.25);
  left: 0;
}

.md #md_carousel .owl-nav .owl-next {
  background-color: rgba(30, 152, 201, 0.25);
  right: 0;
}

/* About Us Page Carouse; */

.md #md_carousel .owl-nav button {
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.md #md_carousel3 {
  background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
  background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
  background-color: var(--clr-secondary);
  padding: 50px 35px 70px;
  position: relative;
  overflow: hidden;
}

.md #md_carousel3:before {
  content: "Testimonials";
  display: block;
  font-size: var(--fnt-h2);
  color: var(--clr-light);
  font-family: var(--fnt-primary);
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.md #md_carousel3 .owl-nav button span::before {
  opacity: 0;
}

.md #md_carousel3 .owl-nav button,
.md #md_carousel3 .owl-nav button span:before {
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.md #md_carousel3:hover .owl-nav .owl-prev {
  left: 20px;
}

.md #md_carousel3:hover .owl-nav .owl-next {
  right: 20px;
}

.md #md_carousel3:hover .owl-nav button span:before {
  color: var(--clr-accent);
  opacity: .6;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, .5);
}

.md #md_carousel3:hover .owl-nav button span:hover:before {
  opacity: 1;
  background-color: rgba(255, 255, 255, .9);
}

.md .md__r-beforeAfterCta {
  background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
  background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
  background-color: var(--clr-primary);
  max-width: 100%;
  margin-top: 2em;
  width: 100%;
  z-index: 10;
}

.md .md__s-hero {
  background-position: bottom;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: visible;
  min-height: calc(28vh + 620px);
}

.md .md__s-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  height: calc(25% + 20vw);
  width: calc(33% + 27vw);
  -webkit-transform: translate(0%, -18vw);
  -ms-transform: translate(0%, -18vw);
  transform: translate(0%, -18vw);
  background-image: -o-linear-gradient(296deg, #27b0de, #1b82c5);
  background-image: linear-gradient(-206deg, #27b0de, #1b82c5);
  border-radius: 50%;
}

.md .md__s-hero.page {
  min-height: 50vh;
  background-position: top;
  padding: 10em 0 15em !important;
}

.md .md__s-aboutus {
  background-color: transparent;
  padding-bottom: 0;
}

.md .md__s-cta {
  z-index: 99;
}

.md .md__r-services {
  margin-top: -7.75em;
}

.md .md__r-about {
  padding-top: 6em;
}

.md .md__r-reviews {
  padding: 2em 0 5em;
}

.md.page-contact-us .md__r-reviews {
  padding-bottom: 1em;
}

.md .md__r-quote {
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  padding: 0;
  margin-bottom: 3em;
}

.md .md__r-projectTItle {
  margin-top: 90px;
}

.md .md__r-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  /* margin-bottom: 50px; */
}

.md .md__r-split.reverse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.md .md__r-split.reverse .md__c-split1 {
  max-width: var(--overlap-content-width);
  padding-right: 0;
  width: 40%;
}

.md .md__r-split.reverse .md__c-split2 {
  max-width: 100%;
  padding-left: var(--spacing-70);
  width: 50%;
}

.md .md__r-split .md__c-split1 {
  max-width: 100%;
  padding-right: var(--spacing-70);
  width: 50%;
}

.md .md__r-split .md__c-split2 {
  max-width: var(--overlap-content-width);
  padding-left: 0;
  width: 40%;
}

.md .md__c-pageHero1 {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.md .md__c-choosebec1 {
  padding: var(--spacing-60) var(--spacing-50);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.md .md__c-choosebec2 {
  padding: var(--spacing-60) var(--spacing-50);
}

.md .hero_txt h1 {
  color: var(--clr-primary);
  font-size: var(--fnt-h0);
  text-transform: capitalize;
}

.md .hero_txt h1 em,
.md .hero_txt h1 i {
  color: var(--clr-secondary);
  font-style: normal;
}

.md .hero_txt hr {
  border: none;
  height: 70px;
  width: 100%;
  background-image: url(/wp-content/uploads/2020/02/curly-border.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

.md .hero_txt p {
  font-family: var(--fnt-primary);
  font-size: var(--fnt-m);
}

.md .hero_img {
  -webkit-transform: scale(1.125);
  -ms-transform: scale(1.125);
  transform: scale(1.125);
}

.md .service_blrb {
  min-height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px;
}

.md .service_blrb h4.et_pb_module_header {
  font-size: var(--fnt-m);
}

.md .service_blrb .et_pb_blurb_description {
  line-height: 1.4;
}

.md .list_txt ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  padding: 0;
}

.md .list_txt li {
  font-weight: 700;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  margin-bottom: 28px;
  position: relative;
  padding-left: 45px;
}

.md .list_txt li:before {
  content: "";
  background-image: url(/wp-content/uploads/2020/02/check-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  height: 30px;
  width: 30px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.md .list_txt.v2 {
  background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
  background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
  background-color: var(--clr-secondary);
  padding: 50px 7em 35px;
}

.md .list_txt.v2 ul {
  margin-top: 20px;
}

.md .list_txt.v2 li {
  margin-bottom: 20px;
}

.md .list_txt.v2 li:before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.md .cart_img {
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
  transform: scale(2);
  -webkit-transform-origin: 30% 0;
  -ms-transform-origin: 30% 0;
  transform-origin: 30% 0;
}

.md .review_test {
  background-color: transparent !important;
  padding: 0;
}

.md .review_test .et_pb_testimonial_description {
  margin-left: 0 !important;
  padding: 0 8%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.md .review_test .et_pb_testimonial_portrait {
  width: 100% !important;
  height: 34px !important;
  background-size: contain;
  -webkit-box-shadow: none;
  box-shadow: none;
  float: none;
  margin-right: 0;
  margin-bottom: 30px !important;
}

.md .review_test .et_pb_testimonial_portrait:before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.md .review_test .et_pb_testimonial_content h2 {
  font-family: var(--fnt-secondary);
}

.md .review_test .et_pb_testimonial_author {
  margin-top: 20px;
  position: relative;
}

.md .review_test .et_pb_testimonial_author:before {
  content: "~";
  color: var(--clr-light);
  font-size: var(--fnt-m);
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
}

.md .quote {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 65px 50px;
}

.md .quote hr {
  border: none;
  height: 70px;
  width: 100%;
  background-image: url(/wp-content/uploads/2020/02/curly-border.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin: 10px 0 25px;
}

.md .quote p:last-of-type+ul {
  margin-top: 25px;
}

.md .quote ul {
  list-style-type: none;
  padding-left: 0;
}

.md .quote li {
  color: var(--clr-light);
  font-size: var(--fnt-s);
  font-weight: 700;
  margin-bottom: 5px;
}

.md .quote li a {
  color: var(--clr-light);
  display: inline-block;
  text-decoration: none;
}

.md .quote li a:hover {
  text-decoration: underline;
}

.md .quote li a.tel_link {
  font-size: 1.5em;
}


.md .nf_code {
  background-color: var(--clr-light);
  /* padding: 65px 35px; */
}

.md .nf_code h2 {
  text-align: center;
}

.md .nf_code .nf-before-form-content,
.nf_code .nf-error-msg.nf-error-field-errors {
  display: none;
}

.md .nf_code .nf-error.field-wrap .nf-field-element:after {
  background: transparent;
  color: #e80000;
}

.md .nf_code .listradio-container {
  margin-top: 18px;
}

.md .nf_code .listradio-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin-top: 14px !important;
}

.md .nf_code .listradio-container li {
  margin-right: 25px !important;
}

.md .nf_code .listradio-container li:last-child {
  margin-right: 0 !important;
}

.md .nf_code .listradio-container label {
  font-size: 14px;
  color: var(--clr-dark);
  font-weight: 600;
  opacity: .95;
}

.md .nf_code .listradio-container label.nf-checked-label:before {
  top: 0.390em;
}

.md .nf_code .nf-form-content {
  padding: 0;
}

.md .nf_code .nf-form-content input:not([type=submit]) {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--clr-grey);
  color: var(--clr-dark);
  font-weight: 600;
  font-size: 14px;
}

.md .nf_code .nf-form-content input::placeholder,
.md .nf_code .nf-form-content textarea::placeholder {
  color: #3f3a31
}

::-webkit-input-placeholder {
  /* Edge */
  color: #3f3a31
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #3f3a31
}

.md .nf_code .nf-form-content textarea {
  height: 120px;
  background-color: #f0f0f0;
  color: var(--clr-dark);
  font-weight: 600;
  font-size: 14px;
  border: 0;
}

.md .nf_code .nf-form-content input[type=submit] {
  background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
  background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
  background-color: var(--clr-secondary);
  border: none;
  border-radius: var(--btn-radius);
  min-width: var(--btn-min-width);
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--fnt-xs);
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  margin-top: 10px;
  height: var(--btn-height);
}

.md .nf_code .nf-form-content input[type=submit]:hover {
  background-image: -o-linear-gradient(left, #27b0de, #0b6ea3);
  background-image: -webkit-gradient(linear, left top, right top, from(#27b0de), to(#0b6ea3));
  background-image: linear-gradient(to right, #27b0de, #0b6ea3);
  background-color: var(--clr-primary);
  color: var(--clr-light);
}

/* notification message */
.nf-response-msg {
  font-family: sans-serif;
  font-size: 16px;
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
  border-radius: .25rem;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
}

.nf-response-msg p {
  font-size: 16px !important;
  padding-bottom: 0;
}

.md .nf_code .nf-field-container {
  margin-bottom: 12px;
}

.md .nf_code .nf-error-msg {
  font-size: 14px;
}

.md .quote_img {
  width: 100%;
}

.md .quote_img .et_pb_image_wrap,
.md .quote_img img {
  width: 100%;
}

.md .info_txt ul {
  list-style-type: none;
  padding: 20px 0 0;
}

.md .info_txt li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  font-size: var(--fnt-m);
  margin-bottom: 5px;
}

.md .info_txt li strong,
.md .info_txt li b {
  color: var(--clr-secondary);
  -ms-flex-preferred-size: 23%;
  flex-basis: 23%;
}

.md .info_txt li em,
.md .info_txt li i {
  color: #24313c;
  font-style: normal;
  font-weight: 700;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
}

.md .info_txt li a {
  color: var(--clr-dark);
}

.md .call_txt h4 {
  color: var(--clr-secondary);
  font-size: var(--fnt-h5);
  padding: 10px 0 14px;
}

.md .call_txt p {
  font-family: var(--fnt-primary);
}

.md .bec_map {
  height: 100%;
}

.md .bec_map .et_pb_map {
  height: 100%;
  min-height: var(--map-height);
}

.md .footnav_txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  list-style-type: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.md .footnav_txt li {
  margin: 0 20px;
}

.md .footnav_txt li a {
  color: var(--clr-light);
  font-weight: 600;
  -webkit-filter: opacity(0.88);
  filter: opacity(0.88);
  text-transform: capitalize;
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.md .footnav_txt li a:hover {
  -webkit-filter: opacity(1);
  filter: opacity(1);
}

.md .credit_txt p {
  -webkit-filter: opacity(0.85);
  filter: opacity(0.85);
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.md .credit_txt a {
  color: var(--clr-light);
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.md .credit_txt a:hover {
  color: var(--clr-primary);
}

.md .pageHero_img {
  -webkit-transform: scale(1.447);
  -ms-transform: scale(1.447);
  transform: scale(1.447);
  -webkit-transform-origin: 65% 20%;
  -ms-transform-origin: 65% 20%;
  transform-origin: 65% 20%;
}


/* ABOUT PAGE */
.testimonial-text {
  font-size: 16px
}

.md .about-us-testimonials {
  height: 550px;
  overflow-y: scroll;
  padding-top: 0
}

.testimonial-all {
  text-align: center
}

.testimonial-all h4 {
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.testimonial-all.pt-20 {
  padding-top: calc(30px + (50 - 30) * ((100vw - 320px) / (1920 - 320)));
}

.md .beforeAfter_cta {
  background-color: transparent !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1200px;
  padding: 10px;
  width: 80%;
  margin: 0 auto;
}

.md .beforeAfter_cta .et_pb_promo_description {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  text-align: left;
  padding-bottom: 0;
  padding-right: 3%;
}

.md .beforeAfter_cta h2.et_pb_module_header {
  font-size: var(--fnt-h1);
  padding-bottom: 0;
}

.md .beforeAfter_cta .et_pb_button_wrapper {
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
}

.md .beforeAfter_cta.v2 .et_pb_button_wrapper {
  text-align: center;
}

.md .project_img {
  height: 37.65vh;
  width: auto;
  overflow: hidden;
  min-height: 225px;
}

.md .project_img .et_pb_image_wrap,
.md .project_img .et_pb_image_wrap img {
  height: 100%;
  width: 100%;
}

.md .project_img .et_pb_image_wrap img {
  -o-object-fit: cover;
  object-fit: cover;
}

.md .process_txt ol,
.md .process_txt ul {
  padding-bottom: 0;
  padding-left: 25px;
}

.md .process_txt li {
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #1ab0fd;
  padding-bottom: 15px;
  list-style-position: outside;
}

.md .process_txt li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.md .split_txt h2 {
  color: var(--clr-primary);
}

.md .split_txt hr {
  border: none;
  height: 70px;
  width: 100%;
  background-image: url(/wp-content/uploads/2020/02/curly-border.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  background-image: url(/wp-content/uploads/2020/02/curly-border-green.png);
  margin-bottom: 25px;
}

.md .split_txt.et_pb_bg_layout_dark hr {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.md .split_txt ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding-left: 25px;
}

.md .md__r-split :is(.split_img, .split_img_franchise) .et_pb_image_wrap {
  position: relative;
  height: 0;
  padding-bottom: var(--ratio-standard);
  width: 100%;
}

.et-db #et-boc .et-l .md__r-split :is(.split_img, .split_img_franchise) img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.md .md__r-split .split_img_franchise .et_pb_image_wrap {
  padding-bottom: var(--ratio-square)
}

.md .has_link_txt a {
  color: white;
}

.md .has_link_txt a:hover {
  text-decoration: underline !important;
}

.md .full_map .et_pb_map {
  min-height: 710px;
}

.md .beforeAfter_gall .et_pb_gallery_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.md .beforeAfter_gall .et_pb_gallery_item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 25px;
  width: auto;
}

.md .beforeAfter_gall .et_pb_gallery_item:nth-child(2) {
  border-left: 2px solid var(--clr-light);
}

.md .beforeAfter_gall .et_pb_gallery_item:nth-child(-n+2) {
  display: block;
  position: relative;
}

.md .beforeAfter_gall .et_pb_gallery_item:nth-child(n+3) {
  display: none;
}

.md .beforeAfter_gall .et_pb_gallery_image {
  padding-top: var(--ratio-square);
  display: block;
  margin-top: 30px;
}

.md .beforeAfter_gall .et_pb_gallery_image a {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.md .beforeAfter_gall .status {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
  padding: 14px 20px;
  line-height: 1;
  background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
  background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
  background-color: var(--clr-primary);
  color: var(--clr-light);
  font-size: var(--fnt-s);
  font-weight: 600;
  font-family: var(--fnt-primary);
  letter-spacing: 1px;
  min-width: 120px;
  text-align: center;
  text-transform: capitalize;
}



.md #md_carousel2 .owl-nav .owl-prev,
.md #franchise_carousel .owl-nav .owl-prev {
  left: clamp(-35px, 2.5vw, -60px);
  font-size: clamp(25px, 2.5vw, 50px)
}

.md #md_carousel2 .owl-nav .owl-next,
.md #franchise_carousel .owl-nav .owl-next {
  right: clamp(-35px, 2.5vw, -60px);
  font-size: var(--fnt-h2)
}

.md #md_carousel2 .owl-nav .owl-prev:hover,
.md #franchise_carousel .owl-nav .owl-prev:hover,
.md #md_carousel2 .owl-nav .owl-next:hover,
.md #franchise_carousel .owl-nav .owl-next:hover {
  color: var(--clr-primary)
}

.md .beforeAfter_gall .et_pb_gallery_item img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.md #md_carousel2 .owl-stage,
.md #franchise_carousel .owl-stage {
  -webkit-box-shadow: 0 0 15px 1px rgb(0 1 0 / 15%);
  box-shadow: 0 0 15px 1px rgb(0 1 0 / 15%);
}

.md #md_carousel2 .owl-dots .owl-dot span,
.md #franchise_carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border: 2px solid var(--clr-primary);
  background-color: transparent;
  border-radius: 50%;
  margin: 0px 6px 0 0 !important;
}

.md #franchise_carousel .owl-dots {
  margin-top: 25px
}

.md #md_carousel2 .owl-dots .owl-dot.active span,
.md #franchise_carousel .owl-dots .owl-dot.active span {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
}


.md #md_carousel2 .owl-dots,
.md #franchise_carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.md.home .md__r-beforeAfterTitle {
  padding-top: 25em;
}

.md.page-about-us .md__r-beforeAfterTitle {
  padding-top: 5em;
}

.md .s_location_menu {
  padding: 0;
}

.md #location_menu .et-menu {
  justify-content: space-between;
  margin-left: 0;
  margin-right: 0;
}

.md #location_menu .et-menu>li {
  flex: 1;
}

.md .location_menu .et-menu li>a {
  display: inline-block;
  height: auto;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 600;
  padding: .95em 2em;
  text-align: center;
  width: 100%;
}

.md .location_menu .et-menu li:hover>a,
.md .location_menu .et-menu li.current-menu-item>a {
  background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
  background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
  color: white;
  opacity: 1;
}

.md .location_menu .et-menu-nav>ul>li {
  display: block;
  margin-top: 0;
  padding: 0;
}

.md .location_menu .et-menu-nav>ul>li.all_location {
  display: none;
}

.md .location_menu .et-menu-nav>ul>li:last-of-type {
  border: 0;
}

.md #location_menu .et_pb_menu__wrap,
.md #location_menu .et-menu-nav,
.md #location_menu .et-menu,
.md #location_menu .et_pb_menu__menu {
  width: 100%;
}

.md .footer_loc_menu {
  margin-left: 2rem;
}

.md .footer_main_menu .et-menu,
.md .footer_loc_menu .et-menu {
  flex-direction: column;
  margin-top: 2rem;
}

.md .footer_main_menu .et-menu li a,
.md .footer_loc_menu .et-menu li a {
  font-weight: 700;
  font-size: 1rem;
}

.md .footer_contact .et_pb_blurb_container {
  padding-left: 10px;
}

.md .footer_contact .et_pb_main_blurb_image {
  width: 1.5rem;
}

.md .footer_contact .et_pb_blurb_content {
  padding-left: 1rem
}

.md .request_btn {
  font-weight: 700;
  font-size: 1rem;
}

.md .terms_menu .et-menu li a {
  font-size: .9rem;
  padding-bottom: 0;
}

.md .terms_menu .et-menu>li {
  border-right: 2px solid rgba(255, 255, 255, .5);
}

.md .terms_menu .et-menu>li:last-of-type {
  border-right: 0;
}


#main-header .container.et_menu_container {
  margin-top: 15px;
}

.md #top-header .phone_link a,
.md .phone_link a {
  color: #27b48c;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 12px 0;
  width: fit-content;
}

.md #top-header .phone_link a::before,
.md .phone_link a::before {
  content: "\e090";
  display: inline-block;
  font-family: etmodules;
  font-size: 1.25rem;
  z-index: 99;
  color: var(--clr-primary);
  position: relative;
  margin-right: 5px;
}

.md #top-header .container {
  padding-top: 0;
}

.et_header_style_left #logo {
  max-width: 150px;
}

.md #mute_btn {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  bottom: 10px;
  right: 5px;
}

.md #mute_btn.muted {
  background: rgba(0, 0, 0, 0.7);
  color: #ccc;
}

@media only screen and (max-width: 1600px) {
  .md #top-menu li a {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1440px) {
  :root {
    --fnt-global: 1rem;
  }

  .md #top-menu li a {
    font-size: 15px;
    letter-spacing: -.5px;
  }

  .md .cart_img {
    -webkit-transform: scale(1.85);
    -ms-transform: scale(1.85);
    transform: scale(1.85);
    -webkit-transform-origin: 18% 0;
    -ms-transform-origin: 18% 0;
    transform-origin: 18% 0;
  }

  .md .full_map .et_pb_map {
    min-height: 580px;
  }
}

@media all and (min-width: 981px) and (max-width:1280px) {
  .md #top-menu li a {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-left: calc(8px + (16 - 8) * ((100vw - 981px) / (1280 - 981))) !important;
    padding-right: calc(8px + (16 - 8) * ((100vw - 981px) / (1280 - 981))) !important;
  }

  #logo {
    max-height: 65% !important
  }

  #main-header .container {
    width: 85%
  }
}

@media only screen and (max-width: 1280px) {
  :root {
    --fnt-global: var(--fnt-global);
  }


  .md .md__s-hero:before {
    right: -50px;
    width: 78vw;
  }

  .md #top-menu li a {
    font-size: var(--fnt-xs);
  }

  .md .location_menu .et-menu li>a {
    font-size: 1rem;
  }

  .md.et_header_style_left #et-top-navigation {
    padding-left: 150px !important;
  }

  .md .hero_txt h1 {
    font-size: calc(var(--fnt-h5) + 2vw);
  }

  .md .split_img img {
    height: auto;
  }

  .md .md__r-services {
    width: 90%;
  }
}

@media only screen and (max-width: 980px) {
  :root {
    --fnt-global: var(--fnt-gm);
  }

  .md .phone_link.hide_on_desktop {
    display: flex !important;
    position: relative;
    z-index: 90;
    justify-content: center;
    align-items: center;
  }

  .md #mobile_menu .phone_link {
    display: none;
  }

  .md.et_header_style_left #et-top-navigation {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #main-header .container.et_menu_container {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .md #main-header .mobile_nav .mobile_menu_bar span:before {
    color: var(--clr-primary);
  }

  #mobile_menu .menu_closed,
  #mobile_menu .menu_closed:before {
    color: var(--clr-light);
  }

  .md #main-header.et-fixed-header {
    background-color: transparent;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }

  .md .md__s-hero {
    min-height: 480px;
  }

  .md .md__s-hero .et_pb_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 4em 0 2em;
  }

  .md .hero_img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .md #main-header #mobile_menu {
    background-image: -o-linear-gradient(320deg, var(--clr-secondary), var(--clr-primary));
    background-image: linear-gradient(130deg, var(--clr-secondary), var(--clr-primary));
    background-color: var(--clr-secondary);
  }

  .md .service_blrb {
    max-width: 480px;
    margin: 0 auto;
  }

  .md .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .md .flex.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .md .flex.reverse>div:first-child,
  .md .md__r-servicetxt>div:first-child {
    margin-bottom: 0;
    margin-top: 30px;
  }

  .md .beforeAfter_cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .md .beforeAfter_cta .et_pb_promo_description {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
    padding-right: 0;
  }

  .md .beforeAfter_cta .et_pb_button_wrapper {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-top: 25px;
  }

  .md .md__r-servicetxt .et_pb_module {
    text-align: center;
  }

  .md .md__r-about {
    padding-top: 4em;
  }

  .md .cart_img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }

  .md .md__r-reviews {
    padding: 5em 0;
  }

  .md .list_txt li:before {
    height: 21px;
    width: 21px;
    top: 5px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .md .list_txt li {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 35px;
  }

  .md .md__s-hero:before {
    height: 200px;
    width: 200px;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }

  .md .md__s-hero.page {
    padding: 6em 0 10em !important;
  }

  .md .md__c-choosebec2 {
    padding: var(--spacing-50);
    -webkit-box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.23);
    box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.23);
  }

  .md .project_img {
    min-height: 320px;
  }

  .md .quote,
  .md .list_txt.v2 {
    padding: var(--spacing-50);
  }

  .md .md__r-split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .md .md__r-split.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .md .md__r-split.reverse .md__c-split1,
  .md .md__r-split .md__c-split2 {
    max-width: 80%;
    width: 100%;
  }

  .md .md__r-split.reverse .md__c-split2,
  .md .md__r-split .md__c-split1 {
    max-width: 100%;
    padding: 0;
    width: 100%;
    margin-bottom: var(--spacing-40);
  }

  .md-col-house-washing {
    margin-top: 0 !important
  }

  .md .list_txt.v2 {
    margin-bottom: 35px !important;
  }

  .md .full_map .et_pb_map {
    min-height: 350px;
  }

  .md .md__r-services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 95%;
  }

  .md .md__r-services>div {
    -ms-flex-preferred-size: 31.33%;
    flex-basis: 31.33%;
    margin-right: 3.005%;
  }

  .md .info_txt ul {
    padding: 0;
  }

  .md .call_txt h4 {
    font-size: var(--fnt-h4);
  }

  .md .service_blrb {
    padding: 35px;
  }

  .md #md_carousel2 .owl-nav .owl-prev span:before,
  .md #md_carousel2 .owl-nav .owl-next span:before,
  .md #frachise-carousel .owl-nav .owl-prev span:before,
  .md #frachise-carousel .owl-nav .owl-next span:before {
    color: var(--clr-primary);
    font-size: 75px;
  }

  .md.home .md__r-beforeAfterTitle {
    padding-top: 16em;
  }

  .landing-bg .et_pb_row {
    margin: 0 5%;
  }


  .row-stacking-order {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .first-on-mobile {
    -webkit-order: 1;
    order: 1;
    margin-bottom: 30px;
  }

  .second-on-mobile {
    -webkit-order: 2;
    order: 2;
  }

  .md .location_menu .et_pb_menu__menu,
  .md .footer_main_menu .et_pb_menu__menu,
  .md .footer_loc_menu .et_pb_menu__menu,
  .md .terms_menu .et_pb_menu__menu {
    display: flex;
  }

  .md .location_menu .et_mobile_nav_menu,
  .md .footer_main_menu .et_mobile_nav_menu,
  .md .footer_loc_menu .et_mobile_nav_menu,
  .md .terms_menu .et_mobile_nav_menu {
    display: none;
  }

  .md .location_menu .et-menu li>a {
    line-height: 1.2;
    font-size: clamp(.8rem, 1.5vw, 1rem);
    padding: .9em 1.2em;
  }

  .md .s_main_footer .et_pb_row {
    display: flex;
  }

  .md .footer_loc_menu .et_pb_menu__wrap {
    justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }

  .md .footer_main_menu {
    margin-left: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --fnt-global: var(--fnt-gm);
  }

  .et_header_style_left #logo {
    max-width: 100px;
  }

  .md a[href*="tel"] {
    pointer-events: all;
  }

  .md .md__s-hero .et_pb_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2em 0;
  }

  .md .hero_img img {
    max-width: 480px;
    width: 80%;
  }

  .md .list_txt li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-right: 0;
  }

  .md.page-about-us .md__r-reviews {
    padding-top: 2em;
  }

  .md .pageHero_img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .md .hero_txt h1 {
    font-size: calc(var(--fnt-h1) + 2vw);
  }

  .md .project_img {
    min-height: 250px;
    height: 25vh;
  }

  .md .info_txt li {
    font-size: var(--fnt-xs);
  }

  .md .md__r-services {
    display: block;
    width: 85%;
  }

  .md .md__r-services>div {
    margin-right: 0;
  }

  .md #md_carousel2 .owl-nav .owl-prev span:before,
  .md #md_carousel2 .owl-nav .owl-next span:before,
  .md #franchise_carousel .owl-nav .owl-prev span:before,
  .md #franchise_carousel .owl-nav .owl-next span:before {
    color: var(--clr-primary);
    font-size: 45px;
  }

  .md .beforeAfter_cta h2.et_pb_module_header {
    font-size: var(--fnt-h2);
  }

  .md .quote ul {
    padding-left: 0;
  }

  .md .footnav_txt li {
    margin: 0 10px;
  }

  .md .footnav_txt ul,
  .md .credit_txt {
    max-width: 80%;
    margin: 0 auto;
  }

  .md .hero_txt hr,
  .md .quote hr {
    height: 65px;
  }

  .testmonials-v2 .content {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .md .s_main_footer .et_pb_row {
    flex-wrap: wrap;
  }

  .md .s_main_footer .et_pb_row>div:nth-child(2),
  .md .s_main_footer .et_pb_row>div:nth-child(3) {
    width: 50%;
  }

  .md .footer_main_menu,
  .md .footer_loc_menu {
    margin-left: 0;
  }

  .md .footer_loc_menu .et_pb_menu__wrap {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
  }

  .md .footer_contact .et_pb_blurb_content {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 479px) {
  :root {
    --fnt-global: var(--fnt-gs);
  }

  .md #top-header .phone_link a,
  .md .phone_link a,
  .md .phone_link a::before,
  .md #top-header .phone_link a::before {
    font-size: 1rem;
  }

  .md .quote,
  .md .md__c-choosebec2,
  .md .list_txt.v2 {
    padding: 40px 35px;
  }

  .md .service_blrb {
    padding: 40px;
  }

  .md .hero_txt h1 {
    font-size: calc(var(--fnt-h2) + 2vw);
  }

  .md.home .md__r-beforeAfterTitle {
    padding-top: 12em;
  }

  .md .beforeAfter_gall .status {
    padding: 12px 18px;
    font-size: var(--fnt-x);
    min-width: 80px;
  }

  .md .quote li a {
    word-wrap: break-word;
    word-break: break-all;
  }

  .md #md_carousel3 {
    padding: 40px 30px 50px;
  }

  .md .review_test .et_pb_testimonial_content h2 {
    font-size: var(--fnt-h6);
  }

  .md .review_test .et_pb_testimonial_portrait {
    height: 24px !important;
    margin-bottom: 25px !important;
  }

  .md .hero_txt hr,
  /* .md .chooseus hr, */
  .md .quote hr {
    height: 45px;
  }

  .md .project_img {
    min-height: 200px;
  }

  .md .split_txt ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    padding-left: 25px;
  }

  .md .list_txt li {
    font-size: 16px !important
  }

  .btn-sm-gradient {
    min-width: 200px !important
  }

  .testmonials-v2 .dica-container .swiper-button-prev,
  .testmonials-v2 .dica-container .swiper-button-next,
  .fullwidth-image-slider .swiper-button-prev,
  .fullwidth-image-slider .swiper-button-next {
    display: none !important
  }

  .md #md_carousel2 .owl-dots .owl-dot span,
  .md #franchise_carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin-right: 3px !important
  }

  .md .md__c-choosebec1,
  .md .md__c-choosebec2 {
    padding: 1.5em !important
  }

  .md .md__c-choosebec1 .et_pb_button {
    min-width: 205px
  }

  .md .testimonial-rating {
    display: block
  }

  .md .testimonial-text {
    font-size: 15px
  }

  .md .footer_main_menu .et_pb_menu__wrap,
  .md .footer_loc_menu .et_pb_menu__wrap {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
  }

  .md .footer_main_menu .et-menu,
  .md .footer_loc_menu .et-menu {
    margin-top: 0;
  }

  .md .location_menu .et-menu li>a {
    font-size: clamp(11px, 1.5vw, 1rem);
  }

  .md .md__r-split {
    gap: 20px;
  }
}

@media only screen and (max-width: 400px) {
  .md .location_menu .et-menu li>a {
    font-size: clamp(9px, 1.25vw, 1rem);
    letter-spacing: -.5px;
  }

  .md .location_menu .et-menu li.current-menu-item>a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .md #top-header .phone_link a,
  .md .phone_link a,
  .md .phone_link a::before,
  .md #top-header .phone_link a::before {
    font-size: .85rem;
  }
}

@media only screen and (max-width: 350px) {

  .md #top-header .phone_link a,
  .md .phone_link a,
  .md .phone_link a::before,
  .md #top-header .phone_link a::before {
    font-size: .85rem;
  }

  .md .phone_link a span {
    display: none;
  }
}

/***** NEWS & BLOGS PAGE*****/

/* LATEST NEWS */
.latest-news .dgbc_carousel_wrapper .swiper-buttton-container {
  justify-content: center;
}

.md .latest-news .dg_bc_title a {
  font-size: calc(17px + (24 - 20) * ((100vw - 320px) / (1920 - 320))) !important
}

.latest-news .post-meta {
  margin-top: 15px
}

.latest-news .content-wrapper {
  padding-left: 2px
}

.latest-news .swiper-container {
  padding-bottom: 35px
}

.latest-news .dg-post-thumb img,
.blog-feed .dg-post-thumb img {
  min-height: 260px
}

/* BLOGS */
.searchandfilter li.sf-field-search {
  padding: 20px 40px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  box-shadow: 1.414px 1.414px 45.39px 5.61px rgba(0, 1, 0, 0.18);
}

@media all and (max-width: 600px) {
  .searchandfilter li.sf-field-search {
    display: block;
    text-align: center
  }

  .searchandfilter li.sf-field-search input.sf-input-text {
    margin-top: 10px
  }
}

.sf-field-search h4 {
  padding: 0;
  color: #fff
}

.searchandfilter ul {
  padding: 0;
}

.blog-filter .sf-input-text {
  color: #1cae8d !important;
  font-size: 16px !important;
  border-radius: 10px !important;
  padding: 15px !important;
  min-width: 300px;
  border: none !important;
}

@media all and (max-width: 424px) {
  .blog-filter .sf-input-text {
    width: calc(200px + (300 - 200) * ((100vw - 320px) / (424 - 320)));
    min-width: auto
  }
}

.blog-filter .sf-input-text::placeholder {
  color: #1cae8d !important
}

.blog-filter .sf-field-category {
  margin-top: 25px
}

.blog-filter form ul li.sf-field-category ul li input {
  display: none;
}

.blog-filter form ul li.sf-field-category ul {
  display: flex;
  justify-content: center;
  padding-left: 0;
  flex-wrap: wrap;
  padding-bottom: 0
}

.blog-filter form ul li.sf-field-category ul li {
  font-size: calc(15.5px + (30 - 15.5) * ((100vw - 320px) / (1920 - 320)));
  color: #4e4746;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;
  cursor: pointer;
  margin-bottom: 15px;
}

.blog-filter form ul li.sf-field-category ul li hr {
  display: none;
}

.blog-filter form ul li.sf-field-category ul li.sf-option-active label {
  font-weight: 700
}

.blog-filter form ul li.sf-field-category ul li label {
  padding: calc(10px + (22 - 10) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
  color: #247ec1;
  font-weight: 400
}

.blog-feed .more-link,
.latest-news .read-more {
  background: linear-gradient(to right, #23b087, #247ec1 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.md .blog-filter form ul li.sf-field-category ul li hr {
  display: none;
}

.md .blog-filter form ul li.sf-field-category ul li label {
  padding: calc(10px + (22 - 10) * ((100vw - 320px) / (1920 - 320)));
  cursor: pointer;
  color: #247ec1;
  font-weight: 400
}

.md .blog-filter form ul li.sf-field-category ul li.sf-option-active label {
  font-family: 'Fredoka One', display !important;
  font-weight: 700;
  text-transform: uppercase;
}


/* IMAGE CAROUSEL */
.dica-container .swiper-button-prev:before {
  content: url("/wp-content/uploads/2021/10/arrow-prev.png")
}

.dica-container .swiper-button-next:before {
  content: url("/wp-content/uploads/2021/10/arrow-next.png");
  margin-left: 20px;
}

.dica-container .swiper-button-next:before,
.dica-container .swiper-button-prev:before {
  vertical-align: middle
}

.fullwidth-image-slider .dica-image-container img {
  margin: auto
}

/* IMAGE CAROUSEL */

/* from sb5 */
/***** GENERAL CSS *****/
.green-blue-gradient {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
}

.bg-gradient {
  background-image: -o-linear-gradient(left, #27b0de, #0b6ea3);
  background-image: -webkit-gradient(linear, left top, right top, from(#27b0de), to(#0b6ea3));
  background-image: linear-gradient(to right, #27b0de, #0b6ea3);
  background-color: #1b82c5;
}

.inner-page-title {
  /* display: flex; */
}

.md.et-db #et-boc .et-l .btn-white {
  border-radius: 20px;
  background-color: transparent;
  background-image: none;
  border: 2px solid white;
}

.md.et-db #et-boc .et-l .btn-white:hover {
  background-image: none;
  background-color: transparent;
}

.border-0 {
  border-width: 0 !important
}

#page-container .btn-green {
  background: #27b48b !important
}

#page-container .btn-green:hover {
  background: #2481c3 !important
}

.hr-green hr {
  border: none;
  height: 70px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  background-image: url(/wp-content/uploads/2020/02/curly-border-green.png);
  margin-bottom: 25px;
}

/***** HOME PAGE*****/
.landing-bg {
  display: flex;
}

.landing-hero-texts h1 {
  padding-bottom: 0;
  margin: 0
}


/* PACKAGE DEALS */
ul.package-deals {
  list-style: none;
  padding-bottom: 0;
  padding-left: 6px;
}

ul.package-deals label {
  font-weight: bold;
  margin-left: 20px
}

ul.package-deals li {
  display: flex;
  align-items: center;
}

ul.package-deals li:not(:last-child) {
  margin-bottom: 30px;
}

.package-deals input[type=checkbox] {
  -ms-transform: scale(2);
  /* IE */
  -moz-transform: scale(2);
  /* FF */
  -webkit-transform: scale(2);
  /* Safari and Chrome */
  -o-transform: scale(2);
  /* Opera */
  transform: scale(2);
  padding: 10px;
}

.package-deals-img {
  background-image: url(http://localhost/dev/boost-exterior/wp-content/uploads/2025/08/Exterior-House-Washing-in-Brisbane-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 585px;
  height: 0;
  padding-bottom: var(--ratio-classic);
  position: relative
}

.md .discount-applied {
  display: none;
  background-color: rgba(32, 159, 137, 0.8);
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px 10px
}


@media all and (min-width:1921px) and (max-width: 2560px) {
  .landing-hero-texts {
    padding-left: calc(365px + (686 - 365) * ((100vw - 1921px) / (2560 - 1921))) !important
  }
}

@media all and (min-width:981px) {
  .md .et_pb_button {
    font-size: calc(16px + (20 - 16) * ((100vw - 981px) / (1920 - 981)));
  }

  .landing-hero-texts {
    padding-left: calc(108px + (358 - 108) * ((100vw - 981px) / (1920 - 981)));
    padding-top: 3.5%;
    padding-bottom: 3.5%
  }

  #et-main-area .landing-bg {
    height: calc(560px + (820 - 560) * ((100vw - 981px) / (1920 - 981)));
  }

  .et_pb_pagebuilder_layout #et-main-area .landing-bg {
    height: calc(560px + (820 - 560) * ((100vw - 981px) / (1920 - 981))) !important;
  }

  .home.landing-hero-texts.et_pb_column {
    width: 56%
  }

  .services.inner-page.et_pb_column {
    width: 51%
  }

  .school-exterior-cleaning-sanitation.landing-hero-texts.et_pb_column {
    width: 65%
  }

  .news-and-blogs.landing-hero-texts.et_pb_column {
    width: 50%
  }

  .md .fs-55 h2 {
    font-size: var(--fnt-h2)
  }

  .fs-35 h3, .fs-36 h3 {
    font-size: var(--fnt-h3)
  }

  .fs-25 {
    font-weight: 700;
  }

  .fs-25,
  .fs-25 p,
  .footer-contact-details li,
  .md .list_txt li,
  h4.fs-25,
  ul.package-deals label,
  .md .discount-applied,
  .home-banner-paragraph p,
  .md .fs-list-25 li {
    font-size: var(--fnt-m);
  }

  .contact-form h2 {
    font-size: var(--fnt-h2);
  }

  .we-also-offering h2 {
    font-size: var(--fnt-h2);
  }

  .testmonials-v2 .dica-item-content {
    padding: 80px 50px;
  }

  .testmonials-v2 .content {
    padding: 10px 100px;
  }

  .testmonials-v2 .dica-container .swiper-button-prev {
    left: 95px;
  }

  .testmonials-v2 .dica-container .swiper-button-next {
    right: 95px;
  }

  .fullwidth-image-slider .dica-image-container img {
    max-width: calc(85% + (200 - 85) * ((100vw - 981px) / (1920 - 981))) !important;
    margin: auto
  }

  .vertical-tabs1 .et_pb_tab_content {
    padding: var(--spacing-80)
  }

  .vertical-tabs1 {
    padding-bottom: 40px
  }

  .col-lg-2 {
    display: flex;
    justify-content: center;
  }

  .col-lg-2 .et_pb_column {
    width: 31.3333%;
    margin-right: 3%
  }

  .md .latest-news .dg_bc_title {
    height: 65px !important;
  }

  .school-exterior-testimonial .dica-image-container {
    -ms-flex-preferred-size: 60%;
    flex-basis: 50%;
  }

  .school-exterior-testimonial .dica-item-content {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }

  .school-exterior-testimonial .dica-image-container img {
    min-height: 540px;
    object-fit: cover;
  }

  .school-exterior-testimonial .dica-item {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .business-we-have-worked-with {
    text-align: center
  }

  .about-us-testimonial-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .about-us-testimonial-col-1 {
    width: 47.5%;
    margin-right: 5%
  }

  .about-us-testimonial-col-2 {
    width: 47.5%
  }

  .md .pt-lg-0 {
    padding-top: 0 !important
  }

  .blog-feed article .entry-title {
    min-height: 100px
  }

}

@media all and (min-width: 1150px) {
  .business-we-have-worked-with {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px
  }
}

@media all and (max-width:980px) {
  .et_header_style_left #et-top-navigation .mobile_menu_bar {
    padding-bottom: 0
  }

  .md .landing-hero-texts {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .md .landing-hero-texts .et_pb_module:not(.et_pb_button_module_wrapper) {
    width: 100%;
  }

  .md .et_pb_button {
    font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (980 - 320))) !important;
    border-radius: calc(15px + (18 - 15) * ((100vw - 320px) / (980 - 320)));
  }

  .md .fs-55 h2 {
    font-size: calc(27px + (34 - 27) * ((100vw - 320px) / (980 - 320)));
  }

  .fs-25,
  .fs-25 p,
  .footer-contact-details li,
  .md .list_txt li,
  h4.fs-25,
  ul.package-deals label,
  .md .discount-applied,
  .md .fs-list-25 li {
    font-size: var(--fnt-s)
  }

  .mb-0 {
    margin-bottom: 0
  }

  .md .sm-pb-0 h2 {
    padding-bottom: 0
  }

  .we-also-offering h2 {
    font-size: var(--fnt-h2)
  }

  #page-container .spacing-0 {
    padding-top: 0 !important
  }

  #house_washing {
    margin-bottom: 0
  }

  .vertical-tabs1 {
    padding-bottom: 5px
  }

  .vertical-tabs1 .et_pb_tab_content {
    padding: calc(20px + (60 - 20) * ((100vw - 320px) / (980 - 320)))
  }

  .md .vertical-tabs1 .et_pb_tab_content h6 {
    margin-bottom: 3px
  }

  .testmonials-v2 .dica-item-content {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: calc(15px + (25 - 15) * ((100vw - 320px) / (980 - 320)));
    padding-right: calc(15px + (25 - 15) * ((100vw - 320px) / (980 - 320)))
  }

  .testmonials-v2 .dica-container .swiper-button-prev {
    left: 70px;
  }

  .testmonials-v2 .dica-container .swiper-button-next {
    right: 70px;
  }

  .school-exterior-testimonial .dica-item .image img {
    max-width: 70%;
    padding: 40px 40px 0 40px;
    margin: auto
  }

  .landing-bg h1 {
    font-size: calc(34px + (45 - 34) * ((100vw - 320px) / (1920 - 320)));
  }

  .business-we-have-worked-with {
    display: none
  }
}

@media all and (min-width: 420px) and (max-width:980px) {
  .md-col-2 {
    display: flex;
  }

  .md-col-2 .et_pb_column {
    margin-bottom: 0
  }
}

@media all and (max-width: 419px) {

  .md-col-2 .et_pb_column {
    margin-bottom: 0;
  }

  .md .md-col-2 {
    padding-bottom: 0;
  }
}

.contact-form h2 {
  color: var(--clr-base-1);
}

.contact-form .btn-send {
  width: 100% !important;
  color: #fff !important;
  border-radius: 20px !important;
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%) !important;
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%) !important;
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%) !important;
  cursor: pointer;
  font-weight: 700;
  font-weight: 18px
}

.contact-form .btn-send:hover {
  background-image: -o-linear-gradient(left, #27b0de, #0b6ea3) !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#27b0de), to(#0b6ea3)) !important;
  background-image: linear-gradient(to right, #27b0de, #0b6ea3) !important;
  background-color: #27b0de
}

.contact-form .input-message {
  border: none !important;
  background-color: #f0f0f0 !important
}

.md .nf_code .nf-field-container {
  margin-bottom: 12px;
}

.contact-form .nf-error-msg.f-error-field-errors {
  display: none
}


/* PAGINATION */
.wp-pagenavi a,
.wp-pagenavi span {
  border: none
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  color: #23b28a;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #247ec1
}


.footer-menu ul {
  text-align: center;
  padding-bottom: 0
}

.footer-menu li {
  margin: 0 20px;
  display: inline-block;
}

.footer-menu li a {
  color: #fff;
  font-weight: 600;
  -webkit-filter: opacity(0.88);
  filter: opacity(0.88);
  text-transform: capitalize;
  -webkit-transition: var(--trn-fast);
  -o-transition: var(--trn-fast);
  transition: var(--trn-fast);
}

.footer-menu li a:hover {
  -webkit-filter: opacity(1);
  filter: opacity(1);
}

.footer-contact-details ul {
  list-style: none;
  padding: 0
}

.footer-contact-details li {
  padding: 8px 0
}

.testimonial h4 {
  font-size: 24px;
  color: #000
}

.testimonial .dica-item-content {
  background-color: #fff !important;
  box-shadow: 0 0 15px 1px rgb(0 1 0 / 15%);
  margin: 15px;
}

@media all and (max-width:353px) {
  .testimonial .dica-item-content {
    box-shadow: 0 0 7px 1px rgb(0 1 0 / 18%);
    margin: 8px;
  }

  .sm-row-testimonial {
    width: 85%
  }

}

.testimonial .content {
  margin: auto
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px
}

.testimonial-rating p {
  padding-bottom: 0;
}

.testimonial-rating img {
  margin-right: 20px
}

#page-container .dica_divi_carousel .swiper-pagination-bullet {
  border: 2px solid var(--clr-primary);
  width: 15px !important;
  ;
  height: 15px !important;
  ;
  border-radius: 50% !important;
  margin-right: 6px !important;
  background-color: transparent !important;
}

.dica_divi_carousel .swiper-pagination-bullet-active,
#latest-news .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%) !important;
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%) !important;
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%) !important;
}

.text-gradient a {
  background: linear-gradient(to right, #23b389 0%, #2480c4 100%);
  -webkit-text-fill-color: transparent;
}

.swiper-pagination-bullets {
  margin-top: 15px
}

/* TABLET */
@media all and (min-width: 768px) and (max-width: 980px) {
  .landing-bg {
    background-position-x: 58%;
  }

  .md .landing-hero-texts {
    width: auto
  }

  .home-banner-paragraph p {
    font-size: 20px
  }

  .services-offered .et_pb_column {
    width: 31.3333%;
    margin-right: 3%
  }

  .building-services .button a {
    padding: 10px 30px !important;
    border-radius: 16px !important;
    font-size: 13px;
  }

  .dica-container .swiper-button-next:before {
    margin-left: 0
  }

  .dica-container .swiper-button-prev:before {
    margin-right: 0;
    transform: translateX(25px);
  }

  .md .testmonials-v2 .content {
    max-width: calc(300px + (400 - 300) * ((100vw - 768px) / (980 - 768)));
  }

  .md .latest-news .dg_bc_title {
    height: 60px !important;
  }

  .col-md-2 {
    display: flex;
    justify-content: center;
  }

  .col-md-2 .et_pb_column {
    width: 31.3333%;
    margin-right: 3%
  }
}

.building-services {
  display: flex;
}

.building-services img {
  box-shadow: 1.41px 1.41px 45.39px 5.61px rgb(0 0 0 / 18%);
}

.building-services .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}

.building-services:hover .overlay {
  display: block;
  background: rgb(39, 180, 140);
  background: linear-gradient(90deg, rgba(39, 180, 140, 0.5) 35%, rgba(40, 130, 197, 0.7791491596638656) 100%);
}

.building-services .button {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  text-align: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.building-services .button a {
  font-weight: 600;
  min-width: 200px;
  padding: 16px 48px;
  text-align: center;
  color: white;
  border: solid 2px white;
  border-radius: 20px;
  z-index: 1;
}

.building-services:hover .button {
  opacity: 1;
}

.services-offered .blurb-tiles img {
  margin-bottom: 30px
}

.services-offered .blurb-tiles h4,
.services-offered .blurb-tiles p {
  color: #000;
  transition-duration: 0.3s
}

.services-offered .blurb-tiles h4 {
  font-weight: 700;
  font-size: var(--fnt-h6);
}

.services-offered .blurb-tiles:hover h4,
.services-offered .blurb-tiles:hover p {
  color: #2481C3
}

.details {
  text-align: center
}



/* COMMERCIAL CLEANING PAGE */
.vertical-tabs1 {
  border: none;
}

.vertical-tabs1 ul.et_pb_tabs_controls {
  float: left;
  width: 38%;
  margin-right: 5%;
  background: transparent;
}

.vertical-tabs1 ul.et_pb_tabs_controls:after {
  content: none;
}

.vertical-tabs1 .et_pb_tabs_controls li {
  width: 100%;
  border: 2px solid var(--clr-primary) !important;
  border-radius: 20px;
  margin-bottom: var(--spacing-20);
  height: fit-content !important;
}

.vertical-tabs1 .et_pb_tabs_controls li.et_pb_tab_active {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
}

.vertical-tabs1 .et_pb_tabs_controls li a {
  display: block;
  padding: var(--spacing-24);
  text-align: center;
  font-size: var(--fnt-m);
  color: var(--clr-primary);
  font-family: var(--fnt-primary);
  font-weight: 600;
}

.commercial-tabs .et_pb_tabs_controls li>a[href="#"] {
  display: none;
}

.vertical-tabs1 .et_pb_tabs_controls li.et_pb_tab_active a {
  color: #fff !important;
}

.vertical-tabs1 .et_pb_tab {
  padding: 0;
}

.vertical-tabs1 .et_pb_tab_content {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 1px 1px 45.39px 5.61px rgba(0, 1, 0, 0.15);
}

.vertical-tabs1 .et_pb_tab_content h6 {
  color: var(--clr-primary);
  font-size: var(--fnt-m);
  font-family: var(--fnt-secondary);
  font-weight: bold;
}

@media(max-width:767px) {
  .vertical-tabs1 ul.et_pb_tabs_controls {
    float: none;
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .vertical-tabs1 .et_pb_tab {
    padding: 0;
  }

  .vertical-tabs1 .et_pb_tab_content {
    display: block;
  }

  .vertical-tabs1 .et_pb_tabs_controls li {
    display: table;
    margin-bottom: var(--spacing-10)
  }

  .services-offered .et_pb_code_inner {
    max-width: 350px;
    margin: auto
  }

  .md .testmonials-v2 .dica-item-content {
    box-shadow: 0 0 6px 2px rgb(0 1 0 / 15%);
    margin: 10px;
  }

  .md .testmonials-v2 .content {
    max-width: calc(300px + (400 - 300) * ((100vw - 320px) / (767 - 320)))
  }

  .testmonials-v2 .dica-container .swiper-button-prev {
    left: calc(10px + (45 - 10) * ((100vw - 320px) / (767 - 320)))
  }

  .testmonials-v2 .dica-container .swiper-button-next {
    right: calc(10px + (45 - 10) * ((100vw - 320px) / (767 - 320)))
  }

  .latest-news .swiper-container {
    padding-bottom: 0
  }

  .searchandfilter li.sf-field-search {
    padding: 20px
  }

  .services-offered .blurb-tiles img {
    margin-bottom: 10px !important
  }

  .services-offered .blurb-tiles h4 {
    padding-bottom: 5px
  }

  .services-offered .blurb-tiles h4 {
    padding-bottom: 5px
  }
}

.testmonials-v2 .content {
  max-width: 1000px;
  margin: auto;
}

.testmonials-v2 .dica-item-content {
  box-shadow: 0 0 30px 1px rgb(0 1 0 / 15%);
  background: #fff;
  margin: 28px 60px;
}

.testmonials-v2 .item-title {
  font-size: 24px !important
}

.testmonials-v2 hr {
  border: none;
  height: 45px;
  width: 100%;
  background-image: url(/wp-content/uploads/2020/02/curly-border.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 15px
}

#page-container .testmonials-v2 .swiper-pagination-bullet {
  background-color: #fff !important
}

.testmonials-v2 .dica-container .swiper-button-prev {
  top: -20px;
}

.testmonials-v2 .dica-container .swiper-button-next {
  top: -20px;
}

.get-a-free-quote.commercial-cleaning ul {
  margin-top: 20px;
  list-style: disc;
  padding-left: 1em;
}

.get-a-free-quote.commercial-cleaning li {
  font-weight: 600
}

.dots-inside .swiper-pagination-bullets {
  position: absolute;
  bottom: 0;
  margin-top: 0;
  background-color: rgb(255, 255, 255);
  opacity: 0.749;
  padding: 6px 0;
}

.text-center p,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center h6,
.text-center p {
  text-align: center;
}

.text-green h4 {
  color: var(--clr-secondary)
}

.school-exterior-testimonial .dica-container .swiper-container {
  box-shadow: 0 0 15px 1px rgb(0 1 0 / 15%);
}

.school-exterior-testimonial .dica-item {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.school-exterior-testimonial .dica-item-content {
  padding: 40px;
  justify-content: center;
  align-items: center;
}

#page-container .school-exterior-testimonial .dica-image-container {
  text-align: left;
  margin: auto
}

.school-exterior-testimonial .content {
  text-align: center
}

/* BLOG DETAILS TEMPLATE */
.blog-details .et_pb_section,
.blog-details .et_pb_row {
  padding: 0
}

.blog-details .et_pb_row {
  width: 100%
}

.blog-details h6 {
  padding-top: 25px;
  font-size: 24px
}

.blog-details h5 {
  padding-top: 20px;
}

.blog-details .post-content img {
  max-height: 487px;
  margin-bottom: 10px;
  object-fit: contain;
}

.md .search-blog .et_pb_searchsubmit {
  background-image: url(/wp-content/uploads/2021/10/search-icon.png);
  background-repeat: no-repeat;
  background-color: transparent;
  color: transparent;
  background-position: center;
}

#sidebar h4.widgettitle {
  color: var(--clr-secondary)
}

#sidebar #recent-posts-2 li a {
  color: var(--clr-dark);
  font-size: 16px
}

#sidebar #recent-posts-2 li a:hover {
  color: var(--clr-primary);
  font-size: 16px
}

.hover-link h2:hover {
  text-decoration: underline
}

/* FRANCHISE PAGE */

.md .blurb-flex {
  margin-top: 18px
}

.md .blurb-flex .et_pb_blurb_content {
  max-width: 100%;
  display: flex;
  align-items: center;
}

.md .blurb-flex .et_pb_module_header {
  padding-bottom: 0
}

.md .blurb-flex .et_pb_main_blurb_image {
  margin-bottom: 0;
  margin-right: 5px;
  min-width: 80px;
}

.md .blurb-flex .et_pb_module_header {
  padding-bottom: 0
}

.md .blurb-flex .et_pb_blurb_description p {
  font-weight: 700
}

.md .list-indent ul {
  margin-left: 5%
}

.md .franchise-carousel-img .et_pb_code_inner {
  display: flex;
  align-items: stretch;
}

.md .franchise-carousel-img .franchise-img-text::after {
  font-family: var(--fnt-primary);
  color: #fff;
  position: absolute;
  bottom: 20px;
  font-size: var(--fnt-h2);
  font-weight: 600;
}

.md .franchise-carousel-img .before-text::after {
  content: "BEFORE";
  bottom: 20px;
  left: 50px;
}

.md .franchise-carousel-img .after-text::after {
  content: "AFTER";
  right: 50px;
}

.md .franchise-contact-footer li {
  font-size: calc(13px + (20.5 - 13) * ((100vw - 320px) / (1920 - 320))) !important
}

.md .start-a-franchise {
  background-color: #27b48c;
  font-weight: 700;
  border-radius: 0 0 20px 20px;
  padding: 12px
}

.md .start-a-franchise:hover {
  background-color: var(--clr-primary);
}

.et_fixed_nav #top-header {
  visibility: visible;
  height: auto;
  opacity: 1 !important
}

.et_fixed_nav #top-header.et-fixed-header {
  visibility: hidden;
  height: 0
}

.et_fixed_nav #main-header.et-fixed-header {
  top: 0 !important
}

a {
  text-decoration: none !important
}

.md__r-footnav span a:hover {
  color: #2d282a !important;
  text-decoration: none;
}

.md .min-input {
  font-size: 12px;
  padding-bottom: 0
}

.md__r-footnav p {
  font-size: 13px !important;
}

/** added **/
.locationInfo .et_pb_column:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

.locationInfo .et_pb_module.et_pb_text {
  padding-top: 0;
  padding-bottom: 0;
}

.locationInfo .locationTable td {
  border: unset;
  padding: 0 0 10px;
}

#main-content .locationInfo .locationTable {
  /* margin-top: 20px; */
  border: unset;
}

.locationInfo .locationTable td.headerTd {
  color: #22a88e;
}

.locationInfo .locationTable td:last-child {
  font-weight: bold;
  padding-left: 20px;
}

.locationInfo .locationTable td a {
  color: #000;
}

.locationInfo .locationTable td a:hover {
  color: #22a88e;
}

.md #main-content .boost-faq h3 {
  color: #1cae8d !important;
}

.md #main-content .boost-content .ul-styled2 li {
  color: #1cae8d;
}

.blurbBtn {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: all ease 300ms;
}

.blurbBtn span {
  opacity: 1;
  z-index: 2;
  position: relative;
  font-size: 1rem;
  color: #fff;
  border: 2px solid #ffffff;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  min-width: 220px;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 64px;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  transition: all ease 300ms;
  cursor: pointer;
}

.blurbBtn:after {
  content: '';
  background-image: url(/wp-content/uploads/2023/08/button-bg.jpg);
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: .5;
}

.blurbWbtn .et_pb_main_blurb_image:hover .blurbBtn {
  opacity: 1;
}

.blurbWbtn .et_pb_main_blurb_image {
  cursor: pointer;
}

.blurbWbtn .et_pb_blurb .et_pb_module_header {
  font-size: var(--fnt-h6);
}

/* .md .col-equal.md__r-split { */
/* display: block; */
/* } */

.gc-specialist ul.package-deals label {
  margin-left: 0;
  padding: 10px 20px 15px;
  border: 3px solid var(--clr-primary);
  width: 100%;
  cursor: pointer;
  transition: all ease 300ms;
}

.gc-specialist ul.package-deals label .spanTxt {
  margin-left: 2.5em;
}

.gc-specialist ul.package-deals label input {
  opacity: 0;
}

.gc-specialist ul.package-deals label .spanTxt:before {
  content: '+';
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 0;
  border-radius: 1px;
  -webkit-transition: .2s;
  transition: .2s;
  margin-left: -1.5em;
  font-size: 30px;
}

.gc-specialist ul.package-deals label.active .spanTxt:before {
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  margin-left: -1.7em;
  color: transparent;
}

.gc-specialist ul.package-deals label:hover,
.gc-specialist ul.package-deals label.active {
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-color: #23b087;
  background-color: #1b82c5;
  border: 3px solid #fff;
}

.gc-specialist ul.package-deals label .spanTxt {
  display: block;
}

.gc-specialist ul.package-deals label input {
  position: absolute;
}

.gc-specialist ul.package-deals label:hover .spanTxt,
.gc-specialist ul.package-deals label.active {
  color: #fff;
}

.gold-coast-specialist-slider .et_pb_slide_description,
.gold-coast-specialist-slider .et_pb_slide {
  padding: 0;
}

.gcs-slider-section {
  width: 100%;
  padding: 0;
}

.gcs-slider-section {
  width: 100%;
  padding: 0;
}

.gold-coast-specialist-slider .et_pb_slide_content>div {
  padding: 0;
}

.gcs-slider-section .et_pb_column:first-child {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
}

.gcs-slider-section .et_pb_column:first-child .first_line {
  font-size: clamp(18px, 3vw, 35px);
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 0;
}

.gcs-slider-section .et_pb_column:first-child h2 {
  font-weight: 700;
  font-size: clamp(20px, 5vw, 84px);
  padding-bottom: 0;
}

.gcs-slider-section .et_pb_column:first-child .last_line {
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.3;
  padding: 0 20px;
}

.md .gcs-slider-section .et_pb_button {
  background-color: unset;
  background-image: unset;
}

.gold-coast-specialist-slider .et_pb_slider .et_pb_container {
  height: auto !important;
  margin: 50px auto 0;
}

.gcs-map .et_pb_column .full_map .et_pb_map,
.gcs-map .et_pb_column .full_map,
.gcs-map .et_pb_column {
  height: inherit;
  overflow: hidden;
  min-height: unset;
}

.md .gcs-map {
  margin-bottom: 0;
  margin-top: 5em;
}

.boost-blog .dg-post-thumb {
  margin-bottom: 30px;
}

.boost-blog .post-content,
.md .boost-blog .dg_bc_title {
  margin-bottom: 20px;
}

.md .boost-blog .dg_bc_title {
  font-size: clamp(18px, 5vw, 25px);
}

.boost-blog .read-more {
  font-size: clamp(15px, 3vw, 20px);
  text-transform: uppercase;
  font-weight: bold;
  background: linear-gradient(to right, var(--clr-secondary) 0%, var(--clr-primary) 100%);
  -webkit-text-fill-color: transparent;
  letter-spacing: 0px;
}

.md #main-content .boost-faq h3,
.md #main-content .package_deals_sect.gc-specialist .spanTxt {
  font-size: var(--fnt-m);
}

.gold-coast-specialist-slider .et_pb_slide * {
  background-color: transparent;
}

.gold-coast-specialist-slider .et_pb_slide * {
  background-color: transparent;
}

.gold-coast-specialist-slider .et_pb_slider .et-pb-controllers .et-pb-active-control {
  background-image: -moz-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -webkit-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  background-image: -ms-linear-gradient(-26deg, rgb(35, 179, 137) 0%, rgb(36, 128, 196) 100%);
  width: 15px;
  height: 15px;
  border: 2px solid var(--clr-primary);
  background-color: transparent;
  border-radius: 50%;
  margin: 0px 6px 0 0 !important;
}

.gold-coast-specialist-slider .et_pb_slider .et-pb-controllers a {
  width: 15px;
  height: 15px;
  border: 2px solid var(--clr-primary);
  background-color: transparent;
  border-radius: 50%;
  margin: 0px 6px 0 0;
}

.becf-banner-section h1 {
  font-size: clamp(45px, 5vw, 65px);
}

.boost-content #house-washing {
  display: none;
}

.boost-content .list_txt .ul-styled {
  list-style-type: none;
  display: unset;
  display: unset;
  display: block;
  -ms-flex-flow: unset;
  flex-flow: unset;
  padding: 0;
  margin-top: 0.5em;
  margin-left: 2.4em;
  margin-bottom: 1.5em;
}

.md #main-content .boost-content .list_txt .ul-styled3 li,
.md #main-content .boost-content .list_txt .ul-styled-blk li,
.md #main-content .boost-content .list_txt .ul-styled-icon li {
  font-size: clamp(16px, 5vw, 18px);
  margin-bottom: 15px;
}

.md #main-content .boost-content .list_txt .ul-styled2 li:before {
  background-image: url(/wp-content/uploads/2023/03/check-green.png);
}

.md #main-content .boost-content p {
  padding-bottom: 30px;
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:first-child::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon1.png);
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:nth-child(2)::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon2.png);
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:nth-child(3)::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon3.png);
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:nth-child(4)::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon5.png);
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:nth-child(5)::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon6.png);
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:nth-child(6)::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon7.png);
}

.md #main-content .boost-content .list_txt .ul-styled-icon li:last-child::before {
  background-image: url(/wp-content/uploads/2023/08/list-icon8.png);
}

.boost-content .list_txt .ul-styled li:before {
  background-image: url(/wp-content/uploads/2023/03/check-green.png);
}

.md #main-content .boost-content .list_txt .ul-styled3 li {
  color: #000;
}

#main-content .gcs-long-section .contact-form h2 {
  font-size: clamp(30px, 5vw, 40px);
}

.md #main-content .gcs-long-section .quote {
  align-items: baseline;
}

.md #main-content .green-strip p {
  font-size: clamp(18px, 5vw, 28px);
  font-weight: bold;
  line-height: 1.3;
}

.md #main-content .green-strip .we-also-offering {
  margin-bottom: 0;
}

.md #main-content .green-strip .et_pb_button {
  background-image: unset;
  background-color: unset;
  border: 3px solid #fff !important;
}

#main-header .logo_container {
  display: flex;
}

.md #top-menu li>a {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.md .logo_container a {
  padding-right: 20px;
}

.md .logo_container .logo_separator {
  border-left: 1px solid #eee;
  padding-left: 20px;
  height: 70px;
  margin-top: 10px;
}

.md .logo_container a:last-child {
  padding-right: 0;
}

.gcs-map .et_pb_image_wrap,
.gcs-map img {
  width: 100%;
}

#main-header .logo_container a {
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
}

#main-header.et-fixed-header .container.et_menu_container {
  margin-top: 0;
}

.gcs-slider-section .et_pb_column:first-child>.et_pb_module>div {
  margin-top: 5em;
}

/** general **/

/** media screen **/

@media screen and (min-width:1921) {
  .md .locationInfo h2 {
    font-size: 45px;
  }

  .md .locationInfo .et_pb_button {
    font-size: 20px;
  }
}

@media screen and (min-width:981px) and (max-width:1921px) {}

@media screen and (min-width:981px) and (max-width:1250px) {
  .locationInfo .et_pb_column:first-child {
    width: calc(450px + (700 - 450) * ((100vw - 981px) / (1250 - 981)));
  }
}

@media screen and (min-width:981px) {}

@media screen and (max-width:980px) {
  .locationInfo .et_pb_column:first-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width:600px) {
  table.locationTable .mail_link {
    word-break: break-all;
  }
}