.p_content {
	display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding-bottom: 30px;
    position: relative;
    gap: 80px;
}
.p_content::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	height: 1px;
	width: 80%;
	background-color: #ccc;
	transform:  translateX(-50%);
}
.item-p {
	text-align: center;
	font-size: 18px;
}
.item-p span:first-child {
	    display: block;
    font-weight: 500;
    color: var(--color-main);
    margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
	.p_content {
		display: block;
		padding-bottom: 10px;
	}
	.item-p {
		display: flex;
		text-align: left;
		margin-bottom: 10px;
	}
	.item-p span:first-child {
		min-width: 130px;
	}
}