/*  */
/* :: 1.0 Import Fonts */
@import url("https://fonts.googleapis.com/css?family=Archivo+Narrow:400,400i,500,500i,600,600i,700,700i");
/* :: 2.0 Import All CSS */
@import url(css/bootstrap.min.css);
@import url(css/classy-nav.css);
@import url(css/owl.carousel.min.css);
@import url(css/animate.css);
@import url(css/magnific-popup.css);
@import url(css/font-awesome.min.css);
@import url(css/audioplayer.css);
@import url(css/height-madnation-icon.css);
/* :: 3.0 Base CSS */
* {
  margin: 0;
  padding: 0; }

body {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 14px; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Narrow", sans-serif;
  color: #000000;
  line-height: 1.3;
  font-weight: 700; }

p {
  font-family: "Archivo Narrow", sans-serif;
  color: #5f5f5f;
  font-size: 15px;
  line-height: 2;
  font-weight: 400; }

a,
a:hover,
a:focus {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  font-family: "Archivo Narrow", sans-serif; }

ul,
ol {
  margin: 0; }
  ul li,
  ol li {
    list-style: none; }

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

/* :: 3.1.0 Spacing */
.mt-15 {
  margin-top: 15px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-50 {
  margin-top: 50px !important; }

.mt-70 {
  margin-top: 70px !important; }

.mt-100 {
  margin-top: 100px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.ml-15 {
  margin-left: 15px !important; }

.ml-30 {
  margin-left: 30px !important; }

.ml-50 {
  margin-left: 50px !important; }

.mr-15 {
  margin-right: 15px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mr-50 {
  margin-right: 50px !important; }

/* :: 3.2.0 Height */
.height-400 {
  height: 400px !important; }

.height-500 {
  height: 500px !important; }

.height-600 {
  height: 600px !important; }

.height-700 {
  height: 700px !important; }

.height-800 {
  height: 800px !important; }

/* :: 3.3.0 Section Padding */
.section-padding-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.section-padding-100-0 {
  padding-top: 100px;
  padding-bottom: 0; }

.section-padding-0-100 {
  padding-top: 0;
  padding-bottom: 100px; }

.section-padding-100-70 {
  padding-top: 100px;
  padding-bottom: 70px; }

/* :: 3.4.0 Section Heading */
.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
  text-align: center; }
  .section-heading p {
    color: #5f5f5f;
    font-size: 14px;
    margin-bottom: 5px; }
  .section-heading h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .section-heading h2 {
        letter-spacing: 5px; } }
  .section-heading.white h2 {
    color: #fff; }
  .section-heading.style-2 p {
    font-size: 16px; }
  .section-heading.style-2 h2 {
    font-size: 30px; }
    @media only screen and (max-width: 767px) {
      .section-heading.style-2 h2 {
        font-size: 24px; } }

/* :: 3.5.0 Preloader */
.preloader {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 128px; /* Adjusted width */
  height: 64px; /* Adjusted height */
}

.preloader .lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #000000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

/* SVG loader size */
.preloader .ip {
  width: 8em;  /* Adjusted width for the loader */
  height: 4em; /* Adjusted height for the loader */
}

/* Track and worm elements for the new animation */
.preloader .ip__track {
  stroke: hsl(var(--hue), 90%, 90%);
  transition: stroke var(--trans-dur);
}

.preloader .ip__worm1,
.preloader .ip__worm2 {
  animation: worm1 2s linear infinite;
}

.preloader .ip__worm2 {
  animation-name: worm2;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  .preloader {
    background-color: hsl(var(--hue), 90%, 5%);
  }

  .preloader .ip__track {
    stroke: hsl(var(--hue), 90%, 15%);
  }
}

/* Animations */
@keyframes worm1 {
  from {
    stroke-dashoffset: 0;
  }
  50% {
    animation-timing-function: steps(1);
    stroke-dashoffset: -358;
  }
  50.01% {
    animation-timing-function: linear;
    stroke-dashoffset: 358;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes worm2 {
  from {
    stroke-dashoffset: 358;
  }
  50% {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -358;
  }
}


Keyframes remain unchanged to preserve animation

@-webkit-keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes lds-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@-webkit-keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); } }
@keyframes lds-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); } }
@-webkit-keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(19px, 0);
    transform: translate(19px, 0); } }
@keyframes lds-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(19px, 0);
    transform: translate(19px, 0); } }
/* :: 3.6.0 Miscellaneous */
.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }

.bg-white {
  background-color: #ffffff !important; }

.bg-dark {
  background-color: #000000 !important; }

.bg-transparent {
  background-color: transparent !important; }

.bg-gray {
  background-color: #f5f9fa; }

.font-bold {
  font-weight: 700; }

.font-light {
  font-weight: 300; }

.bg-overlay {
  position: relative;
  z-index: 2;
  background-position: center center;
  background-size: cover; }
  .bg-overlay::after {
    background-color: rgba(0, 0, 0, 0.65);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ""; }

.bg-fixed {
  background-attachment: fixed !important; }

/* :: 3.7.0 ScrollUp */
/* #scrollUp {
  background-color: #000000;
  border-radius: 0;
  bottom: 20px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  left: 30px;
  text-align: center;
  width: 40px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.15); }
  @media only screen and (max-width: 767px) {
    #scrollUp {
      right: 30px;
      bottom: 30px; } }
  #scrollUp:hover {
    background-color: #fff;
    color: #232323; } */

/* :: 3.8.0 madnation Button */
.madnation-btn {
  background-color: #fff;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 212px;
  height: 49px;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  padding: 0 30px;
  font-size: 16px;
  line-height: 47px;
  font-weight: 700;
  text-transform: capitalize; }
  .madnation-btn i {
    margin-left: 5px; }
  .madnation-btn:hover, .madnation-btn:focus {
    font-size: 16px;
    font-weight: 700;
    background-color: #000000;
    color: #fff; }
  .madnation-btn.btn-2 {
    background-color: #000000;
    color: #fff; }
    .madnation-btn.btn-2:hover, .madnation-btn.btn-2:focus {
      background-color: #fff;
      color: #232323; }

/* :: 4.0 Header Area CSS */
.header-area {
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 20px;
  left: 0;
  z-index: 1000; }
  .header-area .madnation-main-menu {
    position: relative;
    width: 100%;
    height: 85px;
    background-color: transparent; }
    @media only screen and (max-width: 767px) {
      .header-area .madnation-main-menu {
        height: 70px; } }
    .header-area .madnation-main-menu .classy-nav-container {
      background-color: transparent; }
    .header-area .madnation-main-menu .classy-navbar {
      background-color: transparent;
      height: 85px;
      padding: 0; }
      @media only screen and (max-width: 767px) {
        .header-area .madnation-main-menu .classy-navbar {
          height: 70px; } }
      .header-area .madnation-main-menu .classy-navbar .classynav ul li a {
        font-weight: 700;
        text-transform: capitalize;
        color: #ffffff;
        font-size: 16px; }
        .header-area .madnation-main-menu .classy-navbar .classynav ul li a:hover, .header-area .madnation-main-menu .classy-navbar .classynav ul li a:focus {
          color: rgba(255, 255, 255, 0.7); }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li a {
            background-color: #000000;
            border-bottom-color: rgba(255, 255, 255, 0.1); } }
        @media only screen and (max-width: 767px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li a {
            background-color: #000000;
            border-bottom-color: rgba(255, 255, 255, 0.1); } }
      .header-area .madnation-main-menu .classy-navbar .classynav ul li.megamenu-item > a::after,
      .header-area .madnation-main-menu .classy-navbar .classynav ul li.has-down > a::after {
        color: #ffffff; }
      .header-area .madnation-main-menu .classy-navbar .classynav ul li.megamenu-item ul li > a::after,
      .header-area .madnation-main-menu .classy-navbar .classynav ul li.has-down ul li > a::after {
        color: #232323; }
        @media only screen and (max-width: 767px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li.megamenu-item ul li > a::after,
          .header-area .madnation-main-menu .classy-navbar .classynav ul li.has-down ul li > a::after {
            color: #ffffff; } }
      .header-area .madnation-main-menu .classy-navbar .classynav ul li ul li a {
        color: #232323; }
        .header-area .madnation-main-menu .classy-navbar .classynav ul li ul li a:hover, .header-area .madnation-main-menu .classy-navbar .classynav ul li ul li a:focus {
          color: #888888; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li ul li a {
            padding: 0 15px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li ul li a {
            color: #ffffff;
            padding: 0 30px;
            border-bottom-color: rgba(255, 255, 255, 0.1); } }
        @media only screen and (max-width: 767px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li ul li a {
            color: #ffffff;
            padding: 0 30px;
            border-bottom-color: rgba(255, 255, 255, 0.1) !important; } }
      .header-area .madnation-main-menu .classy-navbar .classynav ul li .dropdown li .dropdown li .dropdown li a {
        border-bottom: 1px solid rgba(242, 244, 248, 0.7); }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li .dropdown li .dropdown li .dropdown li a {
            border-bottom-color: rgba(255, 255, 255, 0.1) !important; } }
        @media only screen and (max-width: 767px) {
          .header-area .madnation-main-menu .classy-navbar .classynav ul li .dropdown li .dropdown li .dropdown li a {
            border-bottom-color: rgba(255, 255, 255, 0.1) !important; } }
    .header-area .madnation-main-menu .login-register-cart-button {
      position: relative;
      z-index: 1;
      margin-left: 100px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-area .madnation-main-menu .login-register-cart-button {
          margin-left: 12px;
          margin-top: 15px; } }
      @media only screen and (max-width: 767px) {
        .header-area .madnation-main-menu .login-register-cart-button {
          margin-left: 12px;
          margin-top: 15px; } }
      .header-area .madnation-main-menu .login-register-cart-button .login-register-btn {
        position: relative;
        z-index: 10; }
        .header-area .madnation-main-menu .login-register-cart-button .login-register-btn a {
          -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
          margin-bottom: 0;
          color: #fff;
          font-weight: 700;
          font-size: 16px;
          cursor: pointer;
          line-height: 1; }
          .header-area .madnation-main-menu .login-register-cart-button .login-register-btn a:hover, .header-area .madnation-main-menu .login-register-cart-button .login-register-btn a:focus {
            color: rgba(255, 255, 255, 0.7); }
      .header-area .madnation-main-menu .login-register-cart-button .cart-btn {
        position: relative;
        z-index: 10; }
        .header-area .madnation-main-menu .login-register-cart-button .cart-btn p {
          -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
          margin-bottom: 0;
          color: #fff;
          font-size: 18px;
          cursor: pointer;
          line-height: 1; }
          .header-area .madnation-main-menu .login-register-cart-button .cart-btn p:hover, .header-area .madnation-main-menu .login-register-cart-button .cart-btn p:focus {
            color: rgba(255, 255, 255, 0.7); }
          .header-area .madnation-main-menu .login-register-cart-button .cart-btn p .quantity {
            width: 15px;
            height: 15px;
            border: 1px solid #fff;
            background-color: #232323;
            color: #fff;
            display: block;
            position: absolute;
            bottom: -5px;
            left: -10px;
            z-index: 10;
            font-size: 9px;
            font-weight: 400;
            border-radius: 50%;
            line-height: 13px;
            text-align: center; }
  .header-area .is-sticky .madnation-main-menu {
    position: fixed;
    width: 100%;
    height: 85px;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000000;
    box-shadow: 0 5px 50px 15px rgba(0, 0, 0, 0.2); }
    @media only screen and (max-width: 767px) {
      .header-area .is-sticky .madnation-main-menu {
        height: 70px; } }

.classy-navbar .nav-brand {
  max-width: 130px; }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breakpoint-on .classy-navbar .classy-menu {
    background-color: #000000; } }
@media only screen and (max-width: 767px) {
  .breakpoint-on .classy-navbar .classy-menu {
    background-color: #000000; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .classynav ul li .megamenu .single-mega.cn-col-4 {
    padding: 0; } }
@media only screen and (max-width: 767px) {
  .classynav ul li .megamenu .single-mega.cn-col-4 {
    padding: 0; } }

.classycloseIcon .cross-wrap span {
  background: #ffffff; }

/* :: 5.0 Hero Slides Area */
.hero-area,
.hero-slides {
  position: relative;
  z-index: 1; }

.single-hero-slide {
  width: 100%;
  height: 950px;
  position: relative;
  z-index: 1;
  padding: 0 30px;
  overflow: hidden; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-hero-slide {
      height: 700px; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-hero-slide {
      height: 650px; } }
  @media only screen and (max-width: 767px) {
    .single-hero-slide {
      height: 500px; } }
  .single-hero-slide::after {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -5;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.35);
    content: ''; }
  .single-hero-slide .slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .single-hero-slide .hero-slides-content {
    display: inline-block;
    width: 100%; }
    .single-hero-slide .hero-slides-content h6 {
      font-size: 18px;
      color: #fff;
      letter-spacing: 20px;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block; }
      @media only screen and (max-width: 767px) {
        .single-hero-slide .hero-slides-content h6 {
          letter-spacing: 5px; } }
    .single-hero-slide .hero-slides-content h2 {
      position: relative;
      z-index: 1;
      font-size: 60px;
      color: #ffffff;
      margin-bottom: 0;
      font-weight: 400;
      display: block;
      text-transform: capitalize;
      letter-spacing: 30px;
      overflow: hidden; }
      .single-hero-slide .hero-slides-content h2 span {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
        color: rgba(255, 255, 255, 0.15);
        -webkit-animation: textsonar 6s linear infinite;
        animation: textsonar 6s linear infinite; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-hero-slide .hero-slides-content h2 {
          letter-spacing: 15px;
          font-size: 42px; } }
      @media only screen and (max-width: 767px) {
        .single-hero-slide .hero-slides-content h2 {
          letter-spacing: 5px;
          font-size: 30px; } }
    .single-hero-slide .hero-slides-content .btn {
      border: 1px solid #fff;
      background-color: transparent;
      color: #fff; }
      .single-hero-slide .hero-slides-content .btn:hover, .single-hero-slide .hero-slides-content .btn:focus {
        background-color: #fff;
        color: #000000; }

@-webkit-keyframes textsonar {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  50% {
    -webkit-transform: scaleX(1.15);
    transform: scaleX(1.15); }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
@keyframes textsonar {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  50% {
    -webkit-transform: scaleX(1.15);
    transform: scaleX(1.15); }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }
.single-hero-slide .slide-img {
  -webkit-animation: slide 12s linear infinite;
  animation: slide 12s linear infinite; }

@-webkit-keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
/* :: 6.0 Buy Now Area CSS */
.madnation-buy-now-area.has-fluid {
  padding-left: 4%;
  padding-right: 4%;
  position: relative;
  z-index: 1; }

/* :: 7.0 Events Area CSS */
.single-event-area {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
  .single-event-area img {
    width: 100%; }
  .single-event-area .event-text {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 30px 15px;
    background-color: #000;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms; }
    .single-event-area .event-text h4 {
      color: #fff;
      text-transform: uppercase;
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms; }
    .single-event-area .event-text .event-meta-data {
      position: relative;
      margin-bottom: 30px; }
      .single-event-area .event-text .event-meta-data a {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        position: relative;
        z-index: 1;
        color: #fff;
        font-size: 15px;
        font-weight: 400;
        display: inline-block;
        padding-right: 29px; }
        .single-event-area .event-text .event-meta-data a:first-child::after {
          position: absolute;
          content: '|';
          top: 0;
          right: 12px;
          z-index: 1; }
        .single-event-area .event-text .event-meta-data a:last-child {
          padding-right: 0; }
    .single-event-area .event-text .see-more-btn {
      font-size: 11px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 10px;
      border-bottom: 1px solid #fff;
      padding-left: 0;
      padding-right: 0;
      border-radius: 0; }
      .single-event-area .event-text .see-more-btn:hover, .single-event-area .event-text .see-more-btn:focus {
        font-weight: 400; }
  .single-event-area:hover, .single-event-area:focus {
    box-shadow: 0 5px 80px 0 rgba(0, 0, 0, 0.2); }
    .single-event-area:hover .event-text, .single-event-area:focus .event-text {
      background-color: #f5f9fa; }
      .single-event-area:hover .event-text h4,
      .single-event-area:hover .event-text .event-meta-data a, .single-event-area:focus .event-text h4,
      .single-event-area:focus .event-text .event-meta-data a {
        color: #000000; }
      .single-event-area:hover .event-text .see-more-btn, .single-event-area:focus .event-text .see-more-btn {
        border-bottom-color: #000000;
        color: #000000; }

/* :: 8.0 Newsletter Area CSS */
.newsletter-area {
  position: relative;
  z-index: 1;
  border: 1px solid #000000;
  padding: 45px; }
  .newsletter-area .newsletter-form {
    position: relative;
    z-index: 1; }
    .newsletter-area .newsletter-form input {
      width: 100%;
      height: 40px;
      font-size: 14px;
      color: #b3b3b3;
      font-style: italic;
      border: none;
      border-bottom: 1px solid #d6d6d6;
      margin-bottom: 30px;
      display: block; }

.testimonials-area {
  position: relative;
  z-index: 1;
  padding: 45px; }
  .testimonials-area .testimonials-slide {
    position: relative;
    z-index: 1; }
    .testimonials-area .testimonials-slide .single-slide p {
      font-size: 15px;
      color: #fff;
      font-style: italic; }
    .testimonials-area .testimonials-slide .single-slide .testimonial-info {
      margin-top: 30px;
      display: block; }
      .testimonials-area .testimonials-slide .single-slide .testimonial-info .testimonial-thumb {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        margin-right: 15px; }
        .testimonials-area .testimonials-slide .single-slide .testimonial-info .testimonial-thumb img {
          border-radius: 50%; }
      .testimonials-area .testimonials-slide .single-slide .testimonial-info p {
        font-style: normal;
        font-size: 15px;
        color: #fff;
        margin-bottom: 0; }

/* :: 9.0 Album Catagory Area CSS */
.featured-artist-area {
  position: relative;
  z-index: 1; }

.featured-artist-content {
  position: relative;
  z-index: 1; }
  @media only screen and (max-width: 767px) {
    .featured-artist-content {
      margin-top: 50px; } }
  .featured-artist-content p {
    color: #fff; }

.browse-by-catagories {
  position: relative;
  z-index: 1; }
  .browse-by-catagories a {
    display: inline-block;
    background-color: #f4f4f4;
    border: 2px solid transparent;
    padding: 6px 9px;
    font-size: 15px;
    margin-right: 5px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .browse-by-catagories a {
        padding: 4px 7px;
        font-size: 14px;
        margin-right: 4px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .browse-by-catagories a {
        padding: 4px 7px;
        font-size: 14px;
        margin-right: 5px;
        margin-bottom: 5px; } }
    @media only screen and (max-width: 767px) {
      .browse-by-catagories a {
        padding: 2px 5px;
        font-size: 13px;
        margin-right: 5px;
        margin-bottom: 5px; } }
    .browse-by-catagories a:hover, .browse-by-catagories a:focus, .browse-by-catagories a.active {
      border: 2px solid #000000; }
    .browse-by-catagories a:first-child {
      border-color: transparent;
      background-color: transparent; }

.single-album {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 30px; }
  .single-album img {
    width: 100%; }
  .single-album .album-info {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px; }
    .single-album .album-info h5 {
      font-size: 18px;
      margin-bottom: 0;
      text-transform: uppercase; }
    .single-album .album-info p {
      margin-bottom: 0; }
  .single-album:hover, .single-album:focus {
    box-shadow: 0 5px 70px 0 rgba(0, 0, 0, 0.15); }

.single-album-area {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 30px; }
  .single-album-area .album-thumb {
    position: relative;
    z-index: 1; }
    .single-album-area .album-thumb .album-price p {
      position: absolute;
      top: 15px;
      left: 15px;
      background-color: #fff;
      margin-bottom: 0;
      line-height: 1;
      padding: 5px 15px;
      border-radius: 15px;
      z-index: 20; }
    .single-album-area .album-thumb .play-icon a {
      color: #fff;
      font-size: 50px;
      position: absolute;
      top: 50%;
      left: 50%;
      line-height: 1;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .single-album-area img {
    width: 100%; }
  .single-album-area .album-info {
    display: block;
    position: relative;
    z-index: 1;
    padding-top: 15px;
    padding-bottom: 15px; }
    .single-album-area .album-info h5 {
      font-size: 18px;
      margin-bottom: 0;
      text-transform: uppercase; }
    .single-album-area .album-info p {
      margin-bottom: 0; }

.albums-slideshow {
  position: relative;
  z-index: 1; }
  .albums-slideshow .single-album {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    margin-bottom: 0;
    border: 1px solid transparent; }
    .albums-slideshow .single-album:hover, .albums-slideshow .single-album:focus {
      border: 1px solid #000000;
      box-shadow: none;
      background-color: #f5f9fa; }
  .albums-slideshow .owl-prev,
  .albums-slideshow .owl-next {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    background-color: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid #000000;
    top: 50%;
    left: -25px;
    margin-top: -50px;
    z-index: 50;
    text-align: center;
    line-height: 48px;
    opacity: 0;
    visibility: hidden; }
    @media only screen and (max-width: 767px) {
      .albums-slideshow .owl-prev,
      .albums-slideshow .owl-next {
        left: 0; } }
    .albums-slideshow .owl-prev:hover, .albums-slideshow .owl-prev:focus,
    .albums-slideshow .owl-next:hover,
    .albums-slideshow .owl-next:focus {
      background-color: #000000;
      color: #fff; }
  .albums-slideshow .owl-next {
    left: auto;
    right: -25px; }
    @media only screen and (max-width: 767px) {
      .albums-slideshow .owl-next {
        right: 0; } }
  .albums-slideshow:hover .owl-prev,
  .albums-slideshow:hover .owl-next {
    opacity: 1;
    visibility: visible; }

/* :: 10.0 Songs Area CSS */
.single-song-area {
  position: relative;
  z-index: 1; }
  .single-song-area .song-thumbnail {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 135px;
    flex: 0 0 135px;
    max-width: 135px;
    width: 135px;
    margin-right: 50px; }
    .single-song-area .song-thumbnail img {
      width: 100%; }
    @media only screen and (max-width: 767px) {
      .single-song-area .song-thumbnail {
        margin-right: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%; } }
  .single-song-area .song-play-area {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 185px);
    flex: 0 0 calc(100% - 185px);
    max-width: calc(100% - 185px);
    width: calc(100% - 185px);
    background-color: #262626;
    padding: 15px 30px 20px; }
    @media only screen and (max-width: 767px) {
      .single-song-area .song-play-area {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%; } }
    .single-song-area .song-play-area .song-name p {
      color: #b8b8b8;
      margin-bottom: 5px; }
    .single-song-area .song-play-area .audioplayer {
      margin: 0;
      padding: 0;
      width: 100%;
      height: auto;
      align-items: center;
      border: none;
      border-radius: 0;
      background: transparent; }
    .single-song-area .song-play-area .audioplayer-playing .audioplayer-playpause,
    .single-song-area .song-play-area .audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover,
    .single-song-area .song-play-area .audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
      background: #fff; }
    .single-song-area .song-play-area .audioplayer-time {
      font-size: 14px;
      color: #fff; }

.song-play-area {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #262626;
  padding: 15px 30px 20px;
  border: 1px solid #363636; }
  .song-play-area .song-name p {
    color: #b8b8b8;
    margin-bottom: 5px; }
  .song-play-area .audioplayer {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    align-items: center;
    border: none;
    border-radius: 0;
    background: transparent; }
  .song-play-area .audioplayer-playing .audioplayer-playpause,
  .song-play-area .audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover,
  .song-play-area .audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: #fff; }
  .song-play-area .audioplayer-time {
    font-size: 14px;
    color: #fff; }

/* :: 11.0 Miscellaneous Area CSS */
.weeks-top-area {
  position: relative;
  z-index: 1;
  padding: 45px 30px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border: 1px solid transparent; }
  .weeks-top-area .single-top-item {
    position: relative;
    z-index: 1;
    margin-bottom: 21px; }
    .weeks-top-area .single-top-item:last-child {
      margin-bottom: 0; }
    .weeks-top-area .single-top-item .thumbnail {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 73px;
      flex: 0 0 73px;
      max-width: 73px;
      width: 73px;
      margin-right: 20px; }
    .weeks-top-area .single-top-item .content- h6 {
      text-transform: uppercase;
      margin-bottom: 0; }
    .weeks-top-area .single-top-item .content- p {
      font-size: 14px;
      margin-bottom: 0; }
  .weeks-top-area:hover, .weeks-top-area:focus {
    background-color: #f5f9fa;
    border-color: #d8d8d8; }

.popular-artists-area {
  position: relative;
  z-index: 1;
  padding: 45px 30px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border: 1px solid #d8d8d8;
  background-color: #f5f9fa; }
  .popular-artists-area .single-artists {
    position: relative;
    z-index: 1;
    margin-bottom: 17px; }
    .popular-artists-area .single-artists:last-child {
      margin-bottom: 0; }
    .popular-artists-area .single-artists .thumbnail {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 63px;
      flex: 0 0 63px;
      max-width: 63px;
      width: 63px;
      margin-right: 20px;
      border-radius: 50%; }
      .popular-artists-area .single-artists .thumbnail img {
        border-radius: 50%; }
    .popular-artists-area .single-artists .content- p {
      font-size: 16px;
      margin-bottom: 0; }

.new-hits-area {
  position: relative;
  z-index: 1;
  padding: 45px 30px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  border: 1px solid #d8d8d8;
  background-color: #f5f9fa; }
  .new-hits-area .single-new-item {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 10px;
    padding-bottom: 10px; }
    .new-hits-area .single-new-item:last-child {
      margin-bottom: 0;
      border-bottom: none;
      padding-bottom: 0; }
    .new-hits-area .single-new-item .thumbnail {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 73px;
      flex: 0 0 73px;
      max-width: 73px;
      width: 73px;
      margin-right: 20px; }
    .new-hits-area .single-new-item .content- h6 {
      text-transform: uppercase;
      margin-bottom: 0; }
    .new-hits-area .single-new-item .content- p {
      font-size: 14px;
      margin-bottom: 0; }
    .new-hits-area .single-new-item .audioplayer {
      margin: 0;
      padding: 0;
      width: auto;
      height: auto;
      border: none;
      border-radius: 0;
      background: transparent; }
    .new-hits-area .single-new-item .audioplayer-playing .audioplayer-playpause,
    .new-hits-area .single-new-item .audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover,
    .new-hits-area .single-new-item .audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
      background: #d6d6d6; }
    .new-hits-area .single-new-item .audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
      border-left: 12px solid #fff; }
    .new-hits-area .single-new-item .audioplayer-time,
    .new-hits-area .single-new-item .audioplayer-volume,
    .new-hits-area .single-new-item .audioplayer-bar {
      display: none; }

/* :: 12.0 Login Area CSS */
.login-content {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: relative;
  z-index: 1;
  background-color: #f5f9fa;
  border: 1px solid #d8d8d8;
  padding: 50px 100px;
  box-shadow: 0 2px 70px 0 rgba(0, 0, 0, 0.15);
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .login-content {
      padding: 50px 30px; } }
  .login-content h3 {
    margin-bottom: 30px; }
  .login-content .form-group {
    text-align: left; }
  .login-content .form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #888484;
    font-size: 12px;
    font-style: italic;
    padding: 0 20px;
    border-radius: 0; }
    .login-content .form-control:focus {
      box-shadow: none; }

/* :: 13.0 Services Area CSS */
.single-service-area .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 78px;
  flex: 0 0 78px;
  max-width: 78px;
  width: 78px;
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border: 1px solid #000000;
  text-align: center; }
  .single-service-area .icon span {
    line-height: 76px;
    font-size: 40px; }
.single-service-area .text {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 78px);
  flex: 0 0 calc(100% - 78px);
  max-width: calc(100% - 78px);
  width: calc(100% - 78px);
  padding-left: 30px; }

/* :: 14.0 Footer Area CSS */
.footer-area {
  position: relative;
  z-index: 1;
  background-color: #000000;
  padding: 30px 0; }
  @media only screen and (max-width: 767px) {
    .footer-area {
      text-align: center; } }
  .footer-area .copywrite-text {
    font-size: 12px;
    margin-bottom: 0;
    color: rgba(166, 165, 165, 0.54); }
    .footer-area .copywrite-text a {
      color: rgba(166, 165, 165, 0.54);
      font-size: 12px; }
      .footer-area .copywrite-text a:hover, .footer-area .copywrite-text a:focus {
        color: #fff; }
  .footer-area .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .footer-area .footer-nav ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px; } }
  .footer-area .footer-nav li a {
    color: #898888;
    font-size: 16px;
    padding: 0 20px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .footer-area .footer-nav li a {
        padding: 0 10px;
        font-size: 14px; } }
    @media only screen and (max-width: 767px) {
      .footer-area .footer-nav li a {
        padding: 0 10px;
        font-size: 14px; } }
    .footer-area .footer-nav li a:hover, .footer-area .footer-nav li a:focus {
      color: #fff; }
  .footer-area .footer-nav li:last-child a {
    padding-right: 0; }

/* :: 15.0 Breadcumb Area CSS */
.breadcumb-area {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 385px; }
  @media only screen and (max-width: 767px) {
    .breadcumb-area {
      height: 270px; } }
  .breadcumb-area .bradcumbContent {
    position: absolute;
    background-color: #fff;
    width: 552px;
    bottom: 0;
    left: 50%;
    z-index: 100;
    text-align: center;
    padding-top: 40px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
    @media only screen and (max-width: 767px) {
      .breadcumb-area .bradcumbContent {
        width: calc(100% - 60px);
        padding-top: 30px; } }
    .breadcumb-area .bradcumbContent p {
      line-height: 1.5;
      font-size: 16px;
      color: #5f5f5f; }
    .breadcumb-area .bradcumbContent h2 {
      font-size: 30px;
      letter-spacing: 10px;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 0; }
      @media only screen and (max-width: 767px) {
        .breadcumb-area .bradcumbContent h2 {
          font-size: 18px;
          letter-spacing: 5px; } }

/* :: 16.0 Blog Area CSS */
.single-blog-post {
  position: relative;
  z-index: 1; }
  .single-blog-post .blog-post-thumb {
    position: relative;
    z-index: 1; }
    .single-blog-post .blog-post-thumb .post-date {
      width: 76px;
      height: 106px;
      border: 1px solid #000000;
      text-align: center;
      background-color: #fff;
      position: absolute;
      z-index: 10;
      top: -30px;
      left: 30px;
      padding: 17px 0; }
      .single-blog-post .blog-post-thumb .post-date span {
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3; }
        .single-blog-post .blog-post-thumb .post-date span:first-child {
          font-size: 36px; }
  .single-blog-post .blog-content {
    background-color: #f5f9fa;
    padding: 45px 40px;
    border: 1px solid #d8d8d8; }
    @media only screen and (max-width: 767px) {
      .single-blog-post .blog-content {
        padding: 30px 20px; } }
    .single-blog-post .blog-content .post-title {
      font-size: 24px;
      display: block; }
      @media only screen and (max-width: 767px) {
        .single-blog-post .blog-content .post-title {
          font-size: 20px; } }
      .single-blog-post .blog-content .post-title:hover, .single-blog-post .blog-content .post-title:focus {
        color: #232323; }
    .single-blog-post .blog-content .post-meta {
      position: relative;
      z-index: 1;
      margin-bottom: 10px; }
      .single-blog-post .blog-content .post-meta p {
        color: #8d8d8d;
        font-size: 13px;
        padding-right: 25px;
        position: relative;
        z-index: 1; }
        .single-blog-post .blog-content .post-meta p::after {
          content: '|';
          position: absolute;
          right: 12px;
          top: 0;
          z-index: 5; }
        .single-blog-post .blog-content .post-meta p:last-child::after {
          display: none; }
        .single-blog-post .blog-content .post-meta p a {
          color: #8d8d8d;
          font-size: 13px;
          margin-bottom: 0;
          font-weight: 400; }
          .single-blog-post .blog-content .post-meta p a:hover, .single-blog-post .blog-content .post-meta p a:focus {
            color: #000000; }
    .single-blog-post .blog-content p {
      margin-bottom: 0; }

.madnation-pagination-area .pagination .page-item .page-link {
  background-color: transparent;
  display: block;
  padding: 0;
  border: 1px solid transparent;
  color: #5f5f5f;
  font-size: 15px;
  font-weight: 400;
  width: 34px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  margin-right: 10px; }
  .madnation-pagination-area .pagination .page-item .page-link:hover, .madnation-pagination-area .pagination .page-item .page-link:focus {
    color: #000000;
    border: 1px solid #000000; }
.madnation-pagination-area .pagination .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }
.madnation-pagination-area .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }
.madnation-pagination-area .pagination .page-item.active .page-link {
  color: #000000;
  border: 1px solid #000000; }

.blog-sidebar-area {
  position: relative;
  z-index: 1; }
  @media only screen and (max-width: 767px) {
    .blog-sidebar-area {
      margin-top: 100px; } }

.single-widget-area {
  position: relative;
  z-index: 1;
  background-color: #f5f9fa;
  border: 1px solid #d8d8d8; }
  .single-widget-area img {
    width: 100%; }
  .single-widget-area .widget-title {
    padding: 25px 45px;
    border-bottom: 1px solid #d8d8d8; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single-widget-area .widget-title {
        padding: 20px 30px; } }
    .single-widget-area .widget-title h5 {
      margin-bottom: 0;
      line-height: 1; }
  .single-widget-area .widget-content {
    padding: 25px 45px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single-widget-area .widget-content {
        padding: 20px 30px; } }
    .single-widget-area .widget-content ul li {
      margin-bottom: 10px; }
      .single-widget-area .widget-content ul li a {
        color: #5f5f5f;
        font-size: 15px;
        font-weight: 400; }
        .single-widget-area .widget-content ul li a:hover, .single-widget-area .widget-content ul li a:focus {
          color: #000000; }
      .single-widget-area .widget-content ul li:last-child {
        margin-bottom: 0; }
    .single-widget-area .widget-content .tags {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .single-widget-area .widget-content .tags li {
        margin-bottom: 0; }
        .single-widget-area .widget-content .tags li a {
          display: block;
          line-height: 28px;
          font-size: 15px;
          color: #5f5f5f;
          height: 30px;
          background-color: #fff;
          padding: 0 15px;
          border: 1px solid #000000;
          margin: 3px; }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            .single-widget-area .widget-content .tags li a {
              padding: 0 10px; } }

/* :: 17.0 Skills Area CSS */
.single-skils-area {
  position: relative;
  z-index: 1;
  text-align: center; }
  .single-skils-area .circle {
    position: relative;
    z-index: 10;
    margin-bottom: 15px; }
  .single-skils-area .skills-text {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    .single-skils-area .skills-text span {
      font-size: 24px;
      color: #232323;
      font-weight: 500; }
    .single-skils-area .skills-text p {
      font-size: 15px;
      color: #5f5f5f;
      line-height: 1; }

/* :: 18.0 Contact Area CSS */
.contact-content {
  position: relative;
  z-index: 2; }
  .contact-content .contact-social-info a {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #000000; }
    .contact-content .contact-social-info a:hover, .contact-content .contact-social-info a:focus {
      color: #232323; }
  .contact-content .single-contact-info {
    position: relative;
    margin-bottom: 20px; }
    .contact-content .single-contact-info:last-child {
      margin-bottom: 0; }
    .contact-content .single-contact-info p {
      font-size: 15px;
      margin-bottom: 0; }
    .contact-content .single-contact-info .icon {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
      flex: 0 0 35px;
      max-width: 35px;
      width: 35px;
      height: 35px;
      border: 1px solid #000;
      text-align: center; }
      .contact-content .single-contact-info .icon span {
        font-size: 20px;
        line-height: 33px; }

.contact-form-area .form-control {
  position: relative;
  z-index: 2;
  height: 45px;
  width: 100%;
  background-color: transparent;
  font-size: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 0;
  padding: 15px 0;
  font-style: italic;
  color: #b3b3b3;
  border-bottom: 1px solid #000000;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
  .contact-form-area .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #000000; }
.contact-form-area textarea.form-control {
  height: 160px; }

.has-bg-img {
  position: relative;
  z-index: 1; }
  .has-bg-img .contact-form-area .form-control {
    color: #fff;
    border-bottom: 1px solid #fff; }
    .has-bg-img .contact-form-area .form-control:focus {
      border-bottom: 1px solid #fff; }
  .has-bg-img .madnation-btn {
    background-color: transparent;
    border-color: #fff;
    color: #fff; }
    .has-bg-img .madnation-btn:hover, .has-bg-img .madnation-btn:focus {
      background-color: #fff;
      color: #000000; }

.map-area {
  position: relative;
  z-index: 2; }
  .map-area iframe {
    width: 100%;
    height: 385px;
    border: none;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .map-area iframe {
        height: 300px; } }

/* :: 19.0 Elements Area CSS */
.elements-title {
  position: relative;
  z-index: 1; }
  .elements-title h2 {
    font-size: 24px; }

/* :: 20.1.0 Single Cool Facts CSS */
.single-cool-fact {
  position: relative;
  z-index: 1; }
  .single-cool-fact .scf-text h2 {
    font-size: 48px;
    margin-bottom: 0;
    color: #232323; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .single-cool-fact .scf-text h2 {
        font-size: 48px; } }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .single-cool-fact .scf-text h2 {
        font-size: 36px; } }
    @media only screen and (max-width: 767px) {
      .single-cool-fact .scf-text h2 {
        font-size: 30px; } }
  .single-cool-fact .scf-text p {
    font-size: 15px;
    margin-bottom: 0;
    color: #5f5f5f;
    line-height: 1; }

/* :: 20.2.0 Accordians Area CSS */
.single-accordion.panel {
  background-color: #ffffff;
  border: 0 solid transparent;
  border-radius: 4px;
  box-shadow: 0 0 0 transparent;
  margin-bottom: 15px; }
.single-accordion:last-of-type {
  margin-bottom: 0; }
.single-accordion h6 {
  margin-bottom: 0; }
  .single-accordion h6 a {
    background-color: #000000;
    border-radius: 0;
    color: #ffffff;
    display: block;
    margin: 0;
    padding: 20px 70px 20px 30px;
    position: relative;
    font-size: 14px;
    text-transform: capitalize;
    border: 1px solid #000000; }
    .single-accordion h6 a span {
      background: transparent;
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      font-size: 10px;
      position: absolute;
      right: 0;
      text-align: center;
      top: 0;
      width: 58px;
      height: 100%;
      color: #ffffff;
      line-height: 58px; }
      .single-accordion h6 a span.accor-open {
        opacity: 0; }
    .single-accordion h6 a.collapsed {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      background-color: transparent;
      color: #232323; }
      .single-accordion h6 a.collapsed span {
        color: #000000; }
        .single-accordion h6 a.collapsed span.accor-close {
          opacity: 0; }
        .single-accordion h6 a.collapsed span.accor-open {
          opacity: 1; }
.single-accordion .accordion-content {
  border-top: 0 solid transparent;
  box-shadow: none; }
  .single-accordion .accordion-content p {
    padding: 20px 15px 5px;
    margin-bottom: 0; }

/* :: 20.3.0 Tabs Area CSS */
.madnation-tabs-content {
  position: relative;
  z-index: 1; }
  .madnation-tabs-content .nav-tabs {
    border-bottom: none;
    margin-bottom: 15px; }
    .madnation-tabs-content .nav-tabs .nav-link {
      background-color: transparent;
      border: 1px solid #000000;
      padding: 0 30px;
      height: 58px;
      line-height: 58px;
      color: #232323;
      margin: 0 2px;
      border-radius: 0; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .madnation-tabs-content .nav-tabs .nav-link {
          padding: 0 15px; } }
      @media only screen and (max-width: 767px) {
        .madnation-tabs-content .nav-tabs .nav-link {
          padding: 0 15px;
          font-size: 12px;
          margin-bottom: 5px; } }
      @media only screen and (min-width: 480px) and (max-width: 767px) {
        .madnation-tabs-content .nav-tabs .nav-link {
          padding: 0 15px; } }
      .madnation-tabs-content .nav-tabs .nav-link.active {
        background-color: #000000;
        color: #ffffff; }
  .madnation-tabs-content .madnation-tab-text {
    position: relative;
    z-index: 1;
    padding-top: 10px; }
    .madnation-tabs-content .madnation-tab-text p {
      margin-bottom: 0; }
  .madnation-tabs-content .tab-content h6 {
    font-size: 18px; }

.single-web-icon {
  position: relative;
  z-index: 1;
  background-color: #f5f9fa;
  text-align: center;
  padding: 30px 10px;
  border: 1px solid #b8b8b8;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
  .single-web-icon i {
    display: block;
    font-size: 50px;
    margin-bottom: 15px; }
  .single-web-icon span {
    font-size: 16px; }
  .single-web-icon:hover {
    box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.15); }

/* ====== The End ====== */

/*# sourceMappingURL=style.css.map */


/* For footer ICO Starting*/
.footer-social-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px; /* Adds space between icons */
  margin: 0;
}

.footer-social-nav ul li {
  margin: 0;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.footer-social-nav ul li:hover {
  transform: scale(1.2); /* Grows the icon on hover */
}

.footer-social-nav ul li a {
  font-size: 15px; /* Slightly larger font size for better visibility */
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  background: #1a1a1a; /* Default dark background */
  color: #ffffff; /* Default icon color */
  transition: background-color 0.3s ease, transform 0.3s, box-shadow 0.3s;
}

/* WhatsApp */
.footer-social-nav ul li a .fa-whatsapp {
  color: #25d366; /* WhatsApp green */
}

/* Discord */
.footer-social-nav ul li a .fa-discord {
  color: #7289da; /* Discord blue */
}

/* TikTok */
.footer-social-nav ul li a .fa-tiktok {
  color: #010101; /* TikTok black */
}

/* Instagram */
.footer-social-nav ul li a .fa-instagram {
  background: radial-gradient(circle at 30% 30%, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram gradient */
  color: transparent; /* Instagram's unique gradient background */
  -webkit-background-clip: text;
  background-clip: text;
}

/* YouTube */
.footer-social-nav ul li a .fa-youtube {
  color: #ff0000; /* YouTube red */
}

/* Spotify */
.footer-social-nav ul li a .fa-spotify {
  color: #1db954; /* Spotify green */
}

/* Hover effect for icons */
.footer-social-nav ul li a:hover {
  background-color: #333333; /* Slightly brighter on hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Darker shadow on hover */
}

.footer-social-nav ul li a i {
  transition: transform 0.3s ease-in-out;
}

.footer-social-nav ul li:hover i {
  transform: rotate(15deg); /* Adds a slight rotation on hover */
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer-social-nav ul {
    justify-content: center;
    gap: 15px; /* Reduce gap between icons on smaller screens */
  }

  .footer-social-nav ul li a {
    font-size: 13px; /* Reduce icon size on mobile */
    padding: 8px;
  }
}

/* For footer ICO Ending */

/* Pricing style */

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");

/* PRICING TABLE */
.pricing-table {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligns content to the top of the card */
  flex-wrap: wrap; /* For responsiveness */
  margin-top: 50px;
  padding: 90px;
}

.card {
  width: 220px;
  height: 500px; /* Reduced height to make content more compact */
  padding: 40px; /* Adjusted padding for better spacing */
  border-radius: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures even space distribution */
  align-items: center;
  position: relative;
  overflow: hidden; /* Prevent content overflow */
  box-shadow: 2px 2px 46px -4px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease-in-out;
  margin: 20px; /* Adds space between each card */
  background-color: white;
  font-size: 0.9rem; /* Adjusted font size for readability */
}

/* Hover effect on cards */
.card:hover {
  transform: scale(1.1); /* Slight enlargement on hover */
}

/* Card 1: Basic Plan */
.card:nth-child(1) {
  background: linear-gradient(to left, #91eae4, #86a8e7, #7f7fd5);
}

/* Card 2: Standard Plan */
.card:nth-child(2) {
  margin: 0 30px;
  z-index: 2;
  width: 220px;
  height: 500px; /* Adjusted height */
  background: linear-gradient(to right, #ff4b2b, #ff416c);
}

/* Card 3: Premium Plan */
.card:nth-child(3) {
  background: linear-gradient(to right, #96c93d, #00b09b);
}

/* Subscription Plan Type */
.card .type {
  margin-top: 15px; /* Reduced margin for better alignment */
  letter-spacing: 0.1rem;
  font-size: 1.5rem; /* Adjusted font size for clearer visibility */
}

/* Price Display */
.card .price {
  font-size: 4.5rem; /* Reduced font size for better balance */
  position: relative;
  margin: 10px 0px 20px;
  z-index: 2;
}

.card .price span {
  font-size: 1.9rem;
  position: absolute;
  left: -10%;
  top: 60%;
}

/* Plan title with borders */
.card .plan {
  font-size: 1.0rem;
  position: relative;
  margin-bottom: 10px;
}

/* Plan details list */
.card .details {
  text-transform: capitalize;
  list-style: none;
  padding: 0;
}

.card .details li {
  margin: 10px 0px;
  text-align: center;
  font-size: 1.0rem;
}

/* Subscribe Button */
.card .buy-button {
  cursor: pointer;
  position: absolute;
  width: 80%; /* Button fills the bottom */
  height: 60px;
  background: #ffffff;
  border-radius: 70px;
  bottom: 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.card .buy-button a {
  color: #333745;
  line-height: 60px;
  font-size: 1.2rem;
}

/* Hover effect on the button */
.card:hover .buy-button {
  width: 100%;
  bottom: 0;
  border-radius: 0;
}

.card:hover .buy-button a {
  left: 50%;
  transform: translate(-50%, 0);
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
  .pricing-table {
    flex-direction: column; /* Stack the cards vertically on smaller screens */
    align-items: center;
  }

  .card {
    width: 90%; /* Make cards take up most of the screen width */
    margin-bottom: 30px;
  }

  .card:nth-child(2) {
    margin: 0; /* Remove margin for Awesome plan on smaller screens */
    width: 90%;
    height: auto; /* Allow flexible height */
  }
}

/* Keyframes for text animation */
@keyframes text-hover {
  0% {
    right: -30%;
  }
  50% {
    right: -37%;
  }
  100% {
    right: -30%;
  }
}

/* Team Section Paragraph Styling */
.team-area .single-team-member p {
  color: #ffffff;  /* Ensuring the text is white to contrast with the background */
  font-size: 16px; /* Adjust font size to ensure readability */
  font-weight: 300; /* Slightly lighter font-weight to match design */
  text-align: left; /* Center the text under the team member's name */
  margin-top: 10px; /* Add spacing between the name and role */
}

/* CTA Section Styling */
/* .cta-area .cta-content h2 {
  color: #ffffff; /* White color for the heading 
  font-size: 36px; /* Larger font size for the heading 
  font-weight: 700; /* Bold font for emphasis 
  text-align: center; /* Center the heading 
  margin-bottom: 20px; /* Spacing below the heading 
} */

.cta-area .cta-content p {
  color: #ffffff; /* White color for the paragraph */
  font-size: 18px; /* Ensure readable font size */
  font-weight: 300; /* Light font weight for a modern look */
  text-align: center; /* Center the paragraph */
  max-width: 600px; /* Limit the paragraph width for better readability */
  margin: 0 auto 30px auto; /* Center it and add space below for the button */
}

/* .cta-area .cta-content .btn {
  background-color: #ff416c; /* A vibrant color for the button 
  color: #ffffff; /* White text on the button 
  font-size: 16px; /* Button font size 
  padding: 12px 30px; /* Padding for better clickability 
  border-radius: 25px; /* Rounded corners for modern look 
  text-transform: uppercase; /* Uppercase text for the button 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Button shadow for depth 
  transition: all 0.3s ease; /* Smooth hover transition 
} */

/* Hover effect for CTA button */
/* .cta-area .cta-content .btn:hover {
  background-color: #ff2b4d; /* Slightly darker shade on hover 
  transform: translateY(-2px); /* Slight lift effect on hover 
} */

/* Initially hide albums that are not in the first 6 */
/* .madnation-albums {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Ensure even spacing *
  gap: 20px; /* Add space between items *
}

.single-album-item {
  margin-bottom: 30px;
  width: calc(16.66% - 20px); /* Ensure 6 columns layout with spacing *
  transition: transform 0.3s ease;
}

.single-album-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Add shadow for better visuals 
}

.single-album {
  text-align: center;
}

.album-info h5 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.album-info p {
  font-size: 14px;
  color: #777;
}

.load-more-btn {
  margin-top: 30px;
}

.hidden {
  display: none; /* Keep hidden items invisible *
}

.load-more-btn .btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.load-more-btn .btn:hover {
  background-color: #ff416c; /* Add hover effect for better user interaction *
}

/* Responsive adjustments *
@media only screen and (max-width: 1200px) {
  .single-album-item {
      width: calc(25% - 20px); /* Adjust to 4 columns on medium screens *
  }
}

@media only screen and (max-width: 768px) {
  .single-album-item {
      width: calc(33.33% - 20px); /* Adjust to 3 columns on small screens *
  }
}

@media only screen and (max-width: 576px) {
  .single-album-item {
      width: calc(50% - 20px); /* Adjust to 2 columns on very small screens *
  }
} */

/* Shiny link */

.shiny-link {
  position: relative;
  display: inline-block;
  color: #fff; /* Change to your desired text color */
  text-decoration: none;
  background-color: #86a8e7; /* Change to your desired background color */
  padding: 10px 15px;
  border-radius: 5px;
  overflow: hidden;
}

.shiny-link::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(30deg);
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
      left: -200%;
  }
  100% {
      left: 200%;
  }
}


/* Team section gradient background and animation */
.team-area {
  background: linear-gradient(315deg, rgba(101, 0, 94, 1) 3%, rgba(60, 132, 206, 1) 38%, rgba(48, 238, 226, 1) 68%, rgba(255, 25, 25, 1) 98%);
  animation: team-gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
  padding: 100px 0;
}

/* Keyframes specific to the team section background animation */
@keyframes team-gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

/* Waves at the bottom of the team section */
.team-area .wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: absolute;
  width: 200%;
  height: 12em;
  animation: team-wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.team-area .wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: team-wave 18s linear reverse infinite;
  opacity: 0.8;
}

.team-area .wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: team-wave 20s -1s reverse infinite;
  opacity: 0.9;
}

/* Keyframes for the wave animation */
@keyframes team-wave {
  2% {
      transform: translateX(1);
  }
  25% {
      transform: translateX(-25%);
  }
  50% {
      transform: translateX(-50%);
  }
  75% {
      transform: translateX(-25%);
  }
  100% {
      transform: translateX(1);
  }
}


.team-area .single-team-member {
  text-align: center;
  margin-bottom: 100px;
  z-index: 1;
  position: relative;
}

.team-area .single-team-member .pic {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.team-area .single-team-member .pic:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}

.team-area .single-team-member:hover .pic:after {
  opacity: 1;
}

.team-area .single-team-member .pic img {
  width: 100%;
  height: auto;
}

.team-area .single-team-member .social {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

.team-area .single-team-member:hover .social {
  opacity: 1;
}

.team-area .single-team-member .social li {
  display: inline-block;
}

.team-area .single-team-member .social li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 15px;
  color: #fff;
  margin-right: 10px;
  transition: all 0.5s ease 0s;
}

.team-area .single-team-member .social li a:hover {
  background: #fff;
  color: #000;
}

.team-area .single-team-member .team-content {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dotted #ddd;
  position: absolute;
  bottom: -70px;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease 0s;
}

.team-area .single-team-member:hover .team-content {
  border: 2px dotted #002bae;
}

.team-area .single-team-member .team-info {
  width: 100%;
  color: #464646;
  position: absolute;
  bottom: 12px;
  left: 0;
}

.team-area .single-team-member .title {
  font-size: 20px;
  font-weight: 600;
  color: #464646;
  margin: 15px 0 5px 0; /* Add margin for spacing above and below the title */
  transition: all 0.5s ease 0s;
  text-align: center; /* Center align title */
}

.team-area .single-team-member:hover .title {
  color: #00adae;
}

.team-area .single-team-member .post {
  display: block;
  font-size: 14px;
  color: #f8f3f3;
  margin-bottom: 10px; /* Add spacing below the position */
  text-align: center; /* Center align position */
}

/* CTA Section Styling starting */
.cta-area {
  background-color: #f5f5f5;
  padding: 100px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-area .cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
}

.cta-area h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fbfafa;
}

.cta-area p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

/* Contact Us Button Styling */
.cta-area .btn {
  font-size: 16px;
  font-weight: 600;
  padding: 5px 25px;
  background-color: #007bff;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Center the text properly */
.cta-area .btn span {
  display: block;
  width: 100%;
  text-align: center;
}

/* Shiny effect */
.cta-area .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -75px;
  width: 50px;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(25deg);
  opacity: 0;
  transition: left 0.5s ease, opacity 0.5s ease;
}

.cta-area .btn:hover::before {
  left: 120%;
  opacity: 0.6;
}

/* Button hover effect */
.cta-area .btn:hover {
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-area h2 {
      font-size: 28px;
  }

  .cta-area p {
      font-size: 16px;
  }

  .cta-area .btn {
      font-size: 14px;
      padding: 3px 20px;
  }
}
/* CTA Section Styling ending */



/* Booking Area Styling starting */
.booking-area {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); /* Dark background with gradient */
  padding: 100px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.booking-area h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px; /* Spaced out for a bold, modern feel */
}

/* Form Input Fields Styling */
.booking-form .form-control {
  background-color: rgba(81, 68, 68, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #626060;
  border-radius: 8px;
  padding: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

/* Focus and Hover Effects */
.booking-form .form-control:focus,
.booking-form .form-control:hover {
  border-color: #ff0077; /* Pink border on focus */
  box-shadow: 0 0 15px rgba(255, 0, 119, 0.6);
  background-color: rgba(255, 255, 255, 0.2); /* Slightly brighter background */
}

/* Label Styling */
.booking-form label {
  font-size: 14px;
  color: #bbb;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Submit Button with Shiny Effect */
.oneMusic-btn {
  background: linear-gradient(135deg, #ff0077, #7a00ff); /* Gradient from pink to purple */
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.4s ease, color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  cursor: pointer;
  border: none;
  text-align: center;
}

/* Hover Effect for Button */
.oneMusic-btn:hover {
  background: linear-gradient(135deg, #7a00ff, #ff0077); /* Reverse gradient on hover */
  color: #fff;
}

/* Shiny Effect on Button */
.oneMusic-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -75px;
  width: 50px;
  height: 200%;
  background: rgba(216, 211, 211, 0.5);
  transform: rotate(25deg);
  opacity: 0;
  transition: left 0.5s ease, opacity 0.5s ease;
  z-index: 0;
}

.oneMusic-btn:hover::before {
  left: 120%;
  opacity: 0.6;
}

/* Form Group Spacing */
.booking-form .form-group {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-area h3 {
      font-size: 28px;
  }

  .booking-form .form-control {
      font-size: 14px;
  }

  .oneMusic-btn {
      font-size: 14px;
      padding: 12px 30px;
  }
}
/* Booking Area Styling ending */



/* SVG Styling Starting*/

/* Import fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

/* SVG Text Animation */
svg {
  font-family: 'Montserrat', sans-serif;
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

svg text {
  text-transform: uppercase;
  animation: stroke 5s infinite alternate;
  stroke-width: 2;
  stroke: #c07f03;
  font-size: 140px;
  fill: none;
}

@keyframes stroke {
  0% {
      fill: rgba(72,138,20,0); 
      stroke: rgba(177, 115, 3);
      stroke-dashoffset: 25%; 
      stroke-dasharray: 0 50%; 
      stroke-width: 2;
  }
  70% {
      fill: rgba(72,138,20,0); 
      stroke: rgba(178, 116, 3);
  }
  80% {
      fill: rgba(72,138,20,0); 
      stroke: rgba(180, 118, 3); 
      stroke-width: 3;
  }
  100% {
      fill: rgba(191, 126, 3); 
      stroke: rgba(54,95,160,0); 
      stroke-dashoffset: -25%; 
      stroke-dasharray: 50% 0; 
      stroke-width: 0;
  }
}

/* Slider Styles */
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .slider {
      width: 100%; /* Full width for mobile */
  }
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

.slide {
  height: 100px;
  width: 250px;
}

.slide img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* Hover effect for slide images */
.slide:hover img {
  transform: scale(1.05);
}

/* CTA Section Styling */
.cta-content h2 {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-content p {
  font-family: 'Playfair Display', serif;
  color: #bbb;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Our Partners Heading */
h3 {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 30px;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
  .cta-content h2 {
      font-size: 30px; /* Reduce headline size on mobile */
  }

  .cta-content p {
      font-size: 16px; /* Reduce paragraph font size */
  }

  h3 {
      font-size: 24px; /* Smaller partner section heading */
  }
}

/* Our Partners Heading */
h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

/* Add subtle font transitions for a modern feel */
.cta-content h2, .cta-content p {
  transition: color 0.3s ease-in-out;
}

/* Hover effect to enhance interaction */
.cta-content h2:hover {
  color: #ff0077;
}

/* SVG Styling Ending*/

/* Lottie Animation */

.dotlottie-player {
  position: relative;
  display: flex; /* Use flexbox to center the content */
  justify-content: center;
  align-items: center; /* Vertically and horizontally center the player */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dotlottie-player .lottie-player {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Center the player horizontally */
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
  .dotlottie-player .lottie-player {
    width: 200%; /* Scale down for smaller screens */
    height: 200%;
  }
}

/* Tablet specific adjustments */
@media (max-width: 1024px) and (min-width: 768px) {
  .dotlottie-player .lottie-player {
    width: 150%; /* Scale for tablet screens */
    height: 150%;
  }
}


/* .dotlottie-player .dotlottie-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  opacity: 0.9;
} */

/* .dotlottie-player .dotlottie-controls .dotlottie-control {
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.5rem;
  margin: 0.5rem;
} */

/* .dotlottie-player .dotlottie-controls .dotlottie-control:hover {
  background: rgba(255, 255, 255, 0.1);
} */

/*test section*/

/* General Styles */
.text-blk {
  margin: 0;
  line-height: 25px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.outer-container {
  padding: 20px;
  background-color: #f4fcff;
}

.inner-container {
  max-width: 1320px;
  flex-direction: column;
  align-items: center;
  margin: 50px auto;
}

.section-head-text {
  font-size: 35px;
  font-weight: 700;
  color: #0087b1;
  text-align: center;
  margin-bottom: 10px;
}

.section-subhead-text {
  font-size: 20px;
  color: #999;
  text-align: center;
  margin-bottom: 40px;
}

.artist-card-container {
  width: 100%;
  margin: 0 auto;
}

.artist-card {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.artist-card:hover {
  transform: translateY(-10px);
}

.img-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #4a76a8;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.social-media-links {
  width: 125px;
  display: flex;
  justify-content: space-between;
}


.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-name {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-top: 15px;
}

.artist-genre {
  font-size: 18px;
  color: #0087b1;
  margin-top: 5px;
}

/* Slick Carousel Custom Styles */
#artist-carousel {
  margin: 0 auto;
  padding: 20px 0;
}

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

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 135, 177, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}

.slick-prev:before,
.slick-next:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.slick-prev {
  left: -60px;
}

.slick-next {
  right: -60px;
}

.slick-prev:before {
  transform: rotate(-135deg);
}

.slick-next:before {
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #0087b1;
}

.slick-dots li.slick-active button:before {
  color: #0087b1;
}

/* Monthly Discover Section */

.monthly-discover-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.monthly-discover-title {
  text-align: center;
  font-size: 4rem;
  font-family: 'Abril Fatface', sans-serif;
  color: hsl(15, 75%, 40%);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.monthly-discover-section .untitled {
  position: absolute;
  height: 100%;
  width: 100%;
  animation: rotateHue infinite 20s linear;
  animation-delay: 0.625s;
}

@keyframes rotateHue {
  0% { filter: hue-rotate(0deg); }
  20% { filter: hue-rotate(0deg); }
  25% { filter: hue-rotate(90deg); }
  45% { filter: hue-rotate(90deg); }
  50% { filter: hue-rotate(180deg); }
  70% { filter: hue-rotate(180deg); }
  75% { filter: hue-rotate(270deg); }
  95% { filter: hue-rotate(270deg); }
  100% { filter: hue-rotate(360deg); }
}

.monthly-discover-section .untitled__shutters {
  position: absolute;
  height: 150vmax;
  width: 150vmax;
  left: calc(50% - 75vmax);
  top: calc(50% - 75vmax);
  pointer-events: none;
  z-index: 2;
  animation: rotateFrame 10s linear infinite;
}

@keyframes rotateFrame {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(180deg); }
}

.monthly-discover-section .untitled__shutters:before,
.monthly-discover-section .untitled__shutters:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-color: #b3401a;
  pointer-events: auto;
}

.monthly-discover-section .untitled__shutters:before {
  bottom: 50%;
  animation: openTop 5s infinite;
}

@keyframes openTop {
  0% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
  }
  40% {
    transform: translate3d(-50%, -65vmax, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  70% {
    transform: translate3d(-50%, -65vmax, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
}

.monthly-discover-section .untitled__shutters:after {
  top: 50%;
  animation: openBottom 5s infinite;
}

@keyframes openBottom {
  0% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.8, 0, 0.1, 1);
  }
  40% {
    transform: translate3d(-50%, 65vmax, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  70% {
    transform: translate3d(-50%, 65vmax, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
    animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
}

.monthly-discover-section .untitled__slides {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #b3401a;
}

.monthly-discover-section .untitled__slide {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  animation: showHideSlide infinite 20s steps(1);
}

@keyframes showHideSlide {
  0% {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  25% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}

.monthly-discover-section .untitled__slide:nth-child(1) {
  animation-delay: 0s;
}
.monthly-discover-section .untitled__slide:nth-child(1) .untitled__slideBg {
  background-image: url(https://raw.githubusercontent.com/08MadNation/TEST/refs/heads/main/images/_DSC1655.jpg);
}

.monthly-discover-section .untitled__slide:nth-child(2) {
  animation-delay: 5s;
}
.monthly-discover-section .untitled__slide:nth-child(2) .untitled__slideBg {
  background-image: url(https://raw.githubusercontent.com/08MadNation/TEST/refs/heads/main/images/_DSC1709.jpg);
}

.monthly-discover-section .untitled__slide:nth-child(3) {
  animation-delay: 10s;
}
.monthly-discover-section .untitled__slide:nth-child(3) .untitled__slideBg {
  background-image: url(https://raw.githubusercontent.com/08MadNation/TEST/refs/heads/main/images/_DSC1715.jpg);
}

.monthly-discover-section .untitled__slide:nth-child(4) {
  animation-delay: 15s;
}
.monthly-discover-section .untitled__slide:nth-child(4) .untitled__slideBg {
  background-image: url(https://raw.githubusercontent.com/08MadNation/TEST/refs/heads/main/images/_DSC1891.jpg);
}

.monthly-discover-section .untitled__slideBg {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-color: #b3401a;
  background-blend-mode: hard-light;
  opacity: 1;
  z-index: -1;
  animation: bgInOut 5s infinite;
}

@keyframes bgInOut {
  0% {
    transform: rotate(-45deg) scale(1.1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  33% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  66% {
    transform: rotate(0deg);
    animation-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  }
  100% {
    transform: rotate(45deg) scale(0.9);
  }
}

.monthly-discover-section .untitled__slideContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  color: white;
  font-family: "Abril Fatface", sans-serif;
  line-height: 0.8;
  letter-spacing: -0.025em;
  z-index: 2;
  opacity: 1;
  text-shadow: 0 0 0.5em rgba(179, 64, 26, 0.25);
  mix-blend-mode: lighten;
}

.monthly-discover-section .untitled__slideContent span {
  display: block;
  font-size: 10vmin;
}

.monthly-discover-section .button {
  font-family: "Roboto Mono", sans-serif;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2vmin;
  display: inline-block;
  position: relative;
  border: 3px solid white;
  box-shadow: -0.5vmin 0.5vmin 0 rgba(255, 255, 255, 0.5);
  background: transparent;
  margin-top: 5vmin;
  mix-blend-mode: lighten;
  color: white;
  padding: 2vmin 2vmin 1.8vmin 2vmin;
  letter-spacing: 0.1em;
  text-shadow: none;
  line-height: 1;
  transform: translate3d(0.5vmin, -0.5vmin, 0);
  transition: all 100ms linear;
}

.monthly-discover-section .button:hover {
  transform: translate3d(1vmin, -1vmin, 0);
  box-shadow: -1vmin 1vmin 0 rgba(255, 255, 255, 0.5);
  background: white;
  color: black;
}

.monthly-discover-section .button:active {
  transform: translate3d(0px, 0px, 0);
  box-shadow: 0px 0px 0 rgba(255, 255, 255, 0.5);
}

/* Talents Section */

/* Scoped Styles for Talents Section */
.talent-container {
  max-width: 1200px;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.talent-styled-title {
  font-size: 3em;
  text-align: center;
  color: #ed363a;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.talent-talents-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.talent-card {
  position: relative;
  margin: 20px;
  width: 300px;
  height: 400px;
  background: #fff;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  transition: 1s;
  box-shadow: inset 100px 0 50px rgba(0, 0, 0, 0.5);
  display: none;
}

.talent-card:nth-child(-n + 6) {
  display: block; /* Show the first 6 cards */
}

.talent-load-more-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.talent-card:hover {
  z-index: 1111;
  transform: perspective(2000px) rotate(-10deg);
  box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.5);
}

.talent-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  box-sizing: border-box;
  transform-origin: left;
  z-index: 1;
  transition: 1s;
}

.talent-img-container img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.talent-card:hover .talent-img-container {
  transform: rotateY(-135deg);
}

.talent-card-details {
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  padding: 20px;
  color: #000;
}

.talent-card-details h2 {
  margin: 0;
  padding: 0.5em 0;
  text-transform: uppercase;
  font-size: 1.8em;
  color: #ed363a;
}

.talent-card-details p {
  margin: 0;
  padding: 0;
  line-height: 25px;
  font-size: 1em;
}

.talent-load-more-container {
  margin-top: 40px;
  text-align: center;
}

.talent-load-more-btn {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #ed363a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.talent-load-more-btn.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.talent-load-more-btn:hover {
  background-color: #c52a2f;
}

/* Center the video container */
.video-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  height: 100vh;          /* Full viewport height */
  background-color: #f5f3f3; /* Optional: Add a background color */
}

/* Ensure the video player is responsive */
.video-js {
  max-width: 100%; /* Ensures the video doesn't overflow its container */
  max-height: 100%;
}

/* Description section */
.description {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.promotion {
  position: relative;
  font-family: Arial, sans-serif;
  font-size: large;
  gap: 40px;
  padding: 40px;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .video-container {
    height: auto; /* Allow the container to grow with content */
    padding: 10px; /* Reduce padding for smaller screens */
  }

  .video-js {
    max-width: 90%; /* Slightly smaller video on mobile */
  }

  .description {
    font-size: 14px; /* Smaller font size for mobile */
    margin-bottom: 10px; /* Reduce margin for smaller screens */
  }

  .promotion {
    font-size: medium; /* Smaller font size for mobile */
    gap: 20px; /* Reduce gap between elements */
    padding: 20px; /* Reduce padding for smaller screens */
  }
}
