@charset "utf-8";

/*
/*	Copyright (c) 2022 Frenify
/*	Author: Frenify
/*	This file is made for CURRENT TEMPLATE
/*


	List of CSS codes:
	
	01) Base


/*------------------------------------------------------------------*/
/*	01) Base
/*------------------------------------------------------------------*/
:root {
	--mc1: #acd0ee;
	--mc2: #a0d7c0;
	--hc: #ddd;
	--bc: #9ba0b8;
	--hff: 'Heebo', sans-serif;
	--bff: 'Nunito', sans-serif;
}

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
}

*:after,
*:before,
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.heji_fn_content {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

#footer {
	margin-top: auto;
}


/* Preloader */
.heji_fn_preloader {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, #1b0133 0%, #9d4fd5 50%, #1b0133 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b121d", endColorstr="#1b121d", GradientType=1);
	transition: all .5s ease;
}

.heji_fn_preloader.ready {
	opacity: 0;
	visibility: hidden;
}

.heji_fn_preloader .loading-container {
	width: 256px;
	height: 256px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.heji_fn_preloader .loading {
	width: 64px;
	height: 64px;
	position: absolute;
	top: 36%;
	left: 36%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.heji_fn_preloader .loading div {
	width: 32px;
	height: 32px;
	position: absolute;
}

.heji_fn_preloader .l1 div,
.heji_fn_preloader .l2 div,
.heji_fn_preloader .l3 div,
.heji_fn_preloader .l4 div {
	width: 100%;
	height: 100%;
	background-color: var(--mc1);
}

.heji_fn_preloader .l1 {
	transform: translate(0, 0);
}

.heji_fn_preloader .l2 {
	transform: translate(0, 32px);
}

.heji_fn_preloader .l3 {
	transform: translate(32px, 0px);
}

.heji_fn_preloader .l4 {
	transform: translate(32px, 32px);
}

@keyframes rot1 {
	0% {
		transform: rotate(0deg);
	}

	40% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(0deg);
	}

	60% {
		transform: rotate(90deg);
	}

	100% {
		transform: rotate(90deg);
	}
}

@keyframes rot2 {
	0% {
		transform: rotate(0deg);
	}

	40% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(0deg);
	}

	60% {
		transform: rotate(-90deg);
	}

	100% {
		transform: rotate(-90deg);
	}
}

@keyframes rot3 {
	0% {
		transform: rotate(45deg);
	}

	35% {
		transform: rotate(45deg);
	}

	65% {
		transform: rotate(405deg);
	}

	100% {
		transform: rotate(405deg);
	}
}

@keyframes l1-rise {
	0% {
		transform: translate(0px, 0px);
	}

	30% {
		transform: translate(-8px, -8px);
	}

	70% {
		transform: translate(-8px, -8px);
	}

	100% {
		transform: translate(0px, 0px);
	}
}

@keyframes l2-rise {
	0% {
		transform: translate(0, 32px);
	}

	30% {
		transform: translate(-8px, 40px);
	}

	70% {
		transform: translate(-8px, 40px);
	}

	100% {
		transform: translate(0, 32px);
	}
}

@keyframes l3-rise {
	0% {
		transform: translate(32px, 0px);
	}

	30% {
		transform: translate(40px, -8px);
	}

	70% {
		transform: translate(40px, -8px);
	}

	100% {
		transform: translate(32px, 0px);
	}
}

@keyframes l4-rise {
	0% {
		transform: translate(32px, 32px);
	}

	30% {
		transform: translate(40px, 40px);
	}

	70% {
		transform: translate(40px, 40px);
	}

	100% {
		transform: translate(32px, 32px);
	}
}

@keyframes color {
	0% {
		background-color: var(--mc1);
	}

	50% {
		background-color: var(--mc2);
	}

	100% {
		background-color: var(--mc1);
	}
}

.heji_fn_preloader .l1 {
	animation: l1-rise 3s ease 0s infinite;
}

.heji_fn_preloader .l2 {
	animation: l2-rise 3s ease 0s infinite;
}

.heji_fn_preloader .l3 {
	animation: l3-rise 3s ease 0s infinite;
}

.heji_fn_preloader .l4 {
	animation: l4-rise 3s ease 0s infinite;
}

.heji_fn_preloader .l1 div,
.heji_fn_preloader .l4 div {
	animation: rot1 3s ease 0s infinite, color 3s linear 0s infinite;
}

.heji_fn_preloader .l2 div,
.heji_fn_preloader .l3 div {
	animation: rot2 3s ease 0s infinite, color 3s linear 0s infinite;
}



body {
	font-family: var(--bff);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.44;
	font-weight: 400;
	color: var(--bc);
	position: relative;
	word-break: break-word;
	background: rgba(119, 119, 119, 0.408);
	background: linear-gradient(90deg, #1b0133 0%, #9d4fd5 50%, #1b0133 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1b121d", endColorstr="#1b121d", GradientType=1);
}

body,
html {
	width: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	height: auto;
	overflow-x: hidden;
}

html:after,
html:before {
	clear: both;
	display: table;
	content: '';
}

body:after {
	content: '';
	position: fixed;
	width: 270px;
	height: 270px;
	top: 42.8%;
	/* 463px */
	right: 25%;
	/* 487px */
	background-color: var(--mc2);
	border-radius: 100%;
	-webkit-filter: blur(150px);
	-o-filter: blur(150px);
	filter: blur(150px);
}

body:before {
	content: '';
	position: fixed;
	width: 270px;
	height: 270px;
	top: 27.5%;
	/* 297px */
	left: 23.9%;
	/* 479px */
	background-color: var(--mc1);
	border-radius: 100%;
	-webkit-filter: blur(150px);
	-o-filter: blur(150px);
	filter: blur(150px);
}

.fn__svg {
	fill: currentcolor;
	width: 18px;
	height: 18px;
	opacity: 0;
}

.replaced-svg {
	opacity: 1;
}

p {
	letter-spacing: 0;
	margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--hc);
	font-family: var(--hff);
	line-height: 1.22;
	letter-spacing: 0;
}

h1>a,
h2>a,
h3>a,
h4>a,
h5>a,
h6>a {
	text-decoration: none;
	color: var(--hc);
}

h1>a:hover,
h2>a:hover,
h3>a:hover,
h4>a:hover,
h5>a:hover,
h6>a:hover {
	color: var(--mc1);
}

input[type="password"],
input[type="text"] {
	background-color: transparent;
	border-radius: 5px;
	border: 2px solid rgba(255, 255, 255, .15);
	font-size: 16px;
	letter-spacing: 0;
	line-height: 46px;
	height: 50px;
	padding: 0 15px;
	outline: none;
	outline-color: transparent;
}

textarea {
	background-color: transparent;
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, .15);
	font-size: 16px;
	letter-spacing: 0;
	padding: 13px 15px;
	height: 250px;
}

textarea:focus,
input[type="password"]:focus,
input[type="text"]:focus {
	outline: none;
	background-color: transparent;
	border-color: var(--mc1);
}

/*------------------------------------------------------------------*/
/*	02) Container
/*------------------------------------------------------------------*/
.container {
	width: 100%;
	max-width: 1800px;
	padding: 0 100px;
	margin: 0 auto;
}

.container.small {
	max-width: 1400px;
}

.container:after,
.clearfix:after,
.clearfix:before {
	content: '';
	clear: both;
	display: table;
}

@media(max-width: 1200px) {
	.container {
		padding: 0 40px;
	}
}

@media(max-width: 1040px) {
	.container {
		padding: 0 20px;
	}
}

@media(max-width: 480px) {
	.container {
		padding: 0 10px;
	}
}

.mw300 {
	max-width: 300px;
}

/*------------------------------------------------------------------*/
/*	02) Some codes
/*------------------------------------------------------------------*/
a.full_link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.bg_overlay .bg_image,
.bg_overlay .bg_color,
.bg_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.abs_img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.bg_overlay .bg_color {
	z-index: 2;
}

[class*="mw_"] {
	margin-left: auto;
	margin-right: auto;
}

.mw_650 {
	max-width: 650px;
}

.mw_500 {
	max-width: 500px;
}

/*------------------------------------------------------------------*/
/*	02) Site Structure
/*------------------------------------------------------------------*/
.heji_fn_main,
.heji_fn_main * {
	box-sizing: border-box;
}

.heji_fn_main {
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}


/* Mobile Navigation */
.heji_fn_mobnav {
	display: none;
	overflow: hidden;
}

.heji_fn_mobnav .social_trigger {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.heji_fn_mobnav .social_trigger .trigger {
	margin-right: 20px;
}

.heji_fn_mobnav .mob_mid,
.heji_fn_mobnav .mob_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 20px;
	overflow: hidden;
	background: linear-gradient(90deg, #1b0133 0%, #9d4fd5 50%, #1b0133 100%);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}

.heji_fn_mobnav .mob_bot {
	display: none;
	background: rgba(119, 119, 119, 0.408);
	padding: 21px 20px;
	overflow: hidden;
}

.heji_fn_mobnav .mob_bot ul {
	margin: 0;
	list-style-type: none;
}

.heji_fn_mobnav .mob_bot li {
	padding: 8px 0;
	margin: 0;
}

.heji_fn_mobnav .mob_bot a {
	line-height: 27px;
}

.heji_fn_mobnav .social {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}


/* Social Icons */
#social {
	z-index: 5;
	position: fixed;
	left: 50px;
	top: 50%;
	transition: all .5s ease;
}

#social.hold {
	transform: translateX(-200px);
}

#social .social {
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: absolute;
	width: max-content;
	-ms-align-items: center;
	align-items: center;
}

.social ul {
	margin: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.social li {
	margin: 0;
	font-family: var(--hff);
	font-size: 18px;
	text-decoration: none;
	color: var(--hc);
	font-weight: 500;
	letter-spacing: 0;
}

.social li:after {
	content: '/';
	margin: 0 6px;
}

.social li:last-child:after {
	content: '';
}

.social .title {
	margin: 0;
	padding: 0;
	margin-right: 5px;
	line-height: 50px;
}

.social a {
	font-family: var(--hff);
	font-size: 18px;
	text-decoration: none;
	color: var(--hc);
	font-weight: 500;
	letter-spacing: 0;
}

.social a:hover {
	color: var(--mc1);
}








/*Main Button*/
.heji_fn_protected input[type="submit"],
.heji_fn_button {
	display: block;
	width: fit-content;
	max-width: 100%;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: .5px;
	font-family: var(--hff);
	height: 50px;
	line-height: 50px;
	padding: 0 34px;
	position: relative;
	color: var(--hc);
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	background-color: transparent;
	outline: none;
	outline-color: transparent;
}

.heji_fn_button span {
	position: relative;
	z-index: 5;
}

.heji_fn_protected .submit {
	display: block;
	position: relative;
}

.heji_fn_protected .submit input {
	width: 100%;
	z-index: 5;
}

.heji_fn_button.full {
	width: 100%;
	height: 80px;
	line-height: 80px;
}

.heji_fn_protected .submit:hover:after,
.heji_fn_button:hover:after {
	animation-duration: 2s;
}

.heji_fn_protected .submit:hover,
.heji_fn_button:hover {
	color: #fff;
}

.heji_fn_protected .submit:after,
.heji_fn_button:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 6px;
	border: 3px solid transparent;
	background: -moz-linear-gradient(45deg, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: -webkit-linear-gradient(45deg, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: linear-gradient(45deg, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	-webkit-mask:
		linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	background-size: 300% 300%;
	-webkit-animation: animatedgradient 4s ease alternate infinite;
	animation: animatedgradient 4s ease alternate infinite;
}

.heji_fn_protected .submit:before,
.heji_fn_button:before {
	right: 0;
	bottom: 0;
	top: 0;
	left: 0;
	position: absolute;
	color: var(--mc1);
	content: '';
	opacity: .15;
	border-radius: 6px;
	box-shadow: 0px 5px 20px;
}

@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}












/* Totop Button */
.heji_fn_totop {
	display: block;
	margin: 0;
	padding: 0;
	text-decoration: none;
	position: fixed;
	z-index: 5;
	right: 30px;
	bottom: 30px;
	width: 50px;
	color: #bbb;
	font-size: 18px;
	letter-spacing: 0;
	font-family: var(--hff);
	font-weight: 500;
	opacity: 0;
	visibility: hidden;
	transform: translateX(100px);
	transition: all .5s ease;
}

.totop-active .heji_fn_totop {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.heji_fn_totop .icon {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #9d4fd5;
	position: relative;
	margin-right: 30px;
}

.heji_fn_totop .fn__svg {
	position: absolute;
	display: block;
	z-index: 3;
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
	margin: -10px 0 0 -10px;
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.heji_fn_totop .icon:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: var(--mc1);
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	transition: all .3s ease;
}

.heji_fn_totop:hover .icon:after {
	opacity: .5;
}

.heji_fn_totop .totop_inner {
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	transform: translateX(-50%) translateY(-50%) rotate(-90deg);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	top: 50%;
	left: 50%;
	position: absolute;
	width: max-content;
	-ms-align-items: center;
	align-items: center;
}




/* Search Button */
.heji_fn_search {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #000;
	position: fixed;
	z-index: 5;
	bottom: 30px;
	left: 30px;
	color: #bbb;
	transition: all .5s ease;
}

.heji_fn_search.hold {
	transform: translateX(-300px);
}

.heji_fn_search:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_search:hover:after {
	opacity: .5;
}

.heji_fn_search .fn__svg {
	position: absolute;
	display: block;
	z-index: 3;
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
	margin: -10px 0 0 -10px;
}















/* Header */
.header {
	padding: 30px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 25;
	transition: all .3s ease;
	border-bottom: 1px solid transparent;
}

.header.active {
	z-index: 60;
	padding: 20px 30px;
	background: linear-gradient(90deg, #1b0133 0%, #9d4fd5 50%, #1b0133 100%);
	border-bottom-color: rgba(255, 255, 255, .08);
}

.header .header_in {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.header .nav {
	opacity: 0;
}

.header .trigger_logo {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.header .trigger {
	margin-right: 20px;
}

.trigger {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #9d4fd5;
	z-index: 5;
	color: #bbb;
	position: relative;
	cursor: pointer;
}

.trigger:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: var(--mc1);
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.trigger.active:after,
.trigger:hover:after {
	opacity: .5;
}

.trigger.active span {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.trigger.active span:before {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.trigger.active span:after {
	width: 0;
	transition: none;
}

.trigger span:before,
.trigger span:after,
.trigger span {
	display: block;
	height: 2px;
	position: absolute;
	background-color: #bbb;
	content: '';
	transition: all .3s ease;
}

.trigger span {
	top: 24px;
	width: 24px;
	left: 13px;
}

.trigger span:before {
	bottom: 6px;
	width: 24px;
	left: 0;
}

.trigger span:after {
	top: 6px;
	width: 16px;
	left: 0;
}

.header .nav ul {
	margin: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-left: -45px;
}

.header .nav li {
	margin: 0;
	margin-left: 45px;
}

.header .nav a {
	font-family: var(--hff);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
	text-decoration: none;
}







.fn__maintitle {
	margin: 0;
	padding: 0;
	font-weight: 300;
	letter-spacing: .5px;
	font-size: 36px;
	position: relative;
	line-height: 1;
}

.fn__maintitle.big {
	font-size: 60px;
	text-transform: uppercase;
}

.fn__maintitle[data-align="center"] {
	text-align: center;
}

.fn__maintitle[data-align="left"] {
	text-align: left;
}

.fn__maintitle[data-align="right"] {
	text-align: right;
}

.fn__maintitle:before {
	position: absolute;
	z-index: -1;
	top: 2px;
	left: 0;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(var(--mc1), var(--mc2));
	background: -webkit-linear-gradient(var(--mc1), var(--mc2));
	background: linear-gradient(var(--mc1), var(--mc2));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	content: attr(data-text);
}







#home {
	overflow: hidden;
	padding-top: 179px;
	padding-bottom: 150px;
}



.fn_cs_slider {
	padding: 0 20px;
	overflow: hidden;
}

.fn_cs_slider .hidden_list {
	display: none;
}

.fn_cs_slider .slider_nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	column-gap: 100px;
	position: relative;
	margin-bottom: 52px;
}

.fn_cs_slider .slider_nav:after {
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	background-color: rgba(255, 255, 255, .5);
	left: 50%;
	margin-left: -20px;
	top: 50%;
	margin-top: -1px;
	margin-top: -0.5px;
}

.fn_cs_slider .slider_nav a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	column-gap: 10px;
	padding: 10px 0;
}

.fn_cs_slider .slider_nav .circle {
	width: 12px;
	height: 12px;
	display: block;
	border: 2px solid rgba(255, 255, 255, .5);
	position: relative;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .05);
}

.fn_cs_slider .slider_nav .icon {
	width: 34px;
	height: 34px;
	display: block;
	border: 2px solid rgba(255, 255, 255, .5);
	position: relative;
	border-radius: 100%;
	background-color: rgba(255, 255, 255, .05);
}

.fn_cs_slider .slider_nav .fn__svg {
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	color: rgba(255, 255, 255, .5);
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
}

.fn_cs_slider .slider_nav .prev .fn__svg {
	transform: rotate(90deg);
	margin-left: -8px;
}

.fn_cs_slider .slider_nav .next .fn__svg {
	transform: rotate(-90deg);
	margin-left: -5px;
}

.fn_cs_slider .slider_nav .icon:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: var(--mc1);
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.fn_cs_slider .slider_nav a:hover .icon:after {
	opacity: .5;
}

.fn_cs_slider .slider_top>img {
	width: 33.3333% !important;
	min-width: 33.3333% !important;
	opacity: 0;
}

.fn_cs_slider .slider_top {
	padding: 59px 0 60px;
	position: relative;
}

.fn_cs_slider .slider_top ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.fn_cs_slider .slider_top li {
	width: 33.3333%;
	position: absolute;
	margin: 0;
	transform: translateX(100%) scale(0);
	transition: all 0s ease;
	opacity: 0;
	top: 65px;
	/*	visibility: hidden;*/
}

.fn_cs_slider .slider_top li.next2 {
	left: 100%;
	transform: translateX(100%) scale(0);
	transition: all 1s ease;
}

.fn_cs_slider .slider_top li.prev2 {
	left: 0;
	transform: translateX(-100%) scale(0);
	transition: all 1s ease;
}

.fn_cs_slider .slider_top li.prev,
.fn_cs_slider .slider_top li.next,
.fn_cs_slider .slider_top li.active {
	transform: translateX(0) scale(1);
	opacity: 1;
	transition: all 1s ease;
}

.fn_cs_slider .slider_top li.prev,
.fn_cs_slider .slider_top li.next {
	cursor: pointer;
}

.fn_cs_slider .slider_top li.prev {
	left: -40px;
}

.fn_cs_slider .slider_top li.next {
	left: 66.6666%;
	margin-left: 40px;
}

.fn_cs_slider .slider_top img {
	min-width: 100%;
	opacity: 0;
}

.fn_cs_slider .slider_top .item {
	perspective: 1000px;
	perspective-origin: 50% 50%;
}

.fn_cs_slider .slider_top .item_in {
	padding: 20px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
	transition: all 1s ease;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: scaleX(0.85) scaleY(0.85) rotateY(180deg);
}

.fn_cs_slider .heji_fn_videobutton {
	opacity: 0;
	visibility: hidden;
}

.fn_cs_slider .active .heji_fn_videobutton {
	opacity: 1;
	visibility: visible;
}

.fn_cs_slider .slider_top .img {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
}

.fn_cs_slider .slider_top .img:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .3s ease;
}

.fn_cs_slider .slider_top .active .has_video .img:after {
	background-color: rgba(0, 0, 0, 0.3);
}

.fn_cs_slider .slider_top .item_in:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: var(--mc1);
	opacity: .15;
	border-radius: 20px;
	box-shadow: 0px 5px 20px;
}

.fn_cs_slider .slider_top .item_in:before {
	height: 15px;
	width: 60%;
	content: '';
	position: absolute;
	top: 100%;
	margin-top: 30px;
	background-color: #000;
	border-radius: 100%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-filter: blur(15px);
	-o-filter: blur(15px);
	filter: blur(15px);
}

.fn_cs_slider .slider_top .active .item_in {
	transform: scaleX(1) scaleY(1) rotateY(0deg);
}

.fn_cs_slider .slider_top .prev2 .item_in,
.fn_cs_slider .slider_top .prev .item_in {
	transform: scaleX(1.05) scaleY(0.85) rotateY(-30deg);
}

.fn_cs_slider .slider_top .next2 .item_in,
.fn_cs_slider .slider_top .next .item_in {
	transform: scaleX(1.05) scaleY(0.85) rotateY(30deg);
}

.fn_cs_slider .slider_top .img {
	border-radius: 20px;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.fn_cs_slider .slider_top li.active {
	left: 33.3333%;
}

/* Since v3.0*/
@media(max-width: 768px) {
	.fn_cs_slider[data-responsive="on"] .slider_top li {
		width: 100%;
	}

	.fn_cs_slider[data-responsive="on"] .slider_top>img {
		width: 100% !important;
		min-width: 100% !important;
	}

	.fn_cs_slider[data-responsive="on"] .slider_top li.active {
		left: 0;
	}

	.fn_cs_slider[data-responsive="on"] .slider_top li.prev {
		left: -100%;
		margin-left: -100px;
	}

	.fn_cs_slider[data-responsive="on"] .slider_top li.next {
		left: 100%;
		margin-left: 100px;
	}
}



.fn_cs_desc {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.fn_cs_desc p {
	margin: 0;
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 41px;
}






#fun_facts {
	border-top: 1px solid rgba(255, 255, 255, .08);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	background-color: rgba(0, 0, 0, 0.15);
	padding: 132px 0 87px;
}

.fn_cs_counter_list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -140px;
}

.fn_cs_counter_list li {
	padding-left: 140px;
	margin: 0;
	width: 25%;
	margin-bottom: 40px;
}

.fn_cs_counter_list li:nth-of-type(4n) .divider {
	display: none;
}

.fn_cs_counter_list .item {
	position: relative;
	width: 100%;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	padding: 0 10px;
}

.fn_cs_counter_list .item h3 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 6px;
}

.fn_cs_counter_list .item p {
	margin: 0;
}

.fn_cs_counter_list .divider {
	position: absolute;
	left: 100%;
	top: 25px;
	width: 140px;
	height: 2px;
	background-color: rgba(255, 255, 255, .5);
}

.fn_cs_counter_list .divider:after,
.fn_cs_counter_list .divider:before {
	width: 16px;
	content: '';
	position: absolute;
	height: 2px;
	background-color: rgba(255, 255, 255, .5);
	transform: rotate(-65deg);
}

.fn_cs_counter_list .divider:before {
	left: 50%;
	margin-left: -11px;
}

.fn_cs_counter_list .divider:after {
	left: 50%;
	margin-left: -5px;
}


.fn__gradient_title {
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 0;
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	background: -moz-linear-gradient(90deg, var(--mc1), var(--mc2));
	background: -webkit-linear-gradient(90deg, var(--mc1), var(--mc2));
	background: linear-gradient(to right, var(--mc1), var(--mc2));
	-webkit-background-clip: text;
	-webkit-text-stroke: 4px transparent;
	color: #160f1a;
	filter: drop-shadow(0 5px 20px rgba(204, 0, 255, .15));
}
.fn__gradient_title_small {
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 0;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	background: -moz-linear-gradient(90deg, var(--mc1), var(--mc2));
	background: -webkit-linear-gradient(90deg, var(--mc1), var(--mc2));
	background: linear-gradient(to right, var(--mc1), var(--mc2));
	-webkit-background-clip: text;
	-webkit-text-stroke: 4px transparent;
	color: #160f1a;
	filter: drop-shadow(0 5px 20px rgba(204, 0, 255, .15));
}






.fn_cs_about {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 150px;
}

.fn_cs_about .left_part {
	width: 57%;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
	-ms-align-items: center;
	align-items: center;
	padding: 110px 0;
}

.fn_cs_about .left_part .img_in {
	background-size: cover;
	border-radius: 10px;
	background-position: center center;
	background-repeat: no-repeat;
}

.fn_cs_about .left_part .img {
	width: 542px;
	max-width: 100%;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
	position: relative;
	z-index: 5;
}

.fn_cs_about .left_part .img img {
	min-width: 100%;
	opacity: 0;
}

.fn_cs_about .left_part .bg_overlay {
	right: 130px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}

.fn_cs_about .left_part .bg_color {
	background-color: rgba(0, 0, 0, 0.7);
}

.fn_cs_about .right_part {
	width: 43%;
	padding: 110px 100px;
}

.fn_cs_about .right_in {
	max-width: 500px;
	margin: 0 auto;
}

.fn_cs_about .fn__maintitle {
	margin-bottom: 15px;
}

.fn_cs_about .fn_cs_divider {
	margin-bottom: 25px;
}

.desc p {
	margin-bottom: 27px;
}

.desc p:last-child {
	margin-bottom: 0;
}

.fn_cs_about .desc {
	margin-bottom: 32px;
}





.fn_cs_divider {
	height: 16px;
	position: relative;
}

.fn_cs_divider .divider {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1px;
	width: 140px;
	height: 2px;
	background-color: rgba(255, 255, 255, .5);
}

.fn_cs_divider .divider:after,
.fn_cs_divider .divider:before {
	width: 16px;
	content: '';
	position: absolute;
	height: 2px;
	background-color: rgba(255, 255, 255, .5);
	transform: rotate(-65deg);
}

.fn_cs_divider .divider:before {
	left: -3px;
}

.fn_cs_divider .divider:after {
	left: 3px;
}




.fn_cs_mint {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.fn_cs_mint .left_part {
	width: 40%;
	padding-right: 100px;
}

.fn_cs_mint .right_part {
	width: 60%;
}

.fn_cs_mint .fn__maintitle {
	margin-bottom: 15px;
}

.fn_cs_mint .fn_cs_divider {
	margin-bottom: 25px;
}

.fn_cs_mint .desc {
	margin-bottom: 32px;
}











.fn_cs_steps ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -70px;
}

.fn_cs_steps li {
	width: 50%;
	padding-left: 70px;
	margin-bottom: 70px;
}

.fn_cs_steps .item {
	height: 100%;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .15);
	position: relative;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}

.fn_cs_steps .item_in {
	height: 100%;
	padding: 57px 50px 54px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, .03);
}

.fn_cs_steps h3 {
	margin-bottom: 14px;
	color: #1a1734;
}

.fn_cs_steps p {
	margin: 0;
	font-size: 16px;
	font-family: var(--hff);
	font-weight: 500;
	text-transform: uppercase;
}








.fn_cs_video {
	position: relative;

}

.fn_cs_video img {
	min-height: 240px;
	border-radius: 10px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}

a.heji_fn_videobutton,
.fn_cs_video a {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	margin: -60px 0 0 -60px;
	z-index: 25;
}

a.heji_fn_videobutton .fn__svg,
.fn_cs_video a .fn__svg {
	width: 120px;
	height: 120px;
	display: block;
	transition: all 1s ease;
	border-radius: 50%;
}

a.heji_fn_videobutton .stroke-solid,
.fn_cs_video a .stroke-solid {
	stroke-width: 6px;
	stroke: rgba(255, 255, 255, .5);
}

a.heji_fn_videobutton .icon,
.fn_cs_video a .icon {
	color: #fff;
}

a.heji_fn_videobutton:hover .stroke-solid,
.fn_cs_video a:hover .stroke-solid {
	opacity: 1;
	stroke-dashoffset: 300;
}

a.heji_fn_videobutton:hover .icon,
.fn_cs_video a:hover .icon {
	transform: scale(.8);
}

a.heji_fn_videobutton .stroke-solid,
.fn_cs_video a .stroke-solid {
	stroke-dashoffset: 0;
	stroke-dashArray: 300;
	stroke-width: 4px;
	transition: stroke-dashoffset 1s ease, opacity 1s ease;
}

a.heji_fn_videobutton .icon,
.fn_cs_video a .icon {
	transform: scale(.7);
	transform-origin: 50% 50%;
	transition: transform 200ms ease-out;
}

a.heji_fn_videobutton:hover .fn__svg,
.fn_cs_video a:hover .fn__svg {
	background-color: rgba(255, 255, 255, .05);
}

#about {
	padding: 150px 0 0px;
}

.fn_cs_section_divider {
	width: 100%;
	position: relative;
	height: 12px;
}

.fn_cs_section_divider .divider {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0 auto;
	width: fit-content;
	max-width: 100%;
	column-gap: 20px;
}

.fn_cs_section_divider .divider:before,
.fn_cs_section_divider .divider:after {
	content: '';
	position: absolute;
	background-color: rgba(255, 255, 255, .15);
	height: 1px;
	top: 5px;
	width: 5000px;
}

.fn_cs_section_divider .divider:before {
	right: 100%;
	margin-right: 20px;
}

.fn_cs_section_divider .divider:after {
	left: 100%;
	margin-left: 20px;
}

.fn_cs_section_divider span {
	height: 12px;
	position: relative;
	display: block;
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 12px;
	background-color: rgba(255, 255, 255, .05);
}

.fn_cs_section_divider span:after {
	right: -2px;
	bottom: -2px;
	top: -2px;
	left: -2px;
	position: absolute;
	color: var(--mc1);
	content: '';
	opacity: .15;
	border-radius: 12px;
	box-shadow: 0px 5px 20px;
}

.fn_cs_section_divider .short {
	width: 12px;
}

.fn_cs_section_divider .long {
	width: 200px;
}







#collection {
	overflow: hidden;
}

#collection .fn__maintitle {
	margin-bottom: 140px;
}

.fn_cs_collection {
	margin-bottom: 102px;
}

.fn_cs_collection .item {
	padding-left: 40px;
	margin-bottom: 40px;
}

.fn_cs_collection img {
	min-width: 100%;
	opacity: 0;
}

.fn_cs_collection .abs_img {
	transition: all .5s ease;
	overflow: hidden;
	border-radius: 10px;
}

.fn_cs_collection .ready .abs_img {
	transform: rotateY(-30deg) translateZ(0);
}

.fn_cs_collection .img {
	position: relative;
	perspective: 600px;
	perspective-origin: 50% 50%;
}

.fn_cs_collection .item_in {
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
	position: relative;
}

.fn_cs_collection .item_in:after {
	right: -1px;
	bottom: -1px;
	top: -1px;
	left: -1px;
	position: absolute;
	color: var(--mc1);
	content: '';
	opacity: .15;
	border-radius: 10px;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.fn_cs_collection .item:hover .item_in:after {
	opacity: .5;
}

.fn_cs_collection .collection_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
	margin-left: -40px;
	flex-wrap: wrap;
	padding-right: 40px;
}

.fn_cs_collection .collection_top .item {
	width: 31.2%;
}

.fn_cs_collection .collection_top .item:nth-child(2),
.fn_cs_collection .collection_top .item:nth-child(4) {
	width: 18.8%;
}

.fn_cs_collection .collection_bottom {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-start;
	align-items: flex-start;
	margin-left: -40px;
	flex-wrap: wrap;
	padding-left: 40px;
}

.fn_cs_collection .collection_bottom .item {
	width: 31.2%;
}

.fn_cs_collection .collection_bottom .item:nth-child(1),
.fn_cs_collection .collection_bottom .item:nth-child(3) {
	width: 18.8%;
}


#collection {
	padding: 144px 0 150px;
}













#news {
	padding: 144px 0 150px 0;
}

#news .fn__maintitle {
	margin-bottom: 140px;
}






.fn_cs_news .bottom_part {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	column-gap: 40px;
	-ms-align-items: center;
	align-items: center;
}

.fn_cs_news .bottom_part .left_bot,
.fn_cs_news .bottom_part .right_bot {
	width: 50%;
}

.fn_cs_news .bottom_part p {
	margin: 0;
	padding: 0 40px
}

.fn_cs_news .news_part {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	column-gap: 40px;
	margin-bottom: 40px;
}

.fn_cs_news .right_items {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	gap: 40px;
	width: 50%;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.fn_cs_news .left_items {
	width: 50%;
}

.fn_cs_news .left_items .blog__item {
	height: 100%;
}

.fn_cs_news .right_items .blog__item {
	height: 33.3333%;
}

.blog__item {
	padding: 40px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 10px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
}

.blog__item .image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 27px;
}

.blog__item .counter {
	margin-bottom: 15px;
}

.blog__item .counter .cc {
	width: 50px;
	height: 50px;
	display: block;
	position: relative;
	text-align: center;
	line-height: 50px;
	letter-spacing: 2px;
	font-size: 16px;
	font-family: var(--hff);
}

.blog__item .counter .cc span {
	margin-right: -2px;
	margin-top: 1px;
}

.blog__item .counter .cc:before {
	right: 0;
	bottom: 0;
	top: 0;
	left: 0;
	position: absolute;
	color: var(--mc1);
	content: '';
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
}

.blog__item .counter .cc:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	border: 3px solid transparent;
	background: -moz-linear-gradient(bottom left, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: -webkit-linear-gradient(bottom left, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: -o-linear-gradient(bottom left, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: linear-gradient(to top right, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	background-size: 300% 300%;
	-webkit-animation: animatedgradient 4s ease alternate infinite;
	animation: animatedgradient 4s ease alternate infinite;
}

.blog__item .meta {
	margin-bottom: 7px;
}

.blog__item .meta p {
	margin: 0;
}

.blog__item .title {
	margin-bottom: 30px;
}

.blog__item .title h3 {
	margin: 0;
	font-weight: 300;
	font-size: 30px;
	letter-spacing: 0;
}

.blog__item .read_more a {
	text-decoration: none;
	font-family: var(--hff);
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--bc);
	padding-left: 100px;
	position: relative;
}

.blog__item .read_more a:after {
	left: 0;
	width: 100px;
	height: 1px;
	content: '';
	position: absolute;
	top: 50%;
	background-color: #8d898e;
	transition: all .3s ease;
}

.blog__item .read_more span {
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	display: inline-block;
}

.blog__item:hover .read_more a:after {
	width: 50px;
}

.blog__item:hover .read_more span {
	opacity: 1;
	transform: translateX(-30px);
}

.blog__item .read_more a:hover {
	color: var(--mc1);
}



























#footer {
	padding: 34px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	background-color: rgba(10, 10, 10, 0.15);
}

.footer {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	-o-column-gap: 40px;
	column-gap: 40px;
	-ms-align-items: center;
	align-items: center;
}

.footer p {
	margin: 0;
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: 0;
}

.footer p a {
	color: #fff;
	text-decoration: none;
}

.footer p a:hover {
	color: var(--mc1);
}

.footer ul {
	margin: 0;
	list-style-type: none;
	margin-left: -30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

.footer li {
	margin: 0;
	margin-left: 30px;
}

.footer li a {
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: 0;
	text-decoration: none;
}









#contact {
	padding: 144px 0 150px 0;
}





.fn_cs_contact_info {
	padding: 140px 0 32px;
}

.fn_cs_contact_info p {
	margin-bottom: 27px;
}

.fn_cs_contact_info p:last-child {
	margin-bottom: 0;
}

.fn_cs_contact_info ul {
	margin: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -150px;
}

.fn_cs_contact_info li {
	padding-left: 150px;
	width: 33.333%;
	margin-bottom: 40px;
}

.fn_cs_contact_info h4 {
	margin: 0;
	margin-bottom: 9px;
	font-weight: 500;
	color: var(--bc);
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: .5px;
}

.fn_cs_contact_info h3 {
	margin: 0;
	margin-bottom: 39px;
	font-weight: 300;
	letter-spacing: 0;
	font-size: 30px;
}

.fn_cs_contact_info .item *:last-child {
	margin-bottom: 0;
}



.fn_cs_contact_form ul {
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	margin-left: -40px;
	flex-wrap: wrap;
}

.fn_cs_contact_form input[type="text"] {
	height: 80px;
	padding: 0 27px;
}

.fn_cs_contact_form input[type="text"],
.fn_cs_contact_form textarea {
	display: block;
	width: 100%;
	min-width: 100%;
	border: 2px solid rgba(255, 255, 255, .15);
	border-radius: 5px;
	background-color: transparent !important;
	outline: none;
	color: #fff;
}

.fn_cs_contact_form textarea:focus,
.fn_cs_contact_form input[type="text"]:focus {
	border-color: var(--mc1);
}

.fn_cs_contact_form li {
	width: 50%;
	padding-left: 40px;
	margin-bottom: 40px;
}

.fn_cs_contact_form li:last-child {
	margin-bottom: 0;
}

.fn_cs_contact_form li.full {
	width: 100%;
}

.empty_notice,
.returnmessage {
	padding: 20px;
	width: 100%;
	display: none;
	color: #eee;
	margin-top: 20px;
	position: relative;
}

.empty_notice:after,
.returnmessage:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	border: 3px solid transparent;
	background: -moz-linear-gradient(bottom left, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: -webkit-linear-gradient(bottom left, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: -o-linear-gradient(bottom left, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: linear-gradient(to top right, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	background-size: 300% 300%;
	-webkit-animation: animatedgradient 4s ease alternate infinite;
	animation: animatedgradient 4s ease alternate infinite;
}







.fn__checkbox {
	display: block;
	position: relative;
	padding-left: 37px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 37px;
}

.fn__checkbox .fn__svg {
	opacity: 0;
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -7px;
	color: var(--mc1);
}

.fn__checkbox p {
	margin: 0;
}

.fn__checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.fn__checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	border: 2px solid rgba(255, 255, 255, .15);
	border-radius: 5px;
}

.fn__checkbox input:checked~.fn__checkmark .fn__svg {
	opacity: 1;
}











.heji_fn_search_closer {
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
	transition: all .5s ease;
	cursor: pointer;
	transform: translateY(102%);
}

.heji_fn_search_closer.active {
	transform: translateY(0);
}

.heji_fn_searchbox.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.heji_fn_searchbox {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-102%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #130f15;
	padding: 100px 0;
	transition: all .5s ease;
}

.heji_fn_searchbox .searchbox {
	position: relative;
}

.heji_fn_searchbox input {
	display: block;
	width: 100%;
	border: none;
	background-color: transparent !important;
	padding: 0 70px 0 30px;
	height: 120px;
	border-radius: 0;
	font-size: 48px;
	letter-spacing: 0;
	font-weight: 300;
	font-family: var(--hff);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.heji_fn_searchbox a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100px;
	height: 120px;
	color: #bbb;
}

.heji_fn_searchbox a .fn__svg {
	width: 40px;
	height: 40px;
	display: block;
}








.heji_fn_leftnav.ready,
.heji_fn_leftnav_closer.ready {
	display: none;
}

.heji_fn_leftnav_closer {
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
	transition: all .5s ease;
	cursor: pointer;
	transform: translateX(102%);
}

.heji_fn_leftnav.active,
.heji_fn_leftnav_closer.active {
	transform: translateX(0);
}

.heji_fn_leftnav {
	transform: translateX(-102%);
	width: 400px;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(90deg, #1b0133 0%, #9d4fd5 50%, #1b0133 100%);
	z-index: 9999;
	padding: 70px 40px;
	transition: all .5s ease;
	overflow-y: auto;
}

.heji_fn_leftnav .navbox {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}

.heji_fn_leftnav .nav_holder {
	padding: 73px 0 64px;
	overflow: hidden;
	position: relative;
}

.heji_fn_leftnav .nav_holder .icon {
	display: none;
}

.heji_fn_leftnav .nav_holder ul {
	list-style-type: none;
	margin: 0;
	text-align: center;
	transition: all .3s ease;
}

.heji_fn_leftnav .nav_holder .sub-menu {
	margin: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: #130f15;
	left: 100%;
}

.heji_fn_leftnav .nav_holder a {
	font-size: 18px;
	letter-spacing: 0;
	line-height: 30px;
	font-family: var(--hff);
	text-decoration: none;
	display: block;
	padding: 0 17px;
}

.heji_fn_leftnav .nav_holder .fn__svg {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	color: #aaa;
	width: 12px;
	height: 12px;
	position: absolute;
	left: 100%;
	margin-left: 5px;
	top: 50%;
	margin-top: -6px;
}

.heji_fn_leftnav .nav_holder .prev {
	font-size: 18px;
}

.heji_fn_leftnav .nav_holder .prev .fn__svg {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	right: 100%;
	margin-right: 5px;
	left: auto;
	margin-left: 0;
	margin-top: -7px;
}

.heji_fn_leftnav .nav_holder li {
	margin-bottom: 13px;
}

.heji_fn_leftnav .nav_holder li:last-child {
	margin-bottom: 0;
}

.heji_fn_leftnav .copyright {
	text-align: center;
	margin-bottom: 17px;
}

.heji_fn_leftnav .copyright p {
	max-width: 250px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0;
	font-family: var(--hff);
	color: #888;
}

.heji_fn_leftnav .copyright a {
	color: #ddd;
	text-decoration: none;
}

.heji_fn_leftnav .copyright a:hover {
	color: var(--mc1);
}

.heji_fn_leftnav .social_icons ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0;
	list-style-type: none;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-left: -30px;
}

.heji_fn_leftnav .social_icons li {
	margin: 5px 0 5px 30px;
}

.heji_fn_leftnav .social_icons a {
	text-decoration: none;
	color: #777;
}

.heji_fn_leftnav .social_icons a:hover {
	color: var(--mc1);
}

.heji_fn_leftnav .social_icons .fn__svg {
	width: 20px;
	height: auto;
	display: block;
}

.heji_fn_leftnav {
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}

.heji_fn_leftnav::-webkit-scrollbar {
	width: 4px;
}

.heji_fn_leftnav:-webkit-scrollbar-track {
	background: #444;
}

.heji_fn_leftnav::-webkit-scrollbar-thumb {
	background-color: var(--mc1);
}





.heji_fn_wallet_closer.ready,
.heji_fn_walletbox.ready {
	display: none;
}

.heji_fn_wallet_closer {
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
	transition: all .5s ease;
	cursor: pointer;
	transform: translateX(-102%);
}

.heji_fn_wallet_closer.active {
	transform: translateX(0);
}

.heji_fn_walletbox {
	transform: translateX(102%);
	width: 400px;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #130f15;
	z-index: 9999;
	padding: 100px 40px;
	transition: all .5s ease;
	overflow-y: auto;
}

.heji_fn_walletbox {
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}

.heji_fn_walletbox::-webkit-scrollbar {
	width: 4px;
}

.heji_fn_walletbox:-webkit-scrollbar-track {
	background: #444;
}

.heji_fn_walletbox::-webkit-scrollbar-thumb {
	background-color: var(--mc1);
}

.heji_fn_walletbox.active {
	transform: translateX(0);
}

.heji_fn_walletbox .walletbox {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}

.heji_fn_walletbox .title_holder {
	text-align: center;
	margin-bottom: 23px;
}

.heji_fn_walletbox .title_holder h3 {
	margin: 0;
	font-size: 22px;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.heji_fn_walletbox .title_holder p {
	margin: 0;
	font-size: 16px;
	letter-spacing: 0px;
	line-height: 1.5;
	color: #888;
}

.heji_fn_items {
	margin: 0;
	list-style-type: none;
}

.heji_fn_items li {
	margin-bottom: 20px;
}

.heji_fn_items li:last-child {
	margin-bottom: 0;
}

.heji_fn_items .item {
	width: 200px;
	max-width: 100%;
	margin: 0 auto;
	padding: 23px 23px 17px;
	background-color: #130f15;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.heji_fn_items .item:hover:after {
	animation-duration: 2s;
}

.heji_fn_items .item:hover .icon:after {
	opacity: .5;
}

.heji_fn_items a {
	position: absolute;
	display: block;
	text-decoration: none;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 15;
}

.heji_fn_items .item:before {
	right: 0;
	bottom: 0;
	top: 0;
	left: 0;
	position: absolute;
	color: var(--mc1);
	content: '';
	opacity: .15;
	border-radius: 5px;
	box-shadow: 0px 5px 20px;
}

.heji_fn_items .item:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 5px;
	border: 3px solid transparent;
	background: -moz-linear-gradient(45deg, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: -webkit-linear-gradient(45deg, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	background: linear-gradient(45deg, var(--mc1), var(--mc2), var(--mc1), var(--mc2)) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	background-size: 300% 300%;
	-webkit-animation: animatedgradient 4s ease alternate infinite;
	animation: animatedgradient 4s ease alternate infinite;
}

.heji_fn_items .icon {
	width: 50px;
	height: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	background-color: #000;
	border-radius: 100%;
	position: relative;
	margin-bottom: 9px;
}

.heji_fn_items .icon img {
	z-index: 5;
	position: relative;
}

.heji_fn_items .fn__svg {
	width: 22px;
	height: 22px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -11px 0 0 -11px;
}

.heji_fn_items .icon:after {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	opacity: .15;
	left: 0;
	top: 0;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_items .text {
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--hc);
}



.creative_link {
	background-image: -moz-linear-gradient(90deg, var(--mc1), var(--mc1) 50%, #ddd 50%);
	background-image: -webkit-linear-gradient(90deg, var(--mc1), var(--mc1) 50%, #ddd 50%);
	background-image: linear-gradient(to right, var(--mc1), var(--mc1) 50%, #ddd 50%);
	background-size: 200% 100%;
	background-position: -100%;
	display: inline-block;
	position: relative;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
}

.creative_link:before {
	content: "";
	background: var(--mc1);
	display: block;
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	transition: all 0.3s ease-in-out;
}

.creative_link:hover {
	background-position: 0;
}

.creative_link:hover:before {
	width: 100%;
}


.fn__closer {
	display: none;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #9d4fd5;
	z-index: 5;
	color: #bbb;
	position: fixed;
	right: 40px;
	top: 40px;
	cursor: pointer;
	text-decoration: none;
}

.fn__closer:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: var(--mc1);
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.fn__closer:hover:after {
	opacity: .5;
}

.fn__closer span:after {
	display: block;
	height: 2px;
	position: absolute;
	background-color: #bbb;
	content: '';
	width: 24px;
	transform: rotate(45deg);
	left: 13px;
	top: 24px;
}

.fn__closer span:before {
	display: block;
	height: 2px;
	position: absolute;
	background-color: #bbb;
	content: '';
	width: 24px;
	transform: rotate(-45deg);
	left: 13px;
	top: 24px;
}








/* Page Title */
.heji_fn_pagetitle {
	padding: 239px 0 72px;
	text-align: center;
}

.heji_fn_pagetitle h3 {
	margin-bottom: 27px;
}

.heji_fn_pagetitle p a {
	color: var(--bc);
	text-decoration: none;
}

.heji_fn_pagetitle p a:hover {
	color: var(--mc1);
}

.heji_fn_pagetitle p {
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.heji_fn_pagetitle .divider {
	margin: 0 10px;
}



/* Blog List */
.heji_fn_bloglist .bloglist ul {
	margin: 0;
	padding: 100px 0 20px;
	margin-left: -40px;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: flex-start;
	align-items: flex-start;
}

.heji_fn_bloglist .bloglist li {
	margin: 0;
	width: 50%;
	padding-left: 40px;
	margin-bottom: 40px;
}



/* Pagination */
.heji_fn_pagination {
	margin-bottom: 140px;
}

.heji_fn_pagination ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin: 0;
	list-style-type: none;
	margin-left: -10px;
}

.heji_fn_pagination li {
	margin: 0 0 10px 10px;
}

.heji_fn_pagination span,
.heji_fn_pagination a {
	display: block;
	text-decoration: none;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	background-color: #000;
	border-radius: 100%;
	position: relative;
}

.heji_fn_pagination a:after,
.heji_fn_pagination span:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: var(--mc1);
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_pagination span {
	color: var(--bc);
}

.heji_fn_pagination a {
	color: #ddd;
}

.heji_fn_pagination span:hover:after,
.heji_fn_pagination a:hover:after {
	opacity: .5;
}



/* Mint Page */
.heji_fn_mint_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 180px 0 80px;
}

.heji_fn_mint_top .mint_left:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 10px;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_mint_top .mint_left {
	width: 52%;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
	position: relative;
	z-index: 5;
}

.heji_fn_mint_top .mint_left .img {
	border-radius: 10px;
	overflow: hidden;
}

.heji_fn_mint_top .mint_left .img,
.heji_fn_mint_top .mint_left .img_in {
	height: 100%;
}

.heji_fn_mint_top .mint_right {
	width: 48%;
	padding-left: 60px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}

.heji_fn_mint_top .mint_left img {
	min-width: 100%;
	opacity: 0;
}

.heji_fn_mint_top .mint_left .img_in {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.heji_fn_mint_top .view_on ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0;
	list-style-type: none;
	margin-left: -10px;
	-ms-align-items: center;
	align-items: center;
}

.heji_fn_mint_top .view_on li {
	margin: 0 0 10px 10px;
}

.heji_fn_mint_top .view_on li:nth-child(2) {
	margin-left: 20px;
}

.heji_fn_mint_top .view_on span {
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: #ddd;
}

.heji_fn_mint_top .view_on a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #000;
	color: #ddd;
	position: relative;
}

.heji_fn_mint_top .view_on a:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_mint_top .view_on .fn__svg {
	width: 22px;
	height: 22px;
}

.heji_fn_mint_top .view_on a:hover:after {
	opacity: .5;
}


.heji_fn_mint_top .fn__maintitle {
	margin-bottom: 30px;
}

.heji_fn_mint_top .desc {
	margin-bottom: 32px;
}

/* Share */
.heji_fn_share {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 11px;
}

.heji_fn_share .label {
	margin: 0;
	padding: 0;
	margin-right: 20px;
	color: var(--bc);
	font-family: var(--bff);
	font-size: 18px;
}

.heji_fn_share ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin-left: -25px;
}

.heji_fn_share li {
	margin: 5px 0px 5px 25px;
	padding: 0;
}

.heji_fn_share a {
	color: var(--bc);
	font-size: 20px;
	text-decoration: none;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.heji_fn_share a:hover {
	color: #fff;
}

/* Breadcrumbs */
.heji_fn_breadcrumbs {
	margin-bottom: 19px;
}

.heji_fn_breadcrumbs p {
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: var(--bc);
}

.heji_fn_breadcrumbs a {
	color: var(--bc);
	text-decoration: none;
}

.heji_fn_breadcrumbs .separator {
	margin: 0 9px;
}

.heji_fn_breadcrumbs a:hover {
	color: var(--mc1);
}


/* Mint Box */
.qnt {
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 400;
	color: #ddd;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.qnt .increase,
.qnt .decrease {
	cursor: pointer;
	color: #bbb;
	transition: all .3s ease;
}

.qnt .increase:hover,
.qnt .decrease:hover {
	color: var(--mc1);
}

.heji_fn_mintbox {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	margin-bottom: 73px;
}

.heji_fn_mintbox .mint_left {
	width: 60%;
	padding: 115px 50px 50px;
	position: relative;
	border-radius: 15px 0 0 15px;
}

.heji_fn_mintbox .mint_right {
	width: 40%;
	padding: 115px 50px 50px;
	border-radius: 0 15px 15px 0;
	background-color: rgba(0, 0, 0, 0.2);
	border-left: 1px solid rgba(255, 255, 255, .15);
}

.heji_fn_mintbox .mint_title {
	position: absolute;
	top: 30px;
	left: -9px;
}

.heji_fn_mintbox .mint_title span {
	position: relative;
	font-size: 16px;
	text-transform: uppercase;
	color: #000;
	letter-spacing: .5px;
	font-family: var(--hff);
	background-color: #56b201;
	padding-right: 40px;
	padding-left: 59px;
	line-height: 48px;
	font-weight: 600;
	display: inline-block;
	white-space: nowrap;
}

.heji_fn_mintbox .mint_title span:before {
	content: '';
	position: absolute;
	left: 100%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 48px 0 0 20px;
	border-color: transparent transparent transparent #56b201;
}

.heji_fn_mintbox .mint_list {
	margin-bottom: 5px;
}

.heji_fn_mintbox .mint_list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}

.heji_fn_mintbox .mint_list li {
	width: 50%;
	padding-left: 40px;
	margin-bottom: 45px;
}

.heji_fn_mintbox .mint_list .item {
	height: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	padding-bottom: 10px;
}

.heji_fn_mintbox .mint_list .item:after {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--mc1);
	transition: all .3s ease;
}

.heji_fn_mintbox .mint_list .item:hover:after {
	width: 100%;
}

.heji_fn_mintbox .mint_list h4 {
	font-size: 16px;
	color: var(--bc);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	margin-bottom: 1px;
	font-weight: 400;
}

.heji_fn_mintbox .mint_list h3 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 400;
	color: #ddd;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.heji_fn_mintbox .mint_desc p {
	max-width: 400px;
	font-size: 16px;
	margin: 0;
	line-height: 1.5;
	color: var(--bc);
	margin-top: 25px;
}

.heji_fn_mintbox .mint_desc p a {
	text-decoration: none;
	color: #ccc;
}

.heji_fn_mintbox .mint_desc p a:hover {
	color: var(--mc1);
}

.heji_fn_mintbox .mint_time {
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	padding-bottom: 10px;
	margin-bottom: 45px;
}

.heji_fn_mintbox .mint_time:after {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--mc1);
	transition: all .3s ease;
}

.heji_fn_mintbox .mint_time:hover:after {
	width: 100%;
}

.heji_fn_mintbox .mint_time h4 {
	font-size: 16px;
	color: var(--bc);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	margin-bottom: 1px;
	font-weight: 400;
}

.heji_fn_mintbox .mint_time h3 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 400;
	color: #ddd;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.heji_fn_mintbox .mright {
	max-width: 275px;
	margin: 0 auto;
}

.heji_fn_mintbox .mint_checked {
	margin-bottom: 37px;
}

.heji_fn_mintbox .mint_checked p {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 7px;
}

.heji_fn_mintbox .mint_checked p:last-child {
	margin-bottom: 0;
}

.heji_fn_mintbox .mint_checked .text {
	margin-right: 5px;
	font-family: var(--hff);
	font-size: 18px;
	letter-spacing: 0;
	color: var(--bc);
}

.heji_fn_mintbox .mint_checked .status {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	font-family: var(--hff);
	color: #ddd;
	letter-spacing: .5px;
	text-transform: uppercase;
	-ms-align-items: center;
	align-items: center;
}

.heji_fn_mintbox .mint_checked .icon {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	background-color: #56b201;
	color: #000;
	border-radius: 100%;
	margin-left: 5px;
	position: relative;
	top: -2px;
}

.heji_fn_mintbox .mint_checked .fn__svg {
	width: 8px;
	height: 8px;
	display: block;
}

.heji_fn_mintbox .mint_info p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--bc);
}

.heji_fn_nft_cats {
	margin-bottom: 102px;
}

.heji_fn_nft_cats ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}

.heji_fn_nft_cats li {
	width: 25%;
	padding-left: 40px;
	margin-bottom: 45px;
}

.heji_fn_nft_cats .item {
	height: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	position: relative;
	padding-bottom: 10px;
}

.heji_fn_nft_cats .item:after {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--mc1);
	transition: all .3s ease;
}

.heji_fn_nft_cats .item:hover:after {
	width: 100%;
}

.heji_fn_nft_cats .parent_category {
	font-size: 16px;
	color: var(--bc);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	margin-bottom: 1px;
	font-weight: 400;
}

.heji_fn_nft_cats .child_category {
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 400;
	color: #ddd;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}




/* Drops */
.heji_fn_drops .grid {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}

.heji_fn_drops .grid>li {
	width: 33.3333%;
	padding-left: 40px;
	margin-bottom: 40px;
}

.nft__item {
	width: 100%;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
	background-color: rgba(37, 37, 37, 0.05);
	position: relative;
	text-align: center;
}

.nft__item:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 10px;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.nft__item:hover:after {
	opacity: .5;
}

.nft__item .fn_title {
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: #ccc;
	line-height: 21px;
}

.nft__item .img_holder {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 22px;
}

.heji_fn_similar {
	margin-bottom: 110px;
}

.heji_fn_similar .fn__maintitle {
	margin-bottom: 15px;
}

.heji_fn_similar .fn_cs_divider {
	margin-bottom: 29px;
}



.heji_fn_collections .heji_fn_drops {
	padding: 100px 0 20px;
}









/* Blog Single */
/* Mini Items */
.heji_fn_minis {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
}

.heji_fn_minis .m_item {
	line-height: 30px;
}

.heji_fn_minis .m_item>* {
	padding: 0 15px;
	line-height: 38px;
	display: block;
	text-decoration: none;
	background-color: #000;
	color: var(--bc);
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: 0;
	position: relative;
	margin-right: 10px;
	border-radius: 30px;
}

.heji_fn_minis .m_item>*:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 30px;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_minis .m_item>*:hover:after {
	opacity: .5;
}

.heji_fn_minis .m_item a {
	text-decoration: none;
	color: var(--bc);
}

.heji_fn_minis .m_item a:hover {
	color: #ccc;
}


.heji_fn_blog_single {
	padding-top: 165px;
}

.heji_fn_blog_single .single_img {
	margin-bottom: 50px;
	border-radius: 15px;
	overflow: hidden;
}

.heji_fn_blog_single .fn__maintitle {
	margin-bottom: 13px;
}



.heji_fn_wsidebar {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
}

.heji_fn_wsidebar .sidebar_left {
	width: 100%;
	padding-right: 50px;
	padding-bottom: 110px;
}

.heji_fn_wsidebar .sidebar_right {
	width: 350px;
	min-width: 350px;
	padding-left: 50px;
	padding-bottom: 110px;
}

.heji_fn_blog_single .heji_fn_minis {
	margin-bottom: 19px;
}

.heji_fn_blog_single .single_title .fn_title {
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.3333;
	margin-bottom: 13px;
}

.heji_fn_blog_single .categories {
	color: var(--bc);
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 38px;
}

.heji_fn_blog_single .categories a {
	color: inherit;
	text-decoration: none;
}

.heji_fn_blog_single .categories a:hover {
	color: var(--hc);
}

.heji_fn_blog_single .single_desc p {
	margin-bottom: 28px;
}

.heji_fn_blog_single .single_desc p:last-child {
	margin-bottom: 0;
}

/*------------------------------------------------------------------*/
/*	xx) Author Information Box (used for single page of the blog)
/*------------------------------------------------------------------*/
.heji_fn_author_info {
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 5px;
	padding: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	margin: 52px 0 27px 0;
}

.heji_fn_author_info .info_img {
	border-radius: 10px;
	overflow: hidden;
	margin-right: 40px;
	width: 25%;
	min-width: 25%;
}

.heji_fn_author_info .info_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.heji_fn_author_info .fn_title {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 300;
	margin-bottom: 17px;
}

.heji_fn_author_info .fn_desc {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 18px;
}

.heji_fn_author_info .author_social {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}

.heji_fn_author_info .author_social li {
	margin: 5px 28px 5px 0;
	padding: 0;
}

.heji_fn_author_info .author_social a {
	color: var(--bc);
	font-size: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}

.heji_fn_author_info .author_social a:hover {
	color: var(--hc);
}



.heji_fn_tags {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	margin-right: 20px;
	color: var(--bc);
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.heji_fn_tags .label {
	margin: 0;
	padding: 0;
	margin-right: 10px;
	color: #ccc;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.heji_fn_tags a {
	text-decoration: none;
	color: inherit;
}

.heji_fn_tags span {
	margin-right: 5px;
}

.heji_fn_tags a:hover {
	color: var(--hc);
}


.widget {
	margin-bottom: 60px;
}

.widget:last-child {
	margin-bottom: 0;
}

.wid-title {
	position: relative;
	margin-bottom: 30px;
}

.wid-title .text {
	display: block;
	padding: 8px 10px;
	line-height: 24px;
	letter-spacing: .5px;
	position: relative;
	text-transform: uppercase;
	color: #ddd;
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: 500;
	background-color: rgba(37, 37, 37, 0.05);
	text-align: center;
	font-family: var(--hff);
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 30px;
}

.wid-title .text:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 30px;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.wid-title .text:hover:after {
	opacity: 1;
}

.wid-title .icon {
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	left: 100%;
	margin-left: 20px;
	top: 50%;
	margin-top: -6px;
	border-radius: 100%;
	border: 2px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
}

.wid-title .icon:after {
	position: absolute;
	content: '';
	display: block;
	width: 3000px;
	height: 1px;
	top: 5px;
	left: 100%;
	margin-left: 20px;
	background-color: rgba(255, 255, 255, .15);
}

.abs_img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 1s ease;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Top Articles Widget */
.heji_fn_widget_articles ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.heji_fn_widget_articles li {
	margin-bottom: 20px;
}

.heji_fn_widget_articles li:last-child {
	margin-bottom: 0;
}

.heji_fn_widget_articles .item {
	position: relative;
	width: 100%;
	padding: 26px 20px 24px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	transition: all .3s ease;
}

.heji_fn_widget_articles .fn_title {
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.3333;
	margin-bottom: 9px;
}

.heji_fn_widget_articles .fn_date {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: var(--bc);
	overflow: hidden;
	position: relative;
}

.heji_fn_widget_articles .post_date:after {
	width: 4px;
	height: 4px;
	content: '';
	background-color: #777;
	border-radius: 100%;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
}

.heji_fn_widget_articles .count {
	display: block;
	width: 40px;
	height: 40px;
	font-weight: 500;
	font-family: var(--hff);
	font-size: 18px;
	letter-spacing: 0;
	color: #ccc;
	background-color: #111;
	border-radius: 100%;
	text-align: center;
	line-height: 40px;
	bottom: -10px;
	right: 0;
	position: absolute;
	transition: all .3s ease;
}

.heji_fn_widget_articles .count:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_widget_articles .item:hover .fn_date .post_date {
	transform: translateY(-100%);
}

.heji_fn_widget_articles .item:hover .fn_date .comment_count {
	transform: translateY(-100%);
}


/* Custom Categories */
.heji_fn_categories ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}

.heji_fn_categories li {
	margin: 0px 0px 10px 0px;
	width: 100%;
	float: left;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	position: relative;
	overflow: hidden;
}

.heji_fn_categories li a {
	position: relative;
	width: 100%;
	max-width: calc(100% - 55px);
	padding-right: 20px;
	z-index: 5;
	font-size: 16px;
	font-weight: 500;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	line-height: 30px;
	font-style: normal;
	color: #ddd;
	text-decoration: none;
	font-family: var(--hff);
	text-transform: uppercase;
	overflow: hidden;
}

.heji_fn_categories li a span {
	position: relative;
}

.heji_fn_categories li a span:after {
	content: '';
	position: absolute;
	background-color: rgba(255, 255, 255, .1);
	height: 1px;
	left: 100%;
	margin-left: 20px;
	width: 2000px;
	top: 50%;
	margin-top: -1px;
	margin-top: -0.5px;
}

.heji_fn_categories li a span:before {
	content: '';
	position: absolute;
	background-color: rgba(255, 255, 255, .1);
	height: 1px;
	right: 100%;
	margin-right: 20px;
	width: 2000px;
	top: 50%;
	margin-top: -1px;
	margin-top: -0.5px;
}

.heji_fn_categories li a:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 100%;
	width: 2000px;
	z-index: 5;
}

.heji_fn_categories li a:before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	right: 100%;
	width: 40px;
	z-index: 5;
}

.heji_fn_categories .count {
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 11px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: #ddd;
	background-color: #000;
	border-radius: 100%;
	line-height: 30px;
	position: relative;
	z-index: 3;
}

.heji_fn_categories .count:after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	color: var(--mc1);
	top: 0;
	left: 0;
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_categories li:hover a {
	padding-left: 40px;
}

.heji_fn_categories .more {
	font-size: 13px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-family: var(--hff);
	color: #777;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	text-align: center;
	margin-top: 1px;
}

.heji_fn_categories .more:hover {
	color: #ccc;
}



.heji_fn_widget_social ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-left: -20px;
}

.heji_fn_widget_social ul li {
	margin: 5px 0px 5px 20px;
	padding: 0;
}

.heji_fn_widget_social ul a {
	color: var(--bc);
	font-size: 18px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}

.heji_fn_widget_social ul a:hover {
	color: var(--hc);
}




/* Previous & Next Box */
.heji_fn_pnb {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, .07);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.heji_fn_pnb .pnb_wrapper {
	width: 100%;
	max-width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.heji_fn_pnb .item {
	width: 46.55%;
	max-width: calc(50% - 43px);
	max-width: calc(50% - 42.5px);
	padding: 150px 0;
	position: relative;
}

.heji_fn_pnb .next {
	text-align: right;
}

.heji_fn_pnb .item_in {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.heji_fn_pnb .img {
	width: 80px;
	min-width: 80px;
	height: 80px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 5px;
	overflow: hidden;
	transform: translateZ(0);
}

.heji_fn_pnb .prev {
	padding-right: 90px;
}

.heji_fn_pnb .next {
	padding-left: 90px;
}

.heji_fn_pnb .prev .img {
	margin-right: 30px;
}

.heji_fn_pnb .next .item_in {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.heji_fn_pnb .next .img {
	margin-left: 30px;
}

.heji_fn_pnb .item .desc {
	width: 100%;
	max-width: calc(100% - 110px);
}

.heji_fn_pnb .item .fn_desc {
	color: var(--bc);
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: var(--hff);
	font-weight: 500;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.heji_fn_pnb .item .fn_title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #ddd;
}

.heji_fn_pnb .fn_trigger {
	width: 80px;
	height: 80px;
	position: absolute;
	top: 50%;
	margin-top: -40px;
	left: 50%;
	margin-left: -40px;
	background-color: rgba(15, 11, 29, 0.05);
	border: 2px solid rgba(255, 255, 255, .5);
	border-radius: 5px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.heji_fn_pnb .fn_trigger:after {
	content: '';
	position: absolute;
	z-index: -1;
	left: -2px;
	right: -2px;
	bottom: -2px;
	top: -2px;
	color: var(--mc1);
	opacity: .15;
	border-radius: 5px;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
}

.heji_fn_pnb .fn_trigger:hover:after {
	opacity: .5;
}

.heji_fn_pnb .fn_trigger .icon {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 3px;
	width: 21px;
	height: 21px;
}

.heji_fn_pnb .fn_trigger span {
	width: 3px;
	height: 3px;
	display: block;
	background-color: #ccc;
}

.heji_fn_pnb .container,
.heji_fn_pnb .item,
.heji_fn_pnb .img,
.heji_fn_pnb .fn_trigger span,
.heji_fn_pnb .fn_desc,
.heji_fn_pnb .fn_title {
	transition: all .5s ease;
}

.heji_fn_pnb .item:hover .fn_desc {
	color: #aaa;
}

.heji_fn_pnb .item:hover .fn_title {
	color: var(--mc1);
}

.heji_fn_pnb .fn_trigger:hover span {
	background-color: #fff;
}





.heji_fn_comments {
	padding: 150px 0;
}

.heji_fn_comments .comment-title {
	margin-bottom: 55px;
}

.heji_fn_comments .comment-title .fn_title {
	font-size: 22px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--bc);
}

.heji_fn_comments .list {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.heji_fn_comments .comment {
	margin-bottom: 30px;
}

.heji_fn_comments .comment:last-child {
	margin-bottom: 0;
}

.heji_fn_comments .comment-body {
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.heji_fn_comments .comment-avatar {
	width: 80px;
	min-width: 80px;
	margin-right: 30px;
}

.heji_fn_comments .comment-avatar img {
	border-radius: 100%;
}

.heji_fn_comments .comment-data {
	margin-bottom: 19px;
	margin-top: 5px;
}

.heji_fn_comments .comment-data .author {
	font-size: 20px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 8px;
}

.heji_fn_comments .comment-data .date {
	font-size: 13px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-family: var(--hff);
	color: #707381;
	text-transform: uppercase;
}

.heji_fn_comments .comment-text p {
	margin: 0;
	padding: 0;
	margin-bottom: 36px;
}

.heji_fn_comments .comment-text p:last-child {
	margin-bottom: 0;
}

.heji_fn_comments .comment-text .desc {
	margin-bottom: 22px;
}

.heji_fn_comments .fn_reply {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

.heji_fn_comments .fn_reply .fn__svg {
	width: 14px;
	height: 14px;
	display: block;
	margin-right: 5px;
}

.heji_fn_comments .fn_reply a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	line-height: 26px;
	padding: 0 10px;
	border-radius: 3px;
	text-decoration: none;
	margin: 0 5px 5px 0;
	font-size: 14px;
	font-family: var(--hff);
	color: var(--bc);
}

.heji_fn_comments .fn_reply a:hover {
	border-color: rgba(255, 255, 255, 0.5);
	color: #ddd;
}

.heji_fn_comments .comment-text-wrap {
	padding-bottom: 35px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.heji_fn_comments .comment-respond {
	padding-top: 96px;
}

.heji_fn_comments .respond-title {
	margin-bottom: 38px;
}

.heji_fn_comments .respond-title .fn_title {
	font-size: 22px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--hc);
}

.heji_fn_comments .respond-log {
	margin-bottom: 17px;
}

.heji_fn_comments .respond-log p {
	margin: 0;
	padding: 0;
	color: #ccc;
}

.heji_fn_comments .respond-log p a {
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid transparent;
}

.heji_fn_comments .respond-log p a:hover {
	border-bottom-color: inherit;
}

.heji_fn_comments .input-items {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}

.heji_fn_comments .input-item {
	width: 100%;
	padding-left: 40px;
	margin-bottom: 40px;
}

.heji_fn_comments .input-item.half-item {
	width: 50%;
}

.heji_fn_comments .comment-form textarea,
.heji_fn_comments .comment-form input[type="text"] {
	width: 100%;
	min-width: 100%;
	display: block;
}

.heji_fn_comments .comment-form input[type="text"] {
	height: 80px;
	padding: 0 27px;
}

.heji_fn_comments .heji_fn_button {
	max-width: 300px;
}






/* Coming Soon Page */
.heji_fn_coming_soon {
	padding: 260px 0;
}

.heji_fn_coming_soon .soon_title {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.heji_fn_coming_soon .soon_title h3 {
	margin: 0;
	margin-bottom: 20px;
}

.heji_fn_coming_soon .soon_title p {
	margin: 0;
}

.heji_fn_boxed_countdown {
	margin-bottom: 17px;
}

.heji_fn_boxed_countdown ul {
	margin: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.heji_fn_boxed_countdown li {
	margin: 0 0 20px 0px;
	padding-left: 20px;
}

.heji_fn_boxed_countdown .item {
	width: 140px;
}

.heji_fn_boxed_countdown .count {
	width: 100%;
	height: 120px;
	border: 1px solid rgba(255, 255, 255, .15);
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.heji_fn_boxed_countdown .count h3 {
	font-size: 60px;
}

.heji_fn_boxed_countdown span {
	display: block;
	text-align: center;
	line-height: 50px;
	font-size: 16px;
	color: #ddd;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	font-weight: 700;
}

.heji_fn_boxed_countdown li:last-child span:after,
.heji_fn_boxed_countdown li:last-child span:before {
	display: none;
}

.heji_fn_boxed_countdown span:after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	width: 12px;
	height: 12px;
	display: block;
	margin-top: -6px;
	margin-left: 4px;
	border: 2px solid rgba(255, 255, 255, .5);
	background-color: rgba(255, 255, 255, .05);
	border-radius: 100%;
}

.heji_fn_boxed_countdown span:before {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	width: 12px;
	height: 12px;
	display: block;
	margin-top: -6px;
	margin-left: 4px;
	color: var(--mc1);
	opacity: .15;
	border-radius: 100%;
	box-shadow: 0px 5px 20px;
	transition: all .3s ease;
	z-index: -1;
}



.stop1 {
	stop-color: var(--mc1)
}

.stop2 {
	stop-color: var(--mc2)
}

/* Protected Page */
.heji_fn_protected {
	padding: 250px 0;
}

.heji_fn_protected .message_holder {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.heji_fn_protected h3 {
	margin-bottom: 20px;
}

.heji_fn_protected .icon {
	display: inline-block;
	margin-bottom: 30px;
}

.heji_fn_protected .icon .fn__svg {
	width: 146px;
	height: 146px;
	display: block;
}

.heji_fn_protected .container-custom {
	max-width: 565px;
	margin: 0 auto;
}

.heji_fn_protected p {
	margin-bottom: 22px;
}

.heji_fn_protected form {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.heji_fn_protected input[type="password"] {
	width: 100%;
	margin-right: 10px;
}





/* Collection Page */
.heji_fn_collectionpage {
	padding: 150px 0;
}

.heji_fn_result_list {
	overflow: hidden;
}

.heji_fn_collection {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: flex-start;
	align-items: flex-start;
}

.heji_fn_clist {
	width: 100%;
	padding-left: 50px;
	overflow: hidden;
}

.heji_fn_clist .heji_fn_title {
	margin-bottom: 50px;
}


/* Filters */
.heji_fn_filters {
	position: sticky;
	top: 100px;
	margin-bottom: 40px;
	/*added because items has also margin bottom 40px*/
}

.heji_fn_filters {
	width: 350px;
	min-width: 350px;
}

.heji_fn_filters .filter_item {
	margin-bottom: 10px;
	border-radius: 5px;
	overflow: hidden;
}

.heji_fn_filters .filter_item:last-child {
	margin-bottom: 0;
}

.heji_fn_filters .filter_item__header {
	position: relative;
	padding: 20px 30px;
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 5px;
}

.heji_fn_filters .filter_item__header .text {
	line-height: 30px;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #ccc;
	font-family: var(--hff);
}

.heji_fn_filters .opened .filter_item__header .fn__svg {
	transform: rotate(180deg);
}

.heji_fn_filters .filter_item__header .fn__svg {
	width: 14px;
	height: 14px;
	position: absolute;
	color: var(--extra-color);
	display: block;
	top: 50%;
	margin-top: -7px;
	right: 20px;
	transition: transform 100ms ease 0s;
}

.heji_fn_filters .filter_item__content {
	display: none;
	width: 100%;
	height: initial;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 0 0 5px 5px;
	border: 1px solid rgba(255, 255, 255, .07);
}

.heji_fn_filters .ic_in {
	padding: 23px 20px 21px 30px;
}

.heji_fn_filters .items {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
	max-height: 200px;
	overflow-y: scroll;
}

.heji_fn_filters .items {
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}

.heji_fn_filters .items::-webkit-scrollbar {
	width: 2px;
}

.heji_fn_filters .items:-webkit-scrollbar-track {
	background: var(--extra-color);
}

.heji_fn_filters .items::-webkit-scrollbar-thumb {
	background-color: var(--extra-color);
}

.heji_fn_filters .items>li {
	margin: 0;
	padding: 0;
	padding-left: 10px;
	margin-bottom: 3 px;
	width: 100%;
}

.heji_fn_filters .items>li:last-child {
	margin-bottom: 0;
}

.heji_fn_filters .checkbox {
	width: 100%;
	display: block;
	position: relative;
	padding: 5px 0 5px 26px;
	cursor: pointer;
	font-size: 16px;
	color: #ddd;
	font-family: var(--hff);
}

.heji_fn_filters .checkbox .amount {
	color: var(--bc);
}

.heji_fn_filters .checkbox .checkmark .fn__svg {
	width: 12px;
	height: 12px;
	position: relative;
	top: 0px;
	left: 1px;
	display: none;
	color: #ddd;
}

.heji_fn_filters .checkbox input:checked~.checkmark {
	border-color: rgba(255, 255, 255, .3);
}

.heji_fn_filters .checkbox input:checked~.checkmark .fn__svg {
	display: block;
}

.heji_fn_filters .checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.heji_fn_filters .checkbox .checkmark {
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	left: 0;
	border: 2px solid rgba(255, 255, 255, .15);
	border-radius: 3px;
}

.heji_fn_filters .checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}


/* Result Box */
.heji_fn_result_box {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .07);
	background-color: rgba(0, 0, 0, 0.3);
	min-height: 70px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	padding: 15px 20px 5px;
	border-radius: 5px;
	margin-bottom: 50px;
}

.heji_fn_result_box>* {
	margin: 0 10px 10px 0;
}

.heji_fn_result_box .filter_count {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	font-size: 14px;
	font-family: var(--hff);
	font-weight: 300;
	height: 40px;
	line-height: 36px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 5px;
	padding: 0 0 0 20px;
	position: relative;
}

.heji_fn_result_box .filter_count span {
	position: relative;
	min-width: 34px;
	padding: 0 8px;
	display: block;
	right: 0;
	text-align: center;
	white-space: nowrap;
	margin-left: 20px;
	color: #ddd;
}

.heji_fn_result_box .filter_count span:after {
	right: 100%;
	width: 1px;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, .15);
}

.heji_fn_result_box .result_item a {
	position: relative;
	border-radius: 5px;
	display: block;
	text-decoration: none;
	padding: 0 56px 0 20px;
	line-height: 36px;
	white-space: nowrap;
	font-size: 14px;
	color: var(--bc);
	font-family: var(--hff);
	border: 1px solid rgba(255, 255, 255, .15);
}

.heji_fn_result_box .result_item span {
	color: #ddd;
}

.heji_fn_result_box .result_item a:after {
	width: 1px;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 34px;
	background-color: rgba(255, 255, 255, .15);
	transition: all .3s ease;
}

.heji_fn_result_box .result_item .fn__svg {
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	right: 12px;
	top: 13px;
	color: var(--extra-color);
}

.heji_fn_result_box .result_item a:before {
	width: 1px;
	content: '';
	position: absolute;
	top: 0;
	height: 0;
	right: 34px;
	background-color: rgba(255, 255, 255, .3);
	transition: all .3s ease;
}

.heji_fn_result_box .result_item a:hover {
	border-color: rgba(255, 255, 255, .3);
}

.heji_fn_result_box .result_item a:hover .fn__svg {
	color: #ddd;
}

.heji_fn_result_box .result_item a:hover:after {
	opacity: 0;
}

.heji_fn_result_box .result_item a:hover:before {
	height: 100%;
}

.heji_fn_result_box .clear_all {
	font-size: 14px;
	color: #666;
	letter-spacing: 0;
	font-family: var(--hff);
	text-decoration: none;
	line-height: 40px;
	padding: 0 10px;
	margin-right: 0;
}

.heji_fn_result_box .clear_all:hover {
	color: var(--mc1);
}




.heji_fn_404 {
	padding: 250px 0;
}

.heji_fn_404 .icon {
	display: inline-block;
	margin-bottom: 37px;
}

.heji_fn_404 .icon .fn__svg {
	width: 146px;
	height: 146px;
	display: block;
}

.heji_fn_404 .message_holder {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
}

.heji_fn_404 h3 {
	font-size: 200px;
	font-weight: 900;
	color: #1b0e37;
	letter-spacing: 2px;
	margin-bottom: 2px;
}

.heji_fn_404 h4 {
	margin-bottom: 20px;
}

.heji_fn_404 p {
	max-width: 420px;
	margin: 0 auto;
	margin-bottom: 22px;
}

.heji_fn_404 .container-custom {
	max-width: 565px;
	width: 100%;
	margin: 0 auto;
}

.heji_fn_404 form {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.heji_fn_404 input {
	width: 100%;
	margin-right: 10px;
}

.heji_fn_404 a {
	min-width: 153px;
}

.heji_fn_404 a .fn__svg {
	position: absolute;
	width: 18px;
	height: 18px;
	display: block;
	left: 50%;
	top: 50%;
	margin: -9px 0 0 -9px;
}


/* Privacy Policy Page */
.heji_fn_privacy {
	padding: 138px 0 150px;
}

.heji_fn_privacy h3 {
	margin-bottom: 15px;
	padding-top: 12px;
}

.heji_fn_privacy h3:before {
	top: 14px;
}

.heji_fn_privacy .fn_cs_divider {
	margin-bottom: 25px;
}

.heji_fn_privacy p {
	margin-bottom: 27px;
}

.heji_fn_privacy *:last-child {
	margin-bottom: 0;
}


@media(max-width: 1500px) {
	.heji_fn_result_list .heji_fn_drops .grid>li {
		width: 50%;
	}
}

@media(max-width: 1400px) {
	.heji_fn_wsidebar .sidebar_left {
		padding-right: 25px;
	}

	.heji_fn_wsidebar .sidebar_right {
		padding-left: 25px;
	}

	.fn__gradient_title,
	.fn__maintitle.big {
		font-size: 40px;
	}

	.fn_cs_slider .slider_top li.prev {
		left: -30px;
	}

	.fn_cs_slider .slider_top li.next {
		margin-left: 30px;
	}

	.fn_cs_counter_list li {
		padding-left: 80px;
	}

	.fn_cs_counter_list ul {
		margin-left: -80px;
	}

	.fn_cs_counter_list .divider {
		width: 80px;
	}

	.fn_cs_about .right_part {
		padding: 110px 50px;
		width: 50%;
	}

	.fn_cs_about .left_part {
		width: 50%;
	}

	.fn_cs_about .left_part .bg_overlay {
		right: 80px;
	}

	.fn_cs_steps ul {
		margin-left: -40px;
	}

	.fn_cs_steps li {
		padding-left: 40px;
		margin-bottom: 40px;
	}

	.fn_cs_steps {
		margin-bottom: 30px;
	}

	.fn_cs_mint .left_part {
		padding-right: 50px;
	}

	.fn_cs_collection .collection_top {
		margin-left: -20px;
		padding-right: 20px;
	}

	.fn_cs_collection .collection_bottom {
		margin-left: -20px;
		padding-left: 20px;
	}

	.fn_cs_collection .item {
		padding-left: 20px;
		margin-bottom: 20px;
	}

	.fn_cs_contact_info li {
		padding-left: 50px;
	}

	.fn_cs_contact_info ul {
		margin-left: -50px;
	}

	.fn_cs_contact_form li {
		padding-left: 20px;
		margin-bottom: 20px;
	}

	.fn_cs_contact_form ul {
		margin-left: -20px;
	}
}

@media(max-width: 1200px) {
	#social {
		display: none;
	}

	.heji_fn_totop .totop_inner {
		transform: rotate(-90deg);
		top: 0;
		left: 0;
	}

	.heji_fn_totop .icon {
		margin-right: 0;
	}

	.heji_fn_totop .text {
		display: none;
	}

	.fn_cs_mint {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.fn_cs_mint .left_part {
		padding-right: 0;
		width: 100%;
		margin-bottom: 80px;
	}

	.fn_cs_mint .right_part {
		width: 100%;
	}

	.fn_cs_contact_info li {
		width: 100%;
	}
}

@media(max-width: 1040px) {
	.heji_fn_blog_single {
		padding-top: 145px;
	}

	.heji_fn_wsidebar {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.heji_fn_wsidebar .sidebar_left {
		padding-right: 0;
	}

	.heji_fn_wsidebar .sidebar_right {
		padding-left: 0;
		width: 100%;
		min-width: 100%;
	}

	.heji_fn_pnb .item {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.heji_fn_protected,
	.heji_fn_404,
	.heji_fn_coming_soon {
		padding: 130px 0;
	}

	.heji_fn_404 h3 {
		font-size: 12vw;
	}

	.heji_fn_collection {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.heji_fn_filters {
		width: 100%;
		min-width: 100%;
	}

	.heji_fn_clist {
		padding-left: 0;
	}

	.heji_fn_search.hold {
		transform: translateX(300px);
	}

	.heji_fn_mint_top {
		padding-top: 150px;
	}

	#home {
		padding-top: 150px;
	}

	.heji_fn_searchbox input {
		font-size: 26px;
		height: 70px;
	}

	.heji_fn_searchbox a {
		width: 70px;
		height: 70px;
	}

	.heji_fn_searchbox a .fn__svg {
		width: 26px;
		height: 26px;
	}

	.heji_fn_mobnav {
		display: block;
	}

	.heji_fn_search {
		right: 30px;
		left: auto;
		bottom: 30px;
	}

	.totop-active .heji_fn_search {
		bottom: 90px;
	}

	#header {
		display: none;
	}

	.fn_cs_counter_list li {
		width: 50%;
	}

	.fn_cs_counter_list li:nth-of-type(2n) .divider {
		display: none;
	}

	.fn_cs_about {
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		-o-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.fn_cs_about .left_part {
		width: 100%;
		justify-content: center;
	}

	.fn_cs_about .left_part .bg_overlay {
		right: 0;
	}

	.fn_cs_about .right_part {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 0;
	}

	.fn_cs_about .right_in {
		max-width: 100%;
	}

	.fn_cs_news .news_part {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		margin-bottom: 20px;
	}

	.fn_cs_news .left_items {
		width: 100%;
		margin-bottom: 20px;
	}

	.fn_cs_news .right_items {
		width: 100%;
		gap: 20px;
	}

	.fn_cs_news .bottom_part {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.fn_cs_news .bottom_part .left_bot,
	.fn_cs_news .bottom_part .right_bot {
		width: 100%;
	}

	.fn_cs_news .bottom_part .right_bot {
		margin-top: 20px;
	}

	.fn_cs_news .bottom_part p {
		padding: 0;
	}

	.fn_cs_news .item {
		padding: 30px;
	}
}

@media(max-width: 900px) {
	.heji_fn_mintbox .mint_title span {
		padding-left: 49px;
	}

	.heji_fn_mint_top {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.heji_fn_mint_top .mint_left {
		width: 100%;
		margin-bottom: 50px;
	}

	.heji_fn_mint_top .mint_right {
		width: 100%;
		padding-left: 0;
	}

	.heji_fn_mintbox {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.heji_fn_mintbox .mint_left {
		width: 100%;
		padding-left: 40px;
		padding-right: 40px;
	}

	.heji_fn_mintbox .mint_right {
		width: 100%;
		padding: 50px 40px;
	}

	.heji_fn_mintbox .mright {
		max-width: 100%;
	}

	.heji_fn_nft_cats li {
		width: 50%;
	}

	.heji_fn_drops .grid>li {
		width: 50%;
	}
}

@media(max-width: 768px) {
	.heji_fn_pnb .fn_trigger {
		position: relative;
		top: 0;
		margin-top: 0;
	}

	.heji_fn_pnb .pnb_wrapper {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.heji_fn_pnb .item {
		width: 100%;
		max-width: 100%;
	}

	.heji_fn_comments .input-items {
		margin-left: -20px;
	}

	.heji_fn_comments .input-item.half-item {
		width: 100%;
	}

	.heji_fn_comments .input-item {
		padding-left: 20px;
		margin-bottom: 20px;
	}

	.heji_fn_result_list .heji_fn_drops .grid>li {
		width: 100%;
	}

	.fn_cs_collection .collection_top {
		padding-right: 0px;
	}

	.fn_cs_collection .collection_bottom {
		padding-left: 0px;
	}

	.heji_fn_drops .grid>li {
		width: 100%;
	}

	.heji_fn_bloglist .bloglist li {
		width: 100%;
	}

	.heji_fn_leftnav .copyright p,
	.heji_fn_leftnav .nav_holder ul {
		text-align: left;
	}

	.heji_fn_leftnav .social_icons ul {
		justify-content: flex-start;
	}

	.fn__closer {
		display: block;
	}

	.heji_fn_leftnav,
	.heji_fn_items .item,
	.heji_fn_walletbox {
		width: 100%;
	}

	.heji_fn_leftnav .copyright p {
		max-width: 100%;
	}

	.fn_cs_slider .slider_top li.next {
		margin-left: 10px;
	}

	.fn_cs_slider .slider_top li.prev {
		left: -10px;
	}

	.fn_cs_slider .slider_top .img {
		left: 10px;
		right: 10px;
		top: 10px;
		bottom: 10px;
	}

	.footer {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}

	.footer .left_part {
		margin-bottom: 10px;
	}

	.fn_cs_collection .item {
		width: 50% !important;
	}

	.fn_cs_contact_form li {
		width: 100%;
	}

	.heji_fn_totop {
		right: 20px;
		bottom: 20px;
	}

	.heji_fn_search {
		right: 20px;
		bottom: 20px;
	}

	.totop-active .heji_fn_search {
		bottom: 80px;
	}

	.heji_fn_button {
		padding: 0 24px;
	}

	.heji_fn_boxed_countdown li {
		width: 25%;
	}

	.heji_fn_boxed_countdown .item {
		width: 100%;
	}

	.heji_fn_boxed_countdown .count {
		height: 100px;
		height: 17vw;
	}

	.heji_fn_boxed_countdown .count h3 {
		font-size: 40px;
		font-size: 8vw;
	}

	.heji_fn_boxed_countdown span {
		font-size: 14px;
	}
}

@media(max-width: 480px) {
	.heji_fn_pnb .fn_trigger {
		left: 0;
		margin-left: 0;
		width: 100%;
	}

	.heji_fn_comments .comment-avatar {
		margin-right: 20px;
	}

	.heji_fn_author_info {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		padding: 30px 20px;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}

	.heji_fn_author_info .info_img {
		width: 50%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.heji_fn_protected form {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}

	.heji_fn_protected input[type="password"] {
		margin: 0 0 10px 0;
	}

	.heji_fn_nft_cats li,
	.heji_fn_mintbox .mint_list li,
	.fn_cs_steps li {
		width: 100%;
	}

	.fn_cs_collection .item {
		width: 100% !important;
	}

	.fn_cs_counter_list .item {
		padding: 0 0 20px 0;
	}

	.fn_cs_counter_list .divider {
		position: absolute;
		top: 100%;
		margin-top: 5px;
		left: 50%;
		margin-left: -40px;
		display: block !important;
	}

	.fn_cs_counter_list li:last-child .divider {
		display: none !important;
	}

	.fn_cs_counter_list li {
		width: 100%;
	}

	.social a,
	.social a:after {
		font-size: 14px;
	}
}




/* Since v3.0 */
#roadmap {
	padding: 144px 0 150px 0;
}

#roadmap .fn__maintitle {
	margin-bottom: 140px;
}

.fn_cs_roadmap .step_holder {
	padding: 20px;
	background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='15' ry='15' stroke='%23CCCCCC' stroke-width='1' stroke-dasharray='9%2c7' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
	border-radius: 15px;
	margin-bottom: 40px;
	overflow: hidden;
}

.fn_cs_roadmap .step_holder .fn__svg {
	width: auto;
	height: 15px;
	position: absolute;
}

.fn_cs_roadmap .step_in {
	width: 0;
	height: 30px;
	position: relative;
	overflow: hidden;
	transition: all .5s ease;
	background-image: url(../img/roadmap.png);
	background-repeat: repeat-x;
	max-width: 100% !important;
}

.fn_cs_roadmap .step_in .fn__svg {
	display: none;
}

.fn_cs_roadmap .slider_holder {
	position: relative;
}

.fn_cs_roadmap .slider_holder:after {
	z-index: -1;
	position: absolute;
	top: 9px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: rgba(255, 255, 255, .2);
	content: '';
}

.fn_cs_roadmap .swiper-slide .item {
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 10px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
	position: relative;
}

.fn_cs_roadmap .swiper-wrapper {
	padding: 60px 0 20px;
}

.fn_cs_roadmap .swiper-slide .icon {
	position: absolute;
	display: block;
	left: 40px;
	width: 20px;
	height: 20px;
	background: -moz-linear-gradient(90deg, var(--mc1), var(--mc2));
	background: -webkit-linear-gradient(90deg, var(--mc1), var(--mc2));
	background: linear-gradient(to right, var(--mc1), var(--mc2));
	border-radius: 100%;
	bottom: 100%;
	margin-bottom: 41px;
}

.fn_cs_roadmap .swiper-slide .icon:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #1d1224;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
}

.fn_cs_roadmap .swiper-slide .phase {
	display: block;
	width: fit-content;
	max-width: 100%;
	color: #9ba0b8;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0 40px;
	background-color: rgba(255, 255, 255, .1);
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	height: 40px;
	line-height: 40px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.fn_cs_roadmap .swiper-slide .item_in {
	padding: 25px 40px 40px;
}

.fn_cs_roadmap .swiper-slide .date {
	margin: 0;
	margin-bottom: 7px;
}

.fn_cs_roadmap .swiper-slide .title {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 20px;
}

.fn_cs_roadmap .swiper-slide .desc {
	margin: 0;
}

/* .video-section {
	aspect-ratio: 2;
	position: relative;
}

.video-section video {
	padding: 20px;
	background-color: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 10px;
	position: absolute;
	margin-bottom: 50px;
}

.video-1 {
	width: 15%;
	left: 10%;
	top: 10%;
	transform: rotate(10deg);
}

.video-2 {
	width: 20%;
	left: 30%;
	bottom: 10%;
	transform: rotate(-10deg);
}

.video-3 {
	width: 15%;
	right: 10%;
	bottom: 10%;
	transform: rotate(-10deg);
}

.video-4 {
	width: 15%;
	right: 30%;
	top: 10%;
	transform: rotate(10deg);
}

@media only screen and (max-width: 900px) {
	.video-section {
		margin-top: -100px;
		aspect-ratio: 1.5;
		position: relative;
	}

	.video-section video {
		padding: 10px;
	}
}

@media only screen and (max-width: 600px) {
	.video-section {
		aspect-ratio: 1;
		position: relative;
	}

	.video-section video {
		padding: 5px;
	}

	.video-1 {
		width: 25%;
		left: 5%;
	}
	.video-2 {
		width: 40%;
		left: 10%;
	}
	.video-3 {
		width: 25%;
		right: 5%;
	}
	.video-4 {
		width: 25%;
		right: 10%;
	}
} */

.video-section {
	padding: 0 5%;
	aspect-ratio: 2;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10vw;
}

.video-container {
	width: 20%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .5);
	aspect-ratio: 1;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
}

.winner-image {
	width: 50%;
}

.video-container video {
	display: block;
	width: 90%;
	height: 90%;
	object-fit: cover;
	border-radius: 50%;
}

.first-video {
	left: 5%;
	top: 0;
}

.second-video {
	right: 5%;
	top: 0;
}

.third-video {
	right: 5%;
	bottom: 0;
}

.fourth-video {
	left: 5%;
	bottom: 0;
}

@media only screen and (max-width: 900px) {
	.video-section {
		margin-top: -100px;
	}
}