@CHARSET "UTF-8";

.customer_svc{display:flex;justify-content:center;gap:40px;padding:40px 0;}
.customer_svc li{display:flex;justify-content:center;align-items:center;position:relative;min-width:260px;min-height:260px;font-size:2.4rem;font-weight:500;text-align:center;}
.customer_svc li::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;border:1px solid #334baa;border-radius:40px;background:#fff;transform:rotate(45deg);z-index:-1;}


/********************태블릿********************/
@media all and (max-width:1024px){

.customer_svc{flex-direction:column;gap:10px;padding:0;}
.customer_svc li{min-width:auto;min-height:auto;padding:20px;border:1px solid #334baa;font-size:1.9rem;box-sizing:border-box;}
.customer_svc li::before{display:none;}
.customer_svc li br{display:none;}

}


/********************모바일2********************/
@media all and (max-width:480px){
	
.customer_svc li{padding:15px;font-size:1.7rem;}

}