@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
:root {
    /* Font */
    --primary_font: 'Inter', sans-serif;
    --secondary_font: 'DM Sans', sans-serif;
    --auxilary_font: 'Mulish', sans-serif;
    /* Color */
    --primary_color: #191F2E;
    --secondary_color: #FCFBFE;
    --accent_color: #FF575E;
    --gradient_colors: linear-gradient(135deg,  #32ebfc 0%,#ac30ff 49%,#89ffc6 100%);
}


/* Preloader CSS */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary_color);
    z-index: 9999;
    transition: opacity 2.5s ease;
    opacity: 1;
}
.preloader.hide {
    opacity: 0;
    pointer-events: none;
}
.preloader img {
    max-width: 120px;
    max-height: 50px;
}
/* Preloader CSS */

/* Global Style Start */
body {
    overflow-x: hidden;
}
section {
    padding: 100px 0px;
}
h2,h3,h4,h5,h6 {
    color: var(--secondary_color);
}
img {
    object-fit: cover;
}
.d2c_title {
    font-family: var(--primary_font);
    font-weight: 700;
    font-size: 36px;
    text-transform: capitalize;
    color: var(--accent_color);
    margin-bottom: 0;
}
p {
    font-family: var(--secondary_font);
    font-weight: 400;
    font-size: 16px;
    color: var(--secondary_color);
    margin: 0;
    margin-bottom:1em;
}
a {
    text-decoration: none;
}

ol, ul
{
    color: var(--secondary_color);
}

table
{
margin-bottom: 1.5em;
}

table th
{
    color: var(--accent_color);
    padding:0.5em;
    background-color: #3a2128;
    border-bottom: 1px solid gray;
}

table td
{
    padding:0.5em;
    color: var(--secondary_color);
}
.d2c_btn {
    font-family: var(--secondary_font);
    font-weight: 700;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--secondary_color);
    background: var(--accent_color);
    border: 1px solid var(--accent_color);
    border-radius: 8px;
    padding: 10px 32px 9px;
    display: inline-block;
    transition: all ease 0.4s;
}
.d2c_btn:hover {
    color: var(--secondary_color);
    background: transparent;
    border: 1px solid var(--accent_color);
    transition: all ease 0.4s;
}
.d2c_btn:active {
    color: var(--secondary_color);
    border: 1px solid var(--accent_color);
}
.d2c_card {
    background: rgba(252, 251, 254, 0.04);
    border-radius: 8px;
    height: 100%;
}
.d2c_card_body {
    padding: 20px 20px;
}
.d2c_card_title {
    padding: 20px 20px;
    font-family: var(--primary_font);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--secondary_color);
}

.d2c_card_title h3
{
    font-size: 1.5em;
}

.d2c_card_title a
{
    color: var(--secondary_color);
}

.d2c_global_content::before {
    content: '';
    width: 4px;
    height: 100%;
    background: var(--accent_color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}
.form-control {
    border-radius: 8px;
    border: 1px solid rgba(255, 87, 94, 0.20);
    background: rgba(255, 87, 94, 0.02);
    padding: 15px !important;
}
hr {
    margin-top: 50px;
    border: 1px solid rgb(255 87 94 / 25%);
    margin-bottom: 0px;
}

article img
{
width:100%}

article table
{
width: 80%;
margin-left:auto;
margin-right:auto;
margin-top: 1em;
margin-bottom: 1em;
}

/* Global Style End */

section.fancybutton
{
    padding: 20px 0;

}

section.fancybutton .btn
{
    border-radius: 8px;
    background: var(--accent_color);
    padding: 15px !important;
	box-shadow: 0px 4px 0px 3px #a73337;
	
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	text-decoration:none;
    min-width: 150px
}
section.fancybutton .btn:hover {
	background-color:#f24437;
}
section.fancybutton .btn:active {
	position:relative;
	top:1px;
}



/* Navbar start */
.navbar-brand {
    max-width: 113px;
}
.d2c_navbar {
    padding: 0.625rem 0rem;
    background: #161830;
}
.d2c_navbar .navbar-nav .nav-item {
    margin: 0px 21px;
    display: flex;
    align-items: center;
}
.d2c_navbar .navbar-nav .nav-item .d2c_btn.active {
    color: var(--secondary_color);
    background: transparent;
    border: 1px solid var(--accent_color);
    transition: all ease 0.4s;
}
.d2c_navbar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}
.d2c_navbar .navbar-nav .nav-link {
    color: var(--secondary_color);
    font-family: var(--primary_font);
    font-weight: 500;
    font-size: 18px;
    transition: .4s all ease;
    padding: 7px 0px 7px 0px;
    position: relative;
}
.d2c_navbar .navbar-nav .nav-link:hover {
    color: var(--accent_color);
    transition: .4s all ease;
}
.d2c_navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    background: var(--accent_color);
    transition: .4s all ease;
}
.d2c_navbar .navbar-nav .nav-link:hover::after {
    opacity: 1;
    width: 100%;
    transition: .4s all ease;
}
.d2c_nav_right .nav-link::after {
    display: none;
}
/* Nav Item Show from Side */
body .d2c_mobile_view {
    position: fixed;
    height: 100vh;
    inset: 0;
    opacity: 1;
}
.navbar.d2c_mobile_view_body .navbar-nav {
    width: 100%;
}
.navbar.d2c_mobile_view_body .nav-item {
    margin-right: 0;
}
.d2c_mobile_view .show_width {
    max-width: 14.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px;
    top: 0;
    transition: 0.5s;
    padding: 20px 15px;
    background-color: var(--primary_color);
    overflow: scroll;
    z-index: 9999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.d2c_mobile_view.show .show_width {
    right: 0;
    transition: 0.5s;
}
.hide_width{
    max-width: 15.625rem;
    width: 100%;
    height: 100vh;
    position: absolute;
    right: -380px !important;
    top: 0;
    transition: 0.5s !important;
    padding: 20px 15px;
    background-color: #D9F0F3;
    overflow: scroll;
    z-index: 9999;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler {
    border: 1px solid #ff575d25;
    color: var(--secondary_color);
    padding: 5px 10px;
    width: 44px;
    margin-left: 15px;
    transition: .4s all ease;
}
.navbar-toggler:hover {
    background: var(--primary_color);
    transition: .4s all ease;
}
.d2c_cross_btn {
    width: auto;
    border: none;
}
@media only screen and (min-width:991px) {
    body .d2c_mobile_view {
        opacity: 0;
        transition: .5s;
    }
}
.navbar-nav .d2c_btn.active {
    border: 0.063rem solid var(--accent_color);
}
.navbar-nav .d2c_btn.active::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    color: var(--secondary_color);
    z-index: -1;
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--accent_color) !important;
}
.navbar-nav .nav-link.active::after {
    opacity: 1;
    width: 100%;
    transition: .4s all ease;
}
/* Navbar end */

/* Breadcrumbs */
.breadcrumb a
{color: var(--accent_color)}
/* End of Breadcrumbs */


/* Hero Section Start */
.d2c_hero_wrapper {
    background-image: linear-gradient(180deg, rgba(25, 31, 46, 0.35) -166.85%, #191F2E 100%), url(../images/main-cover-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
h1 {

    font-family: "Lexend Deca", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 48px;
    line-height: 110%;
    text-transform: capitalize;
    margin-bottom: 33px;
    background: var(--gradient_colors);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 6px #ac30ff88;
}
.d2c_stoke_text {
    font-family: var(--auxilary_font) !important;
    color: var(--secondary_color);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--secondary_color);
    background: var(--accent_color);
    border-radius: 8px;
    padding: 0px 18px 6px;
}
.d2c_hero_wrapper p {
    margin-bottom: 35px;
    color: rgb(201 201 201);
}
.d2c_hero_wrapper img {
    // Height: 308px;
    border-radius: 8px;
}
.d2c_hero_btn {
    margin-left: 15px;
    background: transparent;
    transition: all ease 0.4s;
}
.d2c_hero_btn:hover {
    background: var(--accent_color);
    transition: all ease 0.4s;
}
/* Hero Section End */

/* Partner Section Satrt */
.d2c_partner_wrapper {
    padding: 10px 0px!important;
    background: var(--primary_color);
    overflow-x: hidden;
}
.d2c_partner_img_box {
    border-radius: 4px;
    background: rgba(252, 251, 254, 0.03);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.3;
}
.d2c_partner_img_box img {
    padding: 20px 35px;
    max-width: 307px;
    max-height: 67px;
    filter: grayscale(1) brightness(1.5);
}
.d2c_partner_wrapper .slick-slide {
    padding: 0 15px;
    margin:  12px;
}
/* Partner Section Satrt */

/* About Section Start */
.d2c_about_wrapper {
    padding: 20px 0px;
    background: var(--primary_color);
}
.d2c_about_img_wrapper {
    height: 275px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.d2c_about_img {
    transform: scale(1.0);
    transition: all ease 0.4s;
}
.d2c_about_wrapper .d2c_card:hover .d2c_about_img {
    transform: scale(1.1);
    transition: all ease 0.4s;
}

.d2c_author_description
{
    color:#D9F0F3
}

.d2c_author_description img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
}
.d2c_author_description h6 {
    font-family: var(--primary_font);
    font-weight: 500;
    font-size: 14px;
    display: inline;
    margin-left: 15px;
}
.d2c_btn_two {
    font-weight: 500;
    font-size: 12px;
    padding: 5px 16px;
    margin-right: 0;
    border-radius: 8px;
}
.d2c_divider {
    margin-bottom: 31px;
}
.d2c_divider::after {
    content: '';
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: -16px;
    left: 0;
}
.d2c_muted_text {
    font-family: var(--primary_font);
    font-weight: 500;
    font-size: 14px;
    color: rgba(252, 251, 254, 0.5);
}
.d2c_card_content {
    font-weight: 400;
    font-size: 14px;
}
/* About Section End */

/* Post Section Start */
.d2c_post_wrapper {
    padding: 20px 0px;
    background: var(--primary_color);
}

.d2c_post_wrapper header
{
    margin-bottom:0.5em;
}
.d2c_post_wrapper figure{
    border-radius: 18px;
    overflow: hidden;
}
.d2c_post_wrapper figure img{width: 100%;}

/* Post Section End */

/* Portfolio Section Start */
.d2c_portfolio_wrapper {
    background: #242230;
}
.d2c_portfolio_card {
    background: #2F2D3A;
    border-radius: 8px;
}
.d2c_portfolio_card img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
}
.d2c_portfolio_card h3 {
    margin-bottom: 12px;
}
.d2c_card_content span {
    color: var(--accent_color);
}
/* Portfolio Section End */

.pager
{
    padding: 0px;
    background: var(--primary_color);
}

.pager nav
{
    display: flex;
}
ul.pagination
{   
    display: flex;
    margin-left: auto;
    margin-right: auto;
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #fff;
    --bs-pagination-bg: transparent;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: var(--accent_color);
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: #fff;
    --bs-pagination-hover-bg: var(--accent_color);
    --bs-pagination-hover-border-color: var(--accent_color);
    --bs-pagination-focus-color: #fff;
    --bs-pagination-focus-bg: var(--accent_color);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--accent_color);
    --bs-pagination-active-border-color: var(--accent_color);
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: transparent;
    --bs-pagination-disabled-border-color: var(--accent_color);
}

ul.pagination li
{

}

/* NFT Section Start */
.d2c_nft_wrapper {
    background: var(--primary_color);
}
.d2c_nft_card {
    padding: 40px 40px;
}
.d2c_nft_img_wrapper {
    height: 377px;
    border-radius: 8px;
}
.d2c_nft_img_wrapper img {
    border-radius: 8px;
}
.d2c_nft_btn {
    font-family: var(--primary_font);
    font-weight: 500;
    font-size: 10px;
    text-transform: capitalize;
    color: var(--secondary_color);
    background: var(--primary_color);
    padding: 7px 15px;
    border: 1px solid var(--primary_color);
    border-radius: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all ease 0.4s;
}
.d2c_nft_btn:hover {
    color: var(--secondary_color);
    transition: all ease 0.4s;
}
.d2c_countdown_wrapper {
    position: absolute;
    left: 0;
    bottom: -50px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.d2c_countdown_wrapper ul {
    padding: 0 3px 0 4px;
    margin-bottom: 0;
}
.d2c_countdown_wrapper li {
    display: inline-block;
    list-style-type: none;
    font-family: var(--secondary_font);
    font-weight: 400;
    font-size: 14px;
    color: var(--secondary_color);
    padding: 0 3px;
    text-align: center;
}
.d2c_countdown_wrapper li span {
    display: block;
    background: var(--accent_color);
    text-align: center;
    font-family: var(--primary_font);
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary_color);
    padding: 10px 15px;
    margin-bottom: 5px;
}
.d2c_nft_card_body {
    margin-top: 62px;
}
/* NFT Section End */

/* Collection Section Start */
.d2c_collection_wrapper {
    background: #242230;
}
.d2c_collection_img_wrapper {
    height: 275px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.d2c_collection_img {
    transform: scale(1.0);
    transition: all ease 0.4s;
}
.d2c_collection_wrapper .d2c_card:hover .d2c_collection_img {
    transform: scale(1.1);
    transition: all ease 0.4s;
}
.d2c_collection_card {
    margin-bottom: 42px;
}
.d2c_collection_card::after {
    content: '';
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: -21px;
    left: 0;
}
.d2c_collection_info {
    font-family: var(--primary_font);
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary_color);
}
/* Collection Section End */

/* Team Section Start */
.d2c_team_wrapper {
    background: var(--primary_color);
}
.d2c_team_card img {
    height: 367px;
    filter: drop-shadow(0px 5px 22px rgba(0, 0, 0, 0.05));
    border-radius: 8px;
    margin-bottom: 40px;
}
.d2c_team_title {
    font-family: var(--auxilary_font);
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    color: var(--accent_color);
    margin-bottom: 10px;
}
.d2c_team_content {
    font-family: var(--auxilary_font);
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: var(--secondary_color);
    margin-bottom: 0px;
}
.d2c_team_wrapper .slick-slide {
    margin:  0px 12px;
}
/* Team Section Start */

/* Service Section Start */
.d2c_service_wrapper {
    background: #242230;
}
.d2c_service_card {
    height: 100%;
    background: linear-gradient(137deg, rgb(129 58 68 / 32%) 0%, rgb(28 34 47) 100%);
    border: 20px solid var(--primary_color);
    padding: 30px 24px;
    border-radius: 10px;
}
.d2c_service_icon_wrapper {
    width: 94px;
    height: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 30px;
    position: relative;
}
.d2c_service_img {
    width: 100%;
    height: 100%;
    animation: rotation 2s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.d2c_service_card i {
    font-size: 50px;
    color: var(--accent_color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.d2c_service_card_content {
    color: var(--secondary_color);
    text-align: center;
    font-family: var(--auxilary_font);
    font-size: 16px;
    font-weight: 400;
}
/* Service Section End */

/* Contact Section Start */
.d2c_contact_wrappper {
    background: var(--primary_color);
    background-image: url(../images/contact_bg.png);
    background-repeat: no-repeat;
    background-position: bottom, center;
    background-size: auto;
}
.form-label {
    color: var(--secondary_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 600;
}
.d2c_contact_wrappper .form-control {
    margin-bottom: 30px;
}
.form-control:focus {
    box-shadow: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 87, 94, 0.20);
    background: rgba(255, 87, 94, 0.02);
    color: var(--secondary_color);
}
.d2c_contact_wrappper .form-control::placeholder {
    color: rgba(252, 251, 254, 0.50);
    font-family: var(--primary_font);
    font-size: 14px;
    font-weight: 500;
}
textarea {
    margin-bottom: 40px !important;
}
.d2c_contact_wrappper .d2c_btn:active {
    color: var(--secondary_color);
    border: 1px solid var(--accent_color);
}
/* Contact Section End */

/* Newsletter Section Start */
.d2c_newsletter_wrapper {
    padding: 50px 0px 0px;
    background: #101622;
}
/* Newsletter Section End */

/* Footer Section Start */
.d2c_footer_wrapper {
    padding: 50px 0px 0px;
    background: #101622;
}
.d2c_footer_logo {
    max-width: 166px;
}
.d2c_footer_wrapper .list-group {
    width: 100%;
    border-radius: 0;
}
.list-group-item {
    background: transparent;
    border: 0;
}
.list-group-item a {
    color: var(--accent_color);
    font-family: var(--primary_font);
    font-size: 18px;
    font-weight: 600;
    padding: 0px 3px !important;
    transition: all ease 0.4s;
}
.list-group-item a:hover {
    color: var(--secondary_color);
    transition: all ease 0.4s;
}
.d2c_social_icon a {
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(255, 87, 94, 0.10);
    color: var(--accent_color);
}
.d2c_social_icon a:hover {
    background: var(--accent_color);
    color: var(--secondary_color);
}
.d2c_social_icon a i {
    
    font-size: 16px;
}
.d2c_social_icon {
    padding-right: 0px !important;
}
/* Footer Section End */

/* Copy Right Section Start */
.d2c_copyright_wrapper {
    padding: 30px 0px;
    background: #101622;
}
.d2c_copyright_wrapper p {
    color: #A0A3A8;
}
.d2c_copyright_wrapper p a {
    color: var(--accent_color);
    transition: all ease 0.4s;
}
.d2c_copyright_wrapper p a:hover {
    color: var(--secondary_color);
    transition: all ease 0.4s;
}
/* Copy Right Section End */

/* Scroll Button Start */
#scrollBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#scrollBtn.show {
    display: block;
}
#scrollBtn a i {
    background: var(--primary_color);
    box-shadow: 0 0 20px rgb(0 0 0 / 15%);
    font-size: 20px;
    color: var(--accent_color);
    border-radius: 4px;
    width: 35px;
    height: 35px;
    position: fixed;
    z-index: 9999;
    bottom: 3%;
    right: 5%;
    transition: all ease 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent_color);
}
#scrollBtn a i:hover {
    color: var(--secondary_color);
    background: var(--accent_color);
    border: 2px solid var(--accent_color);
    transition: all ease 0.4s;
}
/* Scroll Button End */


/*
    Template Name: {{Dimigistics}}
    Template URL: {{https://www.designtocodes.com/product/dimigistics-nft-one-page-bootstrap-website-template}}
    Description: {{Make your NFT project stand out with Dimigistics – a modern One Page Bootstrap template. It's designed to help you display your digital assets online in a stylish way. Dimigistics is easy to use and lets you create a great-looking website for your NFT collection without any technical skills.}}
    Author: DesignToCodes
    Author URL: https://www.designtocodes.com
    Text Domain: {{ Dimigistics }}
*/