/*
[Master Stylesheet] 
Project: Musician Html
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
:root {
    --mu-theme-color:#fa4e23;
    --mu-white-color: #ffffff;
    --mu-grey-color:#707070;
    --mu-dark-color:#1a3e53;
    --blue-mu-dark-color:#1c1a2d;
    --color1: #37AD4B;
    --color2: #03840B;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;    
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;
}
img {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}
/* bottom to top css */
.mu-top-icon a {
    display: flex;
    background-color: #ee0979;
    box-shadow:0 0 20px rgb(235 76 76 / 50%);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
	animation: 4s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);
        
    }
    50% {
        transform: translateY(-20px);
        
    }
}
.mu-top-icon a svg {
    fill: var(--mu-white-color);
    transform: rotate(270deg);
}
.mu-top-icon a:hover {
  cursor: pointer;
  box-shadow: 0 0 0 25px var(--mu-theme-color) inset;
}
.mu-top-icon a:active {
  background-color: #555;
}
.mu-top-icon a.show {
  opacity: 1;
  visibility: visible;
}
/* bottom to top css end */
/* loader css start */
.loader {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--mu-white-color);
}
.loader img {
	width: 100px;
}
/* loader css start end */
/* botton css start*/
.mu-black-btn {
    max-width: 190px;
    width: 100%;
    min-height: 60px;
    border-radius: 40px;
    background-color: #ffffff29;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Poppins";
    text-transform: uppercase;
    transition: all 0.5s;
}
.mu-black-btn:hover{
    transform: translateY(-5px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mu-white-color);
}
.mu-color-btn{
    max-width: 190px;
    width: 100%;
    min-height: 60px;
    border-radius: 40px;
    background-image: linear-gradient(to right, #ff6a00 0%,#ee0979 51%,  #ff6a00 100%);
    background-size: 200% auto;    
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Poppins";
    text-transform: uppercase;
    transition: all 0.5s;
}
.mu-color-btn:hover {
    background-position: right center;
    color: var(--mu-white-color);
    transform: translateY(-5px);
    letter-spacing: 3px;
    text-transform: uppercase;    
}
/* botton css end*/
/* heading start */
.mu-heading{
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--mu-theme-color);
    font-weight: 700;
    font-family: "Caveat";
    text-transform: capitalize;
    text-align: center;
}
/* heading end */
/* sub heading */
.mu-sub-heading{
    font-size: 32px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    text-transform: capitalize;
    padding-top: 20px;
    padding-bottom: 45px;
}
/* sub heading */
/* header section css start */
.mu-header-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: transparent;
}
/* .mu-header-menu {
    overflow: auto;
} */
.mu-header-menu ul {
    margin: 100px 0;
    display: inline-block;
    width: 100%;
}
.mu-header-logo {
    position: relative;
}
.mu-menu-overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
}
.mu-header-parent {
    padding: 25px 60px 0 60px;
    display: flex;
    align-items: center;
}
.mu-header-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(232deg, #ee0979 0%, #ff6a00 100%);
    width: 250px;
    z-index: 999;
    border-radius: 100% 0 0 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
    transform: translateX(150%);
    -webkit-transition: all 0.5s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    -moz-transition: all 0.5s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    transition: all 0.5s cubic-bezier(1.000, -0.600, 0.000, 1.650);
}
.menu-open .mu-menu-overlay{
    opacity: 1;
    visibility: visible;
}
.menu-open .mu-header-menu{
    -webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}
.mu-toggleclose i{
    font-size: 25px;
    color: var(--mu-white-color);
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.mu-toggle-logo a img{
    margin-top: -250px;
    margin-left: 20px;
    text-align: center;
}
.mu-header-menu ul{
    position: relative;
}
.mu-header-menu ul {
    margin: 40px 0;
    display: inline-block;
    width: 100%;
    /* overflow: auto; */
    height: 400px;
}
.mu-header-menu ul:before{
    width: 1px;
    height: 30px;
    background-color: var(--mu-white-color);
    position: absolute;
    bottom: -30px;
    left: 0; 
    right: 0;
    margin: auto;
}
.mu-header-menu ul:after {
    width: 1px;
    height: 30px;
    background-color: var(--mu-white-color);
    position: absolute;
    top: -60px;
    left: 0; 
    right: 0;
    margin: auto;
}
.mu-header-menu ul li {
    margin-bottom: 30px;
    transition: all 0.3s;
    text-align: center;
}
.mu-header-menu ul li:hover{
    transform: translateX(5px);
}
.mu-header-menu ul li a{
    font-size: 20px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Caveat";
    text-transform: capitalize;
}
.mu-toggle-btn{
    margin-left: auto;
    cursor: pointer;
}
/* header section css end */
/* banner section css start */
.mu-banner-wrapper{
    background-image: url(../images/banner-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}
.mu-banner-wrapper .container-fluid {
    padding-left: 75px;
}
.mu-banner-content {
    padding-top: 330px;
    max-width: 1020px;
    width: 100%;
}
.mu-banner-content p{
    font-size: 48px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Caveat";
    padding-left: 250px;
}
.mu-banner-content h1 {
    font-size: 200px;
    color: var(--mu-white-color);
    font-weight: 700;
    font-family: "Poppins";
    text-transform: uppercase;
    line-height: 0.9;
    position: relative;
    z-index: 1;
}
.mu-banner-content h1:after {
    content: '';
    width: 301px;
    height: 301px;
    border-radius: 50%;
    background-color: #ffffff24;
    backdrop-filter: blur(30px);
    position: absolute;
    top: -65px;
    left: -50px;
    z-index: -1;
}
.mu-banner-btn {
    max-width: 1245px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 45px;
    margin-left: auto;
}
.mu-banner-btn .mu-black-btn{
    margin-right: 28px;
}
.mu-banner-social {
    padding-top: 155px;
    position: relative;
}
.mu-banner-social ul{
    display: flex;
    align-items: center;
}
.mu-banner-social ul li{    
    margin-right: 10px;
}
.mu-banner-social ul li:first-child{
    margin-right: 25px;
}
.mu-banner-social ul li:last-child{
    margin-right: 0;
}
.mu-banner-social ul li a{
    font-size: 18px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Caveat";
}
.mu-banner-social ul li a span{
    width: 45px;
    height: 45px;
    background-color: #3f2c4c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.mu-banner-social ul li a span svg{
    fill: var(--mu-white-color);
}
.mu-banner-social ul li a span:hover{
    background-color: var(--mu-theme-color);
    transform: translateY(-10px);
}
/* banner section css end */
/* about section css start */
.mu-about-wrapper{
    padding: 80px 0;
    background-color: var(--mu-white-color);
}
.mu-about-right{
    margin-top: 30px;
}
.mu-about-heading .mu-heading{
    text-align: left;
}
.mu-about-heading h3{
    font-size: 42px;
    color:var(--mu-dark-color);
    font-weight: 400;
    font-family: "Poppins";
    text-transform: capitalize;
    padding-top: 15px;
}
.mu-about-heading h2{
    color: var(--mu-theme-color);
    font-size: 42px;
    font-weight: 800;
    text-transform: capitalize;
}
.mu-about-heading p{
    font-size: 14px;
    color: var(--mu-grey-color);
    font-weight: 400;
    font-family: "Poppins";
    padding-top: 25px;
}
.mu-about-heading a{
    font-size: 30px;
    color: var(--mu-theme-color);
    font-weight: 700;
    font-family: "Caveat";
    padding-top: 25px;
}
.mu-about-right-img {    
    margin: 45px 0 0 -170px;
    position: relative;
}
/* about section css end */
/* event section css start */
.mu-event-wrapper {
    background-image: url(../images/event-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0 81px;
}
.mu-event-heading .mu-heading{
    color: var(--mu-white-color);
}
.mu-event-rectangle{
    background-color: var(--mu-white-color);
    padding: 40px 30px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.mu-event-rectangle:hover{
    transform: translateX(5px);
}
.mu-event-rectngle-inner{
    display: flex;
}
.mu-event-content{
    margin-left: 50px;
}
.mu-even-date h1{
    font-size: 46px;
    color: var(--mu-dark-color);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    font-family: "Poppins";
}
.mu-even-date span{
    display: block;
    font-size: 20px;
    color: var(--mu-dark-color);
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins";
}
.mu-event-content h4{
    font-size: 22px;
    color: var(--mu-dark-color);
    font-weight: 500;
    font-family: "Poppins";
    padding-bottom: 25px;
}
.mu-event-content span{
    display: block;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--mu-grey-color);
    font-weight: 400;
    padding-bottom: 15px;
    font-family: "Poppins";
}
.mu-event-content span:last-child{
    padding-bottom: 0;
}
.mu-event-content span svg{
    fill: var(--mu-theme-color);
    margin-right: 10px;
}
.mu-event-mini-btn .mu-color-btn{
    max-width: 120px;
    min-height: 40px;
    font-size: 10px;
    font-weight: 400;
    position: absolute;
    top: 40px;
    right: 30px;
}
.mu-event-btn{
    padding-top: 45px;    
}
.mu-event-btn .mu-color-btn{
    margin: auto;
}
/* event section css end */
/* galllery section css start */
.mu-gallery-wrapper{
    padding: 75px 0 0 0;
    background-color: var(--mu-white-color);
}
.mu-gallery-heading .mu-sub-heading{
    color: var(--mu-dark-color);
}
.grid {
    display: flex;
}
.mu-gallery-wrapper .grid-item{
    width: 25%;    
    cursor: pointer;
    
}
.mu-gallery-wrapper .grid-item .mu-grid-img{
    overflow: hidden;
    position: relative;
}
.mu-gallery-wrapper .grid-item .mu-grid-img img{
    width: 100%;  
    transition: all 0.3s;  
}
.mu-gallery-wrapper .grid-item.grid_50{
    width: 50%;
}
.mu-gallery-wrapper .mu-grid-img:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1;
}
.mu-gallery-wrapper .grid-item:hover .mu-grid-img:before{
    opacity: 1;
    visibility: visible;
} 
.mu-gallery-wrapper .grid-item span{
    width: 40px;
    height: 40px;
    background-color: var(--mu-white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%)scale(3);    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mu-gallery-wrapper .grid-item span svg{
    transition: all 0.3s;
    fill:var(--mu-theme-color);
}
.mu-gallery-wrapper .grid-item:hover span{
    opacity: 1;
    visibility: visible;
    transform: scale(2);
    transition: all 0.3s;
    z-index: 2;
}
.mu-gallery-wrapper .grid-item:hover img{
    transform: scale(1.1);
}
/* gallery section css end */
/*  blog section css start */
.mu-blog-wrapper{
    background-color: var(--mu-white-color);
    padding: 75px 0 80px;
}
.mu-blog-heading .mu-sub-heading{
    color: var(--mu-dark-color);
}
.mu-blog-content p{
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--mu-theme-color);
    font-weight: 700;
    font-family: "Caveat";
    padding-top: 25px;
}
.mu-blog-content h4{
    font-size: 22px;
    color: var(--mu-dark-color);
    font-weight: 600;
    font-family: "Poppins";
    padding-top: 10px;
}
.mu-blog-wrapper .mu-blog-effect img {
	position: relative;
	display: block;
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.mu-blog-wrapper .mu-blog-effect {
    position: relative;
    overflow: hidden;  
    cursor: pointer;
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one img {
	transform: scale3d(1.1, 1.1, 1) translate3d(15px, 0, 0);
	transition: all .35s;
	transform-origin: 85% 100%;
	-webkit-transform: scale3d(1.1, 1.1, 1) translate3d(15px, 0, 0);
	-webkit-transition: all .35s;
	-webkit-transform-origin: 85% 100%
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one .tab-text:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border: 140px solid var(--mu-theme-color);
    border-radius: 50% 0 0 50%;
    opacity: 0;
    transform: translate3d(50%, 50%, 0) rotate3d(0, 0, 1, 135deg);
    transition: all .35s .15s;    
    border-color: transparent transparent transparent #fff;
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one p {
    position: absolute;
    width: 31px;
    height: 36px;
    bottom: 70px;
    right: -31px;
    font-size: 120%;
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover .tab-text:before {
	transform: translate3d(50%, 50%, 0) rotate3d(0, 0, 1, 45deg);
	opacity: .2;
	transition-delay: 0s
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one p a {	
	position: absolute;
	opacity: 0;
	transition: all .35s cubic-bezier(.25, .4, .2, .5) 0s
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one p a i {
	color: var(--mu-white-color);
	transition: transform .35s cubic-bezier(.5, .2, .4, .25) 0s;
    width: 35px;
	height: 35px;
    background-image: linear-gradient(256deg, #ee0979 0%, #ff6a00 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s;
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a {
	opacity: 1
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a:nth-child(1) {
	transform: translate3d(0, 60px, 0);
	-webkit-transform: translate3d(0, 60px, 0);
	transition: all .35s cubic-bezier(.5, .2, .4, .25) .15s;
	-webkit-transition: all .35s cubic-bezier(.5, .2, .4, .25) .15s
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a:nth-child(1) i {
	transform: translate3d(-100px, 0, 0);
	transition: transform .35s cubic-bezier(.25, .4, .2, .5) .15s;
	-webkit-transform: translate3d(-100px, 0, 0);
	-webkit-transition: transform .35s cubic-bezier(.25, .4, .2, .5) .15s
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a:nth-child(2) {
	transform: translate3d(0, 30px, 0);
	transition: all .35s cubic-bezier(.5, .2, .4, .25) .25s;
	-webkit-transform: translate3d(0, 30px, 0);
	-webkit-transition: all .35s cubic-bezier(.5, .2, .4, .25) .25s
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a:nth-child(2) i {
    transform: translate3d(-80px, 0, 0);
    transition: transform .35s cubic-bezier(.25, .4, .2, .5) .25s;
    -webkit-transform: translate3d(-80px, -6px, 0);
    -webkit-transition: transform .35s cubic-bezier(.25, .4, .2, .5) .25s;
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a:nth-child(3) {
	transform: translate3d(0, 0, 0);
	transition: all .35s cubic-bezier(.5, .2, .4, .25) .35s;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transition: all .35s cubic-bezier(.5, .2, .4, .25) .35s
}

.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover p a:nth-child(3) i {
	transform: translate3d(-45px, 0, 0);
	transition: transform .35s cubic-bezier(.25, .4, .2, .5) .35s;
	-webkit-transform: translate3d(-45px, 0, 0);
	-webkit-transition: transform .35s cubic-bezier(.25, .4, .2, .5) .35s
}
.mu-blog-wrapper .mu-blog-effect.mu-effect-one:hover img {
	transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0);
	-webkit-transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0);
}
.mu-blog-btn{
    padding-top: 50px;
}
.mu-blog-btn .mu-color-btn{
    margin: auto;
}
/* blog section css end */
/* testimonial section css start */
.mu-testimonial-wrapper {
    background-image: url(../images/testimonial-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0 64px;
}
.mu-testimonial-heading .mu-heading{
    color: var(--mu-white-color);
}
.mu-testimonial-box{
    border-radius: 10px;
    background-color: var(--mu-white-color);
    padding: 65px 35px 50px 35px;
    margin-top: 40px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.mu-testimonial-box:hover{
    transform: translateY(10px);
}
.mu-testimonial-inner .mu-testmonial-text p{    
    font-size: 20px;
    line-height: 1.5;
    color: #757575;
    font-weight: 700;
    font-family: "Caveat";
}
.mu-testimonial-info{
    display: flex;
    align-items: center;
    padding-top: 35px;
}
.mu-testimonial-info .mu-testimonial-img img{
    border-radius: 50%;
}
.mu-testimonial-name{
    margin-left: 20px;
}
.mu-testimonial-info .mu-testimonial-name h4{
    font-size: 14px;
    color: var(--mu-dark-color);
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins";
}
.mu-testimonial-info .mu-testimonial-name .mu-heading{
    font-size: 16px;
    text-align: left;    
}
.mu-testimonial-icon span{
    width: 74px;
    height: 74px;    
    background-image: linear-gradient(232deg, #ee0979 0%, #ff6a00 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    right: 40px;
}
.mu-testimonial-icon span svg{
    fill: var(--mu-white-color);
}
.mu-testimonial-wrapper .swiper-container.swiper-container-initialized.swiper-container-horizontal {
    padding-bottom: 65px;
}
.mu-testimonial-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--mu-white-color);
}
.mu-testimonial-wrapper .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-image: linear-gradient(232deg, #ee0979 0%, #ff6a00 100%);
}
/* testimonial section css end */
/********************************************************
	Page Title Start
*******************************************************/
.mu_page_title_wrapper {
    position: relative;
    background: url(../images/page_titil_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 150px 0 100px;
    color: #ffffff;
}
.mu_page_title_text h1 {
    color: #ffffff;
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 6px;
}
.mu_page_title_text ul {
    display: flex;
    justify-content: center;
}
.mu_page_title_text ul > li {
    position: relative;
    padding-left: 20px;
}
.mu_page_title_text ul > li:first-child {
    padding-left: 0;
}
.mu_page_title_text ul > li:before {
    content: "\f105";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 3px;
    left: 8px;
}
.mu_page_title_text ul > li:first-child:before {
    content: unset;
}
.mu_page_title_text ul > li a {
    color: #ffffff;
}
/* footer section css start */
.mu-footer-wrapper {
    padding: 80px 0 74px;
    background-color: var(--blue-mu-dark-color);
    position: relative;
}
.mu-footer-wrapper-two{
    padding-top: 220px;
    margin-top: -150px;
}
.mu-footer-top-section{ 
    padding: 60px 75px;   
    background-color: #211f33;
    border: 1px solid #2d2b44;
    border-radius: 10px;
    margin-bottom: 55px;
}
.mu-footer-top-inner{
    position: relative;
}
.mu-top-footer-text h1{
    font-size: 38px;
    color: var(--mu-white-color);
    font-weight: 700;
    font-family: "Poppins";
    text-transform: capitalize;
}
.mu-top-footer-text p{
    font-size: 22px;
    color: var(--mu-white-color);
    font-weight: 400;
    font-family: "Poppins";
    padding-top: 10px;
}
.mu-top-footer-btn .mu-color-btn{    
    max-width: 170px;    
    min-height: 50px;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 20px;
    right: 0;
}
.mu-footer-list-heading h4{
    font-size: 18px;
    color: #d8d5f2;
    font-weight: 600;
    font-family: "Poppins";
    text-transform: uppercase;
    padding-bottom: 30px;
}
.mu-footer-list ul li{
    padding-bottom: 20px;
}
.mu-footer-list ul li:last-child{
    padding-bottom: 0;
}
.mu-footer-list ul li a{
    font-size: 14px;
    color: #8a86ab;
    font-weight: 500;
    font-family: "Poppins";
    text-transform: capitalize;
    transition: all 0.3s;
}
.mu-footer-list ul li a:hover{
    color: var(--mu-theme-color);
}
.mu-footer-connect p{
    font-size: 14px;
    color: #8a86ab;
    font-weight: 500;
    font-family: "Poppins";
    text-transform: capitalize;
}
.mu-footer-connect ul{
    padding-top: 20px;
}
.mu-footer-connect ul li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.mu-footer-connect ul li a span{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #252339;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.mu-footer-connect ul li a span:hover{
    transform: translateY(-5px);
    background-color: var(--mu-theme-color);
}
.mu-footer-connect ul li a span svg{
    fill: var(--mu-white-color);
}
/* footer section css end */
/* copyright section css start */
.mu-copyright-wrapper p{
    background-color: #181626;    
    font-size: 14px;
    color: #8a86ab;
    font-weight: 500;
    font-family: "Poppins";
    padding: 15px 0 10px 0;
    text-align: center;
}
.mu-copyright-wrapper p a{
    color: var(--mu-theme-color);
    font-weight: 600;
}
/* copyright section css end */
/* swiper */
.mu-testimonial-wrapper .swiper-pointer-events {
    touch-action: pan-y;
    overflow: hidden;
    position: relative;
    padding-bottom: 70px;
}
/* swiper */

.event-single-wrap {
    background: transparent;
}
.event-single-wrap .mu-event-rectangle {
    background: #f5f5f5;
}
.blog-page-wrapper .mu-blog-box {
    margin: 0 0 50px;
}
.mu-blog-wrapper.blog-page-wrapper {
    padding-bottom: 30px;
}
.blog-page-wrapper .mu-blog-box h4 {
    padding-bottom: 0;
}

.music-map iframe {
    width: 100%;
    height: 600px;
    display: flex;
}
.music-add-box {
    text-align: center;
    padding: 20px 20px 20px;
    /* border: 1px solid #e4e4e4; */
    border-radius: 6px;
    margin: 0 0 30px;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 0 100px 0 rgb(0 0 0 / 8%);
}
.music-icone i {
    font-size: 26px;
}
.music-icone {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    background: rgb(255 106 0 / 12%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
}
.music-contact-wrapper {
    padding: 80px 0 50px;
}
address {
    margin: 0;
}
.music-add-box h6 {
    font-weight: 600;
    margin: 0 0 6px;
}
/**/
.music_contact_from {
    width: 100%;
    margin: 0 auto -260px;
    background: #ffffff;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.08);
    padding: 45px 50px 50px;
    max-width: 780px;
    position: relative;
    border-radius: 10px;
    z-index: 2;
}
.music_contact_from .music_title {
    margin-bottom: 26px;
}
.music_inputField {
    margin-bottom: 30px;
    position: relative;
}
.music_inputField input, .music_inputField textarea {
    width: 100%;
    padding: 0 60px 0 20px;
    height: 50px;
    box-shadow: inset 0 0 10px 0 rgba(194, 71, 96, 0.03);
    border: 1px solid #efefef;
    color: #111111;
    border-radius: 6px;
}
.music_inputField input:focus, .music_inputField textarea:focus {
    border-color: var(--mu-theme-color);
}
.music_inputField input:focus, .music_inputField textarea:focus, .music_inputField input, .music_inputField textarea {
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.music_inputField i {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    color: #cccccc;
    line-height: 50px;
}
.music_inputField textarea {
    padding: 15px 60px 15px 20px;
    height: 150px;
}
.music_contact_from .music_btn {
    margin: 1px 0 0 0;
}
.music_contact_from input::-webkit-input-placeholder, .music_contact_from textarea::-webkit-input-placeholder {
    color: #111111;
}
.music_contact_from input::-moz-placeholder, .music_contact_from textarea::-moz-placeholder {
    color: #111111;
}
.music_contact_from input:-ms-input-placeholder, .music_contact_from textarea:-ms-input-placeholder {
    color: #111111;
}
.music_contact_from input:-moz-placeholder, .music_contact_from textarea:-moz-placeholder {
    color: #111111;
}
.music_contact_from  button.mu-color-btn {
    border: 0;
}
.mu-team-wrapper{
    background-color: var(--mu-white-color);
    padding: 75px 0 80px;
}
.mu-team-heading .mu-sub-heading {
    color: var(--mu-dark-color);
}
.our-team {
	border-left: 8px solid #3b336a;
	border-bottom: 8px solid transparent;
    border-left: 8px solid transparent;
    background-image: linear-gradient(#fff, #fff),linear-gradient(260deg, #ff6a00 0%, #ee0979 51%, #ff6a00 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    margin-left: 10px;
}

.our-team .team-image {
	position: relative;
	text-align: center;
}

.our-team img {
	width: 100%;
	height: auto;
}
.our-team ul li a img{
    width: 16px;
    height: 16px;
}
.our-team .description {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;
	color: #fff;
	line-height: 30px;
	padding: 40px 50px;
	opacity: 0;
	background-color: rgba(59,51,106,0.6);
	transition: all 0.5s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-team:hover .description {
	opacity: 1;
}

.our-team .social {
	padding: 10px 0 0 0;
	margin: 0;
	list-style: none;
	position: absolute;
	top: 40px;
	left: -27px;
    background-image: linear-gradient(260deg, #ff6a00 0%, #ee0979 100%, #ff6a00 100%);
	text-align: center;
	transform: translate(25px,0px) rotateY(90deg);
	transition: all 0.5s ease 0s;
}

.our-team:hover .social {
	transform: translate(0px,0px) rotateY(0deg);
}

.our-team .social li {
	display: block;
	margin-bottom: 10px;
}

.our-team .social li a {
	display: block;
	width: 40px;
	height: 35px;
	font-size: 17px;
	color: #fff;
	line-height: 30px;
	transition: all 0.5s ease 0s;
}

.our-team .social li a:hover {
	transform: translateY(-5px);
}

.our-team .team-info {
	padding: 20px;
}

.our-team .title {
	font-size: 18px;
	color: var(--blue-mu-dark-color);
	letter-spacing: 1px;
    font-weight: 700;
	margin: 0 0 5px 0;
	transition: all 0.5s ease 0s;
}

.our-team .post {
	display: block;
	font-size: 17px;
	color: var(--mu-grey-color);
	text-transform: capitalize;
}



/* counter css start */
.mu-counter-wrapper{
    background-color:var(--mu-white-color) ;
    max-width: 1340px;
    margin: 0 auto;
    padding: 50px 50px;
    border-radius: 10px;
    position: relative;
    z-index: 9;
   box-shadow: 0 0 30px rgba(0,0,0,0.06);
}
.counter{
    color: var(--blue-mu-dark-color);
    font-family: 'Alegreya Sans', sans-serif;
    text-align: center;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 60px 10px;
    border: 10px solid #ee0979;
    border-top: 10px solid transparent;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.3s ease;
}
.mu-row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.counter:before{
    content: "";
    background: var(--mu-white-color);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 100%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    z-index: -1;
    display: table;

}
.counter:hover {
    transform: translateY(-10px);
}

.counter .counter-icon{
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 15px;
}
.counter h3{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
}
.counter .counter-value{
    font-size: 33px;
    font-weight: 600;
    line-height: 33px;
    display: block;
}
.counter .counter-icon span svg{
    width: 40px;
    height: 40px;
}
/* .counter.pink{ --color1: #e3213c; }
.counter.blue{ --color1:#1f8bc1; }
.counter.green{ --color1: #628900; } */
 
/********************************************************
	Blog Page Start
*******************************************************/
.blogPage_wrapper {
    padding: 80px 0 80px;
}

.blogPage_wrapper.blogPageSingleWrapper {
    padding: 80px 0 80px;
}
.blogPageBlockquote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogPageBlockquote_img {
    width: 160px;
    margin-right: 10px;
    position: relative;
}
.blogBlockquoteQuate {
    width: calc(100% - 170px);
    color: var(--mu-grey-color);
    position: relative;
    text-align: center;
}
.blogBlockquoteQuate p, .blogQuateUser {
    text-align: left;
}
.blogPageBlockquote_img img.blogQuateUser {
    border: 3px solid var(--mu-theme-color);
    border-radius: 50%;
    width: 130px;
    height: 130px;
}
.blogPageBlockquote_img:before {
    content: "\f10e";
    right: 12px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--mu-theme-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 32px;
    background: #ffffff;
    border: 5px solid var(--mu-theme-color);
    padding-left: 8px;
    border-radius: 100%;
}
.blogQuateUser {
    color: var(--main-link-color);
    font-weight: 700;
    font-size: 20px;
    width: 100%;
    display: inline-block;
}
.blogQuateUser > span {
    color: var(--main-txt-color);
    font-size: 16px;
    font-weight: 400;
}
.blogBlockquoteQuate:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--mu-theme-color);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 2%;
    margin: auto;
}
.blogBlockquoteQuate:before {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    color: var(--mu-theme-color);
    position: absolute;
    left: 0;
    right: 0;
    font-size: 84px;
    margin: auto;
    top: 50%;
    opacity: .1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.blogImgTextContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogImgTextContainer img {
    width: 370px;
    display: inline-block;
    margin: 6px 15px 6px 0;
}
.blogImgTextContainer p {
    display: inline-block;
    width: calc(100% - 385px);
}
.blogAuthoreMessageBox {
    background: var(--mu-theme-color);
    border: none;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 71px 0 71px;
    color: #ffffff;
}
.blogAuthoreContent h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
}
.blogAuthoreContent h5 span {
    font-weight: 400;
    font-size: 16px;
}
.blogAuthoreContent {
    width: calc(100% - 140px);
}
.blogAuthoreImg {
    width: 110px;
    height: 110px;
    overflow: hidden;
    margin-right: 30px;
}
.blogAuthoreImg img {
    width: 110px;
    height: 110px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}
.blogCommentHolder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogCmntDetail {
    width: calc(100% - 130px);
}
.blogCmntUser {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 30px;
}
.blogCmntUser img {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 100%;
    object-fit: fill;
}
.blogCommnets > ul > li {
    margin-bottom: 26px;
    display: inline-block;
}
.blogCommnets ul li ul {
    padding-left: 80px;
}
.blogCommnets > ul > li > ul > li {
    margin-top: 26px;
}
.blogPageCommentForm {
    margin-top: 43px;
}
.blogInputFieldInner {
    width: 100%;
    border: 1px solid #e4e4e4;
    padding: 0 20px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    color: #111111;
}
textarea.blogInputFieldInner {
    height: 150px;
    resize: none;
    padding: 12px 20px;
}
.blogPageCommentForm input::-webkit-input-placeholder, .blogPageCommentForm textarea::-webkit-input-placeholder {
    color: #e4e4e4;
}
.blogPageCommentForm input::-moz-placeholder, .blogPageCommentForm textarea::-moz-placeholder {
    color: #e4e4e4;
}
.blogPageCommentForm input:-ms-input-placeholder, .blogPageCommentForm textarea:-ms-input-placeholder {
    color: #e4e4e4;
}
.blogPageCommentForm input:-moz-placeholder, .blogPageCommentForm textarea:-moz-placeholder {
    color: #e4e4e4;
}
.blogInputField {
    margin-bottom: 30px;
}
.blogPageCommentForm .blogSectionHeading {
    margin-bottom: 40px;
}
.blogPageCommentForm .theme_btn {
    margin: 0;
}
.blogCmntReply {
    color: var(--mu-theme-color);
    margin-left: 15px;
}
.blogCmntReply svg {
    width: 16px;
    fill: var(--mu-theme-color);
}
.blogDivider {
    margin: 22px 0;
    display: block;
}
a.pnt_btn.blogBtn {
    background: var(--mu-theme-color);
    color: #ffffff;
}
.blogPaginationWrapper {
    text-align: center;
}
.blogSectionHeading {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 26px;
}
.blogPageInfo ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.blogPageInfo ul li {
    margin-right: 60px;
}
.blogPageInfo ul li:last-child {
    margin-right: 0px;
}

.blogPageInfo ul li {
    margin-right: 60px;
}
.blogPageInfo ul li:last-child {
    margin-right: 0px;
}
.blogPageInfo {
    padding: 30px 0 21px;
}
.blogPageInfo ul li img.blogUser, .blogPageInfo ul li i {
    margin-right: 10px;
}
.blogPageInfo ul li .blogUser_name, .blogPageInfo ul li i {
    color: var(--mu-theme-color);
}
.blogHeading {
    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
    display: inline-block;
    margin-bottom: 12px;
}

.blogPage_wrapper.blogPageSingleWrapper a:not(.mu-color-btn) {
    color: #212529;
}
.blogPage_wrapper.blogPageSingleWrapper a:not(.mu-color-btn):hover {
    color: var(--mu-theme-color);
}
.music-add-box:hover {
    transform: translateY(-10px);
}
.music-add-box:hover , .music-add-box {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/**/
.mu-testimonial-wrapper .swiper-pagination {
    position: unset;
    margin: 30px 0 0;
}
.mu-testimonial-wrapper .swiper {
    padding-bottom: 0;
}
.mu-toggle-logo {
    display: none;
}
/* Color Switch */
.switches-container {
    width: 100px;
    display: flex;
    padding: 0;
    position: relative;
    background: #262626;
    line-height: 30px;
    border-radius: 3px;
    margin-right: auto;
    font-size: 12px;
    font-weight: 500;
}
.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}
.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: #ffffff;
}
.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 3px;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}
.switch {
    border-radius: 3px;
    background: var(--mu-theme-color);
    height: 100%;
}
.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    color: #ffffff;
    font-weight: 600;
    left: 0;
}
.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}
.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}
.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}
.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}
.color-switcher {
    position: fixed;
    left: 0;
    bottom: 20px;
    z-index: 999;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}
/* Switch End */

/* Dark Mode CSS */
body.dark-mode {
    --mu-dark-color: #ffffff;
    --mu-grey-color: #747191;
}
body.dark-mode,
body.dark-mode .mu-about-wrapper,
body.dark-mode .mu-gallery-wrapper,
body.dark-mode .mu-blog-wrapper,body.dark-mode .mu-team-wrapper,body.dark-mode .mu-counter-wrapper {
    background: #100f1a;
}
body.dark-mode .mu-event-rectangle, 
body.dark-mode .mu-testimonial-box,
body.dark-mode .music-add-box,
body.dark-mode .music_contact_from {
    background: #211f33;
}
body.dark-mode .mu-testimonial-inner .mu-testmonial-text p,
body.dark-mode .blogPageText,
body.dark-mode  .blogPageInfo ul a, 
body.dark-mode  .blogPageInfo ul, 
body.dark-mode .blogSinglePageText {
    color: var(--mu-grey-color);
}
body.dark-mode .music_inputField input, 
body.dark-mode .music_inputField textarea,
body.dark-mode .blogInputFieldInner {
    background: #161524;
    color: #ffffff;
    border-color: #27253c;
}
body.dark-mode .music-add-box, 
body.dark-mode .music_contact_from{
    background: #211f33;
    color: #ffffff;
}
body.dark-mode .music_inputField input:focus, 
body.dark-mode .music_inputField textarea:focus,
body.dark-mode .blogInputFieldInner:focus {
    border-color: var(--mu-theme-color);
}
body.dark-mode .blogPage_wrapper.blogPageSingleWrapper a:not(.mu-color-btn),
body.dark-mode .blogSectionHeading,
body.dark-mode .blogCmntDetail ,
body.dark-mode .our-team .title,
body.dark-mode .our-team .post{
    color: #ffffff;
}
body.dark-mode .counter:before{
    background-color: var(--blue-mu-dark-color);
}
body.dark-mode  .counter{
    color: var(--mu-white-color);
}
body.dark-mode .counter .counter-icon span svg{
    fill: var(--mu-white-color);
}
body.dark-mode .our-team{
    background-image: linear-gradient(#100f1a, #100f1a), linear-gradient(260deg, #ff6a00 0%, #ee0979 51%, #ff6a00 100%)
}

/**/
.mu-testimonial-wrapper {
    position: relative;
}




