.shortcut-links {
  display: flex;
  justify-content: space-between;
}

.shortcut-links a {
  background-color: #F2F6F4;
  color: #125428;
  font-weight: bold;
  border-radius: 100px;
  width: 25%;
  font-size: 20px;
  padding: 15px;
  transition: .3s;
}

.shortcut-arrow-icon {
 width: 30px;
 height: 30px;
 background-color: #125428;
 color: #F2F6F4;
}

.shortcut-arrow-icon svg {
  width: 24px;
  height: 24px;
}

.shortcut-links a:hover {
    background-color: #125428;
    color: #F2F6F4;
}

.shortcut-links a:hover .shortcut-arrow-icon {
    transition: .3s;
    background-color: #F2F6F4;
    color: #125428;
}

.shortcut-links a:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .shortcut-links {
        flex-direction: column;
        align-items: center;
    }

    .shortcut-links a {
        width: 100%;
        font-size: 18px;
    }
}