/*퀵메뉴*/
.quick { position: fixed; right: 2%; top: 27%;background-color: #8dc63f; text-align: center; border-radius: 50px; box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.5); z-index: 999; }
.quick ul li { color: #fff; font-size: 15px; padding: 20px 20px; border-bottom: 1px solid #afd779; }
.quick ul li:last-child { border: 0; }
.quick ul li:first-child { margin-top: 15px; }
.quick h2, .quick a { color: #fff; font-size: 15px; }
.quick span { font-size: 20px; font-weight: 500; display: block; margin-top: 10px; }
.quick a { display: block; padding-top: 50px; }
.quick a.icon1 { background: url(/img/quick_1.png) no-repeat center 0; }
.quick a.icon2 { background: url(/img/quick_2.png) no-repeat center 0; }
.quick a.icon3 { background: url(/img/quick_3.png) no-repeat center 0; padding-top: 15px; }


/* 반응형 */
/* ======== 모바일 ======== */
@media all and (max-width:767px) {
	.quick { display: none; }

}