.box {
  border: 1px solid #000;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 320px;
  overflow: hidden;
}

.box:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: all 0.5s ease 0s;
}

.box:hover:after {
  background-color: rgba(75,5,0,0.4);
}

@media (min-width: 768px) {
  .box:hover:after {
    background-color: rgba(44,2,0,0.8);
  }
}

.box img {
  width: 100%;
  height: auto;
}

.box .logo {
  width: 120px;
}

.box .title {
  width: 100%;
  padding: 7px 3px;
  margin: 0;
  position: absolute;
  font-size: calc(13px + .3vw);
  font-weight: 700;
  color: #fff;
  background-color: rgba(0,0,0,0.7);
  z-index: 1;
  transition: all 0.5s ease 0s;
  border-radius: 0;
  bottom: 0;
}

@media (min-width: 576px) {
  .box .title {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .box .title {
    width: 90%;
    border-radius: 4px;
    top: 83%;
    font-size: 22px;
    padding: 10px;
    bottom: initial;
  }
}

@media (min-width: 992px) {
  .box:hover .title {
    top: 45%;
  }
}

.box .box-content {
  width: 90%;
  height: 92%;
  border: 1px solid #fff;
  position: absolute;
  top: 4%;
  left: 5%;
  padding: 15px;
  opacity: 0;
  z-index: 1;
  transform: scale(0);
  transition: all 0.5s ease 0s;
}

.box:hover .box-content {
  opacity: 1;
  transform: scale(1);
}

.box .box-content:hover {
  box-shadow: 0 0 20px #000;
}

.box .description {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  position: relative;
  bottom: -22%;
}

@media (min-width: 992px) {
  .box .description {
    font-size: 16px;
  }
}

