         @charset "UTF-8";
     @media screen and (min-width: 0px) {
         .kc-animated {
             opacity: 0;
         }
         .animated {
             -webkit-animation-duration: 1.5s;
             animation-duration: 1.5s;
             -webkit-animation-fill-mode: both;
             animation-fill-mode: both: -webkit-animation-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1) !important;
             /* Safari 4.0 - 8.0 */
             animation-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1) !important;
             -webkit-animation-delay: 0.2s;
             /* Safari 4.0 - 8.0 */
             animation-delay: 0.1s;
         }
         .animated.infinite {
             -webkit-animation-iteration-count: infinite;
             animation-iteration-count: infinite
         }
         /*/////////HIDE BEFOR ANIMATION USE ON IMAGE CLASS/////////*/
         .hidebeforeanimation {
             animation: 2.0s ease 0s normal forwards 1 fadein;
             -webkit-animation: 2.0s ease 0s normal forwards 1 fadein;
             opacity: 1;
             animation-iteration-count: 1 !important;
         }
         @keyframes fadeIn {
             from {
                 opacity: 0.0;
             }
          
             to {
                 opacity: 1.0
             }
         }
         @-webkit-keyframes fadeIn {
             from {
                 opacity: 0.0;
             }
          
             to {
                 opacity: 1.0
             }
         }
         
         .fadeIn {
             -webkit-animation-name: fadeIn;
             animation-name: fadeIn
         }
         
         /*//////// CUSTOMIZED KC ANIMATION slideInUp ///////////*/
         @-webkit-keyframes slideInUp {
             from {
                 -webkit-transform: translate3d(0, 15%, 0);
                 transform: translate3d(0, 15%, 0);
                 visibility: visible;
                 opacity: 0.0;
                 filter: alpha(opacity=0);
                 /* For IE8 and earlier */
             }
             to {
                 -webkit-transform: translate3d(0, 0, 0);
                 transform: translate3d(0, 0, 0);
                 opacity: 1.0;
                 filter: alpha(opacity=100);
                 /* For IE8 and earlier */
             }
         }
         @keyframes slideInUp {
             from {
                 -webkit-transform: translate3d(0, 15%, 0);
                 transform: translate3d(0, 15%, 0);
                 visibility: visible;
                 opacity: 0.0;
                 filter: alpha(opacity=0);
                 /* For IE8 and earlier */
             }
             to {
                 -webkit-transform: translate3d(0, 0, 0);
                 transform: translate3d(0, 0, 0);
                 opacity: 1.0;
                 filter: alpha(opacity=100);
                 /* For IE8 and earlier */
             }
         }
         .slideInUp {
             -webkit-animation-name: slideInUp;
             animation-name: slideInUp
         }
         /*///////SHAKE ANIMATION IS REVEAL ANIMATION FROM LEFT TO RIGHT///////*/
         @keyframes shake {
             0% {
                 -webkit-clip-path: inset(0 100% 0 0);
                 clip-path: inset(0 100% 0 0);
                 opacity: 0;
             }
             100% {
                 -webkit-clip-path: inset(0 0 0 0);
                 clip-path: inset(0 0 0 0);
                 opacity: 1;
             }
         }
         .shake {
             width: max-content;
             -webkit-animation-name: shake;
             animation-name: shake;
             -webkit-animation-delay: 0.1s;
             animation-delay: 0.1s;
             -webkit-animation-iteration-count: 1;
             animation-iteration-count: 1;
             -webkit-animation-duration: 1000ms;
             animation-duration: 1000ms;
             -webkit-animation-fill-mode: both;
             animation-fill-mode: both;
             -webkit-animation-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
             animation-timing-function: cubic-bezier(0.1, 0.57, 0.1, 1);
         }