@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");


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

/* ------Scrollbar CSS Start----- */
/* Firefox */


/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: var(--white);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--yellow);
    border-radius: 5px;
    border: 0px;
}

/* ------Scrollbar CSS End----- */

/*--- Common Style Start---*/

:root {
    --black: #000;
    --dark: #0E0E0E;
    --white: #fff;
    --yellow: #E9A133;
    --lyellow: #F7D64A;
    --body-font: 'Outfit',
        sans-serif;
    --heading: 'Tangerine',
        cursive;
}

/*

font-family: 'Outfit',
sans-serif;
font-family: 'Tangerine',
cursive;

*/

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--body-font);
}

p {
    padding: 0;
    font-weight: 300;
}


p:last-of-type {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
    display: block;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2,
.heading {
    line-height: normal;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--heading);
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.bg-black {
    background: var(--dark);
}

/*--- Common Style End---*/

/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 70px 0;
}

.sec-space-bottom {
    padding: 0 0 70px;
}

.sec-space-top {
    padding: 70px 0 0;
}

/*- Bootstrap Form End -*/


/*-- Button Start --*/

.btn {
    border-radius: 0px;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: capitalize;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: var(--green);
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover {
    background: var(--green);
    color: var(--white);
    transition: all .4s;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    z-index: 9;
    text-transform: uppercase;
    position: relative;
    line-height: 38px;
    letter-spacing: .8px;
    font-weight: 200;
    padding: 0 15px;
}

.btn-outline:hover {
    color: var(--black);
    background: var(--white);
    border: 1px solid var(--white);
    line-height: 38px;
    font-weight: 400;
    letter-spacing: .7px;
    transition: all .2s;
}

.btn-outline-black {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    z-index: 9;
    text-transform: uppercase;
    position: relative;
    line-height: 38px;
    letter-spacing: .7px;
    font-weight: 400;
    padding: 0 17px;
}

.btn-outline-black:hover {
    color: var(--white);
    background: var(--black);
    line-height: 38px;
    font-weight: 200;
    letter-spacing: .8px;
    padding: 0 15px;
    transition: all .2s;
}

.btn-noline {
    color: var(--lyellow);
    font-size: 12px;
    font-weight: 300;
    margin-top: 20px;
    position: relative;
    letter-spacing: .7px;
    text-transform: uppercase;
    transition: all .3s;
}

.btn-noline:hover {
    color: var(--lyellow);
    transition: all .3s;
}

.btn-blur {
    background: transparent;
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    letter-spacing: .7px;
    padding: 0 20px;
    height: 44px;
    line-height: 42px;
    transition: all .4s;
}

.btn-blur:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-blur:hover::before {
    background: rgba(255, 255, 255, 1);
    transition: all .4s;
}

.btn-blur:hover {
    color: var(--black);
    transition: all .4s;
}



/*-- Button End --*/


/*--- TITLE Start---*/

.section-title h3 {
    font-size: 52px;
    line-height: 64px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    font-family: var(--heading);
}

.section-title h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

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


/*--- TITLE End---*/


/*--- Animation Header Start ---*/


@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

/*--- Animation Header End ---*/



/*----   HEADER  START  ----*/

.main-header {
    position: relative;
    width: 100%;
    /* z-index: 999; */
    background: var(--black);
}

.header-appear {
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--bluish);
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
}


.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0px;
    margin: 0;
}

.navbar-brand img {
    height: 70px;
    width: auto;
}

.navbar-collapse ul li {
    padding-right: 40px;
    position: relative;
}

.navbar-collapse ul.navbar-nav > li + li{
    margin-left: 10px;
}

.navbar-collapse ul li i {
    color: #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.navbar-collapse ul li:last-child {
    margin-right: 0px;
}

.navbar .navbar-collapse ul li>a {
    color: var(--white);
    padding: 15px 0 !important;
    font-size: 13px;
    font-weight: 200;
    position: relative;
    z-index: 9;    
    text-transform: uppercase;
}

.main-header.header-appear .navbar-collapse ul li>a {
    padding: 20px 0 !important;
}

.navbar-collapse ul li.active>a,
.navbar-collapse ul li:hover>a {
    color: var(--white);
}

/* .navbar-collapse ul li>a:before {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translate(-50%, -50%);
    background: var(--green);
    content: '';
    border-radius: 50%;
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
} */

.header-appear .navbar-collapse ul li>a:before {
    bottom: 25px;
}

.navbar-collapse ul li.active>a:before,
.navbar-collapse ul li:hover>a:before {
    height: 1px;
    width: 100%;
    z-index: -1;
    transition: all .4s;
}

.navbar-collapse ul li>ul.dropdown-menu li{
    margin-right: 0;
}
.navbar-collapse ul li>ul.dropdown-menu li a{
    letter-spacing: 1px;
}
.navbar-collapse .dropdown-item:focus, .dropdown-item:hover{
    background-color: #1c1c1c;
}

/* .navbar-collapse ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all .4s;
} */
/* .navbar-collapse ul li>ul {
    position: absolute;
    min-width: 250px;
    z-index: 99;
    background: #000;
    top: 100%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s;
    z-index: 99;
    margin: 0;
} */

.navbar .navbar-collapse ul li>ul>li>a {
    display: inline-block;
    padding: 5px 10px !important;
}

@media screen and (min-width:992px){
    .navbar .navbar-collapse ul.sub-menu{
        position: absolute;
        top: 100%; 
        visibility: hidden;
        opacity: 0;
        transition: all 300ms ease-in-out;
        min-width: 250px;
        transform: translateY(30px);
        margin: 0;
        background: #000;
        z-index: 99;
    }
    .navbar .navbar-collapse li:hover ul.sub-menu{
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        transition: all .4s;
    } 
}




.top-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    min-height: 82px;
    position: relative;
}
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}
.social-media ul,
.account-bar ul {
    display: flex;
    list-style: none;
}

.social-media ul li,
.account-bar ul li {
    margin-right: 15px;
}

.social-media ul li:last-child,
.account-bar ul li:last-child {
    margin-right: 0px;
}

.social-media ul li a {
    color: var(--white);
    font-size: 16px;
}

.account-bar ul li a img {
    width: 18px;
}
.account-bar {
    display: flex;
    align-items: center;
}


/*---   HEADER END   ---*/



/*---   BANNER START   ---*/
.intro-home {
    height: 650px;
    position: relative;
}

.intro-btn {
    position: absolute;
    left: 50%;
    bottom: 120px;
    transform: translate(-50%, 50%);
    width: fit-content;
    height: fit-content;
}

.intro-home video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



/*---   BANNER END   ---*/


/*--- Product Range Home Start ---*/

.product-range .row {
    row-gap: 20px;
}

.product-detail {
    color: var(--white);
    padding: 10px 0;
    text-align: center;
}

.product-detail p {
    font-weight: 300;
    padding-bottom: 3px;
    font-size: 14px;
    overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.product-detail h6 {
    font-weight: 300;
    font-size: 14px;
}

.pr-cart {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.pr-cart img {
    width: 18px;
    height: 16px;
}
.product-box{
    display: block;
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    object-fit: cover;
    height: 100%;
}

.product-range .container-fluid {
    padding: 0px;
}

.special-product {
    padding-bottom: 30px;
    position: relative;
}

.sp-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.sp-image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 500px;
}

.sp-details {
    text-align: center;
    position: absolute;
    bottom: -20px;
    padding: 50px 40px 50px 40px;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 72%) 20%, rgba(0, 0, 0, 0.9220063025210083) 40%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
}

.sp-details h5,
.sp-details p {
    color: var(--white);
}

.sp-details h5 {
    font-family: var(--heading);
    font-size: 40px;
}

.sp-details p {
    font-weight: 200;
    line-height: 18px;
    font-size: 13px;
}

.btn-buy {
    height: 36px;
    line-height: 36px;
    padding: 0 25px;
    margin-top: 25px;
}


/*--- Product Range Home End ---*/

/*--- Artifact Area Start ---*/

.artifact-area {
    background: url(../images/artifact-bg.png) no-repeat center;
    background-size: cover;
    position: relative;
}

.artifact-area .section-title {
    margin-bottom: 10px;
}


.artifact-content ul {
    list-style: none;
}

.artifact-content ul li {
    color: var(--white);
    padding-bottom: 15px;
    position: relative;
    width: fit-content;
    margin: 0 auto 10px;
    font-weight: 300;
}

.artifact-content ul li:before {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateY(-50%);
    content: '';
    background: var(--white);
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.artifact-content ul li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.artifact-content ul li:last-child::before {
    display: none;
}

.artifact-content .btn {
    margin-top: 40px;
}

/*--- Artifact Area End ---*/

/*--- Artist Home Start ---*/

.artist-area {
    position: relative;
    background: url(../images/artist-bg.png) no-repeat center;
    background-size: cover;
}

.artist-content h3 {
    font-family: var(--heading);
    font-size: 40px;
    margin-bottom: 20px;
}

.artist-content p {
    color: #9E9E9E;
    font-size: 13px;
    line-height: 20px;
}

.artist-image {
    height: 500px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 150px;
}


/*---- Artist Home End ----*/



/*--- Instagram Feed Home Start ---*/

.instagram-feed .container-fluid {
    padding: 0px;
}

.single-feed {
    position: relative;
    height: 200px;
    display: block;
    transition: all .3s;
}

.single-feed img {
    object-fit: cover;
}

.btn-feed {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s;
}

.single-feed:hover .btn-feed {
    top: 50%;
    opacity: 1;
    transition: all .3s;
}

.btn-feed img {
    width: 18px;
    height: 18px;
}



/*--- Instagram Feed Home End ---*/


/*--- Home Blog Start ---*/

.blog-home {
    position: relative;
    padding: 40px 0 150px;
}

.blog-content {
    padding: 15px 0;
}

.blog-content h6 {
    font-size: 14px;
    font-weight: 300;
    color: #9E9E9E;
    margin-bottom: 4px;
    line-height: 20px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content .blog-date {
    font-size: 20px;
    font-family: var(--heading);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 5px;
}

.blog-content .btn-noline {
    margin-top: 10px;
}

.bh-wrap {
    position: relative;
    padding-left: 50%;
    min-height: 420px;
}

.bh-wrap .blog-box .blog-image {
    height: 90px;
}

.blog-image img {
    object-fit: cover;
}

.bh-wrap .blog-box:nth-child(1) .blog-image {
    height: 280px;
    width: 100%;
}

.bh-wrap .blog-box:not(:nth-child(1)) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #303030;
}

.bh-wrap .blog-box:last-child {
    border: 0px;
}

.bh-wrap .blog-box:not(:nth-child(1)) .blog-image {
    flex: 0 0 140px;
    order: 2;
}

.bh-wrap .blog-box:not(:nth-child(1)) .blog-content {
    flex: 0 0 calc(100% - 170px);
    order: 1;
}

.bh-wrap .blog-box:not(:nth-child(1)) .blog-content .btn-noline {
    margin-top: 7px;
}


.bh-wrap .blog-box:nth-child(1) .blog-content {
    padding: 15px;
    background: var(--black);
}

.bh-wrap .blog-box:nth-child(1) {
    width: 45%;
    position: absolute;
    top: 0;
    left: 0;
}


/*--- Home Blog End ---*/


/*--  Footer Start  --*/

.footer-main {
    background: var(--black);
    padding: 30px 0 30px;
}

.footer-link-wrapper {
    padding: 50px 0 0;
}

.ft-logo a {
    margin-bottom: 25px;
}

.ft-logo a img {
    width: auto;
    height: 55px;
}

.ftl-text {
    color: #9E9E9E;
    font-weight: 300;
    font-size: 14px;
}
.ftl-text.text-right {
    margin-top: 50px !important;
}

.ftl-text a {
    font-family: var(--heading);
    font-size: 26px;
    display: inline-block;
    color: var(--white);
    margin-right: 6px;
}

.quick-link-box ul {
    list-style: none;
}

.quick-link-box ul li {
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.quick-link-box ul li a {
    color: var(--white);
    font-weight: 200;
    font-size: 12px;
}



.footer-main .row [class*="col-"] {
    position: relative;
}

.ft-newsletter {
    width: 100%;
    margin-top: -120px;
}



/*--  Footer End  --*/