

/* Utility classes */
.animate {
    animation-duration: 1s;
    animation-fill-mode: both;
  }

  .animate.animate--infinite {
    animation-iteration-count: infinite;
  }

  .animate.animate--delay-1s {
    animation-delay: 1s;
  }
  .animate-faster {
    animation-duration: 0.4s;
  }
  .animate-fast {
    animation-duration: 0.6s;
  }
  .animate-normal{
    animation-duration: 0.8s;
  }
  .animate-slow {
    animation-duration: 2s;
  }
  /* Animations */
  @keyframes slideInLeft {
    from {
      transform: translateX(-100px);
    }

    to {
      transform: translateX(0);
    }
  }

  .slideInLeft {
    animation-name: slideInLeft;
    animation-timing-function: ease-in;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100px);
    }

    to {
      transform: translateX(0);
    }
  }

  .slideInRight {
    animation-name: slideInRight;
    animation-timing-function: ease-in;
  }
  @keyframes slideInTop {
    from {
      transform: translateY(30px);
    }

    to {
      transform: translateY(0);
    }
  }

  .slideInTop {
    animation-name: slideInTop;
    animation-timing-function: all;
  }
  @keyframes slideInBottom{
    from {
      transform: translateY(-30px);
    }

    to {
      transform: translateY(0);
    }
  }

  .slideInBottom{
    animation-name: slideInBottom;
    animation-timing-function: all;
  }

  @keyframes rotate {
    from {
      transform: rotate(0);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .rotate {
    animation-name: rotate;
    animation-timing-function: linear;

    transform-origin: top left;
  }

  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-30px);
    }

    60% {
      transform: translateY(-15px);
    }
  }

  .bounce {
    animation-name: bounce;
  }

/* breathing animation  */
@keyframes breathing {
  0% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }

  75% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.breathing {
-webkit-animation: breathing 7s ease-out infinite normal;
animation: breathing 7s ease-out infinite normal;
-webkit-font-smoothing: antialiased;
animation-delay: 1s;
opacity: 1;
}
/* breathing animation  */
@keyframes breathing-hero {
  0% {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }

  25% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }

  75% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}

.breathing-hero {
-webkit-animation: breathing-hero 7s ease-out infinite normal;
animation: breathing-hero 7s ease-out infinite normal;
-webkit-font-smoothing: antialiased;
animation-delay: 1s;
opacity: 1;
}



  /* Elevated title  */

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .elevated {
    position: relative;
    display: block;
    transform: translateY(6rem);
    animation: up 600ms linear forwards;
    z-index: 1;
    text-shadow: 0px 1px 1px rgba(255,255,255,1);
  }
  .elevated::before,
  .elevated::after {
      position: absolute;
      content: '';
      width: 0px;
      height: 1px;
      left: 0;
      background-color: rgba(0,0,0,0.2);
      z-index: -1;
    }

    /* .elevated::before {
      top: 1.4rem;
      animation: draw 500ms linear 1s forwards;
    }

    .elevated::after {
      bottom: 0.4rem;
      animation: draw 500ms linear 1s forwards;
    } */

  .elevated-container {
    font-size: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 0.4rem;
  }

  @keyframes up {

    100% {
      transform: translateY(0);
    }
  }

  @keyframes draw {

    100% {
      width: 100%;
    }
  }


  /* background movement  */

  /*
  <div class="animate-move-bg">
	  <div class="background">
    </div>
	  <div class="mask-container">
	  </div>
  </div> */

  .animate-move-bg {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 70vh; */
    background-blend-mode: darken;
    overflow: hidden;
  }

  .animate-move-bg .background {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: url('../image/content-image/about-us-bg.png');
    background-size:  100% ;
    background-position: center center;
    animation: move 30s infinite linear;
    will-change: transform;
  }

  .animate-move-bg .mask-container {
    position: relative;
    display: block;
    width: 100%;
  }

  @keyframes move {

    25% {
      transform: translateY(50px) translateX(30px) scale(1.2) ;
    }

    50% {
      transform: translateY(0px) translateX(50px) scale(1.2);
    }

    75% {
      transform: translateY(50px) translateX(0) scale(1.2);
    }

  }


  /* mouse movement  */

  .mouse::after {
    content: "";
    position: absolute;
    top: -200px;
    right: 0;
    bottom: -400px;
    left: -100px;
    background: linear-gradient(217deg, rgba(255,255,255,0), rgba(255,255,255,0) 35%, rgba(255,255,255,0.25) 45%, rgba(255,255,255,.25) 50%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
    transform: translateX(var(--sheenX)) translateY(var(--sheenY));
  }
