*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
p::selection{
    background-color: rgb(242, 163, 18);
    color: #fff;
}


ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    font-weight: 800;
    text-transform: uppercase;
}
p{
    font-weight: 500;
}
span{
    color: rgb(242, 163, 18);
}
a{
    text-decoration: none;
}
.btn1 {
    align-items: center;
    background-color: transparent;
    color: #000000;
    cursor: pointer;
    display: flex;
    font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    border: 0;
    padding: 1rem;
  }
  
  .btn1:before {
    background-color: #000000;
    content: "";
    display: inline-block;
    height: 1px;
    margin-right: 10px;
    transition: all .42s cubic-bezier(.25,.8,.25,1);
    width: 0;
  }
  
  .btn1:hover:before {
    background-color: #000000;
    width: 3rem;
  }


/****Nav-Bar****/
.navbar{
    position: sticky !important;
    top: -10px;
    z-index: 10;
}
.navbar-nav a{
    font-weight: 600;
    padding: .5rem 1rem;
}
.navbar-nav a:hover{
    color: #fff;
    background-color: rgb(250, 145, 8);
}
.navbar-nav li{
    margin: 0 .6rem;
}
.navbar-nav .nav-link.active{
    color: #fff !important;
    background-color: rgb(250, 145, 8);
}

/****Nav-Bar****/

/*********/

.swiper {
    width: 100%;
    height: 550px;
  }

  .swiper-slide {
    font-size: 18px;
    background: #fff;
    position: relative;
  }

  .swiper-slide:nth-child(1){
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)),url(../images/banners/banner1.jpg);
    background-size: cover;
    background-position: center;
  }
  .swiper-slide:nth-child(2){
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)),url(../images/banners/banner2.jpg);
    background-size: cover;
    background-position: center;
  }
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .banner-box{
    width: 80%;
    padding: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  .banner-box h1{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
  }


  /**About-Section**/

  .about-img{
    width: 100%;
    position: relative;
  }
  .about-img .about-2{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    position: absolute;
    right: -15px;
    bottom: -50px;
  }

.about-1{
    box-shadow:  0px 15px 20px #767676;
             border-radius: 10px;
}
.about-heading{
    font-weight: 700;
}

/*****Cards****/
.products{
    width: 100%;
    background-color: rgb(239, 239, 239);
}

.cards img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
    object-position: center;
}
.cards{
    width: 100%;
    padding: .5rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 10px 45px rgb(173, 173, 173);
}
.cards h3{
    color: rgb(242, 163, 18);
    font-weight: 600;
}
.cards h1{
    font-weight: 700;
    font-size: 1.2rem;
}


/***Conatct Us*****/

.contact{
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)),url(../images/banners/b1.jpg);
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}
.contact h1{
    color: #fff;
}
.contact input{
    background-color: transparent; color: #fff;
}
.contact .form-control:focus{background:transparent; color: #fff; }
.contact input::placeholder{
    color: #fff;
    font-weight: 500;
}
.contact textarea{
    background-color: transparent;
}
.contact textarea::placeholder{
    color: #fff;
    font-weight: 500;
}
.contact .btn{
    background-color: orange;
    color: #fff;
}
.contact .btn:hover{
    background-color: orange;
    color: #fff;
}




/***Footer***/
footer{
    width: 100%;
    background-color: #efefef;
    padding: 3rem 0;
}
footer ul{
    margin: 0;
    padding: 0;
}
footer a{
    color: rgb(54, 53, 53);
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}
footer a:hover{
    color: orange;
}


.copyright{
    width: 100%;
    padding: 1rem 0;
    background: #000;
    color: #fff;
}

.copyright a{
    color: orange;
    text-decoration: none;
}

.short-banner{
    width: 100%;
    height: 350px;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)),url(../images/banners/breadcramb.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-section .cards{
    width: 100%;
    border: 1px solid rgb(228, 228, 228);
    box-shadow: none;
    transition: .3s;
}

.product-section .cards:hover{
    box-shadow: 0px 20px 45px rgb(184, 184, 184);
    border: none;
}

.product-section .cards a{
    text-decoration: none;
    color: #000;
    font-size: .8rem;
}

.product-table img{
    mix-blend-mode: multiply !important;
}

.submit{
    background: orange !important;
    color: #fff !important;
}

.whatsapp{
    width: 45px;
    height: 45px;
    background-color: green;
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whatsapp i{
    color: #fff;
    font-size: 1.3rem;
}



@media (max-width: 767px) {
    .about-1{
        box-shadow:  0px 20px 50px #767676;
                 border-radius: 10px;
                 width: 100%;
    }
}

.img-sec{
    border-radius: 20px;
    box-shadow: 6px 6px  10px rgb(172, 172, 172);
    margin-top: 30px;
}