/* The grid: Four equal columns that floats next to each other */
.column_gall {
    float: left;
    padding: 10px;
  }
  
  /* Style the images inside the grid */
  .column_gall img {
    cursor: pointer;
    width: 100%;
    object-fit: contain;
    border: 5px solid white;
    border-radius: 5px;
  }
  
  .column_gall img:hover {
    opacity: 1;
  }
  
  /* Clear floats after the columns */
  .row_gall:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* The expanding image container (positioning is needed to position the close button and the text) */
  .container_gallery {
    position: relative;
    display: none;
  }
  
  /* Expanding image text */
  #imgtext {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
  }
  
  /* Closable button inside the image */
  .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
  }
  
  div.slider h2 {
    text-align: center;
    background: orange;
    font-size: 6rem;
    line-height: 3;
    margin: 0;
  }
  
  .text_gall {
      font-weight: 500;
  }
  
  .bx-wrapper {
      -moz-box-shadow: 0 0 0px #ccc !important;
      -webkit-box-shadow: 0 0 0px #ccc !important;
      box-shadow: 0 0 0px !important;
      border: 0px solid #fff !important;
      background: #3ca4cb !important;
  }
  
  .bx-wrapper .bx-controls-direction a {
      top: 10px !important;
      margin: 5px !important;
  }
  
  .bx-prev {
    opacity: 50%;
  }
  
  .bx-next {
    opacity: 50%;
  }
  
  .bx-pager {
    position: absolute;
    top: -35px;
  }