/*!
Theme Name: xpozd
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: xpozd
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

xpozd is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
html {
	scroll-behavior: smooth;
}
body {
	max-width: 1920px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-family: 'HK Grotesk';
	color: #272727;
}
.container {
	max-width: 1335px;
	width: 100%;
}
div#page {
    position: relative;
}
a {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #fff;
	font-size: 20px;
}
a:hover {
	text-decoration: none;
	color: #fff;
}
h2 {
	font-size: 55px;
	margin: 0;
}
h3 {
	font-size: 35px;
	margin: 0;
}
h4 {
    font-size: 25px;
    margin: 0;
}
#primary-btn {
    background-color: #000;
    padding: 20px 45px;
}
#primary-btn:hover {
    /* color: #fff; */
    margin-left: 15px;
    background-color: #700207;
    /* opacity: 0.5; */
}
.banner a#primary-btn {
    background-color: #000;
    padding: 20px 95px;
    border: 1px solid;
}
.pri-btn {
    border-radius: 4px;
    background-size: 300%;
    transition: all 0.6s;
}
.color-1 {
    color: rgb(255, 255, 255);
    background-image: linear-gradient(90deg, #000 50%, #700207 50%);
}
.color-2 {
    color: rgb(255, 255, 255);
    background-image: linear-gradient(90deg, #000 50%, #a13781 50%);
}
.pri-btn:hover {
    color: #ffffff;
    background-position: 100%;
    transform: translateX(0.5rem);
}
.t-white {
	color: #fff;
}
p {
	margin: 0;
	font-size: 19px;
}
.blue {
	color: #1D374A;
}
.brown {
	color: #715E59;
}
.menu-sticky {
    display: none;
    max-width: 1920px;
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 3;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    -webkit-box-shadow: 0px 5px 10px -1px rgb(0 0 0 / 21%);
    box-shadow: 0px 5px 10px -1px rgb(0 0 0 / 21%);
    top: 0;
	-webkit-transition: height 0.5s;
	-o-transition: height 0.5s;
	transition: height 0.5s;
}
/* BACK TO TOP */
#back-to-top {
    display: table;
    position: fixed;
    bottom: 0;
    right: 40px;
    z-index: 9;
    width: 40px;
    height: 40px;
    border: 1px solid #898989;
    border-bottom: 0;
    background: #715E59;
    text-align: center;
    color: #fff;
    text-decoration: none;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    border-radius: 5px 5px 0 0;
}
#back-to-top:hover {
    -webkit-filter: contrast(200%);
            filter: contrast(200%);
}
#back-to-top.show {
    opacity: 1;
}
#back-to-top .wrapper {
    display: table-cell;
    vertical-align: middle;
}
#back-to-top.fade-out {
    opacity: 1;
}
/* HEADER */
section.menu-default {
    position: absolute;
    width: 100%;
    padding: 50px 0;
    z-index:4;
}
section.menu-default .site-branding {
    position: relative;
}
section.menu-default .site-branding:before {
    content: '';
    -webkit-box-shadow: 0 20px 65px #e1272a;
            box-shadow: 0 20px 65px #e1272a;
    display: block;
    position: absolute;
    top: -100px;
    left: -35px;
    width: 100%;
    height: 40px;
    border-radius: 50%;
}
section.menu-default .wrapper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
}
section.menu-default .site-branding img {
    width: 30% !important;
}
.site-menu ul#primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
section.menu-default .wrapper-content .c-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.site-menu ul#primary-menu li {
    margin: 0 25px;
}
.site-menu ul#primary-menu li a {
    color: #fff;
    font-size: 20px;
}
ul#primary-menu li.menu-item {
    position: relative;
}
ul#primary-menu li.menu-item a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
ul#primary-menu li.menu-item:hover a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    -webkit-transform: scaleX(0.4);
        -ms-transform: scaleX(0.4);
            transform: scaleX(0.4);
    -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.site-branding a img {
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}
.site-branding a:hover img {
    margin-left: 10px;
    opacity: 0.3;
}
li.site-icon {
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 35px;
    text-align: center;
    margin: 0 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
li.site-icon:hover {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.7;
    cursor: pointer;
}
li.site-icon i {
    font-size: 17px;
}
section.menu-sticky{
    background-color: rgba(0, 0, 9, 0.85);
    padding: 20px 0;
}
section.menu-sticky .site-branding img {
    width: 20%;
}
section.menu-sticky ul#primary-menu a {
    font-size: 15px !important;
}
section.menu-sticky li.site-icon {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
}
section.menu-sticky li.site-icon:hover {
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
}
section.menu-sticky .wrapper-content .c-2 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
section.menu-sticky .wrapper-content .c-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
/* BANNER */
section.banner {
    height: 1035px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
}
section.banner #background-video {
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.page-id-292 section.banner #background-video {
    top: -200px;
}
section.banner .wrapper-content {
    position: relative;
    z-index: 1;
}
section.banner .title-content {
    position: absolute;
    text-align: center;
    width: 50%;
    right: 0;
    -webkit-transform: translate(0, 90%);
        -ms-transform: translate(0, 90%);
            transform: translate(0, 90%);
}
section.banner .title-2 h2 {
    margin: 15px 0;
    text-transform: uppercase;
    font-weight: 600;
}
section.banner .title-3 {
    padding: 0px 100px;
}
.page-id-8 section.banner .title-3 {
    padding: 0px 60px;
}
.page-id-8 section.banner .title-content {
    width: 39%;
    -webkit-transform: translate(0, 60%);
    -ms-transform: translate(0, 60%);
    transform: translate(0, 60%);
}
.page-id-8 section.banner #primary-btn {
    background-color: #000;
    padding: 20px 95px;
    border: 1px solid;
}
section.banner .title-4 {
    margin: 15px 0 50px;
}
.c-moke {
    display: block;
    height: 21.25em;
    width: 16.875em;
    opacity: 1;
    position: absolute;
    top: -7.9375em;
    right: -5.8125em;
    -webkit-transition: opacity 5.4s linear;
    -o-transition: opacity 5.4s linear;
    transition: opacity 5.4s linear;
}
.smoke {
    position: fixed;
    width: 30%;
    -webkit-transform: rotate(306deg);
        -ms-transform: rotate(306deg);
            transform: rotate(306deg);
    top: 0;
    left: -7%;
    opacity: 0.6 !important;
}
.scroll-to-explore {
    position: absolute;
    left: 50%;
    top: 750px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.scroll-to-explore {
    position: absolute;
    left: 50%;
    top: 750px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.8;
}
.scroll-to-explore:hover {
    opacity: 0.6;
}
.scroll-to-explore a:after {
    content: '↓';
    display: block;
    position: absolute;
    left: 50%;
    top: 25px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
a::after {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.scroll-to-explore:hover a:after {
    margin-top: 5px;
}
/* PARALLAX BANNER BG */
.parallax-window {
    height: 1035px;
    background: transparent;
}
div#smoke svg {
    top: 0;
    left: 0;
    position: absolute;
    width: 90%;
}
/* VIRTUAL FASHION */
section#virtual-fasion {
    margin-top: -118px;
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    background-color: #fff;
    position: relative;
    z-index: 2;
}
section#virtual-fasion .wrapper-content {
    margin-top: -118px;
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
    padding: 150px 0 80px;
}
section#virtual-fasion .title {
    text-transform: uppercase;
    margin-bottom: 20px;
}
section#virtual-fasion .c-2-content p:last-child {
    margin-bottom: 0;
}
section#virtual-fasion .c-2-content p {
    margin-bottom: 40px;
}
section#virtual-fasion .c-2-content {
    padding: 0 40px;
}
/* section#virtual-fasion .c-1-content {
    margin-top: -17%;
} */
section#virtual-fasion .wrapper-content {
    align-items: center;
}
section#virtual-fasion li.image:nth-child(2) {
    text-align: right;
    margin-top: -25%;
}
/* GLOBAL BRANDS */
section#global-brands {
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    text-align: center;
    background-color: #fff;
    margin-bottom: -120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
    margin-top: -5px;
}
section#global-brands .wrapper-content {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
    padding: 100px 0;
}
section#global-brands .content {
    padding: 0 50px;
}
section#global-brands .title {
    text-transform: uppercase;
}
section#global-brands .content {
    margin: 40px 0 100px;
}
section#global-brands .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
section#global-brands li.logo img {
    margin-left: auto;
    margin-right: auto;
}
.logo-content img {
    width: 90%;
}
.logo-content {
    border: 1px solid #E5DAD5;
    height: 221px;
    width: 280px;
    margin: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
    margin-left: auto;
}
.slick-next:before {
    content: '›';
    color: #000;
	font-size: 35px;
}
.slick-prev:before {
    content: '‹';
    color: #000;
    font-size: 35px;
}
.slick-next {
    right: -50px;
}
.slick-prev {
    left: -50px;
}
/* ABOUT SECTION */
/* section#about {
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
    background-attachment: fixed;
    height: 980px;
    margin-bottom: -120px;
    position: relative;
    z-index: 1;
} */
section#about {
    height: 1035px;
    margin-bottom: -120px;
    position: relative;
    z-index: 1;
    background: -o-linear-gradient(315deg, #1D374A, #454A51, #5D5555, #715e59);
    background: linear-gradient(135deg, #1D374A, #454A51, #5D5555, #715e59);
    -webkit-animation: gradient 5s ease infinite;
            animation: gradient 5s ease infinite;
    background-size: 400% 400%;
}
@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
section#about .bgimage {
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 150vh;
}
section#about .content p {
    font-size: 18px;
}
section#about .wrapper-content {
    position: relative;
}
section#about .c-content {
    position: absolute;
    width: 50%;
    text-align: center;
    -webkit-transform: translate(0, 30%);
        -ms-transform: translate(0, 30%);
            transform: translate(0, 30%);
    color: #fff;
    right: 0;
    z-index: 1;
}
section#about h2 {
    text-transform: uppercase;
    font-weight: 600;
}
section#about .sub-title p {
    text-transform: uppercase;
}
section#about .c-content .sub-title {
    margin: 10px 0 35px;
}
section#about .c-content .content p:last-child {
    margin: 0;
}
section#about .c-content .content p {
    margin-bottom: 20px;
}
/* NFT TRAIT */
section#nft-trait {
    background-color: #fff;
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    margin-bottom: -120px;
    position: relative;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: 100% 107%;
    width: 100%;
}
section#nft-trait .wrapper-content {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
    padding: 150px 100px 0;
    padding-bottom: 50px;
}
section#nft-trait .c-2-content {
    margin-top: -290px;
}
section#nft-trait .title-content {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 80px;
}
section#nft-trait .c-1-content .nfts-content li.nft-list:nth-child(odd),
section#nft-trait .c-2-content .nfts-content li.nft-list:nth-child(even) {
    display: none;
}
section#nft-trait .title-content .title {
    margin-bottom: 10px;
}
li.nft-list {
    position: relative;
    margin-bottom: 80px;
    height: 900px;
}
.nft-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.edge-top {
    height: 160px;
    background-position: top;
    background-size: cover;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1;
}
.edge-bottom {
    height: 160px;
    background-position: bottom;
    background-size: cover;
    position: absolute;
    width: 100%;
    bottom: 0;
}
.nft-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.nft-border img {
    height: 100%;
}
.nf-list-content {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    background-color: #1D374A;
    padding: 60px 35px;
    color: #fff;
    height: 880px;
    margin-top: 10px;
    position: relative;
    -webkit-box-shadow: 0px 0px 25px #62a6d9;
            box-shadow: 0px 0px 25px #62a6d9;
}
.nf-list-content .nft-title h3,
.nf-list-content .nft-price h4 {
    font-weight: 700;
}
.nf-list-content .nft-title {
    text-transform: none !important;
}
.nft-image {
    margin-bottom: 35px;
    height: 270px;
    overflow: hidden;
    border-radius: 26px;
}
.nf-list-content .nft-content {
    text-align: left;
    padding: 0 25px;
    font-size: 18px;
}
.nft-price {
    margin: 20px 0;
}
ul.nft-contents {
    list-style: disc;
    line-height: 2;
    padding: 0;
}
.nft-button {
    position: absolute;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
    bottom: 10%;
    z-index: 2;
}
.nft-image img {
    -webkit-box-shadow: 0px 0px 20px #62a6d9;
            box-shadow: 0px 0px 20px #62a6d9;
    border-radius: 25px;
    top: -30%;
    position: relative;
}
ul.nft-lists li:last-child {
    margin: 0;
}
.glass {
    width: 225%;
    height: 600px;
    opacity: .1;
    background: #fff;
    position: absolute;
    top: 1px;
    left: -620px;
    z-index: 0;
    -webkit-transform: rotate(299deg);
        -ms-transform: rotate(299deg);
            transform: rotate(299deg);
}
section#nft-trait .tabcontent {
    padding: 0;
}
section#nft-trait li.nft-lists {
    margin-bottom: 100px;
}
.nft-countdown .title {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}
.nft-countdown {
    margin-bottom: 100px;
}
/* COLLECTION */
section#collection {
    position: relative;
    margin-top: -90px;
}
section#collection .background {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 129vh;
}
section#collection .wrapper-content .background {
    padding: 300px 0 200px;
}
section#collection .wrapper-collections .title {
    text-transform: uppercase;
}
section#collection .wrapper-collections {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
    text-align: center;
    color: #fff;
    margin-top: -400px;
}
section#collection .collection-content {
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    background-color: #fff;
    margin-top: -120px;
    padding: 80px 0;
}
section#collection .wrapper-collections .title {
    margin-bottom: 20px;
}
section#collection .wrapper-collections .desc {
    padding: 0 80px;
}
section#collection .collections-imgs ul {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
}
section#collection ul.image-lists li.list {
    width: 424px;
}
.collections-imgs li {
    margin-bottom: 20px;
}
.collections-imgs li img {
    width: 98%;
}
.collections-imgs {
    margin-top: 60px;
}
section#collection ul.image-lists li.list:first-child img {
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
}
section#collection ul.image-lists li.list:first-child,
section#collection ul.image-lists li.list:nth-child(2),
section#collection ul.image-lists li.list:nth-child(6),
section#collection ul.image-lists li.list:nth-child(7),
section#collection ul.image-lists li.list:nth-child(8) {
    height: 360px;
    overflow: hidden;
}
section#collection ul.image-lists li.list:nth-child(3) {
    overflow: hidden;
    height: 502px !important;
}
section#collection ul.image-lists li.list:hover {
    -webkit-transform: rotate(0.8deg);
        -ms-transform: rotate(0.8deg);
            transform: rotate(0.8deg);
}
section#collection ul.image-lists li.list {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    width: 98%;
    margin-right: auto;
    margin-left: auto;
}
section#collection ul.image-lists li.list img {
    width: 100%;
}
/* ROADMAP */
section.roadmap {
    position: relative;
    background-color: #fff;
    padding: 80px 0;
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    z-index: 2;
    margin-top: -5px;
}
section.roadmap .wrapper-content {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
}
section.roadmap .wrapper-content {
    text-align: center;
}
section.roadmap .wrapper-content .title {
    text-transform: uppercase;
}
section.roadmap .desc {
    padding: 0 120px;
    margin-top: 20px;
}
section.roadmap .roadmap-content {
    text-align: left;
    margin-top: 50px;
}
section.roadmap .title {
    font-size: 20px;
    color: #1D374A;
    font-weight: bold;
    margin: 5px 0;
}
li.roadmap-list .title1 {
    color: #715E59;
    font-size: 30px;
    margin-top: 15px;
}
li.roadmap-list .location {
    text-transform: uppercase;
    font-size: 35px;
    color: #715E59;
}
li.roadmap-list .post-title {
    margin: -5px 0;
}
li.roadmap-list .post-title {
    font-size: 40px;
    color: #1D374A !important;
    text-transform: uppercase;
    font-weight: 700;
}
li.roadmap-list {
    border-bottom: 1px solid #A5A5A5;
}
li.roadmap-list {
    border-bottom: 1px solid #A5A5A5;
    padding: 50px 0;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
li.roadmap-list:last-child {
    border-bottom: 0;
}
li.roadmap-list:before {
    content: '●';
    color: #A3A3A3;
    position: absolute;
    left: -70px;
    font-size: 50px;
    top: 16%;
    border: 3px solid #A3A3A3;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 7px;
    padding-left: 1px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: #fff !important;
}
li.roadmap-list:hover:before {
    color: #1D374A !important;
}
li.roadmap-list:after {
    content: '';
    border-right: 4px solid #A3A3A3;
    display: block;
    height: 237px;
    position: absolute;
    left: -55px;
    top: 28%;
}
section#roadmap li.roadmap-list:nth-child(4):after {
    height: 250px;
}
li.roadmap-list:last-child .post-title,
li.roadmap-list:first-child .post-title {
    line-height: 1;
}
li.roadmap-list:last-child .title {
    margin-bottom: 15px;
}
li.roadmap-list:last-child:after {
    content: none;
}
/* FAQ */
section#faqs {
    background-color: #000;
    padding: 200px 0;
    color: #fff;
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
    margin-top: -235px;
    position: relative;
    z-index: 1;
}
section#faqs .wrapper-content {
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    padding: 200px 0 0;
}
section#faqs .title-desc {
    text-align: center;
    padding: 0 120px;
}
section#faqs .title {
    text-transform: uppercase;
    margin-bottom: 20px;
}
.c-content .c-1 li:last-child {
    text-align: right;
    margin-top: -235px;
}
.c-content .c-1 li:first-child {
    padding-left: 35px;
}
section#faqs .desc {
    margin-bottom: 80px;
}
li.faq-list .question-title {
    font-size: 23px;
}
/* ========================== ACCORDION CSS ========================= */
li.faq-list.accordion:last-child {
    border: 0;
}
li.faq-list.accordion {
    border-bottom: 1px solid #A0A0A0;
    border-radius: 0;
}
.accordion__heading {
  margin-bottom: 1rem;
  padding: 0 1.4rem;
}

button.accordion__btn {
    background: transparent;
    outline: 0;
}
.accordion__content p:last-child {
    padding-bottom: 50px !important;
}
.accordion__item:not(:last-child) {
  border-bottom: 1px solid lightgrey;
}
span.accordion__caption {
    color: #E5DAD5;
}
.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.4rem;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
}
.accordion__btn:hover {
  color: var(--color-purple);
}

.accordion__item--active .accordion__btn {
  color: var(--color-purple);
  border-bottom: 2px solid var(--color-purple);
}

.accordion__icon {
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  opacity: 0.9;
}
.accordion__item--active .accordion__icon {
  transform: rotate(135deg);
}

.accordion__content {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}
.accordion__content p {
  padding: 1rem 1.8rem;
}

.accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}
/* ======================= END ACCORDION CSS ======================= */
section#faqs .c-2 ul {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
/* li.faq-list.accordion {
    border-bottom: 1px solid #A0A0A0;
    padding: 10px 0;
}
li.faq-list.accordion:last-child {
    border: 0;
} */
/* FOOTER */
section#buy-nft {
    padding: 200px 0 100px;
    margin-top: -120px;
    color: #fff;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
section#buy-nft .logo img {
    width: 10%;
}
section#buy-nft .logo {
    text-align: center;
}
section#buy-nft .title,
section.home-footer .title {
    font-size: 45px;
    margin: 35px 0 15px;
    font-weight: 700;
}
section#buy-nft .desc {
    padding: 0 150px;
    /* margin-bottom: 120px; */
}
section.home-footer .desc {
    padding: 0px 330px;
    margin-bottom: 120px;
}
section#buy-nft .desc p,
section.home-footer .desc p {
    font-size: 30px;
}
section#buy-nft .wrapper-content {
    padding: 120px 0 100px;
}
section.home-footer .wrapper-content {
    padding: 0 0 180px;
}
section#buy-nft img {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
section#buy-nft .logo img:hover {
    margin-left: 10px;
    opacity: 0.5;
}
.footer-bottom-content .c-2,
.footer-bottom-content .c-2 a {
    font-size: 16px;
}
.footer-bottom-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer-bottom-content .c-2 a:hover {
    opacity: 0.5;
}
.page-id-266 button#rmp_menu_trigger-320 {
    display: none;
}
/* INNER PAGE */
section.inner-page-banner {
    height: 360px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}
section.inner-page-banner .page-title h2 {
    font-weight: 700;
}
section.inner-page-banner .page-title {
    position: absolute;
    left: 50%;
    bottom: 30%;
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}
.page-id-187 section.roadmap {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
}
.page-id-187 section.roadmap .wrapper-content {
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
}

li.nft-lists {
    margin-top: 100px;
}
.version-tab {
    overflow: hidden;
    border: 0;
    background-color: transparent;
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
}
/* Style the buttons inside the tab */
.version-tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 15px;
    text-transform: uppercase;
}
/* Change background color of buttons on hover */
.version-tab button:hover {
    background-color: #ddd;
}
/* Create an active/current tablink class */
.version-tab button.active {
    background-color: #1D374A;
    color: #fff;
}
/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
.nft-card .tabcontent:first-child {
    display: block;
}
.c-1-content li.nft-lists:nth-child(odd) {
    display: none;
}
.c-2-content li.nft-lists:nth-child(even) {
    display: none;
}

/* Home - Banner */
section.home-banner {
    padding: 225px 0 100px;
    background-color: #000;
    height: 1200px;
    color: #fff;
    text-align: center;
}
section.home-header {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 1%;
}
section.home-header .site-branding img,
section.home-footer .logo img {
    width: 150px !important;
}
section.home-banner .title1 h2 {
    font-weight: 700;
    text-transform: uppercase;
}
section.home-banner .title h3 {
    color: #8C7974;
}
section.home-banner .nft-select .title h3 {
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
}
section.home-banner ul.nft-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}
section.home-banner .title1 {
    margin-bottom: 50px;
}
section.home-banner ul.nft-lists .title {
    margin: 20px 0 40px;
}
section.home-banner li.list:hover {
    background-image: url(https://xpozd.viewourdesign.com/wp-content/uploads/2022/03/ntf-bg-1.png) !important;
}
section.home-banner li.list.aos-init.aos-animate {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
section.home-banner li.list {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 45px 35px;
}
.wrapper-list-content {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding: 50px 0;
}
section.home-roadmap {
    background-color: #fff;
    padding: 90px 0 80px;
    position: relative;
    z-index: 1;
    -webkit-transform: skewY(-7deg);
        -ms-transform: skewY(-7deg);
            transform: skewY(-7deg);
    /* margin-top: -120px; */
}
section.home-roadmap .container {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
}
section.home-roadmap .title h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 45px;
}
section.home-roadmap .roadmap-content ul.content-lists {
    list-style: disc;
    padding: 0 0 0 15px;
}

section.home-roadmap ul.roadmap-lists .title h3 {
    font-size: 35px !important;
    text-align: left;
    color: #715E59;
}
section.home-roadmap .title {
    margin-bottom: 50px;
}
section.home-roadmap li.roadmap-list:after {
    height: 300px;
    top: 26%;
}
.roadmap-content .title {
    margin: 0 !important;
}
ul.roadmap-lists li.roadmap-list {
    border: 0;
}
section.home-roadmap li {
    font-size: 19px;
}
section.home-roadmap li.roadmap-list .content {
    margin-top: 15px;
}
.skew-y {
    -webkit-transform: skewY(7deg);
        -ms-transform: skewY(7deg);
            transform: skewY(7deg);
    padding: 120px 0;
    background-color: #000;
    margin-top: -120px;
    z-index: 1;
    position: relative;
}
section.home-footer {
    background-color: #000;
    position: relative;
    z-index: 1;
    margin-top: -120px;
    color: #fff;
    text-align: center;
    padding: 150px 0 100px;
}
footer#colophon {
    position: relative;
}
section.home-footer .logo {
    text-align: center;
}
section.home-footer #primary-btn {
    border: 1px solid #fff;
}
/* PAGE - MARK SQUIRES */
.page-id-292 div#smoke {
    display: none;
}
.page-id-292 section.banner .title-content {
    position: absolute;
    text-align: center;
    width: 39%;
    left: 40px;
    -webkit-transform: translate(0, 65%);
        -ms-transform: translate(0, 65%);
            transform: translate(0, 65%);
}
.countdown-timer {
    text-align: center;
    margin: 20px 0;
}
.page-id-292 section#about .c-content {
    -webkit-transform: translate(0, 22%);
    -ms-transform: translate(0, 22%);
    transform: translate(0, 22%);
}
section.inner-page-banner-error {
    padding: 200px 0 100px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}
.content-not-found {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
    text-align: center;
}
section.error-404.not-found a {
    color: #000;
}
section.error-404.not-found .content {
    margin-bottom: 15px;
}
section.home-story {
    transform: skewY(-7deg);
    padding: 100px 0;
    background-color: #000;
    /* margin-top: -120px; */
    color: #fff;
    position: relative;
    z-index: 2;
}
section.home-story .container {
    transform: skewY(7deg);
    padding: 25px 0;
}
section.home-story h3,
section.vip-nft h3 {
    text-transform: uppercase;
    font-size: 45px;
}
section.home-story .title,
section.vip-nft .title {
    text-align: center;
    margin-bottom: 50px;
}
section.home-story .content p,
section.vip-nft .content p {
    margin-bottom: 20px;
}
/* MEDIA QUERY */

@media ( max-width: 1220px ) {
    ul.nft-lists a#primary-btn {
        font-size: 15px;
    }
    h3 {
        font-size: 30px !important;
    }
    section#collection ul.image-lists li.list:nth-child(3) {
        height: 440px !important;
    }
}
@media ( max-width: 1024px ) {
    section#collection ul.image-lists li.list:nth-child(7) {
        height: 315px;
    }
    section#collection ul.image-lists li.list:nth-child(6) {
        height: 345px;
    }
}
@media ( max-width: 991px ) {
    section.menu-sticky .wrapper-content .c-2 {
        -webkit-box-pack: center !important;
            -ms-flex-pack: center !important;
                justify-content: center !important;
        margin-top: 25px !important;
    }
    section.menu-sticky .wrapper-content {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }
    section.menu-default .site-branding img {
        width: 11% !important;
    }
    section#collection .collections-imgs ul li:first-child {
        height: 275px !important;
    }
    section#collection ul.image-lists li.list:nth-child(2) {
        height: 320px !important;
    }
    section#collection ul.image-lists li.list:nth-child(3) {
        height: 390px !important;
    }
    section#collection ul.image-lists li.list:nth-child(5) {
        height: 645px;
    }
    section.menu-sticky .site-branding {
        text-align: center;
    }
    section.menu-sticky .site-branding img {
        width: 11%;
    }
    ul.roadmap-lists li.roadmap-list:first-child:after {
        height: 145px !important;
        top: 25% !important;
    }
    li.roadmap-list:after {
        height: 180px !important;
        top: 22% !important;
    }
}
@media ( max-width:812px ) {
    section#collection .collections-imgs ul li:first-child {
        height: 220px !important;
    }
    section#collection ul.image-lists li.list:nth-child(2) {
        height: 260px !important;
    }
    section#collection ul.image-lists li.list:nth-child(5) {
        height: 350px;
    }
    section#collection ul.image-lists li.list:nth-child(6) {
        height: 265px !important;
    }
    section#collection ul.image-lists li.list:nth-child(7) {
        height: 245px !important;
    }
}
@media ( max-width: 767px ) {
    section.home-roadmap li.roadmap-list .title h3 {
        font-size: 25px !important;
    }
}
@media ( max-width: 675px ) {
    section#collection .collections-imgs ul li:first-child {
        height: 180px !important;
    }
    section#collection ul.image-lists li.list:nth-child(2) {
        height: 210px !important;
    }
    section#collection ul.image-lists li.list:nth-child(3) {
        height: 255px !important;
    }
    section#collection ul.image-lists li.list:nth-child(5) {
        height: 290px;
    }
    section#collection ul.image-lists li.list:nth-child(6) {
        height: 215px !important;
    }
    section#collection ul.image-lists li.list:nth-child(7) {
        height: 200px !important;
    }
    section#collection ul.image-lists li.list:nth-child(8) {
        height: 185px !important;
    }
    section.roadmap .desc {
        padding: 0 80px;
        margin-top: 20px;
    }
}
@media ( max-width: 612px ) {
    section.menu-default .site-branding img, section.menu-sticky .site-branding img {
        width: 15% !important;
    }
}
@media ( max-width: 512px ) {
    section#collection .collections-imgs ul li:first-child,
    section#collection ul.image-lists li.list:nth-child(2),
    section#collection ul.image-lists li.list:nth-child(3),
    section#collection ul.image-lists li.list:nth-child(4),
    section#collection ul.image-lists li.list:nth-child(5),
    section#collection ul.image-lists li.list:nth-child(6),
    section#collection ul.image-lists li.list:nth-child(7),
    section#collection ul.image-lists li.list:nth-child(8) {
        height: 240px !important;
    }
    section#collection ul.image-lists li.list {
        overflow: hidden !important; 
    }    
    section.menu-default .site-branding img, section.menu-sticky .site-branding img {
        width: 25% !important;
    }
}
@media ( max-width: 414px ) {
    .usr-slct-content #primary-btn {
        padding: 12px 20px !important;
        font-size: 12px !important;
    }
    h3 {
        font-size: 20px !important;
    }
    section.the-team .title h3 {
        font-size: 25px !important;
    }
    section.home-roadmap li.roadmap-list:after {
        height: 515px !important;
    }
    section.home-roadmap ul.roadmap-lists li.roadmap-list:nth-child(3):after {
        height: 425px !important;
        top: 7% !important;
    }
    section#buy-nft .logo img,
    section.home-footer .logo img {
        width: 100px !important;
    }
    section#buy-nft .title, section.home-footer .title {
        font-size: 30px !important;
        margin: 50px 0 15px !important;
    }
    section#buy-nft .desc, section.home-footer .desc {
        padding: 0 20px !important;
    }
    
}
@media ( max-width: 375px ) {
    section.home-roadmap ul.roadmap-lists li.roadmap-list:nth-child(3):after {
        height: 570px !important;
        top: 6% !important;
    }
    section.home-roadmap li.roadmap-list:after {
        height: 575px !important;
    }
    section.home-roadmap ul.roadmap-lists li.roadmap-list:first-child:after {
        height: 705px !important;
    }
}
@media ( max-width: 320px ) {
    section.home-roadmap li {
        font-size: 17px;
    }
    section#collection .collections-imgs ul li:first-child, section#collection ul.image-lists li.list:nth-child(2), section#collection ul.image-lists li.list:nth-child(3), section#collection ul.image-lists li.list:nth-child(4), section#collection ul.image-lists li.list:nth-child(5), section#collection ul.image-lists li.list:nth-child(6), section#collection ul.image-lists li.list:nth-child(7), section#collection ul.image-lists li.list:nth-child(8) {
        height: 190px !important;
    }
    section#roadmap li.roadmap-list:nth-child(4):after {
        height: 120px !important;
        top: 35% !important;
    }
}

li.ticket-trait-list {
    margin: 0 0 35px;
}
.ticket-img {
    margin-bottom: 50px;
}
li.ticket-trait-list .title {
    text-align: -webkit-auto;
    margin-bottom: 10px;
}
/* THE TEAM */
section.the-team {
    background-color: #fff;
    transform: skewY(-7deg);
    position: relative;
    z-index: 2;
    margin-top: -5px;
}
section.the-team .container {
    transform: skewY(7deg);
}
section.the-team .title h3 {
    font-size: 45px;
}
section.the-team .title {
    text-align: center;
    margin-bottom: 60px;
}
section.the-team .wrapper-content {
    padding: 0 0 150px;
}
li.team-list .image {
    border: 1px solid;
    border-radius: 50%;
    padding: 20px;
    width: 75%;
    margin-right: auto;
    margin-left: auto;
}
li.team-list .position {
    font-size: 11px;
}
li.team-list {
    margin-bottom: 35px;
    text-align: center;
}
li.team-list .name {
    font-weight: 700;
    margin: 5px 0 0;
    font-size: 15px;
}
ul.team-lists {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}
.page-id-266 section.the-team {
    transform: skewY(7deg);
}
.page-id-266 section.the-team .container {
    transform: skewY(-7deg);
}
.vip-ticket-traits {
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
}
.traitlist-title {
    text-align: center;
    margin-bottom: 20px;
}
section.vip-nft {
    transform: skewY( -7deg );
    padding: 100px 0;
    background-color: #fff;
    margin-top: -120px;
}
section.vip-nft .container {
    transform: skewY(7deg);
    padding: 100px 0 25px;
}
.button img {
    width: 5%;
    padding-bottom: 7px;
    margin-right: 10px;
}
section#nft-trait .wrapper-content {
    padding-left: 0;
    padding-right: 0;
}
.buy-nft-now-btn {
    text-align: center;
    margin-bottom: 80px;
}
.page-id-292 .u-slct.nft-trt ul.nft-lists li:first-child,
.page-id-8 .u-slct.nft-trt ul.nft-lists li:last-child {
    display: none;
}
.u-slct.nft-trt li.list {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
}
.u-slct.nft-trt .nft-countdown .title {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 15px;
}
.u-slct.nft-trt li.list img {
    width: 85%;
}
.u-slct.nft-trt .wrapper-list-content {
    padding: 80px 0;
}
.u-slct.nft-trt.row {
    display: flex;
    align-items: center;
}
.usr-slct-content .image {
    margin-bottom: 15px;
}
.ticket-traits.col-lg-6 .title-1 {
    text-align: center;
    margin-bottom: 10px;
}
.email-capture {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 70px;
}
form#gform_1 div#gform_fields_1 input {
    padding: 15px;
    border-radius: 5px;
    border: 0;
    outline: 0;
}
input#gform_submit_button_1:hover {
    opacity: 0.7;
    cursor: pointer;
}
input#gform_submit_button_1 {
    background-color: #700207;
    padding: 20px 45px;
    color: #fff;
    border: 0;
    text-transform: uppercase;
    transition: 0.3s;
}
.footer-bottom-content .c-3 a {
    font-size: 16px;
}
form#gform_1 .gform_button {
    border-radius: 4px;
    background-size: 300%;
    transition: all 0.6s;
}
.gform_button:hover {
    color: #700207;
    background-position: 100%;
    transform: translateX(0.5rem);
  }
form#gform_1 .button {
    color: rgb(255, 255, 255);
    background-image: linear-gradient(90deg, #700207 50%, black 50%);
}
section.privacy-policy a,
.page-id-3 .c-3 a {
    color: #700207;
}
section.privacy-policy .wrapper-content {
    line-height: 2;
}
section.privacy-policy .wrapper-content p {
    margin-bottom: 10px;
}
section.privacy-policy .wrapper-content h3 {
    margin-top: 50px;
    margin-bottom: 10px;
}
section.privacy-policy {
    background-color: #fff;
    position: relative;
    z-index: 1;
    transform: skewY(7deg);
}
section.privacy-policy .container {
    transform: skewY(-7deg);
    padding: 50px 0 160px;
}
.c-3 a:hover {
    color: #700207;
}
.guest-title {
    text-transform: uppercase;
    margin-top: 10px;
}

section#virtual-fasion .image-1 {
    text-align: center;
}
.page-id-3 section.menu-default, .page-id-3 section.menu-sticky {
    display: none !important;
}
.page-id-3 section.inner-page-banner-error {
    padding: 70px 0 70px;
}