.synopsis_section .synopsis_container {
  padding: 25px 45px;
}

.synopsis_section .synopsis_container h2::before {
  background-color: #85310c;
}

.synopsis_section .synopsis_container h3 {
	text-align: left;
}

.synopsis_section .heading_container {
  margin-top: 45px;
  margin-bottom: 45px;
}

.synopsis_section .footer_container {
	height: 120px;
}

.synopsis_section p {
  margin-top: 25px;
	text-align: left;
}

.synopsis_section .read_btn {
  display: inline-block;
  background-color: #85310c;
  color: #ffffff;
  padding: 7px 30px;
  border: 1px solid #85310c;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 30px;
}

.synopsis_section .read_btn:hover {
  background-color: transparent;
  color: #85310c;
}

.synopsis_section ol {
  margin-top: 25px;
  margin-bottom: 30px;
}

.synopsis_section li {
	text-align: left;
}

.synopsis_section .synopsis_box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 25px 0;
}

.synopsis_section .synopsis_box .img-box img {
  width: 100%;
}

.synopsis_section .synopsis_box .detail-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(163, 67, 24, 0.9);
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.synopsis_section .synopsis_box .detail-box h5 {
  font-weight: 600;
}

.synopsis_section .synopsis_box .detail-box a {
  color: inherit;
  font-size: 24px;
}

.synopsis_section .synopsis_box .detail-box a:hover {
  color: #85310c;
}

.synopsis_section .synopsis_box:hover .detail-box {
  opacity: 1;
  visibility: visible;
}