.section-blog .nav-menu nav {
	overflow: hidden;
	overflow-x: auto;
}
.section-blog .nav-menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 0px;
}
.section-blog .nav-menu ul li {
	margin-bottom: 12px;
}
.section-blog .nav-menu ul li a {
	font-size: var(--fz-16);
	font-weight: 500;
	line-height: 1.5;
	color: var(--text-description);
	padding: 12px;
	transition: all 0.3s;
	white-space: nowrap;
}
.section-blog .nav-menu ul li a:hover,
.section-blog .nav-menu ul li.current-menu-item > a,
.section-blog .nav-menu ul li.current_page_parent > a {
	border-bottom: 3px solid #FBBA00;
	color: var(--primary-color);
	transition: all 0.3s;
}

.section-blog .wrap-header .desc p {
	font-size: var(--fz-20);
	font-weight: 400;
	color: var(--text-description);
	line-height: 1.5;
}

.section-blog .wrap-header {
	text-align: center;
	margin-top: 32px;
}

.wrap-template {
	display: grid;
	grid-template-columns: repeat(1,1fr);
	gap: 32px;
	margin-top: 40px;
}
.wrap-template .item-big {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.wrap-template .item-big .col-left {
	width: 100%;
	flex: 1;
	height: 100%;
}

.wrap-template .item-big .col-left img {
	width: 100%;
	height: 100%;
}
.wrap-template .item-big .col-left .image,
.wrap-template .item-big .col-left .image a {
	height: 100%;
}
.wrap-template .item-big .col-right .content {
	padding: 24px 32px;
}
.wrap-template .item-big .col-right .content .title {
	height: auto;
	margin: 0px;
}
.wrap-template .item-big .col-right  .content .date {
	margin: 10px 0px;
}
.wrap-template .item-big  .col-right .content .desc {
	margin-bottom: 16px;
	-webkit-line-clamp: 3;
	height: auto;
}
.wrap-template .item {
	border-radius: 20px;
	border: 1px solid  #DBDADA;
	overflow: hidden;
/* 	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10); */
	position: relative;
	transition: all 0.3s;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wrap-template .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 3;
}

.wrap-template .item:hover::before {
  background-color: #FEC00F;
}
.wrap-template .item:hover {
		border: 1.5px solid #FEC00F;
  border-color: #FEC00F;
  box-shadow: 
    0 10px 15px -3px rgba(0, 0, 0, 0.10), 
    0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.wrap-template .item .image a {
	display: inline-block;
	height: 250px;
	width: 100%;
}
.wrap-template .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wrap-template .item .content {
	padding: 24px 32px;
	background-color: var(--text-white);
}

.wrap-template .item .content .date {
	color: #8B8B8B;
}
.wrap-template .item .content .title {
	margin: 6px 0px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	height: 72px;
}
/* .wrap-template .item:hover {
	border-top:  6px solid #FEC00F;
	border-right:  1.5px solid #FEC00F;
	border-bottom: 1.5px solid #FEC00F;
	border-left: 1.5px solid #FEC00F;
} */
.wrap-template .item:hover .content .title{
	color: var(--primary-color) !important;
}


.wrap-template .item .content .desc {
	color: var(--text-description);
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;  
	overflow: hidden;
	height: 48px;
}
.wrap-list-service .pagination-container,
.wrap-template .no-result,
.wrap-template .pagination-container {
	grid-column: 1 / -1;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}
.wrap-template .no-result {
	margin-top: 0px;
	width: 100%;
	height: 100%;
}

.pagination-container .page-numbers {
	display: flex;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	color: var(--text-white);
	font-size: var(--fz-16);
	font-weight: 500;
	line-height: 1.5;
	color: #48494D;
	transition: all 0.3s ease;
	background-color: #E4E4E4;
}
.pagination-container .page-numbers:hover,
.pagination-container .page-numbers.current {
	background: var(--bg-default);
	color: var(--text-white);
}

.pagination-container .page-numbers.next {
	font-size: 0px;
	line-height: 0px;
	background-image: url("../../img/next.svg");
	background-repeat: no-repeat;
	background-position: center;
}
.pagination-container .page-numbers.prev {
	font-size: 0px;
	line-height: 0px;
	background-image: url("../../img/next.svg");
	background-repeat: no-repeat;
	background-position: center;
	transform: rotate(180deg);
}

.section-search .text-result {
	font-size: var(--fz-16);
	font-weight: 400;
	color: var(--text-description);
	line-height: 1.5;
}
.section-search .text-result span {
	font-weight: 600;
}


@media (min-width: 768px) {
	.wrap-template {
		grid-template-columns: repeat(2,1fr);
	}
	.wrap-template .item-big .col-left {
		flex: 0 0 50%;
	}
	.wrap-template .item-big .col-right .content .desc {
		margin-bottom: 56px;
	}
}

@media (min-width: 1024px) {
	.wrap-template {
		grid-template-columns: repeat(3,1fr);
	}
	.wrap-template .item-big {
		flex-direction: row;
		align-items: center;
		gap: 33px;
	}
	.wrap-template .item-big .col-right .content {
		padding: 32px;
		padding-left: 0px;
	}
}

@media (min-width: 1200px) {
	.wrap-template .item-big .col-left {
		flex: 0 0 805px;
	}
}
