/*spin-animation*/
.flip-animation .et_pb_image_wrap > img {
    -webkit-animation-name: spinner;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-name: spinner;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
@keyframes spinner {
    0% {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    50% {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
    100% {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg);
    }
}
/*spin-animation*/

/*fade-in-left*/
.fadeInLeftShort.animation-complete {
    -webkit-animation-name: fadeInLeftShort;
    animation-name: fadeInLeftShort;
}
.fadeInLeftShort {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
}
@keyframes fadeInLeftShort {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/*fade-in-left*/

/*fade-in-right*/
.fadeInRightShort.animation-complete {
    -webkit-animation-name: fadeInRightShort;
    animation-name: fadeInRightShort;
}
.fadeInRightShort {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
@keyframes fadeInRightShort {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }

}
/*fade-in-right*/
/*fade-in-godown*/
.fadeInDownShort.animation-complete {
    -webkit-animation-name: fadeInDownShort;
    animation-name: fadeInDownShort;
}
.fadeInDownShort {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}
.logo-continer .fadeInDownShort {
    opacity: 1;
}
@keyframes fadeInDownShort {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*fade-in-godown*/
/*fade-in-growIn*/
.growIn.animation-complete {
    -webkit-animation-name: growIn;
    animation-name: growIn;
}
.growIn {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0;
}
@keyframes growIn {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/*fade-in-growIn*/
/*fadeInUpShort*/
.fadeInUpShort.animation-complete {
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort;
}
.fadeInUpShort {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}
@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*fadeInUpShort*/
.slow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

}
.delay-500 {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.delay-1000 {
    -webkit-animation-delay: 1.0s;
    -moz-animation-delay: 1.0s;
    -o-animation-delay: 1.0s;
    animation-delay: 1.0s;
}
.delay-1500 {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
.delay-2000 {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    -o-animation-delay: 2.0s;
    animation-delay: 2.0s;
}
.delay-3000 {
    -webkit-animation-delay: 3.0s;
    -moz-animation-delay: 3.0s;
    -o-animation-delay: 3.0s;
    animation-delay: 3.0s;
}


.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

/*fade-in-right-without-opacity*/
.fadeInRightShortop.animation-complete {
    -webkit-animation-name: fadeInRightShortop;
    animation-name: fadeInRightShort;
}
.fadeInRightShortop {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
@keyframes fadeInRightShortop {
    0% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }

}
/*fade-in-right-without-opacity*/

ul#menu-popup-left-menu li:first-child a {
    -webkit-animation: color-change 1s infinite;
    -moz-animation: color-change 1s infinite;
    -o-animation: color-change 1s infinite;
    -ms-animation: color-change 1s infinite;
    animation: color-change 1s infinite;
    transition: all 500ms linear;
    -webkit-transition: all 500ms ease-in-out;
}

@-webkit-keyframes color-change {
    0% { color: white; }
    100% { color: #dfab60; }
}
@-moz-keyframes color-change {
    0% { color: white; }
    100% { color: #dfab60; }
}
@keyframes color-change {
    0% { color: white; }
    100% { color: #dfab60; }
}







