*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.montserrat{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* COMMON */
.container{
  margin:auto;
  padding:0 15px;
}

/* ================= TOP BAR ================= */
.top-bar{
  background:#fff;
  color:#fff;
}

.categories{
  padding-inline:1rem !important;
}

.top-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:auto;
}



.logo{
  padding:8px 14px;
  font-weight:bold;
  letter-spacing:3px;
}

.logo img {
    height: 4rem;
}

.top-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.social i{
  cursor:pointer;
}

.care{
  font-size:14px;
}

.lang{
  padding:5px;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ================= NAV BAR ================= */
.nav-bar{
  background:#7c8fa1;
  position:relative;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:55px;
}

.section-title{
  color:#fff;
  font-size:22px;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:22px;
  color:#fff;
}

.nav-links li{
  cursor:pointer;
}

.highlight{
  background:#f5b400;
  color:#000;
  padding:6px 12px;
  font-weight:bold;
}

/* ================= CATEGORY BAR ================= */
.category-bar{
  background:#7c8fa1;
  overflow:hidden;
  max-height:0;
  transition:max-height 0.4s ease;
}

.category-bar.active{
  max-height:400px;
}

.categories{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  padding:25px 0;
}

.cat{
  width:14%;
  text-align:center;
  color:#fff;
}

.cat i{
  font-size:30px;
  margin-bottom:8px;
}

.cat span{
  display:block;
  font-size:14px;
}

/* ================= MOBILE ================= */
@media(max-width:900px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:0;
    right:0;
    width:100%;
    background:#7c8fa1;
    flex-direction:column;
    display:none;
    padding:15px 0;
  }

  .nav-links.show{
    display:flex;
  }

  .categories{
    justify-content:center;
  }

  .cat{
    width:45%;
    margin-bottom:20px;
  }
}



/* Slider  */


/* SLIDER */
.slider{
  width:100%;
  position:relative;
  overflow:hidden;
}

/* SLIDES WRAPPER */
.slides{
  display:flex;
  transition:transform 0.6s ease;
}

/* SINGLE SLIDE */
.slide{
  min-width:100%;
}

/* IMAGE */
.slide img{
  width:100%;
  height:auto;
  display:block;
}

/* CONTENT */
.slide-content{
  position:absolute;
  bottom:30px;
  left:30px;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,0.6);
}

/* BUTTONS */
.prev,.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  padding:12px 16px;
  cursor:pointer;
  font-size:22px;
  border-radius:50%;
}

.prev{left:15px;}
.next{right:15px;}

/* DOTS */
.dots{
  position:absolute;
  bottom:15px;
  width:100%;
  text-align:center;
}

.dot{
  display:inline-block;
  width:12px;
  height:12px;
  background:#bbb;
  border-radius:50%;
  margin:0 5px;
  cursor:pointer;
}

.dot.active{
  background:#fff;
}

/* MOBILE TEXT */
@media(max-width:768px){
  .slide-content h2{font-size:20px;}
  .slide-content p{font-size:14px;}
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #858585;
    padding-right: 0.7rem;
}


.social i {
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 0.25rem;
    border-radius: 10rem;
}

.fa-facebook-f{
    background-color: #395995;
    color: #fff;
}

.fa-x-twitter{
    color: #fff;
    background-color: #000;
}

.fa-instagram{
    color: #fff;
    background-color: #d83176;
}

.care {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #eb1c24;
}

.care strong{
    color: #fff;
    font-weight: 500;
    margin-left: 0.25rem;
    color: #2b2b2b;
}

.nav-bar {
    background: #eb1c24;
}

.nav-links li {
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}



/* SECTION */
.fan-category-section{
  background:#ffffff;
}

.fan-categories{
  margin:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  flex: 1;
  flex-wrap: wrap;
}

/* ITEM */
.fan-item{
  flex:1;
  text-align:center;
  padding:10px 15px;
  position:relative;
}

/* VERTICAL DIVIDER */
.fan-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:20%;
  height:60%;
  width:1px;
  background:#e0e0e0;
}

/* ICON */
.fan-item img{
  width:60px;
  height:auto;
  margin-bottom:12px;
  opacity:0.7;
}

/* TEXT */
.fan-title{
  font-size:16px;
  font-weight:bold;
  color:#1e5a7a;
  letter-spacing:1px;
}

.fan-subtitle{
  font-size:12px;
  color:#777;
  letter-spacing:1px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .fan-categories{
    flex-wrap:wrap;
  }

  .fan-item{
    width:50%;
    flex:none;
  }

  .fan-item::after{
    display:none;
  }
}

@media(max-width:500px){
  .fan-item{
    width:100%;
  }
}

.fan-item {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.fan-item img {
    height: auto;
    width: auto;
}

.inner-fan-item {
    text-align: start;
}   

.third-section{
  padding: 8rem 0;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: yellowgreen; */
  position: relative;
}

.inside-third-section{
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.third-section::before{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  background-image: url('../images/banners/ceilingfan.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-position: bottom;
}

.mui::before{
  background-image: url('../images/banners/mixi.jpg');
  background-position: right;
}

.inside-third-section h2 {
  font-size: 32px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.5rem;
}


.inside-third-section p {
    width: 40%;
    font-size: 16px;
    line-height: 1.4rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #2b2b2b;
    font-weight: 400;
}

.ff {
    background-color: #205170;
    outline: none;
    border: navajowhite;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 0.5rem;
}

.inside-third-section.inside-fourth-section {
    align-items: end;
}

.inside-fourth-section p {
    width: 40%;
    font-size: 16px;
    line-height: 1.4rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #2b2b2b;
    font-weight: 400;
    text-align: end;
}


.fourth-section::before{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  background-image: url('../images/banners/immersionrod.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.fifth-section{
  position: relative;
}

.fifth-section::before{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  background-image: url('../images/banners/lotusfan.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.sixth-section::before{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  background-image: url('../images/banners/cpp.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.iron-bg::before{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  background-image: url('../images/banners/ironbg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.jkg{
  align-items: start !important;
}

.jkg p{
  text-align: start;
}

.iok{
  align-items: end;
}

.fan-item img {
    height: auto;
    width: 7rem;
}

.cat {
    width: 10%;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat img{
  height: 4rem;
  margin-right: 0.25rem;
}


.fan-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fan-categories a{
  width: 20%;
}

.banner-section{
  width: 100%;
}

.banner-section img{
  width: 100%;
}


.product-second-section{
  padding: 2rem;
  padding-top: 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.product-third-section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inside-product-third-section {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
}

.product-second-section h1{
  color: #2b2b2b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 1rem;
}


.product-second-section p{
  color: #5d5d5d;
  text-align: center;
  line-height: 1.5rem;
  font-size: 16px;
  width: 80%;
}

.product-card{
  height: 26rem;
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  margin: 1rem;
}

.inside-product-card{
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inside-product-card h2 {
    color: #2b2b2b;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.inside-product-card img{
  height: 17rem;
}

.inside-product-card p {
    color: #5d5d5d;
    font-weight: 500;
    font-size: 14px;
}

.readmore {
    border: 1px solid #c3c3c3;
    padding: 0.75rem 2rem;
    margin: 1rem;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    border-radius: 3rem;
    background: #fff;
    margin-bottom: 0;
}

.cat1{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

footer{
  padding: 4rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #191919;
}

.inside-footer {
    width: 95%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-widget{
  height: auto;
  width: 32%;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.kop {
    border-radius: 6rem;
    height: 3rem !important;
    margin-bottom: 0 !important;
}

.top{
  margin-top: 1rem;
}

.footer-widget img{
  height: 5rem;
  margin-bottom: 1rem;
}


.footer-widget h2{
  color: #9e9e9e;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 1rem;
}


.footer-widget a, .footer-widget p {
    color: #9e9e9e;
    line-height: 1.45rem;
    font-size: 16px;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.iok p{
  text-align: end;
}

.jkg {
    align-items: end !important;
}

.iokp::before{
    background-position: left !important;
}

.nine::before{
  background: url('../images/banners//WB.jpg');
}


.dop::before{
  background: url('../images/banners/ir.jpg');
  background-position: right;
}

.tyi::before{
  background-position: right;
}

.tyii::before{
  background-position: left;
  background-image: url('../images//banners//another.jpg');
}

.tyii div{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}


.tyii div p{
      text-align: end;
}


.dop{
  padding: 8rem 0;
}

.dop div{
      align-items: start !important;
    }
    
    .dop div p{
  text-align: start !important;

}

footer{
  flex-direction: column;
  padding-bottom: 0;
}


.copy{
  border-top: 1px solid rgba(211, 211, 211, 0.138);
  margin-top: 2rem;
  height: 5rem;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy p, .copy p a{
  color: #9e9e9e;
    line-height: 1.45rem;
    font-size: 14px;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

/* .l-selector{
  height: 3rem;
  width: 3rem;
} */

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    padding: 0.45rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1024px){

  .footer-widget img {
    height: 3rem;
  }

  .footer-widget a, .footer-widget p {
    line-height: 1.35rem;
    font-size: 14px;
  }

  .footer-widget h2 {
    font-size: 18px;
  }

  .kop {
    border-radius: 6rem;
    height: 2rem !important;
  }


  .prev, .next {
    padding: 12px 12px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important; 
    height: 2rem;
    width: 2rem;
}

.dot {
    width: 6px;
    height: 6px;
}




  .fan-category-section {
    padding-inline: 2rem;
}


.fan-categories a {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.third-section {
    padding: 6rem 0 !important;
}

.fifth-section::before {
    background-position: left;
}

.iron-bg::before {
    background-position: right !important;
}

.inside-third-section p {
    width: 70%;
}


}


@media screen and (max-width:900px){


      .menu-toggle {
        color: #000;
    }

      .fan-category-section {
        padding-inline: 1rem;
    }

    .fan-item img {
    height: auto;
    width: 5rem;
}
.fan-title {
    font-size: 14px;
}

.fan-subtitle {
    font-size: 10px;
}

    .fan-categories a {
        width: 25%;
    }
}

@media screen and (max-width: 767px){


  .logo img {
    height: 3rem;
}

.social {
    flex-direction: column;
}

.social i {
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 0.25rem;
    border-radius: 10rem;
    display: none;
    margin: 0.25rem;
}

.care {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: #eb1c24;
    display: none;
}


  .inside-footer {
    flex-wrap: wrap;
}

.footer-widget {
    width: 44%;
}



      .inside-third-section p {
        width: 100% !important;
        color: #fff;
    }


    .third-section::before {
    filter: brightness(0.8) !important;
}

.inside-third-section h2 {
    color: #fff;
 }


 .fan-item {
    flex-direction: column;
}

    .fan-subtitle {
        text-align: center;
    }

}

.mobile-slider{
  display: none;
}


@media screen and (max-width: 700px){
  .dekstop-slider{
    display: none;
  }

  .mobile-slider{
    display: flex;
  }


}

@media screen and (max-width: 600px){



  .product-second-section p {
    width: 100%;
}

.product-second-section {
    padding: 2rem;
    padding-top: 2rem;
}
.product-second-section h1 {
    font-size: 22px;
}

.product-second-section p {
    line-height: 1.35rem;
    font-size: 14px;
}



      .footer-widget {
        width: 40%;
    }

  .inside-third-section h2 {
    font-size: 22px;
  }

  .inside-third-section p {
    font-size: 14px;
    line-height: 1.2rem;
  }

      .third-section {
        padding: 4rem 0 !important;
    }





        .inside-third-section p {
        display: none;
    }




}


@media screen and (max-width: 500px){



.goog-te-gadget .goog-te-combo {
    width: 8.5rem !important;
}


.container {
    margin: auto;
    padding: 0px 5px;
}


.category-bar.active {
    max-height: 600px;
    position: absolute;
    top: 7%;
    z-index: 99999;
}

    .categories {
        flex: 1;
        flex-wrap: wrap;
    }

    .cat {
    width: 50%;
    }

    .logo img {
        height: 2.7rem;
    }

      .fan-categories a {
        width: 50%;
    }
        .third-section::before {
        filter: brightness(0.7) !important;
    }
        .iron-bg::before {
        background-position: center !important;
    }


    .nine::before {
    background-position: top !important;
}

    .fifth-section::before {
        background-position: center;
    }


        .nine::before {
        background-position: 22% !important;
    }


        .fifth-section::before {
        background-position: 17% !important;
    }

        .iron-bg::before {
        background-position: 84% !important;
    }


}

@media screen and (max-width: 390px){

  .VIpgJd-ZVi9od-l4eHX-hSRGPd, .VIpgJd-ZVi9od-l4eHX-hSRGPd:link, .VIpgJd-ZVi9od-l4eHX-hSRGPd:visited, .VIpgJd-ZVi9od-l4eHX-hSRGPd:hover, .VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    font-size: 8px !important;
  }

  .goog-te-gadget {
    font-size: 8px !important;
  }
  .logo {
    padding-inline: 0 !important;
}

.top-right {
    gap: 5px;
}

}

@media screen and (max-width: 350px){
  .footer-widget {
        width: 100%;
    }
}


    .nav-links.show {
        display: flex;
        z-index: 99999;
    }



        .third-section::before {
        background-repeat: no-repeat !important;
    }


    


/* Force full width slider */
.mobile-slider-wrapper{
  position: relative;
  width: 100vw;        /* full viewport width */
  margin-left: 50%;
  transform: translateX(-50%); /* center align */
  overflow: hidden;
}



.mobile-slides{
  display:flex;
  transition: transform 0.5s ease-in-out;
}

.mobile-slide{
  min-width:100%;  /* each slide full screen width */
}

.mobile-slide img{
  width:100%;
  height:auto;
  display:block;
}


.mobile-prev{
      position: absolute;
    top: 45%;
    left: 2%;
    height: 2rem;
    width: 2rem;
    background-color: #00000046;
    color: #fff;
    border-radius: 0;
    border: none;
    
}

.mobile-next{
      position: absolute;
    top: 45%;
    right: 2%;
    height: 2rem;
    width: 2rem;
    background-color: #00000046;
    color: #fff;
    border-radius: 0;
    border: none;
}


@media screen and (max-width: 880px){
  .nav-inner {
    height: 8px;
  }
  .nav-inner span{
    display: none;
  }
}

