* {
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  /*  color: #2e406c;*/
  color: var(--purple);
  background-color: #f7f8fb;
  font-size: 16px;
  line-height: 1.4em;
  margin: 0;
}

:root {
  --purple: #211551;
  --darkpurple: #1e1a34;
  --lighterpurple: #c5b4e3;
  --lightpurple: #440099;
  --gold: #b58500;
}

h1,
h2,
h3,
h4 {
  font-family: "Fira Sans", sans-serif;
}

h1 {
  margin-top: 0px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

p,
h2,
h3 {
  margin-bottom: 20px;
  margin-top: 0px;
}

h3 {
  font-size: 1.33em;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  transition: 0.4s;
  color: inherit;
}

ul {
  padding-left: 40px;
  margin-bottom: 20px;
}

.subpage-content p a,
.contact-form a {
  border-bottom: 1px solid #adadad;
  font-weight: 500;
}

.subpage-content p a:hover,
.contact-form a:hover {
  color: #adadad;
}

.thank-you-content {
  text-align: center;
}

.thank-you-content p {
  margin-bottom: 40px;
}

.thank-you-content img {
  width: 300px;
  height: auto;
}

/*GREEN SKY STYLES*/

#green-sky {
  background: white;
  padding: 60px 20px;
}

#green-sky .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*HOMEPAGE FINANCING STYLES*/

#homepage-financing {
  padding: 20px;
  border-top: 2px solid var(--lightpurple);
  border-bottom: 2px solid var(--lightpurple);
}

#homepage-financing .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

#homepage-financing h3 {
  color: #999999;
  margin: 10px;
  text-align: center;
}

#homepage-financing span {
  color: var(--lightpurple);
}

#homepage-financing a {
  border: 2px solid var(--lightpurple);
  color: white;
  background: var(--lightpurple);
  padding: 10px 40px;
  border-radius: 35px;
  display: inline-block;
  margin: 10px;
}

#homepage-financing a:hover {
  background: white;
  color: var(--lightpurple);
}

.sidenav a {
  position: fixed;
  z-index: 2;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  top: 50%;
  left: -78px;
  padding: 10px 20px;
  background: var(--lightpurple);
  border: 1px solid var(--lightpurple);
  color: white;
  transform: rotate(90deg);
  transition: 0.3s;
}

.sidenav a:hover {
  background: #fff;
  color: var(--lightpurple);
}

/*SUBPAGE HERO STYLES*/

.subpage-hero {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero.jpg");
  background-size: cover;
  background-position: 50% 70%;
  background-repeat: no-repeat;
}

.subpage-hero1 {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero1.jpg");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
}

.subpage-hero2 {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero2.jpg");
  background-size: cover;
  background-position: 50% 13%;
  background-repeat: no-repeat;
}

.subpage-hero3 {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero3.jpg");
  background-size: cover;
  background-position: 50% 17%;
  background-repeat: no-repeat;
}

.subpage-hero4 {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero4.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.subpage-hero5 {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero5.jpg");
  background-size: cover;
  background-position: 50% -10%;
  background-repeat: no-repeat;
}

.subpage-hero6 {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 61, 0.5),
      rgb(0, 0, 61, 0.5)
    ),
    url("images/subpage-hero6.jpg");
  background-size: cover;
  background-position: 50% 40%;
  background-repeat: no-repeat;
}

/*** DESKTOP STYLES ***/
@media (min-width: 1100px) {
  .container {
    width: 1100px;
    margin: 0 auto;
  }

  .content {
    padding: 80px 0;
  }

  /*** HEADER DESKTOP STYLES ***/

  #navContainer {
    width: 100%;
    transition: 0.4s;
    position: fixed;
    top: 0;
    min-height: fit-content;
    z-index: 1000;
  }

  #topHeaderContainer {
    transition: 0.4s;
  }

  #topHeader {
    padding: 30px 20px;
    transition: 0.4s;
    background-color: white;
  }

  #topHeader .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
  }

  #topHeader img {
    width: 270px;
    height: auto;
  }

  .header-icon {
    display: flex;
    align-items: center;
  }

  .header-icon i {
    padding: 6px;
    border: 2px solid var(--purple);
    margin-right: 10px;
    font-size: 1.5em;
  }

  .header-icon p {
    margin-bottom: 0px;
    font-weight: 500;
    line-height: 1.4em;
  }

  .header-icon a {
    border-bottom: 1px solid transparent;
  }

  .header-icon a:hover {
    border-bottom: 1px solid #adadad;
    color: #adadad;
  }

  a#header-schedule {
    padding: 10px 20px;
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    font-weight: bold;
    border-radius: 30px;
  }

  a#header-schedule:hover {
    background: white;
    color: var(--purple);
  }

  #header-schedule-mobile {
    display: none;
  }

  /*#topHeader {
      animation: fadeIn .5s;
      -webkit-animation: fadeIn .5s;
      -moz-animation: fadeIn .5s;
      -o-animation: fadeIn .5s;
      -ms-animation: fadeIn .5s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }

    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }*/

  a.icon {
    display: none;
  }

  .topnav {
    background-color: var(--purple);
    /*    padding:10px 0;*/
    border-bottom: 1px solid #435d9d;
  }

  .topnav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .topnav a,
  .d-btn {
    display: inline-block;
    color: white;
    padding: 10px 16px;
    border: none;
    font-size: inherit;
    outline: none;
    background-color: inherit;
    font-family: "Poppins", sans-serif;
  }

  .topnav a:hover,
  .d-btn:hover {
    background-color: white;
    color: var(--lighterpurple);
  }

  .d-btn:focus {
    background-color: #adadad;
    /*    color: var(--purple);*/
  }

  .d-btn:hover {
    cursor: default;
  }

  .closebtn {
    display: none;
  }

  /*.dropdown {
    float: left;
    overflow: hidden;
  }*/

  /* DROPDOWN 1 */

  .d-content1 {
    display: none;
    position: absolute;
    background: #fff;
    width: auto;
    min-height: auto;
    z-index: 10;
    padding-top: 20px;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #adadad;
  }

  .dropdown1:hover .d-content1,
  .dropdown:hover .d-content-small1 {
    display: flex;
  }

  .d-content1,
  .d-content-small1 {
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -moz-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .column1 {
    margin-bottom: 30px;
    width: 100%;
    margin: 0 10px 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .column1 a {
    display: block;
    width: 100%;
    color: var(--purple);
    padding: 10px 8px;
    font-size: 1em;
    border-bottom: 1px solid #e0e0e0;
  }

  .column1 h3 {
    color: var(--purple);
    background-color: var(--lighterpurple);
    width: 100%;
    text-transform: uppercase;
    padding: 5px;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }

  .column1 a:hover {
    color: #fff;
    background-color: var(--purple);
  }

  /* DROPDOWN 2 */

  .d-content {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    min-height: 175px;
    left: 0;
    z-index: 10;
    padding-top: 20px;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #adadad;
  }

  .dropdown:hover .d-content,
  .dropdown:hover .d-content-small {
    display: flex;
  }

  .d-content,
  .d-content-small {
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -moz-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .column {
    margin-bottom: 30px;
    width: 31%;
    margin: 0 10px 20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .column a {
    display: block;
    width: 43%;
    color: var(--purple);
    padding: 5px 8px;
    font-size: 0.85em;
    border-bottom: 1px solid #e0e0e0;
  }

  .column h3 {
    color: var(--purple);
    background-color: var(--lighterpurple);
    width: 100%;
    text-transform: uppercase;
    padding: 5px;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }

  .column a:hover {
    color: #fff;
    background-color: var(--purple);
  }
  /*#hero1{
      width:100%;
      background:url('images/mountain-hero.jpg') no-repeat center;
      background-size: cover;
    }*/

  #hero1 {
    background-image: linear-gradient(
        to bottom,
        rgb(0, 0, 61, 0.4),
        rgb(0, 0, 61, 0.4)
      ),
      url("images/mountain-hero.jpg");
    background-size: cover;
    background-position: 50% 60%;
    background-repeat: no-repeat;
  }

  #hero2 {
    width: 100%;
    background: url("images/homepage-hero.jpg") no-repeat center;
    background-size: cover;
  }

  #hero3 {
    width: 100%;
    background: url("images/homepage-hero.jpg") no-repeat center;
    background-size: cover;
  }

  .hero-content {
    padding-top: 171px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
  }

  .hero-content h1 {
    text-transform: uppercase;
    font-size: 3.5em;
    width: 690px;
    line-height: 1em;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
  }

  .hero-content p {
    width: 580px;
    margin-bottom: 20px;
    font-size: 1.15em;
    line-height: 1.4em;
  }

  .hero-btns a {
    display: inline-block;
    margin-right: 20px;
    border-radius: 30px;
    font-weight: bold;
    padding: 12px 30px;
  }

  .hero-btns a:first-of-type {
    background-color: var(--purple);
    border: 2px solid var(--purple);
  }

  .hero-btns a:last-of-type {
    background-color: transparent;
    border: 2px solid white;
  }

  .hero-btns a:hover {
    background-color: white;
    color: var(--purple);
  }

  /* Slideshow container */
  .slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }

  /* Hide the images by default */
  /*.mySlides {
      display: none;
    }*/

  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    top: 50%;
    padding: 20px 10px;
    color: white;
    background-color: rgb(128, 128, 128, 0.7);
    font-weight: bold;
    font-size: 36px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev:hover,
  .next:hover {
    color: var(--purple);
    background-color: rgb(255, 255, 255, 0.7);
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
  }

  @-webkit-keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  /***MAIN BODY DESKTOP STYLES***/

  #why-choose-us {
    background: url(images/why-choose-us.jpg) no-repeat center;
    background-size: cover;
  }

  #why-choose-us .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #why-choose-us-text {
    width: 350px;
  }

  #why-choose-us-text h1 {
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  #why-choose-us-text a {
    border-radius: 30px;
    background: transparent;
    padding: 10px 20px;
    border: 2px solid var(--purple);
    display: inline-block;
    font-weight: bold;
  }

  #why-choose-us-text a:hover {
    background: var(--purple);
    color: white;
  }

  #home-service-container {
    width: 688px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .service-icon {
    display: flex;
    align-items: center;
    padding: 30px 10px;
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    width: 310px;
    height: 185px;
    margin: 10px 0;
    transition: 0.4s;
  }

  /*.service-icon:hover{
      background: #fff;
      color: var(--purple);
    }*/

  .service-icon img {
    margin-right: 20px;
    width: 57px;
    height: 57px;
  }

  .service-icon i {
    color: #3bc9f2;
    margin-right: 22px;
    margin-left: 2px;
    font-size: 3.2em;
  }

  .service-icon h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  .service-icon p {
    margin-bottom: 0px;
    font-size: 0.95em;
  }

  #sewer-drain-home .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #sewer-drain-img {
    display: flex;
    flex-direction: column;
    width: 500px;
  }

  #sewer-drain-img img {
    width: 400px;
    height: auto;
    z-index: 0;
  }

  #sewer-drain-text {
    padding: 40px;
    box-shadow: -5px 5px 5px 7px #adadad;
    margin-top: -30px;
    width: 400px;
    z-index: 2;
    background: white;
    margin-left: 60px;
  }

  #sewer-drain-text h1 {
    margin-bottom: 20px;
  }

  #sewer-drain-text p {
    margin-bottom: 30px;
  }

  #sewer-drain-text ul {
    margin: 10px 0 30px;
  }

  #sewer-drain-text a {
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    display: inline-block;
  }

  #sewer-drain-text a:hover {
    background: white;
    color: var(--purple);
  }

  #sewer-drain-modal {
    /*      width: fit-content;*/
    position: relative;
  }

  #sewer-drain-modal img {
    width: 420px;
    position: relative;
  }

  img.mobile-video-img {
    display: none;
  }

  .modal-btn {
    height: 100%;
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  a.play-video {
    position: absolute;
    left: 40%;
    bottom: 40%;
  }

  #sewer-drain-modal i {
    color: white;
    z-index: 2;
    border: 2px solid white;
    padding: 20px;
    padding-left: 25px;
    border-radius: 50%;
    font-size: 2em;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    transition: 0.4s;
  }

  #sewer-drain-modal i:hover {
    background: white;
    color: var(--purple);
  }

  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  }

  /* Modal Content/Box */
  .modal-content {
    /*      background-color: rgb(46, 64, 108, .8);*/
    margin: 10% auto; /* 10% from the top and centered */
    /*      padding: 20px;*/
    width: fit-content; /* Could be more or less, depending on screen size */
  }

  .modal-content iframe {
    width: 800px;
    height: 450px;
    display: block;
    margin: 40px auto;
  }

  /* The Close Button */
  .close {
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid white;
    float: right;
    width: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 36px;
    margin: -60px 0 0 60px;
    transition: 0.4s;
  }

  .close:hover,
  .close:focus {
    color: var(--purple);
    background: white;
    text-decoration: none;
    cursor: pointer;
  }

  #special-offers {
    padding-top: 40px;
  }

  .short-blue-line {
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background: var(--purple);
    margin-bottom: 10px;
  }

  #offers-container {
    display: flex;
    justify-content: space-between;
  }

  .special-offer {
    text-align: center;
    transition: 0.4s;
    box-shadow: 2px 2px 2px 3px #f5f5f5;
    border: 1px solid lightgray;
    padding-bottom: 20px;
  }

  .special-offer img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .special-offer h3 {
    font-size: 1.15em;
    padding: 0 10px;
  }

  /*.special-offer:hover{
      background: #fff;
      box-shadow: 2px 2px 2px 3px #adadad;
    }*/

  .estimate-container {
    text-align: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid gray;
  }

  .estimate-container a {
    padding: 10px 20px;
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    width: 300px;
    font-size: 1.33em;
    box-shadow: -5px 5px 5px 2px gray;
  }

  .estimate-container a:hover {
    background: white;
    color: var(--purple);
  }

  #homepage-values {
    background: url(images/pipe-background-bright.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding-bottom: 40px;
  }

  #values-container {
    width: 700px;
    margin: 60px auto 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .value {
    width: 150px;
    margin-bottom: 40px;
  }

  .value i {
    padding: 15px;
    color: var(--lighterpurple);
    border: 3px solid var(--gold);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 2em;
    margin-bottom: 20px;
  }

  #homepage-values p {
    margin: 0 auto 20px;
    display: block;
    width: 620px;
  }

  #homepage-logos {
    background: white;
    padding: 20px;
  }

  #homepage-logos img {
    max-width: 300px;
    height: auto;
    margin: 0 40px;
  }

  #homepage-logos .container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }

  /*SUBPAGE DESKTOP STYLES*/

  .subpage-hero {
    padding-top: 171px;
    /*      background: var(--purple);*/
    color: white;
    border-bottom: 1px solid black;
    height: 350px;
  }

  .subpage-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 40px;
  }

  .subpage-hero h1 {
    margin-bottom: 0px;
  }

  /*ABOUT DESKTOP*/

  .img-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
  }

  .img-row img {
    width: 32%;
    height: auto;
  }

  /*SERVICES DESKTOP*/

  #services-content .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .service-links {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 48%;
    margin-bottom: 20px;
  }

  .service-links h3 {
    background: #e0e0e0;
    /*      color: white;*/
    padding: 5px 5px 5px 10px;
    width: 100%;
    font-size: 1.1em;
  }

  .service-links a {
    width: 45%;
    padding-left: 10px;
    border-bottom: 1px solid #adadad;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .service-links a:hover {
    color: #adadad;
  }

  .service-links .full-width {
    width: 100%;
  }

  /*CONTACT DESKTOP*/

  #contact-content .container {
    display: flex;
    justify-content: space-between;
  }

  .contact-form {
    width: 460px;
    display: flex;
    flex-direction: column;
  }

  .contact-form p {
    margin-bottom: 40px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-family: "Poppins", sans-serif;
    color: var(--purple);
    margin-bottom: 20px;
  }

  .contact-form label {
    margin-bottom: 10px;
  }

  .contact-form select {
    padding: 10px;
    font-family: "Poppins", sans-serif;
    color: var(--purple);
    margin-bottom: 20px;
  }

  .contact-form #message {
    height: 100px;
  }

  .contact-form #other {
    height: 21px;
  }

  .contact-form #submit {
    background: var(--purple);
    color: white;
    text-align: center;
    width: 40%;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.4s;
    margin-top: 20px;
  }

  .contact-form #submit:hover {
    cursor: pointer;
    color: var(--purple);
    background: #e0e0e0;
  }

  .contact-text {
    width: 460px;
  }

  .contact-text iframe {
    width: 100%;
    height: 300px;
    margin-top: 20px;
  }

  #company-img {
    padding-top: 0px;
    text-align: center;
  }

  /*FINANCING DESKTOP STYLES*/

  #finance-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--lightpurple);
  }

  #finance-content img {
    width: 500px;
    height: auto;
    margin-bottom: 20px;
  }

  #finance-content h2 {
    color: #999999;
    margin-bottom: 20px;
    font-size: 1.66em;
  }

  .finance-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid lightgray;
  }

  .finance-container a {
    border: 2px solid var(--lightpurple);
    color: white;
    background: var(--lightpurple);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin: 0 0 20px 40px;
  }

  .finance-container a:hover {
    background: white;
    color: var(--lightpurple);
  }

  .finance-container p {
    color: #999999;
    font-size: 0.9em;
    width: 100%;
    text-align: center;
  }

  /*INDOOR AIR QUALITY DESKTOP*/

  .iframe-container {
    padding-bottom: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid lightgray;
  }
  .iframe-container:last-of-type {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
  }

  .responsive-iframe {
    text-align: center;
    margin-bottom: 20px;
  }

  .responsive-iframe iframe {
    width: 700px;
    height: 393px;
  }

  .iframe-container h3,
  .iframe-container p {
    width: 700px;
    margin: 0 auto 20px;
  }

  /*MAINTENANCE PLANS DESKTOP*/

  .plan-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid lightgray;
  }

  .plan-content:first-of-type {
    margin-top: 40px;
  }

  .plan-content:last-of-type {
    flex-direction: row-reverse;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }

  .plan-content img {
    margin-right: 80px;
    width: 360px;
    height: auto;
    margin-bottom: 20px;
  }

  .plan-content:last-of-type img {
    margin-right: 0px;
    margin-left: 80px;
  }

  .plan-content span {
    text-transform: uppercase;
    font-weight: bold;
  }

  /* FOOTER DESKTOP */

  footer {
    background: var(--purple);
    padding: 60px 20px;
    color: #b8b8b8;
  }

  footer .container {
    display: flex;
    justify-content: space-between;
  }

  .footer-col {
    max-width: 400px;
    min-width: 100px;
  }

  .footer-col img {
    margin-bottom: 20px;
  }

  .footer-col a {
    border-bottom: 1px solid #435d9d;
  }

  .footer-col a:hover {
    color: white;
    border-bottom: 1px solid white;
  }

  p.more-line-height {
    line-height: 1.7em;
  }

  .p-row {
    display: flex;
  }

  .p-row a {
    display: inline-block;
    width: 190px;
    margin-left: 13px;
  }

  .footer-social {
    display: flex;
  }

  .footer-social i {
    padding: 8px;
    font-size: 1.25em;
    transition: 0.4s;
  }

  .footer-social i:hover {
    background: #adadad;
    color: white;
  }

  .footer-social a {
    border-bottom: none;
  }

  .footer-social a:hover {
    border-bottom: none;
  }

  .footer-col h3 {
    color: white;
  }

  #sub-footer {
    background: var(--darkpurple);
    padding: 20px;
    text-align: center;
    color: #adadad;
    font-size: 0.9em;
  }

  #sub-footer a {
    border-bottom: 1px solid white;
  }

  #sub-footer a:hover {
    color: white;
  }

  .service-areas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }

  .service-areas-left {
    display: flex;
    flex-direction: column;
  }

  .service-areas-left h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .service-areas-left i {
    font-size: 30px;
    color: var(--gold);
    /* font-weight: 900; */
  }

  .service-areas-left h2 {
    margin-top: 20px;
    font-size: 40px;
    width: 80%;
    line-height: 1;
  }

  .service-areas-right {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0px 0px 15px 10px var(--purple);
    background-color: rgb(230, 230, 230);
  }

  .service-areas-right h2 {
    margin-bottom: 0px;
    font-size: 35px;
  }

  .service-areas-right h2:nth-of-type(2) {
    margin-top: 30px;
  }

  .service-areas-right-col {
    display: grid;
    grid-template-columns: repeat(6, 2fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin: 20px 0;
    height: 100px;
    align-items: center;
  }

  .service-areas-right-col a {
    color: var(--gold);
    font-size: 16px;
    font-weight: 650;
    margin: 10px;
    position: relative;
  }

  .service-areas-right-col a:before {
    content: "";
    background-color: var(--lightpurple);
    height: 3px;
    width: 0px;
    bottom: -5px;
    position: absolute;
    transition: 0.5s all;
  }

  .service-areas-right-col a:hover:before {
    height: 3px;
    width: 100%;
    transition: 0.5s all;
  }

  .service-page-images {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 40px 0;
  }

  .service-page-column {
    display: flex;
    flex-direction: column;
  }

  .service-page-column h2 {
    margin-bottom: 0px;
    text-align: center;
    background-color: var(--purple);
    padding: 10px 0px;
    font-size: 20px;
    color: white;
  }

  .service-page-column img {
    width: 300px;
    height: 250px;
  }

  .blog {
    display: flex;
    flex-direction: column;
  }

  .blog-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 2px solid rgba(68, 0, 153, 0.5);
    margin-bottom: 40px;
  }

  .blog-container img {
    width: 300px;
    height: 225px;
    box-shadow: -10px 10px var(--purple);
    margin-left: 10px;
  }

  .blog-container-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .blog-container-text:before {
    content: "";
    position: absolute;
    top: 42%;
    left: -15%;
    background-color: var(--lightpurple);
    width: 65px;
    height: 2px;
  }

  .blog-container-text h2 {
    margin-bottom: 40px;
  }

  .blog-container-text p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-container-text a {
    text-align: center;
    padding: 10px 15px;
    background-color: var(--lightpurple);
    color: white;
    font-size: 15px;
    margin: 20px 0px 40px 0px;
    width: 100px;
    transition: all 0.5s;
  }

  .blog-container-text a:hover {
    background-color: var(--lighterpurple);
    color: var(--lightpurple);
    font-weight: 800;
    transition: all 0.5s;
    border: none;
  }

  .blogs {
    display: flex;
    flex-direction: column;
  }

  .blog-img {
    display: flex;
    margin-bottom: 40px;
  }

  .blog-img img {
    width: 50%;
    height: 50%;
    margin: 0 auto;
  }

  .btb {
    text-align: center;
    padding: 10px 15px;
    background-color: var(--lightpurple);
    color: white;
    font-size: 15px;
    margin: 20px 0px 40px 0px;
    width: 100px;
    transition: all 0.5s;
  }

  .btb:hover {
    background-color: var(--lighterpurple);
    color: var(--lightpurple);
    font-weight: 800;
    transition: all 0.5s;
    border: none;
  }
}

/*** MOBILE STYLES ***/
@media (max-width: 1099px) {
  .container {
    width: 100%;
    margin: 0 auto;
  }

  .content {
    padding: 60px 20px;
  }

  /*** HEADER MOBILE STYLES ***/

  .sidenav a {
    font-size: 0.9em;
  }

  #navContainer {
    border-bottom: 1px solid var(--purple);
    position: fixed;
    width: 100%;
    padding-bottom: 10px;
    background-color: white;
    top: 0;
    z-index: 20;
  }

  #topHeaderContainer {
    margin: 0px !important;
  }

  .header-icon {
    display: none;
  }

  #topHeader {
    padding: 0 !important;
  }

  #topHeader img {
    float: left;
    width: 200px;
    height: auto;
    padding-top: 20px;
    margin-left: 20px;
  }

  /* NAV */

  /* Hamburger bars styles*/
  a.icon {
    position: absolute;
    display: block;
    font-size: 32px;
    right: 20px;
    top: 30px;
    color: var(--purple);
  }

  a.icon:hover {
    background: none !important;
  }

  /* The Overlay (background) */
  .overlay {
    height: 0;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 102, 0.95); /* Blue w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
  }

  /* Position the content inside the overlay */
  .overlay-content {
    position: relative;
    top: 8%; /* 10% from the top */
    text-align: left;
    margin-top: 10px; /* 10px top margin to avoid conflict with the close button on smaller screens */
    padding: 0 5px;
  }

  /* The navigation links inside the overlay */
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid #adadad;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
  }

  /* Position the close button (top right corner) */
  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 40px;
    color: white !important;
    border-bottom: none !important;
  }

  .overlay .closebtn:hover {
    background: none !important;
    color: #fff !important;
  }

  .overlay a:hover,
  .dropdown:hover .d-btn {
    background: #fff;
    color: var(--purple);
    transition: background-color 0.4s;
  }

  .overlay a:hover,
  .dropdown1:hover .d-btn {
    background: #fff;
    color: var(--purple);
    transition: background-color 0.4s;
  }

  .d-content1 {
    display: none;
    background: #fff;
    left: 35%;
    z-index: 10;
    top: 0;
    margin-bottom: 10px;
  }

  .d-content1,
  .d-content-small1 {
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -moz-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .column1 {
    /*    width:  47%;*/
    padding: 10px;
    background: #fff;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .column1 a {
    display: flex;
    align-items: center;
    color: var(--purple);
    width: 45%;
    text-align: left;
    padding: 5px;
    font-size: 0.85em;
    font-weight: 400;
  }

  .column1 a:last {
    margin-bottom: 20px;
  }

  .column1 h3 {
    color: black;
    width: 100%;
    margin-bottom: 5px;
    text-transform: uppercase;
    background: #e0e0e0;
    padding: 5px;
    padding-left: 10px;
    font-size: 0.9em;
  }

  .column1 a:hover {
    color: #fff;
    background: var(--purple);
    padding-left: 5px;
    transition: background 0.2s, color 0.2s;
  }

  /* Dropdown 2 */
  .d-content {
    display: none;
    background: #fff;
    min-height: 175px;
    left: 35%;
    z-index: 10;
    top: 0;
    margin-bottom: 10px;
  }

  .d-content,
  .d-content-small {
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -moz-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .column {
    /*    width:  47%;*/
    padding: 10px;
    background: #fff;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .column a {
    display: flex;
    align-items: center;
    color: var(--purple);
    width: 45%;
    text-align: left;
    padding: 5px;
    font-size: 0.85em;
    font-weight: 400;
  }

  .column a:last {
    margin-bottom: 20px;
  }

  .column h3 {
    color: black;
    width: 100%;
    margin-bottom: 5px;
    text-transform: uppercase;
    background: #e0e0e0;
    padding: 5px;
    padding-left: 10px;
    font-size: 0.9em;
  }

  .column a:hover {
    color: #fff;
    background: var(--purple);
    padding-left: 5px;
    transition: background 0.2s, color 0.2s;
  }

  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {
    display: block;
  }

  #header-social {
    display: flex;
  }

  #header-social a {
    border-bottom: none;
  }

  /*HERO MOBILE STYLES*/

  #hero1 {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(
        to bottom,
        rgb(0, 0, 61, 0.4),
        rgb(0, 0, 61, 0.4)
      ),
      url("images/mountain-hero.jpg");
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
  }

  #hero2 {
    width: 100%;
    height: 500px;
    background: url("images/homepage-hero.jpg") no-repeat center;
    background-size: cover;
  }

  #hero3 {
    width: 100%;
    height: 500px;
    background: url("images/homepage-hero.jpg") no-repeat center;
    background-size: cover;
  }

  .hero-content {
    height: 500px;
    /*width: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 77px;
  }

  .hero-content h1 {
    text-transform: uppercase;
    font-size: 2.3em;
    line-height: 1em;
    font-weight: bolder;
    color: white;
    width: 80%;
    margin-bottom: 25px;
  }

  .hero-content p {
    margin-bottom: 25px;
    line-height: 1.4em;
    width: 80%;
  }

  .hero-btns {
    display: flex;
    justify-content: center;
  }

  .hero-btns a {
    display: inline-block;
    margin: 0 5px;
    border-radius: 30px;
    font-weight: bold;
    padding: 12px 30px;
  }

  .hero-btns a:first-of-type {
    background-color: var(--purple);
    border: 2px solid var(--purple);
  }

  .hero-btns a:last-of-type {
    background-color: transparent;
    border: 2px solid white;
  }

  .hero-btns a:hover {
    background-color: white;
    color: var(--purple);
  }

  /* Hide the images by default */
  /*.mySlides {
    display: none;
  }*/

  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: relative;
    width: auto;
    padding: 15px 10px;
    margin: -305px 0px 0;
    color: #fff;
    z-index: 2;
    background-color: rgb(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: 26px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }

  .prev {
    left: 0;
    float: left;
  }

  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
    float: right;
  }

  /* On hover, add a white color with a little bit see-through */
  .prev:hover,
  .next:hover {
    color: #15324b;
    /*background-color: rgb(128,128,128, .7);*/
  }

  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
  }

  @-webkit-keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  /***MAIN BODY MOBILE STYLES***/

  #why-choose-us {
    background: url(images/why-choose-us.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 50px;
  }

  #why-choose-us-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }

  #why-choose-us-text h1 {
    text-transform: uppercase;
  }

  #why-choose-us-text p {
    max-width: 500px;
    margin-bottom: 40px;
  }

  #why-choose-us-text a {
    border-radius: 30px;
    background: transparent;
    padding: 10px 20px;
    border: 2px solid var(--purple);
    display: inline-block;
    font-weight: bold;
  }

  #why-choose-us-text a:hover {
    background: var(--purple);
    color: white;
  }

  #home-service-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .service-icon {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    width: 300px;
    height: 180px;
    margin: 10px;
    transition: 0.4s;
  }

  /*.service-icon:hover{
      background: #fff;
      color: var(--purple);
    }*/

  .service-icon img {
    margin-right: 20px;
    width: 57px;
    height: auto;
  }

  .service-icon i {
    color: #3bc9f2;
    margin-right: 22px;
    margin-left: 2px;
    font-size: 3.2em;
  }

  .service-icon h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  .service-icon p {
    margin-bottom: 0px;
    font-size: 0.9em;
  }

  #sewer-drain-home .container {
    /* display: flex;
      justify-content: center;
      align-items: center;*/
  }

  #sewer-drain-img {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #sewer-drain-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
    z-index: 0;
  }

  #sewer-drain-text {
    padding: 40px;
    box-shadow: 3px 3px 3px gray;
    max-width: 500px;
    /*      z-index: 2;*/
    background: white;
    margin-bottom: 60px;
  }

  #sewer-drain-text h1 {
    margin-bottom: 20px;
  }

  #sewer-drain-text p {
    margin-bottom: 30px;
  }

  #sewer-drain-text ul {
    margin: 10px 0 30px;
  }

  #sewer-drain-text a {
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    display: inline-block;
  }

  #sewer-drain-text a:hover {
    background: white;
    color: var(--purple);
  }

  #sewer-drain-modal {
    position: relative;
    text-align: center;
  }

  #sewer-drain-modal img {
    max-width: 600px;
    height: auto;
    width: 100%;
    position: relative;
  }

  img.desktop-video-img {
    display: none;
  }

  .modal-btn {
    height: 100%;
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  a.play-video {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
  }

  #sewer-drain-modal i {
    color: white;
    z-index: 2;
    border: 2px solid white;
    padding: 20px;
    padding-left: 25px;
    border-radius: 50%;
    font-size: 2em;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    transition: 0.4s;
  }

  #sewer-drain-modal i:hover {
    background: white;
    color: var(--purple);
  }

  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
  }

  /* Modal Content/Box */
  .modal-content {
    margin: 50% auto; /* 10% from the top and centered */
    width: 95%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
  }

  .modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* The Close Button */
  .close {
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid white;
    float: right;
    width: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 36px;
    margin: -60px 0 0 60px;
    transition: 0.4s;
  }

  .close:hover,
  .close:focus {
    color: var(--purple);
    background: white;
    text-decoration: none;
    cursor: pointer;
  }

  #special-offers {
    padding: 40px 20px;
  }

  #special-offers h1 {
    text-align: center;
  }

  .short-blue-line {
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background: var(--purple);
    margin: 0 auto 10px;
  }

  #offers-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .special-offer {
    margin: 0 20px 40px;
    text-align: center;
    transition: 0.4s;
    padding-bottom: 10px;
    border: 1px solid lightgray;
  }

  .special-offer img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .special-offer h3 {
    font-size: 1.15em;
  }

  .special-offer:hover {
    background: white;
  }

  .estimate-container {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 20px;
    border-top: 1px solid gray;
  }

  .estimate-container a {
    padding: 10px 20px;
    background: var(--purple);
    border: 2px solid var(--purple);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    width: 260px;
    font-size: 1.33em;
    box-shadow: -5px 5px 5px 2px gray;
  }

  .estimate-container a:hover {
    background: white;
    color: var(--purple);
  }

  #homepage-values {
    background: url(images/pipe-background-bright.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
  }

  #values-container {
    max-width: 700px;
    margin: 60px auto 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .value {
    width: 150px;
    margin: 0 auto 40px;
  }

  .value i {
    padding: 15px;
    color: #fff;
    border: 3px solid var(--gold);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    font-size: 2em;
    margin-bottom: 20px;
  }

  #homepage-values p {
    margin: 0 auto 20px;
    display: block;
    max-width: 620px;
  }

  #homepage-logos {
    background: white;
    padding: 20px;
  }

  #homepage-logos img {
    max-width: 230px;
    height: auto;
    margin: 0 10px;
  }

  #homepage-logos .container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }

  /*SUBPAGE MOBILE STYLES*/

  .subpage-hero5 {
    background-image: linear-gradient(
        to bottom,
        rgb(0, 0, 61, 0.5),
        rgb(0, 0, 61, 0.5)
      ),
      url("images/subpage-hero5.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }

  .subpage-hero {
    color: white;
    /*      background: var(--purple);*/
    margin-top: 77px;
    height: 100px;
  }

  .subpage-hero .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .subpage-hero h1 {
    margin-bottom: 0px;
  }

  /*ABOUT MOBILE*/

  .img-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
  }

  .img-row img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 10px 20px;
  }

  /*SERVICES INDEX MOBILE*/

  #services-content .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .service-links {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    max-width: 350px;
    width: 100%;
    margin-bottom: 20px;
  }

  .service-links h3 {
    background: #e0e0e0;
    /*      color: white;*/
    padding: 5px 5px 5px 10px;
    width: 100%;
    font-size: 1.1em;
  }

  .service-links a {
    width: 45%;
    padding-left: 10px;
    border-bottom: 1px solid #adadad;
    font-weight: 500;
    margin-bottom: 20px;
  }

  .service-links a:hover {
    color: #adadad;
  }

  .service-links .full-width {
    width: 100%;
  }

  /*FINANCING MOBILE STYLES*/

  #finance-content img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto 20px;
    display: block;
  }

  /*CONTACT MOBILE STYLES*/

  .contact-form {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .contact-form h3 {
    text-align: center;
  }

  .contact-form p {
    margin-bottom: 40px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    font-family: "Poppins", sans-serif;
    color: var(--purple);
    margin-bottom: 20px;
  }

  .contact-form label {
    margin-bottom: 10px;
  }

  .contact-form select {
    padding: 10px;
    font-family: "Poppins", sans-serif;
    color: var(--purple);
    margin-bottom: 20px;
  }

  .contact-form #message {
    height: 80px;
  }

  .contact-form #other {
    height: 21px;
  }

  .contact-form #submit {
    background: var(--purple);
    color: white;
    text-align: center;
    width: 40%;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.4s;
    margin-top: 20px;
  }

  .contact-form #submit:hover {
    cursor: pointer;
    color: var(--purple);
    background: #e0e0e0;
  }

  .contact-text {
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid lightgray;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-text h3 {
    text-align: center;
  }
  .contact-text p {
    width: 335px;
  }

  .contact-text iframe {
    width: 100%;
    max-width: 450px;
    height: 300px;
    margin-top: 20px;
  }

  #company-img {
    padding-top: 0px;
    text-align: center;
  }

  #company-img img {
    width: 100%;
    height: auto;
  }

  /*INDOOR AIR QUALITY MOBILE*/

  .iframe-container {
    padding-bottom: 20px;
    margin: 0 auto 40px;
    border-bottom: 1px solid lightgray;
    max-width: 700px;
  }
  .iframe-container:last-of-type {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
  }

  .responsive-iframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }

  .responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  /*MAINTENANCE PLANS MOBILE*/

  #maintenance-content img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    height: auto;
    max-width: 300px;
  }

  #maintenance-content span {
    font-weight: bold;
  }

  .plan-content:last-of-type {
    display: flex;
    flex-direction: column-reverse;
    /*      align-items: center;*/
    margin-top: 20px;
  }

  .plan-img {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }

  .plan-img img {
    margin: 0 10px 20px !important;
  }

  /*FOOTER MOBILE*/

  footer {
    padding: 60px 20px 40px;
    background: var(--purple);
    color: #adadad;
  }

  footer .container {
    /*display: flex;
      justify-content: space-between;*/
  }

  .footer-col {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #435d9d;
  }

  .footer-col:last-of-type {
    flex-flow: row wrap;
    justify-content: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }

  .footer-col:last-of-type a {
    margin: 10px;
  }

  .footer-col img {
    margin-bottom: 20px;
  }

  .footer-col p {
    max-width: 500px;
  }

  .footer-col:nth-of-type(2) {
    padding-bottom: 20px;
  }

  .footer-col:nth-of-type(2) p {
    width: 280px;
    text-align: center;
  }

  .footer-col a {
    border-bottom: 1px solid #435d9d;
  }

  .footer-col a:hover {
    color: white;
    border-bottom: 1px solid white;
  }

  p.more-line-height {
    line-height: 1.7em;
  }

  .p-row {
    display: flex;
    flex-direction: column;
  }

  .p-row p {
    width: fit-content;
    margin-bottom: 0px;
  }

  .p-row a {
    display: inline-block;
    width: fit-content;
    text-align: center;
    margin: 0 auto 20px;
  }

  .footer-social {
    display: flex;
  }

  .footer-social i {
    padding: 8px;
    font-size: 1.25em;
    transition: 0.4s;
  }

  .footer-social i:hover {
    background: #adadad;
    color: white;
  }

  .footer-social a {
    border-bottom: none;
  }

  .footer-social a:hover {
    border-bottom: none;
  }

  .footer-col h3 {
    color: white;
    width: 100%;
    text-align: center;
  }

  #sub-footer {
    background: var(--darkpurple);
    padding: 20px;
    text-align: center;
    color: #adadad;
    font-size: 0.9em;
  }

  #sub-footer a {
    border-bottom: 1px solid white;
  }

  #sub-footer a:hover {
    color: white;
  }

  .nuve {
    display: none;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-areas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }

  .service-areas-left {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .service-areas-left h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .service-areas-left i {
    font-size: 30px;
    color: var(--gold);
    /* font-weight: 900; */
  }

  .service-areas-left h2 {
    margin-top: 20px;
    font-size: 40px;
    width: 80%;
    line-height: 1;
    margin-bottom: 30px;
  }

  .service-areas-right {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0px 0px 15px 10px var(--purple);
    width: 80%;
    background-color: rgb(230, 230, 230);
  }

  .service-areas-right h2 {
    margin-bottom: 0px;
    font-size: 35px;
    text-align: center;
  }

  .service-areas-right h2:nth-of-type(2) {
    margin-top: 30px;
  }

  .service-areas-right-col {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-template-rows: repeat(6, auto);
    gap: 10px;
    margin: 20px 0;
    height: 325px;
    align-items: center;
  }

  .service-areas-right-col a {
    color: var(--gold);
    font-size: 16px;
    font-weight: 650;
    margin: 10px;
    position: relative;
  }

  .service-areas-right-col a:before {
    content: "";
    background-color: var(--lightpurple);
    height: 3px;
    width: 0px;
    bottom: -5px;
    position: absolute;
    transition: 0.5s all;
  }

  .service-areas-right-col a:hover:before {
    height: 3px;
    width: 100%;
    transition: 0.5s all;
  }

  .service-page-images {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 40px 0;
  }

  .service-page-column {
    display: flex;
    flex-direction: column;
  }

  .service-page-column h2 {
    margin-bottom: 0px;
    text-align: center;
    background-color: var(--purple);
    padding: 10px 0px;
    font-size: 20px;
    color: white;
  }

  .service-page-column img {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }

  .blog {
    display: flex;
    flex-direction: column;
  }

  .blog-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(68, 0, 153, 0.5);
    margin-bottom: 40px;
  }

  .blog-container img {
    width: 300px;
    height: 225px;
    box-shadow: -10px 10px var(--purple);
    margin-bottom: 40px;
  }

  .blog-container-text {
    width: 90%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  /* .blog-container-text:before {
      content: '';
      position: absolute;
      top: 42%;
      left: -15%;
      background-color: var(--lightpurple);
      width: 65px;
      height: 2px;
    } */

  .blog-container-text h2 {
    margin-bottom: 40px;
  }

  .blog-container-text p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-container-text a {
    text-align: center;
    padding: 10px 15px;
    background-color: var(--lightpurple);
    color: white;
    font-size: 15px;
    margin: 20px 0px 40px 0px;
    width: 100px;
    transition: all 0.5s;
  }

  .blog-container-text a:hover {
    background-color: var(--lighterpurple);
    color: var(--lightpurple);
    font-weight: 800;
    transition: all 0.5s;
    border: none;
  }

  .blogs {
    display: flex;
    flex-direction: column;
  }

  .blog-img {
    display: flex;
    margin-bottom: 40px;
  }

  .blog-img img {
    width: 50%;
    height: 50%;
    margin: 0 auto;
  }

  .btb {
    text-align: center;
    padding: 10px 15px;
    background-color: var(--lightpurple);
    color: white;
    font-size: 15px;
    margin: 20px 0px 40px 0px;
    width: 100px;
    transition: all 0.5s;
  }

  .btb:hover {
    background-color: var(--lighterpurple);
    color: var(--lightpurple);
    font-weight: 800;
    transition: all 0.5s;
    border: none;
  }
}
