*{
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    box-sizing: border-box;
}
.nav-bar{
   display: flex;
   justify-content: space-around;
   height:70px;
   background-color: black;
   align-items: center;
}
.nav-brand{
      font-size: 2rem;
      font-weight: bold;
      color: white;
}
ul.nav-menu{
    display:flex;
     
}
ul.nav-menu li a{
    color: white;
    padding: 30px;
}
.nav-link:hover{
    color: pink;
}


@media (max-width:760px){
    .hamburger{
        cursor: pointer;
    }
    .hamburger .bar{
        display: block;
        width:30px;
        height:3px;
        margin:8px;
        background-color: white;
        transition: 0.3s ease-in-out;
        
    }
        ul.nav-menu li a{
            color:white;
        }
        ul.nav-menu{
            position:fixed;
            top:70px;
            left:-100%;
            flex-direction: column;
            background-color:rgba(76, 0, 130, 0.683);
            width: 100%;
            text-align: center;
            z-index: 1;
        }

    ul.nav-menu li{
       margin: 10px;
       font-size:1.2rem;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(12px) rotate(45deg);
    }
        .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
        .hamburger.active .bar:nth-child(3){
        transform: translateY(-9px) rotate(-45deg);
    }
    .nav-menu.active{
        left:0px;
        transition: 0.3s ease-in-out;
    }
    
}
img {
    display: block;
}

.slider-container{
width:100%;
margin: auto;
height:70vh;
position: relative;
overflow: hidden;
}
.slider{
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    transition: all 0.25s ease-in-out;
}
.slider:nth-child(1){
    left:0%;
}
.slider:nth-child(2) {
    left: 100%;
}
.slider:nth-child(3) {
    left: 200%;
}
.slider:nth-child(4) {
    left: 300%;
}
.slider:nth-child(5) {
    left: 400%;
}
.slider:nth-child(6) {
    left: 200%;
}
.slider{
   
    transform: translateX(-300%);
}
.slider-container .slider img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.slide-prev,.slide-next{
    font-size: 50px;
    color: white;
}
.slide-prev{
    position: absolute;
    top:45%;
    left:10px;
}
.slide-next{
    position: absolute;
    top:45%;
    right:10px;
}

/* Multi Items Css */

.mulitems .title{
    text-align: center;
    font-size: 1.5rem;
    color: rgb(168, 4, 4);
    font-weight: bold;
    padding:20px 0 0 0;
}
.mulitems .selects{
    
   margin: auto;
    text-align: center;
    padding-bottom: 20px;

}
.mulitems .selects button{
    color: white;
    background-color: rgb(34, 20, 3);
    padding: 8px 8px;
    cursor: pointer;
}
.mulitems .border{
    height: 3px;
    width: 6%;
    margin: auto;
    margin-bottom: 30px;
    background-color: purple;
}
.card-container .card{
     width:400px;
     height: 130px;
     margin: 20px;
}
.card-container .inner-card{
  display: flex;
  align-items: center;
  width:100%;
  height: 130px;
  /* overflow: hidden; */
}
.card-container .inner-card .image{
    width:40%;
    height: 90%;
}
.card-container .inner-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 3px solid indianred; */
    border-radius: 6px;
}
.info{
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
     width: 60%;
     padding:0px 15px 10px 10px;
}
.info .title2{
    font-size: 1.3rem;
    letter-spacing:3px ;
    color:black;
    border-bottom: 2px solid grey;
}
.info .description{
    color: grey;
    font-size: 0.8rem;
}
.card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

