.refive .slide-wrapper {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.refive .splide__pagination {
	bottom: -90px;
	gap: 20px;
}

.refive .splide__pagination__page {
	background: #707070;
	width: 15px;
	height: 15px;
	transition: all .3s ease-in-out;
}

.splide__pagination__page.is-active {
	transform: scale(1) !important;
	width: 40px;
	height: 15px;
	border-radius: 8px;
	background: #C2C2C2 !important;
}

.refive .pagination-text {
	position: absolute;
	bottom: -60px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #797979;
}

.refive .pagination-text span {
	color: #fff;
	padding-right: 5px;
	font-size: 20px;
}


.refive .slide-wrapper .img-hover {
	transition: transform 0.3s ease-in-out;
	transform: translateY(20px);
}

.refive .slide-wrapper .text-wrapper {
	visibility: hidden;
	padding: 10px;
	opacity: 0;
	transition: all .3s ease-in-out;
	text-align: center;
}

.refive .slide-wrapper .text-wrapper h6.post_title,
.refive .slide-wrapper .text-wrapper .post_description {
	margin: 0;
}

.refive .slide-wrapper .img-wrapper:hover .img-hover {
	transform: translateY(0px);
}

.refive .slide-wrapper .img-wrapper:hover + .text-wrapper {
	visibility: visible;
	opacity: 1;
}


.refive .slide-wrapper .text-wrapper p.post_title::after {
	content: '';
	width: 34px;
	height: 1px;
	background: #3E3E3E;
	position: relative;
	bottom: 0px;
	display: inline-flex;
}

.refive .slide-wrapper .text-wrapper p.post_title {
	font-size: 20px;
	color: #Fff;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}

.refive .slide-wrapper .text-wrapper p.post_description {
	font-size: 15px;
	color: #C2C2C2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.refive .slide-wrapper .text-wrapper p.post_description span {
	color: #C0E700;
}

.refive .slide-wrapper .img-wrapper:hover .img-hover::after {
	content: '';
	width: 80px;
	height: 150px;
	position: absolute;
	z-index: -1;
	background: rgba(255, 255, 255, 0.5);
	left: 18px;
	filter: blur(40px);
	top: 50px;
}

/* Blog */

:root {
	--blog-gap-column: 48;
	--blog-gap-row: 16;
	--blog-columns: 3;
}

.blog-wrapper {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.blog-wrapper > .blog-filters {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.blog-wrapper > .blog-filters > .category-item {
	font-family: 'Stara';
	letter-spacing: -0.2px;
	font-weight: 500;
	padding: 9px 16px;
	background-color: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .7);
	text-align: center;
	border-radius: 33px;
	cursor: pointer;
	transition: all .2s ease;
}

.blog-wrapper > .blog-filters > .category-item:hover {
	background-color: rgba(255, 255, 255, .2);
}

.blog-wrapper > .blog-filters > .category-item::after {
	content: attr(data-text);
	font-weight: 600;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	display: block;
}

.blog-wrapper > .blog-filters > .category-item.active {
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
	background-color: rgba(255, 255, 255, 1);
}


.blog-wrapper > .blog-list {
	display: flex;
	gap: calc(var(--blog-gap-column) * 1px) calc(var(--blog-gap-row) * 1px);
	flex-wrap: wrap;
}

.blog-wrapper > .blog-list > .blog-item {
	position: relative;
	overflow: hidden;
	flex: 0 1 calc((100% - (var(--blog-gap-column) * 1px * (var(--blog-columns) - 1))) / var(--blog-columns));
	min-height: 490px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
/* 	border: 1px solid #272727; */
/* 	border-radius: 16px; */
/* 	padding: 20px; */
}

/* .blog-wrapper > .blog-list > .blog-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #222 0%, rgba(0, 0, 0, 0) 95.01%);
	z-index: 1;
} */

.blog-wrapper > .blog-list > .blog-item > a {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 2;
}

.blog-wrapper > .blog-list > .blog-item .blog-info {
	display: flex;
	justify-content: flex-start;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.blog-wrapper > .blog-list > .blog-item > a > img {
	border-radius: 16px;
	padding: 1px;
	background: linear-gradient(45deg,rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
/* 	-webkit-mask: linear-gradient(45deg,rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%); */
}


.blog-wrapper > .blog-list > .blog-item .blog-info > div {
	border: 0.5px solid #FFFFFF33;
	border-radius: 16px;
	backdrop-filter: blur(30px);
	font-family: 'Gantari';
	font-weight: 400;
	letter-spacing: -0.2px;
	color: #fff;
	padding: 3px 12px;
/* 	background: linear-gradient(45deg,rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%); */
	background-color: transparent;
}

.blog-wrapper > .blog-list > .blog-item .blog-title {
	margin-top: 8px;
	font-family: 'Stara';
	font-weight: 700;
	font-style: bold;
	font-size: 24px;
	line-height: 1.375em /* Figma says 1em but there is spacing between newlines */
	letter-spacing: -0.2px;
	padding: 0 12px 12px 12px;
}

@media (max-width: 1024px) {
	:root {
		--blog-columns: 3;
	}
}

@media (max-width: 768px) {
	:root {
		--blog-columns: 2;
	}
}

@media (max-width: 480px) {
	:root {
		--blog-columns: 1;
	}
}

/* End of Blog */