/* Author : 
   Date : 12/11/2024
   Description : 
   ----------------------------------- */

#carousel {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	align-self: center;
	height: 440px;
	width: 100vw;
	max-width: 1200px;
	margin: 20px auto;
}

#carousel span {
	height: 30px;
	line-height: 20px;
	color: #000;
	padding: 0 5px;
	margin: 0 5px;
	font-size: 40px;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	z-index: 5;
}

#carousel span:hover {
	background-color: #222;
	color: #fff;
}

#carousel section {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	align-self: auto;
	overflow: hidden;
	height: inherit;
	width: inherit;
}

#carousel-content-home {
	height: inherit;
	width: inherit;
}

.carousel-item {
	height: inherit;
	width: inherit;
	min-width: 100%;
}

.carousel-item img {
	height: 440px;
	width: 100%;
	max-height: 440px;
}

.carousel-item-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	align-self: center;
	position: relative;
	background-color: transparent;
	bottom: 200px;
	margin-left: 50px;
	z-index: 1;
}

.carousel-item-content h2 {
	color: #000;
	font-size: 40px;
}

.carousel-item-content p {
	font-size: 15px;
	font-weight: 600;
}

.carousel-item-content a button {
	font-family: inherit;
	display: inline-block;
	width: 8em;
	height: 2.6em;
	line-height: 2.5em;
	margin: 20px;
	position: relative;
	overflow: hidden;
	border: 2px solid #E52322;
	transition: rgb(14, 44, 143) .5s;
	z-index: 1;
	font-size: 17px;
	border-radius: 6px;
	font-weight: 600;
	color: #E52322;
}

.carousel-item-content a button:before {
	content: "";
	position: absolute;
	z-index: -1;
	background: #E52322;
	height: 150px;
	width: 200px;
	border-radius: 50%;
}

.carousel-item-content a button:hover {
	color: #100C08;
	transition-delay: .3s;
}

.carousel-item-content a button:before {
	top: 100%;
	left: 100%;
	transition: all .7s;
}

.carousel-item-content a button:hover:before {
	top: -30px;
	left: -30px;
}

.carousel-item-content a button:active:before {
	background: #E52322;
	transition: 0s rgb(14, 44, 143);
}

@media screen and (min-width: 1701px) and (max-width: 1880px) {
	#carousel,
	#carousel-item,
	#carousel-content-home,
	.carousel-item img {
		height: auto;
		max-width: 1200px;
	}

	.carousel-item-content {
		bottom: 200px;
	}

	.carousel-item-content h2 {
		font-size: 40px;
	}

	.carousel-item-content p {
		font-size: 15px;
	}

	.carousel-item-content a button {
		font-size: 17px;
	}
}

@media screen and (min-width: 1521px) and (max-width: 1700px) {
	#carousel,
	#carousel-item,
	#carousel-content-home,
	.carousel-item img {
		height: 400px;
		width: 960px;
	}

	.carousel-item-content {
		bottom: 200px;
	}

	.carousel-item-content h2 {
		font-size: 40px;
	}

	.carousel-item-content p {
		font-size: 15px;
	}

	.carousel-item-content a button {
		font-size: 17px;
	}
}

@media screen and (min-width: 1201px) and (max-width: 1520px) {
	#carousel,
	#carousel-item,
	#carousel-content-home,
	.carousel-item img {
		height: 350px;
		width: 720px;
	}

	.carousel-item-content {
		bottom: 200px;
	}

	.carousel-item-content h2 {
		font-size: 40px;
	}

	.carousel-item-content p {
		font-size: 15px;
	}

	.carousel-item-content a button {
		font-size: 17px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
	#carousel,
	#carousel-item,
	#carousel-content-home,
	.carousel-item img {
		height: 300px;
		width: 615px;
	}

	.carousel-item-content {
		bottom: 150px;
	}

	.carousel-item-content h2 {
		font-size: 30px;
	}

	.carousel-item-content p {
		font-size: 15px;
	}

	.carousel-item-content a button {
		font-size: 15px;
	}
}

#review {
	max-width: 60%;
	margin: 0 auto;
}

#review h2 {
	text-align: center;
}

#review div {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}

.reviewCard {
	margin: 0 10px;
	width: 280px;
}

.reviewCard > svg {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
}

#hex {
	stroke-width: 2;
	stroke: #E52322;
	fill-opacity: .6;
	transition: fill-opacity .8s;
}

.reviewCard > svg:hover #hex {
	fill-opacity: 1;
}

#text {
	font-size: 11px;
	stroke-width: .4;
	stroke: #E52322;
	fill-opacity: .4;
	fill: #E52322;
	transition: fill-opacity .8s;
	text-anchor: middle;
}

.reviewCard > svg:hover #text {
	fill-opacity: 1;
}

.reviewCard p {
	text-align: justify;
}

.reviewCard .star {
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 150px;
	margin: 0 auto;
}

.reviewCard .star > svg {
	height: 20px;
	width: 20px;
	margin: 10px 5px;
	fill: #000;
}

.reviewCard .star svg g:first-child {
	fill: #FFD700;
}

.reviewCard .star svg g:last-child path {
	fill: #ED8A19;
}