@charset "utf-8";
.spon_top {display: flex;align-items: center;padding: 2rem 4rem;border-bottom: 10px solid var(--color-main);/* border-bottom: 2px dotted #ccc; */justify-content: space-between;background-color: #e2f5fd;border-radius: 2rem;}
.spon_top img {/* width: 23%; */}
.spon_top ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.spon_top ul li {
    width:25%;
    word-break: keep-all;
    font-size: var(--font-size3);
    font-weight: 400;
    }
.spon_top ul li:last-child {width:70%}
.spon_conts {
    margin: 5rem 0;
}
.spon_conts h4 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 2rem;
    position:relative;
    display: inline-block;
}
.spon_conts h4:after{
    content:"";
    position:absolute;
    display: block;
    width: 10px;
    height: 10px;
    background-color:var(--color-main);
    border-radius:50%;
    top: 3px;
    right: -12px;
}

.class {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}
.class li {
    text-align: center;
    border: 1px solid var(--color-main);
    width: 32%;
    border-radius: 1rem;
    padding: 2rem;
}
.class li p:first-of-type {font-size: 20px;font-weight: 600;margin: 1rem 0 .5rem;color: var(--color-main);}
.class img {}
.bank div{
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 1rem;
    font-size: var(--font-size3);
    margin-bottom: 1rem;
}
.bank div span {
    color: var(--color-main);
    font-weight: 600;
    margin-left: 1rem;
}
.bank ul li {position:relative;padding-left: 1.5rem;font-weight: 300;}
.bank ul li:before {
    content:"";
    position:absolute;
    display:inline-block;
    background-color: #666;
    width:10px;
    height:2px;
    left:0;
    top:50%;
    transform: translateY(-50%);
}

/* PC (해상도 ~ 1440px)*/ 
@media only screen and (max-width: 1440px)  {
	.spon_top {padding:3rem}
	.spon_top ul li {}
	.spon_top ul li br {display:none;}
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/ 
@media all and (min-width:768px) and (max-width:1023px) {
	
	.spon_top ul {
    flex-wrap: wrap;
    display: flex;
    text-align: center;
}
	.spon_top ul li, .spon_top ul li:last-child {width:100%}
	.spon_top ul li:last-child {margin-top: 2rem;}
	.class li {padding: 1rem;}
}

/* 모바일 가로, 모바일 세로 (해상도 ~ 767px)*/ 
@media all and (max-width:767px) {
	.spon_top {padding:2rem 1rem}
	.spon_top ul {
		flex-wrap: wrap;
		display: flex;
		text-align: center;
	}
	.spon_top ul li, .spon_top ul li:last-child {width:100%}
	.spon_top ul li:last-child {margin-top: 2rem;}

	.class {
		flex-wrap: wrap;
		display: flex;
		justify-content: space-between;
	}
	.class li {width: 100%;padding: 1rem;margin-bottom: 1rem;}
	.class img {
    width: 27%;
}
	.bank div {padding:1rem;text-align: center;}
	.bank div span {width:100%;display: inline-block;margin-left: unset;}
	.bank ul li {padding-left: 1rem;}
	.bank ul li:before {width:8px;top: 0;transform: translateY(12px);}
}
