@charset "utf-8";
/*
Theme Name: Neoh
Theme URI: https://themeforest.net/item/neoh-nft-portfolio-wordpress-theme/38557825
Description: Neoh – NFT Portfolio WordPress Theme
Text Domain: neoh
Author: Frenify
Author URI: http://themeforest.net/user/frenify
Version: 1.1.1
Tested up to: 5.5.3
Requires PHP: 5.6
License: Located in 'licensing' folder
License URI: license.txt
Tags: custom-header, custom-background, threaded-comments, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/
/*

	@Author: Frenify
	@URL: http://themeforest.net/user/frenify


	This file contains the styling for the actual theme, this
	is the file you need to edit to change the look of the
	theme.

	This files contents are outlined below.
	
	01) Root
	02) Preloader
	03) Base CSS
	04) Right Navigation
	05) Header
	06) Wrapper
	07) Page Title
	08) Overlays
	09) Index Page
	10) Animated Title
	11) Moving Blog List
	12) Main Button
	13) Totop Button
	14) Footer
	15) Social Icons
	16) 404 Page
	17) Protected Page
	18) Search Page
	19) Archive Page
	20) All pages without footer
	21) Magic Cursor
	22) Single Pages (like: post single (blog single), roadmap single
	23) Share
	24) Sidebar
	25) Mini Items
	26) Author Information Box (used for single page of the blog)
	27) Tags
	28) Previous & Next Box
	29) Widgets
	30) About Widget
	31) Social Widget
	32) Comments
	33) Top Articles Widget
	34) Custom Categories
	35) Pagelinks
	36) Pagination
	37) Collection Page: Structure
	38) Collection Page: Filters
	39) Collection Page: Result Box
	40) NFT Items
	41) Lined Title
	42) Modalbox
	43) Product Preloader
	44) Gallery 1-2
	45) RoadMap List
	46) NFT Single
	47) Contact Form 7
	48) RESPONSIVE



*/
/*------------------------------------------------------------------*/
/*	01) Root
/*------------------------------------------------------------------*/
:root{
	--sbc: #0a0a0a; 				/* Website Background Color */
	--pbc: #111;					/* Page Background Color */
	--mc: #78f701;					/* Main Color */
	--hc: #fff;						/* Heading Color */
	--hhc: #78f701;					/* Heading Hover Color */
	--bc: #bbb; 					/* Body Color */
	--extra-color: #666;			/* Extra Color */
	--iff: 'Heebo', sans-serif;		/* Input Font Family */
	--hff: 'Heebo', sans-serif;		/* Heading Font Family */
	--bff: 'Nunito', sans-serif;	/* Body Font Family */
	--eff: 'Open Sans', sans-serif; /* Extra Font Family */
}
*:after,*:before,*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*------------------------------------------------------------------*/
/*	02) Preloader
/*------------------------------------------------------------------*/
.neoh_fn_preloader.ready{
	opacity: 0;
	visibility: hidden;
}
.neoh_fn_preloader{
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	background-color: var(--sbc);
}
.neoh_fn_preloader .spinner{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -38px 0 0 -38px;
	width: 76px;
    height: 76px;
    background: transparent;
    border-top: 4px solid var(--mc);
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s neoh_spin linear infinite;
    animation: 1s neoh_spin linear infinite;
}
@-webkit-keyframes neoh_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes neoh_spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*------------------------------------------------------------------*/
/*	03) Base CSS
/*------------------------------------------------------------------*/
body, html{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}
body:after{
	clear: both;
	display: table;
	content: '';
}
html{
	height: auto;
}
body{
	font-family: var(--bff);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.44;
	font-weight: 400;
	color: var(--bc);
	position: relative;
	background-color: var(--sbc);
	min-height: 100vh;
	
	word-break: break-word;
	
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}
.admin-bar{
	min-height: calc(100vh  - 32px);
}
@media(max-width: 782px){
	.admin-bar{
		min-height: calc(100vh  - 46px);
	}
}
p{
	letter-spacing: 0;
	margin-bottom: 20px;
}
@media(max-width: 1040px){body{overflow: hidden;}}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
.fn__svg{
	width: 20px;
	height: 20px;
	fill: currentcolor;
}
.mobile_retina_logo,
.retina_logo{
	display: none;
}
@media (-webkit-min-device-pixel-ratio: 1.1),(min-device-pixel-ratio: 1.1),(min-resolution: 120dpi){
	.mobile_retina_logo,
	.retina_logo{display: block;}
	.mobile_logo,
	.desktop_logo{display: none;}
}
.neoh_fn_hidden{
	display: none;
}
.container .container{
	padding: 0;
	margin: 0;
	max-width: 100%;
}
.container.wide{
	max-width: 1760px;
}
.frenify-ready[data-bg-img]{
	-webkit-animation: none;
    animation: none;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
[data-bg-img]{
    background: linear-gradient(45deg, #000, #b2b0b0);
    background-size: 400% 400%;

    -webkit-animation: data-bg-img 1s ease infinite;
    -moz-animation: data-bg-img 1s ease infinite;
    animation: data-bg-img 1s ease infinite;
}
@-webkit-keyframes data-bg-img{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes data-bg-img{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes data-bg-img{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

input[type="password"],
input[type="url"],
input[type="tel"],
input[type="email"],
input[type="text"]{
	background-color: #181818;
	border-radius: 5px;
	border: 2px solid var(--extra-color);
	font-size: 16px;
	letter-spacing: 0;
	line-height: 46px;
	height: 50px;
	padding: 0 15px;
	color: #fff;
}
textarea{
	background-color: #181818;
	border-radius: 5px;
	border: 2px solid var(--extra-color);
	font-size: 16px;
	letter-spacing: 0;
	padding: 13px 15px;
	height: 250px;
	color: #fff;
}
textarea:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus{
	outline: none;
	background-color: #181818;
	border-color: #aaa;
}

/*------------------------------------------------------------------*/
/*	04) Right Navigation
/*------------------------------------------------------------------*/
.neoh_fn_nav{
	position: fixed;
	height: 100vh;
	width: 50%;
	min-width: 850px;
	z-index: 999;
	right: 0;
	top: 0;
	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: space-between;
}
.admin-bar .neoh_fn_nav{
	top: 32px;
	height: calc(100vh - 32px);
}
@media(max-width: 782px){
	.admin-bar .neoh_fn_nav{
		top: 46px;
		height: calc(100vh - 46px);
	}
}
@media(max-width: 600px){
	.admin-bar .neoh_fn_nav{
		top: 46px;
		height: 100vh;
	}
}
.neoh_fn_nav .trigger{
	position: absolute;
	top: 30px;
	right: 73px;
	z-index: 15;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.neoh_fn_nav .trigger.opened{
	opacity: 1;
	visibility: visible;
}
.neoh_fn_nav .nav_content{
	position: relative;
	z-index: 5;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	padding-left: 80px;
	padding-left: 4.16vw;
	padding-left: calc(20px + 3.1vw);
	padding-right: 80px;
	padding-right: 4.16vw;
	padding-right: calc(20px + 3.1vw);
	padding-top: 150px;
	padding-top: 7.81vw;
	padding-top: calc(50px + 5.2vw);
	padding-bottom: 35px;
	overflow-y: scroll;
	overflow-x: hidden;
}
.neoh_fn_nav .nav_content{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.neoh_fn_nav .nav_content::-webkit-scrollbar{
  width: 4px;
}
.neoh_fn_nav .nav_content:-webkit-scrollbar-track{
  background: #444;
}
.neoh_fn_nav .nav_content::-webkit-scrollbar-thumb{
  background-color: #999;
  border-radius: 10px;
  border: 3px solid #444;
}
.neoh_fn_nav .nav_menu{
	margin-bottom: 38px;
}
.neoh_fn_nav .nav_menu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.neoh_fn_nav ul.sub-menu{
	display: none;
	margin: 25px 0 4px 30px;
}
.neoh_fn_nav .nav_menu ul.sub-menu li{
	margin-bottom: 27px;
}
.neoh_fn_nav .nav_menu ul.sub-menu li:last-child{
	margin-bottom: 0px;
}
.neoh_fn_nav ul.sub-menu a{
	font-size: 20px !important;
}
.neoh_fn_nav .nav_menu ul.sub-menu a:before{
	height: 1px;
}
.neoh_fn_nav .nav_menu li{
	margin-bottom: 30px;
	transition: all .5s ease;
	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: flex-start;
	align-items: flex-start;
}
.neoh_fn_nav .nav_menu li:last-child{
	margin-bottom: 0;
}
.neoh_fn_nav .nav_menu a{
	font-size: 36px;
	display: block;
	text-decoration: none;
	font-family: var(--hff);
	color: var(--hc);
	line-height: 1;
}
.neoh_fn_nav .nav_menu a {
	background-image: linear-gradient(
	to right,
	var(--mc),
	var(--mc) 50%,
	var(--hc) 50%
	);
	background-size: 200% 100%;
	background-position: -100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.5s ease-in-out;
	position: relative;
}
.neoh_fn_nav .nav_menu a:before {
	content: '';
	background: var(--mc);
	display: block;
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 3px;
	transition: all 0.5s ease-in-out;
}
.neoh_fn_nav .nav_menu .menu-item-has-children > a:after{
	content: '';
	position: absolute;
	left: 100%;
	margin-left: 10px;
	width: 4px;
	height: 4px;
	background-color: var(--mc);
	border-radius: 100%;
	top: 50%;
	margin-top: -2px;
}
.neoh_fn_nav .nav_menu a:hover {
	background-position: 0;
	background-image: linear-gradient(
	to right,
	var(--mc),
	var(--mc) 50%,
	transparent 50%
	);
}
.neoh_fn_nav .nav_menu a:hover::before {
	width: 100%;
}
.neoh_fn_nav .nav_menu .active a{
	color: var(--mc);
}
.neoh_fn_nav .nav_buttons{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.neoh_fn_nav .nav_buttons a{
	margin: 5px 20px 5px 0;
	text-transform: none;
}
.neoh_fn_nav .nav_buttons a:last-child{
	margin-right: 0;
}
.neoh_fn_nav .search_wrap{
	margin-top: 15px;
}
.search_wrap form{
	width: 100%;
	max-width: 563px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
}
.search_wrap input[type="text"]{
	width: 100%;
}
.search_wrap input[type="submit"]{
	width: 153px;
	min-width: 153px;
	height: 50px;
	border: 2px solid var(--extra-color);
	margin-left: 10px;
	background-color: transparent !important;
	border-radius: 5px;
	position: relative;
	z-index: 5;
}
.search_wrap input[type="submit"]:hover{
	border-color: var(--mc);
}
.search_wrap a{
	position: absolute;
	width: 153px;
	height: 50px;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	text-decoration: none;
	z-index: 1;
	color: #f5f5f5;
}
.search_wrap .fn__svg{
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -9px 0 0 -9px;
	transform: rotate(-90deg);
}
.neoh_fn_nav .nav_bg,
.neoh_fn_nav .nav_bg_color,
.neoh_fn_nav .nav_bg_img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.neoh_fn_nav .nav_bg{
	z-index: 1;
}
.neoh_fn_nav .nav_bg_color{
	z-index: 3;
	background-color: #111;
}
.neoh_fn_nav .nav_bg_img{
	z-index: 2;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.neoh_fn_nav .nav_footer{
	z-index: 5;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	position: relative;
	justify-content: space-between;
    padding: 32px 0 28px;
	padding-left: 80px;
	padding-left: 4.16vw;
	padding-left: calc(20px + 3.1vw);
	padding-right: 80px;
	padding-right: 4.16vw;
	padding-right: calc(20px + 3.1vw);
}
.neoh_fn_nav .nav_footer .nf_left{
	margin-right: 30px;
}
.neoh_fn_nav .nav_footer .nf_right{
	max-width: 50%;
}
.neoh_fn_nav .nav_footer:after{
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	background-color: rgba(255,255,255,.1);
	left: 0;
	top: 0;
	transition: all .5s .3s ease;
}
.neoh_fn_nav .nav_footer .nf_left p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: var(--hff);
}
.neoh_fn_nav .nav_footer .nf_left p a{
	text-decoration: none;
	color: #eee;
}
.neoh_fn_nav .nav_footer .nf_left p a:hover{
	color: #fff;
}
.neoh_fn_nav .neoh_fn_social_list ul{
	justify-content: flex-end;
}
.nav_overlay{
	position: fixed;
	width: 100%;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	transition: all 1s .7s cubic-bezier(0.02, 0.19, 0, 0.96);
	height: 100vh;
	transform: translateX(-102%);
	cursor: pointer;
}
.nav_overlay.go{
	transition: all 1s .3s cubic-bezier(0.02, 0.19, 0, 0.96);
	transform: translateX(0%);
}
.neoh_fn_nav{
	transition: all 1s .3s cubic-bezier(0.02, 0.19, 0, 0.96);
	transform: translateX(102%);
}
.neoh_fn_nav.go{
	transition: all 1s 1.3s cubic-bezier(0.02, 0.19, 0, 0.96);
	transform: translateX(0%);
}
.neoh_fn_nav .nav_bottom,
.neoh_fn_nav .nav_footer{
	opacity: 0;
	transition: opacity .3s ease;
}
.neoh_fn_nav .nav_bottom.ready,
.neoh_fn_nav .nav_footer.ready{
	opacity: 1;
}
.neoh_fn_nav .nav_footer.ready:after{
	width: 100%;
}
/*------------------------------------------------------------------*/
/*	05) Header
/*------------------------------------------------------------------*/
.neoh_fn_header{
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	transition: all .3s ease;
	padding: 30px 0;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.admin-bar .neoh_fn_header{
	top: 32px;
}
@media(max-width: 782px){
	.admin-bar .neoh_fn_header{
		top: 46px;
	}
}
@media(max-width: 600px){
	.frenify-html{
		margin-top: 0 !important;
	}
	.admin-bar .neoh_fn_header{
		top: 46px;
		position: absolute;
	}
}
.neoh_fn_header.fixer{
	background-color: #111;
	padding: 20px 0;
}
.neoh_fn_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;
}
.trigger_in{
	cursor: pointer;
	font-family: var(--hff);
	letter-spacing: 1px;
	font-size: 14px;
	text-transform: uppercase;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	padding: 10px;
	padding-right: 65px;
	position: relative;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	transition: all .3s ease;
}
.trigger.is-active,
.trigger:hover .trigger_in{
	color: var(--mc);
}
.trigger.is-active .hamb_a{
	top: 6px;
	transform: rotate(45deg);
}
.trigger.is-active .hamb_c{
	top: 6px;
	transform: rotate(-45deg);
}
.trigger.is-active .hamb_b{
	transform: translateX(100%);
	opacity: 0;
}
.trigger.is-active .hamb_a,
.trigger.is-active .hamb_b,
.trigger.is-active .hamb_c{
	background-color: #eee;
}
.trigger_in .hamb{
	width: 50px;
	height: 15px;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -7px;
	margin-top: -7.5px;
}
.trigger_in .hamb_a,
.trigger_in .hamb_b,
.trigger_in .hamb_c{
	position: absolute;
	width: 50px;
	height: 1px;
	background-color: #aaa;
	left: 0;
	transition: all .3s ease;
}
.trigger_in .hamb_a{top: 0;}
.trigger_in .hamb_b{top: 7px;}
.trigger_in .hamb_c{top: 14px;}
.trigger_in .text{
	line-height: 1;
}
/*------------------------------------------------------------------*/
/*	06) Wrapper
/*------------------------------------------------------------------*/
.neoh-fn-wrapper{
	width: 100%;
	position: relative;
}
.neoh_fn_content{
	position: relative;
	width: 100%;
}
/*------------------------------------------------------------------*/
/*	07) Page Title
/*------------------------------------------------------------------*/
.neoh_fn_pagetitle{
	width: 100%;
	position: relative;
	padding: 244px 0 143px;
}
.neoh_fn_pagetitle:before,
.neoh_fn_pagetitle:after{
	clear: both;
	display: table;
	content: '';
}
.neoh_fn_pagetitle .bg_color{
	background-color: rgba(0,0,0,0.85);
}
.neoh_fn_pagetitle .pt_content{
	position: relative;
	z-index: 3;
	text-align: center;
}
.neoh_fn_pagetitle .fn__title{
	margin: 0;
	padding: 0;
	font-size: 72px;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 1;
	font-weight: 300;
	margin-bottom: 11px;
}
.neoh_fn_pagetitle .fn_desc{
	margin: 0;
	padding: 0;
	color: #aaa;
	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;
	justify-content: center;
}
.neoh_fn_pagetitle .fn_desc a{
	color: #aaa;
	text-decoration: none;
}
.neoh_fn_pagetitle .fn_desc a:hover{
	color: var(--mc);
}
.neoh_fn_breadcrumbs:after,
.neoh_fn_breadcrumbs:before{
	content: '';
	display: table;
	clear: both;
}
.breadcrumbs{
	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;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.breadcrumbs li{
	margin: 0;
	padding: 0;
	color: #aaa;
}
.breadcrumbs a{
	text-decoration: none;
	color: #aaa;
}
.breadcrumbs a:hover{
	color: var(--mc);
}
.breadcrumbs .separator{
	margin: 0 9px;
}
/*------------------------------------------------------------------*/
/*	08) Overlays
/*------------------------------------------------------------------*/
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;
}
.bg_overlay .bg_color{
	z-index: 2;
}
/*------------------------------------------------------------------*/
/*	09) Index Page
/*------------------------------------------------------------------*/
.index_page{
	width: 100%;
}
.index_page:before,
.index_page:after{
	clear: both;
	display: table;
	content: '';
}
.neoh_fn_blog_page{
    padding: 150px 0 145px;
}
/*------------------------------------------------------------------*/
/*	10) Animated Title
/*------------------------------------------------------------------*/
.fn_animated_text{
	opacity: 0;
}
.elementor-editor-active .fn_animated_text,
.fn_animated_text.ready{
	opacity: 1;
}
.fn_animated_text span{
    animation: fn_animated_text 0.8s both;
}
.fn_animated_text em{
	opacity: 0;
}
@keyframes fn_animated_text {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 1;
    text-shadow: 0 0 25px white;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
/*------------------------------------------------------------------*/
/*	11) Moving Blog List
/*------------------------------------------------------------------*/
.neoh_fn_moving_box{
	position: fixed;
    width: 370px;
    height: 270px;
    z-index: 999;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    right: 100%;
    margin-right: 60px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
	border-radius: 5px;
	transition: transform .5s,opacity .5s,visibility .5s;
}
.neoh_fn_moving_box.active{
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.neoh_fn_moving_blog .img_holder{
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
	z-index: -2;
	position: absolute;
	margin: 0;
	padding: 0;
	outline: none;
	visibility: hidden;
	margin-bottom: 40px;
}
.neoh_fn_moving_blog .img_holder img{
	min-width: 100%;
	border-radius: 5px;
}
.neoh_fn_moving_blog .neoh_fn_postlist{
	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;
	padding: 0;
	list-style-type: none;
	margin-left: -50px;
}
.neoh_fn_moving_blog .post_item{
	padding-left: 50px;
	margin-bottom: 50px;
	width: 100%;
}
.neoh_fn_moving_blog .sticky .item{
	outline: 2px solid var(--extra-color);
}
.neoh_fn_moving_blog .item{
	width: 100%;
	padding: 30px;
	background-color: #0a0a0a;
	border-radius: 5px;
	overflow: hidden;
}
.fn_page_blog:after,
.fn_page_blog:before{
	clear: both;
	display: table;
	content: '';
}
.fn_page_blog{
	padding: 150px 0 100px;
}
.neoh_fn_moving_blog .fn_date{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 26px;
}
.neoh_fn_moving_blog .fn_date span{
	background-color: #252525;
    line-height: 30px;
    text-align: center;
    display: block;
    position: relative;
    transition: all .3s ease;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--hff);
    letter-spacing: 0px;
	padding: 0 15px;
}
.neoh_fn_moving_blog .fn_date span:after{
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    transition: all .3s ease;
	border-width: 30px 0 0 12px;
    border-left-color: #252525;
    left: 100%;
    top: 0;
}
.neoh_fn_moving_blog .fn_title{
	margin: 0;
	padding: 0;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 18px;
}
.neoh_fn_moving_blog .fn_desc{
	margin-bottom: 23px;
}
.neoh_fn_moving_blog .fn_read{
	margin-bottom: 0;
}

.neoh_fn_moving_blog h3{
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 18px;
}
.neoh_fn_moving_blog h3 a{
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}
/*------------------------------------------------------------------*/
/*	12) Main Button
/*------------------------------------------------------------------*/
.contact__form input[type="submit"],
#respond input[type="submit"],
.neoh_fn_button{
	display: block;
	width: fit-content;
	max-width: 100%;
	text-decoration: none;
	color: var(--bc);
	font-size: 16px;
	text-transform: uppercase;
	font-family: var(--hff);
	border: 2px solid var(--extra-color);
	border-radius: 5px;
	line-height: 46px;
	padding: 0 28px;
	position: relative;
	text-align: center;
	letter-spacing: .5px;
	outline: none;
	background: none !important;
	outline-color: transparent;
}
.neoh_fn_button.has_icon{
	padding: 0 20px 0 73px;
}
.neoh_fn_button .text{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.neoh_fn_button.full{
	width: 100%;
	line-height: 66px;
}
.neoh_fn_button .icon{
	display: block;
	position: absolute;
	left: 14px;
	top: 50%;
	margin-top: -11px;
}
.neoh_fn_button .icon:after{
	content: '';
	width: 2px;
	height: 26px;
	background-color: var(--extra-color);
	left: 100%;
	margin-left: 14px;
	top: 50%;
	margin-top: -13px;
	position: absolute;
}
.neoh_fn_button .icon:before{
	content: '';
	width: 2px;
	height: 0;
	background-color: var(--mc);
	left: 100%;
	margin-left: 14px;
	top: -2px;
	position: absolute;
	z-index: 3;
	transition: all .3s ease;
}
.neoh_fn_button .fn__svg{
	width: 22px;
	height: 22px;
	display: block;
}
.contact__form input[type="submit"]:hover,
#respond input[type="submit"]:hover,
.neoh_fn_button:hover{
	border-color: var(--mc);
	color: #eee;
}
.neoh_fn_button:hover .icon:after{
	opacity: 0;
}
.neoh_fn_button:hover .icon:before{
	height: 26px;
}
/*------------------------------------------------------------------*/
/*	13) Totop Button
/*------------------------------------------------------------------*/
.neoh_fn_totop{
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 100%;
	z-index: 990;
	color: #aaa;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	transform: translateY(30px);
}
.neoh_fn_totop.active{
	opacity: 1;
	transform: translateY(0px);
	visibility: visible;
}
.neoh_fn_totop .circle{
	left: -2px;
	right: -2px;
	top: -2px;
	bottom: -2px;
	display: block;
	position: absolute;
	z-index: 55;
}
.neoh_fn_totop .circle .fn__svg{
	display: block;
	width: 100%;
	height: 100%;
	transform: rotateY(180deg);
}
.neoh_fn_totop .circle .stroke-solid{
	fill: none;
    stroke-width: 2px;
	stroke-dashoffset: 300;
    stroke-dashArray: 300;
	stroke: var(--mc);
	transition: all .1s ease;
}
.neoh_fn_totop .arrow{
	position: absolute;
	top: 15px;
	left: 50%;
	display: block;
	transition: all .3s ease;
}
.neoh_fn_totop .arrow:after{
	content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background-color: #aaa;
    left: 50%;
    margin-left: -1px;
    transition: all .3s ease;
	top: 7px;
}
.neoh_fn_totop .arrow .fn__svg{
	position: absolute;
    display: block;
	top: 0px;
    transform: rotate(-90deg);
    left: 50%;
    margin-left: -9px;
    z-index: 3;
	width: 18px;
	height: 18px;
}
.neoh_fn_totop:hover{
	color: var(--mc);
}
.neoh_fn_totop:hover .arrow:after{
	background-color: var(--mc);
}
.neoh_fn_totop:hover .arrow{
	top: 30px;
	-webkit-animation: topArrow 1.5s infinite;
    animation: topArrow 1.5s infinite;
}
/*------------------------------------------------------------------*/
/*	14) Footer
/*------------------------------------------------------------------*/
[data-footer-sticky="on"] #footer{
	position: sticky;
	bottom: 0;
	z-index: 0;
}
.neoh_fn_footer{
	background-color: var(--sbc);
}
.neoh_fn_footer .footer_top{
	padding: 150px 0;
}
.neoh_fn_footer .ft_in{
	max-width: 670px;
	margin: 0 auto;
}
.neoh_fn_footer .footer_top .desc{
	text-align: center;
}
.neoh_fn_footer .footer_top .img{
	margin-bottom: 33px;
}
.neoh_fn_footer .footer_top .fn_title{
	font-size: 36px;
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}
.neoh_fn_footer .footer_top .fn_desc{
	margin: 0;
	padding: 0;
}
.neoh_fn_widget_subscribers{
	width: 100%;
	padding: 0 40px;
	padding-top: 22px;
}
.neoh_fn_footer .neoh_fn_social_list{
	padding-top: 28px;
}
.neoh_fn_widget_subscribers .input{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.neoh_fn_widget_subscribers .message{
	padding-top: 20px;
	display: none;
	font-size: 14px;
	text-align: center;
}
.neoh_fn_widget_subscribers .message:empty{
	padding-top: 0px;
}
.neoh_fn_widget_subscribers .message.error{
	color: #f14f5d;
}
.neoh_fn_widget_subscribers .message.success{
	color: #3cb878;
}
.neoh_fn_widget_subscribers input[type="text"]{
	width: 100%;
	margin-right: 10px;
	height: 50px;
	min-width: inherit;
	background-color: #121212;
	border: 2px solid var(--extra-color);
	border-radius: 5px;
	outline: none;
	font-size: 16px;
	font-family: var(--hff);
	padding: 0 15px;
	line-height: 46px;
	color: #eee;
}
.neoh_fn_widget_subscribers input[type="text"]:focus{
	background-color: #121212;
	border-color: #777;
}
.neoh_fn_widget_subscribers a{
	flex: none;
}
.neoh_fn_footer .neoh_fn_social_list ul{
	justify-content: center;
}
.neoh_fn_footer .footer_bottom{
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 31px 0 28px;
}
.neoh_fn_footer .fb_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;
}
.neoh_fn_footer .fb_left p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: var(--hff);
}
.neoh_fn_footer .fb_left p a{
	text-decoration: none;
	color: #eee;
}
.neoh_fn_footer .fb_left p a:hover{
	color: #fff;
}
.neoh_fn_footer .fb_right ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	margin-left: -30px;
}
.neoh_fn_footer .fb_right li{
	padding-left: 30px;
	margin: 5px 0;
	width: auto;
	display: block;
}
.neoh_fn_footer .fb_right a{
	display: block;
	text-decoration: none;
	font-size: 16px;
	color: var(--bc);
	font-family: var(--hff);
}
.neoh_fn_footer .fb_right a:hover{
	color: var(--hc);
}
.empty_notice{
	color: #F52225;
	margin: 7px 0;
	display: none;
	text-align: center;
	font-weight: 500;
}
.contact_error{
	color: #F52225;
	text-align: center;
	font-weight: 500;
}
.returnmessage{
	color:#3A00FF;
	margin: 7px 0;
	text-align: center;
	font-weight: 500;
	display: none;
}
/*------------------------------------------------------------------*/
/*	15) Social Icons
/*------------------------------------------------------------------*/
.neoh_fn_social_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;
	-ms-align-items: center;
	align-items: center;
	margin-left: -30px;
}
.neoh_fn_social_list li{
	margin: 5px 0px 5px 30px;
	padding: 0;
}
.neoh_fn_social_list a{
	color: var(--bc);
	font-size: 20px;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.neoh_fn_social_list a i{
	transition: none;
}
.neoh_fn_social_list a i:before{
	margin: 0;
	padding: 0;
	display: block;
	width: inherit;
}
.neoh_fn_social_list a:hover{
	color: var(--hc);
}
/*------------------------------------------------------------------*/
/*	16) 404 Page
/*------------------------------------------------------------------*/
.neoh_fn_404{
	width: 100%;
	padding: 230px 0 150px;
}
.neoh_fn_404 .error_wrap{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}
.neoh_fn_404 .title_holder{
	text-align: center;
}
.neoh_fn_404 .icon{
	display: inline-block;
	margin-bottom: 30px;
}
.neoh_fn_404 .icon .fn__svg{
	width: 150px;
	height: 150px;
	display: block;
	color: #555;
}
.neoh_fn_404 .fn__title{
	margin: 0;
	padding: 0;
	font-size: 200px;
	font-size: calc(50px + 7.8125vw);
	font-weight: 600;
	letter-spacing: 10px;
	line-height: 1;
	color: #ccc;
	margin-right: -10px;
}
.neoh_fn_404 .fn__heading{
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1;
	color: #ccc;
	margin-bottom: 17px;
}
.neoh_fn_404 .fn__desc{
	margin: 0 auto;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	max-width: 410px;
	margin-bottom: 23px;
}
.neoh_fn_404 .search_wrap form{
	margin: 0 auto;
}
/*------------------------------------------------------------------*/
/*	17) Protected Page
/*------------------------------------------------------------------*/
.neoh_fn_protected{
	width: 100%;
	padding: 250px 0 150px;
}
.neoh_fn_protected .message_holder{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
.neoh_fn_protected .icon{
	display: inline-block;
	margin-bottom: 30px;
}
.neoh_fn_protected .icon .fn__svg{
	width: 150px;
	height: 150px;
	display: block;
	color: #555;
}
.neoh_fn_protected h3{
	margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1;
    color: #ccc;
    margin-bottom: 17px;
}
.neoh_fn_protected p{
	margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 23px;
}
.neoh_fn_protected form{
	max-width: 563px;
	margin: 0 auto;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.neoh_fn_protected input[type="password"]{
	width: 100%;
}
.neoh_fn_protected input[type="submit"]{
    height: 50px;
    border: 2px solid var(--extra-color);
    margin-left: 10px;
    background-color: transparent !important;
    border-radius: 5px;
    position: relative;
    z-index: 5;
	font-size: 16px;
	color: #aaa;
	padding: 0 13px;
	text-transform: uppercase;
}
.neoh_fn_protected input[type="submit"]:hover{
	border-color: var(--mc);
}
/*------------------------------------------------------------------*/
/*	18) Search Page
/*------------------------------------------------------------------*/
.neoh_fn_searchpagelist{
    padding: 150px 0 145px;
}
.search-no-results .neoh_fn_searchpagelist{
	padding: 0;
}
/*------------------------------------------------------------------*/
/*	19) Archive Page
/*------------------------------------------------------------------*/
.neoh_fn_content_archive{
    padding: 150px 0 145px;
}
/*------------------------------------------------------------------*/
/*	20) All pages without footer
/*------------------------------------------------------------------*/
.neoh_fn_page_ajax{
	background-color: var(--pbc);
}
/*------------------------------------------------------------------*/
/*	21) Magic Cursor
/*------------------------------------------------------------------*/
body.elementor-editor-active .frenify-cursor{
	display: none;
}
.frenify-cursor[data-default="no"]{opacity: 0;}
.frenify-cursor[data-default="no"].cursor-inner{
	transition: opacity .3s ease;
}
.frenify-cursor[data-default="no"].cursor-inner.cursor-hover,
.frenify-cursor[data-default="no"].cursor-inner.cursor-slider{opacity: 1;}
.frenify-cursor[data-link="no"].cursor-inner.cursor-hover{opacity: 0;}
.frenify-cursor[data-slider="no"].cursor-inner.cursor-slider{opacity: 0;}
.frenify-cursor{
	position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}
.frenify-cursor.mouse-down .fn-cursor{
	transform: scale(.9);
}
@media(max-width: 1040px){
	.frenify-cursor{display: none;}
}
.cursor-link{
    width: 30px;
    height: 30px;
	margin-left: -15px;
    margin-top: -15px;
    border: 2px solid rgba(0,0,0,.5);
    z-index: 10000000;
    -webkit-transition: all .08s ease-out;
    transition: all .08s ease-out;
}
.cursor-outer{
    z-index: 10000000;
    -webkit-transition: transform .08s ease-out, opacity 1s ease;
    transition: transform .08s ease-out, opacity 1s ease;
}
.cursor-outer .fn-cursor{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.5);
}
.cursor-inner .fn-cursor{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px 0 0 -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
	background-color: rgba(0,0,0,.5);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.cursor-outer.cursor-slider,
.cursor-outer.cursor-hover{
	opacity: 0;
    -webkit-transition: transform .08s ease-out, opacity .2s ease;
    transition: transform .08s ease-out, opacity .2s ease;
}
.cursor-inner{
    z-index: 10000001;
}
.cursor-inner.cursor-hover .fn-cursor{
	margin: -40px 0 0 -40px;
	width: 80px;
	height: 80px;
	background-color: rgba(0,0,0,.1);
}
.cursor-inner.cursor-slider:not(.cursor-hover) .fn-cursor{
	margin-left: -30px;
	margin-top: -30px;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border: 5px solid rgba(0,0,0,.5);
}
.cursor-inner.cursor-slider.cursor-hover span:after,
.cursor-inner.cursor-slider.cursor-hover span:before{
	background-color: #fff;
}
.cursor-inner.cursor-slider .fn-left,
.cursor-inner.cursor-slider .fn-right{
	opacity: 1;
	visibility: visible;
}
.cursor-inner.cursor-slider .fn-left:after{left: -26px;}
.cursor-inner.cursor-slider .fn-left:before{left: -26px;}
.cursor-inner.cursor-slider .fn-left:after{right: -26px;}
.cursor-inner.cursor-slider .fn-left:before{right: -26px;}

.cursor-inner .fn-left,
.cursor-inner .fn-right{
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
}
.cursor-inner .fn-left:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(50deg);
	left: -20px;
	top: 50%;
	margin-top: -10px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-left:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(130deg);
	left: -20px;
	top: 50%;
	margin-top: -2px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-right:after{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(50deg);
	right: -20px;
	top: 50%;
	margin-top: -2px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
.cursor-inner .fn-right:before{
	content: '';
	position: absolute;
	width: 2px;
	height: 12px;
	transform: rotate(130deg);
	right: -20px;
	top: 50%;
	margin-top: -10px;
	background-color: rgba(0,0,0,.5);
	transition: all .3s ease;
}
/* Keyframes */
@keyframes bottomArrow {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translate(0px, 20px);
		opacity: 0;
	}
}
@keyframes topArrow {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translate(0px, -20px);
		opacity: 0;
	}
}

/*------------------------------------------------------------------*/
/*	22) Single Pages (like: post single (blog single), roadmap single
/*------------------------------------------------------------------*/
.neoh_fn_single{
	width: 100%;
	position: relative;
	min-height: 500px;
}
.neoh_fn_single .breadcrumbs{
	justify-content: flex-start;
	margin-bottom: 42px;
}
.neoh_fn_single .single_bg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.neoh_fn_single .single_bg:before,
.neoh_fn_single .single_bg:after{
	position: absolute;
	content: '';
	left: 0;
	right: 0;
}
.neoh_fn_single .single_bg:before{
	height: 500px;
	top: 0;
	background-color: #0a0a0a;
}
.neoh_fn_single .single_bg:after{
	top: 500px;
	background-color: #111;
	bottom: 0;
}
.neoh_fn_single .single_content{
	z-index: 3;
	position: relative;
	padding-top: 165px;
}
[data-content="0"]{
	display: none;
}
.neoh_fn_single .single_bg[data-has-image="0"]{
	display: none;
}
.elementor-editor-active [data-content="0"]{
	display: block;
}
.neoh_fn_single .single_img{
	margin-bottom: 57px;
}
.neoh_fn_single .single_img img{
	border-radius: 10px;
	display: block;
}
.neoh_fn_single .neoh_fn_minis{
	margin-bottom: 19px;
}
.neoh_fn_single .single_title:after,
.neoh_fn_single .single_title:before{
	clear: both;
	display: table;
	content: '';
}
.neoh_fn_single .single_title .fn__title{
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.3333;
	margin-bottom: 13px;
}
.neoh_fn_categories{
	color: var(--bc);
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 38px;
} 
.neoh_fn_categories a{
	color: inherit;
	text-decoration: none;
}
.neoh_fn_categories a:hover{
	color: var(--hc);
}
.neoh_fn_single .single_desc p{
	margin-bottom: 28px;
}
.neoh_fn_single .single_desc p:last-child{
	margin-bottom: 0;
}
.neoh_fn_single .single_desc a{
	color: var(--mc);
}
/*------------------------------------------------------------------*/
/*	23) Share
/*------------------------------------------------------------------*/
.neoh_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: 10px;
}
.neoh_fn_share .label{
	margin: 0;
	padding: 0;
	margin-right: 20px;
	color: var(--bc);
	font-family: var(--bff);
	font-size: 18px;
}
.neoh_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;
}
.neoh_fn_share li{
	margin: 5px 0px 5px 25px;
	padding: 0;
}
.neoh_fn_share a{
	color: #eee;
	font-size: 20px;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.neoh_fn_share a i{
	transition: none;
}
.neoh_fn_share a i:before{
	margin: 0;
	padding: 0;
	display: block;
	width: inherit;
}
.neoh_fn_share a:hover{
	color: #fff;
}

/*------------------------------------------------------------------*/
/*	24) Sidebar
/*------------------------------------------------------------------*/
.neoh_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;
}
.neoh_fn_wsidebar[data-sidebar="0"] .sidebar_right{
	display: none;
}
.neoh_fn_wsidebar[data-sidebar="0"] .sidebar_left{
	max-width: 100%;
	padding-left: 0;
}
.neoh_fn_wsidebar .sidebar_left{
	width: 100%;
	max-width: calc(100% - 350px);
	padding-right: 50px;
}
.neoh_fn_wsidebar .sidebar_right{
	width: 350px;
	min-width: 350px;
	padding-left: 48px;
	border-left: 2px solid #292929;
}
#blog-single-content .sidebar_left{
	padding-bottom: 93px;
}
#blog-single-content .sidebar_right{
	padding-bottom: 100px;
}

/*------------------------------------------------------------------*/
/*	25) Mini Items
/*------------------------------------------------------------------*/
.neoh_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;
	overflow: hidden;
}
.neoh_fn_minis .m_item{
	line-height: 30px;
}
.neoh_fn_minis .m_item > *{
	padding: 0 15px;
	line-height: 30px;
	display: block;
	text-decoration: none;
	background-color: #252525;
	color: #aaa;
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: 0;
	position: relative;
	margin: 3px 0;
	margin-right: 18px;
}
.neoh_fn_minis .m_item > *:after,
.neoh_fn_minis .m_item > *:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
}
.neoh_fn_minis .m_item > *:before{
	border-width: 0 12px 30px 0;
	border-color: transparent #252525 transparent transparent;
	right: 100%;
}
.neoh_fn_minis .m_item > *:after{
	border-width: 30px 0 0 12px;
	border-color: transparent transparent transparent #252525;
	left: 100%;
}
.neoh_fn_minis .m_item:last-child > *:after{
	content: none;
}
.neoh_fn_minis .m_item a{
	text-decoration: none;
	color: #aaa;
}
.neoh_fn_minis .m_item a:hover{
	color: #ccc;
}
/*------------------------------------------------------------------*/
/*	26) Author Information Box (used for single page of the blog)
/*------------------------------------------------------------------*/
.neoh_fn_author_info{
	background-color: #252525;
	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;
}
.neoh_fn_author_info .info_img{
	border-radius: 5px;
	overflow: hidden;
	margin-right: 40px;
	width: 25%;
	min-width: 25%;
	position: relative;
}
.neoh_fn_author_info .info_in{
	margin-top: 100%;
}
.neoh_fn_author_info .info_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.neoh_fn_author_info .fn_title{
	margin: 0;
	padding: 0;
	font-size: 20px;
	margin-bottom: 17px;
}
.neoh_fn_author_info .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--extra-font-family);
	margin-bottom: 18px;
}
.neoh_fn_author_info .author_bottom 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;
}
.neoh_fn_author_info .author_bottom li{
	margin: 5px 28px 5px 0;
    padding: 0;
}
.neoh_fn_author_info .author_bottom a{
	color: #777;
	font-size: 20px;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.neoh_fn_author_info .author_bottom  i{
	transition: none;
}
.neoh_fn_author_info .author_bottom i:before{
	margin: 0;
	padding: 0;
	display: block;
	width: inherit;
}
.neoh_fn_author_info .author_bottom a:hover{
	color: var(--heading-color);
}


.single_desc[data-content="1"] + .neoh_fn_tags{
	margin-top: 38px;
}
/*------------------------------------------------------------------*/
/*	27) Tags
/*------------------------------------------------------------------*/
.neoh_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;
}
.neoh_fn_tags .label{
	margin: 0;
	padding: 0;
	margin-right: 10px;
	color: var(--bc);
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}
.neoh_fn_tags a{
	text-decoration: none;
	color: inherit;
}
.neoh_fn_tags span{
	margin-right: 5px;
}
.neoh_fn_tags a:hover{
	color: var(--hc);
}
/*------------------------------------------------------------------*/
/*	28) Previous & Next Box
/*------------------------------------------------------------------*/
.neoh_fn_pnb{
	width: 100%;
	background-color: #252525;
}
.neoh_fn_pnb[data-status="no"]{
	border-bottom: 2px solid #292929;
}
.neoh_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;
}
.neoh_fn_pnb .item{
	width: 46.55%;
	max-width: calc(50% - 43px);
	max-width: calc(50% - 42.5px);
	padding: 60px 0;
	position: relative;
}
.neoh_fn_pnb .next{
	text-align: right;
}
.neoh_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;
}
.neoh_fn_pnb .img{
	width: 80px;
	min-width: 80px;
	height: 80px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 5px;
}
.neoh_fn_pnb .prev{
	padding-right: 90px;
}
.neoh_fn_pnb .next{
	padding-left: 90px;
}
.neoh_fn_pnb .prev .img{
	margin-right: 30px;
}
.neoh_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;
}
.neoh_fn_pnb .next .img{
	margin-left: 30px;
}
.neoh_fn_pnb .item .desc{
	width: 100%;
	max-width: calc(100% - 110px);
}
.neoh_fn_pnb .item .fn_desc{
	color: #777;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: var(--hff);
	font-weight: 500;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.neoh_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;
}
.neoh_fn_pnb .trigger{
	width: 85px;
	min-width: 85px;
	border-left: 2px solid #111;
	border-right: 2px solid #111;
	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: relative;
}
.neoh_fn_pnb .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;
}
.neoh_fn_pnb .trigger span{
	width: 3px;
	height: 3px;
	display: block;
	background-color: #ccc;
}
.neoh_fn_pnb .container,
.neoh_fn_pnb .item,
.neoh_fn_pnb .img,
.neoh_fn_pnb .trigger span,
.neoh_fn_pnb .fn_desc,
.neoh_fn_pnb .fn_title{
	transition: all .5s ease;
}
.neoh_fn_pnb .item:hover .fn_desc{
	color: #aaa;
}
.neoh_fn_pnb .item:hover .fn_title{
	color: var(--mc);
}
.neoh_fn_pnb .trigger:hover span{
	background-color: #fff;
}
.neoh_fn_pnb .item:hover{
	padding-top: 50px;
	padding-bottom: 50px;
}
.neoh_fn_pnb .item:hover .img{
	min-width: 100px;
	height: 100px;
}

.neoh_fn_pnb:hover .container{
	max-width: 100%;
}
.neoh_fn_pnb[data-status="next"] .prev{
	opacity: 0;
}
.neoh_fn_pnb[data-status="prev"] .next{
	opacity: 0;
}



#comment-section .sidebar_left{
	padding: 100px 50px 150px 0;
}
#comment-section .sidebar_right{
	padding-top: 100px;
	padding-bottom: 100px;
}
/*------------------------------------------------------------------*/
/*	29) Widgets
/*------------------------------------------------------------------*/
.widget{
	margin-bottom: 60px;
}
.widget:last-child{
	margin-bottom: 0;
}
.wid-title{
	padding: 0 10px;
	position: relative;
	margin-bottom: 30px;
}
.wid-title:after,
.wid-title:before{
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
	top: 0;
}
.wid-title:before{
	border-width: 0 0 44px 10px;
	border-bottom-width: var(--th);
	border-color: transparent transparent #252525 transparent;
    left: 0;
}
.wid-title:after{
	border-width: 44px 0 0 10px;
	border-top-width: var(--th);
    border-color: transparent transparent transparent #252525;
    right: 0;
}
.wid-title .text{
	display: block;
    padding: 10px;
    line-height: 24px;
    letter-spacing: .5px;
    position: relative;
    text-transform: uppercase;
    color: #ccc;
    font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
    font-weight: 500;
    background-color: #252525;
	text-align: center;
	font-family: var(--hff);
}
.wid-title .icon{
	 position: absolute;
    border: 6px solid transparent;
    border-top-color: #252525;
    border-left-width: 7px;
    border-right-width: 7px;
    top: 100%;
    left: 50%;
    margin-left: -7px;
    margin-left: -7.5px;
}
/*------------------------------------------------------------------*/
/*	30) About Widget
/*------------------------------------------------------------------*/
.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;
}
.neoh_fn_widget_about > *,
.neoh_fn_widget_about{
	width: 100%;
}
.neoh_fn_widget_about{
	text-align: center;
}
.neoh_fn_widget_about img{
	margin: 0;
	padding: 0;
}
.neoh_fn_widget_about .abs_img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all 1s ease;
}
.neoh_fn_widget_about .about_img{
	width: 100%;
	position: relative;
	margin-bottom: 29px;
}
.neoh_fn_widget_about .img_inner{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.neoh_fn_widget_about .img_inner:hover .abs_img{
	transform: scale(1.2) rotate(5deg);
}
.neoh_fn_widget_about .about_img img{
	min-width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	opacity: 0;
	margin-top: -15%;
	max-height: 300px;
}
.neoh_fn_widget_about .afwa_title{
	margin-bottom: 22px;
}
.neoh_fn_widget_about .afwa_title h3{
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: .5px;
	margin-bottom: 8px;
}
.widget_neoh_about.widget_block{
	margin-bottom: 70px;
}
.neoh_fn_widget_about .afwa_title p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.25;
	color: #777;
	font-family: var(--hff);
}
.neoh_fn_widget_about .afwa_title p a{
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.neoh_fn_widget_about .afwa_title p a:hover{
	border-bottom-color: inherit;
}
.neoh_fn_widget_about .afwa_desc{
	margin-bottom: 24px;
}
.neoh_fn_widget_about .afwa_desc p{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 20px;
	font-family: var(--hff);
}
/*------------------------------------------------------------------*/
/*	31) Social Widget
/*------------------------------------------------------------------*/
.neoh_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;
}
.neoh_fn_widget_social ul li{
	margin: 5px 0px 5px 20px !important;
    padding: 0;
}
.neoh_fn_widget_social ul a{
	color: #777;
	font-size: 18px;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.neoh_fn_widget_social ul a i{
	transition: none;
}
.neoh_fn_widget_social ul a i:before{
	margin: 0;
	padding: 0;
	display: block;
	width: inherit;
}
.neoh_fn_widget_social ul a:hover{
	color: var(--heading-color);
}
.widget-banner img{
	border-radius: 10px;
}
.neoh_fn_widget_subscribe{
	padding: 30px;
	background-color: #252525;
	border-radius: 10px;
	text-align: center;
}
.neoh_fn_widget_subscribe .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;
}
.neoh_fn_widget_subscribe .fn__svg{
	width: 40px;
	height: 40px;
	display: block;
	margin-bottom: 21px;
}
.neoh_fn_widget_subscribe .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 9px;
}
.neoh_fn_widget_subscribe .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	margin-bottom: 15px;
}
.neoh_fn_widget_subscribe input[type="text"]{
	background-color: #2c2c2c;
	width: 100%;
	min-width: 100%;
	margin-bottom: 10px;
	text-align: center;
}
.neoh_fn_widget_subscribe .form a{
	width: 100%;
}
/*------------------------------------------------------------------*/
/*	32) Comments
/*------------------------------------------------------------------*/
.neoh_fn_comments .comment-title{
	margin-bottom: 55px;
}
.neoh_fn_comments .children{
	margin: 30px;
	list-style-type: none;
}
.neoh_fn_comments .comment-title .fn_title{
	font-size: 22px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--hc);
}
.neoh_fn_comments .list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.neoh_fn_comments .comment{
	margin-bottom: 30px;
}
.neoh_fn_comments .comment:last-child{
	margin-bottom: 0;
}
.neoh_fn_comments .comment-body{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.neoh_fn_comments .comment-avatar{
	width: 80px;
	min-width: 80px;
	margin-right: 30px;
}
.neoh_fn_comments .comment-avatar img{
	border-radius: 100%;
}
.neoh_fn_comments .comment-data{
	margin-bottom: 19px;
	margin-top: 5px;
}
.neoh_fn_comments .comment-data .author{
	font-size: 20px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 8px;
}
.neoh_fn_comments .comment-data .date{
	font-size: 13px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-family: var(--hff);
	color: #999;
	text-transform: uppercase;
}
.neoh_fn_comments .comment-text p{
	margin: 0;
	padding: 0;
	margin-bottom: 36px;
}
.neoh_fn_comments .comment-text p:last-child{
	margin-bottom: 0;
}
.neoh_fn_comments .comment-text .desc{
	margin-bottom: 22px;
}
.neoh_fn_comments .comment-text .desc a{
	text-decoration: none;
	color: var(--mc);
	border-bottom: 1px solid transparent;
}
.neoh_fn_comments .comment-text .desc a:hover{
	border-bottom-color: var(--mc);
}
.neoh_fn_comments .fn_reply{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.neoh_fn_comments .fn_reply > *{
	margin: 0 5px 5px 0
}
.neoh_fn_comments .comment-reply{
	display: block;
    position: relative;
	background-color: #252525;
	border-radius: 3px;
}
.neoh_fn_comments .fn_reply .fn__svg{
	position: absolute;
    width: 14px;
    height: 14px;
    left: 10px;
    top: 50%;
    margin-top: -7px;
    color: #aaa;
}
.neoh_fn_comments .fn_reply a{
	font-size: 14px;
    font-family: var(--hff);
    color: #aaa;
    display: block;
    line-height: 25px;
    padding: 0 10px 0 30px;
    z-index: 3;
    position: relative;
}
.neoh_fn_comments .fn_reply a.comment-edit-link{
	padding: 0 10px;
	background-color: #252525;
	border-radius: 3px;
}
.neoh_fn_comments .comment-reply:hover,
.neoh_fn_comments .fn_reply a.comment-edit-link:hover{
	background-color: #444;
}
.neoh_fn_comments .comment-text-wrap{
	padding-bottom: 35px;
	border-bottom: 1px solid #292929;
}
.neoh_fn_comments .comment-respond{
	padding-top: 96px;
}
.neoh_fn_comments .comment .comment-respond{
	width: 100%;
    padding: 30px;
    background-color: #0a0a0a;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 30px;
}
.neoh_fn_comments > .comment-respond:first-child{
	padding-top: 0;
}
.neoh_fn_comments .comment-reply-title{
	font-size: 22px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--hc);
	margin-bottom: 38px;
}
.neoh_fn_comments .comment-reply-title a{
	color: var(--mc);
}
.neoh_fn_comments .logged-in-as{
    margin: 0;
    padding: 0;
	color: #ccc;
	margin-bottom: 17px;
}
.neoh_fn_comments .logged-in-as a{
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid transparent;
}
.neoh_fn_comments .logged-in-as a:hover{
	border-bottom-color: inherit;
}
#respond form{
	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: -15px;
}
#respond form > *{
	width: 100%;
	padding-left: 15px;
	margin-bottom: 15px;
}
#respond form .input-half{
	width: 50%;
}
#respond form > .form-submit,
#respond form > *:last-child{
	margin-bottom: 0;
}
.neoh_fn_comments .comment-form textarea,
.neoh_fn_comments .comment-form input[type="text"]{
	width: 100%;
	min-width: 100%;
	display: block;
}
.neoh_fn_comments .comment-respond .neoh_fn_button{
	margin-top: 20px;
}
/*------------------------------------------------------------------*/
/*	33) Top Articles Widget
/*------------------------------------------------------------------*/
.neoh_fn_widget_articles ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.neoh_fn_widget_articles li{
	margin-bottom: 20px;
}
.neoh_fn_widget_articles li:last-child{
	margin-bottom: 0;
}
.neoh_fn_widget_articles .item{
	position: relative;
	width: 100%;
	padding: 26px 20px 24px;
	border-radius: 5px;
	background-color: #252525;
	transition: all .3s ease;
}
.neoh_fn_widget_articles .fn_title{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.3333;
	margin-bottom: 9px;
}
.neoh_fn_widget_articles .fn_date{
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: #aaa;
	overflow: hidden;
	position: relative;
}
.neoh_fn_widget_articles .fn_date span{
	position: relative;
	display: block;
	transition: all .3s ease;
}
.neoh_fn_widget_articles .fn_date span:after{
	width: 4px;
	height: 4px;
	content: '';
	background-color: #777;
	border-radius: 100%;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
}
.neoh_fn_widget_articles .fn_date .comment_count{
	position: absolute;
	left: 0;
	width: 100%;
	top: 100%;
	color: var(--mc);
}
.neoh_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: -20px;
	right: 0;
	position: absolute;
	transition: all .3s ease;
}
.neoh_fn_widget_articles .item:hover{
	background-color: #050505;
}
.neoh_fn_widget_articles .item:hover .fn_date .post_date{
	transform: translateY(-100%);
}
.neoh_fn_widget_articles .item:hover .fn_date .comment_count{
	transform: translateY(-100%);
}
/*------------------------------------------------------------------*/
/*	34) Custom Categories
/*------------------------------------------------------------------*/
.neoh_fn_ccategories ul{
	list-style-type: none;
    margin: 0px;
	padding: 0px;
	overflow: hidden;
}
.neoh_fn_ccategories 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;
}
.neoh_fn_ccategories li a{
	position: relative;
    background-color: #111;
    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: #aaa;
	text-decoration: none;
	font-family: var(--hff);
	text-transform: uppercase;
}
.neoh_fn_ccategories li a:after{
	content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 2000px;
    z-index: 5;
}
.neoh_fn_ccategories li a:before{
	content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 40px;
    z-index: 5;
}
.neoh_fn_ccategories li:after{
	content: '';
	position: absolute;
	background-color: #272727;
	height: 1px;
	left: 0;
	right: 55px;
	top: 50%;
	margin-top: -1px;
	margin-top: -0.5px;
}
.neoh_fn_ccategories .count{
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 11px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: #aaa;
	background-color: #252525;
	border-radius: 100%;
	line-height: 30px;
	position: relative;
	z-index: 3;
}
.neoh_fn_ccategories li:hover a{
	transform: translateX(20px);
	padding-left: 20px;
}
.neoh_fn_ccategories .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;
}
.neoh_fn_ccategories .more:hover{
	color: #ccc;
}
/*------------------------------------------------------------------*/
/*	35) Pagelinks
/*------------------------------------------------------------------*/
.neoh_fn_tags + .neoh_fn_pagelinks{
	padding-top: 12px;
}
.neoh_fn_pagelinks{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.neoh_fn_pagelinks .title{
	font-weight: 500;
	text-transform: uppercase;
	margin-right: 8px;
	line-height: 50px;
	color: var(--bc);
	font-family: var(--hff);
}
.neoh_fn_pagelinks .current,
.neoh_fn_pagelinks a{
	text-decoration: none;
    height: 50px;
    display: block;
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: #aaa;
    font-family: var(--hff);
    width: auto;
    min-width: 60px;
    padding: 0 5px;
    font-weight: 600;
    background-color: transparent;
    border: 2px solid var(--extra-color);
    position: relative;
	border-radius: 5px;
}
.neoh_fn_pagelinks .current{
	background-color: #333;
    border-color: #333;
    color: #fff;
}
.neoh_fn_pagelinks a:hover{
	border-color: var(--mc);
}
/*------------------------------------------------------------------*/
/*	36) Pagination
/*------------------------------------------------------------------*/
.neoh_fn_pagination{
	width: 100%;
}
.neoh_fn_pagination ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.neoh_fn_pagination ul li{
	margin: 5px 10px 5px 0;
}
.neoh_fn_pagination p{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 50px;
	font-family: var(--hff);
}
.neoh_fn_pagination .current,
.neoh_fn_pagination a{
	text-decoration: none;
	height: 50px;
	display: block;
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	color: #aaa;
	font-family: var(--hff);
	width: auto;
	min-width: 60px;
	padding: 0 5px;
	font-weight: 500;
	background-color: transparent;
	border: 2px solid var(--extra-color);
	position: relative;
	border-radius: 5px;
}
.neoh_fn_pagination a:hover{
	border-color: var(--mc);
}
.neoh_fn_pagination .view{margin-left: 15px;}
.neoh_fn_pagination .current{
	background-color: #333;
	border-color: #333 !important;
	color: #fff;
}
.neoh_fn_pagination .next a{
	padding-right: 44px;
	padding-left: 10px;
}
.neoh_fn_pagination .next span{ 
	width: 21px;
	height: 1px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	margin-top: -0.5px;
	background-color: #b9b8c3;
	right: 12px;
	transition: all .3s ease;
}
.neoh_fn_pagination .next:hover span{
	right: 7px;
	background-color: var(--mc);
}
.neoh_fn_pagination .next span:after{
	width: 10px;
	height: 1px;
	background-color: inherit;
	position: absolute;
	right: 0;
	transform: rotate(35deg);
	content: '';
	bottom: 3px;
}
.neoh_fn_pagination .next span:before{
	width: 10px;
	height: 1px;
	background-color: inherit;
	position: absolute;
	right: 0;
	transform: rotate(-35deg);
	content: '';
	top: 3px;
}
.neoh_fn_pagination .prev a{
	padding-left: 44px;
	padding-right: 10px;
}
.neoh_fn_pagination .prev span{ 
	width: 21px;
	height: 1px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	margin-top: -0.5px;
	background-color: #b9b8c3;
	left: 12px;
	transition: all .3s ease;
}
.neoh_fn_pagination .prev:hover span{
	left: 7px;
	background-color: var(--mc);
}
.neoh_fn_pagination .prev span:after{
	width: 10px;
	height: 1px;
	background-color: inherit;
	position: absolute;
	left: 0;
	transform: rotate(35deg);
	content: '';
	bottom: -3px;
}
.neoh_fn_pagination .prev span:before{
	width: 10px;
	height: 1px;
	background-color: inherit;
	position: absolute;
	left: 0;
	transform: rotate(-35deg);
	content: '';
	top: -3px;
}
.pingback a{
	color: #ccc;
	border-bottom: 1px solid #ccc;
	margin-right: 5px;
}
/*------------------------------------------------------------------*/
/*	37) Collection Page: Structure
/*------------------------------------------------------------------*/
.neoh_fn_collectionpage{
	background-color: #111;
	padding: 150px 0;
}
.neoh_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;
	transition: all .3s ease;
}
.neoh_fn_collection.loading{
	opacity: .5;
}
.neoh_fn_clist{
	width: 100%;
}
.neoh_fn_clist .neoh_fn_title{
	margin-bottom: 50px;
}
/*------------------------------------------------------------------*/
/*	38) Collection Page: Filters
/*------------------------------------------------------------------*/
[data-filter-sticky="on"] .neoh_fn_filters{
	position: sticky;
	top: 100px;
}
.neoh_fn_filters{
	width: 350px;
	min-width: 350px;
	margin-right: 50px;
}
.neoh_fn_filters .filter_item{
	margin-bottom: 10px;
	background-color: #0a0a0a;
	border-radius: 5px;
	overflow: hidden;
}
.neoh_fn_filters .filter_item:last-child{
	margin-bottom: 0;
}
.neoh_fn_filters .filter_item__header{
	position: relative;
	padding: 20px 30px;
	border-bottom: 1px solid rgba(255,255,255,.05);
}
.neoh_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);
}
.neoh_fn_filters .closed .filter_item__header .fn__svg{
	transform: rotate(180deg);
}
.neoh_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;
}
.neoh_fn_filters .filter_item__content{
	width: 100%;
	height: initial;
	overflow: visible;
	transition: height 100ms ease 0s;
}
.neoh_fn_filters .closed .filter_item__content{
	height: 0;
	overflow: hidden;
}
.neoh_fn_filters .ic_in{
	padding: 23px 20px 21px 30px;
}
.neoh_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;
}
.neoh_fn_filters .items{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.neoh_fn_filters .items::-webkit-scrollbar{
	width: 2px;
}
.neoh_fn_filters .items:-webkit-scrollbar-track{
	background: var(--extra-color);
}
.neoh_fn_filters .items::-webkit-scrollbar-thumb{
	background-color: var(--extra-color);
}
.neoh_fn_filters .items > li{
	margin: 0;
	padding: 0;
	padding-left: 10px;
	margin-bottom: 3 px;
	width: 100%;
}
.neoh_fn_filters .items > li:last-child{
	margin-bottom: 0;
}
.neoh_fn_filters .checkbox{
	width: 100%;
	display: block;
	position: relative;
	padding: 5px 0 5px 26px;
	
	font-size: 16px;
	color: #aaa;
	font-family: var(--hff);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.ready .neoh_fn_filters .checkbox{
	cursor: pointer;
}
.neoh_fn_filters .checkbox .amount{
	color: #666;
}
.neoh_fn_filters .checkbox .checkmark .fn__svg{
	width: 12px;
	height: 12px;
	position: relative;
	top: 1px;
	left: 1px;
	display: none;
	color: var(--mc);
}
.neoh_fn_filters .checkbox input:checked ~ .checkmark {
	border-color: var(--mc);
}
.neoh_fn_filters .checkbox input:checked ~ .checkmark .fn__svg {
	display: block;
}
.neoh_fn_filters .checkbox input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.neoh_fn_filters .checkbox .checkmark{
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	left: 0;
	border: 1px solid var(--extra-color);
	border-radius: 3px;
	background-color: #121212;
}
.neoh_fn_filters .checkbox .checkmark:after{
  content: "";
  position: absolute;
  display: none;
}
/*------------------------------------------------------------------*/
/*	39) Collection Page: Result Box
/*------------------------------------------------------------------*/
.neoh_fn_result_box{
	width: 100%;
	background-color: #0a0a0a;
	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;
}
.neoh_fn_result_box > *{
	margin: 0 10px 10px 0;
}
.neoh_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: 2px solid #333;
	border-radius: 5px;
	padding: 0 0 0 20px;
	position: relative;
}
.neoh_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;
}
.neoh_fn_result_box .filter_count span:after{
	right: 100%;
	width: 2px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #333;
}
.neoh_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: #666;
	font-family: var(--hff);
	border: 2px solid #333;
}
.neoh_fn_result_box .result_item span{
	color: #aaa;
}
.neoh_fn_result_box .result_item a:after{
	width: 2px;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 34px;
	background-color: #333;
	transition: all .3s ease;
}
.neoh_fn_result_box .result_item .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	right: 12px;
	top: 13px;
	color: var(--extra-color);
}
.neoh_fn_result_box .result_item a:before{
	width: 2px;
	content: '';
	position: absolute;
	top: 0;
	height: 0;
	right: 34px;
	background-color: var(--extra-color);
	transition: all .3s ease;
}
.neoh_fn_result_box .result_item a:hover{
	border-color: var(--extra-color);
}
.neoh_fn_result_box .result_item a:hover .fn__svg{
	color: #aaa;
}
.neoh_fn_result_box .result_item a:hover:after{
	opacity: 0;
}
.neoh_fn_result_box .result_item a:hover:before{
	height: 100%;
}
.neoh_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;
}
.neoh_fn_result_box .clear_all:hover{
	color: var(--mc);
}

.neoh_fn_pagination.multiple span,
.neoh_fn_pagination.multiple a{
	min-width: 80px;
	width: auto;
	padding: 0 10px;
}
/*------------------------------------------------------------------*/
/*	40) NFT Items
/*------------------------------------------------------------------*/
.neoh_fn_drops .hidden_btns{
	display: none !important;
}
.neoh_fn_drops 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;
	padding: 0;
	list-style-type: none;
	margin-left: -40px;
}
.neoh_fn_drops li{
	width: 33.3333%;
	padding-left: 40px;
	margin-bottom: 40px;
}
.neoh_fn_drops .item{
	width: 100%;
	position: relative;
}
.neoh_fn_drops .item:after{
	content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--extra-color);
    border-radius: 10px;
	transition: all .3s ease;
}
.neoh_fn_drops .item:hover:after{
	border-color: var(--mc);
}
.neoh_fn_drops .img_holder{
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	z-index: 5;
}
.neoh_fn_drops .img_holder img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease;
}
.neoh_fn_drops .item:hover .img_holder img{
	transform: scale(1.2) rotate(-5deg) translateZ(0);
}
.neoh_fn_drops .title_holder{
	text-align: center;
	padding: 22px 20px 21px;
	position: relative;
	z-index: 5;
}
.neoh_fn_drops .fn_title{
	margin: 0;
	padding: 0;
	font-size: 18px;
}
/*------------------------------------------------------------------*/
/*	41) Lined Title
/*------------------------------------------------------------------*/
.neoh_fn_title{
	position: relative;
	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;
}
.neoh_fn_title .fn_title{
	margin: 0;
	padding: 0;
	font-size: 36px;
	margin-bottom: 6px;
}
.neoh_fn_title .line{
	position: relative;
	width: 140px;
	height: 10px;
}
.neoh_fn_title .line span{
	width: 140px;
	display: block;
	height: 2px;
	background-color: var(--extra-color);
	position: absolute;
	top: 4px;
}
.neoh_fn_title .line:after{
	content: '';
	position: absolute;
	width: 4px;
	height: 10px;
	left: 50%;
	margin-left: -2px;
	background-color: var(--extra-color);
	border-radius: 10px;
}
.neoh_fn_title .line span:after,
.neoh_fn_title .line span:before{
	width: 2px;
	background-color: var(--extra-color);
	position: absolute;
	content: '';
	z-index: 3;
	margin-top: -3px;
	height: 6px;
	top: 50%;
}
.neoh_fn_title .line span:before{
	right: 50%;
	margin-right: 12px;
}
.neoh_fn_title .line span:after{
	left: 50%;
	margin-left: 12px;
}
.neoh_fn_title[data-align="left"]{
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.neoh_fn_title[data-align="left"] .line:after{
	left: 0;
	margin-left: 0;
}
.neoh_fn_title[data-align="left"] .line span:before{
	left: 14px;
	right: auto;
	margin-right: 0;
}
.neoh_fn_title[data-align="left"] .line span:after{
	left: 26px;
	right: auto;
	margin-left: 0;
	margin-top: -2px;
	height: 4px;
}
.neoh_fn_title[data-align="right"]{
	-ms-align-items: flex-end;
	align-items: flex-end;
}
.neoh_fn_title[data-align="right"] .line:after{
	left: auto;
	margin-left: 0;
	right: 0;
}
.neoh_fn_title[data-align="right"] .line span:before{
	left: auto;
	right: 14px;
	margin-right: 0;
}
.neoh_fn_title[data-align="right"] .line span:after{
	left: auto;
	right: 26px;
	margin-left: 0;
	margin-top: -2px;
	height: 4px;
}
/*------------------------------------------------------------------*/
/*	42) Modalbox
/*------------------------------------------------------------------*/
.neoh_fn_modal,
.neoh_fn_modal *{
	box-sizing: border-box;
}
.neoh_fn_modal{
	position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(45,47,56,0.8);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: -9;
    transition: all 0.3s ease;
	transform: scale(0.9) translateY(-250px);
	padding: 40px;
}
.neoh_fn_modal.opened{
	opacity: 1;
    visibility: visible;
    z-index: 99999;
	transform: scale(1) translateY(0px);
}
.neoh_fn_modal .modal_closer{
	position: absolute;
	bottom: 100%;
	right: 10px;
	width: 50px;
	height: 24px;
}
.neoh_fn_modal .modal_closer .fn__svg{
	width: 7px;
	height: 7px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -3px 0 0 -3px;
	margin: -3.5px 0 0 -3.5px;
}
.neoh_fn_modal .modal_closer a{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #525252;
	border-radius: 5px 5px 0 0;
	color: #aaa;
}
.neoh_fn_modal .modal_closer a:hover{
	background-color: #333;
	color: #eee;
}
.neoh_fn_modal .modal_ux_closer{
	cursor: pointer;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.neoh_fn_modal .modal_in{
	position: relative;
    width: 900px;
	max-width: 100%;
    height: auto;
    background: #111;
    border-radius: 10px;
	z-index: 5;
}
.neoh_fn_modal .modal_content{
	float: left;
	width: 100%;
	clear: both;
	position: relative;
	overflow-y: scroll;
	overflow-x: hidden;
	max-height: 90vh;
	max-height: calc(100vh - 80px);
}
.neoh_fn_modal .modal_content{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.neoh_fn_modal .modal_content::-webkit-scrollbar{
	width: 0px;
}
.neoh_fn_product_modal{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	padding: 60px;
	padding: 6.7%;
}
.neoh_fn_product_modal.reverse{
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	-o-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.neoh_fn_product_modal.reverse .content_item{
	padding-left: 0;
	padding-right: 20px;
}
.neoh_fn_product_modal .img_item{
	width: 50%;
	position: relative;
	padding-right: 20px;
}
.neoh_fn_product_modal .img_item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 13px;
	position: relative;
	z-index: 3;
	box-shadow: 0px 0px 50px rgba(0,0,0,0.6);
}
.neoh_fn_product_modal .content_item{
	width: 50%;
	padding-left: 20px;
}
.neoh_fn_product_modal .neoh_fn_title{
	margin-bottom: 31px;
}
.neoh_fn_product_modal .desc p{
	margin-bottom: 27px;
}
.neoh_fn_product_modal .desc a{
	text-decoration: none;
	color: var(--mc);
	border-bottom: 1px solid transparent;
}
.neoh_fn_product_modal .desc a:hover{
	border-bottom-color: var(--mc);
}
.neoh_fn_product_modal .desc p:last-child{
	margin-bottom: 0;
}
.neoh_fn_product_modal .desc{
	margin-bottom: 37px;
}
.neoh_fn_product_modal .buttons{
	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;
}
.neoh_fn_product_modal .buttons a{
	margin: 5px 20px 5px 0;
}
.neoh_fn_product_modal .buttons .disable{
	display: none;
}
.neoh_fn_product_modal .buttons a:last-child{
	margin-right: 0;
}
/*------------------------------------------------------------------*/
/*	43) Product Preloader
/*------------------------------------------------------------------*/
.neoh_fn_product_preloader.loading{
	opacity: 1;
	visibility: visible;
}
.neoh_fn_product_preloader{
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	width: 100px;
	height: 100px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -50px;
	z-index: 9999;
}
.neoh_fn_product_preloader .spinner{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -38px 0 0 -38px;
	width: 76px;
    height: 76px;
    background: transparent;
    border-top: 4px solid var(--mc);
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s neoh_spin linear infinite;
    animation: 1s neoh_spin linear infinite;
}
/*------------------------------------------------------------------*/
/*	44) Gallery 1-2
/*------------------------------------------------------------------*/
.neoh_fn_gallery_1_2 .gallery_in{
	--gap: 20px;
	display: grid;
	grid-template-columns: 2.1fr 1fr;
	grid-column-gap: var(--gap);
   	grid-row-gap: var(--gap);
}
.neoh_fn_gallery_1_2 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 1s ease;
	transform: translateZ(0);
}
.neoh_fn_gallery_1_2 .row2{
	grid-row: span 2;
}
.neoh_fn_gallery_1_2 .item{
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.neoh_fn_gallery_1_2 .item:hover img{
	transform: scale(1.1) rotate(-5deg) translateZ(0);
}
/*------------------------------------------------------------------*/
/*	45) RoadMap List
/*------------------------------------------------------------------*/
.neoh_fn_roadmappage .neoh_fn_pagination{
	padding-bottom: 40px;
}
.neoh_fn_roadmaplist{
	padding: 150px 0 110px;
}
.neoh_fn_roadmaplist .roadlist{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.neoh_fn_roadmaplist .road_item{
	margin-bottom: 40px;
}
.neoh_fn_roadmaplist .t_item{
	padding: 40px;
	width: 100%;
	border: 2px solid var(--extra-color);
	border-radius: 5px;
	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;
}
.neoh_fn_roadmaplist .t_item_img{
	width: 50%;
}
.neoh_fn_roadmaplist .t_item_info{
	width: 50%;
	padding: 0 0 0 70px;
}
.neoh_fn_roadmaplist .t_item_info > *:last-child{
	margin-bottom: 0;
}
.neoh_fn_roadmaplist .fn_date{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 26px;
	overflow: hidden;
}
.neoh_fn_roadmaplist .fn_date span{
	background-color: #252525;
    line-height: 30px;
    text-align: center;
    display: block;
    position: relative;
    transition: all .3s ease;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--hff);
    letter-spacing: 0px;
	padding: 0 15px;
}
.neoh_fn_roadmaplist .fn_date span:after{
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    transition: all .3s ease;
	border-width: 30px 0 0 12px;
    border-left-color: #252525;
    left: 100%;
    top: 0;
}
.neoh_fn_roadmaplist .fn_title{
	font-size: 22px;
	font-weight: 500;
	margin: 0;
	padding: 0;
	margin-bottom: 18px;
}
.neoh_fn_roadmaplist .fn_desc{
	margin-bottom: 27px;
}
.neoh_fn_roadmaplist .fn_read{
	margin-bottom: 0;
}
.neoh_fn_roadmaplist .road_in{
	position: relative;
	padding-left: 40px;
}
.neoh_fn_roadmaplist .moveline{
	position: absolute;
	width: 2px;
	top: 0;
	left: 0;
	height: 0;
	background-color: var(--extra-color);
}
.neoh_fn_roadmaplist .moveit{
	width: 16px;
	height: 16px;
	border-radius: 50%;
	top: 0;
	position: absolute;
	left: -7px;
	background-color: var(--mc);
	display: block;
	z-index: 44;
}
/*------------------------------------------------------------------*/
/*	46) NFT Single
/*------------------------------------------------------------------*/
#nft-single-content .nft_single_top{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 25px;
}
#nft-single-content .single_top_left{
	width: 36%;
}
#nft-single-content .single_top_right{
	width: 64%;
}
#nft-single-content .hidden_btns{
	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;
	justify-content: flex-end;
}
#nft-single-content .hidden_btns a{
	margin: 0 0 10px 10px;
}
#nft-single-content .breadcrumbs{
	margin-bottom: 0;
}
#nft-single-content .nft_single_desc{
	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;
	column-gap: 50px;
	margin-bottom: 75px;
}
#nft-single-content .nft_single_desc > *{
	width: 50%;
}
#nft-single-content .single_desc_left{
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}
#nft-single-content .single_desc_left .in{
	margin-top: 100%;
}
#nft-single-content .single_desc_left .image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#nft-single-content .single_desc_right{
	background-color: #111;
	border-radius: 5px;
	border: 1px solid #252525;
	padding: 49px 50px 52px;
}
#nft-single-content .single_desc_right .fn__title{
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 20px;
}
#nft-single-content .nft_content > *{
	margin-bottom: 27px;
}
#nft-single-content .nft_content > *:last-child{
	margin-bottom: 0;
}
.neoh_fn_nft_cats{
	margin-bottom: 94px;
}
.neoh_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;
}
.neoh_fn_nft_cats li{
	width: 25%;
	padding-left: 40px;
	margin-bottom: 45px;
}
.neoh_fn_nft_cats .item{
	height: 100%;
	border-bottom: 1px solid #252525;
	position: relative;
	padding-bottom: 10px;
}
.neoh_fn_nft_cats .item:after{
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--mc);
	transition: all .3s ease;
}
.neoh_fn_nft_cats .item:hover:after{
	width: 100%;
}
.neoh_fn_nft_cats .parent_category{
	font-size: 16px;
	color: #666;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	margin-bottom: 1px;
	font-weight: 400;
}
.neoh_fn_nft_cats .child_category{
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 400;
	color: #aaa;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#nft-single-content .neoh_fn_title{
	margin-bottom: 50px;
}
#nft-single-content{
	padding-bottom: 110px;
}
/*------------------------------------------------------------------*/
/*	47) Contact Form 7
/*------------------------------------------------------------------*/
.contact__form label{
	display: block;
    width: 100%;
    font-size: 16px;
    color: var(--heading-color);
    margin-bottom: 4px;
}
.contact__form br{
	display: none;
}
.contact__form .cf__item{
	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;
	margin-bottom: 26px;
}
.contact__form .cf__item:last-child{
	margin-bottom: 0;
}
.contact__form input,
.contact__form textarea{
	width: 100%;
}
.contact__form input[type="submit"]{
	width: 100%;
}
form.submitting .wpcf7-spinner{
	margin-top: 20px;
}
.wpcf7-form-control-wrap{
	display: block;
	width: 100%;
}
.wpcf7-not-valid-tip{
	font-size: 16px;
	margin: 7px 0 0;
}
.wpcf7 form .wpcf7-response-output{
	margin: 20px 0;
	border-radius: 5px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output{
	border-color: var(--mc);
}

.neoh_fn_pagetitle ~ .neoh_fn_coming_soon{
	padding-top: 150px;
}
.neoh_fn_coming_soon{
	padding: 250px 0 150px;
	text-align: center;
}
.neoh_fn_coming_soon .soon_countdown{
	margin-bottom: 33px;
}
.neoh_fn_coming_soon .soon_title{
	max-width: 600px;
	margin: 0 auto;
}
.neoh_fn_coming_soon .neoh_fn_countdown{
	color: var(--mc) !important;
	font-size: 60px !important;
	margin-bottom: 4px !important;
}
.neoh_fn_coming_soon .soon_title h3{
	margin: 0;
	font-size: 36px;
	color: #ccc;
	margin-bottom: 13px;
}
.neoh_fn_coming_soon .soon_title p{
	margin: 0;
	font-size: 18px;
	line-height: 26px;
	color: #aaa;
}
.neoh_fn_boxed_countdown 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;
	justify-content: center;
	margin: 0;
	list-style-type: none;
	margin-left: -20px;
	flex-wrap: wrap;
}
.neoh_fn_boxed_countdown li{
	margin: 0;
	padding-left: 20px;
	margin-bottom: 20px;
}
.neoh_fn_boxed_countdown .item{
	min-width: 140px;
	min-height: 120px;
	text-align: center;
	border: 2px solid #555;
	border-radius: 5px;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.neoh_fn_boxed_countdown h3{
	margin: 0;
	font-size: 48px;
	font-weight: 600;
	letter-spacing: 0;
	color: #ccc;
}
.neoh_fn_boxed_countdown span{
	position: absolute;
	bottom: -5px;
	left: 12px;
	right: 12px;
	background-color: #111;
	display: block;
	line-height: 1;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}
/*------------------------------------------------------------------*/
/*	48) RESPONSIVE
/*------------------------------------------------------------------*/
@media(max-width: 1040px){
	
	.neoh_fn_footer .footer_top{
		padding: 100px 0;
	}
	.neoh_fn_pagetitle .fn__title{
		font-size: 50px;
	}
	/*blog*/
	.neoh_fn_blog_page{
		padding: 100px 0 95px;
	}
	/*collection*/
	.neoh_fn_collectionpage{
		padding: 100px 0;
	}
	.neoh_fn_collection{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_filters{
		width: 100%;
		min-width: 100%;
		margin-right: 0;
		margin-bottom: 50px;
	}
	[data-filter-sticky="on"] .neoh_fn_filters{
		position: relative;
		top: 0;
	}
	.neoh_fn_moving_blog .img_holder{
		opacity: 1;
		height: auto;
		width: 100%;
		position: relative;
		z-index: 1;
		visibility: visible;
		display: none;
	}
	.neoh_fn_moving_blog .img_holder[data-has="1"],
	.neoh_fn_moving_blog .has-post-thumbnail .img_holder{
		display: block;
	}
	.neoh_fn_moving_box{
		display: none !important;
	}
	.neoh_fn_nav .trigger{
		right: 30px;
	}
	.neoh_fn_nav .nav_menu a{
		font-size: 30px !important;
	}
	.neoh_fn_nav .nav_menu li{
		margin-bottom: 20px;
	}
}
@media(max-width: 900px){
	#nft-single-content .single_top_left{
		width: 100%;
	}
	#nft-single-content .nft_single_top{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	#nft-single-content .hidden_btns{
		justify-content: flex-start;
	}
	#nft-single-content .hidden_btns a{
		margin: 0 10px 10px 0;
	}
	#nft-single-content .nft_single_desc > *{width: 100%;}
	#nft-single-content .single_desc_right{padding: 29px 30px 32px;}
	#nft-single-content .single_desc_right .fn__title{font-size: 30px;}
	#nft-single-content .nft_single_desc{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_nft_cats li,
	.fn_cs_partners li{width: 50%;}
	.neoh_fn_wsidebar{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_wsidebar .sidebar_left{
		padding-right: 0;
		max-width: 100%;
	}
	.neoh_fn_wsidebar .sidebar_right{
		padding-left: 0;
		width: 100%;
		min-width: 100%;
		border-left: none;
	}
	#comment-section .sidebar_left{
		padding-right: 0;
		padding-bottom: 0;
	}
	.neoh_fn_pnb .pnb_wrapper{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_pnb .item{
		width: 100%;
		max-width: 100%;
	}
	.neoh_fn_pnb .trigger{
		width: 100%;
		max-width: 100%;
		border-top: 2px solid #111;
		border-bottom: 2px solid #111;
		border-left: none;
		border-right: none;
		padding: 30px 0;
	}
	.neoh_fn_nav{min-width: 100%;}
	.neoh_fn_nav .nav_footer{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_nav .neoh_fn_social_list ul{
		justify-content: flex-start;
	}
	.neoh_fn_nav .nav_footer .nf_left{
		margin-right: 0;
		margin-bottom: 10px;
	}
}
@media(max-width: 768px){
	.neoh_fn_nft_cats li,
	.neoh_fn_drops li{
		width: 100%;
	}
	.neoh_fn_roadmaplist .moveit,
	.neoh_fn_roadmaplist .moveline{
		display: none;
	}
	.neoh_fn_roadmaplist .road_in{
		padding-left: 0;
	}
	.neoh_fn_timeline .t_item,
	.neoh_fn_roadmaplist .t_item{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		padding: 20px;
	}
	.neoh_fn_timeline .t_item_img,
	.neoh_fn_roadmaplist .t_item_img{width: 100%;}
	.neoh_fn_timeline .t_item_info,
	.neoh_fn_roadmaplist .t_item_info{width: 100%;padding: 50px 0 0 0;}
	#respond form .input-half{width: 100%;}
	/* Blog Single */
	.neoh_fn_footer .footer_top .fn_title,
	.neoh_fn_single .single_title .fn__title{
		font-size: 30px;
	}
	.neoh_fn_author_info{
		padding: 30px;
		-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;
	}
	.neoh_fn_author_info .info_img{
		margin-right: 0;
		margin-bottom: 26px;
		width: inherit;
	}
	.neoh_fn_pnb .item{
		padding: 30px 0;
	}
	.neoh_fn_pnb .item:hover{
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.neoh_fn_pnb .item .fn_title{
		font-size: 20px;
	}
	.neoh_fn_product_modal{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_product_modal .img_item{
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}
	.neoh_fn_product_modal .content_item{
		width: 100%;
		padding-left: 0;
	}
	.neoh_fn_modal{
		padding: 20px;
	}
}
@media(max-width: 600px){
	.neoh_fn_comments .comment-body{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_comments .comment-avatar{
		margin-right: 0;
		margin-bottom: 14px;
	}
	.neoh_fn_comments .input-item.half-item{margin-top: 0;}
}
@media(max-width: 480px){
	.fn_cs_partners li{width: 100%;}
	.search_wrap form{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_widget_subscribers .input{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		
	}
	.neoh_fn_widget_subscribers input[type="text"]{
		margin-right: 0;
		margin-bottom: 10px;
		text-align: center;
	}
	.neoh_fn_widget_subscribers a{
		width: 100%;
	}
	.search_wrap input[type="submit"]{
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
		min-width: 100%;
	}
	.search_wrap input[type="text"]{
		text-align: center;
	}
	.search_wrap a{
		width: 100%;
		top: auto;
		left: 0;
	}
	.neoh_fn_protected form{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_protected input[type="submit"]{
		margin-left: 0;
		margin-top: 10px;
	}
	.neoh_fn_protected input[type="password"]{
		text-align: center;
	}
	.neoh_fn_footer .subscribe_in{
		padding: 0;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.neoh_fn_footer .subscribe_form input[type="text"]{
		margin-right: 0;
		margin-bottom: 10px;
		text-align: center;
	}
	.neoh_fn_footer .subscribe_form a{width: 100%;}
	.neoh_fn_footer .fb_in{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		justify-content: flex-start;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.neoh_fn_footer .fb_left{
		margin-bottom: 10px;
	}
}