@charset "utf-8";
/*
/*	Copyright (c) 2022 Frenify
/*	Author: Frenify
/*	This file is made for CURRENT TEMPLATE
/*


	List of CSS codes:
	
	01) Base
	02) Preloader
	03) Site Base
	04) Container
	05) Some same codes
	06) Site Structure
	07) HEADER
	08) HERO HEADER (Home #1)
	09) Animated Text
	10) Main Button
	11) Sliced Slider
	12) About Section
	13) Title with Divider
	14) Video Section
	15) Collection Section & Moving Collection Shortcode
	16) Parallax
	17) Team Section & Team Shortcode
	18) Contact Section & Shortcode
	19) Footer
	20) Right Navigation
	21) Creative Link
	22) Walletbox
	23) Mobile Navigation
	24) 404 Page
	25) Protected Page
	26) Coming Soon Page
	27) Blog Page
	28) Collection Page
	29) Contact Page
	30) Blog Single
	31) Roadmap Section & Shortcode
	32) FAQ Section & Accordion Shortcode
	33) Blog Section & Shortcode
	34) NFT Single Page
	35) Sponsor Section & Shortcode
	36) Totop Button
	37) Full Slider (Home #2)
	38) Cards Carousel (Home #3)
	39) 3D Carousel (Home #4)
	40) Zigzag Carousel (Home #5)
	41) Cookies, Terms & Conditions, Privacy Policy pages
	42) Selections
	43) RESPONSIVE


/*------------------------------------------------------------------*/
/*	01) Base
/*------------------------------------------------------------------*/
:root{
	--mc1: #01a3f4;
	--mc2: #feeb1a;
	--hc: #fff;
	--bc: #fff;
	--hff: 'Heebo', sans-serif;
	--bff: 'Nunito', sans-serif;
}
html{
	overflow-x: hidden;
	padding: 0px;
	margin: 0px;
}
*:after,
*:before,
*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*------------------------------------------------------------------*/
/*	02) Preloader
/*------------------------------------------------------------------*/
.metaverse_fn_preloader{
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(2,74,221);
	background: -moz-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	background: linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	transition: all .5s ease;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.metaverse_fn_preloader.ready{
	opacity: 0;
	visibility: hidden;
}
.multi-spinner-container{
	width: 150px;
    height: 150px;
    position: relative;
    margin: 30px auto;
    overflow: hidden;
}
.multi-spinner{
	position: absolute;
    width: calc(100% - 9.9px);
    height: calc(100% - 9.9px);
    border: 5px solid transparent;
    border-top-color: var(--mc2);
    border-radius: 50%;
    -webkit-animation: spin 5s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
    animation: spin 3s cubic-bezier(0.17, 0.49, 0.96, 0.76) infinite;
}
@keyframes spin{
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
    	transform: rotate(360deg);
	}
}
/*------------------------------------------------------------------*/
/*	03) Site Base
/*------------------------------------------------------------------*/
body{
	font-family: var(--bff);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.44;
	font-weight: 400;
	color: var(--bc);
	position: relative;
	word-break: break-word;
	background: rgb(2,74,221);
	background: -moz-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	background: linear-gradient(90deg, rgba(71,34,183,1) 0%, rgba(108,29,233,1) 50%, rgba(71,34,183,1) 100%);
}
body,
html{
	width: 100%;
    margin: 0px;
    padding: 0px;
}
body{
	height: auto;
	overflow-x: hidden;
}
html:after,
html:before{
	clear: both;
	display: table;
	content: '';
}
.fn__svg{
	fill: currentcolor;
	width: 18px;
	height: 18px;
	opacity: 0;
}
.replaced-svg{
	opacity: 1;
}
p{
	letter-spacing: 0;
	margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6{
	color: var(--hc);
	font-family: var(--hff);
	line-height: 1.22;
	letter-spacing: 0;
}
h1>a, h2>a, h3>a, h4>a, h5>a, h6>a{
	text-decoration: none;
	color: var(--hc);
}
h1>a:hover, h2>a:hover, h3>a:hover, h4>a:hover, h5>a:hover, h6>a:hover{
	color: var(--mc2);
}
input[type="password"],
input[type="text"]{
	background-color: transparent;
	border-radius: 0px;
	border: 2px solid rgba(255,255,255,.5);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 46px;
	height: 55px;
	padding: 0 25px;
	outline: none;
	outline-color: transparent;
	color: #fff;
}
textarea{
	background-color: transparent;
	border-radius: 0px;
	border: 2px solid rgba(255,255,255,.5);
	font-size: 18px;
	letter-spacing: 0;
	padding: 13px 25px;
	height: 250px;
	color: #fff;
}
textarea:focus,
input[type="password"]:focus,
input[type="text"]:focus{
	outline: none;
	background-color: transparent;
	border-color: var(--mc2);
}
::-webkit-input-placeholder { /* Edge */
	color: rgba(255,255,255,.8);
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: rgba(255,255,255,.8);
}

::placeholder {
	color: rgba(255,255,255,.8);
}
/*------------------------------------------------------------------*/
/*	04) Container
/*------------------------------------------------------------------*/
.container{
	width: 100%;
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
}
.container.wide{
	max-width: 1680px;
}
.container.small{
	max-width: 680px;
}
.container:after,
.clearfix:after,
.clearfix:before{
	content: '';
	clear: both;
	display: table;
}
@media(max-width: 1040px){.container{padding: 0 20px;}}
@media(max-width: 480px){.container{padding: 0 10px;}}
.mw300{max-width: 300px;}
.fn_row{
	margin-left: -60px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
[class^="fn_col"]{padding-left: 60px;}
.fn_col2{width: 50%;}
.fn_col1{width: 100%;}
/*------------------------------------------------------------------*/
/*	05) Some same codes
/*------------------------------------------------------------------*/
a.full_link{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.bg_overlay .bg_image,
.bg_overlay .bg_color,
.bg_overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.abs_img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center ;
}
.bs_img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: inherit;
	background-repeat: no-repeat;
	background-position: center ;
}
.bg_overlay .bg_color{
	z-index: 2;
}
/*------------------------------------------------------------------*/
/*	06) Site Structure
/*------------------------------------------------------------------*/
.metaverse_fn_main,
.metaverse_fn_main *{
	box-sizing: border-box;
}
.metaverse_fn_main{
	position: relative;
	z-index: 2;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}
.metaverse_fn_page{
	overflow: hidden;
	min-height: 100vh;
	min-height: calc(100vh - 93px);
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

/*------------------------------------------------------------------*/
/*	07) HEADER
/*------------------------------------------------------------------*/
.header{
	position: fixed;
	z-index: 90;
	top: 0;
	left: 0;
	right: 0;
	padding: 0;
	border-bottom: 1px solid transparent;
	transition: all .3s ease;
}
.header.active{
	padding: 5px 0;
	background: rgb(2,74,221);
    background: -moz-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    background: linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	border-bottom-color: rgba(255,255,255,.3);
	transform: translateY(-102%);
}
.header_in{
	max-width: 1680px;
	margin: 0 ;
	padding: 0px 0px;
	
}
.header.done{
	transform: translateY(0%);
}
.header.active .logo img{
	transform: scale(0.8);
	transform-origin: left;
}
.header.active .logo span{
	margin-left: 10px;
}
.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;
	margin-left: 10%;
}
.header .has_text{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	text-decoration: none;
}
.header .logo img{
	transition: all .3s ease;
	width :185px
}
.header .logo span{
	margin: 0;
	color: #fff;
	max-width: 153px;
	padding-left: 30px;
	margin-left: 30px;
	min-height: 50px;
	position: relative;
	font-size: 16px;
	letter-spacing: .25px;
	font-weight: 600;
	font-family: var(--hff);
	line-height: 22px;
	border-left: 3px solid #00d8ff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	transition: all .3s ease;
}
.header .nav ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: 10px;
}
.header .nav li{
	margin: 0;
	padding: 0;
	margin-left: 10px;
	position: relative;
}
.header .nav > ul > li.menu-item-has-children:after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	border-width: 5px 4.5px 0 4.5px;
	border-color: #4eb1f4 transparent transparent transparent;
	left: 50%;
	top: 100%;
	margin-top: -1px;
	z-index: 5;
	opacity: 0;
}
.header .nav > ul > li.menu-item-has-children:hover:after{
	opacity: 1;
}
.header .nav .sub-menu{
	overflow: hidden;
	margin: 0;
	padding: 23px 0;
	position: absolute;
	width: 250px;
	border: 1px solid rgba(255,255,255,.7);
	background: rgb(2,138,237);
	background: -moz-linear-gradient(90deg, rgba(2,138,237,1) 0%, rgba(65,176,245,1) 50%, rgba(2,159,243,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(2,138,237,1) 0%, rgba(65,176,245,1) 50%, rgba(2,159,243,1) 100%);
	background: linear-gradient(90deg, rgba(2,138,237,1) 0%, rgba(65,176,245,1) 50%, rgba(2,159,243,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#028aed",endColorstr="#029ff3",GradientType=1);
	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;
	left: 0;
	top: 100%;
	margin-top: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all .5s ease;
}
.header .nav .sub-menu:after{
	content: '';
	position: absolute;
	bottom: 100%;
	height: 10px;
	left: 0;
	right: 0;
}
.header .nav li:hover > ul{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.header .nav .sub-menu li{
	margin: 0;
	padding: 0;
	margin-bottom: 4px;
}
.header .nav .sub-menu li:last-child{
	margin-bottom: 0;
}
.header .nav .sub-menu a{
	display: block;
    text-decoration: none;
    font-family: var(--hff);
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 30px;
	padding: 0 29px;
	position: relative;
	white-space: nowrap;
}
.header .nav .sub-menu a:after{
	content: '';
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	width: 0;
	transition: all .3s ease;
}
.header .nav .sub-menu a:hover{
	color: var(--mc2);
	transform: translateX(15px);
}
.header .nav .sub-menu a:hover:after{
	width: 15px;
}
.gradient_link{
	display: block;
	text-decoration: none;
	font-family: var(--hff);
	font-size: 22px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	letter-spacing: -0.25px;
	line-height: 38px;
	padding: 0 29px;
	background: rgba(255,255,255,.25);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.3);
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	position: relative;
	z-index: 3;
}
.gradient_link:hover {
	color: #000 !important;
}
.gradient_link:hover:before {
	right: 0%;
	left: auto;
	width: 100%;
}
.gradient_link:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	color: #000 !important;
	background: var(--mc2);
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.header .helpful{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	column-gap: 10px;
}
.connect_btn{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	text-decoration: none;
	font-family: var(--hff);
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	min-height: 45px;
	padding: 10px 30px;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	position: relative;
	border-radius: 30px;
}
.connect_btn .text{
	z-index: 2;
	position: relative;
	top: 1px;
}
.connect_btn:after{
	z-index: 0;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border-radius: 30px;
	border: 3px solid #00d8ff;
	position: absolute;
	content: '';
}
.connect_btn:hover {
	color: #000 !important;
}
.connect_btn:hover:before {
	right: 0%;
	left: auto;
	width: 100%;
}
.connect_btn:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: 1;
	content: '';
	color: #000 !important;
	background: var(--mc2);
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.trigger{
	width: 45px;
	min-width: 45px;
	height: 45px;
	display: block;
	text-decoration: none;
	border-radius: 100%;
	position: relative;
	overflow: hidden;
	z-index: 3;
	margin-top: 6px;
}
.trigger span{
	top: 21px;
	left: 13px;
}
.trigger span,
.trigger span:before,
.trigger span:after{
	position: absolute;
	width: 19px;
	height: 3px;
	display: block;
	background-color: #fff;
	content: '';
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.trigger span:before,
.trigger span:after{
	left: 0;
}
.trigger span:before{
	bottom: 100%;
	margin-bottom: 3px;
}
.trigger span:after{
	top: 100%;
	margin-top: 3px;
}
.trigger:hover{
	border-color: var(--mc2);
}
.trigger:hover span,
.trigger:hover span:after,
.trigger:hover span:before{
	background-color: #000;
}

.trigger:after{
	z-index: -2;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border-radius: 100%;
	border: 3px solid #00d8ff;
	position: absolute;
	content: '';
}
.trigger:hover:before {
	right: 0%;
	left: auto;
	width: 100%;
}
.trigger:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background: var(--mc2);
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
/*------------------------------------------------------------------*/
/*	08) HERO HEADER (Home #1)
/*------------------------------------------------------------------*/
#home{
	position: relative;
	padding: 230px 0 274px;
}
.hero_header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.hero_header .hero_left{
	width: 50%;
	max-width: 500px;
	padding-right: 45px;
}
.hero_header .hero_right{
	width: 50%;
}
.hero_header .title{
	font-size: 60px;
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 26px;
}
.hero_header .description{
	margin-bottom: 40px;
}
.hero_header .buttons{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.hero_header .buttons a{
	margin: 0 10px 10px 0;
}
.hero_header .info{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.hero_header .info .count{
	font-size: 60px;
	color: var(--mc2);
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}
.hero_header .info p{
	margin: 0;
	max-width: 150px;
	color: rgba(255,255,255,.8);
	margin-left: 30px;
	font-size: 18px;
	line-height: 1.2;
}
/*------------------------------------------------------------------*/
/*	09) Animated Text
/*------------------------------------------------------------------*/
.fn_animated_text{
	margin: 0;
	font-size: 24px;
	color: rgba(255,255,255,.8);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.fn_animated_text.small{
	font-size: 18px;
}
.fn_animated_text .letter {
	color: rgba(255,255,255,.8);
	opacity: 0;
	transform: translate(-300px, 0) scale(0);
	display: inline-block;
}

@keyframes FrenifyLetterAnimation {
	60% {
		transform: translate(20px, 0) scale(1);
		color: rgba(255,255,255,.8);
	}

	80% {
		transform: translate(20px, 0) scale(1);
		color: rgba(255,255,255,.8);
	}

	99% {
		transform: translate(0) scale(1.2);
		color: var(--mc2);
	}

	100% {
		transform: translate(0) scale(1);
		opacity: 1;
		color: rgba(255,255,255,.8);
	}
}
.fn_animated_text[data-color="black"] .letter{
	color: #000;
}
@keyframes FrenifyLetterAnimationblack {
	60% {
		transform: translate(20px, 0) scale(1);
		color: #000;
	}

	80% {
		transform: translate(20px, 0) scale(1);
		color: #000;
	}

	99% {
		transform: translate(0) scale(1.2);
		color: var(--mc2);
	}

	100% {
		transform: translate(0) scale(1);
		opacity: 1;
		color: #000;
	}
}
/*------------------------------------------------------------------*/
/*	10) Main Button
/*------------------------------------------------------------------*/
.metaverse_fn_button{
	border: 1px solid var(--mc2);
	padding: 4px;
	display: block;
	text-decoration: none;
	width: fit-content;
	min-width: 200px;
	max-width: 100%;
	position: relative;
	cursor: pointer;
}
.metaverse_fn_button:before,
.metaverse_fn_button:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-left: 2px solid var(--mc2);
	border-right: 2px solid var(--mc2);
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.metaverse_fn_button:before{
	top: 0;
}
.metaverse_fn_button:after{
	bottom: 0;
}
.metaverse_fn_button .text{
	background-color: transparent;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	min-height: 45px;
	padding: 0 20px;
	min-width: 200px;
	text-align: center;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #000;
	position: relative;
	overflow: hidden;
	justify-content: center;
}
.metaverse_fn_button input[type=submit]{
	text-align: center;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #000;
	background-color: transparent !important;
	outline: none !important;
}
.metaverse_fn_button .text img{
	margin-right: 10px;
	position: relative;
	top: -1px;
}
.metaverse_fn_button:hover .text{
	background-color: transparent;
}
.metaverse_fn_button:hover .text:before {
	right: 0%;
	left: auto;
	width: 100%;
}
.metaverse_fn_button .text:after{
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	z-index: -2;
	content: '';
	right: 0;
	background-color: var(--mc2);
}
.metaverse_fn_button .text:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: -1;
	content: '';
	background: #fff;
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.metaverse_fn_button:hover:after,
.metaverse_fn_button:hover:before{
	opacity: 0;
}
.metaverse_fn_button.white{
	border-color: #fff;
}
.metaverse_fn_button.white:before,
.metaverse_fn_button.white:after{
	border-left-color: #fff;
	border-right-color: #fff;
}
.metaverse_fn_button.white .text:before{
	background-color: var(--mc2);
}
.metaverse_fn_button.white .text:after{
	background-color: #fff;
}
/*------------------------------------------------------------------*/
/*	11) Sliced Slider
/*------------------------------------------------------------------*/
.fn_cs_glitch_slider{
	position: relative;
}
.fn_cs_glitch_slider .slider .active{
	position: relative;
	transform: translateY(0%);
	opacity: 1;
	visibility: visible;
}
.fn_cs_glitch_slider .slider li{
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease;
}
.fn_cs_glitch_slider .slider ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
/*	overflow: hidden;*/
	position: relative;
}
.fn_cs_glitch_slider .slider .item{
	width: 100%;
	border: 1px solid rgba(255,255,255,.3);
	padding: 30px;
	position: relative;
}
.slider__count{
	overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -80px;
    width: 100%;
    min-height: 250px;
    text-align: center;
    font-size: 36px;
	font-family: var(--hff);
    line-height: 0.85;
    font-weight: bold;
	text-transform: uppercase;
    transition: transform 0.5s ease, opacity 0.3s 1.4s ease;
    transform: translate3d(0, 1vw, 0);
}
.slider__count .count-back,
.slider__count .count-front {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.active .slider__count{
	transform: translate3d(0,0,0);
}
.slider__count .count-overlay {
    overflow: hidden;
    position: relative;
    transform: translate3d(100%, 0, 0);
    transition: transform 1.5s 0.2s ease;
    color: transparent;
}
.slider__count .count-overlay:before {
    content: attr(data-index);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: var(--mc2);
    transform: translate3d(-100%, 0, 0);
    transition: transform 1.5s 0.2s ease;
}
.active .slider__count .count-overlay{
	transform: translate3d(0,0,0);
}
.active .slider__count .count-overlay:before {
    transform: translate3d(0, 0, 0);
}

.left__border:after,
.left__border:before,
.right__border:before,
.right__border:after{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	display: block;
	z-index: 1;
	transition: all .3s ease;
}
.img_holder:hover .right__border:after,
.img_holder:hover .right__border:before,
.img_holder:hover .left__border:before,
.img_holder:hover .left__border:after,
.nft__item:hover .right__border:after,
.nft__item:hover .right__border:before,
.nft__item:hover .left__border:before,
.nft__item:hover .left__border:after,
.blog__item:hover .right__border:after,
.blog__item:hover .right__border:before,
.blog__item:hover .left__border:before,
.blog__item:hover .left__border:after,
.item:hover .right__border:after,
.item:hover .right__border:before,
.item:hover .left__border:before,
.item:hover .left__border:after{
	width: 70px;
	height: 70px;
}
.left__border:before{
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	top: -1px;
	left: -1px;
}
.left__border:after{
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	bottom: -1px;
	left: -1px;
}
.right__border:before{
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	top: -1px;
	right: -1px;
}
.right__border:after{
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	bottom: -1px;
	right: -1px;
}
.fn_cs_glitch_slider .img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.fn_cs_glitch_slider .slider .active .img span{
	transform: translateY(0);
}
.fn_cs_glitch_slider .img span{
	width: 25%;
    height: 100%;
    transition: 1s;
	background-size: cover;
	transform: translateY(-150%);
}
.fn_cs_glitch_slider .img span:nth-child(1){
	background-position: 0;
	transition-delay: 0s;
}
.fn_cs_glitch_slider .img span:nth-child(2){
	background-position: 33.33333%;
	transition-delay: .1s
}
.fn_cs_glitch_slider .img span:nth-child(3){
	background-position: 66.66666%;
	transition-delay: .2s
}
.fn_cs_glitch_slider .img span:nth-child(4){
	background-position: 100%;
	transition-delay: .3s
}
.fn_cs_glitch_slider .image{
	border: 2px solid rgba(255,255,255,.4);
	background-color: rgba(255,255,255,.2);
	overflow: hidden;
	position: relative;
}
.fn_cs_glitch_slider .image img{
	opacity: 0;
	min-width: 100%;
}
.fn_cs_glitch_slider .pagination li:last-child{
	margin-top: 0;
}
.fn_cs_glitch_slider .pagination li{
	margin: 0;
	padding: 0;
	width: 3px;
	height: 50px;
	transition: opacity .3s ease;
	position: absolute;
	left: 0;
	right: 0;
}
.fn_cs_glitch_slider .pagination ul{
	position: absolute;
	left: 100%;
	bottom: 31px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-left: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column-reverse;
	-moz-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	-o-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
.fn_cs_glitch_slider .pagination .item{
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.4);
	position: relative;
}
.fn_cs_glitch_slider .pagination .active .item:after{
	height: 100%;
	transition: all 3s linear;
	top: auto;
	bottom: 0;
}
.fn_cs_glitch_slider .pagination .item:after{
	content: '';
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background-color: #fff;
	z-index: 2;
	transition: all .5s linear;
}
/*
.fn_cs_glitch_slider:hover .pagination li{
	opacity: 0;
}
.fn_cs_glitch_slider:hover .pagination li.active{
	height: 100%;
	opacity: 1;
	bottom: 0 !important;
}
*/
/*------------------------------------------------------------------*/
/*	12) About Section
/*------------------------------------------------------------------*/
#about{
	padding: 50px 0 0;
	background-color: var(--mc1);
	position: relative;
}
#about .fn_cs_title{
	margin-bottom: 41px;
}
.section_divider{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 55;
}
.section_divider .fn__svg{
	width: 100%;
	height: auto;
	display: block;
}
.section_divider .st1{
	color: var(--mc2);
}
.section_divider .st0{
	color: #fff;
}
.about_img{
	padding-top: 58px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.about_img img{
	position: relative;
	z-index: 2;
	width: 100%;
}
.about_img .top{
	bottom: 0;
	color: var(--mc2);
}
.about_img .bottom{
	top: 100%;
	color: #af8b1d;
}
.about_img .fn__svg{
	width: 100%;
	display: block;
	height: auto;
	position: absolute;
	z-index: 0;
}
/*------------------------------------------------------------------*/
/*	13) Title with Divider
/*------------------------------------------------------------------*/
.fn_cs_title .desc{
	text-align: center;
	color: #fff;
	font-weight: 300;
	font-size: 18px;
	justify-content: center;
	max-width: 1100px;
	margin: 0 auto;
	padding-top: 21px;
}
.fn_cs_title .divider{
	width: 444px;
	max-width: 100%;
	height: 16px;
	position: relative;
	margin: 0 auto;
	margin-bottom: 30px;
}
.fn_cs_title .divider .line{
	background-color: transparent !important;
	height: 2px;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 0;
	right: 0;
}
.fn_cs_title .divider .line:after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-color: var(--mc2);
	transform: translateX(500px);
	opacity: 0;
	transition: all .6s ease;
}
.fn_cs_title .divider .line:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-color: var(--mc2);
	transform: translateX(-500px);
	opacity: 0;
	transition: all .6s ease;
}
.fn_cs_title .divider .middle{
	position: absolute;
	width: 96px;
	height: 100%;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
	left: 50%;
	margin-left: -48px;
	transition: all .3s .3s ease;
}
.fn_cs_title .divider .left2{
	width: 38px;
	height: 100%;
	clip-path: polygon(0 0, 79% 0, 100% 100%, 21% 100%);
	right: 50%;
	margin-right: 54px;
	position: absolute;
	transition: all .3s .5s ease;
}
.fn_cs_title .divider .left1{
	width: 20px;
	height: 100%;
	clip-path: polygon(0 0, 60% 0, 100% 100%, 40% 100%);
	right: 50%;
	margin-right: 97px;
	position: absolute;
	transition: all .3s .7s ease;
}
.fn_cs_title .divider .right2{
	width: 38px;
	height: 100%;
	clip-path: polygon(21% 0, 100% 0, 79% 100%, 0 100%);
	left: 50%;
	margin-left: 54px;
	position: absolute;
	transition: all .3s .5s ease;
}
.fn_cs_title .divider .right1{
	width: 20px;
	height: 100%;
	clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%);
	left: 50%;
	margin-left: 97px;
	position: absolute;
	transition: all .3s .7s ease;
}
.fn_cs_title .divider .middle,
.fn_cs_title .divider .right1,
.fn_cs_title .divider .right2,
.fn_cs_title .divider .left1,
.fn_cs_title .divider .left2{
	transform: translateY(50px);
	opacity: 0;
}
.fn_cs_title.ready .divider .middle,
.fn_cs_title.ready .divider .right1,
.fn_cs_title.ready .divider .right2,
.fn_cs_title.ready .divider .left1,
.fn_cs_title.ready .divider .left2{
	transform: translateY(0px);
	opacity: 1;
}
.fn_cs_title.ready .divider .line:after,
.fn_cs_title.ready .divider .line:before{
	transform: translateX(0px);
	opacity: 1;
}
.maintitle,
.fn_cs_title .title{
	margin: 0;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.1;
	text-align: center;
}
.fn_cs_title .divider[data-color="1"] .line:after,
.fn_cs_title .divider[data-color="1"] .line:before,
.fn_cs_title .divider[data-color="1"] div{
	background-color: var(--mc1);
}
.fn_cs_title .divider[data-color="2"] .line:after,
.fn_cs_title .divider[data-color="2"] .line:before,
.fn_cs_title .divider[data-color="2"] div{
	background-color: var(--mc2);
}
.maintitle[data-color="black"],
.fn_cs_title .title[data-color="black"]{
	color: #000;
}
.maintitle[data-color="white"],
.fn_cs_title .title[data-color="white"]{
	color: #fff;
}
.fn_cs_title .title span{
	color: var(--mc2);
}
.fn_cs_title .title.small{
	font-size: 36px;
	padding-top: 4px;
}
.fn_cs_title .desc[data-color="black"]{
	color: #000;
}
/*------------------------------------------------------------------*/
/*	14) Video Section
/*------------------------------------------------------------------*/
#video{
	padding: 100px 0 100px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
#video .fn_cs_title{
	margin-bottom: 52px;
}
.fn_cs_video{
	position: relative;
}
.fn_cs_video img{
	min-height: 150px;
	box-shadow: 0px 10px 50px rgba(0,0,0,0);
}
a.metaverse_fn_videobutton,
.fn_cs_video a{
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	margin: -60px 0 0 -60px;
	z-index: 25;
}
a.metaverse_fn_videobutton:after,
.fn_cs_video a:after{
	width: 90px;
	height: 90px;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: #fff;
	border-radius: 50%;
	margin: -45px 0 0 -45px;
	z-index: -1;
}
a.metaverse_fn_videobutton .fn__svg,
.fn_cs_video a .fn__svg{
	width: 120px;
	height: 120px;
	display: block;
	transition: all 1s ease;
	border-radius: 50%;
}
a.metaverse_fn_videobutton .stroke-solid,
.fn_cs_video a .stroke-solid{
	stroke-width: 6px;
	stroke: rgba(255,255,255,.5);
}
a.metaverse_fn_videobutton .icon,
.fn_cs_video a .icon{
	color: var(--mc1);
}
a.metaverse_fn_videobutton:hover .stroke-solid,
.fn_cs_video a:hover .stroke-solid {
	opacity: 1;
	stroke-dashoffset: 300;
}
a.metaverse_fn_videobutton:hover .icon,
.fn_cs_video a:hover  .icon {
	transform: scale(.8);
}
a.metaverse_fn_videobutton .stroke-solid,
.fn_cs_video a .stroke-solid {
	stroke-dashoffset: 0;
	stroke-dashArray: 300;
	stroke-width: 4px;
	transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
a.metaverse_fn_videobutton .icon,
.fn_cs_video a .icon {
	transform: scale(.7);
	transform-origin: 50% 50%;
	transition: transform 200ms ease-out;
}
a.metaverse_fn_videobutton:hover .fn__svg,
.fn_cs_video a:hover .fn__svg{
	background-color: rgba(255,255,255,.05);
}
/*------------------------------------------------------------------*/
/*	15) Collection Section & Moving Collection Shortcode
/*------------------------------------------------------------------*/
#collection{
	padding: 100px 0 0 0;
}
#collection .fn_cs_title{
	margin-bottom: 46px;
}
 .fn_cs_moving_collection{
	margin-bottom: 30px;
}
.fn_cs_moving_collection .item{
	width: 300px;
	position: relative;
}
.fn_cs_moving_collection img{
	min-width: 100%;
	opacity: 0;
	display: inline !important;
}
.fn_cs_moving_collection .left__border,
.fn_cs_moving_collection .right__border{
	display: none;
}
.fn_cs_moving_collection[data-layout="modern"] .item{
	border: 2px solid rgba(255,255,255,.4);
	background-color: rgb(116, 12, 202);
}
.fn_cs_moving_collection[data-layout="modern"] .abs_img{
	left: 17px;
	right: 17px;
	top: -2px;
	bottom: -2px;
}
.fn_cs_moving_collection[data-layout="border"] .left__border,
.fn_cs_moving_collection[data-layout="border"] .right__border{
	display: block;
}
.fn_cs_moving_collection[data-layout="border"] .item{
	border: 1px solid rgba(255,255,255,.4);
}
.fn_cs_moving_collection[data-layout="border"] .abs_img{
	left: 20px;
	right: 20px;
	bottom: 20px;
	top: 20px;
	border: 1px solid rgba(255,255,255,.3);
} 
.fn_cs_collection_info{
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
.fn_cs_collection_info .info_in{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.fn_cs_collection_info .fn__svg.bottom{
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	color: var(--mc1);
	opacity: .2;
	height: auto;
	z-index: 0;
}
.fn_cs_collection_info .count{
	color: var(--mc2);
	font-weight: 900;
	margin: 0;
	line-height: 1;
	font-size: 7.82vw;
	margin-bottom: 21px;
}
.fn_cs_collection_info .title{
	margin: 0;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
	margin-bottom: 27px;
	text-align: center;
}
.fn_cs_collection_info p{
	text-align: center;
	margin: 0;
	color: #fff;
	font-weight: 300;
	margin-bottom: 42px;
	justify-content: center;
	font-size: 18px;
}
/*------------------------------------------------------------------*/
/*	16) Parallax
/*------------------------------------------------------------------*/
#parallax{
	overflow: hidden;
	position: relative;
}
.myparallax{
    height: 100%;
	height: 750px;
	height: 80vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.myparallax[data-parallax="yes"]{
	 background-attachment: fixed;
}
.particle_wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}
/*------------------------------------------------------------------*/
/*	17) Team Section & Team Shortcode
/*------------------------------------------------------------------*/
#team{
	position: relative;
	padding: 100px 0 50px;
	border-bottom: 1px solid rgba(255,255,255,.3)
}
#team .fn_cs_title{
	margin-bottom: 92px;
}

.fn_cs_team .team_list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -40px;
	flex-wrap: wrap;
}
.fn_cs_team .team_item{
	width: 33.3333%;
	padding: 0;
	margin: 0;
	padding-left: 40px;
	margin-bottom: 40px;
}
.fn_cs_team .item{
	position: relative;
	width: 100%;
	border: 1px solid rgba(255,255,255,.3);
	padding: 19px;
}
.fn_cs_team .image img{
	min-width: 100%;
	margin-bottom: 20%;
}
.fn_cs_team .item_in{
	width: 100%;
	position: relative;
	border: 2px solid rgba(255,255,255,.2);
}
.fn_cs_team .title_holder{
	position: absolute;
	left: 12px;
	bottom: 12px;
	right: 12px;
	z-index: 3;
}
.fn_cs_team .title_holder .occ{
	margin: 0;
	padding: 0 10px;
	font-size: 16px;
	color: #fff;
	line-height: 25px;
	text-align: center;
	background-color: #000;
}
.fn_cs_team .title_holder .occ span{
	position: relative;
	top: 1px;
}
.fn_cs_team .details{
	margin: 0;
	padding: 15px 10px 11px;
	background-color: var(--mc2);
}
.fn_cs_team .details ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.fn_cs_team .details ul li{
	margin: 0;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.fn_cs_team .details ul li:first-child:before{
	display: none;
}
.fn_cs_team .details ul li:before{
	content: '—';
	margin: 0 4px;
	font-size: 16px;
	font-family: var(--hff);
	color: #000;
}
.fn_cs_team .details ul a{
	display: block;
	text-decoration: none;
	font-size: 16px;
	font-family: var(--hff);
	color: #000;
}
.fn_cs_team .details .name{
	margin: 0;
	padding: 0;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0;
	color: #000;
}
/*------------------------------------------------------------------*/
/*	18) Contact Section & Shortcode
/*------------------------------------------------------------------*/
#contact{
	padding: 100px 0 100px;
}
.fn_cs_contact_info{
	padding: 84px 0 33px;
}
.fn_cs_contact_info p{
	margin-bottom: 27px;
}
.fn_cs_contact_info p:last-child{
	margin-bottom: 0;
}
.fn_cs_contact_info ul{
	margin: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -45px;
}
.fn_cs_contact_info li{
	padding-left: 45px;
	width: 50%;
	margin-bottom: 40px;
}
.fn_cs_contact_info h4{
	margin: 0;
	margin-bottom: 9px;
	font-weight: 900;
	color: var(--mc2);
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0px;
}
.fn_cs_contact_info h3{
	margin: 0;
	margin-bottom: 39px;
	font-weight: 300;
	letter-spacing: 0;
	font-size: 24px;
	font-family: var(--bff);
	max-width: 400px;
}
.fn_cs_contact_info .item *:last-child{
	margin-bottom: 0;
}
.fn_cs_contact_info a:hover{
	color: var(--mc2);
}
/******/
.fn_cs_contact_form ul{
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0;
	margin-left: -40px;
	flex-wrap: wrap;
}
.fn_cs_contact_form input[type="text"]{
	height: 80px;
	padding: 0 27px;
}
.fn_cs_contact_form input[type="text"],
.fn_cs_contact_form textarea{
	display: block;
	width: 100%;
	min-width: 100%;
	background-color: transparent !important;
	outline: none;
	color: #fff;
}
.fn_cs_contact_form textarea:focus,
.fn_cs_contact_form input[type="text"]:focus{
	border-color: var(--mc2);
}
.fn_cs_contact_form li{
	width: 50%;
	padding-left: 40px;
	margin-bottom: 40px;
}
.fn_cs_contact_form li:last-child{
	margin-bottom: 0;
}
.fn_cs_contact_form li.full{
	width: 100%;
}
.empty_notice,
.returnmessage{
	padding: 20px;
	width: 100%;
	display: none;
	color: #eee;
	margin-top: 20px;
	position: relative;
}

.empty_notice:after,
.returnmessage:after{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(255,255,255,.5);
}
.fn__checkbox {
	display: block;
	position: relative;
	padding-left: 37px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 37px;
}
.fn__checkbox .fn__svg{
	opacity: 0;
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -7px 0 0 -7px;
	color: var(--mc2);
}
.fn__checkbox p{
	margin: 0;
	color: #fff;
}
.fn__checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.fn__checkmark {
	position: absolute;
	top: 1px;
	left: 0;
	height: 22px;
	width: 22px;
	border: 2px solid rgba(255,255,255,.5);
}
.fn__checkbox input:checked ~ .fn__checkmark .fn__svg {
	opacity: 1;
}

/*------------------------------------------------------------------*/
/*	19) Footer
/*------------------------------------------------------------------*/
#footer{
	padding: 34px 0 32px;
	border-top: 1px solid rgba(255,255,255,.08);
	box-shadow: 0px 5px 20px rgba(0,0,0,0.25);
	background-color: rgba(32,42,69,0.3);
}
.footer{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-webkit-column-gap: 40px;
	-moz-column-gap: 40px;
	-o-column-gap: 40px;
	column-gap: 40px;
	-ms-align-items: center;
	align-items: center;
}
.footer p{
	margin: 0;
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: #fff;
}
.footer p a{
	color: #fff;
	text-decoration: none;
}
.footer p a:hover{
	color: var(--mc2);
}
.footer ul{
	margin: 0;
	list-style-type: none;
	margin-left: -30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.footer li{
	margin: 0;
	margin-left: 30px;
}
.footer li a{
	font-size: 16px;
	font-family: var(--hff);
	letter-spacing: 0;
	text-decoration: none;
	color: #fff;
}
.footer li a:hover{
	color: var(--mc2);
}

/*------------------------------------------------------------------*/
/*	20) Right Navigation
/*------------------------------------------------------------------*/
.metaverse_fn_rightnav.ready,
.metaverse_fn_rightnav_closer.ready{
	display: none;
}
.metaverse_fn_rightnav_closer{
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	background-color: rgba(0,0,0,0.8);
	transition: all .5s ease;
	cursor: pointer;
	transform: translateX(-102%);
}
.metaverse_fn_rightnav.active,
.metaverse_fn_rightnav_closer.active{
	transform: translateX(0);
}
.metaverse_fn_rightnav{
	transform: translateX(102%);
	width: 400px;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #024add;
	z-index: 9999;
	padding: 70px 40px;
	transition: all .5s ease;
	overflow-y: auto;
}
.metaverse_fn_rightnav .navbox{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between
}
.metaverse_fn_rightnav .nav_holder{
	padding: 73px 0 64px;
	overflow: hidden;
	position: relative;
}
.metaverse_fn_rightnav .nav_holder .icon{
	display: none;
}
.metaverse_fn_rightnav .nav_holder ul{
	list-style-type: none;
	margin: 0;
	text-align: center;
	transition: all .3s ease;
}
.metaverse_fn_rightnav .nav_holder .sub-menu{
	margin: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: #024add;
	left: 100%;
	opacity: 0;
}
.metaverse_fn_rightnav .nav_holder .active ~ .sub-menu{
	z-index: 5;
	opacity: 1;
}
.metaverse_fn_rightnav .nav_holder a{
	font-size: 22px;
	color: #ddd;
	letter-spacing: -0.25px;
	line-height: 30px;
	font-family: var(--hff);
	text-decoration: none;
	display: block;
	font-weight: 700;
	padding: 0 17px;
	text-transform: uppercase;
}
.metaverse_fn_rightnav .nav_holder .fn__svg{
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
    color: #fff;
    width: 12px;
    height: 12px;
	position: absolute;
	left: 100%;
	margin-left: 5px;
	top: 50%;
	margin-top: -6px;
}
.metaverse_fn_rightnav .nav_holder .next,
.metaverse_fn_rightnav .nav_holder .prev{
	font-size: 18px;
}
.metaverse_fn_rightnav .nav_holder .prev .fn__svg{
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
    right: 100%;
    margin-right: 5px;
	left: auto;
	margin-left: 0;
	margin-top: -7px;
}
.metaverse_fn_rightnav .nav_holder li{
	margin-bottom: 10px;
}
.metaverse_fn_rightnav .nav_holder li:last-child{
	margin-bottom: 0;
}
.metaverse_fn_rightnav .search_holder{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	margin-bottom: 24px;
}
.metaverse_fn_rightnav .search_holder input{
	width: 100%;
	margin-right: 10px;
	height: 50px;
	line-height: 46px;
}
.metaverse_fn_rightnav .search_holder .fn__svg{
	width: 18px;
	height: 18px;
}
.metaverse_fn_rightnav .search_holder a{
	width: 60px;
	min-width: 60px;
	height: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255,255,255,.5);
	color: #fff;
}
.metaverse_fn_rightnav .search_holder a:hover{
	border-color: var(--mc2);
}
.metaverse_fn_rightnav .copyright{
	text-align: center;
	margin-bottom: 17px;
}
.metaverse_fn_rightnav .copyright p{
	max-width: 250px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0;
	font-family: var(--hff);
	color: #fff;
}
.metaverse_fn_rightnav .copyright a{
	color: #fff;
	text-decoration: none;
}
.metaverse_fn_rightnav .copyright a:hover{
	color: var(--mc2);
}

.metaverse_fn_rightnav .social_icons ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin: 0;
	list-style-type: none;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	margin-left: -10px;
}
.metaverse_fn_rightnav .social_icons li{
	margin: 5px 0 5px 10px;
}
.metaverse_fn_rightnav .social_icons a{
	text-decoration: none;
	color: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	border: 2px solid rgba(255,255,255,.5);
	width: 40px;
	height: 40px;
	justify-content: center;
}
.metaverse_fn_rightnav .social_icons a:hover{
	border-color: var(--mc2);
}
.metaverse_fn_rightnav .social_icons .fn__svg{
	width: 16px;
	height: 16px;
	display: block;
}
.metaverse_fn_rightnav{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.metaverse_fn_rightnav::-webkit-scrollbar{
  	width: 4px;
}
.metaverse_fn_rightnav:-webkit-scrollbar-track{
  	background: #444;
}
.metaverse_fn_rightnav::-webkit-scrollbar-thumb{
	background-color: var(--mc1);
}
.metaverse_fn_rightnav .list_holder .list{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.metaverse_fn_rightnav .list_holder .list a{
	margin-bottom: 10px;
}
.metaverse_fn_rightnav .list_holder .list a:last-child{
	margin-bottom: 0;
}

/*------------------------------------------------------------------*/
/*	21) Creative Link
/*------------------------------------------------------------------*/
.creative_link{
	background-image: -moz-linear-gradient(90deg, var(--mc2), var(--mc2) 50%, #fff 50%);
	background-image: -webkit-linear-gradient(90deg, var(--mc2), var(--mc2) 50%, #fff 50%);
	background-image: linear-gradient(to right, var(--mc2), var(--mc2) 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
	font-family: var(--hff);
}
.creative_link:before{
	content: "";
    background: var(--mc2);
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}
.creative_link:hover {
	background-position: 0;
}
.creative_link:hover:before {
  	width: 100%;
}
/*------------------------------------------------------------------*/
/*	22) Walletbox
/*------------------------------------------------------------------*/
.metaverse_fn_wallet_closer.ready,
.metaverse_fn_walletbox.ready{
	display: none;
}
.metaverse_fn_wallet_closer{
	position: fixed;
	z-index: 999;
	left: 0;
	bottom: 0;
	top: 0;
	right: 0;
	background-color: rgba(0,0,0,0.8);
	transition: all .5s ease;
	cursor: pointer;
	transform: translateX(-102%);
}
.metaverse_fn_wallet_closer.active{
	transform: translateX(0);
}
.metaverse_fn_walletbox{
	width: 540px;
	max-width: 100%;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(150%,-50%);
	background-color: #024add;
	z-index: 9999;
	padding: 73px 60px 60px;
	transition: all .5s ease;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
}
.metaverse_fn_walletbox{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.metaverse_fn_walletbox::-webkit-scrollbar{
  	width: 4px;
}
.metaverse_fn_walletbox:-webkit-scrollbar-track{
  	background: #444;
}
.metaverse_fn_walletbox::-webkit-scrollbar-thumb{
	background-color: var(--mc1);
}
.metaverse_fn_walletbox.active{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%,-50%);
}
.metaverse_fn_walletbox .walletbox{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}
.metaverse_fn_walletbox .title_holder{
	text-align: center;
	margin-bottom: 34px;
}
.metaverse_fn_walletbox .title_holder h3{
	margin: 0;
	font-size: 36px;
	letter-spacing: 0px;
	text-transform: uppercase;
	margin-bottom: 15px;
	font-weight: 700;
}
.metaverse_fn_walletbox .title_holder p{
	margin: 0;
	font-size: 16px;
	letter-spacing: 0px;
	line-height: 1.5;
	color: #fff;
}
.fn__closer{
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	text-decoration: none;
}
.fn__closer .fn__svg{
	width: 8px;
	height: 8px;
	color: #000
}
.metaverse_fn_items{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-left: -20px;
}
.metaverse_fn_items li{
	margin: 0;
	padding: 0;
	padding-left: 20px;
	width: 50%;
	margin-bottom: 20px;
}
.metaverse_fn_iconbtn{
	border: 3px solid var(--mc2);
	padding: 4px;
	display: block;
	text-decoration: none;
	color: #000;
	font-family: var(--hff);
	font-size: 16px;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-weight: 500;
}
.metaverse_fn_iconbtn .btn{
	background-color: var(--mc2);
	padding: 15px;
	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;
	justify-content: center;
	text-align: center;
	transition: all .3s ease;
}
.metaverse_fn_iconbtn .icon{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: #000;
	margin-bottom: 10px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.metaverse_fn_iconbtn .text{
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.metaverse_fn_iconbtn:hover{
	border-color: #fff;
}
.metaverse_fn_iconbtn:hover .btn{
	background-color: #fff;
}
/*------------------------------------------------------------------*/
/*	23) Mobile Navigation
/*------------------------------------------------------------------*/
.metaverse_fn_mobnav{
	display: none;
}
.metaverse_fn_mobnav .triggers{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	column-gap: 10px;
}
.metaverse_fn_mobnav .mob_top{
	background: rgb(2,74,221);
    background: -moz-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    background: linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,.3);
	justify-content: space-between;
	padding: 20px;
}
.metaverse_fn_mobnav .mob_bot{
	display: none;
	background: rgb(2,74,221);
    background: -moz-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    background: linear-gradient(90deg, rgba(2,74,221,1) 0%, rgba(1,163,244,1) 50%, rgba(2,74,221,1) 100%);
    padding: 21px 20px;
    overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.metaverse_fn_mobnav .mob_bot ul{
	margin: 0;
	list-style-type: none;
}
.metaverse_fn_mobnav .mob_bot ul ul{
	margin-left: 20px;
}
/*------------------------------------------------------------------*/
/*	24) 404 Page
/*------------------------------------------------------------------*/
.metaverse_fn_404{
	padding: 200px 0;
}
.metaverse_fn_404 .icon{
	display: inline-block;
	margin-bottom: 37px;
	color: #fff;
}
.metaverse_fn_404 .icon .fn__svg{
	width: 146px;
	height: 146px;
	display: block;
}
.metaverse_fn_404 .message_holder{
	width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
}
.metaverse_fn_404 h3{
	line-height: 0.9;
	font-size: 200px;
	font-size: calc(100px + 5.21vw);
	font-weight: 900;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 6px;
}
.metaverse_fn_404 h4{
	font-size: 36px;
	font-weight: 900;
	color: var(--mc2);
	text-transform: uppercase;
	margin-bottom: 14px;
}
.metaverse_fn_404 p{
	max-width: 420px;
	color: #fff;
	margin: 0 auto;
	margin-bottom: 22px;
}
.metaverse_fn_404 .container-custom{
	width: 100%;
}
.metaverse_fn_404 form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.metaverse_fn_404 input{
	width: auto;
	flex: 1;
	margin-right: 10px;
}
/*------------------------------------------------------------------*/
/*	25) Protected Page
/*------------------------------------------------------------------*/
.metaverse_fn_protected{
	padding: 250px 0;
}
.metaverse_fn_protected .message_holder{
	width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.metaverse_fn_protected h3{
	font-size: 36px;
    font-weight: 900;
    color: var(--mc2);
    text-transform: uppercase;
    margin-bottom: 13px;
}
.metaverse_fn_protected .icon{
	display: inline-block;
	margin-bottom: 32px;
}
.metaverse_fn_protected .icon .fn__svg{
	width: 146px;
	height: 146px;
	display: block;
	color: #fff;
	fill: currentcolor;
}
.metaverse_fn_protected .container-custom{
	margin: 0 auto;
}
.metaverse_fn_protected p{
	margin-bottom: 22px;
	color: #fff;
}
.metaverse_fn_protected form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.metaverse_fn_protected input[type="password"]{
	width: auto;
	flex: 1;
	margin-right: 10px;
	color: #fff;
}
/*------------------------------------------------------------------*/
/*	26) Coming Soon Page
/*------------------------------------------------------------------*/
.metaverse_fn_coming_soon{
	padding: 200px 0;
}
.metaverse_fn_coming_soon .soon_title{
	max-width: 600px;
    margin: 0 auto;
	text-align: center;
}
.metaverse_fn_coming_soon .soon_title h3{
	margin: 0;
	margin-bottom: 20px;
	justify-content: center;
	font-size: 36px;
	color: var(--mc2);
	text-transform: uppercase;
	letter-spacing: 0;
	font-weight: 900;
}
.metaverse_fn_coming_soon .soon_title p{
	margin: 0;
	color: #fff;
}
.metaverse_fn_boxed_countdown{
	margin-bottom: 17px;
}
.metaverse_fn_boxed_countdown ul{
	margin: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -20px;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.metaverse_fn_boxed_countdown li{
	margin: 0 0 20px 0px;
	padding-left: 20px;
}
.metaverse_fn_boxed_countdown .item{
	width: 190px;
	position: relative;
	z-index: 1;
	padding: 20px;
	border: 1px solid rgba(255,255,255,.3);
}
.metaverse_fn_boxed_countdown .count{
	width: 100%;
	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;
	text-align: center;
	border: 1px solid rgba(255,255,255,.3);
	background-color: rgba(255,255,255,.2);
	padding: 22px 5px;
}
.metaverse_fn_boxed_countdown .count h3{
	font-size: 55px;
	font-weight: 900;
	margin: 0;
	letter-spacing: 0;
	line-height: 1;
}
.metaverse_fn_boxed_countdown span{
	display: block;
	text-align: center;
	font-size: 14px;
	color: var(--mc2);
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	font-weight: 700;
	font-family: var(--hff);
	line-height: 1.2;
}
.metaverse_fn_boxed_countdown span:before{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	width: 12px;
	height: 12px;
	display: block;
	margin-top: -6px;
	margin-left: 4px;
	color: var(--mc2);
    opacity: .15;
    border-radius: 100%;
    box-shadow: 0px 5px 20px;
    transition: all .3s ease;
	z-index: -1;
}


.metaverse_fn_pagecontent{
	min-height: 500px;
}

/*------------------------------------------------------------------*/
/*	27) Blog Page
/*------------------------------------------------------------------*/
.metaverse_fn_pagetitle .pagetitle{
	padding: 260px 0 140px;
	text-align: center;
}
.metaverse_fn_pagetitle .fn_cs_title .divider{
	margin-bottom: 0;
}
.metaverse_fn_pagetitle .fn_cs_title{
	position: relative;
	z-index: 1;
}
.metaverse_fn_pagetitle .fn_cs_title:after{
	left: 0;
	right: 0;
	height: 2px;
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -1px;
	background-color: rgba(255,255,255,.3);
	z-index: -1;
}
.metaverse_fn_pagetitle p a{
	color: var(--bc);
	text-decoration: none;
}
.metaverse_fn_pagetitle p a:hover{
	color: var(--mc2);
}
.metaverse_fn_pagetitle p{
	margin: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.metaverse_fn_pagetitle .pagetitle .divider{
	margin: 0 10px;
}


.metaverse_fn_bloglist{
	padding-top: 150px;
}

.bloglist ul{
	position: relative;
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-left: -80px;
}
.bloglist li{
	width: 50%;
	padding-left: 80px;
	margin-bottom: 80px;
}
.blog__item{
	position: relative;
	padding: 29px;
	border: 1px solid rgba(255,255,255,.3);
}
.blog__item .item_in{
	position: relative;
	z-index: 5;
	background-color: rgba(255,255,255,.2);
	border: 2px solid rgba(255,255,255,.4);
}
.blog__item .image img{
	min-width: 100%;
}

 /* Customize By Zeesahan*/
.image {
    position: relative;
    width: 100%; /* Ensures the container takes up full width */
    height: auto; /* Adjusts height automatically based on video aspect ratio */
    overflow: hidden; /* Prevents anything from overflowing */
}

video {
    width: 100%; /* Makes the video fill the width of its parent */
    height: auto; /* Keeps the aspect ratio of the video */
}


.mySlides {
    position: relative;
    width: 100%; /* Ensure the video is responsive */
    height: auto;
}

video {
    width: 100%; /* Video will take up full width of its container */
    height: auto; /* Maintain aspect ratio */
}

.fn_cs_video {
    position: relative;
    width: 100%; /* or specific width */
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio of 16:9 for YouTube videos */
}

.fn_cs_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* zeeshan */


.blog__item .item_desc{
	padding: 45px 38px 40px;
}
.blog__item .meta{
	margin-bottom: 7px;
}
.blog__item .meta p{
	font-weight: 500;
	font-family: var(--hff);
	color: var(--mc2);
	margin: 0;
}
.blog__item .title{
	margin-bottom: 18px;
}
.blog__item .title h3{
	font-size: 24px;
	letter-spacing: 0;
	margin: 0;
}
.blog__item .desc p{
	margin: 0;
}
.blog__item .desc{
	margin-bottom: 22px;
}



.metaverse_fn_pagination{
	margin-bottom: 140px;
}
.metaverse_fn_pagination ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin: 0;
	list-style-type: none;
	margin-left: -10px;
}
.metaverse_fn_pagination li{
	margin: 0 0 10px 10px;
}
.metaverse_fn_pagination span,
.metaverse_fn_pagination a{
	display: block;
	text-decoration: none;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 46px;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 400;
	border: 2px solid rgba(255,255,255,.3);
	position: relative;
}
.metaverse_fn_pagination span{
	color: var(--bc);
}
.metaverse_fn_pagination a{
	color: #fff;
}
.metaverse_fn_pagination .current{
	background-color: var(--mc2);
	border-collapse: var(--mc2);
	color: #000;
}
.metaverse_fn_pagination a:hover{
	border-color: rgba(255,255,255,.6);
}




/*------------------------------------------------------------------*/
/*	28) Collection Page
/*------------------------------------------------------------------*/
.metaverse_fn_collectionpage{
	padding: 150px 0;
}
.metaverse_fn_result_list .metaverse_fn_pagination{
	margin: 55px 0 0;
}
.metaverse_fn_result_list{
	overflow: hidden;
}
.metaverse_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;
}
.metaverse_fn_clist{
	width: 100%;
	padding-left: 50px;
	overflow: hidden;
}
.metaverse_fn_clist .metaverse_fn_title{
	margin-bottom: 50px;
}


/* Filters */
.metaverse_fn_filters{
	position: sticky;
	top: 100px;
	margin-bottom: 40px;
}
.metaverse_fn_filters{
	width: 350px;
	min-width: 350px;
}
.metaverse_fn_filters .filter_item{
	margin-bottom: 10px;
	overflow: hidden;
}
.metaverse_fn_filters .filter_item:last-child{
	margin-bottom: 0;
}
.metaverse_fn_filters .filter_item__header{
	position: relative;
	padding: 20px 30px;
	border: 1px solid rgba(255,255,255,.5);
}
.metaverse_fn_filters .filter_item__header .text{
	line-height: 30px;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--mc2);
	font-family: var(--hff);
}
.metaverse_fn_filters .opened .filter_item__header .fn__svg{
	transform: rotate(180deg);
}
.metaverse_fn_filters .filter_item__header .fn__svg{
	width: 14px;
	height: 14px;
	position: absolute;
	color: var(--mc2);
	display: block;
	top: 50%;
	margin-top: -7px;
	right: 20px;
	transition: transform 100ms ease 0s;
}
.metaverse_fn_filters .filter_item__content{
	display: none;
	width: 100%;
	height: initial;
	overflow: hidden;
	border-radius: 0 0 5px 5px;
	border: 1px solid rgba(255,255,255,.5);
}
.metaverse_fn_filters .ic_in{
	padding: 23px 20px 21px 30px;
}
.metaverse_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: auto;
}
.metaverse_fn_filters .items{
	scrollbar-width: thin;
	scrollbar-color: #999 #fff;
}
.metaverse_fn_filters .items::-webkit-scrollbar{
	width: 2px;
}
.metaverse_fn_filters .items:-webkit-scrollbar-track{
	background: rgba(255,255,255,.1);
}
.metaverse_fn_filters .items::-webkit-scrollbar-thumb{
	background-color: var(--mc2);
}
.metaverse_fn_filters .items > li{
	margin: 0;
	padding: 0;
	padding-left: 10px;
	margin-bottom: 3 px;
	width: 100%;
}
.metaverse_fn_filters .items > li:last-child{
	margin-bottom: 0;
}
.metaverse_fn_filters .checkbox{
	width: 100%;
	display: block;
	position: relative;
	padding: 5px 0 5px 26px;
	cursor: pointer;
	font-size: 16px;
	color: #fff;
	font-family: var(--hff);
}
.metaverse_fn_filters .checkbox .amount{
	color: var(--bc);
}
.metaverse_fn_filters .checkbox .checkmark .fn__svg{
	width: 10px;
	height: 10px;
	position: relative;
	top: 1px;
	left: 1px;
	display: none;
	color: var(--mc2);
}
.metaverse_fn_filters .checkbox input:checked ~ .checkmark {
	border-color: var(--mc2);
}
.metaverse_fn_filters .checkbox input:checked ~ .checkmark .fn__svg {
	display: block;
}
.metaverse_fn_filters .checkbox input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.metaverse_fn_filters .checkbox .checkmark{
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	left: 0;
	border: 2px solid rgba(255,255,255,.5);
}
.metaverse_fn_filters .checkbox .checkmark:after{
  content: "";
  position: absolute;
  display: none;
}


/* Result Box */
.metaverse_fn_result_box{
	color: #fff;
	width: 100%;
	border: 1px solid rgba(255,255,255,.5);
	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;
	margin-bottom: 50px;
}
.metaverse_fn_result_box > *{
	margin: 0 10px 10px 0;
}
.metaverse_fn_result_box .filter_count{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	font-size: 14px;
	font-family: var(--hff);
	font-weight: 300;
	height: 40px;
	line-height: 36px;
	text-align: center;
	border: 1px solid rgba(255,255,255,.5);
	padding: 0 0 0 20px;
	position: relative;
}
.metaverse_fn_result_box .filter_count span{
	position: relative;
	min-width: 34px;
	padding: 0 8px;
	display: block;
	right: 0;
	text-align: center;
	white-space: nowrap;
	margin-left: 20px;
	color: #fff;
}
.metaverse_fn_result_box .filter_count span:after{
	right: 100%;
	width: 1px;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.5);
}
.metaverse_fn_result_box .result_item a{
	position: relative;
	background-color: var(--mc2);
	display: block;
	text-decoration: none;
	padding: 0 56px 0 20px;
	line-height: 38px;
	white-space: nowrap;
	font-size: 14px;
	color: #000;
	font-family: var(--hff);
}
.metaverse_fn_result_box .result_item span{
	color: #000;
}
.metaverse_fn_result_box .result_item a:after{
	width: 1px;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 34px;
	background-color: rgba(0,0,0,.1);
	transition: all .3s ease;
}
.metaverse_fn_result_box .result_item .fn__svg{
	width: 10px;
	height: 10px;
	display: block;
	position: absolute;
	right: 12px;
	top: 13px;
	color: #555;
}
.metaverse_fn_result_box .result_item a:before{
	width: 1px;
	content: '';
	position: absolute;
	top: 0;
	height: 0;
	right: 34px;
	background-color: rgba(0,0,0,.3);
	transition: all .3s ease;
}
.metaverse_fn_result_box .result_item a:hover .fn__svg{
	color: #000;
}
.metaverse_fn_result_box .result_item a:hover:after{
	opacity: 0;
}
.metaverse_fn_result_box .result_item a:hover:before{
	height: 100%;
}
.metaverse_fn_result_box .clear_all{
	font-size: 14px;
	color: #fff;
	letter-spacing: 0;
	font-family: var(--hff);
	text-decoration: none;
	line-height: 40px;
	padding: 0 10px;
	margin-right: 0;
}
.metaverse_fn_result_box .clear_all:hover{
	color: var(--mc2);
}

/* Since v5.0 */
.metaverse_fn_result_box .clear_all{
	margin-right: 10px;
}
.metaverse_fn_result_box .condition_trigger{
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    text-decoration: none;
    font-family: var(--hff);
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    min-height: 45px;
    padding: 10px 30px;
    text-align: center;
    overflow: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    border-radius: 30px;
	margin-left: auto;
	padding-right: 36px;
	min-width: 100px;
}
.condition_trigger .text{
	z-index: 2;
	position: relative;
	top: 1px;
}
.condition_trigger:after{
	z-index: 0;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border-radius: 30px;
	border: 3px solid #00d8ff;
	position: absolute;
	content: '';
}
.condition_trigger:hover {
	color: #000 !important;
}
.condition_trigger:hover:before {
	right: 0%;
	left: auto;
	width: 100%;
}
.condition_trigger:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 0px;
	z-index: 1;
	content: '';
	color: #000 !important;
	background: var(--mc2);
	-webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
.metaverse_fn_result_box .condition_trigger.opened .icon:after{
	transform: translateX(6px);
}
.metaverse_fn_result_box .condition_trigger .icon{
	position: absolute;
	display: block;
	width: 16px;
	height: 6px;
	background-color: #aaa;
	border-radius: 10px;
	top: 50%;
	margin-top: -3px;
	right: 15px;
	transition: all .3s ease;
	z-index: 3;
}
.metaverse_fn_result_box .condition_trigger .icon:after{
	background-color: #fff;
	width: 10px;
	height: 10px;
	left: 0;
	top: -2px;
	content: '';
	position: absolute;
	transition: all .3s ease;
	border-radius: 100%;
}
.metaverse_fn_result_box .condition_trigger:hover .icon{
	background-color: #333;
}
.metaverse_fn_result_box .condition_trigger:hover .icon:after{
	background-color: #000;
}
/* Drops */
.metaverse_fn_drops .grid{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -45px;
}
.metaverse_fn_drops .grid > li{
	width: 33.3333%;
	padding-left: 45px;
	margin-bottom: 45px;
}
.nft__item{
	position: relative;
	border: 1px solid rgba(255,255,255,.3);
	padding: 19px;
}
.nft__item .item_in{
	position: relative;
	border: 2px solid rgba(255,255,255,.4);
}
.nft__item .title_holder{
	position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    z-index: 3;
	padding: 11px 20px;
	background-color: var(--mc2);
}
.nft__item .title_holder h3{
	margin: 0;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	color: #000;
	text-transform: uppercase;
}
.nft__item .title_holder h3 a{
	color: #000;
}
/*------------------------------------------------------------------*/
/*	29) Contact Page
/*------------------------------------------------------------------*/
.metaverse_fn_contactpage{
	padding: 148px 0 142px;
}
.metaverse_fn_contactpage .fn_cs_contact_form{
	margin-bottom: 45px;
}
.metaverse_fn_contactpage .fn_cs_contact_info{
	padding-top: 0;
}
.metaverse_fn_contactpage .fn_cs_desc p{
	font-size: 18px;
	margin-bottom: 27px;
}
.metaverse_fn_contactpage .fn_cs_desc p:last-child{
	margin-bottom: 0;
}


/*------------------------------------------------------------------*/
/*	30) Blog Single
/*------------------------------------------------------------------*/
.metaverse_fn_blog_single{
	padding-top: 165px;
}
.metaverse_fn_blog_single .single_img{
	overflow: hidden;
}
.metaverse_fn_blog_single .fn__maintitle{
	margin-bottom: 13px;
	font-size: 36px;
}
.metaverse_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;
}
.metaverse_fn_wsidebar .sidebar_left{
	width: 100%;
	padding-right: 50px;
	padding-bottom: 110px;
}
.metaverse_fn_wsidebar .sidebar_right{
	width: 350px;
	min-width: 350px;
	padding-left: 50px;
	padding-bottom: 110px;
}

.metaverse_fn_blog_single .metaverse_fn_minis{
	margin-bottom: 70px;
}
.metaverse_fn_blog_single .single_title .fn_title{
	margin: 0;
	padding: 0;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.3333;
	margin-bottom: 13px;
}
.metaverse_fn_blog_single .categories{
	color: var(--mc2);
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 38px;
} 
.metaverse_fn_blog_single .categories a{
	color: inherit;
	text-decoration: none;
}
.metaverse_fn_blog_single .categories a:hover{
	color: var(--hc);
}
.metaverse_fn_blog_single .single_desc p{
	margin-bottom: 28px;
}
.metaverse_fn_blog_single .single_desc p:last-child{
	margin-bottom: 0;
}
.metaverse_fn_author_info{
	border: 1px solid rgba(255,255,255,.3);
	padding: 29px;
	margin: 52px 0 27px 0;
	position: relative;
}
.metaverse_fn_author_info .item_in{
	background-color: rgba(255,255,255,.2);
	border: 2px solid rgba(255,255,255,.4);
	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;
	position: relative;
	z-index: 5;
}
.metaverse_fn_author_info .info_desc{
	padding: 35px 40px 33px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}
.metaverse_fn_author_info .info_img{
	overflow: hidden;
	width: 30%;
	min-width: 30%;
}
.metaverse_fn_author_info .info_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.metaverse_fn_author_info .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 17px;
}
.metaverse_fn_author_info .fn_desc{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 18px;
}
.metaverse_fn_author_info .author_social{
	margin: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-align-items: center;
    align-items: center;
}
.metaverse_fn_author_info .author_social li{
	margin: 5px 28px 5px 0;
    padding: 0;
}
.metaverse_fn_author_info .author_social a{
	color: var(--bc);
	font-size: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.metaverse_fn_author_info .author_social a:hover{
	color: var(--hc);
}

.metaverse_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: #000;
	font-family: var(--hff);
	font-size: 16px;
	font-weight: 500;
	overflow: hidden;
}
.metaverse_fn_tags > *:first-child > *{
	padding-left: 15px;
	text-transform: uppercase;
}
.metaverse_fn_tags > *:first-child > *:before{
	content: none;
}
.metaverse_fn_tags > * > *{
	padding: 0 15px 0 10px;
	background-color: var(--mc2);
	margin-right: 18px;
	line-height: 26px;
	position: relative;
	display: block;
	margin-bottom: 10px;
}
.metaverse_fn_tags > * > *:before{
	content: '';
	position: absolute;
	right: 2px;
	top: 50%;
	width: 6px;
	height: 6px;
	background-color: var(--mc1);
	border-radius: 100%;
	margin-top: -3px;
	transition: all .3s ease;
}
.metaverse_fn_tags > * > *:hover:before{
	background-color: #000;
}
.metaverse_fn_tags .left:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 8px 13px 0;
	border-color: transparent var(--mc2) transparent transparent;
	right: 100%;
	top: 0;
}
.metaverse_fn_tags .left:after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 13px 8px;
	border-color: transparent transparent var(--mc2) transparent;
	right: 100%;
	bottom: 0;
}
.metaverse_fn_tags .right:after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 0 13px 8px;
	border-color: transparent transparent transparent #fff;
	left: 100%;
	bottom: 0;
	top: 0;
	z-index: 1;
}
.metaverse_fn_tags .right:before{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 0 13px 4px;
	border-color: transparent transparent transparent var(--mc2);
	left: 100%;
	bottom: 0;
	top: 0;
	z-index: 3;
}
.metaverse_fn_tags a{
	text-decoration: none;
	color: inherit;
	display: block;
}


.widget{
	margin-bottom: 60px;
}
.widget:last-child{
	margin-bottom: 0;
}
.wid-title{
	position: relative;
	margin-bottom: 30px;
}
.wid-title .text{
	display: block;
    padding: 8px 10px;
    line-height: 24px;
    letter-spacing: .5px;
    position: relative;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    background-color: var(--mc2);
	text-align: center;
	font-family: var(--hff);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wid-title .icon{
	content: '';
    position: absolute;
    z-index: -1;
	left: -7px;
	right: -7px;
	top: -5px;
	bottom: -5px;
	background-color: #fff;
	clip-path: polygon(2.4% 12%, 50% 19%, 100% 0, 97.6% 88%, 50% 81%, 0% 100%);
    transition: all .3s ease;
}
.wid-title .text:hover:after{
	opacity: 1;
}

.abs_img{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 1s ease;
	background-position: center center;
    background-repeat: no-repeat;
    background-size:cover;
}
/* Top Articles Widget */
.metaverse_fn_widget_articles ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.metaverse_fn_widget_articles li{
	margin-bottom: 20px;
}
.metaverse_fn_widget_articles li:last-child{
	margin-bottom: 0;
}
.metaverse_fn_widget_articles .item{
	position: relative;
	width: 100%;
	padding: 26px 20px 24px;
	background-color: rgba(255,255,255,.2);
	border: 2px solid rgba(255,255,255,.4);
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	transition: all .3s ease;
}
.metaverse_fn_widget_articles .fn_title{
	margin: 0;
	padding: 0;
	font-size: 18px;
	line-height: 1.3333;
	margin-bottom: 9px;
}
.metaverse_fn_widget_articles .fn_date{
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: var(--mc2);
	overflow: hidden;
	position: relative;
}
.metaverse_fn_widget_articles .post_date:after{
	width: 4px;
	height: 4px;
	content: '';
	background-color: var(--mc2);
	border-radius: 100%;
	margin-left: 5px;
	display: inline-block;
	vertical-align: middle;
}
.metaverse_fn_widget_articles .count{
	display: block;
	width: 40px;
	height: 40px;
	font-weight: 500;
	font-family: var(--hff);
	font-size: 18px;
	letter-spacing: 0;
	color: #000;
	background-color: var(--mc2);
	border-radius: 100%;
	text-align: center;
	line-height: 40px;
	line-height: 42px; /* Font family*/
	bottom: -10px;
	right: -2px;
	position: absolute;
	transition: all .3s ease;
}
.metaverse_fn_widget_articles .count:after{
	content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    color: var(--mc2);
    top: 0;
    left: 0;
    opacity: .15;
    border-radius: 100%;
    box-shadow: 0px 5px 20px;
    transition: all .3s ease;
}
.metaverse_fn_widget_articles .item:hover .fn_date .post_date{
	transform: translateY(-100%);
}
.metaverse_fn_widget_articles .item:hover .fn_date .comment_count{
	transform: translateY(-100%);
}


/* Custom Categories */
.metaverse_fn_categories ul{
	list-style-type: none;
    margin: 0px;
	padding: 0px;
	overflow: hidden;
}
.metaverse_fn_categories li{
	margin: 0px 0px 10px 0px;
    width: 100%;
    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;
}
.metaverse_fn_categories li a{
	position: relative;
	width: 100%;
	max-width: calc(100% - 55px);
    padding-right: 20px;
    z-index: 5;
    font-size: 16px;
    font-weight: 500;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
	line-height: 30px;
    font-style: normal;
    color: #fff;
	text-decoration: none;
	font-family: var(--hff);
	text-transform: uppercase;
	overflow: hidden;
}
.metaverse_fn_categories li a span{
	position: relative;
}
.metaverse_fn_categories li a span:after{
	content: '';
    position: absolute;
    background-color: rgba(255,255,255,.4);
    height: 1px;
    left: 100%;
	margin-left: 20px;
    width: 2000px;
    top: 50%;
    margin-top: -1px;
    margin-top: -0.5px;
}
.metaverse_fn_categories li a span:before{
	content: '';
    position: absolute;
    background-color: rgba(255,255,255,.4);
	height: 1px;
    right: 100%;
	margin-right: 20px;
    width: 2000px;
    top: 50%;
    margin-top: -1px;
    margin-top: -0.5px;
}
.metaverse_fn_categories li a:after{
	content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 2000px;
    z-index: 5;
}
.metaverse_fn_categories li a:before{
	content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 40px;
    z-index: 5;
}
.metaverse_fn_categories .count{
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 11px;
	font-family: var(--hff);
	letter-spacing: 0;
	color: #fff;
	background-color: rgba(255,255,255,.2);
	border: 2px solid rgba(255,255,255,.4);
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	border-radius: 100%;
	line-height: 26px;
	line-height: 28px; /*Font family*/
	position: relative;
	z-index: 3;
}
.metaverse_fn_categories .count:after{
	content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    color: var(--mc2);
    top: 0;
    left: 0;
    opacity: .15;
    border-radius: 100%;
    box-shadow: 0px 5px 20px;
    transition: all .3s ease;
}
.metaverse_fn_categories li:hover a{
	padding-left: 40px;
}
.metaverse_fn_categories .more{
	font-size: 13px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-family: var(--hff);
    color: #777;
    text-transform: uppercase;
	text-decoration: none;
	display: block;
	text-align: center;
	margin-top: 1px;
}
.metaverse_fn_categories .more:hover{
	color: #ccc;
}



.metaverse_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;
}
.metaverse_fn_widget_social ul li{
	margin: 5px 0px 5px 20px;
    padding: 0;
}
.metaverse_fn_widget_social ul a{
	color: var(--bc);
	font-size: 18px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	line-height: 30px;
}
.metaverse_fn_widget_social ul a:hover{
	color: var(--mc2);
}




/* Previous & Next Box */
.metaverse_fn_pnb{
	width: 100%;
	background-color: var(--mc2);
}
.metaverse_fn_pnb .pnb_wrapper{
	width: 100%;
	max-width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}
.metaverse_fn_pnb .item{
	width: 46.55%;
	max-width: calc(50% - 43px);
	max-width: calc(50% - 42.5px);
	padding: 150px 0;
	position: relative;
}
.metaverse_fn_pnb .next{
	text-align: right;
}
.metaverse_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;
}
.metaverse_fn_pnb .img{
	width: 80px;
	min-width: 80px;
	height: 80px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
	transform: translateZ(0);
}
.metaverse_fn_pnb .prev{
	padding-right: 40px;
}
.metaverse_fn_pnb .prev:hover .fn_desc span:after{
	width: 60px;
	right: -30px;
}
.metaverse_fn_pnb .next:hover .fn_desc span:after{
	width: 60px;
	left: -30px;
}
.metaverse_fn_pnb .next{
	padding-left: 40px;
}
.metaverse_fn_pnb .prev .img{
	margin-right: 30px;
}
.metaverse_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;
}
.metaverse_fn_pnb .next .img{
	margin-left: 30px;
}
.metaverse_fn_pnb .desc{
	width: 100%;
	max-width: calc(100% - 110px);
}
.metaverse_fn_pnb .fn_desc{
	color: #000;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: var(--hff);
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.metaverse_fn_pnb .prev .fn_desc span{
	position: relative;
	padding-right: 40px;
}
.metaverse_fn_pnb .next .fn_desc span{
	position: relative;
	padding-left: 40px;
}
.metaverse_fn_pnb .next .fn_desc span:after{
	right: auto;
	left: 0;
}
.metaverse_fn_pnb .fn_desc span:after{
	width: 30px;
	height: 1px;
	content: '';
	position: absolute;
	background-color: #000;
	right: 0;
	top: 50%;
	margin-top: -1px;
	transition: all .3s ease;
}
.metaverse_fn_pnb .fn_title{
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #000;
}
.metaverse_fn_pnb .fn_trigger a.full_link{
	z-index: 10;
}
.metaverse_fn_pnb .fn_trigger{
	width: 100px;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.metaverse_fn_pnb .fn_trigger:after{
	content: '';
    position: absolute;
    top: 0;
	width: 2px;
	left: 50%;
	margin-left: -1px;
	background-color: #000;
	bottom: 0;
}
.metaverse_fn_pnb .fn_trigger .icon{
	width: 20px;
	padding: 27px 8px;
	background-color: #000;
	overflow: hidden;
}
.metaverse_fn_pnb .fn_trigger .icon_wrapper{
	position: relative;
	z-index: 5;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: -10px 0 0 -10px;
	flex-wrap: wrap;
	overflow: hidden;
}
.metaverse_fn_pnb .fn_trigger span{
	width: 4px;
	min-width: 4px;
	height: 4px;
	display: block;
	background-color: #fff;
	margin: 10px 0 0 10px;
}
.metaverse_fn_pnb .fn_trigger .icon,
.metaverse_fn_pnb .container,
.metaverse_fn_pnb .item,
.metaverse_fn_pnb .img,
.metaverse_fn_pnb .fn_trigger span,
.metaverse_fn_pnb .fn_desc,
.metaverse_fn_pnb .fn_title{
	transition: all .5s ease;
}



.metaverse_fn_comments{
	padding: 150px 0;
}
.metaverse_fn_comments .comment-title{
	margin-bottom: 55px;
}
.metaverse_fn_comments .comment-title .fn_title{
	font-size: 22px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--bc);
}
.metaverse_fn_comments .list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.metaverse_fn_comments .comment{
	margin-bottom: 30px;
}
.metaverse_fn_comments .comment:last-child{
	margin-bottom: 0;
}
.metaverse_fn_comments .comment-body{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.metaverse_fn_comments .comment-avatar{
	width: 80px;
	min-width: 80px;
	margin-right: 30px;
}
.metaverse_fn_comments .comment-avatar img{
	border-radius: 100%;
}
.metaverse_fn_comments .comment-data{
	margin-bottom: 19px;
	margin-top: 5px;
}
.metaverse_fn_comments .comment-data .author{
	font-size: 20px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	margin-bottom: 8px;
}
.metaverse_fn_comments .comment-data .date{
	font-size: 13px;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-family: var(--hff);
	color: var(--mc2);
	text-transform: uppercase;
}
.metaverse_fn_comments .comment-text p{
	margin: 0;
	padding: 0;
	margin-bottom: 36px;
}
.metaverse_fn_comments .comment-text p:last-child{
	margin-bottom: 0;
}
.metaverse_fn_comments .comment-text .desc{
	margin-bottom: 22px;
}
.metaverse_fn_comments .fn_reply{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.metaverse_fn_comments .fn_reply .fn__svg{
	width: 14px;
	height: 14px;
	display: block;
	margin-right: 5px;
}
.metaverse_fn_comments .fn_reply a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	line-height: 26px;
	padding: 0 10px;
	text-decoration: none;
	margin: 0 5px 5px 0;
	font-size: 14px;
	font-family: var(--hff);
	color: #000;
	background-color: var(--mc2);
}
.metaverse_fn_comments .comment-text-wrap{
	padding-bottom: 35px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.metaverse_fn_comments .comment-respond{
	padding-top: 96px;
}
.metaverse_fn_comments .respond-title{
	margin-bottom: 38px;
}
.metaverse_fn_comments .respond-title .fn_title{
	font-size: 22px;
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--hc);
}
.metaverse_fn_comments .respond-log{
	margin-bottom: 17px;
}
.metaverse_fn_comments .respond-log p{
    margin: 0;
    padding: 0;
	color: var(--mc2);
}
.metaverse_fn_comments .respond-log p a{
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid transparent;
}
.metaverse_fn_comments .respond-log p a:hover{
	border-bottom-color: inherit;
}
.metaverse_fn_comments .input-items{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}
.metaverse_fn_comments .input-item{
	width: 100%;
	padding-left: 40px;
	margin-bottom: 40px;
}
.metaverse_fn_comments .input-item.half-item{
	width: 50%;
}
.metaverse_fn_comments .comment-form textarea,
.metaverse_fn_comments .comment-form input[type="text"]{
	width: 100%;
	min-width: 100%;
	display: block;
}
.metaverse_fn_comments .comment-form input[type="text"]{
	height: 80px;
	padding: 0 27px;
}
.metaverse_fn_comments .metaverse_fn_button{
	max-width: 300px;
}


/* Share */
.metaverse_fn_share{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 11px;
}
.metaverse_fn_share .label{
	margin: 0;
	padding: 0;
	margin-right: 20px;
	color: var(--bc);
	font-family: var(--bff);
	font-size: 18px;
}
.metaverse_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;
}
.metaverse_fn_share li{
	margin: 5px 0px 5px 25px;
	padding: 0;
}
.metaverse_fn_share a{
	color: var(--bc);
	font-size: 20px;
	text-decoration: none;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.metaverse_fn_share a:hover{
	color: var(--mc2);
}
/* Breadcrumbs */
.metaverse_fn_breadcrumbs{
	margin-bottom: 19px;
}
.metaverse_fn_breadcrumbs p{
	margin: 0;
	padding: 0;
	font-size: 18px;
	color: var(--bc);
}
.metaverse_fn_breadcrumbs a{
	color: var(--bc);
	text-decoration: none;
}
.metaverse_fn_breadcrumbs .separator{
	margin: 0 9px;
}
.metaverse_fn_breadcrumbs a:hover{
	color: var(--mc2);
}



.metaverse_fn_minis{
	background-color: #000;
	padding: 0 5px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.metaverse_fn_minis .m_item{
	padding: 0 37px 0 25px;
	position: relative;
	min-height: 40px;
	font-size: 14px;
	line-height: 40px;
	font-family: var(--hff);
	color: #fff;
	font-weight: 400;
}
.metaverse_fn_minis .m_item a{
	text-decoration: none;
	color: #fff;
}
.metaverse_fn_minis .m_item:after{
	width: 22px;
	height: 2px;
	background-color: #373737;
	position: absolute;
	right: -5px;
	top: 9px;
	content: '';
	transform: rotate(63deg);
}
.metaverse_fn_minis .m_item:before{
	width: 22px;
	height: 2px;
	background-color: #373737;
	position: absolute;
	right: -5px;
	bottom: 9px;
	content: '';
	transform: rotate(-63deg);
}
.metaverse_fn_minis .m_item:last-child:before,
.metaverse_fn_minis .m_item:last-child:after{
	content: none;
}
/*------------------------------------------------------------------*/
/*	31) Roadmap Section & Shortcode
/*------------------------------------------------------------------*/
#roadmap{
	padding: 100px 0 50px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.fn_cs_roadmap{
	padding-top: 60px;
}
.fn_cs_roadmap .roadmap_top{
	position: relative;
	margin: 0 -20px;
}
.fn_cs_roadmap .roadmap_bg:after{
	content: '';
	position: absolute;
	top: 0;
	right: 100%;
	bottom: 0;
	width: 60px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.fn_cs_roadmap .roadmap_bg:before{
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	width: 60px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.fn_cs_roadmap .roadmap_bg{
	height: 20px;
	background-color: #fff;
	bottom: 10px;
	left: 60px;
	right: 60px;
	position: absolute;
}
.fn_cs_roadmap .roadmap_top{
	margin-bottom: 40px;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .odd{
	padding-top: 18px;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .even h3{
	margin-bottom: 38px;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .even .circle:after{
	height: 35px;
}
.fn_cs_roadmap .roadmap_top .swiper-slide{
	width: 200px;
	padding: 0 20px;
	text-align: center;
	cursor: pointer;
}
.fn_cs_roadmap .roadmap_top .swiper-slide h4{
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 5px;
	text-transform: uppercase;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.fn_cs_roadmap .roadmap_top .swiper-slide h3{
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
	color: var(--mc2);
	margin-bottom: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .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;
}
.fn_cs_roadmap .roadmap_top .swiper-slide:hover .circle:before{
	transition: all .3s ease;
	transform: scale(1) rotate(0);
	border-radius: 100%;
}
.fn_cs_roadmap .roadmap_top .swiper-slide.swiper-slide-active .circle:before{
	transform: scale(1) rotate(0);
	border-radius: 100%;
}
.fn_cs_roadmap .roadmap_top .swiper-slide.swiper-slide-active .circle:after{
	background-color: #ffff;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .circle{
	height: 40px;
	width: 40px;
	display: block;
	background-color: var(--mc2);
	border-radius: 50%;
	position: relative;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .circle:before{
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 0%;
	background-color: #000;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
	transform: scale(0) rotate(360deg);
	transition: all .8s ease, border-radius .5s .3s;
}
.fn_cs_roadmap .roadmap_top .swiper-slide .circle:after{
	position: absolute;
	content: '';
	width: 4px;
	height: 15px;
	left: 50%;
	margin-left: -2px;
	bottom: 100%;
	background-color: var(--mc2);
	transition: all .5s ease;
}
.fn_cs_roadmap .roadmap_bottom .item{
	position: relative;
	border: 1px solid rgba(255,255,255,.3);
	padding: 29px;
}
.fn_cs_roadmap .roadmap_bottom .item_in{
	border: 2px solid rgba(255,255,255,.4);
	background-color: rgba(255,255,255,.2);
	position: relative;
	z-index: 5;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	padding-left: 98px;
}
.fn_cs_roadmap .roadmap_bottom .phase{
	border-right: 2px solid rgba(255,255,255,.4);
	position: absolute;
	width: 98px;
	top: 0;
	left: 0;
	bottom: 0;
}
.fn_cs_roadmap .roadmap_bottom .phase h3{
	writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translate(-50%,-50%) rotate(180deg);
    position: absolute;
    top: 50%;
    left: 50%;
	font-size: 24px;
	font-weight: 600;
	color: var(--mc2);
	letter-spacing: 2px;
	margin: 0;
	text-transform: uppercase;
}
.fn_cs_roadmap .roadmap_bottom .item_content{
	padding: 28px 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.fn_cs_roadmap .roadmap_bottom .info_img{
	width: 34%;
	min-width: 34%;
}
.fn_cs_roadmap .roadmap_bottom .info_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fn_cs_roadmap .roadmap_bottom .info_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;
	justify-content: center;
	padding-left: 50px;	
}
.fn_cs_roadmap .roadmap_bottom .fn_title{
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 0;
	margin-bottom: 11px;
}
.fn_cs_roadmap .roadmap_bottom .subtitle{
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0;
	margin-bottom: 19px;
	color: var(--mc2);
	text-transform: uppercase;
}
.fn_cs_roadmap .roadmap_bottom .fn_desc{
	margin-bottom: 22px;
}
/*------------------------------------------------------------------*/
/*	32) FAQ Section & Accordion Shortcode
/*------------------------------------------------------------------*/
#faq{
	padding-top: 100px;
	padding-bottom: 100px;
    background-color: var(--mc2);
    position: relative;
}
#faq .fn_cs_title{
	margin-bottom: 62px;
}
.bottom_icon .top{
	bottom: 0;
	color: rgba(255,255,255,.2);
}
.bottom_icon .bottom{
	top: 100%;
	color: #af8b1d;
}
.bottom_icon .fn__svg{
	width: 100%;
	display: block;
	height: auto;
	position: absolute;
	z-index: 0;
}
#faq .container{
	z-index: 3;
	position: relative;
}
.fn_cs_accordion .acc_item{
	padding: 7px 0px 5px;
	border: 2px solid #fff;
	background-color: rgba(255,255,255,.2);
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
	border-radius: 10px;
	margin-bottom: 20px;
}
.fn_cs_accordion .fn__maintitle{
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	color: #000;
}
.fn_cs_accordion .acc_header{
	padding: 13px 30px;
	position: relative;
	cursor: pointer;
	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;
}
.fn_cs_accordion .icon{
	width: 40px;
	height: 40px;
	min-width: 40px;
	margin-left: 20px;
	display: block;
	position: relative;
	background-color: #fff;
	border-radius: 100%;
}
.fn_cs_accordion .icon span:after,
.fn_cs_accordion .icon span:before{
	content: '';
	position: absolute;
	display: block;
	background-color: #000;
	transition: all .3s ease;
}
.fn_cs_accordion .icon span:before{
	width: 14px;
	height: 4px;
	top: 18px;
	left: 13px;
}
.fn_cs_accordion .icon span:after{
	width: 4px;
	height: 14px;
	bottom: 13px;
	left: 18px;
}
.fn_cs_accordion .active .icon span:after{
	height: 0;
}
.fn_cs_accordion .acc_content{
	display: none;
	overflow: hidden;
	padding: 26px 30px 27px;
	position: relative;
}
.fn_cs_accordion .active .acc_header:after{
	width: 100%;
}
.fn_cs_accordion .acc_header:after{
	width: 0;
	position: absolute;
	content: '';
	height: 1px;
	background-color: #fff;
	bottom: -1px;
	right: 0;
	display: block;
	transition: all .3s .3s ease;
}
.fn_cs_accordion .acc_content p{
	margin: 0;
	color: #000;
}

.fn_cs_row{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	margin-left: -60px;
}
.fn_cs_row .fn_col{
	width: 50%;
	padding-left: 60px;
	margin-bottom: 60px;
}

/*------------------------------------------------------------------*/
/*	33) Blog Section & Shortcode
/*------------------------------------------------------------------*/
#blog{
	padding: 100px 0 100px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
#blog .fn_cs_title{
	margin-bottom: 62px;
}
.fn_cs_blog{
	position: relative;
}
.fn_cs_blog .swiper-pagination{
	position: relative;
	margin-top: 58px;
	text-align: left;
	bottom: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}
.fn_cs_blog .swiper-pagination-bullet{
	width: 50px;
	height: 3px;
	border-radius: 0;
	background-color: rgba(255,255,255,.4);
	opacity: 1;
	margin: 0 10px 0 0;
	position: relative;
}
.fn_cs_blog .swiper-pagination-bullet:before{
	top: -15px;
	bottom: -15px;
	left: 0;
	right: 0;
	position: absolute;
	content: '';
}
.fn_cs_blog .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
	margin: 0 10px 0 0;
}
.fn_cs_blog .swiper-pagination-bullet.swiper-pagination-bullet-active:after{
	width: 100%;
	transition: all 4s linear;
	left: 0;
}
.fn_cs_blog .swiper-pagination-bullet:after{
	content: '';
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	left: auto;
	right: 0;
	background-color: #fff;
	z-index: 2;
	transition: all .5s linear;
}
.fn_cs_blog .read_all{
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
}
.fn_cs_blog .read_all a{
	text-decoration: none;
	font-size: 16px;
	font-family: var(--hff);
	font-weight: 600;
	letter-spacing: 0;
	color: var(--mc2);
	text-transform: uppercase;
	border-bottom: 1px solid;
	display: block;
	line-height: 1.2;
}
/*------------------------------------------------------------------*/
/*	34) NFT Single Page
/*------------------------------------------------------------------*/
.metaverse_fn_nftsingle{
	padding: 224px 0 105px;
}
.metaverse_fn_nftsingle .fn__maintitle{
	margin-bottom: 40px;
	text-align: center;
}
.metaverse_fn_nftsingle .desc{
	text-align: center;
	margin-bottom: 60px;
}
.desc p{
	margin-bottom: 27px;
}
.desc p:last-child{
	margin-bottom: 0;
}
.nft_single_img{
	position: relative;
	margin-bottom: 40px;
}
.nft_single_img .item{
	width: 100%;
    border: 1px solid rgba(255,255,255,.3);
    padding: 30px;
    position: relative;
}
.nft_single_img .item_in{
	border: 2px solid rgba(255,255,255,.4);
    background-color: rgba(255,255,255,.2);
    overflow: hidden;
    position: relative;
}
.nft_single_img .view_on{
	position: absolute;
	left: 100%;
	bottom: 30px;
	margin-left: 30px;
}
.nft_single_img .view_on 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: column-reverse;
	-moz-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	-o-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
.nft_single_img .view_on li{
	margin: 0;
	writing-mode: vertical-rl;
    text-orientation: mixed;
	font-size: 16px;
	font-family: var(--hff);
	color: var(--mc2);
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 10px;
	line-height: 50px;
}
.nft_single_img .view_on li:first-child{
	transform: rotate(180deg);
	margin-top: 20px;
}
.nft_single_img .view_on a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background-color: var(--mc2);
	color: #000;
	position: relative;
}
.nft_single_img .view_on .fn__svg{
	width: 22px;
	height: 22px;
}


.metaverse_fn_mintbox{
	margin-bottom: 68px;
}
.metaverse_fn_mintbox .mint_title{
	padding: 32px 20px 29px;
	background-color: var(--mc2);
}
.metaverse_fn_mintbox .mint_title span{
	letter-spacing: .5px;
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--hff);
	text-transform: uppercase;
	color: #000;
}
.metaverse_fn_mintbox .mint_end{
	padding: 11px 20px 10px;
	background-color: #000;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.metaverse_fn_mintbox .mint_end h3{
	margin: 0;
	font-size: 16px;
}
.metaverse_fn_mintbox .mint_end h4{
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	margin-right: 15px;
	text-transform: uppercase;
}
.metaverse_fn_mintbox .mint_body{
	border: 2px solid rgba(255,255,255,.4);
	border-top: none;
	background-color: rgba(255,255,255,.2);
}
.metaverse_fn_mintbox .mint_content{
	padding: 48px 98px 42px;
}
.metaverse_fn_mintbox .mint_list{
	text-align: center;
}
.metaverse_fn_mintbox .mint_list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -40px;
}
.metaverse_fn_mintbox .mint_list li{
	width: 100%;
	padding-left: 40px;
	margin-bottom: 27px;
}
.metaverse_fn_mintbox .mint_list .item{
	height: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	position: relative;
	padding-bottom: 23px;
}
.metaverse_fn_mintbox .mint_list .item:after{
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--mc2);
	transition: all .3s ease;
}
.metaverse_fn_mintbox .mint_list li:last-child .item{
	border-bottom-color: transparent;
}
.metaverse_fn_mintbox .mint_list li:last-child .item:after{
	content: none;
}
.metaverse_fn_mintbox .mint_list .item:hover:after{
	width: 100%;
}
.metaverse_fn_mintbox .mint_list h4{
	font-size: 16px;
	color: var(--mc2);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	margin-bottom: 5px;
	font-weight: 600;
}
.metaverse_fn_mintbox .mint_list h3{
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 300;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.metaverse_fn_mintbox .mint_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;
	margin-top: -8px;
}
.metaverse_fn_mintbox .mint_desc .metaverse_fn_button{
	min-width: 210px;
	margin-bottom: 25px;
}
.metaverse_fn_mintbox .mint_desc p{
	text-align: center;
	margin: 0;
}
.metaverse_fn_mintbox .mint_desc p a{
	font-weight: 600;
	text-decoration: none;
	color: #fff;
}
.metaverse_fn_mintbox .mint_desc p a:hover{
	color: var(--mc2);
}
.metaverse_fn_mintbox .mint_checked{
	padding: 45px 20px 42px;
	-ms-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	background-color: rgba(255,255,255,.1);
}
.metaverse_fn_mintbox .mint_checked p{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 7px;
}
.metaverse_fn_mintbox .mint_checked p:last-child{
	margin-bottom: 0;
}
.metaverse_fn_mintbox .mint_checked .text{
	margin-right: 5px;
	font-family: var(--hff);
	font-size: 18px;
	letter-spacing: 0;
	color: var(--bc);
}
.metaverse_fn_mintbox .mint_checked .status{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	font-family: var(--hff);
	color: var(--mc2);
	letter-spacing: .5px;
	text-transform: uppercase;
	-ms-align-items: center;
	align-items: center;
}
.metaverse_fn_mintbox .mint_checked .icon{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	background-color: var(--mc2);
	color: #000;
	border-radius: 100%;
	margin-left: 5px;
	position: relative;
	top: -2px;
}
.metaverse_fn_mintbox .mint_checked .fn__svg{
	width: 8px;
	height: 8px;
	display: block;
}

.qnt{
	margin: 0;
    padding: 0;
    font-size: 24px;
    letter-spacing: 0;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.qnt .increase,
.qnt .decrease{
	cursor: pointer;
	color: #fff;
	transition: all .3s ease;
}
.qnt .increase:hover,
.qnt .decrease:hover{
	color: var(--mc2);
}



.metaverse_fn_nft_cats{
	margin-bottom: 102px;
}
.metaverse_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;
}
.metaverse_fn_nft_cats li{
	width: 50%;
	padding-left: 40px;
	margin-bottom: 48px;
	text-align: center;
}
.metaverse_fn_nft_cats .item{
	height: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	position: relative;
	padding-bottom: 13px;
}
.metaverse_fn_nft_cats .item:after{
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 0;
	height: 1px;
	background-color: var(--mc2);
	transition: all .3s ease;
}
.metaverse_fn_nft_cats .item:hover:after{
	width: 100%;
}
.metaverse_fn_nft_cats .parent_category{
	font-size: 16px;
	color: var(--mc2);
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	letter-spacing: .5px;
	margin-bottom: 4px;
	font-weight: 600;
}
.metaverse_fn_nft_cats .child_category{
	margin: 0;
	padding: 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 300;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#similar .fn_cs_title{
	margin-bottom: 56px;
}
.metaverse_fn_nftsingle .metaverse_fn_share{
	justify-content: center;
}
.metaverse_fn_nftsingle .metaverse_fn_breadcrumbs p{
	text-align: center;
}
/*------------------------------------------------------------------*/
/*	35) Sponsor Section & Shortcode
/*------------------------------------------------------------------*/
#sponsor{
	padding: 100px 0;
	background-color: rgba(0,0,0,0.05);
	border-bottom: 1px solid rgba(255,255,255,.3);
}
#sponsor .fn_cs_title{
	margin-bottom: 86px;
}
.fn_cs_sponsor .item{
	border: 2px solid rgba(255,255,255,.4);
	background-color: rgba(255,255,255,.2);
	min-height: 220px;
	padding: 20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: relative;
}
/*------------------------------------------------------------------*/
/*	36) Totop Button
/*------------------------------------------------------------------*/
.metaverse_fn_totop{
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	text-decoration: none;
	color: #000;
	transition: all .5s ease;
	transform: translateY(50px);
}
.metaverse_fn_totop.active{
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}
.metaverse_fn_totop.clicked{
	transform: translateY(-50px);
	animation: none;
}
.metaverse_fn_totop.clicked .arrow:after{
	opacity: 1;
}
.metaverse_fn_totop:before,
.metaverse_fn_totop:after{
	content: '';
	position: absolute;
	width: 1px;
	height: 28px;
	display: block;
	background-color: #fff;
	top: 2px;
}
.metaverse_fn_totop:after{
	right: 100%;
	margin-right: 2px;
}
.metaverse_fn_totop:before{
	left: 100%;
	margin-left: 2px;
}
.metaverse_fn_totop .arrow{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #fff;
	background-color: var(--mc2);
}
.metaverse_fn_totop .arrow:after{
	position: absolute;
    top: 100%;
    width: 20px;
    background: linear-gradient(to bottom, #f5f5f5 10%, transparent 100%);
    height: 40px;
    left: 50%;
	margin-left: -10px;
	content: '';
	transition: all .5s ease;
	opacity: 0;
	margin-top: 5px;
}
.metaverse_fn_totop .rocket{
	display: block;
	width: 48px;
	height: 49px;
	left: -4px;
	bottom: -4px;
	background-color: #fff;
	z-index: -1;
	position: absolute;
	clip-path: polygon(50% 0, 79.17% 8.16%, 100% 100%, 50% 90.84%, 0 100%, 20.83% 8.16%);
	transition: all .3s ease;
}
.metaverse_fn_totop .icon:after{
	width: 11px;
	height: 3px;
	position: absolute;
	background-color: #000;
	transform: rotate(45deg);
	content: '';
	left: 17px;
	left: 17.5px;
	top: 19px;
	z-index: 5;
}
.metaverse_fn_totop .icon:before{
	width: 11px;
	height: 3px;
	position: absolute;
	background-color: #000;
	transform: rotate(-45deg);
	content: '';
	left: 11px;
	left: 11.5px;
	top: 19px;
	z-index: 5;
}
/*------------------------------------------------------------------*/
/*	37) Full Slider (Home #2)
/*------------------------------------------------------------------*/
.fn_cs_full_slider{
	width: 100%;
	position: relative;
}
.fn_cs_full_slider .bg_overlay{
	z-index: 2;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
	background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.fn_cs_full_slider .swiper-slide{
	height: 800px;
	height: 115vh;
	position: relative;
	overflow: hidden;
	z-index: 5;
}
.fn_cs_full_slider .slider_content{
	position: absolute;
	margin: 0;
	bottom: 172px;
	left: 0;
	right: 0;
	z-index: 10;
}
.fn_cs_welcome{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}
.fn_cs_welcome .buttons{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	padding-top: 21px;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.fn_cs_welcome .buttons a{
	margin: 5px 10px 5px 0;
}
#full_slider{
	position: relative;
}
/*------------------------------------------------------------------*/
/*	38) Cards Carousel (Home #3)
/*------------------------------------------------------------------*/
.section_bg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.snowflake {
	position: absolute;
	width: 10px;
	height: 10px;
	background: linear-gradient(white, white);
	border-radius: 50%;
	filter: drop-shadow(0 0 10px white);
}
#snow{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.section_content{
	position: relative;
	z-index: 5;
}
.frenify_cards_gallery {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    padding-top: 65px;
	padding-bottom: 100px;
    overflow: hidden;
}
.frenify_cards_gallery .img_holder{
	padding: 30px;
	border: 1px solid rgba(255,255,255,.3);
	position: relative;
}
.frenify_cards_gallery .item_in{
	border: 2px solid rgba(255,255,255,.4);
    background-color: rgba(255,255,255,.2);
    overflow: hidden;
    position: relative;
}
.frenify_cards_gallery ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: relative;
}
.frenify_cards_gallery ul li {
    margin: 0;
    padding: 0;
    position: absolute;
    display: block;
    left: 50%;
    top: 0;
    opacity: 0;
    z-index: -5;
    cursor: pointer;
    transform: scale(0);
    outline: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all 1s ease;
    will-change: width, height, left, opacity, transform;
    transform-origin: bottom;
}
.frenify_cards_gallery ul li.current {
    opacity: 1;
    cursor: default;
    z-index: 20;
}
.frenify_cards_gallery ul li.next1, .frenify_cards_gallery ul li.prev1 {
    opacity: 1;
    z-index: 10;
}
.frenify_cards_gallery ul li.next2, .frenify_cards_gallery ul li.prev2 {
    opacity: 1;
    z-index: 5;
}
.frenify_cards_gallery .img_holder {
    width: 100%;
    position: relative;
    z-index: 15;
}
.frenify_cards_gallery .current .img_holder a {
    display: block;
}
.frenify_cards_gallery .img_holder a {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.frenify_cards_gallery .o_img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.frenify_cards_gallery img {
    opacity: 0;
}
#cards_slider{
	padding-top: 200px;
	position: relative;
}
/*------------------------------------------------------------------*/
/*	39) 3D Carousel (Home #4)
/*------------------------------------------------------------------*/
#carousel_3d{
	padding-top: 200px;
	padding-bottom: 302px;
	position: relative;
}
.fn_cs_slider{
	padding: 0 20px;
	overflow: hidden;
}
.fn_cs_slider .hidden_list{
	display: none;
}
.slider_nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	position: relative;
	padding-bottom: 4px;
}
.slider_nav > *{
	margin-right: 10px;
}
.slider_nav > *:last-child{
	margin-right: 0;
}
.slider_nav .dash:after{
	content: '';
	position: absolute;
	width: 100px;
	height: 2px;
	background-color: #000;
	left: 50%;
	margin-left: -50px;
	top: 50%;
	margin-top: -1px;
}
.slider_nav .dash:before{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 90px 0 90px;
	border-color: #fff transparent transparent transparent;
}
.slider_nav a{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	z-index: 1;
}
.slider_nav .prev:after{
	width: 28px;
	height: 28px;
	position: absolute;
	content: '';
	left: -5px;
	top: -5px;
	clip-path: polygon(0 0, 19% 100%, 100% 16%);
	background-color: #fff;
	z-index: -1;
}
.slider_nav .next:after{
	width: 28px;
	height: 28px;
	position: absolute;
	content: '';
	right: -5px;
	top: -5px;
	clip-path: polygon(0 0, 19% 100%, 100% 16%);
	background-color: #fff;
	z-index: -1;
	transform: rotate(91deg);
}
.slider_nav a > *{
	margin-right: 10px;
}
.slider_nav a > *:last-child{
	margin-right: 0;
}
.slider_nav .icon{
	width: 50px;
	height: 50px;
	background-color: var(--mc2);
	display: block;
	position: relative;
}
.slider_nav .fn__svg{
	display: block;
	position: absolute;
	width: 18px;
	height: 18px;
	color: #000;
	top: 50%;
	left: 50%;
	margin: -9px 0 0 -9px;
}
.slider_nav .prev .fn__svg{
	transform: rotate(90deg);
	margin-left: -10px;
}
.slider_nav .next .fn__svg{
	transform: rotate(-90deg);
	margin-left: -8px;
}
.slider_nav .dash{
	width: 180px;
	height: 50px;
	position: relative;
	background-color: var(--mc2);
}
.fn_cs_slider .slider_top > img{
	width: 33.3333% !important;
	min-width: 33.3333%  !important;
	opacity: 0;
	margin-bottom: 10%;
}
.fn_cs_slider .slider_top{
	padding: 59px 0 0;
	position: relative;
}
.fn_cs_slider .slider_top ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}
.fn_cs_slider .slider_top li{
	width: 33.3333%;
	position: absolute;
	margin: 0;
	transform: translateX(100%) scale(0);
	transition: all 0s ease;
	opacity: 0;
	top: 65px;
/*	visibility: hidden;*/
}
.fn_cs_slider .slider_top li.next2{
	left: 100%;
	transform: translateX(100%) scale(0);
	transition: all 1s ease;
}
.fn_cs_slider .slider_top li.prev2{
	left: 0;
	transform: translateX(-100%) scale(0);
	transition: all 1s ease;
}
.fn_cs_slider .slider_top li.prev,
.fn_cs_slider .slider_top li.next,
.fn_cs_slider .slider_top li.active{
	transform: translateX(0) scale(1);
	opacity: 1;
	transition: all 1s ease;
}
.fn_cs_slider .slider_top li.prev,
.fn_cs_slider .slider_top li.next{
	cursor: pointer;
}
.fn_cs_slider .slider_top li.prev{
	left: 0;
}
.fn_cs_slider .slider_top li.next{
	left: 66.6666%;
}
.fn_cs_slider .slider_top img{
	min-width: 100%;
	opacity: 0;
	margin-bottom: 10%;
}
.fn_cs_slider .slider_top .item{
	perspective: 1000px;
    perspective-origin: 50% 50%;
}
.fn_cs_slider .slider_top .item_in{
	padding: 30px;
	border: 1px solid rgba(255,255,255,.3);
	transition: all 1s ease;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: scaleX(0.85) scaleY(0.85) rotateY(180deg);
}
.fn_cs_slider .metaverse_fn_videobutton{
	opacity: 0;
	visibility: hidden;
}
.fn_cs_slider .active .metaverse_fn_videobutton{
	opacity: 1;
	visibility: visible;
}
.fn_cs_slider .slider_top .img{
	position: absolute;
	top: 30px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	border: 2px solid rgba(255,255,255,.4);
    background-color: rgba(255,255,255,.2);
}
.fn_cs_slider .slider_top .img:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: all .3s ease;
}
.fn_cs_slider .slider_top .active .has_video .img:after{
	background-color: rgba(0,0,0,0.3);
}
.fn_cs_slider .slider_top .item_in:after{
	content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
	top: 0;
	left: 0;
    color: var(--mc1);
    opacity: .15;
    border-radius: 20px;
    box-shadow: 0px 5px 20px;
}
.fn_cs_slider .slider_top .item_in:before{
	height: 15px;
	width: 60%;
	content: '';
	position: absolute;
	top: 100%;
	margin-top: 30px;
	background-color: #000;
	border-radius: 100%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-filter: blur(15px);
	-o-filter: blur(15px);
	filter: blur(15px);
}
.fn_cs_slider .slider_top .active .item_in{
	transform: scaleX(1) scaleY(1) rotateY(0deg);
}
.fn_cs_slider .slider_top .prev2 .item_in,
.fn_cs_slider .slider_top .prev .item_in{
	transform: scaleX(0.83) scaleY(0.83) rotateY(-30deg);
}
.fn_cs_slider .slider_top .next2 .item_in,
.fn_cs_slider .slider_top .next .item_in{
	transform: scaleX(0.83) scaleY(0.83) rotateY(30deg);
}
.fn_cs_slider .slider_top .img{
	overflow: hidden;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.fn_cs_slider .slider_top li.active{
	left: 33.3333%;
}
@media(max-width: 768px){
	.fn_cs_slider[data-responsive="on"] .slider_top li{
		width: 100%;
	}
	.fn_cs_slider[data-responsive="on"] .slider_top > img{
		width: 100% !important;
		min-width: 100% !important;
	}
	.fn_cs_slider[data-responsive="on"] .slider_top li.active{
		left: 0;
	}
	.fn_cs_slider[data-responsive="on"] .slider_top li.prev{
		left: -100%;
		margin-left: -100px;
	}
	.fn_cs_slider[data-responsive="on"] .slider_top li.next{
		left: 100%;
		margin-left: 100px;
	}
}
/*------------------------------------------------------------------*/
/*	40) Zigzag Carousel (Home #5)
/*------------------------------------------------------------------*/
#zigzag_carousel{
	padding-top: 200px;
	padding-bottom: 302px;
	position: relative;
}
#zigzag_carousel .fn_cs_welcome{
	margin-bottom: 50px;
}

.fn_cs_zigzag{
	padding: 0 135px;
}
.fn_cs_zigzag .swiper-container{
	overflow: visible;
	margin-bottom: 50px;
}
.fn_cs_zigzag .item{
	position: relative;
	width: 100%;
	border: 1px solid rgba(255,255,255,.3);
	padding: 30px;
}
.fn_cs_zigzag .even{
	margin-top: 30px;
}
.fn_cs_zigzag img{
	min-width: 100%;
	opacity: 0;
	margin-bottom: 10%;
}
.fn_cs_zigzag .item_in{
	width: 100%;
	position: relative;
	border: 2px solid rgba(255,255,255,.4);
    background-color: rgba(255,255,255,.2);
}
.fn_cs_zigzag .item_in .img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
/*------------------------------------------------------------------*/
/*	41) Cookies, Terms & Conditions, Privacy Policy pages
/*------------------------------------------------------------------*/
.metaverse_fn_simple{
	padding: 127px 0 143px;
}

.fn__title{
	letter-spacing: 0;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 4px;
	padding-top: 17px;
}
.fn__divider{
	width: 100%;
	height: 8px;
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 45px;
}
.fn__divider .line{
	width: 120px;
	height: 2px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 0;
	background-color: var(--mc2);
}
.fn__divider .line:after,
.fn__divider .line:before{
	content: '';
	height: 2px;
	position: absolute;
	left: 100%;
	background-color: var(--mc2);
	top: 0;
	bottom: 0;
}
.fn__divider .line:before{
	margin-left: 4px;
	width: 20px;
}
.fn__divider .line:after{
	margin-left: 28px;
	width: 6px;
}
.fn__divider [class^="a"]{
	width: 11px;
	height: 8px;
	display: block;
	background-color: var(--mc2);
	-webkit-clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
	-o-clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
	clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
	margin-right: 6px;
}
.metaverse_fn_simple p{
	font-size: 18px;
	margin-bottom: 38px;
}
.metaverse_fn_simple .container > *:last-child{
	margin-bottom: 0;
}


/*------------------------------------------------------------------*/
/*	42) Selections
/*------------------------------------------------------------------*/
::selection{
	background-color: #000;
}
::-moz-selection{
	background-color: #000;
}
.maintitle::-moz-selection,
.footer p::-moz-selection,
.metaverse_fn_walletbox .title_holder h3::-moz-selection,
.hero_header .title::-moz-selection{
	background: transparent;
	color: var(--mc2);
}
.maintitle::selection,
.metaverse_fn_walletbox .title_holder h3::selection,
.footer p::selection,
.hero_header .title::selection {
	background: transparent;
	color: var(--mc2);
}
.metaverse_fn_404 h4::-moz-selection,
.fn_cs_collection_info .count::-moz-selection,
.fn_cs_title .title[data-color="black"]::-moz-selection{
	background: transparent;
	color: #fff;
}
.metaverse_fn_404 h4::selection,
.fn_cs_collection_info .count::selection,
.fn_cs_title .title[data-color="black"]::selection{
	background: transparent;
	color: #fff;
}
.metaverse_fn_404 h3:-moz-selection,
.fn_cs_collection_info .title::-moz-selection,
.fn_cs_title .title[data-color="white"]::-moz-selection{
	background: transparent;
	color: #000;
}
.metaverse_fn_404 h3::selection,
.fn_cs_collection_info .title::selection,
.fn_cs_title .title[data-color="white"]::selection{
	background: transparent;
	color: #000;
}
.fn_cs_title .title span::-moz-selection{
	background: transparent;
	color: #fff;
}
.fn_cs_title .title span::selection{
	background: transparent;
	color: #fff;
}
/*------------------------------------------------------------------*/
/*	43) RESPONSIVE
/*------------------------------------------------------------------*/
@media(max-width: 1400px){
	.metaverse_fn_drops .grid > li{
		width: 50%;
	}
	.connect_btn .text span{display: none;}
	.gradient_link{font-size: 20px;}
	.bloglist ul{
		margin-left: -40px;
	}
	.bloglist li{
		padding-left: 40px;
		margin-bottom: 40px;
	}
}
@media(max-width: 1300px){
	.header .logo span{display: none;}
	.header.active .logo img{transform: none;max-height: 60px;}
	.header.active{padding: 10px 0;}
}
@media(max-width: 1200px){
	.metaverse_fn_wsidebar .sidebar_right{
		width: 100%;
		min-width: 100%;
		padding-left: 0;
	}
	.metaverse_fn_wsidebar .sidebar_left{
		width: 100%;
		padding-right: 0;
	}
	.metaverse_fn_wsidebar{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.gradient_link{font-size: 16px;padding: 0 20px;}
	.hero_header .info .count,
	.fn_cs_title .title,
	.maintitle,
	.hero_header .title{font-size: 40px;}
	.fn_cs_title .title.small,
	.fn_cs_collection_info .title,
	.metaverse_fn_walletbox .title_holder h3,
	.slider__count{font-size: 30px;}
}
@media(max-width: 1040px){
	#carousel_3d,
	#zigzag_carousel,
	#cards_slider{
		padding-top: 150px;
	}
	#zigzag_carousel{
		padding-bottom: 200px;
	}
	.fn_cs_roadmap .roadmap_top .swiper-slide{
		width: 300px;
	}
	.fn_cs_team .team_item{
		width: 50%;
	}
	.fn_cs_row .fn_col{
		padding-left: 40px;
		margin-bottom: 40px;
	}
	.fn_cs_row{
		margin-left: -40px;
	}
	.fn_cs_roadmap .roadmap_bottom .phase h3{
		font-size: 20px;
	}
	.fn_cs_roadmap .roadmap_bottom .item{
		padding: 19px;
	}
	.fn_cs_roadmap .roadmap_bottom .item_content{
		padding: 18px 20px;
	}
	.fn_cs_roadmap .roadmap_bottom .info_desc{
		padding-left: 30px;
	}
	.fn_cs_roadmap .roadmap_bottom .phase{
		width: 78px;
	}
	.fn_cs_roadmap .roadmap_bottom .item_in{
		padding-left: 78px;
	}
	.metaverse_fn_nftsingle{
		padding-top: 144px;
	}
	.metaverse_fn_mintbox .mint_content{
		padding-left: 38px;
		padding-right: 38px;
	}
	.nft_single_img .view_on{
		position: relative;
		top: 0;
		left: 0;
		bottom: auto;
		margin: 0;
		margin-top: 45px;
	}
	.nft_single_img .view_on ul{
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
		justify-content: center;
	}
	.nft_single_img .view_on li{
		writing-mode: unset;
		margin: 5px 10px 5px 0;
		line-height: 60px;
	}
	.nft_single_img .view_on li:first-child{
		transform: none;
		margin: 0 20px 0 0;
	}
	.bloglist li{
		padding-left: 20px;
		margin-bottom: 20px;
	}
	.bloglist ul{
		margin-left: -20px;
	}
	.blog__item{
		padding: 19px;
	}
	.blog__item .item_desc{
		padding: 35px 28px 30px;
	}
	.metaverse_fn_blog_single{
		padding-top: 95px;
	}
	.metaverse_fn_pagetitle .pagetitle{
		padding-top: 145px;
	}
	.metaverse_fn_coming_soon{
		padding: 150px 0;
	}
	.metaverse_fn_collection{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.metaverse_fn_filters{
		width: 100%;;
		min-width: 100%;
	}
	.metaverse_fn_clist{
		padding-left: 0;
	}
	.metaverse_fn_mobnav{display: block;}
	#header{display: none;}
	#home{padding-top: 100px;}
	.hero_header .hero_left{width: 55%;}
	.hero_header .hero_right{width: 45%;}
	.metaverse_fn_button .text{min-width: 150px;}
}
@media(max-width: 768px){
	.fn_cs_blog .read_all{
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 50px;
	}
	.fn_cs_blog .read_all a{
		width: fit-content;
	}
	.fn_cs_roadmap .roadmap_bottom .item_content{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.fn_cs_roadmap .roadmap_bottom .info_desc{
		padding-left: 0;
		margin-top: 30px;
	}
	.fn_cs_roadmap .roadmap_bottom .item_in{
		padding-left: 0;
		padding-top: 78px;
	}
	.fn_cs_roadmap .roadmap_bottom .phase{
		width: 100%;
		height: 78px;
		right: 0;
		bottom: auto;
		border-right: none;
		border-bottom: 2px solid rgba(255,255,255,.4);
	}
	.fn_cs_roadmap .roadmap_bottom .phase h3{
		writing-mode: unset;
		transform: translate(-50%,-50%);
	}
	.fn_cs_roadmap .roadmap_bottom .info_img{
		width: 350px;
		max-width: 100%;
	}
	.fn_cs_row .fn_col{
		width: 100%;
	}
	.fn_cs_zigzag .item{
		padding: 20px;
	}
	.fn_cs_zigzag{
		padding: 0 50px;
	}
	.fn_cs_slider .slider_top{
		margin-bottom: 90px;
	}
	#carousel_3d{
		padding-bottom: 200px;
	}
	.metaverse_fn_nft_cats li{width: 100%;}
	.metaverse_fn_author_info{
		padding: 19px;
	}
	.metaverse_fn_author_info .item_in{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.metaverse_fn_author_info .info_img{
		padding: 30px 20px 0 20px;
		width: 250px;
		max-width: 100%;
	}
	.metaverse_fn_author_info .info_desc{
		padding-left: 20px;
		padding-right: 20px;
	}
	.metaverse_fn_drops .grid > li,
	.bloglist li{
		width: 100%;
	}
	.fn_cs_moving_collection .item{
		width: 300px !important;
	}
	.footer{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-start;
		align-items: flex-start;
	}
	.hero_header{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.hero_header .hero_left{width: 100%;padding-right: 0;max-width: 100%;margin-bottom: 92px;}
	.hero_header .hero_right{width: 100%;}
	.fn_col2{width: 100%;}
	.myparallax{
		max-height: 60vh;
	}
	.fn_cs_team .team_item{width: 50%;}
	.fn_cs_glitch_slider .pagination ul{
		height: inherit !important;
		left: auto;
		top: 100%;
		margin-top: 40px;
		flex-direction: row;
		margin-left: -10px;
		flex-wrap: wrap;
	}
	.fn_cs_glitch_slider .pagination li{
		position: relative;
		left: auto;
		right: auto;
		width: 50px;
		height: 3px;
		bottom: auto !important;
		margin-left: 10px;
		margin-bottom: 10px;
	}
	.fn_cs_glitch_slider .pagination .item{
		height: 3px;
	}
	.fn_cs_glitch_slider:hover .pagination li{opacity: 1;}
	.fn_cs_glitch_slider .pagination .item:after{
		height: 100%;
		width: 0;
	}
	.fn_cs_glitch_slider .pagination .active .item:after{
		width: 100%;
		transition: all 3s linear;
	}
	.slider__count{
		bottom: 50px;
	}
	#home{padding-bottom: 254px;}
	#about{padding-top: 89px;}
	#video{padding-top: 180px;}
	.metaverse_fn_walletbox{
		padding-left: 20px;
		padding-right: 20px;
	}
	.metaverse_fn_items li{width: 100%;}
	.fn_cs_contact_form li,
	.fn_cs_contact_info li,
	.fn_cs_team .team_item{width: 100%;}
	.metaverse_fn_rightnav{width: 100%;}
	.metaverse_fn_protected form,
	.metaverse_fn_404 form{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.metaverse_fn_protected input[type="password"],
	.metaverse_fn_404 input{
		margin-right: 0;
		margin-bottom: 10px;
		text-align: center;
		padding-left: 17px;
		padding-right: 17px;
		flex:auto;
	}
	.fn_cs_contact_form input[type="text"]{
		height: 50px;
		padding-left: 17px;
		padding-right: 17px;
	}
	textarea{
		padding-left: 17px;
		padding-right: 17px;
	}
	.fn_cs_contact_form li{
		margin-bottom: 20px;
	}
	.metaverse_fn_protected .metaverse_fn_button,
	.metaverse_fn_404 .metaverse_fn_button{
		width: 100%;
	}
	.hero_header .buttons{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.hero_header .buttons a{
		margin-right: 0;
		width: 100%;
	}
	.metaverse_fn_pnb .pnb_wrapper{
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		overflow: visible;
	}
	.metaverse_fn_pnb .fn_trigger{
		width: 100%;
		height: 100px;
		top: 50%;
		left: 0;
		margin-left: 0;
		margin-top: -50px;
	}
	.metaverse_fn_pnb .item{
		width: 100%;
		max-width: 100%;
		padding: 70px 0;
	}
	.metaverse_fn_pnb .fn_trigger:after{
		width: auto;
		height: 2px;
		top: 50%;
		margin-top: -1px;
		margin-left: 0;
		left: -20px;
		right: -20px;
	}
	.metaverse_fn_pnb .fn_trigger .icon{
	 	transform: rotate(89deg);
		z-index: 5;
		position: relative;
	}
	.metaverse_fn_comments .input-item.half-item{
		width: 100%;
	}
	.metaverse_fn_comments .input-item{
		margin-bottom: 20px;
	}
	.metaverse_fn_comments .comment-form input[type="text"]{
		height: 50px;
	}
	.fn_cs_glitch_slider .slider .item{padding: 20px;}
	.slider__count{font-size: 24px;}
}
@media(max-width: 480px){
	.metaverse_fn_rightnav .search_holder input{min-width: inherit;}
	.metaverse_fn_rightnav{padding: 50px 20px;}
	.metaverse_fn_rightnav .list_holder .list a{width: 100%;}
}

/*-------- Custom CSS -----------*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

