.banners-ads {
	display: flex;
	gap: 20px;
	max-width: 1380px;
	margin: 64px auto 64px;
}

.ad-banner {
	height: 80px;
	background: #bbb;
	margin: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
}

.banners-ads.big .ad-banner {
	width: 100%;
	max-width: 450px;
	height: 80px;
	display: flex;
}

/* Mobile: mostra solo il primo banner */
.banner:nth-child(n+2) {
	display: none;
}

.banners-ads a:nth-child(n+2) {
	display: none;
}


/* Desktop: mostra tutti i banner */
@media (min-width: 768px) {

	.banner:nth-child(n+2) {
		display: block;
	}

	.banners-ads a:nth-child(n+2) {
		display: block;
	}
	
}

/* Mobile */
@media (max-width: 768px) {

	.banners-ads {
		justify-content: center;
	}

	.banners-ads.big a {
		text-align: center;
	}

	.banners-ads.big img {
		width: 90%;
		height: auto;
	}
	
}

/* Mobile and Tablet */
@media (max-width: 1379px) {

	.banners-ads { 
		overflow-x: scroll;
	}

}