:root {
    --size-max-lg: 1400px;
}

.img-carousel {
    max-height: 550px;
    object-fit: cover;
    border-radius: 5px;
}

#carouselHome {
    width: 100%;
    max-width: var(--size-max-lg);
}

.a-carousel-item:hover {
    opacity: 0.8;
}

.div-title-banner-buy {
	padding-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
	color: #bb9662;
	font-weight: bold;
	font-size: 1.2rem;
}

.div-no-ticket {
	border-radius: 5px;
	opacity: 0.8;
	font-weight: bold;
	background-color: red;
	padding: 10px;
	padding-left: 50px;
	padding-right: 50px;
	color: white;
}

@media (max-width: 768px){
	.img-carousel {
		min-height: 200px;
		border-radius: 0px;
		object-fit: cover;
	}
	
	.a-carousel-item:hover {
		opacity: 1;
	}
	
	.div-no-ticket {
		padding: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.div-title-banner-buy {
		font-size: 1rem;
	}
}