.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }
  
  @media (min-width: 992px) {
    .rounded-lg-3 { border-radius: .3rem; }
  }
  
  body {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #5a5a5a;
  }
  
  /* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */
  
  /* Carousel base class */
  .carousel-2 {
    margin-bottom: 4rem;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  .carousel-item {
    height: 32rem;
  }
  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
  }
  
  
  /* MARKETING CONTENT
  -------------------------------------------------- */
  
  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .marketing h2 {
    font-weight: 400;
  }
  /* rtl:begin:ignore */
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }
  /* rtl:end:ignore */
  
  
  /* Featurettes
  ------------------------- */
  
  .featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
  }
  
  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    /* rtl:remove */
    letter-spacing: -.05rem;
  }
  
  
  /* RESPONSIVE CSS
  -------------------------------------------------- */
  
  @media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }

  
body {
   /* position: absolute; */
   max-width: 100vw;
   overflow-x: hidden;
}

#our-products {
   height: fit-content !important;
}

.product-slider {
   color: white;

   margin-top: 60px;
   width: 100%;

   gap: 20px;
}

.product-slider .title-and-controls {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   margin-bottom: 20px;
   width: 100%;
   flex-direction: row;
}

.product-slider .buttons-container {
   display: flex;
   justify-content: space-between;
   /* margin-bottom: 20px; */
}

.product-slider .title-and-controls button {
   background-color: transparent;
   border: 2px solid;
   border-radius: 999px;
   color: white;
   cursor: pointer;
   height: 38px;
   width: 38px;
   margin: 0 4px;
   position: relative;
   transition: transform 0.3s ease-out;
}

.product-slider .title-and-controls button:hover {
   /* transform: scale(1.3); */
}

.product-slider .title-and-controls button svg {
   height: 16px;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 16px;
   transition:3s;
}

.product-slider #titles-container {
   position: relative;
   /* flex-grow: 1; */
   margin-right: 40px;
}

.product-slider #titles-container h3 {
   position: absolute;
   inset: 0;
   opacity: 0;
   /* transform: translateY(-100%); */
   transition: all 0.3s ease-out;
   font-size: 2.81rem;
}

.product-slider #titles-container h3.active {
   position: static;
   opacity: 1;
   transform: translateY(0);
}

.product-slider #descriptions-container {
   width: 50%;
   position: relative;
}

.product-slider #descriptions-container p {
   user-select: none;
   pointer-events: none;
   position: absolute;
   inset: 0;
   opacity: 0;
   /*transform: translateY(100%);*/
   transition: all 0.3s ease-out;
}

.product-slider #descriptions-container p.active {
   position: static;
   opacity: 1;
   transform: translateY(0);
}

.product-slider .images-container {
   height: 200px;
   width: 50%;
   /* overflow: hidden; */
}

.product-slider .images-container .carousel {
   position: relative;
   width: 100%;

   overflow-x: visible;
}

.product-slider .images-container .carousel img {
   height: 200px;
   width: auto;

   transition: all 0.4s ease-in-out;
   z-index: 0;

   margin: 0 auto;

   position: absolute;
   top: 0;
   left: 0;
   transform: translate(200%, -40%) scale(0.1);
   opacity: 0;
}

/* Opacity and Z-index */

/* Second and forth */
.product-slider .images-container .carousel img.next {
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   transform: translate(100%, -30%) scale(0.8);
   /* filter: blur(4px); */
   opacity: 0.6;
   z-index: 1;
   filter: drop-shadow(5px 48px 14px #000) blur(4px);
}

/* Middle */
.product-slider .images-container .carousel img.current {
   display: block;
   opacity: 1;
   transform: none;
   z-index: 5;
   filter: drop-shadow(5px 50px 37px #000) blur(0px);
}

.product-slider .images-container .carousel img.previous {
   display: block;
   opacity: 0;
   transform: scale(0.4);
   filter: blur (8px);
   z-index: -1;
}

.description-and-images {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
}

@media screen and (max-width: 768px) {
   .full-on-small {
      width: 100% !important;
   }

   .description-and-images {
      flex-direction: column-reverse;
   }

   .product-slider #descriptions-container {
      width: 100%;
   }

   .product-slider .images-container {
      width: 100%;
   }

   .product-slider .images-container .carousel img.current {
      max-width: 100%;
      height: auto;
      max-height: 200px;
      left: 50%;
      transform: translateX(-50%);
   }
   .product-slider .images-container .carousel img.next {
      transform: translate(80%, -30%) scale(0.6);
   }
}

.product-slider .images-container .dots {
   display: flex;
   justify-content: center;
   margin-top: 10px;
}

.product-slider .images-container .dots span {
   background-color: transparent;
   border: 2px solid white;
   border-radius: 999px;
   cursor: pointer;
   height: 10px;
   margin: 0 4px;
   width: 10px;
}

.product-slider .images-container .dots span.active {
   background-color: white;
}

#descriptions-container {
   height: 200px;
}

#dots-container {
   display: none;
}

@keyframes wiggle {
   0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(5deg); }
   95% { transform: rotate(-5deg); }
   100% { transform: rotate(0deg); }
 }

 @-webkit-keyframes updown {
     0% { transform: translateY(0); }
     100% { transform: translateY(-10px); }
 }

 @keyframes updown {
     0% { transform: translateY(0); }
     100% { transform: translateY(-10px); }
 }

 .updown {
     -webkit-animation: updown 1s infinite  alternate;
     animation: updown 1s infinite  alternate;
     display: inline-block;
 }

 .wiggle {
   display: inline-block;
   animation: wiggle 2.5s infinite;
 }

 .updown:hover {
   animation: none;
 }
 
 .wiggle:hover {
   animation: none;
 }

 body {
     font-family: "Open Sans";
     padding-top: 3rem
 }

 #hero-1 {
     height: 100vh;
     padding: 0 !important;
 }

 #hero-1 > .container > .row {
   height: 85vh;
 }

 .highlight {
     font-weight: bold;
     color: #4cb748;
 }

 .highlighted-text {
     color: #4cb748;
 }

 .carousel-control-next-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
 }
 .carousel-control-prev-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
 }
 .bd-placeholder-img {
   font-size: 1.125rem;
   text-anchor: middle;
   -webkit-user-select: none;
   -moz-user-select: none;
   user-select: none;
 }

 @media (min-width: 768px) {
   .bd-placeholder-img-lg {
     font-size: 3.5rem;
   }
 }

 #hero {
   background-color: black;
 }
 #more-moments {
   background-color: #4cb748;
 }
 #more-moments .row {
   padding: 20px 0 15px;
 }
 #more-moments h3 {
   color: rgb(255, 255, 255);
 }
 .spacer {
   display: block;
   width: 100%;
   height: 100px;
 }
 header {
   background-color: #fff;
 }
 
 #cta-1 p {
   display: inline;
 }

 #cta-3 p {
   display: inline;
 }
 .styled-number {
     border-radius:100px;
     display:inline-block;
     background-color:#4cb748;
     width:40px;
     height:40px;
     text-align:center;
     padding-top:3px
 }
 
 #our-process .carousel-caption {
     top: 50%;
     transform: translateY(-50%);
     bottom: initial;
     width: 100%;
     left: 0;
 }
 #reviews {
   background-color: #eef0f2;
 }

 @media (max-width: 767px) {
     .carousel-inner .carousel-item > div {
         display: none;
     }
     .carousel-inner .carousel-item > div:first-child {
         display: block;
     }
 }

 #reviewsCarousel .carousel-inner .carousel-item.active,
 #reviewsCarousel .carousel-inner .carousel-item-next,
 #reviewsCarousel .carousel-inner .carousel-item-prev {
     display: flex;
 }

 /* medium and up screens */
 @media (min-width: 768px) {
     
   #reviewsCarousel .carousel-inner .carousel-item-end.active,
   #reviewsCarousel .carousel-inner .carousel-item-end.active,
   #reviewsCarousel .carousel-inner .carousel-item-next {
       transform: translateX(25%);
     }
     
   #reviewsCarousel .carousel-inner .carousel-item-start.active, 
   #reviewsCarousel .carousel-inner .carousel-item-prev {
     transform: translateX(-25%);
   }
 }

 #reviewsCarousel .carousel-inner .carousel-item-end,
 #reviewsCarousel .carousel-inner .carousel-item-start { 
   transform: translateX(0);
 }

 #our-process .col-md-7 {
   padding-left:0;
 }

 #our-process .col-md-5 {
   padding-right:0;
 }
 #reviewsCarousel .carousel-control-prev,  
 #reviewsCarousel .carousel-control-next {
   position: relative;
   height: auto;
   top: unset;
   display: inline;
 }

 #reviewsCarousel .carousel-item {
   height: auto;
 }
 #reviewsCarousel .carousel-indicators {
   display: inline;
   position: relative;
   margin: 0;
 }
 #reviewsCarousel .carousel-indicators [data-bs-target] {
   width:10px !important;
   height:10px !important;
   border-radius:100px !important;
   border-top: unset;
   border-bottom: unset;
 }
 #our-process .carousel-control-next, .carousel-control-prev {
   position: relative;
   display: inline;
 }
 #our-process .carousel-indicators {
   position: relative;
   display: inline;
   margin: 0;
 }
 #our-process .carousel-indicators [data-bs-target] {
     width: 10px;
     height: 10px;
     background-color: #000;
     border-radius: 100px;
     border-top: none;
     border-bottom: none;
 }
 #our-process h3 {
     color: #4cb748;
     font-weight:600;
 }

 #our-process .carousel-caption p {
     color: #000;
 }

 #our-process h3 .styled-number {
     color: #fff
 }

 #our-process .carousel-item {
     height: 15rem;
 }
 @media (min-width: 40em) {
   #our-process .carousel-caption p {
       margin-bottom: 1.25rem;
       font-size: 1em;
       line-height: 1.4;
   }
 }
 #our-process .controls {
     display: inline;
     position: absolute;
     right: 50px;
 }

 #our-process .carousel-indicators {
     margin: 0 20px;
     top: -10px;
 }
 #our-process .carousel-inner {
     padding: 0px 20px 0px 50px;
 }
 #our-process .carousel {
     top: 50%;
     transform: translateY(-50%);
 }
 div#our-process {
     margin-bottom: 120px;
 }
 .btn {
     border-radius: 12px;
 }

 .btn-primary {
     background-color: #4cb748;
     border-color: #4cb748;
 }
 .btn-primary:hover {
     background-color:#6fbb58;
     border-color:#4cb748;
 }

 h2 {
     font-size: 3.3331rem;
     font-weight: bold;
 }

 #homedepot h2 {
     font-size: 2.6rem;
     font-weight: normal;
     color: #fff;
     letter-spacing: unset !important;
 }

 div#homedepot {
     background-color: #fb8f2f;
 }

 div#homedepot .row {
     padding: 40px 0px 30px;
 }

 #reviewsCarousel .profile-pic {
     width: 50px;
     height: 50px;
     display: inline-block;
     background-color:#f4f4f4;
     border-radius: 50px;
 }

 #reviewsCarousel .name-rating-container {
     display: inline-block;
     position: relative;
     top: 10px;
 }

 #reviews .Rating {
     position: relative;
     top: -15px;
 }

 @media screen and (min-width:991px) { 
     span.break-desktop {
         display: block;
     }
 }

 h2 {
     font-weight: normal;
 }

 #reviewsCarousel .platform {
     display: inline-block;
     position: absolute;
     right: 30px;
     top: 30px;
 }
 #reviewsCarousel .platform img {
     width: 30px;
 }
 #reviewsCarousel .card {
     margin: 0 10px;
     height: 250px;
     padding: 15px;
 }

 #reviewsCarousel .review-text {
   padding-top: 10px;
 }

 #reviews {
     padding: 85px 20px 40px;
 }

 #logo {
     width: 250px;
     position: absolute;
     top: 60px;
 }

 #logo img {
     width: 250px;
 }

 #hero h1 {
     color: #4cb748;
 }

 #hero p {
     color: #fff;
 }

 #hero h5 {
     color: #4cb748;
     text-decoration: underline;
 }
 h2 {
     color: #000;
 }
 #homedepot img {
     display: inline-block;
     width: 60%;
     position: relative;
     right: 0;
     float: right;
 }
 #reviewsCarousel .carousel-inner {
     margin-top: 20px;
 }
 #why-biltright h2 {
     text-align: center;
 }

 div#why-biltright {
     margin-top: 85px;
 }
 #why-biltright p {
     text-align: center;
     font-size: 1.5rem;
 }
 .carousel-control-next, .carousel-control-prev {
   color: transparent;
 }
 .rplg-badge2 {
     background-color: #fff;
 }

 span.rplg-badge-logo {
     display: inline-block;
 }

 .rplg-badge2-score {
     display: inline-block;
 }

 .rplg-stars {
     display: inline-block;
 }

 .rplg-biz-score {
     display: inline-block;
 }

 .rplg-biz-rating.rplg-trim.rplg-biz-google {
 }

 .rplg-badge2-btn {
     padding: 10px 20px 10px;
 }
 .rplg-badge-logo img {
     position: relative;
     top: -10px;
     left: -10px;
     vertical-align: initial;
 }
 .rplg-badge2 {
     background-color: #fff;
     border-radius: 12px;
     display: inline-block;
     margin-right: 20px;
 }
 #cta-1 .btn {
     font-size: 20px;
 }
 .star__09f24__YoVH5 {
     display: inline-block;
     margin-left: 5px;
 }
 .review-images a {
     display: inline-block;
 }

 .review-images a img {
     width: 50px;
 }

 .flipster-container {
   max-width: 1272px;
   margin: 0 auto;
   position: relative;
   overflow-x: hidden;
   padding: 20px 0;
 }

 .flipster__item--current {
     box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.1);
 }



.carousel-container:before {
left: -15%;
background: linear-gradient(to right, rgb(255 255 255) 20px, rgba(255, 255, 255, 0));
}

.carousel-container:after {
right: -15%;
background: linear-gradient(to left, rgb(255 255 255) 20px, rgba(255, 255, 255, 0));
}

.carousel-container:before,
.carousel-container:after {
content: "";
display: block;
position: absolute;
z-index: 99;
width: 225px;
top: 0;
height: 100%;
pointer-events: none; /*makes the linkes behind clickable*/
}

.carousel-item-1 {
left: 0%;
width: 225px;
height: 180px;
}

.carousel-item-2 {
left: 24%;
height:180px;
}

.carousel-item-3 {
width: 280px;
height: 240px;
}

.carousel-item-4 {
left: 76%;
height:180px;
}

.carousel-item-5 {
left: 100%;
opacity: 0.4;
width: 225px;
height: 180px;
}

div#hero-1 {
background-color: #e3e3e3;
}

div#hero-1 h1 {
color: #000;
font-weight: 400;
}

#hero-1 a {
color: #000;
text-decoration: none;
}

#cta-1 {
max-height: 15vh;
background-color: #4cb748;
height:100%;
}
#cta-1 .col-xxl-12 {
display: flex;
align-items: center;
height: 100%;
justify-content: space-between;
}

#cta-1 .container {
height:100%
}

#cta-3 {
max-height: 15vh;
background-color: #4cb748;
height:100%;
}
#cta-3 .col-xxl-12 {
display: flex;
align-items: center;
height: 100%;
min-height: 150px;
justify-content: space-between;
}

#cta-3 .container {
  height: fit-content;
}

h3 {
font-size:2.3rem;
}

#cta-1 h3 {
color: #fff;
margin-bottom: 0;
}
#cta-1 .btn.btn-outline-primary {
font-size: 1.5rem;
}

#cta-3 h3 {
color: #fff;
margin-bottom: 0;
}
#cta-3 .btn.btn-outline-primary {
font-size: 1.5rem;
}

.btn.btn-outline-primary.white {
border: 4px solid white;
color:white;
border-radius:100px;
}
.btn.btn-outline-primary.white:hover,
.btn.btn-outline-primary.white:active {
background-color:#fff;
color:#4cb748;
}
.btn.btn-outline-primary.white:active:focus {
box-shadow: 0 0 0 0rem rgb(75 75 75 / 0%);
}
.section-spec .text-wrapper {
display: inline-block;
font-size: 1.5rem;
margin-left:15px;
color:#fff;
line-height: 1;
}

.section-spec .text-wrapper.black {
color:#000;
}

.section-spec .number-wrapper {
display: inline-block;
font-size: 3em;
line-height: 40PX;
font-weight: bold;
color: #4cb748;
}

.section-spec {
position: relative;
display: inline-flex;
float: right;
margin-left: 30px;
align-items: center; 
}
.statement-wrapper.section-1 {
flex: none;
position: static;
}
.statement-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
}
* {
box-sizing: border-box;
}

.statement-black-text {
z-index: 1;
text-align: left;
letter-spacing: -0.5px;
margin-right: 14px;
font-size: 3.75rem;
font-weight: 700;
line-height: 112%;
display: inline;
position: relative;
}

.statement-white-text {
z-index: 1;
text-align: left;
letter-spacing: -0.5px;
margin-right: 14px;
font-size: 3.75rem;
font-weight: 700;
line-height: 112%;
display: inline;
position: relative;
color:#fff;
}

p {
letter-spacing: 0.2px;
margin-bottom: 4px;
font-size: 18px;
font-weight: 400;
line-height: 35px;
}
p {
margin-top: 0;
margin-bottom: 10px;
}

.statement-black-text-wrapper {
z-index: 1;
text-align: left;
letter-spacing: -0.5px;
margin-right: 14px;
font-size: 3.75rem;
font-weight: 700;
line-height: 112%;
display: inline;
position: relative;
font-weight: normal;

}

.statement-white-text-wrapper {
z-index: 1;
text-align: left;
letter-spacing: -0.5px;
margin-right: 14px;
font-size: 3.75rem;
font-weight: 700;
line-height: 112%;
display: inline;
position: relative;
color:#fff;
font-weight: normal;
}

.highlighted-text {
font-size: 3.75rem;
font-weight: 700;
display: inline;
}

.red {
color: red;
}
.statement-highlighted-text-wrapper {
font-size: 3.75rem;
font-weight: 700;
line-height: 114%;
display: inline-block;
position: relative;
}
.underline-1 {
width: 300px;
position: absolute;
top: -40px;
bottom: -61%;
left: -44px;
right: -38px;
transform: translate(0px,74px);
-ms-transform: translate(74px,0px); /* IE 9 */
-webkit-transform: translate(40px,94px); /* Safari and Chrome */
-o-transform: translate(74px,0px); /* Opera */
-moz-transform: translate(74px,0px); /* Firefox */
width:100%;
}

.underline-2 {
width: 200px !important;
position: absolute;
top: -40px;
bottom: -61%;
left: -44px;
right: -38px;
transform: translate(0px,74px);
-ms-transform: translate(74px,0px); /* IE 9 */
-webkit-transform: translate(40px,94px); /* Safari and Chrome */
-o-transform: translate(74px,0px); /* Opera */
-moz-transform: translate(74px,0px); /* Firefox */
width:100%;
}

.underline-3 {
  width: 200px;
  position: absolute;
  top: -40px;
  bottom: unset;
  left: 0px;
  right: unset;
  transform: translate(40px,94px);
  -ms-transform: translate(40px,94px);
  -webkit-transform: translate(40px,94px);
  -o-transform: translate(40px,94px);
  -moz-transform: translate(40px,94px);
  }
  .underline-4 {
    position: absolute;
    top: -120px;
    bottom: unset;
    left: -82px;
    right: 0px;
    transform: translate(60px,94px);
    -ms-transform: translate(60px,94px);
    -webkit-transform: translate(60px,94px);
    -o-transform: translate(60px,94px);
    -moz-transform: translate(60px,94px);
    width: 190px;
  }
  .underline-4 svg {
    overflow: visible !important;
}

.underline-3 svg {
    overflow: visible;
}
.show-on-scroll {
display: none;
position:absolute;
top:40px;
}

.underline-1 path {
stroke-dasharray: 1;
stroke-dashoffset: 2;
animation: lineanimation 1s cubic-bezier(0.4, 0, 0.2, 1) alternate;
}
.underline-2 path {
stroke-dasharray: 1;
stroke-dashoffset: 2;
stroke-width:12;
animation: lineanimation 1s cubic-bezier(0.4, 0, 0.2, 1) alternate;
}
.underline-3 path {
  stroke-dasharray: 1;
  stroke-dashoffset: 2;
  stroke-width:12;
  animation: lineanimation 1s cubic-bezier(0.4, 0, 0.2, 1) alternate;
  }
  .underline-4 path {
    stroke-dasharray: 1;
    stroke-dashoffset: 2;
    stroke-width:12;
    animation: lineanimation 1s cubic-bezier(0.4, 0, 0.2, 1) alternate;
    }

@keyframes lineanimation {
0% {
 stroke-dashoffset: 1;
}
100% {
 stroke-dashoffset: 0;
}
}

#our-products {
 background-color: #292929;
 padding: 6em 0 6em 0;
  height: 100vh;
  min-height: fit-content;
 overflow:hidden;
}

.review {
 width: 300px;
}

.review .profile-pic {
 width: 50px;
 height: 50px;
 display: inline-block;
 background-color: #f4f4f4;
 border-radius: 50px;
}

.review .name-rating-container {
 display: inline-block;
 position: relative;
 top: 10px;
}

.review .platform {
 display: inline-block;
 position: absolute;
 right: 30px;
 top: 40px;
}

.review {
width: 390px;
height: 370px;
}

.review {
 padding:30px;
 background-color:#fff
}
.review-text {
 font-size:1.2em;
 margin-bottom:1.5em
}

.flipster__item--current .review-text {
 font-size: 1.2em;
}

.flipster-container:before {
 content: "";
 height: 300px;
 position: absolute;
 width: 150px;
 z-index: 2;
 top: 44px;
 left: 0;
 background: linear-gradient(to right, rgba(238, 240, 242, 1) 20px, rgba(238, 240, 242, 0));
}


.flipster-container:after {
 content: "";
 height: 300px;
 position: absolute;
 width: 150px;
 top: 44px;
 right: 0;
 background: linear-gradient(to left, rgba(238, 240, 242, 1) 20px, rgba(238, 240, 242, 0));
}
div#flat {
 margin: 70px 15px;
}

.flipster--flat .flipster__item--past, .flipster--flat .flipster__item--future {
 opacity: 1;
}
.btn-primary {
 width: auto;
 border-radius: 100px;
 padding: 0.5rem 4rem;
}

#cta-2 .message {
 text-align: center;
 margin: 20px auto;
 width: auto;
 position: relative;
 border: 3.71px solid #fff;
 border-radius: 50px;
 display: inline-block;
 padding: 0.3em 2em;
}
#cta-2 form .text-muted {
 text-align: center;
}


.video-background {
position: absolute !important;
width: 100%;
z-index: -1;
height: 100vh;
background-color:#000;
}

.white {
color:#fff;
}

.video-background:before {
position:absolute;
content:"";
width:100%;
height:100%;
bottom: 0;
z-index:-1;
background: linear-gradient(to top, rgb(0 0 0) 100px, rgb(0 0 0 / 44%));
}
.gradient-background {
background: linear-gradient(281deg,#4cb748,#000000,#4cb748);
background-size: 180% 180%;
animation: gradient-animation 24s ease infinite;
}
.gradient-background-2 {
background: linear-gradient(281deg,#4cb748,#0a2209,#4cb748);
background-size: 180% 180%;
animation: gradient-animation 24s ease infinite;
}
.gradient-background-3 {
background: linear-gradient(281deg,#1d651b,#0a2209,#1d651b);
background-size: 180% 180%;
animation: gradient-animation 24s ease infinite;
}
.flipster__item--current .review {
background: linear-gradient(281deg,#4cb748,#000000,#4cb748);
background-size: 180% 180%;
animation: gradient-animation 24s ease infinite;
}

.flipster__item--current .name,
.flipster__item--current .review-text {
color: #fff;
}

@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.video-background {
--videoRatio: calc(16 / 9); /* CHANGE THIS IF THE VIDEO CHANGES */
background-color: #000;
padding: 0 !important;
margin: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
position: absolute !important;
}
/* to start with assume that the viewport is wide enough for the video taking up full width the height will be at least 100vh */
.video-background iframe {
padding: 0 !important;
margin: 0 !important;
position: relative !important;
--w: 100vw !important;
--h: calc(var(--w) / var(--videoRatio))!important;
height: var(--h) !important;
width: var(--w) !important;
top: calc(50% - (var(--h) / 2)) !important;
left: 0 !important;
width: var(--w) !important;
height: var(--h) !important;
z-index:-4;
}
/* Maximum aspect ratio */
@media (max-aspect-ratio: 16/9) {/*the viewport is too narrow for the full video */
.video-background iframe {
--h: 100vh !important;
--w: calc(var(
--h) * var(--videoRatio)) !important;
top: 0 !important;
left: calc(50% - (var(--w) / 2)) !important;
}
}



@media screen and (max-width:1400px) {
.section-spec {
   float:right;
   margin-left: 0;
   width: 49%;
   margin-top:16px;
   max-width: 250px;
}

.section-spec .number-wrapper {
   font-size:2.6em;
}
.section-spec .text-wrapper {
   font-size:1.2em
}
}

@media screen and (max-width:991px) {
.section-spec {
   float:none;
   margin-left: 0;
   width: 49%;
   margin-top:80px;
   max-width: 250px;
}

.section-spec .number-wrapper {
   font-size:2.6em;
}
.section-spec .text-wrapper {
   font-size:1.2em
}
}

.product-slider #descriptions-container {
z-index: 10;
}
@media screen and (max-width: 768px) {
.product-slider #descriptions-container {
   margin-top:30px
}
}
body {
padding-top: 0;
}

#cta-3 {
max-height: fit-content;
}

@media screen and (max-width:768px) {
#cta-1,#cta-3 {
   height: fit-content;
   max-height: unset;
}
#cta-3 {
   padding-bottom:10px;
}
#cta-1 h3,#cta-3 h3 {
   display: block;
   width: 100%;
   font-size: 2rem;
}

#cta-1 .col-xxl-12,#cta-3 .col-xxl-12 {
   flex-direction: column;
   display: block;
   padding:30px 0;
   
}

#cta-1 .btn.btn-outline-primary,
#cta-3 .btn.btn-outline-primary {
   margin-top:30px
}

#hero-1 {
   height:fit-content;
}

}

.product-slider #descriptions-container p {
font-size: 1.2rem;
margin-top: 30px;
}
div#cta-2 {
background-color: #000;
position: relative;
z-index: 1 !important;
overflow: hidden;
}
@media screen and (min-width:1400px) {
.section-spec {
   top: 10px;
}
}

button#carousel-next-button {
right: -15px;
}

.product-slider .title-and-controls button {
background-color: transparent;
border: none;
border-radius: 999px;
color: white;
cursor: pointer;
height: 45px;
width: 45px;
margin: 0 4px;
position: relative;
transition: transform 0.3s ease-out;
}
.product-slider .title-and-controls button:hover svg {
fill:#4cb748;
}

.product-slider .title-and-controls button svg {
height: 45px !important;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 45px !important;
}

.product-slider .title-and-controls button {
background-color: transparent;
border: none !important;
cursor: pointer !important;
height: 38px !important;
width: 38px !important;
margin: 0 4px !important;
position: relative;
transition: transform 0.3s ease-out;
}

.product-slider .title-and-controls button svg {
fill:#fff;
}

@media screen and (max-width:991px) {
.product-slider {
   margin-top:50px !important;
}
.product-slider #descriptions-container p {
   font-size: 1.2rem;
   line-height: 1.5;
}
}
@media screen and (max-width: 512px) {
h3 {
   font-size:2em;
}
}

#cta-2 .message svg, 
#cta-2 .message svg path {
width: 35px;
height: 25px;
margin-top: -5px;
margin-right: 5px;
stroke: #fff;
}

#cta-2 .btn-primary {
margin-top: 20px;
}

#cta-2 h3 {
text-align: center;
margin-bottom: 40px;
}

.mobile-bg {
margin-top: 10px;
max-width:750px;
}

@media screen and (max-width:768px) {
.mobile-bg {
   background-color:transparent;
   border-radius:12px;
   padding-bottom:40px;
}

#cta-2 h3 {
   color:#fff;
   margin: 20px 0
}
}

.h1, h1 {
font-size: calc(3rem + 1.5vw);
}

@media screen and (max-width:768px) {
.highlighted-text {
   font-size: 3rem;
}

.statement-white-text-wrapper {
   font-size: 3rem;
}
}

@media screen and (max-width: 991px) {
span.break-mobile {
   display: block;
}
}
@media screen and (max-width:768px) {
.highlighted-text {
   font-size: 3rem;
}

.statement-white-text-wrapper,
.statement-black-text-wrapper{
   font-size: 2.8rem;
}
h2 {
   font-size: 3rem;
}
.underline-2 {
   width: 150px !important;
}

}
@media screen and (max-width: 991px) {
span.break-mobile {
   display: block;
}
}

@media (min-width: 1200px) {
h1 {
   font-size: 3.3rem !important;
}
}
@media (max-width: 1200px) {
h1 {
   font-size: 3.3rem !important;
}
}
@media (max-width: 768px) {
h1 {
   font-size: 3rem !important;
}
}

body {
padding-top:0 !important;
}

.btn.btn-outline-primary {
padding: 0.5rem 4rem;
}

z
    height:850px;
    height:fit-content;
}
#hero-1 > .container > .row {
    min-height: 620px;
    height:auto !important;
}
div#cta-1 {
    min-height: 150px;
    height:auto;
    max-height: unset;
}
#cta-1 .container {
    /* transform:translateY(50%); */
    /* top:-50%; */
    /* position:relative; */
    height: fit-content;
}
@media screen and (min-width:768px) {
    #hero-1 {
        height:px;
        height:fit-content;
    }
    #hero-1 > .container > .row {
        min-height: 720px;
        height:auto !important;
    }
    div#cta-1 {
        min-height: fit-content;
        height: 150px;
    }
}

@media screen and (min-width: 769px) {
  #cta-1 .container {
      height: 150px;
  }
}
@media screen and (max-width: 768px) {
  #cta-1 .container {
      height: fit-content;
  }
}

@media screen and (max-width:768px) {
    #hero-1 {
        height:850px;
        height:fit-content;
    }
    #hero-1 > .container > .row {
        min-height: 620px;
        height:auto !important;
    }
    div#cta-1 {
        min-height: fit-content;
        height: fit-content;
    }
    .section-spec {
        margin-top:25px;
        margin-right:20px;
        width:auto;
    }
    .section-spec .text-wrapper {
        font-size: 1em;
    }
    .section-spec .number-wrapper {
        font-size:2em;
    }
    div#our-products {
        padding-top:50px;
    }
    .product-slider #titles-container h3 {
        font-size:2em;
    }
    .product-slider #descriptions-container {
        margin-top: 0px;
    }
    .product-slider #descriptions-container p {
        font-size:1em
    }
    .product-slider .title-and-controls button,
    .product-slider .title-and-controls button svg {
        width:40px !important;
        height:40px !important;
    }
    .product-slider .buttons-container {
        position:relative;
        top:-5px
    }

}

@media screen and (max-height:414px) {
  h3 {
      font-size:2em !important;
  }
  .product-slider #descriptions-container p {
      font-size:1rem
  }
  .product-slider .images-container {
      position:relative;
      top:-30px
  }
  .product-slider .title-and-controls .buttons-container {
      position:relative;
      top:-4px
  }
  .product-slider .title-and-controls button svg {
      width:35px !important;
  }
}

@media screen and (max-width:414px) {
  #cta-2 .message {
      text-align: center;
      margin: 20px auto;
      width: auto;
      position: relative;
      border: 3.71px solid #fff;
      border-radius: 50px;
      display: inline-block;
      padding: 0.3em 10px
  }
}

@media screen and (max-width: 414px) {
  .highlighted-text {
      font-size: 2.5rem;
  }
  h2 {
      font-size:2.5rem;
  }
  .statement-white-text-wrapper, .statement-black-text-wrapper {
      font-size:2.5rem;
  }
  div#flat {
      margin:unset
  }
}

@media screen and (max-width: 745px) {
  .flipster-container:before,
  .flipster-container:after {
      width: 50px;
  }
}
@media screen and (max-width: 550px) {
  .flipster-container:before,
  .flipster-container:after {
      width: 25px;
  }
  .flipster__container {
      /*scale:0.8 !important;*/
  }
}
@media screen and (max-width: 500px) {
  .flipster-container:before,
  .flipster-container:after {
      width: 10px;
  }
}
@media screen and (max-width: 480px) {
  .flipster-container:before,
  .flipster-container:after {
      width: 0px;
  }
}

@media screen and (max-width:414px) {
  .flipster__item--current .review-text {
      font-size:1rem !important;
  }  
  .review {
      width: 390px;
      height: 310px;
      padding:30px 60px;
  }
  .review .platform {
      right: 60px;
  }
  .statement-highlighted-text-wrapper {
      font-size:unset
  }
  .underline-2 {
      width: 130px !important;
      top:-55px;
  }
  .product-slider #descriptions-container p {
      margin-top:0;
  }
  span.break-xs {
      display: block;
  }
  .underline-1 {
      top: -55px !important;
  }
  .underline-3 {
    top: -55px !important;
    width:135px !important;
}
.underline-4 {
  top: -55px !important;
}

}

@media screen and (max-width: 385px) {
  #cta-2 .message {
      padding: 0.3em 10px;
      font-size: 1.2rem !important;
  }
}

div#locations {
  padding-top: 60px;
}

@media screen and (max-width:768px) {
  .underline-4 {
      display:none;
  }
  .underline-3 {
      width:170px;
      top:-30px;
      left:-18px
      
  }
}

div#locations {
  padding-top: 60px;
  padding-bottom:60px;
}

.asl-cont .sl-container, .asl-cont .sl-container-lg, .asl-cont .sl-container-md, .asl-cont .sl-container-sm, .asl-cont .sl-container-xl {
  max-width: unset;
}

#asl-storelocator .sl-row.Filter_section {
  padding-top:0 !important;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .Filter_section .search_filter label {
  display: none;
}


#asl-storelocator.asl-cont .asl-wrapper .Filter_section .search_filter {
  padding-left: 0 !important;
}

#asl-storelocator .asl-advance-filters {
  display: none;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .Filter_section .search_filter .sl-search-group .span-geo {
  border-radius: 100px;
  position: relative;
  height: 45px;
  padding: 0px;
  top: -5px;
  left: 5px;
  width: 50px;
  background-color: #4cb748 !important;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .Filter_section .search_filter .sl-search-group .span-geo i {
  margin: 0 auto;
}
#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .Filter_section {
  background-color:#fff !important;
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel {
  background-color: #eee !important;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .sl-main-cont .asl-panel-inner .Num_of_store {
  background-color:#fff !important;
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .Num_of_store span {
  color:#000 !important;
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel {
  border: none !important;
}

#asl-storelocator.asl-cont .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box .sl-list-wrapper #p-statelist.sl-list .sl-item {
  margin-bottom: 12px !important;
  background-color: #eee;
}

.hs-form-24126bcb-b86a-45db-a6c0-c80608e3a2e9_d5d25f44-6430-41e3-b67d-82c2fd6be653 .hs-button {
  border-radius: 100px;
}

#asl-storelocator.asl-cont.asl-template-0 .asl-wrapper .sl-main-cont .asl-panel-inner .sl-main-cont-box .sl-list-wrapper .sl-list .sl-item.highlighted {
  background-color: #d1d1d1 !important;
}

div#location-search {
  padding-top: 60px;
}


#asl-storelocator.asl-cont .asl-wrapper .Filter_section .search_filter .sl-search-group .asl-search-clr {
  top: 40% !important;
}

body #asl-storelocator.asl-p-cont #asl-map-canv,
body #asl-storelocator.asl-cont #asl-map-canv {height: 550px !important}

#cta-1-5 .expert {
  display: inline-flex;
  height: 70px;
  width: 70px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
}

#cta-1-5 .text-container {
  align-items: center;
  margin-left:15px
}

#cta-1-5 {
  align-items:center;
  display: inline-flex;
  padding:10px 40px 10px 10px;
  border-radius:500px;
  transition: 0.3s;
  border:4.71px solid #fff;
}

#cta-1-5:hover {
  border-color: #4cb748;
  background-color:#4cb748;
  
}

#cta-1-5 .text-container .get-started {
  display: block;
  font-size: 1.2rem !important;
  font-weight:bold;
  width: 100%;
  color:#fff;
  line-height:1;
}

#cta-1-5 .text-container .message {
  display: block;
  width: 100%;
  color:#fff;
  font-size:1.5rem;
  line-height:1;
}

#cta-1-5 .expert img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width:786px) {
  .product-slider #titles-container h3 {
      font-size: 2em;
  }
  .product-slider #descriptions-container p {
      margin-top:0
  }
  #cta-1-5 {
      margin-top:30px;
  }
  #descriptions-container {
      height:fit-content;
  }
  #cta-1-5 .text-container .get-started {
      font-size:1em !important;
  }
  #cta-1-5 .text-container .message {
      font-size:1.2em !important;
  }
}

@media screen and (max-width:991px) {
  .product-slider #descriptions-container p {
      margin-top:0
  }
  .product-slider #titles-container h3 {
      font-size: 2em;
  }
  #cta-1-5 {
      margin-top:30px;
  }
}

#asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec h3 {
  font-size: 15px !important;
}

.flipster-controller-container #fc-prev-button svg,
.flipster-controller-container #fc-next-button svg{
    fill: #000;
    width: 45px;
    height: 45px;
    border:none;
    transition: 0.3s;
}
.flipster-controller-container #fc-prev-button:hover svg,
.flipster-controller-container #fc-next-button:hover svg{
    fill: #4cb748;
    width: 45px;
    height: 45px;
    border:none;
}
.flipster-controller-container button {
    border:none;
}
.flipster-controller-container button:hover,
.flipster-controller-container button:focus{
    background-color:transparent;
    cursor:pointer;
}

.flipster-controller-container {
    /* background-color: #000; */
    display: inline-block;
    margin: 0 auto;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
}

@media screen and (max-width:768px) { 
  div#location-search {
      padding-top:10px;
  }
}

@media screen and (max-width:768px) { 
  div#location-search {
      padding-top:10px;
  }
}

@media screen and (max-width:374px) { 
  .underline-3 {
      display:none;
  }
}
@media screen and (max-width: 355px) {
  #cta-2 .message {
      /* padding:0 3px !important; */
      font-size: 0.9em !important;
      line-height: 1;
      /* border: none; */
  }
}

.product-slider #descriptions-container p {
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  #cta-1 .container {
      height: 150px;
  }
}
@media screen and (max-width: 768px) {
  #cta-1 .container {
      height: fit-content;
  }
}

div#hero-2 {
  background-color: #e3e3e3;
}

#hero-2 .form-cta {
  background-color: #fff;
  padding: 10px 0;
  border-radius:12px
}

#hero-2 .form-cta h5 {
  background-color: #4cb748;
  padding: 10px 20px;
  color: #fff;
}

#hero-2 .form-cta h3 {
  padding: 20px 20px 10px;
}

#hero-2 .form-cta .hbspt-form {
  padding: 10px 20px;
}

@media screen and (max-width:768px) {
  div#flat {
      margin-top:20px
  }
}
#asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .Num_of_store .asl-print-btn .asl-print {
  filter: contrast(0) brightness(0);
}

footer {
  background-color:#000
}
footer,footer .copyright, footer .footer-links {
  min-height: 15vh;
}

footer .copyright,
footer .footer-links {
  display: flex;
  align-items: center;
  color:#fff;
}
footer .footer-links {
  justify-content: flex-end;
}
footer .footer-links a {
  color:#fff;
  text-transform:capitalize;
  
}
body {
  padding-bottom:0px
}
@media screen and (max-width:768px) {
  
}

@media screen and (max-width:1200px) {
  footer .copyright {
      font-size:0.8rem
  }
  footer .footer-links {
      font-size:1rem;
  }
}

@media screen and (max-width:991px) {
  footer {
      padding:30px 0
  }
  footer,footer .copyright, footer .footer-links {
      min-height: fit-content;
      justify-content: center;
  }
  footer .footer-links {
      
  }
}

@media screen and (max-width:414px) {
  footer .copyright {
      font-size:0.7rem
  }
  footer .footer-links {
      font-size:0.8rem;
  }
}

#elementor-lightbox-slideshow-single-img {
  display: none !important;
}

#review-carousel-2 .review.slick-slide {
  scale: 0.8;
 
}

#review-carousel-2 .review.slick-slide.slick-current {
  scale: 1;
  transition:0.3s;
  background: linear-gradient(281deg,#4cb748,#000000,#4cb748);
  background-size: 180% 180%;
  animation: gradient-animation 24s ease infinite;
}

.lightbox-carousel .ratio img {
  bottom: unset !important;
}

.top-bg {
    position: absolute;
    bottom: 0;
    z-index: 0;
}

div#hero-1 h1 {
    z-index: 1;
    position: relative;
}

div#hero-1 {
    background-color: #4cb748;
    position:relative;
}
.top-bg img {
  object-fit: cover;
  min-height: 500px;
  max-width:100vw;
}
div#hero-1 h1, div#hero-1 h1 .highlight {
  color:#fff;
  filter: drop-shadow(2px 4px 6px rgb(0 0 0 / 34%));
}
#hero-1 a {
  z-index:2;
  position: relative;
  color:#fff;
}

#flat .review .profile-pic {
  display: none;
}

.section-1 {
  float: unset;
  margin: 0;
  margin-top: unset;
}

@media screen and (min-width:768px) {
  .product-slider {
      margin-bottom: 80px;
  }
}

.product-slider #titles-container h3 {
  min-width: 270px;
}

@media screen and (max-width: 991px) {
 .product-slider #titles-container h3 {
      min-width: 200px;
  } 
}

@media screen and (max-width: 768px) {
 .product-slider #titles-container h3 {
      min-width: 100px;
  } 
  .product-slider #titles-container {
      margin-right:10px
  }
}

div#hero-1 a.updown img {
  display: inline-block;
  height: 20px;
  filter: invert(1);
}

.product-slider #descriptions-container p {
    font-size: 1rem;
}