/* Style for plugin widget*/
.tilt-desc {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  background: #333;
  border-radius: 0 50px 50px 0;
  margin-left: 30px;
  margin-bottom: 30px;
  transform: translateY(-20px) translateZ(60px);
  transform-style: preserve-3d;
  transition: 0.3s;
  opacity: 0;
  flex-direction: column;
  padding: 0;
  width: 150px;
  height: 150px;
  justify-content: center;
  align-content: center;
}
.ani-ripple{
  animation: ripple 1s linear infinite;
}
.tilt-desc h3{
  transform-style: preserve-3d;
  transform: translateZ(40px);
}
.tilt-desc p{
  transform-style: preserve-3d;
  transform: translateZ(30px);
}
.congor-tilt:hover .tilt-desc {
    transform: translateY(0) translateZ(20px);
    opacity: 1;
}
.congor-tilt{
    transform-style: preserve-3d;
    transform: perspective(1000px);
    position: relative;
}
@keyframes ripple {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 1em rgba(255, 255, 255, 0.1), 0 0 0 2em rgba(255, 255, 255, 0.05);
    }
    100% {
      box-shadow: 0 0 0 1em rgba(255, 255, 255, 0.1), 0 0 0 2em rgba(255, 255, 255, 0.05), 0 0 0 3em rgba(255, 255, 255, 0);
    }
  }
.popup-video{
  animation: ripple 1s linear infinite;
}

.port-outer{
  overflow: hidden;
}
.tilt-icon {
  position: absolute;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  font-size: 65px;
  z-index: -1;
  color: rgba(255,255,255,0.2);
}