@keyframes slideInRight {
    0% {
      transform: translateX(20%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateX(0);
      opacity:1;
    }
  }
  @keyframes slideInLeft {
    0% {
      transform: translateX(-20%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateX(0);
      opacity:1;
    }
  }@keyframes fadeIn {
    from {
      /* transform: translateX(-40%) scale(1); */
      opacity:0;
    }
    to {
      /* transform: translateX(0) scale(1); */
      opacity:1;
    }
  }
  @keyframes slideInTop {
    0% {
      transform: translateY(-100%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateY(0);
      opacity:1;
    }
  }

  @keyframes slideInTopTitle {
    0% {
      transform: translateY(-30%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateY(0);
      opacity:1;
    }
  }


  @keyframes slideInTitle {
    0% {
      transform: translateY(-50%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateY(0);
      opacity:1;
    }
  }

   @keyframes slideInBottom {
    0% {
      transform: translateY(10%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateY(0);
      opacity:1;
    }
  }
  @keyframes slideInBottomTitle {
    0% {
      transform: translateY(100%);
      opacity:0;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translateY(0);
      opacity:1;
    }
  }
  
  @keyframes slideInBottomCenter {
    0% {
      transform: translate(-50%, 100%);
      opacity:0;
      display:block;
    }
    10% {
      opacity:0;
    }
    100% {
      transform: translate(-50%, 0);
      opacity:1;
      display:block;
    }
  }

  @keyframes slideInBottomCenterReverse {
    0% {
      
      transform: translate(-50%, 0);
      opacity:1;
      display:block;
    }
    90% {
      opacity:0;
    }
    100% {
      transform: translate(-50%, 100%);
      opacity:0;
      display:none;
    }
  }

  .slide-in-right {
    animation: slideInRight 1s ease-in-out forwards;
  }
  .fade-in {
    animation: fadeIn 1s ease-in-out forwards;
  }
  .slide-in-left {
    animation: slideInLeft 1s ease-in-out forwards;
  }
  .slide-in-top {
    animation: slideInTop 0.75s ease-in-out forwards; 
  }
  .slide-in-top-title {
    animation: slideInTopTitle 0.75s ease-in-out forwards; 
  }
  .slide-in-title {
    animation: slideInTitle 1.25s ease forwards; 
  }

  .slide-in-bottom {
    animation: slideInBottom 0.75s ease-in-out forwards; 
  }
  .slide-in-bottomTitle {
    animation: slideInBottomTitle 0.75s ease-in-out forwards; 
  }

  .slide-in-bottom-center {
    animation: slideInBottomCenter 0.35s ease forwards; 
  }

  .slide-in-bottom-center-reverse {
    animation: slideInBottomCenterReverse 0.35s ease forwards; 
  }
  .backgroundGlow{
    transition:0.25s !important;
  }

    .backgroundGlow:hover{
      box-shadow: 0 0 50px #FFFFFF !important;
  }


  .card{
    transition:0.25s !important;
  }

    .card:hover{
      box-shadow: 0 0 50px #FFFFFF !important;
  }



  body::-webkit-scrollbar {
    display: none;
  }