*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

#blogs{
	margin: 50px 0px;
}
#blogs .blogs-top-text h2{
	font-weight: bold;
	font-size: 2.2rem;
}
#blogs .blogs-top-text h2 span{
	color: #ff9606;
}
#blogs .blogs-top-text p{
	color: #444444;
}


#blogs .blog{
    position: relative;
    color: white;
    overflow: hidden;
    border-radius: 5px;
    margin: 10px 10px;
   background: rgb(0,0,0);
   background: linear-gradient(0deg, rgba(0,0,0,0.5242471988795518) 0%, rgba(0,0,0,0) 70%);
  }

 #blogs .bottom-left {
    position: absolute;
    bottom: 0px;
    left: 20px;
  }

 #blogs .blog img{
    width:100%;
    height: 350px;
    background-size: cover;
    object-fit:cover;
    border-radius: 5px;
    transition: transform 0.25s;
    position: relative;
    z-index:-1;
  }

#blogs .blog img:hover{
    cursor: pointer;
    transform: scale(1.1);
  }

  /*** li pagination***/
.listPage{
   padding:5px;
   text-align: center;
   list-style: none;
}
.listPage li{
   background-color: #ff9606;
   padding:5px 12px;
   display: inline-block;
   margin:0 5px;
   color:#fff;
   cursor: pointer;
   border-radius: 50%;
}
.listPage li:hover{
 background: #232c3d;
 transition: 0.5s ease-in-out;
}
.listPage .active{
   background-color: #232c3d;
   color:#fff;
}
 


/***** Rwesponsive ******/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

   #blogs .blogs-top-text p{
      color: #444444;
      padding: 0px 20px;
   }
}