/* Screens Resolution : 992px
-------------------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
  /* ---------------------------------
	4. MAIN
	--------------------------------- */

  .main-section {
    margin: 0 -7.5px;
    padding: 0 15px;
  }

  .main-section .blog-area {
    width: 50%;
    height: auto;
    padding: 0 7.5px;
  }

  .blog-area .blog-post:first-child,
  .blog-area .blog-post:last-child {
    margin: 0px;
  }

  .blog-area .blog-post {
    height: auto;
    width: 100%;
    float: none;
    margin-bottom: 15px !important;
    background: none;
  }

  .blog-area:last-child .blog-post:last-child {
    margin: 0 !important;
  }

  .blog-area .blog-post img {
    display: block;
    height: auto;
    width: 100%;
  }

  /* SCROLLBAR */

  .main-section::-webkit-scrollbar {
    width: 10px;
  }

  .main-section::-webkit-scrollbar-track {
    background: #ebebeb;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  }

  .main-section::-webkit-scrollbar-thumb {
    background-color: #32d98b;
    outline: 1px solid #32d98b;
  }
}

/* Screens Resolution : 767px
-------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  /* ---------------------------------
	4. MAIN
	--------------------------------- */

  .main-section {
    margin: 0;
    padding: 0 15px;
  }

  .main-section .blog-area {
    width: 100%;
    height: auto;
    float: none;
    padding: 0;
  }

  .blog-area .blog-post:first-child,
  .blog-area .blog-post:last-child {
    margin: 0px;
  }

  .blog-area .blog-post {
    height: auto;
    width: 100%;
    float: none;
    margin-bottom: 15px !important;
  }

  .blog-area:last-child .blog-post:last-child {
    margin: 0 !important;
  }

  .blog-area .blog-post img {
    height: auto;
    width: 100%;
  }

  /* BLOG INFO */

  .blog-post .blog-info {
    opacity: 1;
  }

  .blog-post .blog-info:after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }


}