/*============================================================================
  #Override Stylesheet
  #Add Custom Styles Here
==============================================================================*/
.btn {
  border-radius: 50px;
  border: none; }

.btn:hover {
  background: linear-gradient(45deg, #213363, #e6007e) !important;
  background-color: linear-gradient(45deg, #213363, #e6007e) !important;
  background-size: 200% 200%;
  -webkit-animation: Gradient 5s ease infinite;
  -moz-animation: Gradient 5s ease infinite;
  animation: Gradient 5s ease infinite;
  box-shadow: 0px 12px 18px 6px rgba(229, 0, 125, 0.09); }

@-webkit-keyframes Gradient {
  0% {
    background-position: 10% 0%; }
  50% {
    background-position: 91% 100%; }
  100% {
    background-position: 10% 0%; } }
@-moz-keyframes Gradient {
  0% {
    background-position: 10% 0%; }
  50% {
    background-position: 91% 100%; }
  100% {
    background-position: 10% 0%; } }
@keyframes Animation {
  0% {
    background-position: 10% 0%; }
  50% {
    background-position: 91% 100%; }
  100% {
    background-position: 10% 0%; } }
#section-footer::before {
  display: block;
  content: "";
  background: linear-gradient(45deg, #213363, #e6007e);
  background-color: linear-gradient(45deg, #213363, #e6007e);
  background-size: 200% 200%;
  -webkit-animation: Gradient 5s ease infinite;
  -moz-animation: Gradient 5s ease infinite;
  animation: Gradient 5s ease infinite;
  height: 10px; }
