@charset "utf-8";

/*-----FONTS-----*/
@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Light.eot");
  src: url("../fonts/Figtree-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Light.woff2") format("woff2"),
    url("../fonts/Figtree-Light.woff") format("woff"),
    url("../fonts/Figtree-Light.ttf") format("truetype"),
    url("../fonts/Figtree-Light.svg#Figtree-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Regular.eot");
  src: url("../fonts/Figtree-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Regular.woff2") format("woff2"),
    url("../fonts/Figtree-Regular.woff") format("woff"),
    url("../fonts/Figtree-Regular.ttf") format("truetype"),
    url("../fonts/Figtree-Regular.svg#Figtree-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Medium.eot");
  src: url("../fonts/Figtree-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Medium.woff2") format("woff2"),
    url("../fonts/Figtree-Medium.woff") format("woff"),
    url("../fonts/Figtree-Medium.ttf") format("truetype"),
    url("../fonts/Figtree-Medium.svg#Figtree-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-SemiBold.eot");
  src: url("../fonts/Figtree-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-SemiBold.woff2") format("woff2"),
    url("../fonts/Figtree-SemiBold.woff") format("woff"),
    url("../fonts/Figtree-SemiBold.ttf") format("truetype"),
    url("../fonts/Figtree-SemiBold.svg#Figtree-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-Bold.eot");
  src: url("../fonts/Figtree-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-Bold.woff2") format("woff2"),
    url("../fonts/Figtree-Bold.woff") format("woff"),
    url("../fonts/Figtree-Bold.ttf") format("truetype"),
    url("../fonts/Figtree-Bold.svg#Figtree-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-ExtraBold.eot");
  src: url("../fonts/Figtree-ExtraBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Figtree-ExtraBold.woff2") format("woff2"),
    url("../fonts/Figtree-ExtraBold.woff") format("woff"),
    url("../fonts/Figtree-ExtraBold.ttf") format("truetype"),
    url("../fonts/Figtree-ExtraBold.svg#Figtree-ExtraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body,
html {
  font-family: var(--font-family);
  color: var(--secondary);
  line-height: 26px;
  font-size: 16px;
}

header {
  background: var(--theme);

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
a.headlogo {
  padding: 10px 0;
  display: inline-block;
  max-width: 150px;
}
.container {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container:before,
.container:after {
  display: none;
}

.headright {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.headphone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;

  & span {
    margin: 0 10px 0 0;
  }

  & p {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    max-width: 220px;
    line-height: 26px;

    & a {
      font-size: 30px;
      font-weight: 800;
      color: var(--black);
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

p a,
p span,
ul li a,
ol li a {
  color: var(--theme);
  text-decoration: underline;
  display: inline-block;
}

p span {
  color: initial;
}

/*  select option */
::-ms-expand {
  display: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/select-arrow.svg) no-repeat right 10px center / 1em;
  border-radius: 0;
  padding-right: 2em;
}

::-moz-selection {
  color: #fff;
  background: var(--theme);
}

::selection {
  color: #fff;
  background: var(--theme);
}

/*-----FORM CONTROL-----*/
.form-group {
  padding: 0 10px;
}

.form-group.form-group50 {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  float: left;
}

.form-group.form-group100 {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  float: left;
}

::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--white);
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Figtree";
}

::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--white);
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Figtree";
}

:-ms-input-placeholder,
textarea::placeholder {
  color: var(--white);
  text-transform: capitalize;
  font-size: 14px;
  font-family: "Figtree";
}

/*  select option  */

input:invalid {
  box-shadow: none;
}

input[type="text"],
input[type="tel"],
input[type="number"] input[type="submit"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Figtree";
}

textarea {
  resize: none;
  min-height: 100px;
  overflow: hidden;
  margin: 0;
  vertical-align: bottom;
  font-size: 18px;
}

.form-group {
  margin-bottom: 10px;
}

.form-control,
input[type="text"],
input[type="email"],
select,
textarea,
input[type="number"],
input[type="tel"],
input[type="file"] {
  width: 100%;
  /* min-width: 250px; */
  padding: 17px 20px;
  background: var(--black);
  border: 0px solid var(--black);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  border-radius: 10px;
  margin: 0;
  min-height: 50px;
  font-family: "Figtree";
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

select.form-control {
  background: url(../images/select-arrow.svg) no-repeat right 15px center
    var(--black) !important;
  padding-right: 40px;
}

textarea.form-control {
  height: auto;
  min-height: 129px;
}

.form-wrapper .form-control:focus {
  border-color: var(--theme) !important;
  box-shadow: inset 0px 0px 2px 2px rgb(0, 80, 157 / 78%);
}

.form-group.width50 {
  width: calc(50% - 10px);
}

.form-wrapper .form-group.width50 .form-control {
  min-width: auto;
}

input[type="submit"] {
  border: 0;
  background: transparent;
  font-size: 18px;
  color: #ffffff;
  font-family: "Figtree";
  font-weight: bold;
  padding: 17px 20px;
  z-index: 1;
  cursor: pointer;
}

.wpcf7-spinner {
  position: absolute;
  margin: 0;
  right: 0;
}

label {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}

/*  animation  */
/* @keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
} */

/*  slick common style for control */
.slick-dots li {
  height: auto;
  width: auto;
}

.slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: var(--theme);
  padding: 0;
  margin: 0;
  border-radius: 4px;
  opacity: 1;
}

.slick-dots li button:before {
  content: none;
}

.slick-dots li.slick-active button {
  width: 20px;
  opacity: 1;
}

.slick-next:before,
.slick-prev:before {
  content: none;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background-color: var(--white);
}

.slick-next:focus i,
.slick-next:hover i,
.slick-prev:focus i,
.slick-prev:hover i {
  color: #ffffff;
}

.slick-next:focus img,
.slick-next:hover img,
.slick-prev:focus img,
.slick-prev:hover img,
.btn_theme:hover img.small-black {
  filter: none;
}

/*---- theme content  ul styling -------*/
p,
ol li,
ul li {
  font-size: 16px;
  color: var(--secondary);
  line-height: 26px;
  margin-bottom: 30px;
}

/*-----BUTTONS-----*/
button,
.button,
button[type="submit"],
input[type="submit"] {
  font-size: 18px;
  padding: 18px 28px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  z-index: 1;
  border-radius: 10px;
  line-height: 1;
  text-decoration: none;
  justify-content: center;
  text-align: center;
  border: 0px solid transparent;
  font-family: "Figtree";
  background: var(--black);
  color: var(--white);
}

button:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--white);
  color: var(--black);
}

.submit-button input[type="submit"] {
  min-width: 170px;
  height: 60px;
  transform: unset;
  -moz-transform: unset;
  -webkit-transform: unset;
  clip-path: var(--skew-shape);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.btn-row a i,
.btn-outline i,
button img,
.button img {
  margin-right: 10px;
  display: inline-block;
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background-color: var(--white);
  line-height: 1.2;
}

.btn-row a:not(:last-child) {
  margin-right: 10px;
}

.btnlist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -8px;
}

.btnlist li {
  padding: 0px 8px;
}

a {
  text-decoration: none;
}

header nav ul {
  margin-left: 0;
  list-style-type: none;
}

header nav ul li a {
  text-decoration: none;
}

p a:hover,
ul li a:hover,
ol li a:hover {
  color: var(--darkblue);
}

@media (hover: hover) {
}

.relative {
  position: relative;
  z-index: 0;
}

[class*="heading-"],
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: "Figtree";
  text-transform: capitalize;
  font-weight: bold;
}

.heading-46 {
  font-size: clamp(1.625rem, 1.375rem + 1.25vw, 2.875rem);
}

.heading-44 {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.75rem);
}

.heading-40 {
  font-size: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem);
}

.heading-32 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
}

.heading-30 {
  font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
}

.heading-18 {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}

main {
  margin: 0;
}

/* landing page banner styles */
.landingbanner {
  background: var(--darkgrey);
  overflow: hidden;
  position: relative;

  .container {
    position: relative;

    .bannerleft {
      width: 50%;
      position: relative;
      min-height: 800px;
      display: flex;
      flex-wrap: wrap;
      align-content: center;

      &:before {
        content: "";
        position: absolute;
        clip-path: polygon(0 0, 100% 0%, 10% 100%, 0% 100%);
        background: var(--darkgrey);
        height: 100%;
        width: 100px;
        right: -6.5%;
        z-index: 1;
        opacity: 0.6;
      }

      &:after {
        content: "";
        position: absolute;
        clip-path: polygon(0 0, 100% 0%, 10% 100%, 0% 100%);
        background: var(--darkgrey);
        height: 100%;
        width: 100px;
        right: -5.4%;
        z-index: 1;
        top: 0;
      }

      .bannertxt {
        font-size: 90px;
        color: var(--theme);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 20px;

        & span {
          display: block;
          font-weight: 800;
          font-size: 50px;
          color: var(--white);
        }
      }

      .brnsmalltxt {
        color: var(--white);
        padding-right: 150px;
        margin-bottom: 30px;
      }
    }

    .bnrlistcontent {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-right: 80px;
      margin-bottom: 40px;

      & dl {
        display: flex;
        flex-wrap: nowrap;
        width: 48%;
        align-items: center;
        justify-content: flex-start;

        & dt {
        }

        & dd {
          color: var(--white);
          margin-inline-start: 0;
          padding: 0 0 0 20px;
          font-weight: 600;
        }
      }
    }

    .bnrimg {
      position: absolute;
      right: -212px;
      top: 0;
      height: 800px;
      width: 1013px;
      overflow: hidden;
      /* outline: 1px solid red; */

      & img {
        width: 100%;
        min-width: 1013px;
        height: 800px;
        z-index: 0;
      }
    }
  }

  .container.bnrbadges {
    position: absolute;
    max-width: 230px;
    top: 10%;
    left: 50%;
    margin: 0 0 0 -115px;
    z-index: 2;
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
  }

  .badgediv.googlerating {
    text-align: center;

    & p {
      position: absolute;
      bottom: 32px;
      font-weight: 600;
      padding: 0;
      text-align: center;
      line-height: 1.2;
      display: inline-block;
      width: 120px;
      left: 50%;
      margin: 0 0 0 -66px;

      & span {
        text-decoration: none;
        margin-right: 5px;
      }
    }
  }
}

.headright.bnrbtnbar .headphone p,
.headright.bnrbtnbar .headphone p a {
  color: var(--white);
}

.headright.bnrbtnbar .headphone span {
  box-shadow: 0 0 3px rgba(255, 255, 255, 1);
  border-radius: 50%;
}

.headright.bnrbtnbar a.button.headquotebtn {
  background: var(--theme);
  color: var(--black);
}

.headright.bnrbtnbar a.button.headquotebtn:hover {
  background: var(--white);
  color: var(--black);
}

.hm-content .headright a.button.headquotebtn:hover {
  background: var(--theme);
  color: var(--black);
}

/* before after styles */
.beforafter_sec {
  background: var(--lightgrey);
}

.beforafter_sec .heading-46 {
  text-align: center;
}

.before-after-slider .slick-slide {
  /* max-width: 800px; */

  margin: 0 30px;
}

.before-after-slider .slick-slide li {
  margin: 0;
  border: 0px solid var(--theme);
  overflow: hidden;
  border-radius: 30px;
}

.before-after-slider .slick-slide img {
  width: 100%;
}

.twentytwenty-handle {
  height: 60px;
  width: 60px;
  margin-left: -30px;
  margin-top: -30px;
  border: 3px solid var(--theme);
  background: var(--theme);
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  background: var(--theme);
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  box-shadow: none !important;
}

.headright.viewallbeforeafter {
  justify-content: center;
  margin-top: 40px;
}

.headright.viewallbeforeafter a.button:hover {
  background: var(--theme);
  color: var(--black);
}

/* slick slider arrows styles */
.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-prev {
  width: 32px !important;
  height: 32px !important;
  left: calc(50% - 50px) !important;
  bottom: -90px;
  top: inherit;
}

.slick-next {
  width: 32px !important;
  height: 32px !important;
  right: calc(50% - 50px) !important;
  bottom: -90px;
  top: inherit;
}

.slick-prev {
  background: url(../images/slider-left-arrow.svg) no-repeat center center !important;
  z-index: 1;
}

.slick-next {
  background: url(../images/slider-right-arrow.svg) no-repeat center center !important;
  z-index: 1;
}

.slick-prev:hover {
  background: url(../images/slider-left-arrow-hover.svg) no-repeat center center !important;
}

.slick-next:hover {
  background: url(../images/slider-right-arrow-hover.svg) no-repeat center
    center !important;
  z-index: 1;
}

/* simple step section styles */
.process_step_sec {
  background: var(--lightgrey);

  .heading-46 {
    text-align: center;
  }

  .stepcontainer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 -15px 30px;
    width: calc(100% + 30px);

    .stepbx {
      background: var(--darkgrey);
      padding: 30px;
      border-radius: 10px;
      width: calc(25% - 30px);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      align-content: flex-start;

      .stepicon {
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        min-height: 75px;
        justify-content: center;
      }

      .stepname {
        color: var(--white);
        width: 100%;
        font-size: 22px;
        text-align: center;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 20px;
      }

      p {
        margin: 0;
        color: var(--white);
        text-align: center;
        line-height: 1.48;
      }
    }
  }
}

.headright.stepbtnbar {
  justify-content: center;

  a.button.headquotebtn {
    background: var(--theme);
    color: var(--black);

    &:hover {
      background-color: var(--black);
      color: var(--white);
    }
  }
}

/* wide green cta style  */
.widegreen_cta {
  .cta_container {
    background: var(--theme);
    padding: 70px 100px;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    .greencta_left {
      width: 55%;

      .heading-32 {
        margin: 0 0 10px 0;
      }

      p {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        color: var(--black);
      }

      hr {
        border: 0px solid transparent;
        height: 1px;
        background: #7aa43d;
        margin: 15px 0 30px;
      }

      .headright.greenctabtnbar {
        justify-content: flex-start;

        & p {
          font-weight: 700;
        }
      }
    }

    .greencta_right {
      width: 40%;

      ul {
        li {
          font-size: 18px;
          font-weight: 800;
          color: var(--black);
          position: relative;
          list-style: none;
          padding-left: 30px;
          border-bottom: 1px solid #7aa43d;
          margin: 0;
          padding: 15px 0 15px 40px;

          &:before {
            content: "";
            position: absolute;
            background: url("../images/tick.svg") no-repeat 0 0;
            width: 24px;
            left: 0;
            height: 24px;
          }
          &:first-child {
            padding-top: 0;
          }
        }
      }
    }

    .greencta_right ul li:last-child {
      border: 0px solid transparent;
    }
  }
}

/* common content section style  */
.hm-item {
  width: 725px;
  position: sticky !important;
  align-content: flex-start;
  top: 140px;
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
}

.hm-item img:first-child {
  overflow: hidden;
}

.hm-content {
  width: calc(100% - 725px);
  padding-right: 120px;
}

.hm-content .button-group,
.hm-content .headright {
  justify-content: flex-start;
}

.hm-content p:last-child {
  margin-bottom: 0;
}

.hm-content .heading-40 {
  color: var(--sitetext);
}

.hm-content .heading-20 {
  font-family: var(--site-font-family);
  font-weight: bold;
  line-height: 26px;
}

.row-reverse .hm-content {
  padding-left: 120px;
  padding-right: 0;
}

.hm-content .heading-48 {
  position: relative;
  width: auto;
  display: inline-block;
}

.hm-content .blueborderbtn {
  margin-top: 30px;
}

/* safe choice section styles  */
.safechoice_sec {
  .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    .safechoice_left {
      width: 42%;

      .headright {
        justify-content: flex-start;

        a.button.headquotebtn:hover {
          background: var(--theme);
          color: var(--white);
        }
      }
    }

    .safechoice_right {
      width: 48%;

      .fourblockcontainer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;

        .blocklistbx {
          width: calc(50% - 20px);
          border-radius: 10px;
          border: 2px solid var(--theme);
          padding: 50px 30px 50px;

          .blockname {
            font-size: 22px;
            font-weight: 800;
            color: var(--black);
            margin: 20px 0 10px;
            line-height: 1.22;
          }

          p {
            margin: 0;
          }
        }
      }
    }
  }
}

/* get quote form section styles  */
.getquote_sec {
  position: relative;
  background: var(--theme);

  & img.bgimg {
    opacity: 0.1;
    z-index: 0;
  }

  .container {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;

    .heading-46 {
      line-height: 1.08;
      text-align: center;
    }

    .button.submitbtn {
      width: 100%;
      margin: 15px 0 0 0;
      background: var(--white);
      color: var(--black);
      font-size: 16px;
      font-weight: 800;
      cursor: pointer;

      &:hover {
        background: var(--black);
        color: var(--theme);
      }
    }

    p {
      margin: 0;
      margin: 0 auto;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
      color: var(--black);
    }
  }
}

/* we work with section styles */
.weworkwith_sec {
}

.weworkwith_sec.ptpb-100 .heading-46 {
  text-align: center;
}

.logoslide_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;

  .logobx {
    background: var(--white);
    border: 2px solid var(--theme);
    border-radius: 10px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;

    & img {
      max-width: 100%;
    }
  }
}

/* footer styles  */
footer {
  background: var(--darkgrey);
  position: relative;

  .container {
    text-align: center;
  }

  &:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.09);
    left: 0;
    bottom: 50px;
  }
}

.quicklink_sec {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  .quicklinks {
    color: var(--white);
    text-align: center;

    & a {
      color: var(--white);
      font-size: 20px;
      font-weight: 700;
      line-height: 2.6;
      margin: 0 10px;
      text-transform: uppercase;

      &:hover {
        text-decoration: underline;
        color: var(--theme);
      }
    }
  }
}

.ft_contactinfo {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 40px auto 40px;
  background: rgba(255, 255, 255, 0.05);
  justify-content: center;

  .infobx {
    padding: 50px 70px;

    .infoname {
      width: 100%;
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      margin: 20px 0 10px;
    }
  }

  .infobx.ft-address {
    background: rgba(255, 255, 255, 0.1);
  }

  & p {
    margin: 0;
    color: var(--white);
    line-height: 1.3;
    font-size: 16px;

    & a {
      color: var(--white);
      text-decoration: none;

      &:hover {
        color: var(--theme);
        text-decoration: underline;
      }
    }
  }
}

.fttitle {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 22px;
  color: var(--theme);
  margin-bottom: 10px;
  position: relative;
}

.ft_copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px 0;

  & p {
    margin: 0;
    color: var(--white);
    font-size: 16px;

    a {
      color: var(--white);
      text-decoration: none;
    }
  }
}

/*  CTA  */
@media (min-width: 576px) {
  .getquote_sec #getaquote-form-main .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 992px) {
  .sticky {
    position: sticky;
    top: 120px;
    align-self: flex-start;
  }

  .row-reverse {
    flex-direction: row-reverse;
  }

  .show-in-sm,
  .hidden {
    display: none;
  }

  .hidden {
    display: none !important;
  }
}

/* form message style  */
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 12px;
  background: #ff0000;
  color: #fff;
  display: inline-block;
  padding: 6px 8px;
}

.wpcf7-not-valid-tip {
  line-height: 1;
  vertical-align: top;
  margin-left: 3px;
  position: relative;
}

/*  SCROLL TOP */
.scroltop-progress,
.progress-wrap {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: block;
  opacity: 0;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 999;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.scroltop-progress.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroltop-progress.scroltop-primary svg path {
  stroke: var(--theme);
}

.scroltop-progress:after {
  content: "\f176";
  font-size: 18px;
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  cursor: pointer;
  width: 50px;
  line-height: 50px;
  color: var(--theme);
  text-align: center;
  transition: all 200ms linear;
}

.scroltop-progress svg path {
  fill: none;
  stroke-width: 4;
  box-sizing: border-box;
  stroke: var(--primary);
  transition: all 200ms linear;
}

.mobilephonelink {
  display: none;
  background: var(--theme);
  width: 100%;
  position: fixed;
  z-index: 2 !important;
  bottom: 0;
  height: 75px;
  /* display: flex !important; */
  align-items: center;
  justify-content: space-evenly;

  & a.calllink {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: 18px;
    font-weight: 700;

    & img {
      max-width: 30px;
      margin-right: 5px;
    }
  }

  & a.button.headquotebtn {
    margin: 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Super large devices (large desktops, 1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1480px;
  }
}

/* @media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
} */

@media (max-width: 1600px) {
  .process_step_sec .container {
    width: 90%;
    margin: 0 auto;
  }

  .landingbanner .container .bnrimg {
    right: -250px;
  }

  .logoslide_container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1440px) {
  .landingbanner .container .bnrimg {
    right: -380px;
  }

  .landingbanner .bannerleft {
    padding: 0 100px 0 0;
  }

  .landingbanner .bannerleft .bnrlistcontent {
    padding-right: 0;

    .brnsmalltxt {
      padding-right: 0;
    }
  }

  .bannerleft .headright {
    justify-content: flex-start !important;
  }

  .landingbanner .container .bannerleft .brnsmalltxt {
    padding-right: 0;
  }

  .landingbanner .bannerleft .bannertxt span {
    font-size: 40px !important;
  }

  .landingbanner .bannerleft .bannertxt {
    font-size: 70px !important;
  }

  .widegreen_cta {
    .cta_container {
      padding: 40px 50px;
      border-radius: 30px;

      .greencta_right {
        width: 45%;
      }
    }
  }

  .hm-item {
    width: 650px;
  }

  .hm-content {
    width: calc(100% - 650px);
  }

  .row-reverse .hm-content {
    padding-left: 80px;
  }

  .safechoice_sec {
    & .container {
      .safechoice_right {
        width: 56%;

        .fourblockcontainer {
          gap: 20px;

          .blocklistbx {
            width: calc(50% - 10px);
            border-radius: 10px;
            padding: 30px;

            .iconbx {
              max-width: 60px;
              height: 50px;

              & img {
                width: 100%;
                height: 100%;
              }
            }
          }
        }
      }
    }
  }

  .logoslide_container {
    & .logobx {
      min-width: 200px;

      & img {
        max-width: 80%;
      }
    }
  }

  .process_step_sec {
    .stepcontainer {
      margin: 0 -5px 30px;
      width: calc(100% + 10px);

      .stepbx {
        padding: 25px;
        width: calc(25% - 10px);
      }
    }
  }
}

@media (max-width: 1200px) {
  .landingbanner .container .bannerleft:before,
  .landingbanner .container .bannerleft:after {
    display: none;
  }

  .landingbanner .container .bnrimg {
    /* display: none; */
    z-index: 0;
    right: 0;
    min-width: 1200px;
    opacity: 0.3;
    width: 100%;
    left: 50%;
    margin: 0 0 0 -600px;
  }

  .landingbanner .container .bannerleft {
    width: 100%;
    min-height: 600px;
    z-index: 1;
  }

  .landingbanner .container.bnrbadges {
    left: 90%;
  }

  .landingbanner .container .bnrlistcontent dl {
    width: 32%;
  }

  /* .landingbanner .container.bnrbadges {
    top: 6%;
  } */

  .landingbanner .container.bnrbadges {
    top: 6%;
    width: 180px;
    right: 0;
    margin: 0 0 0 -85px;
  }

  header .container {
    max-width: 100%;
  }

  .ptpb-100 {
    padding: 60px 0;
  }

  .mb-100 {
    margin-bottom: 60px;
  }

  .pb-100 {
    padding-bottom: 60px;
  }

  .ft_copyright {
    position: relative;
    text-align: center;

    &:before {
      content: "";
      position: absolute;
      width: calc(100% + 30px);
      height: 1px;
      background: rgba(255, 255, 255, 0.09);
      left: -15px;
      top: 0;
    }

    .ftlogo {
      max-width: 250px;
      margin: 0 auto 10px;
    }

    & p {
      text-align: center;
      width: 100%;
    }
  }

  footer {
    &:before {
      display: none;
    }
  }

  .widegreen_cta {
    & .cta_container {
      padding: 40px 30px;
      .greencta_left {
        width: 100%;
        margin-bottom: 30px;

        .heading-32 {
          text-align: center;
        }

        & p {
          text-align: center;
        }

        .headright.greenctabtnbar {
          justify-content: center;
        }
      }

      .greencta_right {
        width: 100%;

        & ul {
          column-count: 2;
          margin: 0;
          gap: 40px;

          & li:last-child {
            border-bottom: 1px solid #7aa43d;
          }
        }
      }
    }
  }

  .hm-item {
    width: 500px;
  }

  .hm-content {
    width: calc(100% - 500px);
  }

  .row-reverse .hm-content {
    padding-left: 50px;
  }

  /* .blocklistbx {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
  } */

  .safechoice_sec .blocklistbx p {
    margin: 0;
    line-height: 1.3;
  }

  .logoslide_container {
    & .logobx {
      text-align: center;
      /* border: 0px solid transparent; */

      & img {
        max-width: 80%;
        margin: 0 auto;
      }
    }
  }

  .logoslide_container.slick-initialized {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }

  .logoslide_container.slick-initialized .slick-list.draggable {
    padding-bottom: 10px;
  }

  .logoslide_container.slick-initialized .slick-slide {
    padding: 5px 10px;
  }

  .logoslide_container.slick-initialized .slick-slide .logobx {
    border: 0px solid transparent;
    outline: 1px solid var(--theme);
    height: 100px;
    display: flex;
    align-items: center;
    align-content: center;
  }

  .stepcontainer.slick-initialized .slick-slide {
    margin: 0 10px;
  }

  /* .process_step_sec .stepcontainer .stepbx p {
    height: 120px;
    -webkit-line-clamp: 7;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  } */

  .beforafter_sec.pb-100 {
    padding-bottom: 80px;
  }

  .safechoice_sec.pt-100 {
    padding-top: 60px 0;
  }

  .landingbanner .badgediv.googlerating p {
    bottom: 22px;
    width: 120px;
    margin: 0 0 0 -60px;
  }
}

@media (max-width: 992px) {
  .landingbanner .bannerleft .bannertxt {
    font-size: 55px !important;
  }

  .landingbanner .bannerleft .bannertxt span {
    font-size: 30px !important;
  }

  .quicklink_sec .quicklinks a {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 5px;
  }

  header .headright a.button.headquotebtn {
    font-size: 16px;
    padding: 10px 18px;
  }

  header .container {
    height: 70px;
  }

  header .headphone span {
    display: none;
  }

  header .headphone p,
  header .headphone p a {
    font-size: 0 !important;
  }

  header .headphone p a {
    background: url(../images/head-phone.svg) no-repeat center center;
    width: 48px;
    height: 48px;
    background-size: 90%;
  }

  header .headlogo {
    max-width: 100px;
  }

  .ft_contactinfo .infobx {
    padding: 20px 35px;
  }

  .sitecontentsec .flex-container.wrap {
    flex-wrap: wrap;
  }

  .hm-item,
  .hm-content {
    width: 100%;
  }

  .row-reverse .hm-content {
    padding-left: 0;
    margin: 0 0 30px 0;
  }

  .safechoice_sec {
    .container {
      flex-wrap: wrap;

      .safechoice_left {
        width: 100%;
        margin-bottom: 30px;
      }

      .safechoice_right {
        width: 100%;
      }
    }
  }

  .process_step_sec .stepcontainer .stepbx {
    padding: 25px 15px;

    .stepname {
      font-size: 20px;
    }
  }

  .before-after-slider .slick-slide li {
    border-radius: 10px;
  }

  .before-after-slider .slick-prev,
  .before-after-slider .slick-next {
    bottom: -70px;
  }
}

@media (max-width: 768px) {
  .landingbanner {
    background: transparent;

    .container.bnrbadges {
      position: relative;
      max-width: 100%;
      top: 14%;
      left: 0%;
      flex-wrap: nowrap;
      background: var(--lightgrey);
      margin: 0 auto;
      padding: 15px;
      justify-content: center;

      .badgediv.googlerating {
        position: relative;
      }
    }
  }

  .landingbanner .container .bnrlistcontent dl dt img {
    max-width: 40px;
  }

  .landingbanner .container .bnrlistcontent dl dd {
    padding: 0 0 0 10px;
    font-size: 14px;
    line-height: 1.2;
  }

  .landingbanner .bannerleft {
    padding: 0;
  }

  .landingbanner .container .bnrlistcontent dl {
    margin: 0 0 10px;
  }

  .fullwidthcontainer {
    background: var(--black);
  }

  .landingbanner .container .bannerleft .bannertxt {
    margin: 0 0 20px;
  }
  .landingbanner .bannerleft .bannertxt span {
    font-size: 28px !important;
    text-align: left;
  }
  .landingbanner .bannerleft .bannertxt {
    font-size: 48px !important;
  }
  .landingbanner .container .bannerleft .brnsmalltxt {
    text-align: left;
    margin-bottom: 20px;
  }

  .landingbanner .container.bnrbadges {
    width: auto;
  }

  .getquote_sec .container {
    max-width: 90%;
  }

  .ft_contactinfo .infobx {
    padding: 10px;
    width: 100%;

    & img {
      max-width: 35px;
    }

    .infoname {
      margin: 5px 0 0;
    }
  }

  .widegreen_cta {
    .cta_container {
      padding: 30px;

      .greencta_right {
        & ul {
          column-count: 1;
          margin: 0;
          gap: 40px;
          & li:last-child {
            border-bottom: 0px solid #7aa43d;
          }
        }
      }
    }
  }

  .process_step_sec {
    & .stepcontainer {
      & .stepbx {
        .stepicon {
          max-width: 45px;
          margin-bottom: 0;
        }
      }
    }
  }
  .widegreen_cta {
    & .cta_container {
      .greencta_left {
        .heading-32,
        p {
          text-align: left;
        }
        .headright.greenctabtnbar {
          justify-content: flex-start;
        }
      }
    }
  }
}

@media (max-width: 576px) {
  [class*="heading-"],
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 15px;
  }
  .landingbanner .container .bannerleft {
    min-height: 550px;
  }
  .ptpb-100 {
    padding: 30px 0;
  }
  .beforafter_sec.ptpb-100 {
    padding-bottom: 50px;
  }

  .pb-100 {
    padding-bottom: 30px;
  }

  .mb-100 {
    margin-bottom: 30px;
  }

  .form-group.form-group50 {
    width: 100%;
    padding: 0;
  }
  .form-group.form-group100 {
    padding: 0;
  }
  .ft_contactinfo {
    margin: 0 auto 20px;
  }

  a.button.headquotebtn {
    margin-top: 10px;
  }

  .headphone p a {
    font-size: 24px;
  }

  .headphone {
    display: flex;
    flex-wrap: nowrap;
    width: 220px;
  }

  header .headright a.button.headquotebtn {
    margin: 0;
  }

  header .headphone {
    width: 48px;
  }

  .landingbanner .container .bnrlistcontent dl {
    width: 48%;
  }

  .headphone span {
    width: 60px;
  }

  .headright p {
    font-size: 15px !important;
  }

  .widegreen_cta {
    & .cta_container {
      & .greencta_right {
        & ul {
          li {
            line-height: 1.2;
            border-bottom: 1px solid #7aa43d;
            padding: 10px 0 10px 40px;
            font-weight: 600;
          }
        }
      }
    }
  }

  button,
  .button,
  button[type="submit"],
  input[type="submit"] {
    font-size: 16px;
    padding: 10px 18px;
    font-weight: 700;
  }

  .safechoice_sec {
    & .container {
      & .safechoice_right {
        & .fourblockcontainer {
          gap: 5px;

          & .blocklistbx {
            padding: 15px 25px 15px 75px;
            width: 100%;
            position: relative;

            .iconbx {
              max-width: 50px;
              height: 40px;
              position: absolute;
              left: 15px;
            }

            .blockname {
              font-size: 18px;
              margin: 0 0 5px;
            }
          }
        }
      }
    }
  }

  .ft_copyright p {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .before-after-slider .slick-slide {
    margin: 0 10px;
  }

  .landingbanner .container .bnrlistcontent {
    margin-bottom: 10px;
  }

  .landingbanner .bannerleft .bannertxt span {
    font-size: 20px !important;
    text-align: left;
  }

  .landingbanner .bannerleft .bannertxt {
    font-size: 40px !important;
  }

  .twentytwenty-handle {
    height: 40px;
    width: 40px;
    margin-left: -24px;
  }

  .safechoice_sec.pt-100 {
    padding-top: 30px;
  }

  .mobilephonelink {
    display: flex !important;
  }

  footer {
    padding-bottom: 60px;
  }

  .grecaptcha-badge {
    bottom: 76px !important;
    z-index: 2;
  }

  .headright.bnrbtnbar .headphone {
    width: 220px;
  }
  .getquote_sec {
    & .container {
      p {
        text-align: left;
      }
    }
  }
}

@media (max-width: 480px) {
  header .headright a.button.headquotebtn {
    width: 130px;
  }

  .logoslide_container .logobx {
    min-width: 100px;
    width: 46%;
  }

  .landingbanner .badgediv.googlerating p {
    bottom: 10px;
    width: 120px;
    line-height: 1;
  }
}
.form-group.btnbox {
  position: relative;
}
.row:has(.form-group.btnbox) {
  clear: both;
}

.wpcf7-spinner {
  position: absolute !important;
  top: 27px;
  right: 15px;
  margin: 0;
}
ul.before-after-slider {
  list-style-type: none;
  margin-left: 0;
}
.quote_form .wpcf7-response-output {
  margin-top: 0 !important;
}
.cta_container p {
  color: #191919;
}
.before-after-slider {
  & .slick-prev {
    left: calc(50% - 40px) !important;
  }
  & .slick-next {
    right: calc(50% - 40px) !important;
  }
}
.stepcontainer .slick-track {
  display: flex;
  flex-wrap: wrap;
  & .slick-slide {
    height: auto;
    & > div {
      display: flex;
      flex-wrap: wrap;
      height: 100%;
      & .stepbx {
        display: flex !important;
        flex-wrap: wrap;
        height: 100%;
        flex-direction: column;
        align-content: flex-start;
        justify-content: flex-start;
      }
    }
  }
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid #f5c812;
  background: #fff9df;
  width: 100%;
  display: block;
  color: inherit;
  padding: 14px 15px 14px 45px;
  text-align: left;
  line-height: 1;
  margin: 0 auto 20px;

  color: #000;
  font-size: 16px;
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output:before {
  position: absolute;
  content: "";
  background: url(../images/material-error-outline.svg) left top no-repeat;
  width: 20px;
  height: 20px;
  left: 15px;
  top: 12px;
  display: inline-block;
}

.wpcf7-not-valid-tip:before {
  top: -5px;
  margin: 0;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid red;
}

.wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid #fe0000 !important;
  background: url(../images/failed-validation.svg) no-repeat 15px center #ffdfdf;
  font-size: 14px;
  color: red;
  padding: 10px 20px 10px 30px;
  margin: 0 0 10px 0;
  width: 100%;
  padding-left: 45px;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: url(../images/validation-tick.svg) no-repeat 15px center #e1ffd9;
  border-color: #498e36;
  font-size: 14px;
  color: #498e36;
  width: 100%;
  padding: 10px 10px 10px 40px;
}
