
/* 슬라이드배너 꾸미기 */
.slide2 { width:500px; height:590px; clear: both;}
.slide2 .swiper-slide {text-align: center; font-size: 18px; background: #fff; width: 490px; height: 280px;
			  /* Center slide text vertically */
			  display: -webkit-box;
			  display: -ms-flexbox;
			  display: -webkit-flex;
			  display: flex;
			  -webkit-box-pack: center;
			  -ms-flex-pack: center;
			  -webkit-justify-content: center;
			  justify-content: center;
			  -webkit-box-align: center;
			  -ms-flex-align: center;
			  -webkit-align-items: center;
			  align-items: center; 
			}

/*이동버튼 영역*/
.slide2 .swiper-button-next:after,
.slide2 .swiper-button-prev:after{display:none;}/* 소스에 들어있는 버튼 삭제 */
.slide2 .swiper-button-next,
.slide2 .swiper-button-prev{width:32px; height:12px;}/* 버튼 크기 */
.slide2 .swiper-button-prev{top:50px; left: 50%; 
    transform: translateX(-50%); background:url(../images/insight-prev.png);}/* 버튼 위치, 버튼 이미지 */
.slide .swiper-button-next{bottom:50px; left: 50%; 
    transform: translateX(-50%); background:url(../images/insight-next.png);}/* 버튼 위치, 버튼 이미지 */
/* .slide .swiper-button-prev:hover{background:url(../images/prev_hover.png);}버튼 호버 이미지 */
/* .slide .swiper-button-next:hover{background:url(../images/next_hover.png);}버튼 호버 이미지 */

/*블릿버튼 영역*/
.slide2 .swiper-pagination-bullet{background:pink; width:10px; height:10px; opacity:0.5;}/* 블릿버튼 크기, 색상, 투명도 */
.slide2 .swiper-pagination-bullet-active{opacity:1;} /* 블릿버튼 페이지 표시날 때 투명도 */
.slide2 .swiper-pagination-fraction, 
.slide2 .swiper-pagination-custom, 
.slide2 .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets{bottom:10px;}/* 블릿버튼 위치 */