.swiper-container {
      width: 100%;
      height: 100%;
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;

      /* 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;
	  transition: 300ms;
	  transform: scale(0.8);
    }
	.swiper-wrapper{
	padding-bottom:50px;
	}
	.swiper-slide img{
	width:100%;
	height:auto;
	}
	.swiper-slide-active,.swiper-slide-duplicate-active{
      transform: scale(1);
	}
	.swiper-container{
	margin-bottom:20px;
	}
	.swiper-pagination-bullet{
	width: 11px;
	height: 11px;
	background: #0650A9;
	border-radius:100%;
	}
	.swiper-pagination-bullet-active{
	width: 20px;
	height: 11px;
	background: #79CC20;
	border-radius: 10px 10px 10px 10px;
	}