.btnPrimary
{
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background-color: #2a7f9c;
  color: white;
  border: 2px solid #2a7f9c;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  max-width: 600px;
  min-width: 150px;
  height: auto;
  margin: 10px auto;
  word-wrap: break-word;
}

.btnPrimary:hover {
  background-color: white;
  color: #2a7f9c;
  transition: 0.15s;
text-decoration: none;

}
.btnPrimaryAlt
{
  padding: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background-color: white;
  color: #2a7f9c;
  border: 2px solid #2a7f9c;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  max-width: 600px;
  min-width: 150px;
  height: auto;
  margin: 10px auto;
  word-wrap: break-word;
}

.btnPrimaryAlt:hover {
  background-color: #2a7f9c;
  color: white;
  transition: 0.15s;
text-decoration: none;

}
.btnSecondary
{
    padding: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background-color: #860000;
  color: white;
  border: 2px solid #860000;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  max-width: 600px;
  min-width: 150px;
  height: auto;
  margin: 10px auto;
  word-wrap: break-word;
}

.btnSecondary:hover {
  background-color: white;
  color: #860000;
  transition: 0.15s;
text-decoration: none;
}
.btnSecondaryAlt
{
    padding: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background-color: white;
  color: #860000;
  border: 2px solid #860000;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  max-width: 600px;
  min-width: 150px;
  height: auto;
  margin: 10px auto;
  word-wrap: break-word;
}

.btnSecondaryAlt:hover {
  background-color: #860000;
  color: white;
  transition: 0.15s;
text-decoration: none;
}
.card
{

  margin: auto;
  display: flex;
  justify-content: center;
}

.card-container {
  margin: 25px;
  height: auto;
  min-width: 150px;
  max-width: 700px;
  width: 85%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
 .card-container .card-image {
  width: 100%;
  background-color: aliceblue;
}

.card-container .card-text {
  color: black;
  padding: 10px 20px;
  height: auto;
  background-color: aliceblue;
  border-radius: 50px;
  overflow: hidden;
}

.card-container:hover {
  margin-top: 20px;
  transition: .35s;
  margin-bottom: 30px;
}

.card-container:hover .card-image {
  background-color: #006B8C;
  transition: 0.15s;
}

.card-container:hover .card-text {
    background-color: #006B8C;
  color: white;
  transition: 0.15s;

}
.Image_wiggle
{

.Image_wiggle {
display: block;
  }

  
.Image_wiggle img:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite; 
}

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

}
.lcwell
{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: aliceblue;
    border-left: 8px solid #006b8c;
    border-radius: 5px;
    box-shadow: 1px 1px 5px lightgray;
    margin: 15px;
    width: 90%;
    height: auto;
    display: block;
}
.raaphcNav
{

  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  margin: 0; 
  background: transparent;
  text-align: center;
}

.raaphcNav a {
  text-decoration: none;
  display: block;
  padding: 1em;
  color: #006B8C;
  font-weight: 700;
  border-bottom: 3px solid transparent;
}

.raaphcNav a:hover {
  background: transparent;
  border-bottom: 3px solid #860000;
  color: #860000;
  transition: .2s ease-in-out;
}

@media all and (max-width: 800px) {
  .raaphcNav {
    justify-content: space-around;
  }
}

@media all and (max-width: 600px) {
  .raaphcNav {
    flex-flow: column wrap;
    padding: 0;
  }
  .raaphcNav a { 
    text-align: center; 
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255,0.3); 
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); 
  
}
