/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 15 2024 | 12:09:25 */
/* Banner */
#pgc-2-1-0 h1{
    line-height: 1em;
}
@media screen and (max-width: 600px) {
	#pgc-2-1-0 h1{
    line-height: 2em;
	}
}
/* R&D Link */
.panel-widget-style-for-94-3-1-0 strong {
    color: red;
}
/* Button */
.bnskyblue {
  background: rgb(105,101,166);
  background: linear-gradient(90deg, rgba(105,101,166,1) 0%, rgba(13,173,218,1) 29%, rgba(0,212,255,1) 100%);
  padding: 10px;
  width: 200px;
  height: 60px;
  border-radius: 25px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bolder;
  animation: bnbounce 3s infinite;
  cursor: pointer;
}
.bnblue {
  background: rgb(16,0,255);
  background: linear-gradient(90deg, rgba(16,0,255,1) 0%, rgba(46,57,255,1) 29%, rgba(0,212,255,1) 100%);
  padding: 10px;
  width: 200px;
  height: 60px;
  border-radius: 25px;
  font-weight: bolder;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  animation: bnbounce 5s infinite;
  cursor: pointer;
}
.bnred {
  background: rgb(255,0,0);
  background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(255,78,78,1) 29%, rgba(255,128,128,1) 100%);
  padding: 10px;
  width: 200px;
  height: 60px;
  border-radius: 25px;
  font-weight: bolder;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  animation: bnbounce 4s infinite;
  cursor: pointer;
}
.bnsky {
  background: rgb(0,202,255);
  background: linear-gradient(90deg, rgba(0,202,255,1) 0%, rgba(120,255,247,1) 38%, rgba(174,255,244,1) 100%);
  padding: 10px;
  width: 200px;
  height: 60px;
  border-radius: 25px;
  font-weight: bolder;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  animation: bnbounce 2s infinite;
  cursor: pointer;
}
.bngreen {
  background: rgb(4,215,0);
  background: linear-gradient(90deg, rgba(4,215,0,1) 0%, rgba(93,254,109,1) 38%, rgba(144,255,172,1) 100%);
  padding: 10px;
  width: 200px;
  height: 60px;
  border-radius: 25px;
  font-weight: bolder;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  animation: bnbounce 4s infinite;
  cursor: pointer;
}
@keyframes bnbounce {
  5%,
  50% {
    transform: scale(1);
  }
  10% {
    transform: scale(1);
  }
  15% {
    transform: scale(1);
  }
  20% {
    transform: scale(1) rotate(-5deg);
  }
  25% {
    transform: scale(1) rotate(5deg);
  }
  30% {
    transform: scale(1) rotate(-3deg);
  }
  35% {
    transform: scale(1) rotate(2deg);
  }
  40% {
    transform: scale(1) rotate(0);
  }
}