.pdl-2 {
	padding-left: 2px;
}

#sectionOne {
	display: flex;
	justify-content: center;
	padding: 20px 0;
	background-color: #f7f7f7;
}

#sectionOne .width25 {
	width: 25% !important;
}

#sectionOne #stunningDemos {
	width: 1140px;
	max-width: 100%;
	padding: 10px;
	text-align: center;
}

#sectionOne #stunningDemos .title {
	font-size: 40px;
	color: #000;
	animation: showTitle 2s linear forwards;
	margin-top: 30px;
}

#sectionOne #stunningDemos .title p {
	font-size: 16px;
	margin-bottom: 0;
	color: var(--gray);
}

#sectionOne #stunningDemos .titleMobile {
	display: none;
}

#sectionOne #stunningDemos .colorRed {
	color: #e6305d;
}

#sectionOne #stunningDemos .colorBlue {
	color: #0186ff;
}

#sectionOne #stunningDemos .flexContainer {
	display: flex;
	flex-wrap: wrap;
}

#sectionOne #stunningDemos .flexContainer .demoContainer {
	width: 33.333%;
	padding: 5px;
}

.item-product {
	margin: 4px;
	box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
		rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
	border-radius: 8px;
	background: #fff;
}

#sectionOne #stunningDemos .flexContainer .demoContainer .imgContainer {
	max-height: 250px;
	overflow-y: hidden;
	border-radius: 5px;
}

#sectionOne #stunningDemos .flexContainer .demoContainer .imgContainer img {
	width: 100%;
	transform: translateY(0);
	transition: transform 7s;
}

#sectionOne
	#stunningDemos
	.flexContainer
	.demoContainer:hover
	.imgContainer
	img {
	transform: translateY(calc(-100% + 400px));
	transition: transform 7s;
}

#sectionOne #stunningDemos .flexContainer .demoContainer .demoName {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	margin-top: 16px;
	color: var(--gray);
}

#sectionOne #stunningDemos .flexContainer .demoContainer:hover .demoName {
	color: #0186ff;
}

#sectionOne .demoContainer .demoPrice {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--blue);
	font-weight: 700;
}

#sectionOne .demoContainer .demoPrice del {
	color: #a0aec0;
	font-weight: 300;
	margin-left: 20px;
}

#sectionOne .demoContainer .demoButton {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#sectionOne .demoContainer .demoButton a {
	text-decoration: none;
}

#sectionOne .demoButton .demoButtonView,
#sectionOne .demoButton .demoButtonDetail {
	margin: 10px 0px;
	width: 100px;
	border-radius: 32px;
	color: var(--blue);
	border: none;
	outline: none;
	cursor: pointer;
}

#sectionOne .demoButton .demoButtonView {
	background: linear-gradient(
		90deg,
		rgba(95, 175, 235, 1) 0%,
		rgba(56, 137, 210, 1) 100%
	);
}

#sectionOne .demoButton .demoButtonView a {
	color: #fff;
}

#sectionOne .demoButton .demoButtonDetail {
	border: 1px solid var(--blue);
	background-color: #fff;
}

#sectionOne .demoButton .demoButtonView:hover {
	background: linear-gradient(
		90deg,
		rgba(56, 137, 210, 1) 0%,
		rgba(95, 175, 235, 1) 100%
	);
}

#sectionOne .demoButton .demoButtonDetail:hover {
	transform: scale(1.1);
}

@keyframes showTitle {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media only screen and (max-width: 760px) {
	#sectionOne #stunningDemos .flexContainer {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#sectionOne #stunningDemos .flexContainer .demoContainer {
		width: 100%;
		padding: 5px;
		padding-bottom: 20px;
	}

	#sectionOne .width100 {
		width: 100% !important;
	}

	#sectionOne #stunningDemos .titleMobile {
		display: block;
		font-size: 16px;
		color: #000000;
		text-align: center;
		animation: showTitle 2s linear forwards;
	}

	#sectionOne #stunningDemos .titleMobile p {
		margin-bottom: 0;
	}

	#sectionOne #stunningDemos .title {
		display: none;
	}
}
