.hakk {
	text-align: center;
	padding-bottom: 10px;
}
.hakk .set {
	text-align: left;
}
.hakk h2 {
	margin: 0;
	padding: 15px 0;
}
.hakk p {
	margin: 0;
	padding: 0 0 20px 0;
	font-weight: 300;
}


@media (max-width: 768px) { /* Daima */
  .hakk .set {
    text-align: center;
  }
} /* 768px */


.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button:hover:after {
  background-color: darken(#ffffff, 10%);
}
.video-play-button span {
  display: block;
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 44px;
  text-align: center;

  /* border: solid 1px red; */
  color: #222222;
  font-size: 26px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
