.inline-gallery-container {
  width:100%;
  height:200px;
  overflow:hidden;
  border-bottom:solid 5px #19437E;
  border-top:solid 5px #19437E;
  position:relative;
  box-shadow:0px 20px 22px -7px rgba(0,0,0,.5);
  border-radius:0px;
}

#inline-gallery {
  position:relative;
}

.inline-gallery:after {
  content:'';
  width:0;
  height:0;
  border-style:solid;
  border-width:25px 30px 0 30px;
  border-color:#fff transparent transparent transparent;
  position:absolute;
  top:-7px;
  z-index:50;
  left:50%;
  margin-left:-15px;
}

.inline-gallery-container .swiper-slide {
  text-align:center;
  font-size:18px;
  background:#fff;
  background-size:cover;
  width:200px;
  height:200px;
  /* 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;
}

.inline-gallery-container .swiper-slide:nth-child(2n) {
  width:40%;
}

.inline-gallery-container .swiper-slide:nth-child(3n) {
  width:20%;
}

