body {
    /* color code #392467 #5d3587 #a367b1 #ffd1e3 */
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background: black;
    overflow-x: hidden;
}

/* popup Msg */
#overlay {
    margin: auto;
    position: fixed;
    align-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: alpha(opacity=70);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
    z-index: 9999;
    display: none;
}

.cnt223 a {
    text-decoration: none;
}

.popup {
    margin: auto;
    top: -10%;
    left: 30%;
    width: 40%;
    align-items: center;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 99999;
}


.cnt223 {
    /* color code #392467 #5d3587 #a367b1 #ffd1e3 */
    min-width: 100%;
    width: 100%;
    min-height: 150px;
    margin: 100px auto;
    background: linear-gradient(to bottom right, #392467, #5d3587, #a367b1);
    position: relative;
    z-index: 103;
    padding: 15px 35px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
    align-items: center;
    text-align: center;
}

.cnt223 p {
    clear: both;
    color: black;
    /* text-align: justify; */
    font-size: 20px;
    font-family: sans-serif;
}

.cnt223 p a {
    color: #d91900;
    font-weight: bold;
}

.cnt223 .x {
    float: right;
    height: 35px;
    left: 22px;
    position: relative;
    top: -25px;
    width: 34px;
}

.cnt223 .x:hover {
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .popup {
        width: 100%;
        left: 0%;
        top: -9%;
    }
}





/* navbar */
/*  nav bar*/
/* color code #392467 #5d3587 #a367b1 #ffd1e3 */
.nav {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    letter-spacing: 1px;
    height: 6rem;
    width: 100vw;
    color: white;
    background-color: #000000;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 10;
}

/*Styling logo*/
.logo {
    padding: 1vh 1vw;
    text-align: center;
}

.logo img {
    height: 5rem;
    width: 5rem;
}

/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
}

.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    font-size: 1.5rem;
    color: #fff;
}

.nav-links li a:hover {
    color: #EA7D02;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #EA7D02;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

/*Styling Buttons*/
.login-button {
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;

}

.login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

.join-button {
    color: #131418;
    background-color: #61DAFB;
    border: 1.5px solid #61DAFB;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}

.join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #131418;
        color: white;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 1;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
        opacity: 1;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
        opacity: 1;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
        opacity: 1;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
        opacity: 1;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
        opacity: 1;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
        opacity: 1;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
        opacity: 1;
    }

    li.fade {
        opacity: 1;
    }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* video part slider */
.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.video {
    flex: 0 0 60%;
    /* margin: 0 10%; */
    min-width: 100%;
}

.slider-controls {
    margin-top: 20px;
    text-align: center;
}

.slider-button {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    border: 1px solid #333;
    cursor: pointer;
}

.scrollbar {
    width: 80%;
    margin: 20px auto;
    display: flex;
    align-items: center;
}

.scrollbar-track {
    width: 100%;
    height: 10px;
    background-color: #ccc;
    position: relative;
    border-radius: 5px;
}

.scrollbar-thumb {
    width: 30px;
    height: 100%;
    background-color: #333;
    position: absolute;
    border-radius: 5px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .video {
        height: 300px;

    }
}


/* latest song */
.latest {
    background-color: #5d3587;
}

.container2 {
    /* color code #392467 #5d3587 #a367b1 #ffd1e3 */
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;

    /* padding: 20px; */
}

.personal-video {
    flex: 1;
    /* padding-right: 20px; */
}

.personal-video iframe {
    width: 100%;
    height: 400px;
}

.video-info {
    flex: 1;
    padding-left: 20px;
}

.latest-song {
    margin-top: 40px;
}

.latest-song h2 {
    margin-bottom: 10px;
}

.latest-song .song-list {
    list-style: none;
    padding: 0;
}

.latest-song .song-list li {
    margin-bottom: 10px;
}

.personal-video img {
    width: 100%;
    height: 415;
}

.latestsong-streaminglink{
    color: #25d366;
}

@media (max-width: 768px) {
    .container2 {
        display: inline;
        flex-wrap: wrap;
        max-width: 100%;
        margin: 0 auto;
        padding: 20px;
    }

    .personal-video iframe {
        width: 100%;
        height: 300px;
    }

    .personal-video img {
        width: 100%;
        height: 215;
    }
}


/* slider text */
@media (max-width: 768px) {
    .slidername {
        font-size: 10px;
    }

    .sliderpara {
        font-size: 8px;
    }

    .carousel-caption {
        height: 30%;
    }
}


/* slider buttons */
.buttons {
    margin: 10%;
    text-align: center;
}

.btn-hover {
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align: center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

@media (max-width: 768px) {
    .btn-hover {
        width: 100px;
        font-size: 10px;
        font-weight: 50;
        margin: 15px;
        height: 20px;
        margin-top: -1%;
        background-size: 100% 100%;
    }
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-8 {
    background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}





.latestsong-text {
    /* position: absolute; */
    /* transform: translate(-50%,-50%); */
    /* top: 50%;
   left: 50%; */
    font-family: 'Times New Roman', serif;
    letter-spacing: 5px;
    /* font-size: 150px; */
    font-weight: bold;
    background-image: linear-gradient(to right, #462523 0, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
    color: transparent;
    -webkit-background-clip: text;
}


.latestsongname-text {
    /* position: absolute; */
    /* transform: translate(-50%,-50%); */
    /* top: 50%;
   left: 50%; */
    font-family: 'Times New Roman', serif;
    letter-spacing: 5px;
    /* font-size: 150px; */
    font-weight: bold;
    background: linear-gradient(2.5deg, rgb(255, 140, 0) 20.9%, rgb(0, 0, 0) 99.9%);
    color: transparent;
    -webkit-background-clip: text;
}


.latestsongnamem-text {
    /* position: absolute; */
    /* transform: translate(-50%,-50%); */
    /* top: 50%;
   left: 50%; */
    font-family: 'Times New Roman', serif;
    /* letter-spacing: 5px; */
    /* font-size: 150px; */
    font-weight: bold;
    /* background: linear-gradient(69.5deg, rgb(143, 98, 172) 2.3%, rgb(99, 190, 202) 97.6%); */
    background-image: linear-gradient(to right, #dfcaaa 22%, #bea379 100%);
    color: transparent;
    -webkit-background-clip: text;

}





.fa {
    padding: 10px;
    font-size: 35px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

/*stiky whatsapp  */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 20px 27px;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
    z-index: 999;
    box-shadow: rgba(0, 0, 0) 0px 5px 15px;
}

.whatsapp-button:hover {
    font-size: 58px;
    padding: 6.5px 19.2px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        padding: 9px 17px;
        border-radius: 50%;
        font-size: 35px;
        z-index: 999;
    }

    .whatsapp-button:hover {
        font-size: 48px;
        padding: 0px 11.2px;
    }
}


/* youtube slider */
/* .youtubevideo {
    width: 100%;
    height: 600px;
}

@media (max-width: 880px) {
    .youtubevideo {
        width: 100%;
        height: 200px;
    }
} */


/* ul li {
    padding: 2px 2px;
    margin: 2px 2px;
}

@media (max-width: 880px) {
    ul li {
        padding: 5px 5px;
        margin: 5px 5px;
        display: block;
    }
} */


/* color code #392467 #5d3587 #a367b1 #ffd1e3 */
.dark {
    background: #110f16;
}

/* color code #392467 #5d3587 #a367b1 #ffd1e3 */
.light {
    background: #f3f5f7;
}


/* color code #392467 #5d3587 #a367b1 #ffd1e3 */
/* #pageHeaderTitle {
    margin: 2rem 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.5rem;
    color:#ffd1e3;
}
 */

/* .latest-section{
    margin-top: -8%;
}
@media (max-width: 768px) {
    .latest-section{
        margin-top: -15%;
    }
} */

/* Wave */
.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-top: 0%;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.waves2 {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-top: 0%;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

.waves3 {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-top: -6%;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

@media (max-width: 768px) {
    .waves3 {
        margin-top: -14%;
    }
}

.content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: black;
}

/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }
}


/* latest card */
.card-block {
    font-size: 1em;
    position: relative;
    margin: 0;
    padding: 1em;
    border: none;
    border-top: 1px solid rgba(34, 36, 38, .1);
    box-shadow: none;

}

.card {
    font-size: 1em;
    overflow: hidden;
    padding: 5;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 10px 5px 5px #a367b1;
}



.btn {
    margin-top: auto;
}





.card2 {
    /* color code #392467 #5d3587 #a367b1 #ffd1e3 */
    color: #fff;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(145deg, #392467, #5d3587);
    box-shadow: 20px 20px 60px #a367b1, -20px -20px 60px #5d3587;
    border: none;
}

.neo-button {
    width: 50px;
    height: 50px;
    outline: 0 !important;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    border: none;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, #9a40a9, #b74cc9);
    box-shadow: inset 20px 20px 60px #913ca0,
        inset -20px -20px 60px #c552d8;
}

.neo-button:hover{
    background: linear-gradient(145deg, #392467, #5d3587);
    box-shadow: 20px 20px 60px #a367b1, -20px -20px 60px #5d3587;
}

.num {

    color: #eee !important;
}

.line {
    color: #fff;
}

.neo-button:active {
    border-radius: 50%;
    background: #AB47BC;
    box-shadow: 28px 28px 57px #933da2,
        -28px -28px 57px #c351d6;
}

.fa-facebook {
    color: #3b5998
}

.fa-linkedin {
    color: #0077b5
}

.fa-google {
    color: #dc4e41
}

.fa-youtube {
    color: #cd201f
}

.fa-twitter {
    color: #55acee
}

.profile_button {
    color: #fff;
    padding: 10px;
    border: none;
    outline: 0 !important;
    border-radius: 50px;
    background: #AB47BC;
    box-shadow: 28px 28px 57px #933da2,
        -28px -28px 57px #c351d6;

}