.about {
	height: 90vh;
	background: var(--dark-color);
	color: var(--text);
}

.container-about {}

.about-slider {
	display: flex;
	justify-content: space-around;
	margin-top: 5px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	height: 75vh;
	justify-content: space-between;
}

.about-item {
	min-width: 300px;
	scroll-snap-align: start;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	flex: 1;
	margin: 0 10px;
	position: relative;
	background-color: var(--dark-color);
}

.about-item img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	transition: transform 0.5s ease, opacity 0.5s ease;
	opacity: 1;
}

.about-item label {
	font-size: 2.3rem;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
}

.about-title {
	position: absolute;
	top: 25%;
	right: -20%;
	transform: translate(-50%, -50%);
	color: var(--text);
	width: 40%;
}

.about-title1 {
	position: absolute;
	top: 42%;
	right: -20%;
	transform: translate(-50%, -50%);
	color: var(--text);
	word-wrap: break-word;
	word-break: break-word;
	width: 40%;
}

.about-title2 {
	position: absolute;
	top: 60%;
	right: -20%;
	transform: translate(-50%, -50%);
	color: var(--text);
	width: 40%;
}

.about-title3 {
	position: absolute;
	top: 80%;
	right: -20%;
	transform: translate(-50%, -50%);
	color: var(--text);
	width: 40%;
}

.flash-bar {
	position: absolute;
	left: -350px;
	width: 20px;
	height: 100%;
	background: #fff;
	opacity: 0.5;
	transform: skewX(-30deg);
	transform-origin: 0 100%;
}

.about-item:hover .flash-bar {
	left: 3840px;
	transition: left ease-in-out 1s;
}

.about-title-left1 {
	position: absolute;
	top: 45%;
	left: 35%;
	transform: translate(-50%, -50%);
	color: var(--text);
	width: 40%;
}

.about-title-left2 {
	position: absolute;
	top: 76%;
	left: 33%;
	transform: translate(-50%, -50%);
	color: var(--text);
	width: 35%;
}