.posts-list-wrap.modern_columns::before {
  content: '';
  display: table;
  clear: both;
}

.posts-list-wrap.modern_columns .post-item {
  position: relative;
  display: block;
  width: calc(50% - 15px);
  float: left;
  height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.posts-list-wrap.modern_columns .post-item:nth-child(3n) {
  margin-left: 30px;
}

.posts-list-wrap.modern_columns .post-item:nth-child(3n+1) {
  width: 100%;
}

.posts-list-wrap.modern_columns .post-item .img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 3s cubic-bezier(0.25, 1, 0.35, 1) 0s;
  transition: all 3s cubic-bezier(0.25, 1, 0.35, 1) 0s;
}

.posts-list-wrap.modern_columns .post-item .img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 3s cubic-bezier(0.25, 1, 0.35, 1) 0s;
  transition: all 3s cubic-bezier(0.25, 1, 0.35, 1) 0s;
}

.posts-list-wrap.modern_columns .post-item:hover .img-wrap {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.posts-list-wrap.modern_columns .post-item:hover .img-wrap::before {
  background: rgba(0, 0, 0, 0.6);
}

.posts-list-wrap.modern_columns .post-item .content {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 70%;
  z-index: 99;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.posts-list-wrap.modern_columns .post-item .content .title {
  color: #fff;
  font-weight: 600;
  font-size: 46px;
  margin-left: -1px;
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
}

.posts-list-wrap.modern_columns .post-item .content .date {
  color: #fff;
  font-size: 16px;
}

.posts-list-wrap.modern_columns .post-item .content .category span {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #222222;
  background-color: #222222;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 5px;
  letter-spacing: 2px;
  margin-right: 5px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1440px) {
  .posts-list-wrap.modern_columns .post-item .content .title {
    font-size: 40px;
  }
  .posts-list-wrap.modern_columns .post-item .content {
    width: calc(100% - 45px);
  }
}

@media only screen and (max-width: 767px) {
  .posts-list-wrap.modern_columns .post-item {
    width: 100%;
    height: 400px;
    margin-left: 0 !important;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .posts-list-wrap.modern_columns .post-item .content .title {
    font-size: 26px;
  }
}

.posts-list-wrap.parallax .post-item {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.posts-list-wrap.parallax .post-item.fix-attach {
  background-attachment: fixed;
  -webkit-transform: translate3d(0, 0, 0);
}

.posts-list-wrap.parallax .post-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.posts-list-wrap.parallax .post-item:nth-child(even) .content {
  left: auto;
  right: 80px;
}

.posts-list-wrap.parallax .content {
  position: absolute;
  left: 80px;
  bottom: 80px;
  background: rgba(0, 0, 0, 0.9);
  padding: 50px;
  width: 600px;
}

.posts-list-wrap.parallax .title {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  display: block;
  margin-top: 0;
  margin-left: -1px;
  margin-bottom: 15px;
  text-decoration: none;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

.posts-list-wrap.parallax .title:hover {
  opacity: .8;
}

.posts-list-wrap.parallax .date {
  color: #fff;
  font-size: 14px;
}

.posts-list-wrap.parallax .category span {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 5px;
  letter-spacing: 2px;
  margin-right: 5px;
  text-transform: uppercase;
}

.posts-list-wrap.parallax .category span:not(:last-of-type)::after {
  content: ', ';
}

@media only screen and (max-width: 1199px) {
  .posts-list-wrap.parallax .content {
    width: 500px;
    left: 60px;
    bottom: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .posts-list-wrap.parallax .content {
    width: 90%;
    left: 50% !important;
    right: auto !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 5vw;
  }
}

@media only screen and (max-width: 767px) {
  .posts-list-wrap.parallax .title {
    font-size: 28px;
  }
  .posts-list-wrap.parallax .content {
    padding: 30px;
  }
}
/*# sourceMappingURL=posts-list.css.map */