.swiper-container {
        width: 100%;
        height: 100%;
		background-color	:	#5a4023;
		margin-top: 3%;

    }
 
 
 .swiper-container a {
 	width: 100%;

 }

 
.swiper-wrapper{
	width: 100%;
	backface-visibility: hidden;

}
    .swiper-slide {
        text-align: center;
        font-size: 18px;
	background-color	:	#5a4023;
        width: 80%;
        /* 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;
	opacity:0.4;

    }


.swiper-slide-active{
	opacity:1;
}



    .swiper-slide img{
    width:100%;
    max-width: 1040px;
    }
.swiper-pagination {
     position: inherit; 
}

.swiper-button-prev{

	background-image: url(../img/arrow_l.png);
}

.swiper-button-next{

	background-image: url(../img/arrow_r.png);
}



element.style {
}
swiper_option.css:36
.swiper-button-prev {
    background-image: url(../img/arrow_l.png);
}


.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 41%;
    width: 12%;
    height: 30%;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next{
animation: next 0.6s linear infinite;
}

.swiper-button-prev{
animation: prev 0.6s linear infinite;
}

@keyframes next {
  0% { transform: translateX(0) }
  25% { transform: translateX(2px) }
  50% { transform: translateX(0px) }
  75% { transform: translateX(-2px) }
  100% { transform: translateX(0) }
}

@keyframes prev {
  0% { transform: translateX(0) }
  25% { transform: translateX(-2px) }
  50% { transform: translateX(0px) }
  75% { transform: translateX(2px) }
  100% { transform: translateX(0) }
}


