.workflow_wrapper{
	width: 100%;
	overflow-x: hidden;
}
.workflow_row{
	display: flex;
	flex-wrap: nowrap;
	gap: 1vw;
	padding-right: 1vw;
	margin-bottom: 1vw;
	width: fit-content;
	animation: workflowRow 10s linear infinite;
}
.workflow_row:nth-child(2){
	animation-direction: reverse;
}
.workflow_row:hover{
	animation-play-state: paused;
}
@keyframes workflowRow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.workflow_item{
	position: relative;
	width: 26vw;
	aspect-ratio: 25 / 16;
	height: auto;
	flex-shrink: 0;
	border-radius: 20px;
	overflow: hidden;
}
.workflow_item > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.workflow_text{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 140px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.621) 50%, rgba(0, 0, 0, 0.81) 100%);
	padding: 0 2vw 1vw;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: start;
	opacity: 0;
	transition: all .2s;
}
.workflow_item:hover .workflow_text{
	opacity: 1;
}
.workflow_client{
	font-weight: 600;
	font-size: 0.8vw;
	line-height: 1vw;
	letter-spacing: -0.02em;
	color: #FFFFFF;
}
.workflow_name{
	font-weight: 600;
	font-size: 1.3vw;
	line-height: 1.4vw;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin-bottom: 0.1vw;
}
.workflow_types{
	font-weight: 600;
	font-size: 0.8vw;
	line-height: 1vw;
	letter-spacing: -0.02em;
	color: #CF3445;
}
.workflow_photo{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.workflow_photo img{
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.workflow_photo img.active{
	display: block;
}

.workflow h2 {
    font-size: 97px;
    letter-spacing: -1px;
    font-weight: 500;
    line-height: 64px;
    padding: 0px 128px 63px;
    margin: 0;
}
.workflow{
	margin-bottom: 125px;
}

@media (max-width: 640px) {
	.workflow_row{
		gap: 2.6vw;
		padding-right: 2.6vw;
		margin-bottom: 2.6vw;
		pointer-events: none;
	}
	.workflow_item{
		width: 56vw;
		aspect-ratio: 105 / 67;
		height: auto;
		border-radius: 2.6vw;
		pointer-events: none;
	}
	.workflow h2 {
        font-size: 51px;
		padding: 20px;
    	line-height: 31px;
    }
	.workflow{
		margin-bottom: 46px;
	}
}