﻿
html {
    scroll-behavior: smooth;
}

body {
}
.section {
   
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

.header {
    --background-color: rgb(0 0 0 / 32%);
    /* color: var(--default-color); */
    background-color: rgb(0 0 0 / 40%);
    padding: 8px 0;
    transition: all 0.5s;
    z-index: 997;
}



    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 80px;
            margin-right: 8px;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }

    .header .scrolled {
        box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }

    /*inner page header*/

.headers {
    --background-color: rgb(0 0 0 / 100%);
    /* color: var(--default-color); */
    background-color: rgb(0 0 0 / 100%);
    padding: 8px 0;
    transition: all 0.5s;
    z-index: 997;
}



    .headers .logo {
        line-height: 1;
    }

        .headers .logo img {
            max-height: 80px;
            margin-right: 8px;
        }

        .headers .logo h1 {
            font-size: 30px;
            margin: 0;
            font-weight: 700;
            color: var(--heading-color);
        }



/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(0, 0, 0, 0.8);
}
.solid-nav {
    background-color: rgb(0 0 0);
    transition: background-color 0.2s linear;
    color: #000;
}

@-webkit-keyframes mouse-scroll {
    0% {
        top: 10%;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 30%;
        opacity: 0;
    }
}

@-moz-keyframes mouse-scroll {
    0% {
        top: 10%;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 30%;
        opacity: 0;
    }
}

@-o-keyframes mouse-scroll {
    0% {
        top: 10%;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 30%;
        opacity: 0;
    }
}

@keyframes mouse-scroll {
    0% {
        top: 10%;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 30%;
        opacity: 0;
    }
}

.scroll-msg-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 40px;
    height: 50px;
   z-index:2;
    margin-left: -15px;
}

.scroll-msg-inner {
    width: 30px;
    height: 50px;
    position: relative;
    border-radius: 34px;
    border: 1px solid #ffffff;
}

.scroll-msg-wheel {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 50%;
    background-color: #ffffff;
    -webkit-animation: mouse-scroll 0.9s infinite;
    -moz-animation: mouse-scroll 0.9s infinite;
    -o-animation: mouse-scroll 0.9s infinite;
    animation: mouse-scroll 0.9s infinite;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1024px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px 0px;
           
            text-transform: uppercase;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: #fff;
            font-size: 20px;
            padding: 0 2px;
            font-family: "Poppins", Roboto, sans-serif;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            text-decoration: none;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 25px;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: #ffb912;
           
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}






/* Mobile Navigation */
@media (max-width: 1000px) {
    .mobile-nav-toggle {
        color:#fff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: rgb(0 0 0 / 73%);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: #fff;
            padding: 10px 20px;
            font-family: "Poppins", Roboto, sans-serif;
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: #ffb912;
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: #ffb912;
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    /*.hero h2 {
        margin: 0;
        font-size: 64px;
        font-weight: 700;
        text-align:center;
        color:#fff;
        line-height:0px;
    }
*/
    .hero h2 {
        margin: 0px;
        font-size: 84px;
        font-weight: lighter;
        text-align: center;
        color: #fff;
        line-height: 0px;
        text-transform: uppercase;
        /* margin-bottom: 31px; */
        padding: 40px;
        word-spacing: -5px !important;
        width: 100%;
    }
    .hero p {
        margin: 25px 0 0 0;
        font-size: 34px;
        text-align: center;
        color: #fff;
    }
        /*.hero p {
        margin: 5px 0 0 0;
        font-size: 26px;
        text-align: center;
        color: #fff;
    }*/
    .hero p span {
       
        color: #ffb912;
    }

.line {
    color: #fff;
    width: 16%;
    margin: 5px auto 0px;
    border: 1px solid #fff;
    height: 1px;
    opacity: 1;
}


.hero p span {
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-color);
}

    .hero .social-links {
        margin-top: 25px;
    }

        .hero .social-links a {
            
            display: inline-flex;
            align-items: center;
            justify-content: center;
         
            transition: 0.3s;
        }

            .hero .social-links a:hover {
                background-color: var(--accent-color);
            }
    @media (max-width: 768px) {
        .hero h2 {
            font-size: 32px;
        }

        .hero p {
            font-size: 20px;
        }
    }


@media (max-width: 600px) {

    .hero h2 {
        font-size: 50px;
        line-height: normal;
        padding: 0px;
        word-spacing: -9px !important;
    }
    .mt-5 {
        margin-top: 0.5rem !important;
    }
}
    /*------------Social media*/

    .twitter {
        color: #000000;
        text-decoration: none;
        display: block;
        padding: 14px;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

        .twitter:hover {
            color: #ff7d6d;
            text-decoration: none;
        }


    /* Floating Social Media Bar Style Starts Here */
    .fl-fl {
        background: #000000;
        text-transform: uppercase;
        letter-spacing: 3px;
        padding: 4px;
        width: 190px;
        position: fixed;
        right: -160px;
        z-index: 1000;
        font: normal normal 10px Arial;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
        border-radius: 10px 0px 0px 10px;
    }

    .fa {
        font-size: 16px !important;
        color: #ffb912;
        padding: 6px 0;
       
        /* margin-left: 5px; */
        margin: 5px 4px;
    }

    .fl-fl:hover {
        right: 0;
        background: #333;
        /* color: #333; */
    }

    .fl-fl a {
        color: #fff !important;
        text-decoration: none;
        text-align: center;
        line-height: 43px !important;
        vertical-align: top !important;
    }

    .float-fb {
        top: 160px;
    }

    .float-tw {
        top: 215px;
    }

    .float-gp {
        top: 270px;
    }

    .float-rs {
        top: 325px;
    }

    .float-ig {
        top: 380px;
    }

    .float-pn {
        top: 435px;
    }


    /*--------------------------------------------------------------
# Work Section
--------------------------------------------------------------*/

    .BM {
        display: block;
    }

    .BM1 {
        display: none;
        margin: 0 auto;
    }


    .work {
        background: #ffb912;
    }

        .work h2 {
            font-family: "Poppins", Roboto, sans-serif;
            font-size: 36px;
            margin: 0 auto;
            color: #333;
            text-align: center;
            font-weight: 800;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
        }

    .patchWW {
        background: #fff;
        width: 100%;
        height: 29px;
        margin: 0 auto;
        display: block;
        position: relative;
        top: -25px;
        max-width: 130px;
    }

    .newR {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 30px;
        text-align: left;
        color: #000;
        font-weight: 600;
        margin: -10px 0px 0px;
    }

    .FLR {
        float: right;
    }

    .newRT {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 45px;
        text-align: left;
        color: #FFF;
        font-weight: 600;
        margin: 0px 0px 10px;
        line-height: 1.2;
    }

    .newRTs {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 17px;
        text-align: left;
        color: #000000;
        font-weight: 300;
        margin: 0px 0px 10px;
        line-height: 1.2;
    }

    .newRTL {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 25px;
        text-align: left;
        color: #000000;
        font-weight: 500;
        margin: 80px 0px 10px;
        line-height: 1.2;
    }

    .ratimgNew {
        display: block;
        width: 65%;
        margin: 0 auto;
    }

    .newRicon {
        display: inline-block;
        justify-content: space-evenly;
        margin: 0px 0px 0px 0px;
        padding: -3px;
        padding: 0px;
    }

        .newRicon img {
            width: 9%;
            margin: 0px 0px 0px 0px;
        }

        .newRicon p {
            font-family: "Poppins", Roboto, sans-serif;
            font-size: 14px;
            text-align: left;
            margin: 5px;
            display: inline-block;
        }



    /* tab slider --------------------*/


    .category-lists-slider {
        position: relative;
        display: flex;
        margin: 0 auto;
    }

    #catgory-slider .swiper-slide {
        width: auto;
    }

    .category-button {
        text-align: center;
        font-size: 17px;
        font-weight: 700;
        border: 0px solid #37a7f1;
        color: #000;
        padding: 8px 28px;
        border-radius: 50px;
        display: inline-block;
        cursor: pointer;
        user-select: none;
    }

        .category-button.active {
            background-color: #ffb912;
            color: #fff;
        }

    .data-text {
        display: none;
    }

        .data-text.active {
            display: block;
        }

        .data-text h6 {
            font-size: 18px;
            margin-top: 30px;
            margin-bottom: 8px;
            font-weight: 700;
        }



.slider-button {
    width: 40px;
    height: 40px;
    background-color: #ffb912;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 30%);
    border-radius: 50%;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    top: 5px;
    z-index: 1;
    cursor: pointer;
}

        .slider-button.slider-prev {
            left: -30px;
        }

        .slider-button.slider-next {
            right: -30px;
        }

        .slider-button.swiper-button-disabled {
            opacity: 0;
            visibility: hidden;
        }

    .box {
        padding: 30px;
        margin-top: 20px;
        background-color: #d9eefd;
        border-radius: 6px;
        transition: 0.3s;
        height: 100%;
    }

        .box i {
            font-size: 40px;
            margin-bottom: 20px;
            color: #37a7f1;
        }


    @media (max-width: 575px) {
        .image-wrapper img {
            margin: 0 auto;
            display: block;
        }


        .category-lists-slider {
            margin-top: 40px;
        }

        .category-button {
           
            padding: 4px 6px;
        }

        .slider-button {
            top: -40px;
        }

            .slider-button.slider-prev {
                left: inherit;
                right: 32px;
            }

            .slider-button.slider-next {
                right: 0;
            }
    }



    #carouselExampleControls .carousel-inner {
        padding: 1em;
    }

    #carouselExampleControls2 .carousel-inner {
        padding: 1em;
    }

    #carouselExampleControls3 .carousel-inner {
        padding: 1em;
    }
#carouselExampleControls4 .carousel-inner {
    padding: 1em;
}
#carouselExampleControl5 .carousel-inner {
    padding: 1em;
}
#carouselExampleControl6 .carousel-inner {
    padding: 1em;
}

    .card {
        margin: 0 0.5em;
        /* box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18); */
        border: none;
        background: none;
    }


    .carousel-control-prev,
    .carousel-control-next {
        background-color: #e1e1e1;
        width: 6vh;
        height: 6vh;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

    @media (min-width: 768px) {



        #carouselExampleControls .carousel-item {
            margin-right: 0;
            flex: 0 0 25%;
            display: block;
        }

        #carouselExampleControls .carousel-inner {
            display: flex;
        }

        #carouselExampleControls2 .carousel-item {
            margin-right: 0;
            flex: 0 0 25%;
            display: block;
        }

        #carouselExampleControls2 .carousel-inner {
            display: flex;
        }

        #carouselExampleControls3 .carousel-item {
            margin-right: 0;
            flex: 0 0 25%;
            display: block;
        }

        #carouselExampleControls3 .carousel-inner {
            display: flex;
        }
        #carouselExampleControls4 .carousel-item {
            margin-right: 0;
            flex: 0 0 25%;
            display: block;
        }

        #carouselExampleControls4 .carousel-inner {
            display: flex;
        }


        #carouselExampleControls5 .carousel-item {
            margin-right: 0;
            flex: 0 0 25%;
            display: block;
        }

        #carouselExampleControls5 .carousel-inner {
            display: flex;
            padding: 1em;
        }

        #carouselExampleControls6 .carousel-item {
            margin-right: 0;
            flex: 0 0 25%;
            display: block;
        }
        #carouselExampleControls6 .carousel-inner {
            display: flex;
            padding: 1em;
        }


    }

    .card .img-wrapper {
        max-width: 100%;
        height: 13em;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .card .img-wrapper img {
            margin: 0 auto;
            display: block;
        }

    .card img {
        max-height: 100%;
        margin: 0 auto;
        display: block;
    }

    @media (max-width: 767px) {
        .card .img-wrapper {
            height: 17em;
        }
    }

    .newRTLWk {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 12px;
        text-align: left;
        color: #000000;
        font-weight: 500;
        margin: 20px 0px 0px;
        line-height: 1.2;
    }

    .newRtitle {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 17px;
        text-align: left;
        color: #000000;
        font-weight: 600;
        line-height: 1.2;
    }

    .newRtxt {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 12px;
        text-align: left;
        color: #000000;
        font-weight: 500;
    }

    .newRiconWk {
        display: inline-block;
        justify-content: space-evenly;
        margin: 0px 0px 0px 0px;
        padding: -3px;
        padding: 0px;
    }

        .newRiconWk img {
            width: 11%;
            margin: 1px;
            display: inline-block;
        }

    .workline {
        border: 1px solid #fff;
        width: 100%;
        margin: 8px 0px 4px;
        opacity: 0.8;
    }

    .W75 {
        width: 75%;
    }

    .W50 {
        width: 50%;
    }




    /*Playlist audio player*/

    /* tab slider --------------------*/
    .sound-lists-slider {
        position: relative;
        display: flex;
        margin: 0 auto;
    }

    #sound-slider .swiper-slide {
        width: auto!important;
    }



    .sound-button {
        text-align: center;
        font-size: 17px;
        font-weight: 700;
        border: 0px solid #37a7f1;
        color: #000;
        padding: 8px 28px;
        border-radius: 50px;
        display: inline-block;
        cursor: pointer;
        user-select: none;
    }

        .sound-button.active {
            background-color: #ffb912;
            color: #fff;
        }

    .data-texts {
        display: none;
    }

        .data-texts.active {
            display: block;
        }


    .voice-assistant-items {
        margin-bottom: -20px;
    }

.voice-assistant-item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    /* min-height: 16px; */
    margin-bottom: 0px;
    padding: 20px 17px 17px 100px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 6px;
    /* background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f9ff), to(#f8f4ff)); */
    /* background-image: linear-gradient(180deg, #f2f9ff, #f8f4ff); */
}


    .voice-assistant-item-button {
        position: absolute;
        left: 35px;
        top: 0px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        /* margin-right: 10px; */
        padding: 0px;
        float: right;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        /* background-image: -webkit-gradient(linear, left top, left bottom, from(#d8edff), to(#e5d5ff)); */
        /* background-image: linear-gradient(180deg, #d8edff, #e5d5ff); */
    }

    .voice-assistant-item-text {
        overflow: hidden;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

.heading-51 {
    margin: 0px;
    font-family: "Poppins", Roboto, sans-serif;
    font-weight: 500;
   font-size: 16px;
    line-height: 18px;
}

    .audio-controls-bar {
        position: relative;
        height: 8px;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-radius: 500px;
        background-color: #eaeaf2;
    }

    .button-2 {
        font-family: Posh, sans-serif;
        font-size: 28px;
    }

    .italic-text-7 {
        font-style: normal;
        text-indent: 5px;
    }

    .play-button {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 50px;
        height: 50px;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 500px;
        box-shadow: 8px 8px 6px 0 rgba(0, 0, 0, 0.05);
        -webkit-transition: all 300ms ease-in-out;
        /* transition: all 300ms ease-in-out; */
        font-family: Posh, sans-serif;
        font-size: 17px;
    }

    .audio-controls {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .audio-controls-time {
        display: inline-block;
        margin-left: 10px;
        font-size: 18px;
        line-height: 26px;
    }

    .html-embed-audio {
        display: none;
    }

    .audio-controls-bar-current {
        position: absolute;
        width: 0%;
        height: 100%;
        border-radius: 500px;
        background-color: #37a1f7;
    }

    .w-clearfix:before, .w-clearfix:after {
        content: " ";
        display: table;
        grid-column-start: 1;
        grid-row-start: 1;
        grid-column-end: 2;
        grid-row-end: 2;
    }

.w-button {
    display: inline-block;
    padding: 11px 17px;
    background-color: rgb(0 0 0 / 49%);
    color: white;
    border: 2px solid #fff;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}


    /* width */
    ::-webkit-scrollbar {
        width: 8px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #ffd05f;
        border-radius: 10px;
        background: #ffd05f;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #000;
        border-radius: 10px;
    }

        /* Handle on hover */
        ::-webkit-scrollbar-thumb:hover {
            background: #000;
        }


    .scrollable-content {
        flex-grow: 1;
        overflow: auto;
        /* for Firefox */
        min-height: 0;
        max-height: 440px;
    }
    /*end*/




    /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
    .ratimg {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .about h1 {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 36px;
        margin: 0 auto;
        color: #333;
        text-align: center;
        font-weight: 800;
        position: relative;
        z-index: 2;
    }

    .patch {
        background: #ffb912;
        width: 100%;
        height: 29px;
        margin: 0 auto;
        display: block;
        position: relative;
        top: -25px;
        max-width: 200px;
    }

    .about p {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 15px;
    }

    .about h2 {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 36px;
        margin: 0 auto;
        color: #333;
        font-weight: 200;
        padding: 0px 0px 50px;
        text-shadow: 36px 36px 0px #E8E8E8;
    }

    .about span {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 36px;
        color: #333;
        font-weight: 800;
        text-shadow: 36px 36px 0px #E8E8E8;
    }

    .let {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 27px !important;
        color: #333;
        font-weight: 600;
    }

    .about .btn {
        cursor: pointer;
        border: 1px solid rgb(255, 185, 18);
        font-family: "system-ui";
        color: rgb(255, 255, 255);
        padding: 10px 30px;
        transition: 3000ms;
        width: 201px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
        border-radius: 11px;
        background: rgb(255, 185, 18);
        display: flex;
        justify-content: center;
        align-items: center;
        --hover-width: 201px;
        --hover-bgc: #ffb912;
        --hover-color: #000000;
        --hover-borderc: #ffb912;
        --hover-borderSize: 0px;
    }

        .about .btn .btn:hover {
            color: rgb(0, 0, 0);
            width: 201px;
            background: rgb(255, 185, 18) none repeat scroll 0% 0% / auto padding-box border-box;
            border-color: rgb(255, 185, 18);
            border-width: 0px;
            border-style: solid;
        }

        .about .btn span {
            font-size: 17px;
            text-shadow: none;
            font-weight: 400;
        }

    .letC {
        display: inline-block;
        justify-content: space-evenly;
        margin: 0px 0px 0px 15px;
        padding: -3px;
    }




    /*--------------------------------------------------------------
# client Section
--------------------------------------------------------------*/
    .client {
        background: #e9e9e9;
    }

        .client h2 {
            font-family: "Poppins", Roboto, sans-serif;
            font-size: 36px;
            margin: 0 auto;
            color: #333;
            text-align: center;
            font-weight: 800;
            position: relative;
            z-index: 2;
            text-transform:uppercase;
        }


    /* Inner Slider */

    .slick-slide {
        margin: 0px 20px;
    }

        .slick-slide img {
            width: 100%;
        }

    .slick-slider {
        position: relative;
        display: block;
        box-sizing: border-box;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -khtml-user-select: none;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
        -webkit-tap-highlight-color: transparent;
    }

    .slick-list {
        position: relative;
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

        .slick-list:focus {
            outline: none;
        }

        .slick-list.dragging {
            cursor: pointer;
        }

    .slick-slider .slick-track,
    .slick-slider .slick-list {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .slick-track {
        position: relative;
        top: 0;
        left: 0;
        display: block;
    }

        .slick-track:before,
        .slick-track:after {
            display: table;
            content: '';
        }

        .slick-track:after {
            clear: both;
        }

    .slick-loading .slick-track {
        visibility: hidden;
    }

    .slick-slide {
        display: none;
        float: left;
        height: 100%;
        min-height: 1px;
    }

    [dir='rtl'] .slick-slide {
        float: right;
    }

    .slick-slide img {
        display: block;
    }

    .slick-slide.slick-loading img {
        display: none;
    }

    .slick-slide.dragging img {
        pointer-events: none;
    }

    .slick-initialized .slick-slide {
        display: block;
    }

    .slick-loading .slick-slide {
        visibility: hidden;
    }

    .slick-vertical .slick-slide {
        display: block;
        height: auto;
        border: 1px solid transparent;
    }

    .slick-arrow.slick-hidden {
        display: none;
    }





    .slick-prev {
        position: absolute;
        top: 50%;
        right: 0px;
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.5);
        border: 0 none;
        margin-top: -22.5px;
        text-align: center;
        cursor: pointer;
        font: 20px/45px FontAwesome;
        color: #FFF;
        z-index: 5;
    }

        .slick-prev:before {
            content: "\f105";
        }

    .slick-next {
        position: absolute;
        top: 50%;
        left: 0px;
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.5);
        border: 0 none;
        margin-top: -22.5px;
        text-align: center;
        font: 20px/45px FontAwesome;
        color: #FFF;
        z-index: 5;
        cursor: pointer;
    }

        .slick-next:before {
            content: "\f104";
        }



    .home-demo h2 {
        color: #fff;
        text-align: center;
        padding: 5rem 0;
        margin: 0;
        font-style: italic;
        font-weight: 300;
    }

    .owl-carousel .owl-item img {
        display: block;
        width: 100%;
       
        margin: 0 auto;
    }
    /*--------------------------------------------------------------
# client testimonial Section
--------------------------------------------------------------*/


    .clienttest {
        background: #ffb912;
    }

    .patchW {
        background: #fff;
        width: 100%;
        height: 29px;
        margin: 0 auto;
        display: block;
        position: relative;
        top: -25px;
        max-width: 335px;
    }


    .testimonial-carousel {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .testimonial-slide p {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 16px;
    }

    .testimonial-slide {
        text-align: center;
        padding: 20px;
    }

        .testimonial-slide img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        }

        .testimonial-slide .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            position: absolute;
            top: 50%;
        }


    #testimonialCarousel .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }

    #testimonialCarousel .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }



    #testimonialCarousel .carousel-inner {
        position: relative;
        width: 75% !important;
        overflow: hidden;
        margin: 0 auto;
    }



    /*--------------------------------------------------------------
# Contact us Section
--------------------------------------------------------------*/



    .Contact h2 {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 36px;
        margin: 0 auto;
        color: #333;
        text-align: center;
        font-weight: 800;
        position: relative;
        z-index: 2;
        text-transform: uppercase;
    }

    .patchC {
        background: #ffb912;
        width: 100%;
        height: 29px;
        margin: 0 auto;
        display: block;
        position: relative;
        top: -25px;
        max-width: 230px;
    }

    .Contact p {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 17px;
    }

    /*------------------------------------------------------------------
[  ]*/
    .contact1-form {
        max-width: 390px;
        margin: 50px auto;
        width: 100%;
    }

    .contact1-form-title {
        display: block;
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 24px;
        color: #333333;
        line-height: 1.2;
        text-align: center;
        padding-bottom: 44px;
    }

    input.input1 {
        height: 50px;
        border-radius: 8px;
        padding: 0 30px;
        border: none;
    }

        input.input1 + .shadow-input1 {
            border-radius: 25px;
        }

    textarea.input1 {
        min-height: 150px;
        border-radius: 25px;
        padding: 12px 30px;
        border: none;
    }

        textarea.input1 + .shadow-input1 {
            border-radius: 25px;
        }

    /*---------------------------------------------*/
    .wrap-input1 {
        position: relative;
        width: 100%;
        z-index: 1;
        margin-bottom: 20px;
    }

    .input1 {
        display: block;
        width: 100%;
        background: #e6e6e6;
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 15px;
        line-height: 1.5;
        color: #666666;
    }

    .shadow-input1 {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        box-shadow: 0px 0px 0px 0px;
        color: #ffb912;
    }

    .input1:focus-visible {
        outline: -webkit-focus-ring-color auto 0px !important;
    }



    .input1:focus + .shadow-input1 {
        -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
        animation: anim-shadow 0.5s ease-in-out forwards;
        border: none !important;
    }

    @-webkit-keyframes anim-shadow {
        to {
            box-shadow: 0px 0px 80px 30px;
            opacity: 0;
        }
    }

    @keyframes anim-shadow {
        to {
            box-shadow: 0px 0px 80px 30px;
            opacity: 0;
        }
    }

    /*---------------------------------------------*/
    .container-contact1-form-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact1-form-btn {
        width: 100%;
        height: 50px;
        border-radius: 25px;
        background: #ffc107;
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 15px;
        line-height: 1.5;
        color: #000;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 25px;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        border: none;
    }

        .contact1-form-btn i {
            margin-left: 7px;
            -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
            -moz-transition: all 0.4s;
            transition: all 0.4s;
            border: none;
        }

        .contact1-form-btn:hover {
            background: #333333;
            border: none;
            color: #fff;
        }

            .contact1-form-btn:hover i {
                -webkit-transform: translateX(10px);
                -moz-transform: translateX(10px);
                -ms-transform: translateX(10px);
                -o-transform: translateX(10px);
                transform: translateX(10px);
            }




    /*------------------------------------------------------------------
[ Responsive ]*/

    @media (max-width: 1200px) {
        .contact1-pic {
            width: 33.5%;
        }

        .contact1-form {
            width: 44%;
        }
    }

    @media (max-width: 992px) {
        .container-contact1 {
            padding: 90px 80px 88px 90px;
        }

        .contact1-pic {
            width: 35%;
        }

        .contact1-form {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .container-contact1 {
            padding: 90px 80px 88px 80px;
        }

        .contact1-pic {
            display: none;
        }

        .contact1-form {
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .container-contact1 {
            padding: 90px 15px 88px 15px;
        }
    }


    /*------------------------------------------------------------------
[ Alert validate ]*/

    .validate-input {
        position: relative;
    }

    .alert-validate::before {
        content: attr(data-validate);
        position: absolute;
        max-width: 70%;
        background-color: white;
        border: 1px solid #c80000;
        border-radius: 13px;
        padding: 4px 25px 4px 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 8px;
        pointer-events: none;
        font-family: "Poppins", Roboto, sans-serif;
        color: #c80000;
        font-size: 13px;
        line-height: 1.4;
        text-align: left;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 0.4s;
        -o-transition: opacity 0.4s;
        -moz-transition: opacity 0.4s;
        transition: opacity 0.4s;
    }

    .alert-validate::after {
        content: "\f06a";
        font-family: FontAwesome;
        display: block;
        position: absolute;
        color: #c80000;
        font-size: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 13px;
    }

    .alert-validate:hover:before {
        visibility: visible;
        opacity: 1;
    }

    @media (max-width: 992px) {
        .alert-validate::before {
            visibility: visible;
            opacity: 1;
        }
    }

.single-img {
    position: relative;
    
}

.image {
    display: block;
    width: 100%;
    height: auto;
}

.img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 68%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.single-img:hover .img-overlay {
    height: 100%;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-family: poppins;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

    .text span {
        font-weight: 300;
        font-size: 13px;
        background: #ffb912;
        color: #000;
        padding: 5px 10px;
        border-radius: 10px;
        text-transform: capitalize;
    }



    /*Inner sound page*/
.video {
    display: block;
    margin: 0px auto;
    text-align: center;
    padding: 50px 0px 0px;
}
    .video h2 {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 36px;
        margin: 0 auto;
        color: #333;
        font-weight: 200;
        padding: 0px 0px 0px;
        font-weight:600;
        
    }


.video p {
    font-family: "Poppins", Roboto, sans-serif;
    font-size: 15px;
    color:#000;
}
    .soundT {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 25px;
        color: #000;
        font-weight: 400;
        padding:25px 0px 0px;
    }


    /*--------------Respinve css-----------*/

@media (max-width: 600px) {

    .social-links5 a {
        margin:0 6px!important;
    }
        .contact1-form {
        width: 100%;
        margin:0px auto;
    }

    .line {
        color: #fff;
        width: 30%;
        margin: 0px auto 0px;
        border: 1px solid #fff;
        height: 0px;
        opacity: 1;
    }

    .video p {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 14px;
        color: #000;
        margin: 0px 0 10px 0;
    }

    .video h2 {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 27px;
        margin: 0 auto;
        color: #333;
        font-weight: 200;
        padding: 0px 0px 0px;
        font-weight: 600;
        word-spacing: 0px !important;
    }

    .FLR {
        float: none;
    }

    .voice-assistant-item {
        padding: 20px 20px 22px 76px;
    }

    .voice-assistant-item-button {
        position: absolute;
        left: 0px;
    }

    .heading-51 {
        font-size: 17px;
        line-height: 1.2;
    }

    .w-button {
        display: inline-block;
        padding: 8px 16px;
    }
    .play-button{
        width:50px;
        height:50px;
    }

    .letC {
        display: block;
        margin: 16px auto 0px;
        text-align: center;
    }

    .about .btn {
        margin: 0 auto;
    }

    .let {
        text-align: center;
    }

    .Contact p {
        font-family: "Poppins", Roboto, sans-serif;
        font-size: 15px;
        margin: 0px;
    }

    .fa {
        width: 15px;
    }

    #sound-slider .swiper-slide {
        width: 33%;
    }

    .BM {
        display: none;
    }

    .BM1 {
        display: block;
        margin: 0 auto;
    }

    .newR {
        text-align: center;
    }

    .newRT {
        text-align: center;
    }

    .newRTs {
        font-size: 16px;
        text-align: center;
        line-height: 1.5;
    }

    .newRTL {
        font-size: 25px;
        text-align: center;
        margin: 30px 0px 10px;
        line-height: 1.2;
    }

    .newRicon {
        text-align: center;
    }

    .newRtitle {
        text-align: center;
    }



    .newRtxt {
        text-align: center;
    }


    .newRTLWk {
        text-align: center;
        font-size:14px;
    }
    .newRiconWk {
        text-align: center;
        
    }
        .newRiconWk img {
           
            text-align: center;
            margin:5px;
        }
    .audio-controls-time {
       
        font-size: 15px;
        line-height: 26px;
    }

    .slick-slide img {
        width: 70%;
        margin: 0 auto;
    }

    }



    