
/* page layout */

.page-header {
  background-color: var(--primery);
}
.page-header-info {
  width: 100%;
  color: var(--wihte);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.page-header-info h1{
  margin-bottom: 0;
  padding-bottom: 0 !important;
}
.page-header-info .section-titles {
  color: var(--wihte);
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 16px;
}
.page-header-info .section-titles::after {
  background-color: var(--wihte) !important;
}

/* category pages */

.blog-category{
  margin: 40px 0;
}
.section-titles{
  color: var(--primery);
}













/******************* big screan scope ************************* */

@media screen and (min-width: 1441px) {
  .main-posts-desc{
    min-height: 50px;
  }
    



  }
  
  /*********************** middle screan scope ******************** */
  
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
   
    .blog-category .main-posts-item{
      width: 30%;
      margin: 12px 1.66%;
      margin-top: 124px;

    }



  }
  
  /***********************tablet scope****************/
  
  @media screen and (max-width: 1023px) {
    .blog-category .main-posts-item{
      width: 48%;
      margin: 12px 1%;
      margin-top: 124px;

    }
    .page-header-info .section-titles {
      font-size: 2rem;
    }





  }
  
  /*******************large mobile scope*******************/

  @media screen and (max-width: 767px){
    .page-header-info {
      height: 100px;
    }
    .page-header-info .section-titles {
      font-size: 1.7rem;
    }
    .blog-category {
      margin: 24px 0;
  }


  }



  /*******************mobile scope*******************/
  @media screen and (max-width: 599px) {
    .blog-category .main-posts-item{
      width: 100%;
      margin: 12px 0;
      margin-top: 100px;

    }
    


  
  

  
  }
  





