*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: consolas;
}

bodyfx
{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height:100vh;
  background: rgba(190, 30, 246, 1);
}

.containerfx
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.containerfx .box
{
  position: relative;
 max-width:160px;
max-height: 200px;	
 
  display: flex;
  justify-content: center;
  align-items: center;
  align-text: center;
  margin: 40px 30px;
  transition: 0.5s;
}

.containerfx .box::before
{
  content:' ';
  position: absolute;
  top: 0;
  left: 50px;
  width: 100%;
  height: 105%;
  text-decoration: none;
 
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  
  
  
}

.containerfx .box::after
{
  content:'';
  position: absolute;
  top: 0;
  left: 50;
  width: 50%;
  height: 100%;
  background: ;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
  
  
  
  
  
}

.containerfx .box:hover:before,
.containerfx .box:hover:after
{
  transform: skewX(0deg);
  left: 20px;
  width: calc(100% - 90px);
  
}

.containerfx .box:nth-child(1):before,
.containerfx .box:nth-child(1):after
{
  background: linear-gradient(315deg, #ffbc00, #ff0058)
}

.containerfx .box:nth-child(2):before,
.containerfx .box:nth-child(2):after
{
  background: linear-gradient(315deg, #03a9f4, #ff0058)
}

.containerfx .box:nth-child(3):before,
.containerfx .box:nth-child(3):after
{
  background: linear-gradient(315deg, #4dff03, #00d0ff)
}

.containerfx .box span
{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}

.containerfx .box span::before
{
  content:'';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  opacity: 0;
  transition: 0.1s;  
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08)
}

.containerfx .box:hover span::before
{
  top: -50px;
  left: 100px;
  width: 50px;
  height: 50px;
  opacity: 1;
}

.containerfx .box span::after
{
  content:'';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20%;
  height: 20%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.5s;
  animation: animate 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  animation-delay: -1s;
}

.containerfx .box:hover span:after
{
  bottom: -50px;
  right: 50px;
  width: 50px;
  height: 50px;
  opacity: 1;
}

@keyframes animate
{
  0%, 100%
  {
    transform: translateY(10px);
  }
  
  50%
  {
    transform: translate(-10px);
  }
}

.containerfx .box .content
{
  position: relative;
  left: 0;
  padding: 20px 40px;
  max-width:160px;
  max-height:200px;
 
  z-index: 1;
  transform: 0.5s;
  color: #fff;
  
  background: rgba(239, 213, 106, 0.48);
  backdrop-filter: blur(50px);
  box-shadow: 0 5px 15px rgba(67, 51, 9, 1);
  border-radius: 8px;
  border:5px solid rgba(255, 255, 255, 0.75);
   opacity:;
}

.containerfx .box:hover .content
{
  left: -25px;
  padding: 30px 20px;
}

.containerfx .box .content h2
{
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 5px;
}

.containerfx .box .content p
{
  font-size: 1.1em;
  margin-bottom: 5px;
  line-height: 1.4em;
width:100%;
height:100%;
min-height:100%;
}

.containerfx .box .content a
{
  display: inline-block;
  font-size: 1.1em;
  color: #111;
  background: #ffcf4d;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 5px;
}

.containerfx .box .content p:hover
{
  background: #ffcf4d;
  border: 1px solid rgba(255, 0, 88, 0.4);
  box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
  color:#03C;
}