.banner {
	width: 728px;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-left: 10px;
}


@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.banner-logo {
	max-width: 100%;
	height: 90px;
	padding: 0 5px;
	transition: transform 0.3s ease-in-out;
	animation: pulse 1.5s infinite ease-in-out;
}