#slides, #slides-home {
  position: relative; }

#slides .slides-container, #slides-home .slides-container {
  display: none; }

#slides .scrollable, #slides-home .scrollable {
  *zoom: 1;
  position: relative;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%; }

#slides .scrollable:after, #slides-home .scrollable:after {
  content: "";
  display: table;
  clear: both; }

.slides-navigation {
  margin: 0 auto;
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 100%; }

.slides-navigation a {
  position: absolute;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  text-indent: -9999px;
  height: 7em;
  width: 3em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40%;
  transition: all 0.3s; }
  @media screen and (max-width: 768px) {
    .slides-navigation a {
      background-color: rgba(255, 255, 255, 0.5); } }
  .slides-navigation a:hover {
    background-color: rgba(255, 255, 255, 0.8); }

.slides-navigation a.prev {
  left: 0;
  transform: translate(0, -50%);
  background-image: url("assets/images/arrow-left.svg"); }

.slides-navigation a.next {
  right: 0;
  transform: translate(0, -50%);
  background-image: url("assets/images/arrow-right.svg"); }

.slides-pagination {
  position: absolute;
  z-index: 3;
  bottom: 1em;
  text-align: center;
  width: 100%; }

.slides-pagination a {
  width: 25px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin: 2px;
  text-indent: -9999px;
  overflow: hidden;
  transition: background-color 0.3s; }

.slides-pagination a.current {
  background: #fff; }
