span.gold {
    color: gold;
    font-weight: 900;
}

span.gold {
  animation-name:textglow;
  animation-duration:1s;
  animation-iteration-count:infinite;
  animation-direction:alternate;
}

.title-shadow .sppb-addon-title{
text-shadow: 2px 6px 10px rgba(18, 109, 194, 1);
}


@keyframes textglow{
  from{text-shadow:0px 0px 5px #ffffff52,0px 0px 5px #fdffe8;}
  to{text-shadow:0px 0px 15px #ffcf1ea3,0px 0px 10px #fcffe466;}
}

/*btn*/
.sppb-btn.sppb-btn-default.ilmuglow {
    background: #141e3e;
    border:1px solid #ffffff;
    padding: 20px!important; 
    background-image: linear-gradient(to right, #000046 0%, #1CB5E0  51%, #000046  100%);
	transition: 0.5s;
	background-size: 200% auto;           
	box-shadow: 0 0 20px #eee; 
    -webkit-animation: ilmuglow 1s ease-in-out infinite alternate;
    -moz-animation: ilmuglow 1s ease-in-out infinite alternate;
    animation: ilmuglow 1s ease-in-out infinite alternate;
}


.sppb-btn.sppb-btn-default.ilmuglow:hover {
	background-image: linear-gradient(to right, #000046 0%, #1CB5E0  51%, #000046  100%);
	background-position: right center; /* change the direction of the change here */
	color: #fff;
	text-decoration: none;
}

@-webkit-keyframes ilmuglow {
  from {
	box-shadow: 0 0 10px #0098db, 0 0 11px #006ffe, 0 0 12px #0098db, 0 0 12px #006ffe, 0 0 13px #0098db, 0 0 14px 0098db00e6ff, 0 0 15px #006ffe;
  }
  to {
    box-shadow: 0 0 10px #3b9dd9, 0 0 11px #3bcbd9, 0 0 12px #3b9dd9, 0 0 12px #3bcbd9, 0 0 13px #3b9dd9, 0 0 14px #3b9dd9, 0 0 15px #3bcbd9;
  }
}