.property-hack {
  display: none;
  width: 200px;
  height: 650px;
  margin-left: 8000px;
}

.demo-container {
  width: 100vw; 
  height: 650px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: grab; margin-top:-10px;
}

.slides {
  width: 500%;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slide {
  width: 100vw;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}

.bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.bg-2 {
  -webkit-transform: translate3d(-50vw, 0, 0);
          transform: translate3d(-50vw, 0, 0);
}

.animation {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.bg-1 ,.bg-2, .bg-3,.bg-4,.bg-5{ background-repeat: no-repeat; background-position: center center;}
@media screen and (min-width: 320px) and (max-width: 992px){
.bg-1 ,.bg-2, .bg-3,.bg-4,.bg-5{ background-size: contain;background-repeat: no-repeat;}
	.demo-container{ height: 280px;}
    }

.grabbing {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.slide-indicator {
  position:relative;
  left: 50%; 
  bottom: 38px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  height: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 2px;
  float: left;
  background: white;
  opacity: 0.3;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.dot-1 {
  opacity: 1;
}
.overlay {
  width: 100vw;
  height: 35px;
  position: fixed;
  bottom: 0;
  font-family: "Bad Script", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 0;
}

.overlay-active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.hint {
  background: transparent;
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: center;
  font-family: "Bad Script", sans-serif;
  font-size: 1.2rem;
  z-index: 1;
}

a {
  color: white;
}

@media only screen and (max-width: 320px) {
	.demo-container{ height: 117px;}
  .slide-indicator {
    bottom: 15px;
    height: 15px;
    width: 95px;
  }

  .dot {
    width: 15px;
    height: 15px;
  }

  .overlay {
    padding-top: 8px;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 321px) and (max-width: 375px){
	.demo-container{ height: 145px;}
}
@media screen and (min-width: 376px) and (max-width: 479px){
	.demo-container{ height: 165px;}
}
@media screen and (min-width: 480px) and (max-width: 767px){
	.demo-container{ height: 233px;}
}
@media screen and (min-width: 768px) and (max-width: 992px){
	.demo-container{ height: 280px;}
}