.box {
  width: 50px;
  height: 50px;
  background-color: #3498db;
  border-radius: 10px;
}
.fw-content {
  position: relative;
}
.fw-content .icon {
  position: absolute;
}
.fw-content .icon-top-left {
  top: 0%;
  left: 0%;
}
.fw-content .icon-top-center {
  top: 0%;
  left: 50%;
}
.fw-content .icon-top-right {
  top: 0%;
  right: 0%;
}
.fw-content .icon-middle-left {
  top: 50%;
  left: -25%;
}
.fw-content .icon-middle-center {
  top: 50%;
  left: 50%;
}
.fw-content .icon-middle-right {
  top: 50%;
  right: 0%;
}
.fw-content .icon-bottom-left {
  bottom: 0%;
  left: 0%;
}
.fw-content .icon-bottom-center {
  bottom: 0%;
  left: 50%;
}
.fw-content .icon-bottom-right {
  bottom: 0%;
  right: 0%;
}
.fw-content .triangle-icon {
  background: url("../images/triangle/icons/triangle.svg");
  background-repeat: no-repeat;
}
.fw-content .triangle-sm-icon {
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  display: block;
}
.fw-content .triangle-md-icon {
  background-size: 96px 96px;
  width: 96px;
  height: 96px;
  display: block;
}
.fw-content .triangle-lg-icon {
  background-size: 120px 120px;
  width: 120px;
  height: 120px;
  display: block;
}
.fw-content .triangle-xl-icon {
  background-size: 256px 256px;
  width: 256px;
  height: 256px;
  display: block;
}
.fw-content .puzzle-icon {
  background: url("../images/pizzle/icons/puzzle.svg");
  background-repeat: no-repeat;
}
.fw-content .puzzle-sm-icon {
  background-size: 150px 150px;
  width: 150px;
  height: 150px;
  display: block;
}
.fw-content .puzzle-md-icon {
  background-size: 72px 72px;
  width: 72px;
  height: 72px;
  display: block;
}
.fw-content .puzzle-lg-icon {
  background-size: 120px 120px;
  width: 120px;
  height: 120px;
  display: block;
}
.fw-content .puzzle-xl-icon {
  background-size: 256px 256px;
  width: 256px;
  height: 256px;
  display: block;
}
/* Pulse Animation */
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Bounce Animation */
.bounce {
  animation: bounce 5s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* Rotate Animation */
.rotate-left {
  animation: rotateLeft 8s infinite linear;
}
.rotate-right {
  animation: rotateRight 3s infinite linear;
}
@keyframes rotateLeft {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotateRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Zoom In-Out Animation */
.zoom {
  animation: zoom 3s infinite;
}
@keyframes zoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
}

/* Jump Animation */
.jump {
  animation: jump 5s infinite;
}
@keyframes jump {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  75% {
    transform: translateY(-10px);
  }
}
.fade-in-out {
  animation: fadeInOut 5s infinite;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

/* Zoom In and Zoom Out */
.zoom {
  animation: zoom 5s infinite;
}
@keyframes zoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

/* Scale and Rotate */
.scale-rotate {
  animation: scaleRotate 3s infinite;
}
@keyframes scaleRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
/* Rotate Left and Right */
.rotate-left-right {
  animation: rotateLeftRight 5s infinite;
}
@keyframes rotateLeftRight {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Zoom In and Out from 0% to 100% */
.zoom-in-out {
  animation: zoomInOut 5s infinite;
}
@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
}
