@import url(https://fonts.googleapis.com/css?family=Oswald|Roboto|Slabo+27px);

.route-wrapper {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.route-wrapper .route-card {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  max-width: 300px;
  margin: 15px;
  background: #fff;
  border: 2px solid #008B8B;
  border-radius: 25px;
  text-align: center;
}
.route-wrapper .route-card:hover {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
}
.route-wrapper .route-card:hover .card-img img {
  opacity: 1.0;
}
.route-wrapper .route-card .card-img {
  position: relative;
  text-align: center;
  background: #545454;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.route-wrapper .route-card .card-img img {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  max-height: 180px;
  width: 100%;
  margin-bottom: -4px;
  border-bottom: 4px solid #008B8B;
  opacity: 0.8;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.route-wrapper .route-card .card-img:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border-top: solid 10px #008B8B;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
}
.route-wrapper .route-card .card-img h1 {
  position: absolute;
  margin: 0;
  font-size: 42px;
  bottom: 10px;
  width: 100%;
  color: #fff;
  font-family: "Slabo 27px", serif;
  text-align: center;
}
.route-wrapper .route-card .card-details {
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  color: #7a7a7a;
}
.route-wrapper .route-card .card-details span {
  padding: 0 30px;
}
.route-wrapper .route-card .card-details span i {
  margin-right: 5px;
}
.route-wrapper .route-card .card-text {
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  line-height: 22px;
  color: #7a7a7a;
}
.route-wrapper .route-card .read-more {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  width: auto;
  text-align: center;
  background: #008B8B;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
  border-radius: 5px;
}
.route-wrapper .route-card .read-more:hover {
  background: #006666;
}
.route-wrapper .route-card a:link { 
  text-decoration: none; 
} 
.route-wrapper .route-card a:visited { 
  text-decoration: none; 
} 
.route-wrapper .route-card a:hover { 
  text-decoration: none; 
} 
.route-wrapper .route-card a:active { 
  text-decoration: none; 
}