/* about */
.aboutCon {
	margin-top: 30px;
}

.aboutCon .inner_layout {
	display: flex;
	flex-flow: column;
	gap: 70px;
}

.aboutCon h3 {
	font-size: 40px;
	font-weight: 700;
	color: #222;
	line-height: 50px;
	margin-bottom: 20px;
}

.aboutCon .list_txt li {
	position: relative;
	font-size: 20px;
	line-height: 28px;
	padding: 23px 0 23px 30px;
	border-bottom: 1px solid #8C8C8C;
}

.aboutCon .list_txt li::after {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #760004;
	top: 35px;
	left: 10px;
}

.aboutCon .list_txt li span {
	color: #760004;
	font-weight: 600;
}

@media screen and (max-width: 1280px){
	.aboutCon h3 {
		font-size: 35px;
		line-height: 40px;
	}

}

@media screen and (max-width: 1024px){
	.aboutCon .inner_layout {
		gap: 60px;
	}

	.aboutCon h3 {
        font-size: 30px;
        line-height: 30px;
    }

	.aboutCon .list_txt li {
		line-height: 25px;
		padding: 18px 0 18px 20px;
	}

	.aboutCon .list_txt li::after {
		top: 27px;
		left: 7px;
	}
}

@media screen and (max-width: 768px){
	.aboutCon {
		margin-top: 30px;
	}

	.aboutCon .inner_layout {
        gap: 40px;
    }

	.aboutCon h3 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }

	.aboutCon .list_txt li {
        line-height: 22px;
        padding: 15px 0 15px 20px;
        font-size: 18px;
    }

	.aboutCon .list_txt li::after {
        top: 23px;
        left: 5px;
        width: 4px;
        height: 4px;
    }
}

@media screen and (max-width: 600px){
	.aboutCon h3 {
        font-size: 22px;
        line-height: 25px;
    }

	.aboutCon .list_txt li {
        padding: 10px 0 10px 15px;
        font-size: 16px;
		word-break: break-all;
    }

	.aboutCon .list_txt li::after {
        top: 18px;
    }
}

/* about end */


/* certificates */
.certificatesCon {
	margin-top: 30px;
}

.certificatesCon .con {
	display: flex;
	flex-flow: row nowrap;
	gap: 35px;
}

.certificatesCon .con .box {
	display: flex;
	overflow: hidden;
	border: 1px solid #BCBCBC;
	background: #F6F6F6;
	border-radius: 15px;
	padding: 10px;
	box-shadow: 20px 20px 20px rgba(0,0,0,0.05);
}

.certificatesCon .con .box > span {
	border-radius: 10px;
	overflow: hidden;
}

.certificatesCon .con .box > span > img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 1024px){
	.certificatesCon .con {
		gap: 25px;
	}
}

@media screen and (max-width: 768px){
	.certificatesCon .con {
		gap: 15px;
	}

	.certificatesCon .con .box {
		border-radius: 10px;
		padding: 5px;
		box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
	}

	.certificatesCon .con .box > span {
		border-radius: 5px;
	}
}

@media screen and (max-width: 500px){
	.certificatesCon .con {
		flex-flow: column;
		gap: 20px;
	}
}

/* certificates end */


/* mall */
.mallCon {
	background: linear-gradient(180deg, transparent 50%, #E8F1FF 50%, transparent);
	margin-top: 50px;
}

.mallCon .inner_layout {
	display: flex;
	flex-flow: row nowrap;
	gap: 142px;
	justify-content: center;
    align-items: center;
}

.mallCon .inner_layout > div {
	display: flex;
	flex-flow: column;
	border: 1px solid #EBEBEB;
	background: #FFF;
	border-radius: 50%;
	aspect-ratio: 1 /1;
	width: 351px;
	align-items: center;
    justify-content: space-between;
	box-shadow: 0px 10px 40px rgba(0,0,0,0.05);
	padding: 50px;
}

.mallCon .inner_layout > div > span {
	margin-top: 37px;
}

.mallCon .inner_layout > div > a {
	display: flex;
	width: 55px;
	background: #2B51BB;
	border-radius: 50%;
	aspect-ratio: 1 /1;
	overflow: hidden;
}

.mallCon .inner_layout > div.smart_mall > a {
	background: linear-gradient(180deg, #03C75A, #7346F3);
}

@media screen and (max-width: 1400px){
	.subWrap.product_mall {
        padding-left: 0px;
		padding-right: 0px;
    }
}

@media screen and (max-width: 1024px){
	.mallCon .inner_layout {
		gap: 50px;
	}
	
	.mallCon .inner_layout > div {
		width: 301px;
		padding: 30px;
	}
}

@media screen and (max-width: 690px){	
	.mallCon {		
		margin-top: 30px;
		padding: 0 20px;
	}
	.mallCon .inner_layout > div {
        width: 280px;
    }

	.mallCon .inner_layout > div > span {
		margin-top: 20px;
	}

	.mallCon .inner_layout > div > a {
		width: 47px;
	}
}

@media screen and (max-width: 570px){	
	.mallCon .inner_layout {
		flex-flow: column-reverse;
	}
}

/* mall end */