/** BLOCK: EXCLUSIVE CARS - CSS **/
.exclusive .title {
	text-align: center;
	margin-bottom: 0.75rem;
}

.exclusive .cars {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1.5rem;
	margin-top: 3rem;
}

.exclusive .cars a {
	color: var(--tertiary-color);
	text-decoration: none;
}

.exclusive .car {
	text-align: center;
	background: #FFFFFF;
}

.exclusive .car .thumbnail {
	height: 200px;
	width: 100%;
	background-size: contain !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
}

.exclusive .car:hover .thumbnail {
	transform: scale(1.2);
}

.exclusive .car .title {
	background: #FFFFFF;
	padding: 1rem;
	font-family: var(--font-medium);
}

/** SINGLE PAGE  **/
.exclusive .content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 1.5rem;
}

.exclusive .content h2, .exclusive .content strong {
	font-family: var(--font-medium);
}

.exclusive .content .specifications {
	background: #FFFFFF;
	padding: 15px;
	border: 1px solid #D5D5D5;
}

.exclusive .content .specifications h2 {
	text-align: start;
}

.exclusive .content p {
	margin-top: 1rem;
}

.exclusive .content table {
	width: 100%;
}

.exclusive .content table tbody tr:nth-child(odd) {
	background: #EDEDED;
}

.exclusive .content table tbody tr td {
	padding: 0.25rem;
}

.exclusive .gallery {
	margin-top: 3rem;
}

.exclusive .gallery .car-carousel {
	position: relative;
}

.exclusive .info .image {
	height: 450px;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: cover !important;
}

.exclusive .gallery .owl-nav .owl-prev, .exclusive .gallery .owl-nav .owl-next {
	background: var(--tertiary-color);
	height: 65px;
	width: 65px;
	border-radius: 0;
	position: absolute;
	top: 45%;
}

.exclusive .gallery .owl-nav .owl-prev .fas, .exclusive .gallery .owl-nav .owl-next .fas {
	color: #FFFFFF;
}

.exclusive .gallery .owl-nav .owl-prev:hover, .exclusive .gallery .owl-nav .owl-next:hover {
	background: var(--primary-color);
}

.exclusive .gallery .owl-nav .owl-prev {
	left: 0;
}

.exclusive .gallery .owl-nav .owl-next {
	right: 0;
}

@media only screen and (max-width: 990px) {

	.exclusive .cars {
		grid-template-columns: 1fr;
	}

	.exclusive .content {
		grid-template-columns: 1fr;
	}

}