/*On hover Image*/

.media {
  display: inline-block;
  position: relative;
  vertical-align: top;
  transition: all .2s ease-in-out;
}
.media:hover {
  transform: scale(1.04);
    z-index: 111;
}

.media__image { display: block; }

.media__body {
  background: rgba(238,238,238,0.9);
  bottom: 0;
  color: rgba(93, 52, 52, 0.9);
  font-size: 1em;
  left: 0;
  opacity: 0;
  overflow: hidden;
  padding: 3em 3em;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.media__body:hover { opacity: 1; }

.media__body:after,
.media__body:before {
  /*border: 1px solid rgba(93, 52, 52, 0.9);*/
  bottom: 1em;
  content: '';
  left: 1em;
  opacity: 0;
  position: absolute;
  right: 1em;
  top: 1em;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: 0.6s 0.2s;
  transition: 0.6s 0.2s;
}

.media__body:before {
  border-bottom: none;
  border-top: none;
  left: 2em;
  right: 2em;
}

.media__body:after {
  border-left: none;
  border-right: none;
  bottom: 2em;
  top: 2em;
}

.media__body:hover:after,
.media__body:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.media__body h2 { margin-top: 16px; font-size: 20px;font-family: Belmar Normal;}

.text_div h2 { margin-top: 16px; font-size: 40px; color: rgba(93, 52, 52, 0.9);text-align: center;}

.media__body p { margin-bottom: 1.5em; }

.media:nth-child(2) .media__body { background: rgba(238 ,238 ,238 ,0.9); }