:root {
  --color-1: #0c0527;
}

@-webkit-keyframes fade {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes fade {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

a.non-style:hover,
a.non-style:focus {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.font-one {
  font-family: 'Bree Serif', serif;
}

.font-two {
  font-family: 'Bubblegum Sans', cursive;
}

.gradient {
  background: -webkit-gradient(linear, left top, right top, from(#cc1573), to(#5722a9));
  background: linear-gradient(to right, #cc1573, #5722a9);
}

.btn-1 {
  background: -webkit-gradient(linear, left top, right top, from(#cc1573), to(#5722a9));
  background: linear-gradient(to right, #cc1573, #5722a9);
  padding: 7px 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  border: none !important;
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
}

.btn-1:hover {
  -webkit-box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
}

.btn-1 a {
  color: inherit;
}

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  scroll-behavior: smooth;
}

body {
  position: relative;
  line-height: 25px;
  color: #fff;
}

header {
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0;
  z-index: 9999;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

header nav {
  -webkit-transition: background .5s;
  transition: background .5s;
}

header nav .first .logo img {
  cursor: pointer;
}

@media (max-width: 767px) {
  header nav .second {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  header nav .second {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  header nav .second {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  header nav .second {
    display: block !important;
  }
}

header nav .second ul {
  margin: 0;
  padding: 0;
}

header nav .second ul li {
  cursor: pointer;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  -webkit-transition: .3s;
  transition: .3s;
}

header nav .second ul li:hover {
  color: #bd177a;
}

header nav .second ul li.active {
  color: #bd177a;
}

header nav .second ul li a {
  color: inherit;
}

header nav .second ul li.drop-down {
  position: relative;
}

header nav .second ul li.drop-down ul.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #0c0527;
  min-width: 200%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  header nav .second ul li.drop-down ul.drop-menu {
    display: block !important;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

@media (min-width: 1200px) {
  header nav .second ul li.drop-down ul.drop-menu {
    display: block !important;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  header nav .second ul li.drop-down ul.drop-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  header nav .second ul li.drop-down ul.drop-menu {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  header nav .second ul li.drop-down:hover ul.drop-menu {
    pointer-events: all;
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  header nav .second ul li.drop-down:hover ul.drop-menu {
    pointer-events: all;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  header nav .second.active {
    width: 100%;
    height: 100%;
    background: #0c0527;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  header nav .second.active {
    width: 100%;
    height: 100%;
    background: #0c0527;
  }
}

@media (max-width: 767px) {
  header nav .second.active ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  header nav .second.active ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

header nav .third .social a {
  color: inherit;
}

header nav .third .social a .demo-icon {
  line-height: 25px;
  margin-right: 0.4em;
  margin-left: 0.4em;
  cursor: pointer;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

header nav .third .social a .demo-icon:hover {
  color: #bd177a;
}

header nav .fourth .menu .demo-icon {
  line-height: 25px;
  cursor: pointer;
  font-size: 28px;
}

header nav.mobile .second ul li.drop-down ul.drop-menu {
  position: static;
  min-width: unset;
  padding: 10px 0 0;
  background: transparent;
  color: #fff;
}

footer {
  background: #fff;
  padding: 100px 0;
  color: #6a6a6a;
}

footer div p {
  font-size: 14px;
}

footer div h3 {
  font-weight: 600;
  color: #000;
}

footer div a {
  color: #6a6a6a;
  font-weight: 100;
  -webkit-transition: .5s;
  transition: .5s;
  line-height: 33px;
}

footer div a:hover {
  color: #bd177a !important;
}

footer div .form-control {
  border-radius: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  height: auto;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none !important;
}

footer div .btn-1:hover {
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 60px rgba(0, 0, 0, 0.7);
}

.slider {
  height: 100vh;
  width: 100%;
}

@media (max-width: 767px) {
  .slider {
    height: 65vh;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider {
    height: 75vh;
  }
}

.slider .owl-item .slice {
  position: relative;
}

.slider .owl-item .slice .banner {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slider .owl-item .slice .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.slider .owl-item .slice .overlay h2 {
  font-size: 30vw;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.07);
  margin: 0;
}

.slider .owl-item .slice .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
}

.slider .owl-item .slice .caption h3 {
  position: relative;
  color: #fff;
  font-size: 13vw;
  margin: 0;
  text-shadow: 1.3vw 0 0 rgba(255, 45, 109, 0.2);
  letter-spacing: 10;
  margin-top: 20px;
}

.slider .owl-item .slice .caption h3 span {
  position: absolute;
  top: 0;
  left: -1.3vw;
  color: rgba(132, 57, 255, 0.2);
  margin: 0;
  text-shadow: none;
}

.slider .owl-item.active .slice .banner {
  -webkit-animation: fade 15s linear infinite;
          animation: fade 15s linear infinite;
}

.artist {
  position: relative;
  background: url("../images/banner/bg-4.jpg") center;
  background-size: cover;
  padding: 100px 0;
}

.artist .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 4, 48, 0.89);
}

.artist .artist-header {
  padding: 0 0 50px 0;
}

.artist .artist-header h2 {
  font-size: 3rem;
  font-weight: bolder;
}

.shows {
  background: #0c0527;
  padding: 100px 0;
}

.shows .shows-header {
  padding-bottom: 50px;
}

.shows .shows-header h2 {
  font-size: 3rem;
  font-weight: bolder;
}

.shows .items span.date {
  font-size: 1rem;
}

.shows .items span.date span {
  font-size: 2.5rem;
  font-weight: bolder;
}

.shows .items img {
  width: 84px;
  height: 84px;
}

.brand-name-artist {
  padding: 100px 0;
}

.brand-name-artist .banner .item {
  position: relative;
  overflow: hidden;
}

.brand-name-artist .banner .item img {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.brand-name-artist .banner .item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: 1s;
  transition: 1s;
  padding: 15px 30px;
}

.brand-name-artist .banner .item .description .play-pause span {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
}

.brand-name-artist .banner .item .description .play-pause span .demo-icon {
  color: #000;
  font-size: 20px;
  line-height: 50px;
  -webkit-transition: .5s;
  transition: .5s;
}

.brand-name-artist .banner .item .description .play-pause span .demo-icon.icon-off {
  color: #bd177a;
}

.brand-name-artist .banner .item .description .play-pause span:hover .demo-icon {
  color: #bd177a;
}

.brand-name-artist .banner .item:hover img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.brand-name-artist .banner .item:hover .description {
  background: #bd177a;
}

.listed {
  background: #0c0527;
  padding: 100px 0;
}

.listed .list-songs {
  background: #27203F;
}

@media (min-width: 1200px) {
  .listed .list-songs .list-songs-header {
    height: 25% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .listed .list-songs .list-songs-header {
    height: 25% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .listed .list-songs .list-songs-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .listed .list-songs .list-songs-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.listed .list-songs .list-songs-body {
  overflow-y: scroll;
  height: 50% !important;
}

.listed .list-songs .list-songs-body .songs {
  color: rgba(255, 255, 255, 0.5);
}

.listed .list-songs .list-songs-body .songs .name .demo-icon {
  line-height: 32px;
  cursor: pointer;
  color: #bd177a;
}

.listed .list-songs .list-songs-body .songs.active {
  color: #fff;
}

.listed .list-songs .list-songs-footer {
  background: #1D1633;
}

@media (min-width: 1200px) {
  .listed .list-songs .list-songs-footer {
    height: 25% !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .listed .list-songs .list-songs-footer {
    height: 25% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .listed .list-songs .list-songs-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .listed .list-songs .list-songs-footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.listed .list-songs .list-songs-footer div label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: bolder;
}

.listed .list-songs .list-songs-footer div span.play {
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
}

.listed .list-songs .list-songs-footer div span.play .demo-icon {
  color: #000;
  font-size: 20px;
  line-height: 50px;
  -webkit-transition: .5s;
  transition: .5s;
}

.listed .list-songs .list-songs-footer div span.play:hover .demo-icon {
  color: #bd177a;
}

.sections-search .one {
  position: relative;
  background: url("../images/banner/bg-1.jpg") center;
  background-size: cover;
  height: 500px;
}

.sections-search .two {
  position: relative;
  background: url("../images/banner/bg-9.jpg") center;
  background-size: cover;
  height: 500px;
}

.sections-search .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.sections-search .overlay h2 {
  font-weight: bolder !important;
}
