

  .guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .guide  p {
    width: 80%;
    color: #543906;
    font-family: sans-serif;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 15px;
  }
  
  .mouse {
    width: 40px;
    height: 40px;
    transform-origin: center bottom;
    animation-name: swinging;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
  }
  
  .mouse-click,
  .mouse-large-click,
  .mouse-small-click {
    opacity: 0;
    transform-origin: center center;
    animation-name: click;
    animation-duration: 1.2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: forward;
    animation-play-state: running;
  }
  
  
  @keyframes swinging{
      0%{transform: rotate(-10deg) translate3d(-15px, 0, 0) }
      100%{transform: rotate(10deg) translate3d(15px, 0, 0) }
  }
  
  @keyframes click {
      0% { opacity: 0 }
      40% { opacity: 1 }
      100%{ opacity: 1 }
  }

  .card-img-overlay:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0.3;
    background-color: #000;
    z-index: -1;
  }

  .fs--2{
    font-size:.55em
  }

  .card-logo{
    margin-top: auto!important;
  }

  /* .gallery-item:before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    opacity: 0.12;
    background-color: #955C25;
    z-index: -1;
  } */
