.container1 {
  margin: 0 auto;
  width: 100%;
  height: 750px;
  background: #F0F0ED;
  border-radius: 5px;
  position: relative;
}

.hero {
  width: 100%;
  height: 225px;
  margin: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: darkred;
  z-index: -1;
  transform: skewY(-2.2deg);
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
}

.cover {
  position: absolute;
  top: 5px;
  z-index: 2;
}

.details {
  padding: 10px 0 0 10px;
}
.details .title1 {
  color: white;
  font-size: 20px;
  margin-bottom: 13px;
  position: relative;
  text-align: center;
}
.details .title1 span {
  position: absolute;
  top: 3px;
  margin-left: 12px;
  background: #C4AF3D;
  border-radius: 5px;
  color: #544C21;
  font-size: 18px;
  padding: 0px 4px;
}
.details .title2 {
  color: whitesmoke;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}

.description {
  bottom: 0px;
  height: 200px;
  font-size: 14px;
  line-height: 26px;
  color: black;
}

.column1 {
  padding-left: 20px;
  padding-top: 120px;
  width: 300px;
  float: left;
  text-align: center;
}

.tag {
  background: white;
  border-radius: 10px;
  padding: 3px 8px;
  font-size: 14px;
  margin-right: 4px;
  line-height: 35px;
  cursor: pointer;
}

.tag:hover {
  background: #ddd;
}

.column2 {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  margin-left: 20px;
  float: left;
}

