@media (min-width: 768px) {

    /*  used to be 961 - need to change back? */
    a.mobile-trigger-new,
    a.child-trigger-new {
        display: none !important;
        /* Hide button on Desktop */
    }
}

@media (max-width: 767px) {
    a.mobile-trigger-new {
        display: inline-block !important;
        cursor: pointer;
        position: absolute;
        top: 24px;
        right: 20px;
        width: auto;
        height: auto;
        padding: 0;
        background: #fff;
        z-index: 99999999999;
        -webkit-transition: background-color 0.2s linear;
        font-size: 16px;
        font-weight: normal;
        text-align: left;
        text-transform: uppercase;
        -webkit-transition: color .2s ease-in;
        -moz-transition: color .2s ease-in;
        transition: color .2s ease-in;
    }

    a.mobile-trigger-new:hover {
        text-decoration: none;
        color: #E2E2E2;
        border-color: #E2E2E2 !important;
    }

    a.mobile-trigger-new span {
        display: inline;
    }

    a.mobile-trigger-new span:before {
        position: absolute;
        content: 'Menu';
        display: none;
    }

    a.mobile-trigger-new span:after {
        position: relative;
        right: 2px;
        content: 'Close';
        background-color: #000;
        opacity: 0;
        transition: opacity .4s ease-in-out;
        -moz-transition: opacity .4s ease-in-out;
        -webkit-transition: opacity .4s ease-in-out;
        display: none
    }

    /* Change button when menu is open */
    .mobile-open a.mobile-trigger-new {
        -webkit-transition: background-color 0.2s linear;
        -moz-transition: background-color 0.2s linear;
        transition: background-color 0.2s linear;
        background: transparent;
    }

    .mobile-open a.mobile-trigger-new span:after {
        opacity: 1;
    }

    /* Toggle Button Icon & Animations
     ========================================================================== */
    a.mobile-trigger-new i {
        display: inline;
        position: relative;
        top: -5px;
        margin-left: 0px;
        -webkit-transition-duration: 0s;
        -webkit-transition-delay: .2s;
        -moz-transition-duration: 0s;
        -moz-transition-delay: .2s;
        transition-duration: 0s;
        transition-delay: .2s;
    }

    a.mobile-trigger-new i:before,
    a.mobile-trigger-new i:after {
        position: absolute;
        content: '';
    }

    a.mobile-trigger-new i,
    a.mobile-trigger-new i:before,
    a.mobile-trigger-new i:after {
        width: 25px;
        height: 2px;
        background-color: #1F1F39;
        display: inline-block;
    }

    a.mobile-trigger-new i:before {
        margin-top: -6px;
        -webkit-transition-property: margin, -webkit-transform;
        -webkit-transition-duration: .2s;
        -webkit-transition-delay: .2s, 0;
    }

    a.mobile-trigger-new i:after {
        margin-top: 6px;
        -webkit-transition-property: margin, -webkit-transform;
        -webkit-transition-duration: .2s;
        -webkit-transition-delay: .2s, 0;
    }

    .mobile-open a.mobile-trigger-new i {
        background-color: rgba(0, 0, 0, 0.0);
        -webkit-transition-delay: .2s;
        -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
        -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
    }

    .mobile-open a.mobile-trigger-new i:before {
        margin-top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition-delay: 0, .2s;
        -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
        -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
    }

    .mobile-open a.mobile-trigger-new i:after {
        margin-top: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition-delay: 0, .2s;
        -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
        -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
    }

    /* Child Toggle Button
     ========================================================================== */
    a.child-trigger-new {
        display: block !important;
        cursor: pointer;
        position: absolute;
        top: 0px;
        right: 0px;
        width: 55px !important;
        min-width: 55px !important;
        height: 45px !important;
        padding: 0 !important;
        border-left: 1px dotted rgba(255, 255, 255, .20);
    }

    a.child-trigger-new:hover {
        text-decoration: none;
    }

    /* Child Toggle Button Icon & Animations
     ========================================================================== */
    a.child-trigger-new span {
        position: relative;
        top: 50%;
        margin: 0 auto !important;
        -webkit-transition-duration: .2s;
        -moz-transition-duration: .2s;
        transition-duration: .2s;
    }

    a.child-trigger-new span:after {
        position: absolute;
        content: '';
    }

    a.child-trigger-new span,
    a.child-trigger-new span:after {
        width: 10px;
        height: 1px;
        background-color: #fff;
        display: block;
    }

    a.child-trigger-new span:after {
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition-duration: .2s;
        -moz-transition-duration: .2s;
        transition-duration: .2s;
    }

    a.child-trigger-new.child-open span:after {
        -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -webkit-transition-duration: .2s;
        -moz-transition-duration: .2s;
        transition-duration: .2s;
    }

    a.child-trigger-new.child-open span {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transition-duration: .2s;
        -moz-transition-duration: .2s;
        transition-duration: .2s;
    }

    .hs-menu-wrapper {
        display: none;
    }

    /* ====ludo===== */
    .home-ludo-banner {
        position: relative;
        padding-top: 69px;
    }

    .home-ludo-banner .home-banner__img.home-banner__img--desktop {
        display: none;
    }

    .home-ludo-banner .home-banner__img.home-banner__img--mobile {
        display: block;
        /* height: calc(100vh - 52px); */
        object-fit: cover;
        object-position: left center;
        position: relative;
    }

}


/* downlod-bb11.html */

@media (max-width : 768px) {
    .mob_banner {
        padding-left: 30px;
        padding-right: 30px;
    }
}


@media (max-width: 500px) {
    .android-ios_apk a svg {
        width: 20px;
        vertical-align: -11%;
    }

    .mob_banner img {
        /* height: 52%;
        bottom: 4%; */
        height: 47%;
        bottom: 28%;
    }.gst  {
        max-width: 300px;
        bottom: 20%;
    }
    .download-botoom-sec {
        bottom: 10.5%;
        max-width: 300px;
    }

    .sec-body {
        /* height: 100vh; */
        overflow: hidden;
    }

    .heading {
        /* max-width: 320px; */
        width: 100%;
        /* top: 8%; */
    }

    .heading h1 {
        font-size: 24px;
    }

    .heading span {
        font-size: 23px;
    }

    .form-title h3 {
        font-size: 18px;
    }

    .form-links h3 {
        font-size: 18px;
    }

    .details p {
        font-size: 17px;
    }

    .details label {
        font-size: 17px;
    }

    .cv {
        font-size: 10px;
        color: #b2b2b2;
        /* padding: 0px 25px 0px 25px; */
    }
}

/* end downlod-bb11.html */