
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    color: #444444;
    font-family: "Poppins", serif;
    background: #fff;
}
p {
    color: #cfd1f1;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.3px;
    font-family: "Federo", sans-serif;
}
a {
  font-family: "Roboto", sans-serif;
  color: #252775;
  text-decoration: none;
}

a:hover {
  color: #252775;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Advent Pro", sans-serif;
  font-weight: 600;
  color: #353458;
}
a.theme-btn {
  margin: 1.5rem auto 0rem;
  display: inline-flex;
  color: #ffffff;
  padding: 0.8rem 1.2rem 0.8rem 1.2rem;
  transition: 0.3s ease;
  background: #c02323;
  text-transform: capitalize;
  font-weight: 500;
  border-radius: 4px;
  font-size: 16px;
  -webkit-clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
  border: dashed 1px #ffecec;
}
a.theme-btn i {
  margin-left: 0.9rem;
  font-size: 15px;
}
a.theme-btn2 {
    margin: 1.5rem auto 0rem;
    display: inline-block;
    color: #ffffff;
    padding: 0.8rem 1.7rem 0.8rem 1.7rem;
    transition: 0.3s ease;
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 4px;
    font-size: 16px;
    clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
    background: linear-gradient(90deg, rgb(93 50 226 / 27%) 0%, rgb(233 31 68 / 40%) 100%);
    text-align: center;
    font-family: "Federo", sans-serif;
    width: auto;
}
section{
  position:relative;
  padding: 60px 0;
  overflow: hidden;
}
.pd{
  padding: 0;
}
.pd-left{
  padding-left:0;
}
.pd-right{
  padding-right:0;
}
.owl-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 2rem 0 0;
}
button.owl-prev, button.owl-next {
  width: 44px;
  height: 44px;
  background: #E5AD1C !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-size: 33px !important;
  position: relative;
  border: solid 3px #ffffff !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f10e4a;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  position: fixed;
  z-index: 999;
  padding: 0 50px;
  background: transparent;
  width: 100%;
}
.header-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.2rem;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgb(24 29 51);
  width: 100%;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}
#header .logo img {
    width: 190px;
}
.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
.header-right img {
  width: 48px;
}
.call-header p, .call-header h5 {
  margin: 0;
}
.header-right a {
    font-family: "Advent Pro", sans-serif;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.4px;
    font-size: 16px;
    padding: 7px 16px;
    border-radius: 5px;
    background: linear-gradient(90deg, rgb(93 50 226 / 59%) 0%, rgb(233 31 68 / 36%) 100%);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
header svg{
  position: absolute;
  top: -30px;
}
.nav-row{
  position: relative;
}

.navbar {
  padding: 0;
  margin: auto;
  display: table;
}
.cls-1 {
  fill: #131520;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    font-size: 15px;
    font-weight: 400;
    color: #ffecec;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    position: relative;
    line-height: 90px;
    margin: 0 15px;
    font-family: "Advent Pro", sans-serif;
}
.nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  top: 0;
  height: 2px;
  background-color: #f4572e;
  transition: 0.4s ease;
}
.navbar li:hover .nav-link:before {
  width: 100%;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: #ff0066;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ea1826;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #13192b;
    letter-spacing: -0.2px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
    display: block;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 1px 20px;
    font-size: 16px;
    color: #37517e;
    font-weight: 500;
    line-height: 51px;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ea1826;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}



@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 75px 0 70px;
}
.theme-heading-sec {
    margin-bottom: 2.6rem;
    position: relative;
}
.theme-heading-sec h2 {
    text-transform: capitalize;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.7px;
    color: #ffffff;
    line-height: 1.1;
    z-index: 1;
    position: relative;
}
.theme-heading-sec h2 span {
  color: #f10e4a;
}
.theme-heading-sec h5 {
  color: #f4572e;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}
.owl-dots {
    text-align: center;
    margin-top: 2rem;
}
button.owl-dot {
    width: 10px;
    height: 9.8px;
    background: #fffdfd !important;
    margin-right: 12px;
    border-radius: 100px;
    box-shadow: 0px 0px 0px 4px hsl(0deg 100% 50% / 0%);
}
button.owl-dot.active {
    background: #f10e4a !important;
    box-shadow: 0px 0px 0px 6px hsl(12.42deg 90% 56.86% / 16%);
}

/*Banner*/

#demo {
  position: relative;
  overflow: hidden;
  background: #181D33;
  background-size: cover;
  background-position: center;
  width: 100%;
  margin-right: auto;
}
#demo:after {
  content: "";
  background: #0900ff;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  border-radius: 100px;
  filter: blur(100px);
  opacity: 0.5;
  left: -7%;
}
#demo:before {
  content: "";
  background: #ff0000;
  width: 450px;
  height: 450px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  filter: blur(200px);
  opacity: 0.6;
  right: 4%;
}
.banner-social-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(270deg);
  left: -5%;
  z-index: 99;
}
.banner-social-link a {
  color: #fff;
  font-family: "Advent Pro", sans-serif;
  margin: 0px 20px;
}
.carousel-inner:after {
    z-index: 1;
    background-image: url(assets/img/banner-bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}
.carousel-item {
    padding: 0;
    height: 100vh;
    z-index: 9!important;
}
div#demo .container-fluid {
  width: 80%;
  height: 100%;
}
div#demo .container-fluid .row {
  display: flex;
  height: 100%;
  align-items:center;
}
.banner-heading {
  padding-left: 3rem;
  padding-right: 3rem;
}
.banner-heading a.theme-btn2 {
    margin:0;
}
.banner-heading h1 {
    letter-spacing: -0.3px;
    text-transform: capitalize;
    color: #ffffff;
    font-size: 53px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 25px;
}
/* .banner-heading h1 span {
    color: #E04831;
} */
.banner-heading p {
    color: #aaacce;
    margin: 2rem 0 2rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 15px;
    padding: 0 20px 0 0px;
}
.ban-col{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.banner-rt-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-rt-col:before {
    content: "";
    width: 465px;
    height: 465px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: transparent;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: zoom 4s infinite;
    animation-delay: 1.5s;
}
.banner-rt-col:after {
    content: "";
    width: 465px;
    height: 465px;
    position: absolute;
    top: 50%;
    left: 50%;
    background: transparent;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
     animation: zoom1 4s infinite;
}
@keyframes zoom {
  0% {box-shadow: 0px 0px 0px 0px rgb(124 126 183 / 100%);}
  100% {box-shadow: 0px 0px 0px 80px rgb(124 126 183 / 0%);}
}
@keyframes zoom1 {
  0% {box-shadow: 0px 0px 0px 0px rgb(124 126 183 / 100%);}
  100% {box-shadow: 0px 0px 0px 80px rgb(124 126 183 / 0%);}
}
.banner-rt-col img {
    width: 485px;
}
.bslogo {
    width: 16% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.carousel-indicators {
  justify-content: center;
  margin-right: 7%;
  margin-left: 7%;
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  margin-right: 1px;
  margin-left: 1px;
  opacity: 1;
  border: solid 7px hsl(240deg 16.36% 10.78% / 0%);
  border-radius: 100px;
}
.carousel-indicators .active {
  border: solid 7px hsl(240deg 16.36% 10.78% / 18.04%);
}
.bannerAero {
    position: absolute;
    right: 4rem;
    z-index: 999;
    bottom: 1.5rem;
    width: auto;
    display: flex;
    justify-content: space-between;
}
.carousel-control-next, .carousel-control-prev {
    width: auto;
    height: 50px;
    position: relative;
    opacity: 1;
    font-family: "Advent Pro", sans-serif;
    letter-spacing: 1.5px;
    padding: 0 20px;
}


/*About Us*/

.about-carousel {
  max-width: 325px;
  width: 100%;
  border-radius: 177px;
  position: relative;
  overflow: hidden;
  border: solid 7px #513498;
  margin-left: auto;
  max-height: 475px;
  height: 100vh;
  margin-right: 5rem;
}
.about-misc-wrap .beat {
    position: absolute;
    right: 0;
    top: 37px;
}
.about-carousel img {
    max-height: 475px;
    height: 100vh;
    object-fit: cover;
    object-position: left;
}
.about-misc-wrap{
  position: relative;
}
.about-misc-wrap:before {
    content: "";
    background-image: url(https://html.vecurosoft.com/audicast/demo/assets/img/about/ab-3-2.png);
    width: 100%;
    height: 77px;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
}
.about-misc-wrap:after {
  content: "";
  width: 367px;
  height: 338px;
  background-image: url(assets/img/misc.svg);
  position: absolute;
  bottom: -9rem;
  background-repeat: no-repeat;
  right: -21px;
  background-size: 367px;
  margin-right: 5rem;
}
section.about-sec {
  max-height: 650px;
  height: 100vh;
  background: #181d33f5;
}
section.about-sec:after {
  content: "";
  background: var(--Gradient, linear-gradient(270deg, #0900ff36 0, #6e12997a 47.92%, hsl(317.46deg 100% 50% / 26%) 100%));
  width: 70%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.exp-box {
    background: hsl(312.19deg 69.16% 44.51% / 73%);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30%;
    border-radius: 8px;
    padding: 0.7rem;
}
.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.abt-content {
  width: 70%;
}
.exp {
  text-align: center;
}
section.about-sec .container {
  position: relative;
  z-index: 1;
}
.exp h3 {
  font-size:40px;
  font-weight: 700;
  color: #fff;
}
.exp p {
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.abt-rt-col {
  padding: 0 2rem 0 3rem;
}

/*Service*/

section.album-sec {
  background: #21263b;
}
section.album-sec .theme-heading-sec {
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
}
section.album-sec .theme-heading-sec:before {
    content: "New Release";
    font-size: 150px;
    text-transform: uppercase;
    font-family: "Advent Pro", sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    -webkit-text-stroke: 2px #852cc812;
    color: rgb(37 43 66 / 30%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.album-carousel .item {
    padding: 4rem 0 0rem;
}
.album-wrapper {
  position: relative;
  padding: 1.2rem;
}
.album-wrapper:before {
  content: "";
  width: 100%;
  position: absolute;
  border-radius: 20px;
  max-height: 342px;
  height: 100vh;
  transition: 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border: 3px solid;
  border-image: linear-gradient(to top, #5d32e2b0, #e91f8a) 1;
}
.album-wrapper:hover:before {
  max-height: 376px;
}
.album-img {
  margin-top: -4.5rem;
  position: relative;
}

.play-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #fff;
    margin: auto;
    position: relative;
    border: solid 5px #21263b;
    background: linear-gradient(90deg, #5d32e2 0%, #e91f8a 100%);
    z-index: 9;
    animation: playBtn 2s infinite;
}
@keyframes playBtn {
  0% {box-shadow: 0px 0px 0px 0px rgb(172 40 177 / 100%);}
  100% {box-shadow: 0px 0px 0px 16px rgb(172 40 177 / 0%);}
}
.album-title {
  text-align: center;
  margin-top: -2rem;
  padding: 0 20px;
}
.album-title h4 {
  color: #fff;
  margin: 1rem 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}
.album-title a.theme-btn {
    margin: 0.4rem auto 0rem;
    padding: 0.4rem 1rem 0.4rem 1rem;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: "Federo", sans-serif;
}

/*Service*/

section.service-sec {
    background: #181d33;
    padding-bottom: 10rem;
}
video.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    background-attachment: fixed;
    opacity: 0.3;
    transform: translate(-50%, -50%);
}
.service-sec .theme-heading-sec {
  position: relative;
  text-align: center;
}
.service-sec .theme-heading-sec:before {
    font-size: 130px;
    text-transform: uppercase;
    font-family: "Advent Pro", sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    -webkit-text-stroke: 2px #852cc812;
    color: rgb(37 43 66 / 30%);
    position: absolute;
    top: 0;
    width: 100%;
    line-height: 44px;
    content: "Our Services";
    left: 50%;
    transform: translateX(-50%);
}
section.service-sec:after {
    content: "";
    background-image: url(https://html.topylo.com/musicly-prev/musicly/assets/img/testimonial/testimonial-line.png);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    background-repeat: no-repeat;
    transform: translateY(-27%);
}
.srv-col {
    position: relative;
    height: 100%;
}
.srv-col-lg {
    padding: 38px;
}
.srv-wrapper {
    padding: 1.5rem;
    background: #1b2035;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    border: solid 1px #ffffff0a;
    height: 100%;
}
.srv-col:before {
    content: "";
    width: 100px;
    height: 100px;
    background: linear-gradient(90deg,rgba(93, 50, 226, 1) 0%, rgba(233, 31, 68, 1) 100%);
    position: absolute;
    right: -2px;
    top: -2px;
    z-index: 0;
    border-radius: 15px;
    animation: srv 5s infinite;
}
.srv-col:after {
    content: "";
    width: 100px;
    height: 100px;
   background: linear-gradient(90deg,rgba(93, 50, 226, 1) 0%, rgba(233, 31, 68, 1) 100%);
    position: absolute;
    left: -2px;
    bottom: -2px;
    z-index: 0;
    border-radius: 15px;
}

.srv-wrapper h4 {
    color: red;
    margin-bottom: 12px;
}
.srv-wrapper p {
    margin: 0;
}


/*Logo*/

section.logo-sec {
    overflow: unset;
    background-image: url(assets/img/abt-bg1.jpg);
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
}
section.logo-sec:before {
    content: "";
    background: hsl(228.46deg 28.26% 18.04% / 96%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.logo-carousel {
    background: var(--Gradient, linear-gradient(270deg, #231f86 0, #6d1f91 47.92%, hsl(317.46deg 47.89% 28.2%) 100%));
    padding: 3rem;
    margin-top: -10rem;
}
.logo-carousel .item {
    padding: 21px 15px;
    background: hsl(0deg 0% 100% / 100%);
    border-radius: 2px;
    height: 86px;
    display: flex;
    align-items: center;
}
.ticket-sec {
    margin-top: 5rem;
}
.ticket-sec .theme-heading-sec {
    margin-bottom: 0.6rem;
}
.ticket-sec h3 {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 36px;
    background: var(--Gradient, linear-gradient(270deg, #231f8600 0, hsl(281.05deg 64.77% 34.51% / 15%) 47.92%, hsl(317.46deg 47.89% 28.2% / 76%) 100%));
    padding: 0.5rem 0 0.5rem 0.9rem;
    position: relative;
}
.ticket-col{
  padding: 4rem;
  position: relative;
}
.ticket-col:after {
    content: "";
    background-image: url(assets/img/ticket-shape.png);
    width: 100%;
    height: 277px;
    position: absolute;
    bottom: 0;
    left: -6rem;
    background-repeat: no-repeat;
    z-index: 0;
}
.ticket-img {
    position: relative;
    /* padding: 3rem; */
}
.ticket-img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: #181d33;
    transform: translate(-50%, -50%) rotate(-18deg);
}
.ticket-img img{
  position: relative;
  z-index: 1;
}
.ticket-sec ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ticket-sec li {
    padding: 0px 0 11px 30px;
    color: #cfd1f1;
    font-size: 16px;
    font-family: "Federo", sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}
.ticket-sec li:before {
    content: "";
    background-image: url(assets/img/star.svg);
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 18px;
}

/*Production*/

section.production-sec {
    background: #181d33;
}
section.production-sec .theme-heading-sec {
    margin-bottom: 4.6rem;
    position: relative;
}
section.production-sec .theme-heading-sec:before {
    font-size: 130px;
    text-transform: uppercase;
    font-family: "Advent Pro", sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
    -webkit-text-stroke: 2px #852cc812;
    color: rgb(37 43 66 / 30%);
    position: absolute;
    top: 0;
    width: 100%;
    line-height: 44px;
    left: 50%;
    transform: translateX(-50%);
    content: "Mahakal Production";
}
.production-wrapper{
    border: 2px solid;
    border-image: linear-gradient(to top, #5d32e2b0, #e91f8a) 1;
    padding: 0.6rem 0.6rem 1.5rem;
    margin-bottom: 0.5rem;
    cursor:pointer;
}
.production-img {
    position: relative;
    overflow: hidden;
}
.production-img img{
  scale:1;
  transition: 1.8s ease;
}
.production-img:hover img {
    scale: 1.4;
}
.production-title {
    position: absolute;
    bottom: 1px;
    background: #181d33;
    padding: 0 10px;
    left: 10px;
}
.production-title h4 {
    color: #cfd1f1;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.1px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin:0;
}


/*  footer*/

footer {
    background: #21263b;
    position: relative;
    padding: 48px 0 16px;
    overflow: hidden;
}
footer .container {
    position: relative;
    z-index: 1;
}
.footer-social a {
    background: #181d33ab;
    padding: 9px 11px;
    font-size: 15px;
    color: #cfd0ed;
    border-radius: 3px;
    display: inline-block;
}
.footer-social a:hover{
    background: linear-gradient(147deg, rgb(93 50 226 / 27%) 0%, rgb(233 31 68 / 17%) 100%);
}
footer:before {
    content: "";
    background: #0900ff;
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: -10rem;
    transform: translateY(-50%);
    border-radius: 100px;
    filter: blur(100px);
    opacity: 0.4;
    left: -3%;
}
footer:after {
    content: "";
    background: #ff0000;
    width: 300px;
    height: 300px;
    position: absolute;
    top: 7rem;
    transform: translateY(-50%);
    border-radius: 100px;
    filter: blur(100px);
    opacity: 0.3;
    right: -5%;
}
.row.footer-add-row {
  background: #f4572e;
  border-radius: 12px;
  padding: 1.5rem;
  margin: -2rem 0 0;
  top: -3rem;
  position: relative;
}
.footer-add {
  display: flex;
  align-items: center;
  gap: 15px;
}
.addImg {
  background: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 1px hsl(0deg 0% 100% / 18%);
  border: solid 6px #f4572e;
  box-sizing: content-box;
}
.footer-add h5 span {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-add h5 {
  color: #fff;
}
ul.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.footer-nav li {
  display: inline-block;
  width: calc(100% / 2 - 5px);
}
ul.footer-nav li a {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  color: #aaacce;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-family: "Federo", sans-serif;
}
ul.footer-nav li a:hover {
  color: #f10e4a;
}
ul.footer-nav a:before {
  content: "\F285";
  font-family: bootstrap-icons !important;
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 14px;
  top: 0px;
  color: #f10e4a;
}
.middle-wrapper a img.footer-logo{
    width: 190px;
    margin-bottom: 20px;
}
.middle-wrapper p {
    color: #aaacce;
    padding-right: 40px;
    font-size: 15px;
}
.middle-wrapper h5 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 40px;
  position: relative;
}
.middle-wrapper h5:before {
  content: "";
  width: 80px;
  height: 2px;
  background: #f10e4a;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.middle-wrapper h5:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #f10e4a;
  position: absolute;
  bottom: -20px;
  left: 0;
  border-radius: 100px;
  border: solid 2px #ffffff;
}
ul.prd-footer {
  padding:0;
  margin:0;
  list-style: none;
}
ul.prd-footer li {
    width: calc(100% / 4 - 6px);
    display: inline-block;
    padding: 0;
    margin: 3px 1px;
}
ul.prd-footer li img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.copyright-row {
    background: #181d33;
    padding: 15px;
    margin: 2rem 0 0;
    z-index: 1;
    position: relative;
}
.copyright-row p {
  margin: 0;
  color: #aaacce;
  font-size: 15px;
}
.copyright-row p a {
  color: #f10e4a;
}
.copyright-row p.text-right {
  text-align: right;
}





@media screen and (max-width: 720px) {
#header {
    padding:15px 0;
    background: hsl(310deg 23.45% 8.64% / 48%);
}
.header-right a {
    font-size: 15px;
    padding: 7px 12px;
}



.carousel-item {
    height: 100%;
}
div#demo .container-fluid {
    width: 90%;
}
div#demo .container-fluid .row {
    flex-direction: column-reverse;
}
.banner-heading {
    padding: 3rem 0;
    text-align: center;
}
.banner-heading h1 {
    letter-spacing: -0.4px;
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 7px;
}
.banner-heading p {
    color: #aaacce;
    margin: 1.4rem 0 1rem;
}
.banner-rt-col {
    margin: 8rem 0 0;
}
.banner-rt-col:before, .banner-rt-col:after {
    width: 100%;
    height: 100%;
}
.banner-social-link {
    display: none;
}
.bslogo {
    width: 22%;
}


/*About*/

section.about-sec {
    max-height: unset;
    height: auto;
    background: #181d33f5;
}
section.about-sec .row {
    flex-direction: column-reverse;
}
.about-carousel {
    margin: auto;
}
.about-misc-wrap:after {
    margin-right: unset;
    left: 50%;
    transform: translateX(-50%);
}
.about-wrapper {
    display: block;
}
.abt-content {
    width: 100%;
    margin: 1rem 0 2rem;
}
    .exp-box {
        max-width: unset;
        padding: 0.7rem;
        width: 100%;
        height: auto;
    }
  section.about-sec .theme-heading-sec {
    margin-bottom: 1.6rem;
}
section.album-sec .theme-heading-sec:before,
.service-sec .theme-heading-sec:before,
section.production-sec .theme-heading-sec:before {
        font-size: 74px;
        letter-spacing: 0px;
        line-height: 80px;
}
section.album-sec .theme-heading-sec:before {
 width: 90%;
}

/*Services*/

section.service-sec {
    padding-top: 0;
}
video.video-bg {
    height: 100%;
}
.service-sec .theme-heading-sec {
    position: relative;
    text-align: center;
    padding: 3rem 0;
    margin: 1.5rem 0 0;
}
.service-sec .theme-heading-sec:before{
        width: 90%;
    }


/*Production*/

section.production-sec {
    padding-top: 45px;
}
    section.production-sec .theme-heading-sec {
        margin-bottom: 3.5rem;
        text-align: center;
        padding: 3rem 0;
    }
    .production-carousel {
    padding: 0 2rem;
}
.production-title {
    bottom: -8px;
}
.production-title h4 {
    font-size: 25px;
}

/*Footer*/

.copyright-row p {
    text-align: center;
}
.copyright-row p.text-right {
    text-align: center;
}
}


/**/
section.soon-bg {
    background-color: #21263c;
    height: calc(100vh / 1 - 391px);
}
section.soon-bg img {
    width: 526px;
    margin: 3rem auto 0;
    display: table;
}

/*Inner-Banner*/

section.inner-banner {
    background-color: #21263c;
    height: calc(100vh / 1 - 391px);
    display: flex;
    align-items: center;
}
section.inner-banner h1 {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
}

/*Contact Page*/

section.contact-info-sec {
    background: hsl(228.46deg 28.26% 18.04% / 96%);
}
.add-wrapper {
    position: relative;
    display: block;
    background-color: #21263c;
    padding: 24px 35px;
    border-radius: 10px;
}
.add-wrapper ul {
    padding: 0;
    list-style: none;
}
.add-wrapper li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #1f222c;
    padding: 21px 0 20px 20px;
    margin: 14px 0;
}
.add-wrapper p sapn {
    font-weight: 100;
    display: block;
    font-size: 20px;
}
.add-wrapper p {
    margin: 0;
}
.add-icon {
    background: linear-gradient(90deg, rgb(93 50 226 / 27%) 0%, rgb(233 31 68 / 40%) 100%);
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    max-width: 44px;
}
.add-icon i {
    font-size: 18px;
}
.add-wrapper h3 {
    color: #fff;
    border-bottom: solid 1px rgb(255 255 255 / 24%);
    padding-bottom: 1.2rem;
    margin-bottom: 1.6rem;
}
section.map-sec iframe {
    filter: grayscale(1);
}
section.map-sec iframe {
    filter: grayscale(1);
    margin-bottom: -6px;
}
section.map-sec {
    padding: 0;
}
.form-group {
    padding: 10px 10px;
}
.form-control {
    border: none;
    border-radius: 3px;
    max-height: 58px;
    height: 100vh;
    font-family: "Federo", sans-serif;
    background: #21263c;
    color: #b8b8b8;
}
input.form-submit-btn {
    background: linear-gradient(90deg, rgb(93 50 226 / 27%) 0%, rgb(233 31 68 / 40%) 100%);
    border: none;
    color: #fff;
    padding: 13px 50px;
    font-family: "Federo", sans-serif;
    font-size: 17px;
}
textarea.form-control {
    max-height: 120px;
}
.cont-form-col{
  padding-left: 3.5rem;
}
.cont-form-col .theme-heading-sec {
    margin-bottom: 1.6rem;
}
.form-control::placeholder {
    color: #b8b8b8;
}
.form-control:focus {
   color: #b8b8b8;
    background-color: #ffffff00;
    box-shadow: 0 0 0 .10rem rgb(104 42 78);
}

/*Release Page*/

section.release-sec{
    background: hsl(228.46deg 28.26% 18.04% / 96%);
}
section.release-sec .album-wrapper {
    border: 3px solid;
    border-image: linear-gradient(to top, #5d32e2b0, #e91f8a) 1;
    margin: 0.7rem 0;
        padding: 0.8rem;
}
section.release-sec .album-img {
    margin-top: 0;
}
section.release-sec .album-wrapper:before {
  display:none;
}
section.release-sec .album-title h4 {
    height: auto;
    font-size: 21px;
}
.pagination-col {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 1.2rem 0 0;
}
.pagination-col a {
    /* background: linear-gradient(90deg, rgba(93, 50, 226, 0.27) 0%, rgba(233, 31, 68, 0.4) 100%); */
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination-col ul li {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pagination-col ul li a {
    background: #171b2e;
    color: #fff;
    font-family: "Advent Pro", sans-serif;
    font-size: 19px;
}
.pagination-col a i {
    color: #fff;
}
.pagination-col ul li.active a {
    background: #f10e4a;
}

/*Production Page*/

section.pg-production-sec {
    background: hsl(228.46deg 28.26% 18.04% / 96%);
}
section.pg-production-sec .production-wrapper {
    position: relative;
}
section.pg-production-sec .production-title {
    bottom: -11px;
    background: #2a2e43;
    padding: 4px 10px;
    left: 9px;
}