
@media (min-width: 40rem) {
/*  body {
    padding: 2rem;
  }*/
}
/*.container {
  display: flex;
  -webkit-display: box;
  -moz-display: box;
  -ms-display: flexbox;
  -webkit-display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}*/
.cards {
  display: flex;
  /*padding: 1rem;*/
  margin-bottom: 1rem;
  width: 100%;
}
@media (min-width: 40rem) {
  .cards {
    width: 100%;
  }
}
@media (min-width: 56rem) {
  .cards {
    width: 100%;
  }
}

.card-image img{
	width:100%;
}
.cards .card-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.5s;
  -webkit-transition: transform 0.5s; 
  text-align:center;
}
.cards .card-item:hover {
  cursor: pointer;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.cards .card-item:hover .card-image {
  opacity: 1;
}
.cards  {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
  line-height: 1.5em;
}
.card-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 15px 15px 5px 15px;
  line-height: 1.5em;
}
.cards .card-title {
	font-size: 20px;
    line-height: 1.1em;
    color: #056839;
    margin-bottom: 0.2em;
    text-align: center;
    margin-top: 0.2em;
}
.cards .card-image {
  /*height: 200px;*/
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px 6px 0px 0px;
  opacity: 0.91;
}

#right-menu{
	z-index:0;
}

@media (max-width: 812px) {
 .cards .card-title{
 	font-size:18px;
 }
}

