/*Main Css */
:root {--theme-color:#9b9bff;}
::selection {
    background: #262626;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #262626;
}


/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}


/* Accordion CSS */

.myaccordion li .faq-opt {
    display: none;
}

.myaccordion li.active .faq-opt {
    display: block;
}

.myaccordion li.active .faq-ang h4:before {
    content: "\f077";
}

body {
    font-family: "Roboto";
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #000000;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: normal;
    font-family: 'Anton', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
}

a:hover {
    color: #262626;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    background: transparent;
    border: none;
    border-radius: 0px;
    font-family: "Roboto";
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}


/* Padding Classes */

.pad-sec {}

.pad-zero {
    padding: 0px;
}

.pad-l-zero {
    padding-left: 0px;
}

.pad-r-zero {
    padding-right: 0px;
}

.ovr-hiddn {
    overflow: hidden;
}

.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.overlay {
    display: none;
}

.overlay.active {
    display: block;
}


/* Heading Classes */

.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}

.hding-2 h2 {}

.hding-3 h3 {}

.hding-4 h4 {}

.hding-5 h5 {}

.hding-6 h6 {}

.para {}

.highlighted {
    color: #00a3ff;
}


/* Custom Slick Css */

.slick-list {
    margin: 0 -15px;
}

.slick-slide {
    margin: 0 15px;
}

.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 20px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}

.slick-dots li button {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    padding: 0px;
    background: #d6d6d6;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}

.slick-dots li.slick-active button {
    background: #f3c919;
    width: 11px;
    height: 11px;
}

.menu-Bar {
    display: none;
}
/*header css*/

header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    padding: 0 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.stickyOpen {
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--theme-color);
    padding: 0 0;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.main-header {}

.logo {
    display: inline-block;
}

.logo img {
    display: block;
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 25px;
    text-align: left;
    color: #262626;
}




/* Menu Css */

.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}

.menu li {
    display: inline-block;
    vertical-align: middle;
    padding-right: 28px;
}

.menu li a {
    display: block;
    font-size: 16px;
    color: #262626;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Anton', sans-serif;
}

.menu li:hover a,
.menu li.active a {
    color: #262626;
}


/* Menu Dropdown CSS */

.dropdown-nav {
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.dropdown-nav:hover {
    overflow: visible;
}

ul.dropdown {
    position: absolute;
    width: 100%;
    left: -0px;
    margin: auto;
    background: #fff;
    padding: 20px;
    text-align: left;
    border-radius: 2px;
    box-shadow: 0 0 10px 3px #00000014;
    opacity: 0;
    animation: btotreverse 0.5s forwards;
}

ul.dropdown li {
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

ul.dropdown li a {
    padding: 0;
    font-size: 14px;
    color: #000 !important;
    display: block;
    width: 100%;
    margin: 0px 0 15px;
    text-align: center;
    font-weight: 600;
    background: transparent !important;
}

ul.dropdown li.last a {
    margin-bottom: 0px;
}

ul.dropdown li a:hover {
    color: #000 !important;
}

.dropdown-nav:hover ul.dropdown {
    animation: btot 0.5s forwards;
    z-index: 9;
}


/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }

    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }

    100% {
        top: 40px;
        opacity: 1;
    }
}

.meun-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
/* Main Banner CSS */

.mainBanner {
    position: relative;
    padding-top: 14rem;
    padding-bottom: 5rem;
}
.widget .logo {
    max-width: 181px;
}
.round-img-h {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.search-input input {
    width: 100%;
    height: 45px;
    border-radius: 55px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
    padding: 0 30px;
    border: 1px solid #fff;
}

.search-input {
    border-radius: 55px;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(94deg, #fff 0%, rgba(255, 255, 255, 0.1) 100%);
    border-image-slice: 1;
    background-image: linear-gradient(95deg, rgba(255, 255, 255, 0.4) 11%, rgba(255, 255, 255, 0.1) 100%), linear-gradient(94deg, #fff 0%, rgba(255, 255, 255, 0.1) 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.search-input input::placeholder {
    color: #262626;
}

.banner-content {
    position: relative;
}

.banner-content h3 {
    transform: rotate(-90deg);
    font-size: 20px;
    line-height: 0.95;
    letter-spacing: 26.43px;
    text-align: left;
    color: #262626;
    text-transform: uppercase;
    position: absolute;
    left: -30px;
    transform-origin: 0 0;
    top: 56%;
}

.banner-content h1 {
    font-size: 6rem;
    line-height: 0.96;
    text-align: left;
    color: #262626;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.56;
    text-align: left;
    color: #262626;
    padding: 33px 0;
    width: 495.3px;
    max-width: 100%;
}

.theme-btn {
    width: 170px;
    height: 56px;
    border-radius: 55px;
    background-color: #ba8e3f;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.theme-btn:hover {
    box-shadow: inset -170px 0 0 #FFCD70, inset 170px 0 0 #FFCD70;
    color: #262626;
}

.banner-slider-content h3 {
    font-size: 21px;
    line-height: 1.19;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    padding: 36px 0 14px;
}

.banner-slider-content p {
    font-size: 12px;
    line-height: 1.67;
    text-align: left;
    color: #fff;
}

.banner-slider span.arr-left.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #262626;
    border-radius: 50%;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.5s;
}

.banner-slider span.arr-left.slick-arrow i {
    font-size: 15px;
    color: #262626;
}

.banner-slider span.arr-left.slick-arrow:hover {
    background: #262626;
}

.banner-slider span.arr-left.slick-arrow:hover i {
    color: #fff;
}

.banner-slider span.arr-right.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #262626;
    border-radius: 50%;
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.5s;
}

.banner-slider span.arr-right.slick-arrow i {
    font-size: 15px;
    color: #262626;
}

.banner-slider span.arr-right.slick-arrow:hover {
    background: #262626;
}

.banner-slider span.arr-right.slick-arrow:hover i {
    color: #fff;
}

.b-s-img img {
      object-position: top center;
    width: 100%;
    height: 467px;
    object-fit: fill;
}

.stripe-line a {
    width: 100%;
    height: 5px;
    background: #fff;
    margin-top: 16px;
    position: relative;
}

.stripe-line a::after {
    content: '';
    position: absolute;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #3716ff;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 20px;
}

.user-icon a i {
    color: #262626;
    font-size: 16px;
    vertical-align: middle;
}

/*.user-icon {*/
/*    margin-right: 20px;*/
/*}*/

section.recent-drops-sec {
    padding: 76px 0 249px;
    position: relative;
    z-index: 2;
}

section.recent-drops-sec::after {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    width: 100%;
    height: 100%;
    border: solid 300.8px var(--theme-color);
    border-radius: 100%;
    z-index: -1;
}

.recent-h h2 {
    font-size: 4.5rem;
    line-height: 1.25;
    text-align: left;
    color: #262626;
}

.recent-p p {
    font-size: 16px;
    line-height: 1.56;
    text-align: left;
    color: #262626;
    width: 532.2px;
    max-width: 100%;
}

.recent-drop-box {}

.recent-drop-img {
    font-size: 0;
}

.recent-drop-content {
    padding: 23px 29px 30px 30px;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    border-image-source: linear-gradient(109deg, #fff 1%, rgba(255, 255, 255, 0.1) 101%);
    border-image-slice: 1;
    background-image: linear-gradient(111deg, rgba(255, 255, 255, 0.4) 10%, rgba(255, 255, 255, 0.1) 100%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: none;
}

.recent-drop-details h4 {
    font-size: 21px;
    line-height: 1.19;
    text-align: left;
    color: #262626;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.recent-c-about p {
    font-size: 11px;
    line-height: 1.67;
    text-align: left;
    color: #262626;
    font-weight: bold;
}

.recent-drop-box {
    margin-top: 41px;
}

.dicover-sec {
    padding: 84px 0 57px;
}

.theme-btn i {
    font-size: 16px;
    color: #fff;
    padding-left: 11px;
}

/*.discover-mar-t {*/
/*    margin-top: -4em;*/
/*}*/

.discover-mar-b {
    margin-bottom: 4em;
}

.discover-img {
    position: relative;
    transition: 0.4s ease-in-out;
}

.discover-main:hover .discover-img {
    box-shadow: 0 44px 54px 0 rgba(38, 38, 38, 0.5);
}

.discover-main:hover .play-btn {
    opacity: 1;
    visibility: visible;
}

.play-btn {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
}

.play-btn a{
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 24px 24px 0 #060410;
}

.play-btn a i {
    font-size: 14px;
    color: #262626;
}

.dicover-images-r {
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

/* .dicover-images-r::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 103px;
    background: #3716ff;
    padding: 0;
    z-index: -1;
}

.dicover-images-r::before {
    content: '';
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 103px;
    background: #3716ff;
    padding: 0;
    z-index: -1;
}

.dicover-images-r-2 {
    padding-top: 57px;
    position: relative;
    z-index: 2;
}

.dicover-images-r-2::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 103px;
    background: #3716ff;
    padding: 0;
    z-index: -1;
}

.dicover-images-r-2::before {
    content: '';
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    height: 103px;
    background: #3716ff;
    padding: 0;
    z-index: -1;
} */

.discover-img img {
    width: 100%;
    display: block;
    height: 428px;
    object-fit: fill;
}

section.dicover-img-sec {
    position: relative;
    z-index: 2;
    padding: 46px 40px 0;
}

.dicover-stripes-img div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 103px;
    background: var(--theme-color);
}

.dicover-stripes-img div:nth-child(2) {
    top: 15%;
}

.dicover-stripes-img div:nth-child(3) {
    top: 35%;
}

.dicover-stripes-img div:nth-child(4) {
    top: 50%;
}

.dicover-stripes-img div:nth-child(5) {
    top: 70%;
}

.dicover-stripes-img div:nth-child(6) {
    top: 90%;
}

.dicover-stripes-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* section.dicover-img-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #3716ff;
    z-index: -1;
    margin-top: -6em;
}

section.dicover-img-sec::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 103px;
    background: #3716ff;
    z-index: -1;
    margin-bottom: -2em;
} */

.trending-sec {
    padding: 120px 0 114px;
}

.view-all a {
    font-family: 'Anton', sans-serif;
    font-size: 21px;
    line-height: 1.19;
    text-align: left;
    color: #262626;
    text-transform: uppercase;
    height: 100%;
}

.view-all a i {
    font-size: 26px;
    color: #262626;
    padding-left: 10px;
    vertical-align: middle;
}

.view-all a:hover {
    letter-spacing: 1px;
}

.view-all {
    position: relative;
    z-index: 2;
}

.view-all-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trending-r-d {
    padding-top: 98px;
}

.trending-h p {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.43;
    text-align: left;
    color: #262626;
}

.treding-f-s-row {
    padding-top: 54px;
    position: relative;
    z-index: 2;
}

.trending-category-content {
    display: flex;
    align-items: center;
}

.t-cat-c-sn p {
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
    padding-right: 25px;
}

.t-cat-c-img img {
    width: 82px;
}

.t-cat-c-name p {
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
    padding-left: 25px;
}

.trending-f-price p {
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
}

.treding-f-s-row::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 230%;
    height: 25px;
    background: var(--theme-color);
    transform: translate(-50%, 50%);
    z-index: -2;
}

.trending-slider {
    position: relative;
    z-index: 2;
}

.trending-slider span.arr-left.slick-arrow {
    display: none !important;
}

.trending-slider span.arr-right.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #262626;
    border-radius: 50%;
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.5s;
}

.trending-slider span.arr-right.slick-arrow i {
    font-size: 15px;
    color: #262626;
}
.trending-slider span.arr-right.slick-arrow:hover{
    background-color: #262626;
}
.trending-slider span.arr-right.slick-arrow:hover i{
    color: #fff;
}

.trend-nf-img {
    overflow: hidden;
}

.trend-nf-img img {
    transition: 0.5s;
}

.trend-nf-img img:hover {
    transform: scale(1.1);
}

/* Footer  */
footer {
    position: relative;
    padding: 120px 0 60px;
}

.footer-round-img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer-about p {
    font-size: 12px;
    line-height: 2.08;
    text-align: left;
    color: #262626;
    width: 364px;
    max-width: 100%;
    padding: 23px 0 25px;
}

.copy-right p {
    font-size: 12px;
    line-height: 2.5;
    text-align: left;
    color: #262626;
}

.copy-right p a {
    color: #262626;
}

.footer-h h3 {
    font-size: 18px;
    line-height: 1.39;
    text-align: left;
    color: #262626;
    padding-bottom: 14px;
    text-transform: uppercase;
}

.footer-pages ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 3.33;
    text-align: left;
    color: #262626;
}

.social-icons ul {
    display: flex;
    align-items: center;
}

.social-icons ul li {
    margin-right: 15px;
}

.social-icons ul li a {
    width: 35.5px;
    height: 35.5px;
    background-color: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-pages ul li a:hover {
    color: #262626;
}

.social-icons ul li a i {
    font-size: 14px;
    color: #fff;
}

.social-icons ul li a:hover {
    background: var(--theme-color);
}

.social-icons ul li a:hover i {
    color: #262626;
}

.foot-r {
    position: relative;
    padding-top: 60px;
}

.home .foot-r::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 98%;
    height: 1px;
    border: 1px solid #fff;
    transform: translate(-50%, -50%);
}

.copy-right p b {
    font-weight: 600;
}

/* Inner Pages  */
.inner-banner {
    position: relative;
    padding-top: 14rem;
    padding-bottom: 6rem;
}

.inner-banner-content h1 {
    font-size: 130px;
    line-height: 0.96;
    text-align: center;
    text-transform: uppercase;
    color: #262626;
    padding-bottom: 20px;
}

.inner-banner-content p {
    font-size: 16px;
    line-height: 1.56;
    text-align: center;
    color: #262626;
}

.behind-sec {
    padding: 0px 0 51px;
    position: relative;
    z-index: 5;
}

.behind-m-img {
    position: relative;
    font-size: 0;
    height: 100%;
}

.behind-m-img img {
    width: 100%;
}

.play-icon-h-p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.b-play-icon a{
    width: 43px;
    height: 43px;
    background: #3716ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 24px 0 #060410;
    margin: auto;
}

.play-now-h a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.56;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    padding-top: 7px;
    text-transform: uppercase;
}

.b-play-icon a i {
    font-size: 14px;
    color: #fff;
}

.behind-m-box {
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    border-image-source: linear-gradient(128deg, #fff 3%, rgba(255, 255, 255, 0.1) 103%);
    border-image-slice: 1;
    background-image: linear-gradient(131deg, rgba(255, 255, 255, 0.4) 7%, rgba(255, 255, 255, 0.1) 100%);
    height: 100%;
    padding: 39px 23px 41px 35px;
    border-left: 0px !important;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.behind-content h4 {
    font-size: 31px;
    line-height: 0.81;
    text-align: left;
    color: #262626;
}

.behind-content p {
    font-size: 12px;
    line-height: 1.67;
    text-align: left;
    color: #262626;
    padding-top: 11px;
}

.behind-artist {
    display: flex;
    align-items: center;
    padding-top: 32px;
}

.behind-artist-img img {
    width: 73px;
}

.b-artist-name {
    padding-left: 33px;
}

.b-artist-name p {
    font-size: 12px;
    line-height: 1.67;
    text-align: left;
    color: #262626;
}

.b-follow-btn {
    padding-left: 20px;
}

.b-follow-btn a {
    width: 115px;
    height: 51px;
    border-radius: 50px;
    background-color: #262626;
    font-family: 'Anton', sans-serif;
    font-size: 14.8px;
    line-height: 51px;
    text-align: center;
    color: #fff;
    border-color: 1px solid #262626;
}

.b-follow-btn a:hover {
    box-shadow: inset -115px 0 0 var(--theme-color), inset 115px 0 0 var(--theme-color);
    color: #262626;
    border-color: #e7e7e7;
}

.behind-m-about p {
    font-size: 16px;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: left;
    color: #262626;
    width: 535.7px;
    padding-top: 17px;
}

.play-list-main {
    margin-bottom: 24px;
}

.play-list-main {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    border-image-source: linear-gradient(95deg, #fff 0%, rgba(255, 255, 255, 0.1) 100%);
    border-image-slice: 1;
    background-image: linear-gradient(95deg, rgba(255, 255, 255, 0.4) 11%, rgba(255, 255, 255, 0.1) 100%);
    padding: 10px 31px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right-color: rgba(0, 0, 0, 0.1) !important;
}

.playlist-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.play-list-sn-img {
    display: flex;
    align-items: center;
}

.play-list-sn-img p {
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
    padding-right: 24px;
}

.play-list-sn-img img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    object-position: top center;
}

.playlist-name p {
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
    text-transform: capitalize;
}

.playlist-play-i a{
    width: 43px;
    height: 43px;
    background: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.play-list-sec .playlist-play-i {
    margin-left: 0;
}

.playlist-play-i a i {
    font-size: 12px;
    color: #fff;
}

section.play-list-sec {
    padding: 0 0 53px;
    position: relative;
    z-index: 2;
}

.playlist-round-img {
    position: absolute;
    left: 0;
    top: -15%;
    z-index: -1;
}

.playlist-slider span.arr-left.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #262626;
    border-radius: 50%;
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.5s;
}

.playlist-slider span.arr-left.slick-arrow i {
    font-size: 15px;
    color: #262626;
}

.playlist-slider span.arr-left.slick-arrow:hover {
    background: #262626;
}

.playlist-slider span.arr-left.slick-arrow:hover i {
    color: #fff;
}

.playlist-slider span.arr-right.slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #262626;
    border-radius: 50%;
    position: absolute;
    right: -12%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.5s;
}

.playlist-slider span.arr-right.slick-arrow i {
    font-size: 15px;
    color: #262626;
}

.playlist-slider span.arr-right.slick-arrow:hover {
    background: #262626;
}

.playlist-slider span.arr-right.slick-arrow:hover i {
    color: #fff;
}

.trend-nf-details {
    display: flex;
    align-items: center;
    padding: 20px 0 40px;
}

.trend-nf-details p {
    font-size: 14px;
    line-height: 1.79;
    text-align: left;
    color: #262626;
    padding-right: 40px;
}

.trending-nf-sec {
    position: relative;
    z-index: 2;
}

.trending-round-img {
    position: absolute;
    top: 15%;
    left: 0;
    z-index: -1;
}

.vox-collectible-sec {
    position: relative;
    z-index: 2;
}

.about-us-inner p {
    width: 1184.8px;
    max-width: 100%;
    margin: auto;
}

/*.about-us-inner {*/
/*    padding-top: 120px;*/
/*}*/

.about-inner-img-sec {
    /*padding: 140px 0 0;*/
    position: relative;
    z-index: 2;
}

.playlist-slider .slick-list.draggable {
    padding-bottom: 50px;
}

.rever-slider-about-main {
    padding-bottom: 40px;
}

.about-slider-repeated-r {
    padding-top: 64px;
}

.about-slider-round-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.border-bottom-line {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-bottom: 60px;
}

.border-bottom-line2 {
    border-bottom: 1px solid rgb(255 255 255 / 50%);
    padding-bottom: 80px;
}

@media (max-width: 1200px) {
    /* Hamburger Menu */

    .menu-Bar {
        width: 30px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 0;
        bottom: 0px;
        margin: auto;
        z-index: 22;
        display: none;
    }

    .menu-Bar span {
        display: block;
        height: 4px;
        width: 100%;
        background: #262626;
        position: absolute;
        transition: 0.6s all;
        border-radius: 100px;
    }

    .menu-Bar span:nth-child(1) {
        top: 0;
    }

    .menu-Bar span:nth-child(2) {
        top: 8px;
        transform-origin: left;
    }

    .menu-Bar span:nth-child(3) {
        top: 16px;
    }

    .menu-Bar.open span {
        background: #b70404;
    }

    .menu-Bar.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 12px;
        transform-origin: right-center;
    }

    .menu-Bar.open span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .menu-Bar.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 12px;
        transform-origin: right-center;
    }


    img {
        max-width: 100%;
        height: auto;
    }

    .menu-Bar {
        display: block;
        top: 0px;
    }

    .menuWrap.open {
        display: flex;
        left: 0px;
        right: 0;
        top: 0;
        border-radius: 0;
        opacity: 1;
    }

    .menuWrap {
        position: fixed;
        left: 0;
        right: -210%;
        top: -200%;
        bottom: 0;
        margin: auto;
        background: var(--theme-color);
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        transition: all 1s ease;
        z-index: 3;
        width: 100vw;
        border-radius: 0 0 0 50%;
        opacity: 0;
    }

    ul.menu li {
        display: block;
    }

    ul.menu li a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 16px;
        text-transform: capitalize;
    }

    .logo img {
        max-width: 50%;
    }

    .container {
        position: relative;
    }

    header .main-header ul.menu>li {
        display: block;
        margin: 0px;
        padding: 0;
    }

    header .main-header ul.menu>li a {
        color: #262626;
    }

    header .main-header ul.menu>li a:before {
        display: none;
    }
}

@media (max-width: 1440px) {}



@media (max-width: 824px) {}