#gallery{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    .cycle-slideshow{
        position: relative;
        img{
            max-width: 100%;
            height: auto;
            display: block;
        }
    }

    .gallery-prev,
    .gallery-next {
      position: absolute;
      top: 50%;
      z-index: 2000;
      padding: 0;
      font-size: 2em;
      color: #e6272d;
      background: none;
      border: none;
      transform: translate(0, -50%);

      &:hover {
        opacity: .5;
      }
      &:focus {
        outline: 0;
      }
    }
    .gallery-prev {
      left: 10px;
    }
    .gallery-next {
      right: 10px;
    }
}
