.box {
  font-family: 'Roboto Condensed';
  position: relative;
  overflow: hidden;
  max-width: 310px;
  width: 100%;
  background: #000;
  color: #000;
  border: 2px solid #000;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

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

.box * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.box img {
  max-width: 100%;
  position: relative;
  display: block;
}

.box:before {
  display: none;
}

@media (min-width: 992px) {
  .box:before {
    display: block;
    position: absolute;
    content: '';
    height: 100%;
    width: 85%;
    z-index: 1;
    left: -20%;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: skewX(-30deg) translateX(-80%);
    transform: skewX(-30deg) translateX(-80%);
    -webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.5);
  }
}

.box .caption {
  display: none;
}

@media (min-width: 992px) {
  .box .caption {
    display: block;
    padding-left: 15px;
    position: absolute;
    left: 0;
    top: 20%;
    width: 61%;
    z-index: 1;
    opacity: 0;
    transition: all .3s;
  }
}

.box .caption h3, .box .caption p {
  margin: 0;
  text-align: left;
  padding: 0;
  width: 100%;
}

.box .caption h3 {
  font-size: 18px;
  font-weight: 700;
  width: 235px;
}

.box .caption-bottom {
  position: relative;
  font-size: calc(3px + 3vw);
  margin-bottom: 6px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  z-index: 1;
}

@media (min-width: 576px) {
  .box .caption-bottom {
    font-size: 21px;
  }
}

@media (min-width: 768px) {
  .box .caption-bottom {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .box .caption-bottom {
    font-size: 24px;
  }
}

.box .caption p {
  font-weight: 400;
  font-size: 17px;
  font-family: 'Roboto Condensed';
}

.box .position {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 7px 0px 0px 0px;
  opacity: 1;
  color: #fff;
  background: #000;
  border-top: solid 1px #000000;
}

@media (min-width: 992px) {
  .box .position {
    padding: 8px 15px 0px 0px;
  }
}

.box.red .position {
  background: #bc0000;
  box-shadow: 0px -5px 15px rgba(0,0,0,0.5);
}

@media (min-width: 992px) {
  .box:hover img {
    opacity: .6;
  }
}

.box:hover .caption, .box.hover .caption {
  opacity: 1;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  transition: all .5s;
}

.box:hover:before, .box.hover:before {
  -webkit-transform: skewX(-30deg) translateX(0px);
  transform: skewX(-30deg) translateX(0px);
}

.box .icon {
  display: none;
}

.touch-icon {
  position: absolute;
  z-index: 1;
  margin: 5px;
  width: 30px;
  height: 30px;
  background-color: #bc0000;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .box .icon {
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 990;
    opacity: .4;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}

.box:hover .icon {
  left: 210px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* Mobile Description Styling */

.mobile-description {
  font-family: 'Roboto Condensed';
  font-size: 16px;
  line-height: 1.4;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2px;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .mobile-description {
    font-size: 17px;
  }
}

.toggle-link {
  font-family: 'Roboto Condensed';
  font-size: 16px;
  display: block;
  margin-top: 0px;
  margin-bottom: 15px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3px;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.toggle-link:focus, .toggle-link:active, .toggle-link:hover {
  text-decoration: underline;
  box-shadow: none;
}

