@keyframes smallToRight {
  from {
    transform: translate(-20%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smallToLeft {
  from {
    transform: translate(20%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smallToTop {
  from {
    transform: translate(0, 20%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smallToBottom {
  from {
    transform: translate(0, -20%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes opacityZreoToOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.smallToRightAnim {
  animation-name: smallToRight, opacityZreoToOne;
}

.smallToLeftAnim {
  animation-name: smallToLeft, opacityZreoToOne;
}

.smallToTopAnim {
  animation-name: smallToTop, opacityZreoToOne;
}

.smallToBottomAnim {
  animation-name: smallToBottom, opacityZreoToOne;
}

@keyframes clipXMove {
  from {
    overflow: hidden;
    transform: translateX(275px);
    width: 0%;
  }
  to {
    overflow: hidden;
    transform: translateX(0);
  }
}
@keyframes clipHeight {
  from {
    overflow: hidden;
    height: 0%;
  }
  to {
    overflow: hidden;
  }
}
.clipHeightAnimBox {
  display: flex;
  animation: clipHeight 1s cubic-bezier(0.24, 0.1, 0.2, 1) both;
}
.clipHeightAnimBox .clipHeightAnim {
  white-space: nowrap;
}

.clipXMoveAnim {
  white-space: nowrap;
  animation: clipXMove 1s ease both;
}

.clipXMoveAnimBox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.clip-x-move-anim-image-obj {
  position: absolute;
  width: 600px;
  height: 100%;
}

.case-box .case-elem {
  position: relative;
  width: calc(33.3% - 9px);
  margin: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.case-box .case-elem:hover .case-info-layout {
  visibility: visible;
  opacity: 1;
  backdrop-filter: blur(10px);
}
.case-box .case-elem .case-info-layout {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(0px);
  transition: all 0.3s;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  flex-direction: column;
}
.case-box .case-elem .case-info-layout span {
  color: rgba(255, 255, 255, 0.6666666667);
}
.case-box .case-elem img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 1500px) {
  .case-box .case-elem {
    width: calc(50% - 7px);
    margin: 3px;
  }
}
@media screen and (max-width: 1200px) {
  .case-box .case-elem {
    width: 100%;
    margin: 2px;
  }
}

/*# sourceMappingURL=case.css.map */
