/*********************************************************************************************************
 *********************************************************************************************************
 *												GALLERY 
 ********************************************************************************************************* 
 *********************************************************************************************************/
section.gallery {
	position: relative; }
section.gallery h1.title {
	background-color: #b9b9b9;
	color: #fff;
	font-size: 18px;
  font-weight: 300;
	margin: 60px 0;
	padding: 10px;
	text-align: center;
	text-transform: uppercase; }
section.gallery .swiper-container {
  width: 80%;
  height: calc(100% - 150px);
  margin-left: auto;
  margin-right: auto; }
section.gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: 100%;
  width: 100%;
  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; }
section.gallery .swiper-slide .gallery-img {
	object-fit: cover;
	width: 100%; }
section.gallery .swiper-slide .caption {
  position: absolute;
    z-index: 1;
    bottom: 0;
    background-color: rgba(125, 129, 137, .4);
    width: 100%;
    height: 35px;
    color: #fff;
    padding: 10px;
    font-size: 15px;
    font-weight: 100; }
section.gallery .swiper-pagination {
  margin: 5px auto;
  width: 100%; }
section.gallery .swiper-pagination .swiper-pagination-bullet{ 
	background-color: #e6e6e6; 
  margin: 0 3px;
	opacity: 1; } 
section.gallery .swiper-pagination .swiper-pagination-bullet-active{ 
	background: #b9b9b9; 
	opacity: 1; } 
section.gallery .swiper-button-next {
  	background-image: url(../../images/nav.svg);
    background-size: contain;
    width: 40px; }
section.gallery .swiper-button-prev {
	background-image: url(../../images/nav.svg);
    background-size: contain;
    -webkit-transform: rotate(180deg);
    width: 40px; }


/*********************************************************************************************************
 *********************************************************************************************************
 *                        RESPONSIVE 
 ********************************************************************************************************* 
 *********************************************************************************************************/
@media only screen and (max-width: 768px) {
  section.gallery .swiper-container {
    max-height: 100vh;
    width: 100%; }
}
@media only screen and (max-width: 480px) {
  section.gallery {
    margin-bottom: 50px; }
  section.gallery h1.title {
    margin: 25px 0;
  }
  section.gallery .swiper-container {
    width: 100%; }
  section.gallery .swiper-button-next,
  section.gallery .swiper-button-prev {
    width: 25px; }
}