:root {
  --white: #fff;

  --black: #000;

  --primary-color: #008be7;

  --body-font: "Josefin Sans", sans-serif;

  --heading-font: "Play", sans-serif;
}

/*

    font-family: "Josefin Sans", sans-serif;

    font-family: "Play", sans-serif;

 */

html,
body {
  overflow-x: hidden;

  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);

  -webkit-font-smoothing: antialiased;

  font-size: 15px;

  line-height: 27px;
}

a {
  text-decoration: none !important;

  display: inline-block;
}

p {
  font-size: 16px;

  color: #adadad;

  font-weight: 400;

  line-height: 26px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

img {
  width: 100%;

  height: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;

  box-shadow: none;
}

a:hover,
a:focus {
  text-decoration: none;

  outline: none;

  color: #fff;
}

ul,
ol {
  padding: 0;

  margin: 0;
}

/*=== Common Css Start ===*/

/*--- Section Spacing Start ---*/

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

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

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

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

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

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

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

/*--- Section Spacing End ---*/

/*--- Section Heading Start ---*/

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

.section-title.center-title {
  text-align: center;
}

.section-title.center-title h2:after {
  right: 0;

  margin: 0 auto;
}

.section-title span {
  color: #ffffff;

  display: block;

  font-size: 16px;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 6px;
}

.section-title h2 {
  color: #ffffff;

  font-weight: 700;

  text-transform: uppercase;

  position: relative;

  padding-bottom: 25px;
}

.section-title h2:after {
  position: absolute;

  left: 0;

  bottom: 0;

  height: 5px;

  width: 70px;

  background: #00bfe7;

  content: "";
}

/*--- Section Heading End ---*/

/*--- Button Start ---*/

.btn {
  font-size: 17px;

  border-radius: 0px;

  padding: 17px 30px;

  position: relative;

  border: 0px;

  z-index: 1;
}

.primary-btn {
  display: inline-block;

  font-size: 15px;

  font-family: "Play", sans-serif;

  font-weight: 700;

  padding: 14px 32px 12px;

  color: #ffffff;

  text-transform: uppercase;

  letter-spacing: 2px;

  position: relative;

  z-index: 1;
}

.primary-btn:hover:before {
  height: 100%;

  width: 100%;
}

.primary-btn:hover:after {
  height: 100%;

  width: 100%;
}

.primary-btn:before {
  position: absolute;

  left: 0;

  top: 0;

  height: 30px;

  width: 30px;

  border-left: 2px solid #00bfe7;

  border-top: 2px solid #00bfe7;

  content: "";

  z-index: -1;

  -webkit-transition: all, 0.7s;

  -o-transition: all, 0.7s;

  transition: all, 0.7s;
}

.primary-btn:after {
  position: absolute;

  right: 0;

  bottom: 0;

  height: 30px;

  width: 30px;

  border-right: 2px solid #00bfe7;

  border-bottom: 2px solid #00bfe7;

  content: "";

  z-index: -1;

  -webkit-transition: all, 0.7s;

  -o-transition: all, 0.7s;

  transition: all, 0.7s;
}

.site-btn {
  font-size: 15px;

  color: #ffffff;

  background: #00bfe7;

  font-family: "Play", sans-serif;

  font-weight: 700;

  border: none;

  display: inline-block;

  text-transform: uppercase;

  letter-spacing: 2px;

  padding: 14px 34px 12px;

  width: 100%;
}

.play-cover {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: rgba(0, 0, 0, 0.3);

  transition: all 0.5s;
}

.play-btn {
  position: relative;

  display: inline-block;

  width: 54px;

  height: 54px;

  border-radius: 50%;

  line-height: 56px;

  text-align: center;

  background: var(--primary-color);

  color: var(--white);

  font-size: 19px;

  z-index: 1;

  transition: all 0.5s;
}

.play-btn i {
  margin-left: 3px;
}

.play-btn:hover {
  color: var(--white);
}

.play-btn:before {
  content: "";

  position: absolute;

  z-index: 0;

  left: 50%;

  top: 50%;

  transform: translateX(-50%) translateY(-50%);

  display: block;

  width: 60px;

  height: 60px;

  background: var(--primary-color);

  border-radius: 50%;

  z-index: -1;

  -webkit-animation: pulse-border 1500ms ease-out infinite;

  animation: pulse-border 1500ms ease-out infinite;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);

    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);

    opacity: 0;
  }
}

/*--- Button End ---*/

.set-bg {
  background-repeat: no-repeat;

  background-size: cover;

  background-position: top center;
}

/*====== Common Css End ======*/

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

.header-main {
  position: relative;

  width: 100%;

  z-index: 999;

  background: var(--black);
}

.header-info-box {
  border-right: 1px solid #dedede;
}

.header-top .header-info-content,
.header-top .header-info-content a {
  color: #858585;
}

.header-info-icon {
  height: 26px;

  color: var(--black);

  background: var(--white);

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 4px;

  margin-right: 10px;

  font-size: 12px;
}

.navbar {
  padding: 0px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container-fluid {
  padding: 0 120px;
}

.navbar-brand {
  width: 180px;
}

.navbar-brand span {
  font-family: "Prompt", sans-serif;

  font-size: 14px;

  color: var(--white);

  font-weight: 600;

  text-transform: uppercase;
}

.nav-item:not(:last-child) {
  margin-right: 20px;
}

.navbar-collapse ul li {
  margin-right: 50px;
}

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

.navbar-collapse ul li a {
  font-size: 17px;

  font-weight: 400;

  text-transform: capitalize;

  color: var(--white);

  transition: all 0.3s ease-out;

  padding: 32px 0px !important;

  position: relative;
}

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

  transition: all 0.5s ease-in;
}

.navbar-collapse ul li a::before {
  position: absolute;

  left: 0;

  bottom: 0;

  width: 0%;

  height: 3px;

  content: "";

  background: var(--primary-color);

  transition: all 0.5s;
}

.navbar-collapse ul li a:hover::before,
.navbar-collapse ul li.active a::before {
  width: 100%;

  transition: all 0.5s;
}

.navbar-text .btn-header {
  display: inline-block;

  cursor: pointer;

  outline: none;

  vertical-align: middle;

  background: var(--primary-color);

  padding: 12px 30px;

  color: var(--white);

  font-size: 15px;

  font-weight: 500;

  position: relative;

  z-index: 9;

  border-radius: 6px;

  border: 0px;
}

.navbar-text .btn-header span {
  font-size: 16px;

  margin-right: 8px;
}

/* Topbar Start */

.topbar {
  background: var(--white);
}

.social-header ul li {
  margin-right: 30px;
}

.social-header ul li:last-child {
  margin-right: 0px;
}

.header-social h6 {
  color: var(--black);
}

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

.header-social ul li:last-child {
  margin-right: 0px;
}

.header-social ul li a {
  width: 26px;

  height: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 6px;

  border-radius: 3px;

  background: var(--black);
}

.header-social ul li a img {
  filter: brightness(0) invert(1);
}

.header-contact ul li {
  margin-right: 35px;
}

.header-contact ul li:last-child {
  margin-right: 0px;
}

.header-contact ul li a {
  font-size: 17px;

  color: var(--black);

  position: relative;

  padding-left: 40px;
}

.header-contact ul li a span {
  position: absolute;

  left: 0;

  top: 0px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  width: 26px;

  height: 26px;

  background: var(--black);

  color: var(--white);

  border-radius: 3px;
}

@-webkit-keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    -o-transform: none;

    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    -o-transform: none;

    transform: none;
  }
}

.header-show {
  background: var(--black);

  position: fixed;

  top: 0;

  z-index: 999;

  width: 100%;

  -webkit-animation-name: animationFade;

  -o-animation-name: animationFade;

  animation-name: animationFade;

  -webkit-animation-duration: 1s;

  -o-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-fill-mode: both;

  -o-animation-fill-mode: both;

  animation-fill-mode: both;

  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-show .topbar {
  display: none;
}

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

/*------ Carousel Start ------*/

.carousel-item {
  background: var(--black);

  position: relative;

  z-index: 9;

  height: 790px;
}

.carousel-item::before {
  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  content: "";

  background: rgba(0, 0, 0, 0.1);

  z-index: 1;
}

.carousel-item img {
  opacity: 1;

  object-fit: cover;
}

.banner-content-wrapper {
  max-width: 100%;

  width: 100%;

  position: absolute;

  right: 0;

  z-index: 9;

  top: 60%;

  transform: translateY(-50%);
}

.banner-heading,
.banner-paragraph {
  width: 60%;

  margin-bottom: 20px;

  margin-left: auto;

  margin-right: auto;
}

.banner-heading h1 {
  font-size: 56px;

  color: var(--white);

  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1),
    0px 18px 23px rgba(0, 0, 0, 0.1);

  font-weight: 700;
}

.banner-heading h6 {
  color: var(--primary-color);

  font-size: 30px;
}

.banner-paragraph p {
  font-size: 16px;

  line-height: 30px;

  color: var(--white);
}

.btn-banner-video span img {
  width: 28px;

  height: 28px;

  margin-top: -4px;

  filter: brightness(0) invert(1);
}

.carousel-control-next,
.carousel-control-prev {
  background: var(--black);

  width: 44px;

  height: 44px;

  font-size: 16px;

  z-index: 9;

  top: 50%;

  transform: translateY(-50%);

  opacity: 1;

  border-radius: 5px;
}

.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

/*------ Carousel End ------*/

/* Portfolio Home Start */

.work .section-title h2:after {
  left: 50%;

  transform: translateX(-50%);
}

.portfolio__item iframe {
  height: 300px;

  object-fit: cover;
}

/* Portfolio Home End */

/* Music Link Home  */

.music-home-grid a,
.music-photo {
  width: 100%;

  height: 100%;
}

.music-home-grid a img {
  object-fit: cover;
}

/* Music Link Home  */

/* Photo Gallery Home Start */

.photo-gallery {
  background: url(../img/team-bg.jpg) no-repeat center;

  background-size: cover;
}

.gallery-item {
  height: 340px;

  position: relative;

  overflow: hidden;
}

.gallery-item img {
  object-fit: cover;
}

.gallery-row [class*="col-"]:nth-child(2) {
  margin-top: -60px;
}

.gallery-row [class*="col-"]:nth-child(3) {
  margin-top: -120px;
}

.gallery-row [class*="col-"]:nth-child(4) {
  margin-top: -180px;
}

/* Photo Gallery Home End  */

/* Call To Action  */

.callto {
  background: url(../img/callto-bg.jpg) no-repeat center;

  background-size: cover;

  padding: 130px 0;
}

/* Call To Action  */

/* ====== Footer Start ====== */

.footer-main {
  z-index: 9;
}

.footer-main::before {
  position: absolute;

  background: #000231;

  left: 0;

  bottom: 0;

  width: 100%;

  height: calc(100%);

  content: "";

  z-index: -1;
}

.footer-logo {
  width: 200px;

  margin: 0 auto 25px;
}

.footer-links ul li {
  margin-right: 50px;
}

.footer-links ul li:last-child {
  margin-right: 0px;
}

.footer-links ul li a {
  color: var(--white);

  font-weight: 600;

  font-size: 18px;

  font-family: var(--heading-font);
}

.footer-box {
  height: 100%;

  padding: 15px;
}

.footer-address-icon {
  flex: 0 0 70px;

  height: 70px;

  margin-right: 20px;

  border-radius: 50%;

  background: linear-gradient(to top, #50006b, #b721e9);

  color: var(--white);

  font-size: 24px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.footer-address-text h5 {
  font-size: 22px;

  color: #e8beff;
}

.footer-address-text a {
  font-size: 16px;

  font-weight: 400;

  color: var(--white);
}

.copyright {
  padding: 10px 0;

  max-width: 70%;

  margin: 0 auto;

  background: linear-gradient(226deg, #ba00d5, #000231);

  border-radius: 25px;
}

.company-right,
.developer-right {
  font-size: 14px;

  font-weight: 600;

  color: var(--white);
}

.developer-right a {
  color: #ffffff;
}

.developer-right a:hover {
  color: var(--primary-color);
}

/* ====== Footer End ====== */

/*--- Breadcrumb Start  ---*/

.breadcrumb-option {
  background: url(../img/breadcrumb-bg.jpg) no-repeat center;
}

.breadcrumb__text h2 {
  color: #ffffff;

  font-size: 50px;

  font-weight: 700;

  margin-bottom: 12px;
}

.breadcrumb__links a {
  font-size: 16px;

  color: #ffffff;

  font-weight: 300;

  display: inline-block;

  margin-right: 32px;

  position: relative;
}

.breadcrumb__links a:after {
  position: absolute;

  right: -22px;

  top: -3px;

  content: "/";

  color: #adadad;

  font-size: 20px;
}

.breadcrumb__links span {
  font-size: 16px;

  color: #adadad;

  font-weight: 300;

  display: inline-block;
}

/*--- Breadcrumb End ---*/

/* About Cms Start  */

.testimonial {
  background: url(../img/testimonial-bg.jpg) no-repeat center;

  background-size: cover;
}

/* About Cms End  */

/* Service Cms Start  */

.callto__services {
  background: url(../img/calltos-bg.jpg) no-repeat center;
}

.logo {
  background: #100028;

  padding: 40px 20px 100px;
}

.logo__item {
  display: block;

  width: 100%;

  height: 100%;

  padding: 25px;

  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Cms End  */

/* Offcanvas Start  */

.offcanvas-header {
  background: #000231;

  color: var(--white);

  border-bottom: 1px solid #ffffff1a;
}

.offcanvas-contact .offcanvas-body {
  background: linear-gradient(180deg, #000231, #5c016d);
}

/* Offcanvas End  */

/* Audio Player Start  */

.player {
  background: linear-gradient(
    195deg,
    rgba(38, 16, 138, 1) 0%,
    rgba(145, 61, 181, 1) 100%
  );

  padding: 20px;

  border-radius: 12px;

  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.large-toggle-btn i,
.controls-box i {
  font-size: 24px;

  color: var(--primary-color);

  cursor: pointer;

  transition: transform 0.2s;
}

.large-toggle-btn i:hover,
.controls-box i:hover {
  transform: scale(1.2);
}

.track-title-text {
  font-size: 18px;

  color: #fff;
}

.audio-time {
  font-size: 14px;

  color: #aaa;
}

.progress-box .progress {
  height: 5px;

  background-color: #333;
}

.progress-indicator {
  background-color: var(--primary-color);
}

.play-list {
  margin-top: 30px;

  column-count: 2;

  column-gap: 15px;
}

.play-list-row {
  display: flex;

  align-items: center;

  padding: 12px 15px;

  transition: background 0.2s;

  cursor: pointer;

  width: 100%;

  border-radius: 5px;

  background: linear-gradient(
    195deg,
    rgba(38, 16, 138, 1) 0%,
    rgba(145, 61, 181, 1) 100%
  );

  margin-bottom: 15px;
}

.play-list-row:hover {
  background-color: #111;
}

.play-list-row.active .track-title a {
  color: var(--primary-color);
}

.track-number {
  width: 20px;

  text-align: right;

  color: #888;

  margin-right: 5px;
}

.track-title a {
  color: #fff;

  text-decoration: none;

  transition: color 0.2s;

  font-size: 17px;
}

.track-title a:hover {
  color: var(--primary-color);
}

.small-toggle-btn {
  width: 36px;

  height: 36px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  background: var(--bs-body-bg);
}

.small-toggle-btn i {
  font-size: 16px;

  color: var(--black);

  font-size: 15px;
}

.progress-box {
  width: 100%;
}

.large-toggle-btn {
  width: 60px;

  height: 60px;

  background: var(--white);

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;
}

.large-toggle-btn i,
.controls-box i {
  font-size: 15px;

  color: var(--black);

  cursor: pointer;

  transition: transform 0.2s;

  background: var(--white);

  width: 44px;

  height: 44px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;
}

/* Audio Player End  */

.footer-contact span {
  width: 38px;

  height: 38px;

  background: #fff;

  color: var(--black);

  display: flex;

  align-items: center;

  justify-content: center;

  position: absolute;

  left: 0;
}

.footer-contact p {
  padding-left: 48px;

  position: relative;
}

.footer-contact p:nth-child(3),
.footer-contact p:nth-child(2) {
  line-height: 48px;
}

.about__pic__item img {
  object-fit: cover;
}
