/* common css */
.gredient-bg {
  background: radial-gradient(1200px 600px at 20% -10%, rgb(238 83 83 / 25%), transparent 60%), /* red */ 
	radial-gradient(900px 500px at 90% 0%, rgb(18 18 248 / 25%), transparent 60%), /* blue */ 
	radial-gradient(1000px 500px at 50% 100%, rgba(0, 0, 0, 0.2), transparent 70%), /* black */ #ffffff;
}
.triangle {
  list-style: none;
  margin: 0;
  padding: 0;
}
.triangle li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.triangle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 0;
  height: 0;
  border-left: 6px solid red;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* page title start */
.title-section{
    position:relative;
      margin-top:74px;
      }
      .title-container{
        max-width: 70%;
        margin: 0 auto;
        min-height: 300px;
        align-content: center;
        text-align:center;
      }
      .title-image-holder{
          position:absolute;
          top:0;
          width:100%;
          z-index:-1;
          height:300px;
      }
      .title-image-holder img{
        width: 100%;
        object-position: center;
        object-fit: cover;
        height: 100%;
      }
      .h1-title{
          color:white;
		  background: #0000008c;
          padding: 20px;
          border-radius: 8px;
      }

@media screen and (max-width:1024px){
	.title-section{
      margin-top:60px;
      }
}

.section-blog{
	padding:50px 0;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-post-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgb(253 0 0 / 11%);
}

.blog-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}
.blog-title{
	line-height:1;
}
.blog-title a {
  color: #222;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.read-more {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
}

.blog-post-item{
	display: inline-block;
	transition: all 0.3s ease;
}
.blog-post-item:hover{
	transform: translateY(-10px);
}

