
.documentary-inner {
  width: 860px;
  margin: 0 auto;
  min-height: 100%;
}

.documentary-inner>h1 {
  text-align: center;
  font-size: 24px;
  padding: 80px 0;
  letter-spacing: 5px
}

.item {
  display: block;
  margin: 1.5%;
  z-index: 1;
  border-radius: 4px;
  width: 30%;
  padding: 12px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 300ms 0s ease;
}
.item img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.item:hover {
  opacity: 0.8;
}

.item .photo {
  margin: 0 0 8px;
}
.item .date {
  text-align: right;
  font-size:12px;
  margin:0;
}
.item h2 {
  font-size: 14px;
  margin: 15px 0;
  color: #555;
  /*text-indent: -0.5em;*/
}

.item p {
  font-size: 12px;
  line-height: 160%;
  margin: 0 0 0;
  color: #555;
}

.item div.read_more {
  text-align: center;
  font-size: 12px;
  letter-spacing: 3px;
}

.item div.read_more span {
  background: #eee;
  text-align: center;
  display: inline-block;
  padding: 12px 0;
  width: 100%;
}

.grid {
  display: flex;
  flex-wrap:wrap;
}

.menu-close {
  position: relative;
  width: 40px;
  height: 33px;
  display: inline-block;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}

.menu-close span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

.menu-close span:nth-of-type(2) {
  bottom: 0;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}


@media screen and (max-width: 768px) {
  .documentary-inner {
    width: 100%;
  }
  .grid {
    flex-wrap: wrap;
  }
  .item {
    margin: 0 5% 20px;
    width: 90%;
  }
}