.a-glow {
    background-color: #1e6292;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    /*font-family: 'Hack';*/
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 60px 10px 60px;
    text-align: center;
    text-decoration: none;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.a-glow:hover {
    background-color: #1e6292;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: none;
    color: white;
    cursor: pointer;
    display: inline-block;
    /*font-family: 'Hack';*/
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 60px 10px 60px;
    text-align: center;
    /*text-decoration: underline;*/
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

@-webkit-keyframes glowing {
    0% {  -webkit-box-shadow: 0 0 3px #006738; }
    50% { -webkit-box-shadow: 0 0 40px #006738 }
    100% {  -webkit-box-shadow: 0 0 3px #006738; }
}

@-moz-keyframes glowing {
    0% {  -moz-box-shadow: 0 0 3px #006738; }
    50% {  -moz-box-shadow: 0 0 40px #006738 }
    100% {  -moz-box-shadow: 0 0 3px #006738; }
}

@-o-keyframes glowing {
    0% { box-shadow: 0 0 3px #006738; }
    50% {  box-shadow: 0 0 40px #006738 }
    100% {  box-shadow: 0 0 3px #006738; }
}

@keyframes glowing {
    0% {  box-shadow: 0 0 3px #006738; }
    50% {  box-shadow: 0 0 40px #006738 }
    100% {  box-shadow: 0 0 3px #006738; }
}

/* =======================================================
   Smooth Hover Animation for Quick Menu Links
   Color: #002b49 + Shadow + Lift Up
======================================================= */

/* All buttons and menu links */
.content a,
p a {
  display: block;
  transition: all 0.25s ease;
  border-radius: 12px;
}

/* Hover animation */
.content a:hover,
p a:hover {
  transform: translateY(-4px);
  background: #002b49 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 20px rgba(0, 43, 73, 0.35);
}

/* Text inside link also turns white */
.content a:hover span,
.content a:hover strong {
  color: #ffffff !important;
}

/* Click effect */
.content a:active,
p a:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 43, 73, 0.45);
}

.pkp_block {
    padding: 2.143rem 1.43rem;
    font-size: 1rem;
    line-height: 1.43rem;
    margin-top: -30px;
}