.project-carousel {
	width: 100%;
	background-color: var(--project-carousel-bg-color);
	margin-top: 0;
	z-index: 1;
}

.project-carousel .project-control-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	width: auto;
	pointer-events: none;
}

.project-carousel .project-control  {
	width: 40px;
	height: 40px;
	position: relative;
	background-color: var(--project-carousel-text-color-RGB);
	border-radius: 50%;
	border: 1px solid var(--project-carousel-detail-color);
	font-weight: bold;
	pointer-events: all;
	color: var(--project-carousel-detail-color);
	filter: none;
}

.carousel-control-prev.project-control {
	margin-right: 1rem;
}

.carousel-control-next.project-control {
	margin-left: 1rem;
}

.carousel-item {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel-item picture {
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.carousel-images {
	position: relative;
	height: 350px;
	width: 100%;
	object-fit: contain;
	object-position: center;
}

.project-carousel-title {
	position: relative;
	font-size: 10vw;
}

/*=====================================
=            Media Queries            =
=====================================*/

	@media (min-width: 768px) {
		.carousel-item {
			overflow: hidden;
		}

		.carousel-item picture {
			min-width: 100%;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
		}

		.carousel-images {
			height: 600px;
		}

		.project-carousel-title {
			font-size: 5vw;
		}
	}

	@media (min-width:1200px) {
		.carousel-images {
			height: 800px;
		}
	}

	@media (min-width:1500px) {
		.project-carousel-title {
			font-size: 80px;
		}
	}

	