@charset "UTF-8";

/**
  RDSlide by Maxime Boudrias
  © 2016 Diative
 */

.rdslide {
  position: relative;
}

.rdslide .slide-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.rdslide .slide-container .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 100;
}

.rdslide .slide-container .slide.current {
  z-index: 105;
}

.rdslide .slide-container .slide .image {
  position: absolute;
  width: 100%;
}

.rdslide .slide-navigation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2%;
  text-align: center;
  z-index: 115;
}

.rdslide .slide-navigation .item {
  display: inline-block;

  /* Custom */
  margin: 0 .5%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow:    1px 1px 10px rgba(0, 0, 0, 0.75);
  box-shadow:         1px 1px 10px rgba(0, 0, 0, 0.75);
}

.rdslide .slide-navigation .item.current {
  /* Custom */
  background-color: #0076bd;
}

.rdslide .slide-control {
  display: block;
  position: absolute;
  width: 6.65%;
  height: 0;
  padding-bottom: 49.61%; /* Size of the image */
  min-width: 69px; /* Size of the arrow */
  background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); /* IE Fix */
  z-index: 110;
}

.rdslide .prev {
  left: 0;
}

.rdslide .next {
  right: 0;
}

.rdslide .slide-control .arrow {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 50%;

  /* Custom */
  width: 69px;
  height: 69px;
  margin-top: -34.5px; /* Half of the control arrow size */
  background: no-repeat url("../img/slide-control.7a71f3a2e24c.png");
}

.rdslide .prev .arrow {
  /* Custom */
  left: 10%;
  background-position: 0 0;
}

.rdslide .next .arrow {
  /* Custom */
  right: 10%;
  background-position: -81px 0;
}

/* RDSlide Content */
.rdslide .content-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

.rdslide .content-container .content {
  padding: 1.6% 20px 3% 20px;
  max-width: 515px;
  margin: 0 auto;
  text-align: justify;
}

.rdslide .content h2 {
  margin: 1.7% 0 0 0;
}

.rdslide .content h3 {
  margin: 0;
}

.rdslide .content p {
  font-size: 1.15em;
  line-height: 1.6em;
  color: #535456;
}

/* Responsive Design */
@media only screen and (max-width: 900px) {
  .rdslide .slide-control .arrow {
    /* Custom */
    width: 30px;
    height: 42px;
    margin-top: -21px; /* Half of the control arrow size */
    background: no-repeat url("../img/slide-control-min.9a9af2772502.png");
  }

  .rdslide .prev .arrow {
    /* Custom */
    left: 2%;
    background-position: 0 0;
  }

  .rdslide .next .arrow {
    /* Custom */
    right: 2%;
    background-position: -31px 0;
  }
}