
#section-car-on-demand {
	float: left;
	width: 100%;
	position: relative;
	z-index: 4;
	background: #f4f4f4cc;
}

#section-car-on-demand h1 {
	padding: 20px 0;
}

#section-car-on-demand>.wrapper {
	position: relative;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: calc(100vh - 650px);
}




#section-car-on-demand .row {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	z-index: 6;
}

#section-car-on-demand .row b {
	font-size: 14px;
}

#section-car-on-demand .item {
	padding: 10px;
	text-align: center;
	font-size: 18px;
	width: 100%;
	max-width: 120px;
	margin: 0 auto;
	background: #f5f5f5;
	border-radius: 16px;
	margin-bottom: 5px;
	position: relative;
}

#section-car-on-demand .item .option_number {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 30px;
	height: 30px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #626262;
	color: #fff;
	font-size: 16px;
}

#section-car-on-demand .item img {
	width: 40px;
	object-fit: contain;
	margin-bottom: 20px;
}


@keyframes rotate-line-1 {
	from {
		transform: rotate(-90deg);
	}

	to {
		transform: rotate(270deg);
	}
}

@keyframes rotate-line-2 {
	from {
		transform: rotate(-180deg);
	}

	to {
		transform: rotate(180deg);
	}
}

@keyframes rotate-line-3 {
	from {
		transform: rotate(-270deg);
	}

	to {
		transform: rotate(90deg);
	}
}

@keyframes rotate-line-4 {
	to {
		transform: rotate(360deg);
	}
}

#section-car-on-demand .icon-wrap {
	position: relative;
}

#section-car-on-demand .icon-wrap img.line-rotate {
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

#section-car-on-demand .icon-wrap img.line-1 {
	animation: 12s rotate-line-1 infinite linear;
}

#section-car-on-demand .icon-wrap img.line-2 {
	animation: 12s rotate-line-2 infinite linear;
}

#section-car-on-demand .icon-wrap img.line-3 {
	animation: 12s rotate-line-3 infinite linear;
}

#section-car-on-demand .icon-wrap img.line-4 {
	animation: 12s rotate-line-4 infinite linear;
}


#section-car-on-demand .row {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-wrap: nowrap;
	padding: 40px 0;
	align-items: center;
	width: fit-content;
	align-items: stretch;
}

#section-car-on-demand .item {
	padding: 40px 20px 30px 30px;
	font-size: 23px;
	max-width: 200px;
	margin: 0 auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: -3px 4px 19px 1px rgb(0 0 0 / 11%);
	display: flex;
	justify-content: center;
	align-items: center;
}


#section-car-on-demand .item img {
	width: 60px;
	margin-bottom: 20px;
}

@media screen and (min-width: 600px) {

}


@media screen and (min-width: 900px) {

	#section-car-on-demand .row {
		flex-direction: row;
	}

}