html,body {
  font-family: 'Raleway', sans-serif;
  background: #222;
  color: #aaa
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border-radius: 5px;
  margin-bottom: 20px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
}
.card.show {
  transform: translateY(0);
  opacity: 1;
}
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
.card-title {
  a:link { text-decoration: none; }
  a:visited { text-decoration: none; }
  a:hover { text-decoration: none; }
  a:active { text-decoration: none; }
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}
.card-text {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
}
.btn {
  border: none;
  background: linear-gradient(to right, #28a745, #218838);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.btn:hover {
  background: linear-gradient(to right, #218838, #28a745);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
  #navbarcontact {
    justify-content: space-between;
    color:antiquewhite;
}
#navbarcontact a {
    align-items: center;
    text-align:center;
    display: inline-block;
    position: relative;
    color: #d82b2b;
}
#navbarcontact  a:hover {
  color: #7ccee9;
  text-decoration: none;
}
#navbarcontact a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color:#ffffff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

#navbarcontact a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
