*, *::before, *::after {
	box-sizing: border-box;
}

.carousel {
	width: 75%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
	aspect-ratio: 1 / 1;
}

.carousel > ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ul::before,
ul::after,
li::before,
li::after {
  content: none !important;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 200ms opacity ease-in-out;
	transition-delay: 200ms;
}

.slide > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide[data-active] {
	opacity: 1;
	transition-delay: 0ms;
	z-index: 1;
}

.carousel-button{
	position: absolute;
	z-index: 2;
	background: none;
	border: none;
	font-size: 4rem;
	top: 50%;
	transform: translatey(-50%);
	cursor: pointer;
	padding: .5rem .25rem;
	border-radius: .25rem;
}

.carousel-button:hover{
	background: rgba(0, 0, 0, 0.2);
	color: rgb(235, 235, 235);
}

.carousel-button.prev{
	left: 1rem;
}

.carousel-button.next{
	right: 1rem;
}

.flex{
	display: flex;
	flex-wrap: wrap;
}

.justify-center{
	justify-content: center;
}

.w-full{
	width: 100%;
}

div[data-item-info] div span[data-info-title] {
	width: 25%;
	color: #2683c6;
	font-weight: 800;
	text-wrap: wrap;
}

div[data-item-info] div span[data-info-text] {
	width: 75%;
	color: rgb(38, 38, 38);
	text-wrap: wrap;
}



.w-75-percent{
	width: 75%;
}

.m-x-auto{
	margin-left: auto !important;
	margin-right: auto !important;
}

.m-y-05{
	margin-top: .5rem !important;
	margin-bottom: .5rem !important;
}

@media screen and (max-width: 767px) {
	div[data-item-info] div span[data-info-title] {
		width: 100%;
		text-align: center;
	}
	
  div[data-item-info] div span[data-info-text] {
		width: 100%;
		text-align: center;
	}
	
	.carousel-button{
		font-size: 2rem;
	}
}