* {
    margin: 0px;
    padding: 0px;
  }
  body{
    background: black;
  }
  /* .container.product-cont{
    padding-left: 10%;
    padding-right: 10%;
  } */
  .ecom-full{
    padding-bottom: 50px;
  }
  h1, h2, h3, h4, h5, h6, p, a{
    font-family: 'Poppins', sans-serif !important;
  }
  .ec-btn a{
    color: white !important;
    text-decoration: none;
  }
  .ecommerce-page{
    background-color: black;
  }
  .ecommerce-head{
    animation: slideIn 1s forwards;
    opacity: 0; 
    padding-top: 5%;
  }
  @keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
  .ecommerce-top-head{
    color: rgb(255 102 0);
    padding-left: 10%;
    padding-top: 4%;
    font-size: 45px;
  }
  .ecommerce-second-head{
    color: white;
    padding-left: 10%;
    font-size: 45px;
    padding-top: 20px;
  }
  .categories{
    color: white;
    padding-left: 10%;
    display: flex;
    padding-top: 25px;
    
  }
  .categories .cat-h{
    margin-top:3px;
    animation: slideIn 1s forwards;
    opacity: 0; 
  }
  .categories a{
    color: white !important;
  }
  .box{
    border:2px solid white;
    margin:0px 15px 15px 20px;
    padding: 6px 20px;
    opacity: 0;
    transform: translateY(50px); /* Initially shifted down */
    animation: slideUp 1s forwards;
}
.box h2{
  font-size: 25px;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
  @keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.ecommerce-banner-set1 {
    display: flex; 
    align-items: center; 
}

.ecommerce-banner {
    flex: 1;
}

.ecommerce-banner img {
    max-width: 100%; 
    height: auto;
}

.ecommerce-banner-detail {
    flex: 1; 
    padding: 20px 75px; 
}

.ecommerce-h {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 700;
    color: rgb(255 102 0);
}

.ecommerce-sub {
    font-size: 35px;
    margin-bottom: 25px;
    color: white;
}

.ecommerce-btn {
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 25px;
}
.ecommerce-full-set{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}



.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
    width: auto !important;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 30px;
    font-weight: bold;
    color: white !important;
    cursor: pointer;
}




@media screen and (max-width: 790px) {
    .ecommerce-banner-set1 {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .categories .cat-h {
        margin-top: 3px;
        animation: slideIn 1s forwards;
        opacity: 0;
        font-size: 15px;
        text-wrap: nowrap;
      }
      .box h2{
        font-size: 14px;
      }
      .box {
        border: 2px solid white;
        margin: 0px 14px 10px 7px;
        padding: 0px 7px;
        opacity: 0;
        transform: translateY(50px);
        animation: slideUp 1s forwards;
    }
    .ecommerce-banner-detail {
        flex: 1;
        padding: 20px 24px;
        text-align: center;
    }
    /* .ec-btn{
        text-align: center;
    } */
}