@charset "utf-8";
.volu_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;}
.volu_top img {/* width: 23%; */}
.volu_top ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.volu_top ul li {
    width:25%;
    word-break: keep-all;
    font-size: var(--font-size3);
    font-weight: 400;
    }
.volu_top ul li:last-child {width:70%}
.volu_conts {
    margin: 5rem 0;
}
.volu_conts h4 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 2rem;
    position:relative;
    display: inline-block;
}
.volu_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: 19%;
    border-radius: 1rem;
    padding: 2rem;
}
.class li p {
    /* font-size: 20px; */
    font-weight: 500;
    margin-top: 1rem;
    color: var(--color-main);
}
.class img {}

/* PC (해상도 ~ 1024px)*/ 
@media only screen and (max-width: 1440px)  {
	.volu_top {padding: 3rem;}
	.volu_top ul li {}
	.volu_top ul li br {display:none;}
}

/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/ 
@media all and (min-width:768px) and (max-width:1023px) {
	.volu_top ul {
    flex-wrap: wrap;
    display: flex;
    text-align: center;
}
	.volu_top ul li, .volu_top ul li:last-child {width:100%}
	.volu_top ul li:last-child {margin-top: 2rem;}

	.class {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}
	.class li {width: 28%;margin: 1rem;}
}

/* 모바일 가로, 모바일 세로 (해상도 ~ 767px)*/ 
@media all and (max-width:767px) {
	.volu_top {padding:2rem 1rem}
	.volu_top ul {
		flex-wrap: wrap;
		display: flex;
		text-align: center;
	}
	.volu_top ul li, .volu_top ul li:last-child {width:100%}
	.volu_top ul li:last-child {margin-top: 2rem;}

	.class {
		flex-wrap: wrap;
		display: flex;
		justify-content: space-between;
	}
	.class li {width: 48%;padding: 1rem;margin-bottom: 1rem;}
	.class img {
    width: 60%;
}
}

