 .san{
	width:120px !important;
	height:120px !important;
}
     .embossed-div {
  
  /*   border-top: 8px solid #ffc107; */
 
   opacity: 10;
}
.embossed-div:hover {
  opacity: 1;
 }
 .emb{
 
  border-top: 3px solid #ffc107;
 /*  border-top: 3px dashed #ffc107; */
 /*  border-top: 3px dotted #bbb; */
 }
 
/** div horizontal scrolling **/
.scroll-container {
	margin-top: 8px;
	padding: 2px;
	position: relative;
	overflow: hidden;
	/* Hide the overflowing content */
	white-space: nowrap;
	/* Prevent line wrapping */
	width: 1900px;
	/* Adjust the container width */
	border: 1px solid #f6f9ff !important;;
	background-color: #fff;
	overflow-x: visible !important;
	
	
}

.scroll-track {
	display: inline-flex;
	animation: scroll 0.01s linear;
	/* Infinite horizontal scrolling  scroll 51.8s linear;*/
	overflow-x: visible;
	background: linear-gradient(0deg, #E2C1F9 0%, #FBFFE4 70%, #FEDAFB 1000%)
}

.scroll-container img {
	height: 200px !important;
	/* Set a fixed height for the images */
	margin: 1 10px;
	/* Space between images */
	border-radius: 5px;
	flex-shrink: 0;
	overflow-x: visible;
	padding: 0.2rem 0.2rem 0.2rem !important;
}

@keyframes scroll {
	from {
		transform: translateX(0);
		/* Start position */
	}

	to {
		transform: translateX(-100%);
		/* End position */
	}
}

/* Optional: To smooth the animation for loops, duplicate the track */
.scroll-track::after {
	content: '';
	display: block;
	width: 100%;
	/* Same width as the track */
}


.scrol-head {
	text-align: center;
	z-index: 9999;
	padding: 2px;
	margin-top: 2px;
}
     .zoom:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}