.purp-btn {
    right: 20px;
    position: absolute;
    border-radius: 5px;
    text-align: center;
    text-decoration: none !important;
    max-width: 120px;
    padding: 10px;
    display: block;
    background: #8031a7;
    color: #8031a7;
    color: #ffffff;
}
.purp-btn:hover {
    background: #ff5e10;
    color:#ffffff;
}
.blue-btn {
    right: 20px;
    position: absolute;
    border-radius: 5px;
    text-align: center;
    text-decoration: none !important;
    max-width: 120px;
    padding: 10px;
    display: block;
    background: #00629b;
    color: #8031a7;
    color: #ffffff;
}
.blue-btn:hover {
    background: #ff5e10;
    color:#ffffff;
}
/*----------------------------------Animated Purple Button-------------------------------*/
.edu-learn-more a, .hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #8031A7;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.edu-learn-more a:before, .hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F5F5F5;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.edu-learn-more a:hover, .edu-learn-more a:focus, .edu-learn-more a:active,
.hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  color: #ffffff !important;
}
.edu-learn-more a:hover:before, .edu-learn-more a:focus:before, .edu-learn-more a:active:before ,
.hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}