@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Roboto:ital,wght@0,300;1,100;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Great+Vibes&family=Indie+Flower&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Indie+Flower&family=Playpen+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Indie+Flower&family=Playpen+Sans&family=Syne&display=swap');
@import url(https://db.onlinewebfonts.com/c/f8deb3c1a029ec56b15bb462c1518f07?family=Snell+Roundhand+W01+Script);
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Square&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nova+Square&family=Oranienbaum&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: "Poppins", Arial, sans-serif;

}



:root {
    --orange: #ff7e01;
    --beige: #FEFAE0;
}


/* --------------------------------------------------------------------------------before-head -------------------------------------------------------*/

.nav-link:hover {
    color: var(--orange);
}

.nav-item,
.nav-link a:active {
    color: var(--orange);
}

.nav-item.active .nav-link {
    color: var(--orange);
}

.nav-item.active:after {
    opacity: 1;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--orange);
}

.bg-warning {
    background-color: var(--orange);
}

.nav-btn {
    font-size: 25px;
    text-align: center;
    color: white;
}

.nav-btn-section {
    background-color: var(--orange);
}

.white-icon {
    color: white;
}

/* hero-Section */
.hero {
    background-image: url(../img/hero-section-background.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 50px;
    width: 100%;

}

.dryer-vent{
    background-image: url(../img/dryer-vent-hero-section.webp);
}
.air-conditioner-hero{
    background-image: url(../img/air-conditioner-hero-section.webp);
}

.home-row {
    margin-top: 150px;
}

.home-title {
    text-transform: capitalize;
    color: white;
    font-size: 70px;
    font-weight: 400;
}

.hero .txt-span {
    background-color: var(--orange);
    padding: 10px;
}

.home-text {
    padding: 30px;
    padding-right: 60px;
    padding-left: 60px;
    color: white;
    font-size: 18px;
}

.hero-btn {
    background-color: var(--orange);
    color: black;
    font-size: 25px;
}

.black-btn{
    background-color: white;
    color: var(--orange);
}


.hero-btn:hover {
    background-color: white;
}

.black-btn:hover{
    background-color: var(--orange);
}

.features-card {
    background-color: black;
    padding: 25px;
}

.features-card i {
    color: var(--orange);
    padding: 20px;
    font-size: 80px;
}

.features-card p {
    color: white;
    font-size: 20px;
    padding: 20px;
}

.features-text {
    font-size: 30px;
    font-weight: 500;
}

.features-card:hover i {
    color: white;
}

.features-card:hover {
    background-color: var(--orange);
}

@media (max-width:992px) {
    .hero {
        background-attachment: scroll;

    }

    .home-row {
        margin-top: 85px;
    }

    .home-title {
        font-size: 40px;
    }

    .hero .txt-span {
        padding: 5px;
    }

    .navbar ul>li>a {
        color: black;
        text-align: center;
    }

    .navbar ul>li>a:hover {
        color: var(--orange);
        text-align: center;
    }
}

/* ------------------------------------------------------------------dust and duct start --------------------------------------------------------------*/
.dust-and-duct {
    margin-top: 70px;
}

.dust-and-duct h1 {
    text-transform: capitalize;
    color: var(--orange);
    font-size: 50px;
    position: relative;
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(90deg, #ff7e01, #000000, #ff7e01);
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animate 5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}

.dust-and-duct p {
    padding-top: 40px;
    font-size: 18px;
    letter-spacing: 2px;
}

.orange-background {
    position: relative;
    background-color: var(--orange);
    width: 640px;
    height: 552px;
}

.dust-img {
    position: absolute;
    display: block;
    top: 10%;
    left: 10%;

}

@media (max-width:1500px) {
    .orange-background {
        width: 500px;
        height: 400px;
    }
    

}

@media (max-width:992px) {
    .orange-background {
        width: 400px;
        height: 300px;
    }
    .dust-and-duct h1 {
        text-align: center;
    }
    .dust-and-duct p{
        font-size: 15px;
        font-weight: 400;
        text-align: center;
    }

}

/* ----------------------------------------------------------------------------dust-cleaning-------------------------------------------- */
.dust-cleaning{
    background-color: #000000;
    padding: 50px;
}
.dust-cleaning h1{
    color: white;
    font-size: 50px;
    letter-spacing: 2px;
    text-transform: capitalize;
    padding-bottom: 15px;
}
.dust-cleaning p{
    letter-spacing: 2px;
    font-size: 18px;
    color: white;
}

@media (max-width:992px){
    .dust-cleaning{
        margin-top: 100px;
    }
    .dust-cleaning h1{
        padding: 20px;
        font-size: 40px;
        letter-spacing: 2px;
        text-align: center;
    }
    .dust-cleaning p{
        font-size: 15px;
        text-align: center;
    }
    
    
}

/* ----------------------------------------------------------------brands------------------------------------------------- */

.marquee{
    width:100%;
    margin:0 auto;
    overflow:hidden;
    white-space:nowrap;
    box-sizing:border-box;
    animation:marquee 60s linear infinite;
    color:#eee;
    background-color: var(--orange);
}
.marquee p{
    color: #000000;
    font-size: 18px;
    text-transform: capitalize;
    padding-top: 10px;

}
.marquee:hover{
    animation-play-state:paused
}
@keyframes marquee{
    0%{text-indent:27.5em
    }
100%{
    text-indent:-105em
    }
}

/* ----------------------------------------------------------- Air Duct ----------------------------------------------------- */
.air-duct h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 50px;
    color: var(--orange);
}

.air-duct p{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

.counter{
    padding-top: 60px ;
}
.air-duct .number{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--orange);
}

.air-duct .counter-text{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;

}

/*----------------------------------------------------------------------- air-conditioner ------------------------------------------------*/
.air-conditioner{
    background-color: var(--orange);
    padding: 18px;
}

.air-conditioner h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 50px;
}
.air-conditioner p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    padding-left: 38px;
}

.air-conditioner img{
    border-radius: 50px;
}

/*-------------------------------------------------------------- contact-us---------------------------------------------------------- */
.contact-us{
    background-color: #000000;
    margin-top: 70px;
    border-radius: 10px;
    margin-bottom: 70px;

}
.contact-us h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 50px;
    color: white;
}

.container form .form-row{
    display: flex;
    margin: 20px 0;
    padding-left: 50px;

  }
  
  form .form-row .input-data{
    width: 400px;
    height: 50px;
    margin: 0 10px;
    position: relative;
    color: whitesmoke;
  }
  form .form-row .textarea{
    height: 70px;

  }
  .spam {
    display: none;
}
  .input-data input,
  .textarea textarea{
    display: block;
    width: 100%;
    height: 100%;
    font-size: 17px;
    border: 2px solid whitesmoke;
    background-color: rgba(0,0,0, 0.01);
    color: white;

  }
  .input-data input:focus ~ label, .textarea textarea:focus ~ label,
  .input-data input:valid ~ label, .textarea textarea:valid ~ label{
    transform: translateY(-20px);
    font-size: 14px;
  }
  .textarea textarea{
    resize: none;
    padding-top: 10px;
  }
  .input-data label{
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .textarea label{
    width: 100%;
    bottom: 40px;
  }
  .input-data .underline{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
 .submit {
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--orange);
    color: whitesmoke;
    cursor: pointer;
 }

 .submit:hover {
    background-color: #eee;
    color: var(--orange);
 }

 .contact-us .map{
    position: relative;
 }

 .contact-us .info{
    background-color: var(--orange);
    position: absolute;
    bottom: 2%;
    right: 6%;
 } 

.info p{
    color: whitesmoke;
    padding-top: 20px; 
    padding-left: 20px;
    font-size: 18px;
}
.info li{
    color: whitesmoke;
    padding-right: 10px;
}


/* ---------------------------------------------------------------------------footer------------------------------------------------- */

.footer-content {
    font-size: 14px;
    background-color: var(--orange);
    padding: 50px;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: 10px 10px 10px 10px rgba(244, 245, 251);
}

.footer .icon {
    font-size: 24px;
    line-height: 0;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer .credits a {
    color: var(--orange);
}

.footer .btn {
    background-color: white;
    color: var(--orange);
    border: none;
    padding: 10px 20px;
}


.footer .btn:hover {
    background-color: white;
    font-variation-settings: "wght" 582;
    letter-spacing: 1px;
}

.address-row i{
    font-size: 70px;
    color: var(--orange);

}

.address-row .address{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sa ns Unicode', Geneva, Verdana, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;

}


@media screen and (max-width: 64rem) {

    .col {
        width: calc(33.333333% - 2rem);

    }

    a.lightbox img {
        height: auto;
        transition: .5s;
        margin-top: 10rem;
        margin-bottom: 3rem
    }
    .footer{
        margin-top: 0px;

    }

}

@media screen and (max-width: 48rem) {

    .col {
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 32rem) {
    .footer{
        margin-top: 350px;
    }
    .col {
        width: 100%;
        margin: 0 0 2rem 0;
    }
}



.reveal {
    position: relative;
    opacity: 0;
  }
  .reveal.active {
    opacity: 1;
  }
  .active.fade-bottom {
    animation: fade-bottom 1s ease-in;
  }
  .active.fade-up {
    animation: fade-up 1s ease-in;
  }
  .active.fade-left {
    animation: fade-left 1s ease-in;
  }
  .active.fade-right {
    animation: fade-right 1s ease-in;
  }
  @keyframes fade-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fade-up {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
  @keyframes fade-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }