#mouse-circle {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  border: #FF6F83 2px solid;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transition-property: background, opacity, width;
  transition-property: background, opacity, width;
}

.slide {
  background-color: #0e0d0d;
  padding: 3.5rem;
}

.slide .slide-controls {
  padding: 1rem 0;
}

.slide .slide-controls button {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.2rem;
  color: #FF6F83;
}

.slide .slide-controls button i {
  margin-right: 8px;
}

.slide .slide-title {
  color: #fff;
  font-size: 3.5rem;
}

@media only screen and (max-width: 600px) {
  .slide {
    padding: 1.3rem !important;
  }
  .slide-controls {
    padding: 0.5rem 0 !important;
  }
  .slide-controls button {
    font-size: 1rem !important;
  }
  .slide-title {
    font-size: 2.5rem !important;
  }
  #mouse-circle {
    display: none;
  }
}
/*# sourceMappingURL=global.css.map */