/* Blog category */
	#blog-category .blog-cats-list {
		display: grid;
	    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
	    grid-gap: 10px;
	}


	#blog-category .cat-item {
		display: block;
		border-radius: 3px;
		border: 1px solid #F8F8F8;
		background: #FFF;
	}

	#blog-category .cat-item a {
		padding: 25px 20px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 230px;
	}

	#blog-category .cat-item img {
		width: 100px;
		height: auto;
	}

	#blog-category .cat-item h4 {
		display: block;
		text-align: center;
		margin-top: 20px;
		font-size: 14px;
		font-weight: 500;
	}
/* Blog latest */
	#blog-latest h1 {
		font-size: 24px;
		line-height: 1;
		font-weight:600;
		margin-bottom: 40px;
		display: none;
	}

	#blog-latest .articles-list {
		display: grid;
		grid-template-columns: repeat(5,1fr);
		grid-gap: 30px 5px;
	}

	#blog-latest #load-more {
		padding: 12px 35px;
		width: fit-content;
		box-sizing: border-box;
		display: grid;
		grid-template-columns: repeat(2, max-content);
		align-items: center;
		grid-gap: 0 50px;
		color: #FFF;
		margin: 0 auto;
		border-radius: 3px;
		border: 1px solid #D52816;
		color: #FFF;
		line-height: 1;
		font-weight: 600;
		background: #D52816;
	}

	#blog-latest #load-more svg {
		width: 18px;
	}

	#blog-latest .article-item {
		display: flex;
		flex-direction: column;
		border: 1px solid #F3F3F3;
		background: #FFF;
	}

	#blog-latest .article-thumb {
		display: block;

	}

	#blog-latest .article-thumb img {
		width: 100%;
		height: 300px;
		object-fit: cover;
		display: block;
	}

	#blog-latest .articles-list .main-block {
		padding: 30px 15px;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
	}

	#blog-latest .articles-list .main-block h4 {
		font-size: 14px;
		font-weight: 500;
	}

	#blog-latest .articles-list .main-block h4 a {
		font-size: inherit;
		font-weight: inherit;
		line-height: inherit;
		color: inherit;
	}

	#blog-latest .articles-list .top-block {
		margin-bottom: 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;

	}

	#blog-latest .articles-list .top-block * {
		color: #737373; 
		line-height: 1;
		font-size: 0.75em;
		font-weight: 500;
	}

	#blog-latest .articles-list .time {
		text-align: right;
		margin-left: 5px;
	}

	#blog-latest .articles-list .more {
		text-decoration: underline;
		text-align: left;
		color: #AC2112;
		line-height: 1;
		display: block;
		width: fit-content;
		font-weight: 500;
		font-size: 12px;
		margin-top: 15px;
	}

@media only screen and (max-width: 1440.99px) {
	#blog-latest .article-thumb img {height: 250px;}
}

@media only screen and (max-width: 1080.99px) {
	#blog-latest .article-thumb img {
		height: 200px;
	}
}

@media only screen and (max-width: 960.99px) {
	#blog-latest .articles-list {
		grid-template-columns: repeat(4,1fr);
	}
}

@media only screen and (max-width: 820.99px) {
	#blog-latest .articles-list {
		grid-template-columns: repeat(3,1fr);
	}
}

@media only screen and (max-width: 620.99px) {
	#blog-latest .articles-list {
		grid-template-columns: repeat(2,1fr);
	}
}
@media only screen and (max-width: 520.99px) {
	#blog-latest > .main-block {
		padding-right: 35px;
		padding-left: 35px;
		box-sizing: border-box;
	}

	#blog-latest .article-thumb img {
		object-fit: cover;
		object-position: center;
	}

	#blog-category .cat-item a {
		padding: 20px 7px;
	}
	#blog-latest h1,
	main section .main-block > h3 {
		font-size: 18px;
	}

	#blog-category .blog-cats-list {
		grid-template-columns: repeat(2,1fr);
	}

	#blog-category .cat-item a {
		width: auto;
	}

	#blog-category .cat-item img {
		width: 75px;
	}

	#blog-category .cat-item h4 {
		margin-top: 15px;
		font-size: 12px;
	}
}
@media only screen and (max-width: 420.99px) {
	#blog-latest .articles-list {
		grid-template-columns: 100%;
		grid-gap: 30px 0;
	}
}