
/*img {
  vertical-align: middle;
}
*/
.gal_container {
  position: relative;
  background:white;
}

/* .holder {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
} */
.holder::-webkit-scrollbar {
  display: none;
}

/* Hide the images by default */
.slides {
  display: none;
  /* max-width: 1000px; */
   width: 100%;
  flex-shrink: 2;
  height: auto; 
}

.slides img {
  width: 100%;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-width: 600px) {
  .prevContainer,
.nextContainer {
    display: none;
    visibility: hidden;
  }
}
.prevContainer,
.nextContainer {
  background-color: maroon;
  position: absolute;
  top: 60%;
  transform: translate(0, calc(-50% - 54px));
  height: 54px;
  width: 54px;
  cursor: pointer;
}

.prevContainer {
  margin-left: 26px;
  left: 10;
  border-radius: 30px 0 0 30px;
}
.prevContainer:hover{
background:orange;
}

.prev {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  height: 34px;
  width: 32px;
  float: left;
  margin-left: 12px;
}

.prev svg,
.next svg {
  fill: white;
  
}

.nextContainer {
  margin-right: 26px;
  right: 0;
  border-radius: 0 30px 30px 0;
  right: 10;
}
.nextContainer:hover{
background:orange;
}
.next {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  height: 34px;
  width: 32px;
  float: right;
  margin-right: 12px;
  
}

/* Container for image text */


.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

