@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');


.slider-wrapper {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  /* height: 70vh !important; */
  background-size: cover !important;
}

.slide::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  bottom: 0;
  left: 0;
}

.previousButton,
.nextButton {

  color: #6b6b6b;
  cursor: pointer;
  font-family: 'montserrat';
  font-size: 15px;
  line-height: 15px;
  padding: 15px 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 45%;
  width: 40px;
  z-index: 9;
}

.previousButton:hover,
.nextButton:hover {
  background: #95c41f none repeat scroll 0 0;
  border: 1px solid transparent;
  color: #fff;
}

.previousButton {
  left: 10%;
  z-index: 9999;

}

.previousButton:hover {
  left: 10%;
}

.nextButton {
  right: 10%;
  z-index: 9999;
}

.nextButton:hover {
  right: 10%;
}

.slider-content {
  text-align: center;
}

.slider-content .inner {
  padding: 0 70px;
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: rotateZ;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.slider-content .inner button {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.slider-content .inner h1 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: black;
}

.slider-content .inner p {
  color: #FFFFFF;

  margin: 10px auto 10px;
  max-width: 640px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.slider-content section {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.slider-content section span {
  color: #FFFFFF;
}

.slider-content section span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: inline-block;
  text-align: left;
  line-height: 1.4;
  vertical-align: middle;
  margin-left: 10px;
}

.slider-content section img {
  width: 40px;
  height: 40px;
  border: solid 2px rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  vertical-align: middle;
}

.slider-content section span strong {
  color: #FFFFFF;
  font-size: 14px;
  display: block;
}

@media (max-height: 500px) {

  .slider-wrapper,
  .slide {
    height: calc(100vh - 75px);
  }
}

@media (max-width: 640px) {

  .slider-wrapper,
  .slide {
    height: calc(80vh - 75px);
  }
}

@media (max-height: 600px) {
  .slider-content .inner h1 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .slider-content .inner h1 {
    font-size: 32px;
  }
}