.menu-bar{
    background-color: black;
    height: 60px;
    width: 100%;
    align-items: center;
    font-weight: 700;
    display: flex;
    justify-content: space-around;
   
  

    }

    .nav-0{
        border-radius: 50%;
        padding: 0 5px;
        background-color: rgb(238, 189, 189);
        
    }
    
.menu-bar ul{
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 0;
    gap: 20px;
    padding-top: 9px;
    
}

.menu-bar ul li{
    list-style: none;
   
    
}



.menu-bar ul li a{
    text-decoration: none;
    font-size: 15px;
    position: relative;
    color: white;
   
    
}

.menu-bar ul li a::after{
    content: "";
    position: absolute;
    background-color: azure;
    height: 1px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: 0.6s ;
}

.menu-bar ul li a:hover:after{
    width: 100%;
    
}

.bi-caret-right{
    padding-top: 0;
   padding-bottom: 3px;

}

.drop{
    display: none;
    margin-top: 10px;
    z-index: 1;
}
.menu-bar ul li:hover .drop{
    display: block;
    position: absolute;
    background-color: white;
    color: black;
}

.menu-bar ul li:hover .drop ul{
    display: block;
}

.drop ul{
   margin: -5px;


}

.drop ul li{
   
    width: 250px;
    padding-left: 10px;
    padding-top: 10px;
    padding-left: 30px;
    height: 35px;

    
}

.drop ul li a{
    color: black;
    font: 1em sans-serif;
    font-size: 12px;
  
    text-align: center;
   
}

.drop ul li a:after{
     content: "";
    position: absolute;
    background-color: rgb(205, 214, 214);
    height: 1px;
    width: 0;
    left: 0;
    bottom: -5px;
    
}

.drop-sub{
    display: none;
    z-index: 1;  
}

.drop-product:hover .drop-sub{
    display: block;
    position: absolute;
    background-color: white;
    color: black;
    margin-left: 85%;
    margin-top: -28px;
   
}

.menu-bar svg{
   padding-left: 5px;
   padding-bottom: 5px;
   margin-left: 120px;
   z-index: 2;
}


/* ==========================================
                under carosol
=============================================*/
.under-carosole-row-2{
    padding-top: 50px;
    text-align: center;
    color: black;
}

.under-carosole-row-2 hr{
    color: black;
    background-color: black;
    height: 2px;
}

.under-carosole-row-1 img{
        transition: transform .5s ease-in-out;
}

.under-carosole-row-1 .im1{
    overflow: hidden;
}

.under-carosole-row-1 img:hover{
      transform: scale(1.2);
}



/* ==============================
  Home collection using bootstape
  =============================== */

  .home-collection a{
        text-decoration: none;
        color: black;
        background-color: white;
}




/* ==================
   banner image
   ====================*/

   .banner-image{
    background-color: rgb(255, 255, 255);
   }

   .banner-image img{
    padding-bottom: 40px;
   }

/* ===================
    view gallery
  ===================== */

  .view-gallery{
    width: 100%;
   
    background-color: #fafafa;
    display: block;
    text-align: center;
    
    
    
  }

 

 
  .view-gallery .link-view a{
    background-color: black;
    color: #ffffff;
    font-size: small;
    padding: 10px;
    margin: 10px;
    border: 1px solid black;
    text-decoration: none;
    
   
  }
 

  .view-more a{
    text-decoration: none;
    background-color: white;
    color: black;
    border: 1px solid black;
    padding: 10px 20px;
  }


  .view-more a:hover {
    background-color: black;
    color: white;
    
   }

   .link-view , .view-more{
    padding-top: 20px;
   }

  


/* ==================
   footer
   ================== */

   .footer{
    width: 100%;
    height: 400px;
    background-color: rgb(26, 24, 24);
    text-align: left;
    padding-top: 20px;
    color: #cfcfcf;
    font-size: small;
   }


   .footer-part{
    display: flex;
    color: #cfcfcf;
    justify-content: space-evenly;
    align-items: center;
   }

   .footer-part h4{
    color: white;
   }

   .footer-part a{
    color: #cfcfcf;
    text-decoration: none;
   }

   .footer a{
    color: #cfcfcf;
    text-decoration: none;
    text-align: center;
   }

   



   .footer a:hover{
    border-bottom: solid white 1px;
   }


   .footer-logo a{
    padding: 10px;
   
    background-color: #ffffff;
    margin-left: 10px;
    border-radius: 50%;
   }

    .footer-logo a:hover{
        border-radius: 60% solid rgb(10, 61, 27) 1px;
        
    }

    .footer-right{
        justify-content: center;
        text-align: center;
        padding: 30px 0;
        
    }

    @media screen and(max-width:1000px) {
      
        .menu-bar{
            font-weight: 300;
            font-size: 10px;
        }
 
        
    }

    @media screen and(max-width:1000px) {
      
        .menu-bar ul li a{
            font-weight: 100;
            font-size: 5px;
        }
 
        
    }


 