.supportCon {
	margin-top: 30px;
}

.support_txt {
	display: flex;
    flex-flow: column;
    gap: 30px;
    align-items: center;
}

.support_txt h3 {
	font-size: 23px;
    color: #760004;
    line-height: 1.5;
}

.support_txt .list {
	position: relative;
	display: flex;
    flex-flow: row nowrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.support_txt .list div {
	position: relative;
    display: flex;
    flex-flow: column;
    padding: 25px;
    border: 5px solid #e7e6e6;
    width: 300px;
    aspect-ratio: 1 / 0.6;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    color: #222;
    justify-content: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
	border-radius: 30px;
}

.support_txt .list div.next_arrow {
    width: 35px;
    height: 35px;
    background: #464646;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	border: 0px;
	padding: 0px;
}

.support_txt .list div.next_arrow img {
	display: block;
	width: 8px;
}

.support_txt .list div.next_arrow::after {
	display: none;
}

.support_txt .list div::after {
	position: absolute;
    content: '';
    width: 50%;
    height: 60%;    
	border-radius: 30px;
}

.support_txt .list div:first-child::after {
	top: -5px;
    left: -5px;
    border-top: 5px solid #760004;
    border-left: 5px solid #760004;
	border-right: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-radius: 30px 0 0 0;
}

.support_txt .list div:last-child::after {
	bottom: -5px;
    right: -5px;
	border-bottom: 5px solid #760004;
    border-right: 5px solid #760004;
	border-top: 5px solid transparent;
	border-left: 5px solid transparent;
	border-radius: 0 0 30px 0;
}

.support_txt .etc {
	position: relative;
    font-size: 18px;
    color: #222;
    padding-left: 23px;
    line-height: 18px;
    font-weight: 400;
}

.support_txt .etc::after {
	position: absolute;
    content: '※';
    width: 18px;
    height: 18px;
    color: #222;
    top: 0px;
    left: 0px;
    font-family: 'Noto Sans Kr', sans-seri;
}

@media screen and (max-width: 740px){
	.support_txt {
		gap: 20px;
	}

	.support_txt h3 {
		font-size: 20px;
	}

	.support_txt .list {
		gap: 20px;
	}

	.support_txt .list div {
		padding: 20px;
		width: 220px;
		font-size: 18px;
		line-height: 1.3;
		border-radius: 25px;
	}

	.support_txt .list div:first-child::after {
		border-radius: 25px 0 0 0;
	}

	.support_txt .list div:last-child::after {
		border-radius: 0 0 25px 0;
	}

	.support_txt .list div.next_arrow {
		width: 30px;
		height: 30px;
	}

	.support_txt .etc {
		font-size: 16px;
		padding-left: 20px;
	}
}

@media screen and (max-width: 520px){
	.support_txt .list {
		flex-flow: column;
		gap: 10px;
	}

	.support_txt .list div.next_arrow {
        transform: rotate(90deg);
    }

	.support_txt .list div {
        width: 100%;		
		aspect-ratio: auto;
		font-size: 16px;
    }

	.support_txt .etc {
        word-break: break-all;
    }
}