@media (min-width: 768px) {
    .operation-container {
  margin: 0px !important;
  margin-left: -12px !important;
  margin-right: -12px !important;
    }
}

.operation-container {
  min-width: 190px;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-content: center;
  align-items: flex-start;
  overflow: hidden;
  
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}


.operation {
    width: 215px;
    height: 400px;
    background-color: white;
    cursor: pointer;
    display: inline-block;

    line-height: 1.2em;
  -moz-box-shadow: 1px 1px 1px #e2e2e2;
  box-shadow: 1px 1px 1px #e2e2e2;
  margin: 12px;
  padding: 8px 12px 12px 12px;
  background-color: white;
  color: #666666;
  position: relative;
  text-align: left;
}

.operation .name {
      font-size: 18px;
  line-height: 1.2;
  color: #666666;
  cursor: pointer;
  display: inline-block;
  margin: 0 0 10px 0;
  max-width: 90%;
  height: 68px;
  overflow: hidden;
  padding-top: 15px;
}

.operation .description {
    font-size: 14px;
    line-height: 17px;
    overflow: hidden;
    padding-top: 10px;
    color: #666666;
    text-decoration: none;
}

.operation img {
    height: 150px;
    width: 200px;
    -moz-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}