.content_img {
  position: relative;
  width: 380px;
  height: 260px;
  float: left;
  margin-right: 12px;
  margin-bottom: 12px;
  margin: 10px;
  border: solid #363b56 3px;
}

.content_img .img-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content_img div {
  position: absolute;
  color: white;
  font-weight: 900;
  font-size: 2em;
  opacity: 0;
  visibility: hidden;
  /*-webkit-transition: visibility 0s, opacity 0.5s linear;*/
  /*transition: visibility 0s, opacity 0.5s linear;*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content_img .meta {
  /* color: whitesmoke; */
}

.content_img .meta-broker {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* color: white; */
  /* font-weight: 900; */
  /* font-size: 2em; */
  width: 85%;
  opacity: 0;
  visibility: hidden;
  /* margin-top: 50px; */
  color: whitesmoke;
  font-size: 12px;
  font-weight: 400;
  justify-content: center;
  text-align: center;
  /* border: solid 1px grey; */
}

.content_img:hover {
  cursor: pointer;
}


.content_img:hover div,
.content_img:focus div {
  visibility: visible;
  opacity: 1.0;
}

.content_img:hover .meta-broker,
.content_img:focus .meta-broker {
  visibility: visible;
  opacity: 1.0;
}

.content_img:hover .img-media {
  opacity: 0.2;
}

@media(max-width:768px) {
  .content_img {
    width: 350px;
    height: 240px;
    /*object-fit: contain;*/
    background-repeat: no-repeat;
    background-size: 350px 240px;
    margin: 0;
    margin-bottom: 10px;
  }
}
