.d-flex.blogList-box-inner {
	justify-content: space-between;
	column-gap: 2%;
	row-gap: 60px;
}
.blogList-item {
	width: 31.3%;
	background-color: #F1F1F1;
	padding: 50px;
	flex: 1 0 31.3%;
}
#blogList-item-1 {
	flex: 1 0 65.3%;
}
.blogList-item-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.blogList-item-meta p {
	color: #0d6eb6;
	font-size: 16px;
	line-height: 20px;
}
.blogList-item-title {
	color: #000;
	font-weight: 600;
	font-size: 21px;
	line-height: 28px;
	margin-bottom: 15px;
	display: block;
}
.blogList-item a:hover {
	text-decoration: none;
}
.blogList-item-excerpt {
	display: block;
	padding-top: 15px;
}
.button-style-1.blogList-item-link {
	margin-top: 30px;
	font-size: 16px;
	padding: 12px 24px;
}



/**/
.shake {
  animation: shake-animation 4.72s ease-in-out infinite;
  transform-origin: 50% 50%;
}
@keyframes shake-animation {
   0% { transform:translate(0,0) }
  1.78571% { transform:translate(0,5px) }
  3.57143% { transform:translate(0,0) }
  5.35714% { transform:translate(0,5px) }
  7.14286% { transform:translate(0,0) }
  8.92857% { transform:translate(0,5px) }
  10.71429% { transform:translate(0,0) }
  100% { transform:translate(0,0) }
}


/*Responsive*/
@media  only screen and (max-width: 1280px){
	#blogList {
		padding-bottom: 20px;
	}
	.d-flex.blogList-box-inner {
		row-gap: 30px;
	}
	#blogList-item-1 {
		flex: 1 0 100%;
	}
	.blogList-item {
		width: 49%;
		flex: 1 0 49%;
	}
	.button-style-1.blogList-item-link {
		font-size: 14px;
		padding: 10px 33px;
	}
	.blogList-item-title {
		font-size: 20px;
	}
	.blogList-item-excerpt {
		font-size: 17px;
	}
}
@media  only screen and (max-width: 960px){
	.blogList-item {
		padding: 50px 34px;
	}
}
@media  only screen and (max-width: 769px){
	.blogList-item {
		width: 100%;
		flex: 1 0 100%;
	}
}








