/*
  swiper.css
  webcom.one | 13/05/2022 | CSS
  (c) Copyright 2022 Web Communication
*/

.swiper {
  width: 95%;
/*  height: 100%;*/
overflow: visible;

}

.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;
}

.swiper-slide img {
  display: block;
  width: 100%;
/*  height: 100%;*/
  object-fit: cover;
/*background: #eee;*/
	transition: all .4s ease-in-out;
}


.swiper-slide img:hover { transform: scale(1.1);cursor: pointer;}

.swiper-button-next {
  background: rgba(255,255,255,.9);

  width: 65px;
  height: 65px;
  color: #666;
  margin-top: -32px;
  right: -30px;/*7px;*/
  border-radius: 50%;
}

.swiper-button-prev {
  background: rgba(255,255,255,.9);

  width: 65px;
  height: 65px;
  color: #666;
  margin-top: -32px;
  left: -30px;/*7px;*/
  border-radius: 50%;
  font-size: 12px;

}

.swiper-button-prev:hover,
.swiper-button-next:hover {

  color: #666;
  background: rgba(0,0,0,.1);
}
