.fade-in {
  opacity: 0;
  pointer-events: none;
  animation: fadeIn 1s forwards; 
}

@keyframes fadeIn {
  to {
    opacity: 1;
    pointer-events: auto;
  }
}
.fade-in:nth-child(1) {
  animation-delay: 0.4s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.6s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.8s;
}

.fade-in:nth-child(4) {
  animation-delay: 1s;
}

.fade-out {
  opacity: 1;
  animation: fadeOut 0.2s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.smallText span {
  opacity: 0;
  pointer-events: none;
  display: inline-block;
}
.smallText .block {
  transition: none;
  /* transform: rotateZ(90deg); */
  width: 100%;
  right: 0;
  left: unset;
  height: 35px;
}
.text-fade-in {
  transition: all 0.25s ease-out 0.8s;
  opacity: 1 !important;
}
.block-move-down {
  transition: all 0.5s ease-out 1s !important;
  width: 0% !important;
}
/*        
      .text-fade-in {
        animation: fadeIn 0.9s forwards;
      }

      .smallText span:nth-child(1) {
        animation-delay: 0.6s;
      }
      .smallText span:nth-child(2) {
        animation-delay: 0.65s;
      }
      .smallText span:nth-child(3) {
        animation-delay: 0.7s;
      }
      .smallText span:nth-child(4) {
        animation-delay: 0.85s;
      }
      .smallText span:nth-child(5) {
        animation-delay: 0.9s;
      }
      .smallText span:nth-child(6) {
        animation-delay: 0.9s;
      }
      @keyframes moveDown {
        to {
          transform: translateX(22vh);
        }
      }
*/

.expand {
  border: 0px;
  background-color: transparent;
  padding: 0px;
  cursor: pointer;
}
.expand img {
  width: clamp(84px, 5.5vw, 500px);
  height: clamp(84px, 5.5vw, 500px);
}

.expandIcon {
  position: absolute;
  opacity: 1;
  transition: opacity 0.1s ease-in-out, transform 0.3s ease-in-out;
  transform: rotateZ(0deg);
}
.column:hover .expandIcon {
  opacity: 0;
  transform: rotateZ(60deg);
}
.column2:hover .expandIcon {
  opacity: 0;
  transform: rotateZ(-60deg);
}

.expandLHover,
.expandRHover {
  opacity: 0;
  transform: rotateZ(0deg);
  transition: opacity 0.1s ease-in-out, transform 0.3s ease-in-out;
}

.column:hover .expandLHover {
  opacity: 1;
  transform: rotateZ(-60deg);
}
.column2:hover .expandRHover {
  opacity: 1;
  transform: rotateZ(60deg);
}

@media (max-width: 768px) {
}
@media (max-width: 414px) {
  .smallText span:nth-child(1) {
    animation-delay: 0.6s;
  }
  .smallText span:nth-child(2) {
    animation-delay: 0.8s;
  }
  .smallText span:nth-child(3) {
    animation-delay: 1s;
  }
  .smallText span:nth-child(4) {
    animation-delay: 1.2s;
  }
  .smallText span:nth-child(5) {
    animation-delay: 1.4s;
  }
  .smallText span:nth-child(6) {
    animation-delay: 1s;
  }
  @keyframes moveDown {
    to {
      transform: translateX(30vh);
    }
  }
}
@media (max-width: 375px) {
}
