/**
 * Swiper 3.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: November 7, 2015
 */
/* ¹è³Ê ½½¶óÀÌµå */
/* ¹è³Ê ½½¶óÀÌµå */
#swiper_section, #swiper_section2 {
  /*width: 1920px;*/
  width: 100%;
  height: 100%;
  /* height: 600px; */
  /* height: 407px; */
  margin: 0 auto;
  background-color: gray;
  position: relative;
  overflow: hidden;
}

#swiper_section > ul, #swiper_section2 > ul {
  margin: 0px;
  padding: 0px;
  width: 9600px;
  height: 100%;
  position: relative;
  display: flex;
}

#swiper_section > ul > li, #swiper_section2 > ul > li {
  width: 100%;
  background-position: center;
  background-size: cover;

  /* Center slide text vertically */
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; */
  flex-direction: column;
  -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;
}

.banner_title{
  width: 100%;
  height: 73px;
  background: red;
}

.swiper-slide-1:nth-child(3) .banner_title{
  background: #009D82;
}

.swiper-slide-1:nth-child(4) .banner_title{
  background: #0297D7;
}

.swiper-slide-1:nth-child(5) .banner_title{
  background: #1A5B9F;
}

.banner_title_box{
  margin: 0 auto;
  width: 63%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
}

.banner_title_box span{
	color: #fff;
}

#swiper_section > ul > li > img, #swiper_section2 > ul > li > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.swiper-pagination {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
  z-index: 9;
}
.swiper-pagination-bullet {
  margin-right: 5px;
}
.swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: #dfdfdf;
	cursor: pointer;
	display: inline-block;
	opacity: 1;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #396fa7;
  box-sizing: border-box;
}
