.gallery br {
    display: none;
  }
  
  .gallery-caption {
    display: none !important;
  }
  
  .gallery-preview {
    background-color: #bebcbc;
    width: 100%;
    float: left;
    padding: 20px;
    position: relative;
    text-align: center;
    min-height: 400px;
    max-height: 400px;
    margin-bottom: 1px;
  }
  
  .gallery-preview__caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 20px;
  }
  
  .gallery-preview__caption-text {
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
  }
  
  .gallery-item {
    width: 5% !important;
    float: left;
    margin: 0 !important;
    transition: all 0.2s linear;
    border: 1px solid white;
  }
  
  .gallery-item:hover {
    opacity: 0.7;
    transition: all 0.2s linear;
  }
  
  .gallery-item img {
    border: 0 !important;
  }
  
  .gallery-icon img {
    width: 50px !important;
    height: auto !important;
  }
  
  .gallery-preview__left-arrow,
  .gallery-preview__right-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    cursor: pointer;
    opacity: 0.8;
    top: 50%;
    margin-top: -25px;
    background-image: url("../../img/arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .gallery-preview__left-arrow {
    background-color: #598f39;
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 0;
  }
  .gallery-preview__left-arrow:hover {
    opacity: 1;
  }
  
  .gallery-preview__right-arrow {
    background-color: #be0048;
    right: 0;
  }
  .gallery-preview__right-arrow:hover {
    opacity: 1;
  }
  
  .gallery-preview__image {
    border: 0 !important;
    max-height: 360px;
  }