.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.is-sticky {
  /* Add styles for sticky navbar here */
  transition: top 0.3s ease-in-out;
  top: 0;
  animation-delay: 1000ms;
}

.relative {
  overflow: hidden;
}

.transform {
  transition: transform 0.3s ease;
}

.bgcolor{
    background-color: rgb(53, 53, 53);
}

.box{
  width: 50%;
  height: 250px;
}

.text-shadow {
  text-shadow: 8px 8px 10px rgba(0, 0, 0, 0.5); /* Adjust values as needed */
}

.social-icon {
  color: #3c434d; /* Default color */
  transition: color 0.3s; /* Smooth transition effect */
}

.social-icon:hover {
  color: #65b840; /* Green color on hover */
}

.myElement{
  background-color: #3c434d; /* Default background color */
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.myElement:hover {
  background-color: #0a9744; /* Background color on hover */
}

.carousel-container {
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent items from wrapping */
}

.carousel-item {
  display: inline-block; /* Display items in a row */
  width: calc(50% - 10px);
  margin-right: 20px; /* Display two items at a time */
  /* Adjust width as needed based on the number of items you want to display */
}


@keyframes fade-in {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.animate-fade-in {
  animation: fade-in 1.5s ease forwards;
}


@keyframes blink {
  0% {
      background-color: #65b840;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: #65b840;
  }
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
  }
@keyframes marquee2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0%); }
  }
  .animate-marquee {
    animation: marquee 20s linear infinite;
  }

  .animate-marquee2 {
    animation: marquee2 20s linear infinite;
  }
  
  /* Pause the animation on hover */
.relative:hover .animate-marquee, .relative:hover .animate-marquee2 {
    animation-play-state: paused;
  }
  

.box-with-border {
    border: 2px solid #0e0b0b; /* Border style and color */
     /* Padding inside the box */
    border-radius: 8px; /* Optional: rounded corners */
  }

.product .product-item {
    height: 100%;
    transition: 0.5s;
    
}
.product .product-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.product .product-item .product-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.product .product-item .product-img img {
    transition: 0.5s;
}

.product .product-item .product-img img:hover {
    transform: scale(1.3);
}

.banner .banner-btn:hover {
    background: var(--bs-primary);

}


#cookieConsent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #333;
  color: white;
  text-align: center;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#cookieConsent a {
  color: white;
}

#cookieConsent button {
  margin-top: 10px; /* Ensure spacing between text and button */
  padding: 8px 15px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#cookieConsent button:hover {
  background: #45a049;
}
