



/*mine*/

        .animate-charcter
        {
          /* text-transform: uppercase;*/
          background-image: linear-gradient(
            -225deg,
            black 0%,
            blue 29%,
            yellow 67%,
            green 100%
          );
          background-size: auto auto;
          background-clip: border-box;
          background-size: 200% auto;
          color: green;
          background-clip: text;
          text-fill-color: transparent;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: textclip 2s linear infinite;
          display: inline-block;
              font-size: 60px;
              font-weight: 900;
        }
        
        @keyframes textclip {
          to {
            background-position: 200% center;
          }
        }


/*loader*/

.pageloader {
	background-color: #2c7be5;
	width: 100%;
	height: 100%;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	z-index: 1048;
	/*opacity: 0;*/
	display: block;
	position: fixed;
	-webkit-transition: all 0.3s ease-in-out 0;
	transition: all 0.3s ease-in-out 0;
}

div.pageloader {
	display: flex;
	align-items: center
}

.loader {
	display: inline-block;
	text-align: center;
	line-height: 86px;
	text-align: center;
	position: relative;
	padding: 0 48px;
	font-size: 48px;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
}

.loader:before,
.loader:after {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	background: currentColor;
	position: absolute;
	animation: load .7s infinite alternate ease-in-out;
	top: 0;
}

.loader:after {
	top: auto;
	bottom: 0;
}

@keyframes load {
	0% {
		left: 0;
		height: 43px;
		width: 15px;
		transform: translateX(0)
	}
	50% {
		height: 10px;
		width: 40px
	}
	100% {
		left: 100%;
		height: 43px;
		width: 15px;
		transform: translateX(-100%)
	}
}



.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  will-change: opacity, transform;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  -o-transition: all 0.7s ease-out;
  -ms-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect.waves-red .waves-ripple {
  background-color: rgba(244, 67, 54, 0.7);
}

.waves-effect.waves-yellow .waves-ripple {
  background-color: rgba(255, 235, 59, 0.7);
}

.waves-effect.waves-orange .waves-ripple {
  background-color: rgba(255, 152, 0, 0.7);
}

.waves-effect.waves-purple .waves-ripple {
  background-color: rgba(156, 39, 176, 0.7);
}

.waves-effect.waves-green .waves-ripple {
  background-color: rgba(76, 175, 80, 0.7);
}

.waves-effect.waves-teal .waves-ripple {
  background-color: rgba(0, 150, 136, 0.7);
}

/* Firefox Bug: link not triggered */
a.waves-effect .waves-ripple {
  z-index: -1;
}

