/*Menu Box Animation START*/
.MenuOpenAnimation {
  animation: MenuOpen 0.5s cubic-bezier(0.39, 0.58, 0.57, 1) forwards;
}

.MenuCloseAnimation {
  animation: MenuClose 0.4s cubic-bezier(0.39, 0.58, 0.57, 1) forwards;
}

.MenuOpenAnimation .nav-link-section{
  animation: MenuLinksOpen 0.3s linear forwards 0.3s;
}

.MenuCloseAnimation .nav-link-section{
  animation: MenuLinksColse 0.3s linear forwards;
}

@keyframes MenuOpen {
  0% {
    z-index: 99;
    opacity: 0.6;
    transform: scale(0.25); 
  }
  100% {
    z-index: 9999;
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes MenuClose {
  0% {
    z-index: 9999;
    opacity: 1;
    transform: scale(1);
  }
  75% {
    opacity: 0.6;
  }
  100% {
    z-index: 99;
    opacity: 0;
    transform: scale(0.25); 
  }
}

@keyframes MenuLinksClose {
  0% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(0); 
  }
}

@keyframes MenuLinksOpen {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-20px);
  }
}
/*Menu Box Animation END*/

/*Menu BTN Animation START*/
.MenuBtnShow {
  animation: MenuShow 0.3s forwards;
}

.MenuBtnHide {
  animation: MenuHide 0.3s forwards;
}

@keyframes MenuShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes MenuHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*Menu BTN Animation END*/

/*Banner arrow animation START*/
.BannerArrowAnimation {
  animation: BannerArrow 1s forwards;
}

@keyframes BannerArrow {
  0% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}

@media screen and (max-width:990px){
  .BannerArrowAnimation {
    animation: BannerArrow 2s forwards;
  }
  @keyframes BannerArrow {
    0% {
      right: 50%;
    }
    /*50% {
      right: 0%;
    }*/
    100% {
      right: -120%;
    }
  }
}

@media screen and (min-width:991px) and (max-width:1024px){
  .BannerArrowAnimation {
    animation: BannerArrow 1s forwards;
  }
  @keyframes BannerArrow {
    0% {
      right: 50%;
    }
    /*50% {
      right: 0%;
    }*/
    100% {
      right: -25%;
    }
  }
}

.NavAnimation {
  animation: TopNav 700ms forwards;
}

@keyframes TopNav {
  0% {
    opacity: 0;
    top: -150px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

@media screen and (max-width:1024px){
  @keyframes TopNav {
  0% {
      opacity: 0;
      top: -150px;
    }
    100% {
      opacity: 1;
      top: -20px;
    }
  }
}


@keyframes OpacityArrowAnimation {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
    transform: translateX(40px);
  }
}
/*Banner arrow animation END*/

/*Common Opacity Animation START*/
.hero-text-animation .hero-title {
  animation: BannerTxt 1s forwards;
  animation-delay: 0.8s;
}

.hero-text-animation .hero-para:first-child {
  animation: BannerTxt 1s forwards;
  animation-delay: 1s;
}

.hero-text-animation .hero-para:last-child {
  animation: BannerTxt 1s forwards;
  animation-delay: 1.2s;
}

@keyframes BannerTxt {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/*Common Opacity Animation END*/

/*line move start*/
@keyframes LineTopDownMove {
  0% {
    transform: translateX(-50%) translateY(-50%);
  }
  100% {
    transform: translateX(-50%) translateY(0%);
  }
}

@keyframes LineBottomTopMove {
  0% {
    transform: translateX(-50%) translateY(0%);
  }
  100% {
    transform: translateX(-50%) translateY(-50%);
  }
}

@keyframes LineLeftRightMove {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes LineRightLeftMove {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
/*line move end*/

@keyframes HEXAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}

/*animate css start*/
.animate__fadeInLeftSlight {
  opacity: 0;
  animation: fadeInLeftSlight 1s forwards;
}

@keyframes fadeInLeftSlight {
  from {
    opacity: 0;
    transform: translateX(-10px); /* Adjust this value for the desired distance */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate__fadeInRightSlight {
  opacity: 0;
  animation: fadeInRightSlight 1s forwards;
}

@keyframes fadeInRightSlight {
  from {
    opacity: 0;
    transform: translateX(10px); /* Adjust this value for the desired distance */
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate__fadeInTopSlight {
  opacity: 0;
  animation: fadeInTopSlight 1s forwards;
}

@keyframes fadeInTopSlight {
  from {
    opacity: 0;
    transform: translateY(10px); /* Adjust this value for the desired distance */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__fadeInBottomSlight {
  opacity: 0;
  animation: fadeInBottomSlight 1s forwards;
}

@keyframes fadeInBottomSlight {
  from {
    opacity: 0;
    transform: translateY(10px); /* Adjust this value for the desired distance */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*animate css end*/

/*Loader animation start*/
@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    filter: hue-rotate(45deg);
  }
}

@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    opacity: 1;
  }
}
/*Loader animation end*/