
html, body {
    overflow-x: hidden;
    width: 100vw;
  }
  
body{
    font-family: rubik;
    background-color: #F2F2F2;
    margin: 0;
    padding: 1px;
   
}
#news {
    text-align: center; /* Center align the content inside the div */
  
    background-color: black;
    font-family:"Poppins", sans-serif ;
}

#news p {
    text-align: center; /* Left align the paragraphs */
    color: white; 
    
}
#LM {
    display: none; /* Hide the li element with id "LM" */
  }
  
#ideal {
    display: flex; /* Use flexbox to arrange items in a row */
    justify-content: space-around; /* Space items evenly along the main axis */
    align-items: center; /* Center items vertically */
    padding: 10px; /* Add padding for spacing */
    background-color: #f0f0f0; /* Background color */
}
.news-ticker {
    overflow: hidden; /* Hide overflow for ticker effect */
    background-color: #f0f0f0; /* Background color */
    padding: 10px; /* Padding for spacing */
}

.news-ticker ul,  #assets ul {
    list-style-type: none; /* Remove default list styles */
    margin: 0;
    padding: 0;
    white-space: nowrap; /* Prevent line breaks */
    animation: ticker 8s infinite; /* Define animation for ticker effect */
}

.news-ticker li, #assets li  {
    display: inline-block; /* Display list items inline */
    margin-right: 20px; /* Margin between news items */
    font-size: 16px; /* Font size */
}

/* Keyframes for ticker animation */
#assets ul {
    list-style-type: none; /* Remove default list styles */
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox to arrange items in a row */
    align-items: center; /* Center items vertically */
}

#assets li {
    display: flex; /* Use flexbox to align content in a row */
    align-items: center; /* Center items vertically */
    margin-right: 20px; /* Margin between items */
    font-size: 16px; /* Font size */
}

#assets li img {
    margin-right: 5px; /* Margin between image and text */
}


header {
  
    display: flex; /* Use flexbox to arrange items in a row */
    justify-content: space-between; /* Space items evenly along the main axis */
    align-items: center; /* Center items vertically */
    padding: 10px; /* Add padding for spacing */
    background-color: #f2f2f2; /* Set background color for header */
    color: black; /* Set text color to white */
   
}
.swiper-container,.wc, #whole{
    display: none;
}



nav ul {
    list-style-type: none; /* Remove bullet points from list */
    padding: 0; /* Remove default padding */
    display: flex; /* Use flexbox for navigation links */
    font-weight: 500;
}

nav ul li {
    margin-right: 55px; /* Add margin between navigation items */
    position: relative;
}

nav ul li a {
    text-decoration: none; /* Remove underline from links */
    color: black; /* Set text color to white */
}


.grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 1:2 ratio */
    gap: 1px; /* Gap between grid items */
}

.grid-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

img {
    max-width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: -120%; /* Start off-screen to the left */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent overlay */
    color: #fff;
    transition: left 0.3s ease; /* Transition for left position */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.grid-item:hover .overlay {
    left: 0; /* Move overlay to the left edge of the grid item */
}
.overlay h1,
    .overlay p{
        text-align: left; /* Align text to the left */
        margin: 10px; /* Remove default margins */
        font-family: rubik;
    }
    .overlay h1{
        font-size: 32px;
    }

    .center-container {
        display: flex; /* Use flexbox */
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        height: 100vh; /* Adjust the height as needed */
        text-align: center; /* Align text inside div */
    }

    .content {
        max-width: 500px; /* Max width of the content */
        padding: 20px;
       
        border-radius: 10px;
        flex-direction: column;
        align-items: left;
        
    }
button {
    font-family: system-ui, sans-serif;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    border: none;
    margin-top: 22px;
    padding: 10px;
  }
  #products h1{
  margin-top: 65px; 
  text-align: center;
  font-family: Bebas Neue;
        font-size:  42px;
}

#powered-by{
    text-align: center;
}
#powered-by span{
    font-weight: bolder;
}