.button-effect1 {
  position: relative;
  overflow: hidden;
}

.button-effect1:after {
  content: '';
  position: absolute;
  left: 150%;
  top: 40%;
  width: 200%;
  height: 20%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.button-effect1:before {
  content: '';
  position: absolute;
  left: 100%;
  top: 40%;
  width: 200%;
  height: 20%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.button-effect1:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.button-effect1:hover:after {
  left: -150%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.button-effect1:hover:before {
  left: -200%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.video-button {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  text-align: center;
  line-height: 78px;
  color: #2e3c40;
  background-color: #fff;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-button i {
  font-size: 20px;
}

@media (min-width: 576px) {
  .video-button {
    width: 100px;
    height: 100px;
    line-height: 98px;
    font-size: 35px;
  }
  .video-button i {
    font-size: 26px;
  }
}

.video-button:hover {
  color: #fff;
  background-color: #ff6360;
}
/*# sourceMappingURL=video-button.css.map */