.box {
  border: 2px solid #0d2a4a;
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 340px;
  border-radius: 5px;
}

.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(108,32,0,0.8);
}

@media (max-width: 575px) {
  .box:hover:after {
    background-color: transparent;
  }
}

.box img {
  width: 100%;
  height: auto;
  max-width: 340px;
}

.box .title {
  width: 100%;
  padding: 14px 10px;
  margin: 0;
  position: absolute;
  top: 80%;
  left: 0;
  font-size: 18px;
  color: #fff;
  background-color: rgba(13,42,74,0.7);
  z-index: 1;
  transition: all 0.5s ease 0s;
}

@media (max-width: 575px) {
  .box .title {
    display: none;
  }
}

.box:hover .title {
  top: 30%;
}

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

@media (max-width: 575px) {
  .box .box-content {
    display: none;
  }
}

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

.box .box-content img {
  width: 30%;
}

@media (min-width: 768px) {
  .box .box-content img {
    width: 50%;
  }
}

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

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

.box .description {
  font-size: 14px;
  color: #fff;
  line-height: 24px;
  position: relative;
  top: 28%;
}

@media (min-width: 576px) and (max-width: 767px) {
  #description-special {
    line-height: 20px;
  }
}

@media (min-width: 768px) {
  .box .description {
    font-size: 17px;
    top: 25%;
  }
}

@media (min-width: 992px) {
  .box .title {
    font-size: 22px;
    padding: 10px;
  }
}

@media (min-width: 576px) {
  .box {
    margin-bottom: 20px;
  }
}

.mobile-title {
  font-size: calc(9px + 1.5vw);
  margin-bottom: 15px;
  padding: 5px 0 0 0;
  text-decoration: none;
  color: #c05843;
}

.mobile-title:hover {
  color: #b1422c;
}

.mobile-title-cont:hover a {
  text-decoration: none;
}

@media (min-width: 576px) {
  .mobile-title {
    display: none;
  }
}

