:root {
    --primary-50: #B8EBF9;
    --primary-100: #7ED8F1;
    --primary-200: #39C6EF;
    --primary-300: #0AA5D1;
    --primary-400: #038DB5;
    --primary-500: #007A9D;
    --primary-600: #006785;
    --primary-700: #00536B;
    --primary-800: #003747;
    --primary-900: #002833;
    --secondary-50: #FFF4D6;
    --secondary-100: #FFECB8;
    --secondary-200: #FEE08B;
    --secondary-300: #FACD4C;
    --secondary-400: #F9C224;
    --secondary-500: #F3B400;
    --secondary-600: #C29000;
    --secondary-700: #8A6600;
    --secondary-800: #574000;
    --secondary-900: #1F1700;
    --gray-100: #F7F7F7;
    --gray-200: #E8E8E8;
    --gray-300: #E0E0E0;
    --gray-400: #C7C7C7;
    --gray-500: #ABABAB;
    --gray-600: #838383;
    --gray-700: #6A6A6A;
    --gray-800: #4F4F4F;
    --gray-900: #363636;
    --black: #1C1C1C;
    --white: #fff;
    --link: #3D76CA;
    --negative: #EC2D2D;
    --positive: #1D8727;
    --primary-red: #DD031C;
    --cta-yellow: #F5D454;
    --body-font: #454545;
    --body-font-size: 1rem;
    --body-bg-color: #FCF9F9;
    --secondary-red: #FFDEE2;
    --secondary-yellow: #FCF4C9;
    --neutral-bg: #F4F4F4;
    --neutral-red: #FCF9F9;
    --stroke: #DADADA;
    --commandHeading: #0D0D0D;
}

body {
    font-family: 'Manrope';
    line-height: normal;
    font-size: var(--body-font-size);
    color: var(--body-font);
    background-color: var(--body-bg-color)
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

li {
    list-style-type: none;
}

p {
    line-height: 28px;
}

/* Utility Class */
.bttn {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
    display: inline-block;
}


/* Section 3 Investment basket */
.commandMainHeading {
    font-size: 2rem;
    color: var(--commandHeading);
    font-weight: bold;
}

.SectinThree {
    padding-top: 40px;
}

    .SectinThree li {
        list-style-type: none;
    }

        .SectinThree li span {
            padding: 1rem 0;
            display: inline-block;
            position: relative;
        }

.CommandButton {
    border: 1px #DD031C solid;
    padding: .4rem 1.1rem;
    border-radius: 12px;
    color: var(--primary-red);
    background: var(--white);
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(to left, #fff 50%, #DD031C 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
}

    .CommandButton svg {
        margin-left: .4rem;
    }

    .CommandButton:hover {
        background-position: left;
        color: #fff;
    }

        .CommandButton:hover svg path {
            fill: #fff;
        }

.OpenAccountCTA {
    display: block;
    margin: auto;
    text-align: center;
    width: 190px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.SectinThreeDiscButt {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: minmax(0, 65%) 1fr;
    font-size: 1rem;
}

.SectionFour {
    background: #fff;
    border: 1px #DADADA solid;
    border-radius: 12px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.SectionFourBoxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 1rem 3rem;
}

.GateWaySection {
    border: 1px #E7E7E7 solid;
    margin-top: 25px;
    border-radius: 8px;
    padding: 1rem;
}

    .GateWaySection:hover {
        box-shadow: 5px 5px 5px #efefef;
    }

    .GateWaySection span {
        background: #fff0f2;
        padding: .6rem;
        border: 1px #FFDEE2 solid;
        border-radius: 4px;
        margin: 0;
        display: inline-block;
    }

.PartnerSectionRupeeIcon span {
    display: inherit;
    text-align: right;
    background: transparent;
    border-color: transparent;
}

.GateWaySection h2 {
    color: #1F1F1F;
    font-size: 1.3rem;
    font-weight: 900;
    padding: .9rem 0;
}

.GateWaySection h6 {
    color: var(--body-font);
    font-size: .95rem;
    line-height: 1.4rem;
}

.ReadingInvestSection {
    padding: 1.5rem 0;
}

.padding-letf-right-0 {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
}

.PinkBox-bg {
    background: #FFDEE2;
}

.YellowBox-bg {
    background: #FCF4C9;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        background-color: red;
    }

    100% {
        transform: scale(1);
        background-color: #FF4136;
    }
}

.InvestMentItem {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .InvestMentItem div {
        background: #fff;
        border-radius: 12px;
        text-align: center;
        padding: 2rem 0;
    }

    .InvestMentItem a {
        text-decoration: none;
        display: block;
        color: #1F1F1F;
        padding: 0;
    }

    .InvestMentItem div h2 {
        font-size: 1rem;
        font-weight: 900;
        padding: 2rem 0 1rem;
        color: #1F1F1F;
    }

    .InvestMentItem div:hover {
        box-shadow: 5px 5px 15px #ffd7dc;
    }

.sectiontopPadding {
    padding-top: 4rem;
}

.MainHeadingDiscrition {
    display: block;
    font-size: .9rem;
    padding: .8rem 9%;
}

.tradingSectionTab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 2rem 0;
}

    .tradingSectionTab div span {
        color: #1F1F1F;
        font-size: 1.3rem;
        font-weight: 900;
        display: block;
        text-align: center;
        padding-top: 2rem;
        padding-left: 50px;
    }

    .tradingSectionTab div h5 {
        color: #1F1F1F;
        font-size: 1rem;
        padding: 1rem 2rem;
        line-height: 1.5rem;
    }

.arrow-box {
    position: relative;
    background: #f4f4f4;
    /* light gray center */
    height: 100px;
    width: 90%;
    transition: .25s ease-in-out;
}

    .arrow-box:hover {
        background: #F2C12A;
    }

    .arrow-box::before,
    .arrow-box::after {
        content: '';
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        border-top: 50px solid transparent;
        border-bottom: 50px solid transparent;
        transition: .25s ease-in-out;
    }

    .arrow-box::before {
        left: 0;
        border-left: 50px solid #fcf9f9;
    }

    .arrow-box:hover::after {
        border-left: 50px solid #F2C12A;
    }

    .arrow-box::after {
        right: -49px;
        border-left: 50px solid #f4f4f4;
    }

.MobileAppSection {
    background: #F8E78F;
    background-image: url(../images/MobileAppBG.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.MobileAppDLsection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.MobileSectionHeading {
    position: relative;
}

    .MobileSectionHeading h2 {
        font-size: 37px;
        color: #1F1F1F;
        font-weight: 900;
        padding-top: 20%;
    }

.MobileimgTopPadd {
    padding-top: 2rem;
    position: relative;
}

.MobileSmallHeading {
    color: #1F1F1F;
    font-size: 18px;
    font-weight: 900;
    padding: 1.5rem 0;
}

.AnimatedArrow {
    position: absolute;
    top: 45%;
    transform: rotate(-29.5deg);
    width: 24%;
}

.AppInvestment {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 2rem 0;
}

.AppInvestmentBody {
    background: #fff;
    margin: 0 1rem;
    border-radius: 12px;
    box-shadow: 0px 0px 8px #e0e0e0;
}

    .AppInvestmentBody h2 {
        color: #1F1F1F;
        font-size: 24px;
        font-weight: 900;
        text-align: center;
        padding: 1rem 0;
    }

    .AppInvestmentBody h6 {
        color: #1F1F1F;
        font-size: 14px;
        text-align: center;
        padding: 0 9% 1rem;
        line-height: 1.5rem;
    }

    .AppInvestmentBody span {
        width: 100%;
        display: block;
        background: #F5D454;
        padding: .7rem 0;
        margin: 0 auto;
        text-align: center;
        border-radius: 0 0 12px 12px;
    }

        .AppInvestmentBody span img {
            width: 35%;
        }

.desktopImgShow {
    display: block !important;
}

.MakeInvestTop {
    border-top: 1px #E7E7E7 solid;
    border-bottom: 1px #E7E7E7 solid;
    margin-top: 4rem;
    /* margin-bottom: 4rem; */
}

.desktopImgHide {
    display: none !important;
}

.MakeinvestmentScri {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

    .MakeinvestmentScri ul {
        display: initial;
        vertical-align: -moz-middle-with-baseline;
    }

        .MakeinvestmentScri ul li {
            list-style-type: none;
        }

.Makeinvestment {
    display: block;
    font-size: .9rem;
    padding: 1rem 0;
    line-height: 1.5rem;
}

.AppStroreIcon img {
    width: 20%;
    padding: 0 .1rem;
}

.AppStroreIcon button {
    margin-right: 1rem;
}


.img_container {
    overflow: hidden;
    position: relative;
}

    .img_container span {
        display: block;
        width: 2748px;
        height: 145px;
        animation: wave 10s linear infinite;
        transform: translate3d(0, 0, 0);
        z-index: -1;
    }

        .img_container span:first-child {
            background: url(../images/slider-img1.webp) repeat-x;
        }

        .img_container span:last-child {
            background: url(../images/slider-img1.webp) repeat-x;
            animation: wave 10s linear infinite reverse;
        }

    .img_container::before,
    .img_container::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100px;
        background: linear-gradient(270deg, rgba(249, 250, 252, 0) 0%, #FCF9F9 40.87%);
        filter: blur(7px);
        left: -15px;
        top: 0;
        bottom: 0;
        z-index: 1;
    }

    .img_container::after {
        left: auto;
        right: -15px;
        transform: rotate(180deg);
    }

@keyframes wave {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: -687px;
    }
}

.makeInvestmentGrideSec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/*-----banner-sec----------*/
.banner-block > div:first-child {
    padding: 60px 0 0 60px;
}

.banner-block {
    background: white;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    margin: 16px 3%;
    display: flex;
    width: 94%;
}

.banner-sec h1 {
    font-size: 40px;
    font-weight: bold;
    color: var(--commandHeading);
    padding: 0 25% 1rem 0;
}

    .banner-sec h1 span {
        color: var(--primary-red);
    }

.banner-sec p {
    padding: 0 25% 1rem 0;
}

.input-block {
    padding: 1rem 0;
}

.banner-sec input {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 10px 24px;
    margin-right: 16px;
    width: 42%;
}

.banner-sec button {
    background: var(--cta-yellow);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: bold;
}

.WhatAppSec {
    display: flex;
}

    .WhatAppSec img {
        padding-right: .3rem;
    }

    .WhatAppSec a {
        padding-left: .3rem;
        font-weight: 900;
        color: #1F1F1F;
        text-decoration: none;
    }

        .WhatAppSec a:hover {
            color: var(--primary-red);
        }

.banner-block ul {
    display: flex;
    list-style: none;
    padding: 3rem 0 1.5rem 0;
    margin: 0;
}

    .banner-block ul li:first-child {
        padding-left: 0;
    }

    .banner-block ul li {
        padding: 0px 30px;
        border-right: 1px solid var(--stroke);
    }

        .banner-block ul li h3 {
            font-size: 24px;
            font-weight: 900;
            color: #000;
        }

        .banner-block ul li p {
            color: var(--body-font);
            font-size: .85rem;
            padding: .5rem 0 0;
        }

.download-container {
    padding: 1rem 0;
    margin: 0;
}

    .download-container img {
        padding: 0 .5px;
        margin: 0;
        width: 20%;
    }

/*----- end banner-sec----------*/

.openAccountDeskHide {
    display: none;
}

.openAccountDeskShow {
    display: inline-block;
}

.mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 54%;
    background: #fff;
    height: 100%;
    z-index: 100;
    display: none;
}

    .mobileMenu ul {
        width: 100%;
        padding: 0;
        margin: 0;
        display: inline-block;
        background: #fff;
    }

        .mobileMenu ul li {
            width: 94%;
            padding: .5rem 1rem;
            margin: 0 3%;
            display: flex;
            list-style-type: none;
            border-bottom: 1px rgb(226, 226, 226) solid;
            font-weight: 600;
            font-size: .9rem;
            justify-content: space-between;
        }

            .mobileMenu ul li svg {
                text-align: right;
            }

            .mobileMenu ul li a {
                text-decoration: none;
                color: var(--body-font);
            }

            .mobileMenu ul li:first-child {
                border-bottom: 0px rgb(226, 226, 226) solid;
                padding: .5rem 0rem;
                justify-content: space-between;
                display: flex;
            }

.MobileMenuLogo img {
    width: 45%;
}

.mobileMenu ul li:first-child span {
    padding-top: .5rem;
}

.mobileMenu ul li button {
    background-color: #DD031C;
    border: 1px #DD031C solid;
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: .4rem 0;
    border-radius: .5rem;
}

.mobileBodyLightGrayBG {
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
    backdrop-filter: blur(5px);
}

.targetDiv {
    display: none;
}

    .targetDiv a {
        font-size: .9rem;
        text-decoration: none;
        padding: .5rem 1.5rem;
        display: block;
        margin: 0 5%;
        border-bottom: 1px #ffd7db solid;
        color: #838383;
        font-weight: 600;
    }

.CloseIcon {
    cursor: pointer;
}

.json_video {
    height: 500px;
    width: 500px;
}

.demat_container {
    display: none;
}

.demat_account {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background-color: #FFFFFF;
    border-top: 1px #D1D1D1 solid;
}

    .demat_account > div {
        width: 100%;
    }

    .demat_account input {
        border: 1px #DEDEDE solid;
        padding: .45rem 1rem;
        border-radius: .5rem 0 0 .5rem;
        color: #454545;
        font-size: 1rem;
        margin: 0 3px;
        width: 100%;
        /* background-image: url('../images/Icon _Search.webp'); */
        background-repeat: no-repeat;
        background-position: 3%;
        background-color: #f6f6f6;
        outline: 0;
    }

    .demat_account button {
        background: #DD031C;
        color: #fff;
        border: 1px #DD031C solid;
        padding: .55rem .3rem;
        border-radius: 0 .5rem .5rem 0;
        font-size: 0.875rem;
        margin: 0 3px;
        transition: .25s ease-in-out;
        width: 100%;
        white-space: nowrap;
    }

.show-767 {
    display: none;
    width: fit-content !important;
}
    /* .show-767 .search_btn{
  padding: .45rem .5rem .45rem 0;
  margin: 0;
  background-color: transparent !important;
 border:none !important;
}
.show-767 .search_btn img{
  width: 20px;
} */
    .show-767 span {
        display: inline-block;
        vertical-align: -webkit-baseline-middle;
        margin-right: 6px;
    }

@media(max-width: 1399.90px) {
    .AnimatedArrow {
        width: 20%;
    }

    /* .SearchAndButtSec ul li input {
    width: 100% !important;
  } */

    .logoSet {
        padding: .8rem 0 !important;
    }
}

@media(max-width: 1300px) {
    .banner-block > div:first-child {
        padding: 30px 0 0 20px;
    }

    .banner-sec h1 {
        font-size: 30px;
        padding: 0 10% .5rem 0;
    }

    .banner-sec p {
        padding: 0 11% 1rem 0;
        line-height: 1.4rem;
    }

    .banner-block ul li {
        padding: 0px 10px;
    }

        .banner-block ul li h3 {
            font-size: 22px;
        }

    .download-container img {
        width: 25%;
    }

    .banner-block {
        margin: 15px 1%;
        width: 98%;
    }

    .logoSet {
        padding: .7rem 0 !important;
    }
}

@media(max-width: 1199.90px) {
    .json_video {
        height: 430px;
        width: 430px;
    }

    .AppInvestmentBody span img {
        width: 46%;
    }

    .arrow-box {
        width: 85%;
    }

    .tradingSectionTab div span {
        font-size: 1.1rem;
    }

    .logoSet {
        padding: 1rem 0 !important;
    }

    .whyUs-sec ul li {
        padding: 36px 15px !important;
    }
}

@media(max-width: 991.90px) {
    .json_video {
        height: 350px;
        width: 350px;
    }

    .AppInvestmentBody h2 {
        font-size: 19px;
    }

    .commandMainHeading {
        font-size: 1.8rem !important;
    }

    .MobileSectionHeading h2 {
        font-size: 30px;
    }

    .PlayStoreIcon img {
        width: 40%;
    }

    .tradingSectionTab div span {
        font-size: .9rem;
    }

    .arrow-box {
        height: 60px;
    }

        .arrow-box::before,
        .arrow-box::after {
            border-top: 30px solid transparent;
            border-bottom: 30px solid transparent;
        }

        .arrow-box::before {
            border-left: 34px solid #fcf9f9;
        }

        .arrow-box::after {
            right: -30px;
            border-left: 34px solid #f4f4f4;
        }

    .tradingSectionTab div span {
        padding-top: .8rem;
    }

    .arrow-box:hover::after {
        border-left: 31px solid #F2C12A;
    }

    .tradingSectionTab div h5 {
        font-size: .9rem;
    }

    .GateWaySection h2 {
        font-size: 1.1rem;
    }

    .AppInvestmentBody h6 {
        font-size: .95rem;
    }

    .MakeinvestmentScri {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

        .MakeinvestmentScri ul {
            display: inline-block;
        }

    .makeInvestmentGrideSec {
        grid-template-columns: repeat(1, 1fr);
    }

    .banner-sec p {
        padding: 0 3% .5rem 0;
        line-height: 1.2rem;
        font-size: .85rem;
    }

    .banner-sec h1 {
        font-size: 27px;
        padding: 0 1% .3rem 0;
    }

    .input-block {
        padding: .4rem 0;
    }

    .banner-sec input {
        border-radius: 10px;
        padding: 6px 10px;
        margin-right: 7px;
        width: 50%;
        font-size: .85rem;
    }

    .banner-sec button {
        padding: 6px 20px;
        border-radius: 10px;
        font-size: .9rem;
    }

    .banner-block ul {
        padding: 1rem 0 1.5rem 0;
    }

        .banner-block ul li {
            padding: 0px 8px;
        }

            .banner-block ul li h3 {
                font-size: 17px;
            }

    .download-container {
        padding: 0rem 0 1rem;
        margin: 0;
    }

    .DesktopMenuShow {
        display: none !important;
    }

    .DesktopMenuHide {
        display: block !important;
    }

    /* .SearchAndButtSec ul li input {
    width: 90% !important;
  } */

    .SearchAndButtSec ul li button {
        /* padding: .6rem 1rem !important; */
        font-size: .9rem !important;
    }

    .SearchAndButtSec ul li input {
        font-size: .9rem !important;
    }

    .humbarger-Icon span {
        display: block !important;
    }

    .logoSet {
        padding: .3rem 0 0 .3rem !important;
        width: 65%;
    }

    .SearchAndButtSec ul li {
        width: 50%;
    }

        .SearchAndButtSec ul li:first-child {
            margin-right: 10px !important;
        }
}

@media(max-width: 767.90px) {
    .video_container {
        text-align: center;
    }

    .InvestMentItem div h2 {
        font-size: .9rem;
    }

    .commandMainHeading {
        font-size: 1.7rem !important;
    }

    .SectinThreeDiscButt {
        font-size: .92rem;
    }

    .tradingSectionTab div span {
        font-size: .8rem;
        padding-left: 44px;
    }

    .tradingSectionTab div h5 {
        font-size: .85rem;
        padding: 1rem 0rem;
    }

    .commandMainHeading {
        font-size: 1.3rem !important;
    }

    .MainHeadingDiscrition {
        font-size: .85rem;
        padding: .8rem 6%;
    }

    .SectionFourBoxes {
        grid-template-columns: repeat(2, 1fr);
    }

        .SectionFourBoxes :last-child {
            grid-column: 1 / -1;
        }

            .SectionFourBoxes :last-child.GateWaySection {
                margin-top: 4px;
            }

    .AppInvestment {
        grid-template-columns: repeat(2, 1fr);
    }

        .AppInvestment :last-child {
            grid-column: 1 / -1;
        }

    .AppInvestmentBody {
        margin: 0;
    }

    .GateWaySection h6 {
        font-size: .9rem;
    }

    .AppInvestmentBody h6 {
        font-size: .9rem;
        padding: 0 5% .5rem;
    }

    .desktopImgShow {
        display: none !important;
    }

    .desktopImgHide {
        display: block !important;
    }

    .AppInvestmentBody:last-child span img {
        width: 25%;
    }

    .MobileSectionHeading h2 {
        font-size: 26px;
    }

    .download-container img {
        width: 15%;
    }

    .banner-sec p {
        padding: 0 3% 1rem 0;
    }

    .banner-block ul {
        padding: 1.5rem 0 1.5rem 0;
    }

    .SearchAndButtSec ul li button {
        /* padding: .6rem .4rem !important; */
        font-size: .8rem !important;
    }

    .SearchAndButtSec ul li input {
        font-size: .8rem !important;
        margin-bottom: .2rem !important;
        /* display: none; */
    }

    .humbarger-Icon span {
        margin-top: .4rem !important;
    }

    .logoSet {
        padding: .3rem 0 .3rem .3rem !important;
    }

    .footer_sc .footer_container .left ul {
        padding-left: 0;
    }

    .no_style {
        padding-left: 0;
    }

    .AppStroreIcon img {
        width: 24%;
        padding: 0 .1rem;
    }

    .whyUs-section {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .whyUs-sec ul {
        padding-left: 0 !important;
    }

    .demat_container {
        display: block;
    }

    .show-767 {
        display: block;
    }
}

@media(max-width: 575.90px) {
    .SectinThreeDiscButt {
        grid-template-columns: minmax(0, 100%);
    }

    .SectinThree li span {
        padding: .5rem 0 0;
    }

    .SectinThree li button {
        font-size: .85rem;
        padding: .4rem .8rem;
    }

    .InvestMentItem {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }

        /* .InvestMentItem :last-child {
    grid-column: 1 / -1;
  } */

        .InvestMentItem div {
            padding: 1rem 0;
        }

    .tradingSectionTab {
        grid-template-columns: repeat(1, 1fr);
    }

        .tradingSectionTab div h5 {
            padding: .6rem 5%;
        }

        .tradingSectionTab div span {
            margin-left: 5%;
        }

        .tradingSectionTab div span {
            padding-top: 1rem;
        }

    .SectionFour {
        border: 1px #DADADA solid;
        border-radius: 0px;
    }

    .AppInvestment {
        grid-template-columns: repeat(1, 1fr);
    }

    .AppInvestmentBody {
        background: #fff;
        margin: 0 1rem;
        border-radius: 10px;
        box-shadow: 0px 0px 8px #e0e0e0;
    }

    .MobileSectionHeading h2 {
        font-size: 21px;
    }

    .MobileSmallHeading {
        font-size: 16px;
        padding: 1rem 0;
    }

    .AnimatedArrow {
        top: 47%;
    }

    .AppInvestmentBody span img {
        width: 25%;
    }

    .SectionFourBoxes {
        grid-template-columns: repeat(1, 1fr);
    }

    .MobileAppDLsection {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .MobileSectionHeading h2 {
        padding-top: 10%;
    }

    .AppStroreIcon img {
        width: 25%;
    }

    .PlayStoreIcon img {
        width: 24%;
    }

    .AppStroreIcon img {
        width: 24%;
        margin-top: 0rem;
    }

    .openAccountDeskHide {
        display: inline-block;
    }

    .openAccountDeskShow {
        display: none;
    }

    /* .SearchAndButtSec ul li input {
    width: 100% !important;
  } */

    .SearchAndButtSec ul {
        justify-content: inherit;
    }

        .SearchAndButtSec ul li {
            width: auto;
        }

            .SearchAndButtSec ul li input {
                padding: .4rem 1rem .4rem 1.7rem !important;
            }

    .logoSet {
        padding: .3rem 0 .3rem .3rem !important;
        width: 100%;
    }

    .marqueeSection {
        /* width: 100% !important; */
    }
}

@media (max-width: 479.9px) {
    .json_video {
        height: 300px;
        width: 300px;
    }

    .logoSet {
        width: 86px;
    }

    .banner-block ul li h3 {
        font-size: 15px;
    }

    .download-container img {
        width: 29%;
    }

    .openAccountDeskHide {
        padding-left: 0.3rem;
    }

    .humbarger-Icon {
        padding: 0;
    }

    .whyUs-sec ul {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .SearchAndButtSec ul li button:last-child svg {
        display: none;
    }

    .demat_account > div:first-child {
        flex: 2;
    }

    .demat_account > div:last-child {
        flex: 1;
    }

    .demat_account button {
        font-size: 12px;
    }

    .demat_account input::placeholder {
        font-size: 13px;
    }

    .commandMainHeading {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 359.9px) {
    .json_video {
        height: 270px;
        width: 270px;
    }

    .InvestMentItem div h2 {
        font-size: .85rem;
    }

    .banner-sec h1 {
        font-size: 23px;
    }

    .banner-sec input {
        width: 90%;
    }

    .banner-sec button {
        width: 90%;
        margin-top: .5rem;
    }

    .marqueeheading {
        font-size: 12px;
        width: 126px;
    }
}

/* new Header */
.HeaderBG {
    border-bottom: 1px #D1D1D1 solid;
    border-bottom: 1px #D1D1D1 solid;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(13px);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 6px 0;
}

    .HeaderBG .row {
        align-items: center;
    }

.logoSet {
    padding: .6rem 0;
}

.SearchAndButtSec {
    width: 100%;
    padding: 0;
    margin: .4rem 0 0;
}

    .SearchAndButtSec ul {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
    }

        .SearchAndButtSec ul li {
            padding: 0;
            margin: 0;
            list-style-type: none;
            white-space: nowrap;
        }

            .SearchAndButtSec ul li:first-child {
                flex: 2;
                margin-right: 50px;
            }

            .SearchAndButtSec ul li button {
                background: #fff;
                border: 1px #AD071A solid;
                padding: .45rem 1rem;
                border-radius: .5rem;
                color: #AD071A;
                font-size: 0.875rem;
                margin: 0 3px;
                transition: .25s ease-in-out;
            }

                .SearchAndButtSec ul li button:hover {
                    background: #fddada;
                }

                .SearchAndButtSec ul li button:last-child {
                    background: #DD031C;
                    color: #fff;
                    border: 1px #DD031C solid;
                }

                    .SearchAndButtSec ul li button:last-child svg {
                        margin-left: .3rem;
                    }

                .SearchAndButtSec ul li button:hover:last-child {
                    background: #A40D1F;
                }

            .SearchAndButtSec ul li input {
                border: 1px #DEDEDE solid;
                padding: .45rem 1rem .45rem 2.6rem;
                border-radius: .5rem;
                color: #454545;
                font-size: 1rem;
                margin: 0 3px;
                /* width: 170%; */
                width: 100%;
                background-image: url('../images/Icon _Search.webp');
                background-repeat: no-repeat;
                background-position: 3%;
                background-color: #f6f6f6;
                outline: 0;
            }

            .SearchAndButtSec ul li .login,
            .SearchAndButtSec ul li.search_input {
                position: relative;
            }

.login_menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 10;
    padding: 8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(221, 3, 28, 0.1);
    text-align: start;
}

    .login_menu p a {
        width: 100%;
        display: block;
        white-space: nowrap;
        margin: 0 !important;
        padding: 8px !important;
        font-weight: 400 !important;
        border-bottom: 1px solid #E7E7E7;
        position: relative;
        font-size: 14px;
        text-decoration: none;
        color: #3D3D3D;
    }

    .login_menu p:last-child a {
        border-bottom: 1px solid transparent;
    }

    .login_menu p a:hover {
        color: #DD031C;
        background: #FFF0F2;
    }

.SearchAndButtSec ul li button.login:hover .login_menu {
    display: block;
}

.mainMenu {
    width: 100%;
    padding: 0;
    margin: 0;
}

    .mainMenu ul {
        width: 100%;
        padding: 0;
        margin: 0;
    }

        .mainMenu ul li {
            display: inline-block;
            position: relative;
        }

            .mainMenu ul li span {
                padding: .5rem 1rem;
                margin: .1rem 0 .1rem;
                font-size: .9rem;
                color: #3D3D3D;
                font-weight: 600;
                display: inline-block;
            }

.sub_menu {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    z-index: 10;
    padding: 8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(221, 3, 28, 0.1);
}

    .sub_menu ul li {
        display: block;
    }

        .sub_menu ul li a {
            width: 100%;
            display: block;
            white-space: nowrap;
            margin: 0 !important;
            padding: 8px !important;
            font-weight: 400 !important;
            border-bottom: 1px solid #E7E7E7;
            position: relative;
        }

        .sub_menu ul li:last-child a {
            border-bottom: none;
        }
        /* .sub_menu ul li a:hover::before{
  position: absolute;
  content: "";
  top: 16px;
  right: 10px;
  height: 9px;
  width: 5px;
  background: url('data:image/svg+xml,<svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.77131 4.97401L0.999979 8.74534L0.057312 7.80268L3.35731 4.50268L0.057312 1.20268L0.999979 0.26001L4.77131 4.03134C4.89629 4.15636 4.9665 4.3259 4.9665 4.50268C4.9665 4.67945 4.89629 4.84899 4.77131 4.97401Z" fill="%23DD031C"/></svg>');
} */
        .sub_menu ul li a:hover {
            /* font-size: 14px; */
            color: #DD031C;
            background: #FFF0F2;
        }

.mainMenu ul li:hover .sub_menu {
    display: block;
}

.mainMenu ul li a {
    padding: .5rem 1rem;
    margin: .1rem 0 .1rem;
    list-style-type: none;
    font-size: .9rem;
    color: #3D3D3D;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.mainMenu ul li svg {
    padding-left: .2rem;
}

.DesktopMenuShow {
    display: inline-block;
}

.DesktopMenuHide {
    display: none;
}

.humbarger-Icon {
    display: flex;
}

    .humbarger-Icon span {
        display: none;
        margin-top: 1rem;
        cursor: pointer;
    }

.marqueeBody {
    background-color: #fff;
    width: 100%;
    float: left;
}

.marqueeheading {
    background: #CD1220;
    padding: .2rem .5rem;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    width: 150px;
    display: block;
    text-align: center;
    float: left;
}

.marqueeSection {
    float: left;
    padding: 0;
    margin: 0;
    width: calc(100% - 150px);
    font-size: .9rem;
    padding: .2rem 0;
}

/*---------------------footer--------------------------*/
footer {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 40px;
}

.footer_sc {
    /* padding: 0 16px; */
    /* padding: 39px 80px 16px; */
    /* background: rgba(246, 246, 246, 0.8); */
}

    .footer_sc .footer_container {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 26px;
    }

        .footer_sc .footer_container .left ul li {
            margin-bottom: 10px;
            font-size: .9rem;
        }

        .footer_sc .footer_container .right {
            display: grid;
            grid-template-columns: repeat(5, auto);
            gap: 20px;
        }

            .footer_sc .footer_container .right ul {
                padding: 0;
            }

                .footer_sc .footer_container .right ul:last-child {
                    grid-column: span 2;
                }

                    .footer_sc .footer_container .right ul:last-child > div {
                        display: flex;
                        gap: 16px;
                        justify-content: space-between;
                    }

                .footer_sc .footer_container .right ul li:first-child, .footer_sc .footer_container .right ul li strong {
                    color: var(--black);
                    font-weight: 600;
                    font-size: .9rem;
                }

                .footer_sc .footer_container .right ul li.text_normal {
                    font-weight: unset !important;
                }

                .footer_sc .footer_container .right ul li {
                    margin-bottom: 10px;
                }

    .footer_sc a {
        color: var(--body_text);
        text-decoration: none;
        display: inline-block;
        font-size: .85rem;
    }

    .footer_sc .right .no_style li.dropdown_link {
        color: var(--body_text);
        text-decoration: none;
        font-size: .85rem;
        white-space: nowrap;
        position: relative;
    }

        .footer_sc .right .no_style li.dropdown_link .sub_menu ul li {
            margin: 0;
        }

        .footer_sc .right .no_style li.dropdown_link:hover .sub_menu {
            display: block;
            top: 18px;
        }

    .footer_sc .finace {
        font-size: .85rem;
    }

        .footer_sc .finace p:first-child {
            padding: 15px 0;
        }

    .footer_sc .investor span {
        display: block;
        color: var(--negative);
        padding-top: 16px;
    }

    .footer_sc .investor * {
        font-size: 12px;
    }

    .footer_sc .footer_container .social_media_icons a:first-child {
        padding-left: 0;
    }

    .footer_sc .footer_container .social_media_icons a {
        display: inline-block;
        padding: 10px;
    }

.footer_container > ul:first-child li {
    margin-bottom: 10px;
}

.footer_container span {
    display: inline-block;
}

ul.copy_rights {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px;
    margin-top: 24px;
    font-size: .9rem;
}

    ul.copy_rights a {
        color: var(--black);
        text-decoration: none;
        font-weight: 600;
    }

@media(max-width:1025px) {
    .footer_sc .footer_container .right {
        gap: 16px;
    }
}

@media(max-width:991px) {
    .footer_sc .footer_container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .footer_sc .footer_container .left ul {
            display: flex;
            justify-content: space-between;
        }

        .footer_sc .footer_container .right {
            grid-template-columns: repeat(2, 1fr);
        }

    .LearnTutorialGride {
        grid-template-columns: 1fr !important;
    }

    .VideoimgPadding {
        padding-top: .4rem !important;
        padding-bottom: .4rem !important;
    }

    .footer_sc .footer_container .right ul:last-child {
        grid-column: unset
    }
}

@media(max-width:767px) {
    .footer_sc .footer_container .right {
        grid-template-columns: repeat(2, auto);
    }

    ul.copy_rights {
        flex-direction: column;
    }

    .home_signup_sc {
        padding: 18px 0px;
    }

    .your-slider li {
        margin: 0 10px !important;
    }

    .imgWidth {
        width: 70%;
    }
}

@media (max-width: 479px) {
    .footer_sc .footer_container .left ul {
        flex-direction: column;
        padding-left: 0;
    }

    .footer_sc .footer_container .right {
        grid-template-columns: repeat(2, auto);
    }

    .footer_sc .right .no_style li.dropdown_link svg {
        width: 14px;
    }

    .no_style {
        padding-left: 0;
    }

    .AppStroreIcon img {
        width: 34%;
        margin-top: .4rem;
    }

    .imgWidth {
        width: 90%;
    }

    .footer_sc .footer_container .right ul:last-child > div {
        gap: 0;
        flex-direction: column;
    }
}

.your-slider {
    padding: 0;
}

    .your-slider li {
        margin: 0px 4px;
    }

    .your-slider .slick-slide img {
        margin: 0 auto;
    }

.slick-next {
    right: 0;
}

    .slick-next:before,
    .slick-prev:before {
        content: '';
    }

.your-slider .slick-dots li button:before {
    font-size: 24px;
    color: #000;
    opacity: 0.5;
}

.your-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

.your-slider .slick-track {
    margin-bottom: 10px;
}

.your-slider .slick-dots li button:before {
    /* color: var(--neutral-600); */
    /* optional: color for active dot */
}

.testimony-slider ul {
    padding-left: 1rem;
    background: #FFF;
    margin: 0px 12px;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    padding-bottom: 88px;
    position: relative;
    margin: 0 1rem !important;
}

    .testimony-slider ul li {
        padding: 5px;
    }

.testimony-slider li:nth-child(2) {
    font-size: 18px;
    color: var(--primary-red);
    font-weight: 700;
}

.testimony-slider li p {
    color: var(--primary-black);
    font-size: 14px;
}

.testimony-slider .img-container {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.testimonials .common-heading {
    margin-bottom: 0;
}

.social-container {
    display: flex;
    justify-content: center;
}

    .social-container a:not(.social-container a:last-child) {
        margin-right: 24px;
    }

.testimony-slider .slick-track,
.testimony-slider .slick-list {
    display: flex;
    align-items: stretch;
}

.google-btn {
    position: relative;
    padding-right: 64px;
    align-self: center;
}

    .google-btn::before {
        position: absolute;
        content: '';
        top: 50%;
        right: 16px;
        height: 38px;
        width: 38px;
        background-image: url('../images/Google_Icon.png');
        background-repeat: no-repeat;
        transform: translateY(-50%);
    }

    .google-btn::after {
        position: absolute;
        content: '';
        top: 0px;
        right: -130px;
        height: 62px;
        width: 82px;
        background-image: url(../images/downward_arrow_bg.png);
        background-repeat: no-repeat;
        transform: translateY(-50%);
    }

.center-btn {
    text-align: center;
    margin-top: 50px;
}

.HeadingCommandTopMargin {
    margin-top: 2.5rem;
}

.HeadingCommandBottMargin {
    margin-bottom: 1.5rem;
}

.LearningTutorials button {
    display: none !important;
}

.LearningTutorials,
.slick-slide {
    margin: 0 .3rem !important;
}

.MakeInvestTop.mb {
    margin-bottom: 4rem;
}

.LearnTutorialGride {
    grid-template-columns: 1fr 2fr;
}

.VideoimgPadding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}


/* rakesh css  start*/

/* Product and Services */
.Rudrabreadcrumb {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem
}

    .Rudrabreadcrumb a {
        font-size: .9rem;
        text-decoration: none;
        cursor: pointer;
        float: left;
        color: #123;
        padding-right: .5rem;
    }

        .Rudrabreadcrumb a:hover {
            color: #DD031C;
        }

    .Rudrabreadcrumb span {
        font-size: .9rem;
        text-decoration: none;
        float: left;
        color: #000;
        padding-left: .5rem;
        font-weight: 600;
    }

.ServicesTab {
    width: 100%;
    justify-content: center;
    display: flex;
}

    .ServicesTab ul {
        display: flex;
        padding: 0;
        margin: 2rem 0;
        background-color: #fff;
        border-radius: 1rem;
        border-bottom: 1px #D1D1D1 solid;
        max-width: 1000px;
        box-shadow: 0px 15px 15px rgba(255, 108, 110, 0.06);
        overflow-x: auto;
    }

        .ServicesTab ul li a {
            padding: 1.5rem 2.5rem;
            margin: 0;
            font-size: 1rem;
            color: #5D5D5D;
            padding: 22px 16px;
            border-bottom: 2px solid transparent;
            margin: 0 6px;
            white-space: nowrap;
            display: block;
            text-decoration: none;
        }

        .ServicesTab ul li:hover a {
            color: #DD031C;
        }

        .ServicesTab ul li a.active {
            border-bottom: 2px solid #DD031C;
            color: #DD031C;
        }

.ServicEquitySec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 60px 0;
}

    .ServicEquitySec h2 {
        margin-bottom: 24px;
    }

    .ServicEquitySec img {
        margin-top: 60px;
        text-align: left;
    }

    .ServicEquitySec .smarter-invest > div {
        padding: 24px 26px;
        background: #FFFFFF;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
        height: fit-content;
        border-bottom: 1px solid rgba(0, 0, 0, 0.19);
    }

        .ServicEquitySec .smarter-invest > div:first-child {
            border-radius: 16px 16px 0 0;
        }

        .ServicEquitySec .smarter-invest > div:last-child {
            border-radius: 0 0 16px 16px;
            border-bottom: 1px solid transparent;
        }

    .ServicEquitySec .smarter-invest span {
        font-weight: 400;
        font-size: 72px;
        line-height: 80px;
        color: rgba(0, 0, 0, 0.19);
    }

    .ServicEquitySec .smarter-invest h6 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        color: #1F1F1F;
        margin: 12px 0;
    }



.equity_sc .content {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 100px;
    margin: 60px 0;
}

    .equity_sc .content h2 {
        padding-bottom: 20px;
    }

    .equity_sc .content .ownership_container {
        margin-top: 40px;
    }

        .equity_sc .content .ownership_container > div {
            padding: 20px;
            background: #FFFFFF;
            border-radius: 8px;
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            cursor: pointer;
        }

            .equity_sc .content .ownership_container > div:hover {
                box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.08);
            }

            .equity_sc .content .ownership_container > div span {
                margin-right: 24px;
            }

            .equity_sc .content .ownership_container > div h6 {
                font-weight: 700;
                font-size: 24px;
                color: #1F1F1F;
                margin-bottom: 16px;
            }

            .equity_sc .content .ownership_container > div p {
                line-height: 24px;
            }

    .equity_sc .content .dmat_account {
        background-color: #fff;
        padding: 18px;
        height: fit-content;
        margin-top: 90px;
    }

        .equity_sc .content .dmat_account p {
            font-weight: 700;
            font-size: 16px;
            line-height: 24px;
            color: #0D0D0D;
            padding-top: 16px;
        }

        .equity_sc .content .dmat_account > div:last-child {
            display: flex;
            flex-direction: column;
        }

        .equity_sc .content .dmat_account > div input {
            padding: 10px 24px;
            border: 1px solid #E7E7E7;
            border-radius: 12px;
            outline: 0;
            margin-top: 16px;
        }

        .equity_sc .content .dmat_account > div button {
            padding: 10px 100px;
            background: #DD031C;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #DD031C;
            color: #fff;
            margin-top: 24px;
        }

            .equity_sc .content .dmat_account > div button:hover {
                background: #A40D1F;
            }

.key_feature_sc .key_feature_container > div:first-child {
    text-align: center;
}

.key_feature_sc .key_feature_container .no_style {
    display: flex;
    justify-content: center;
    margin: 24px 0 24px 0;
    flex-wrap: wrap;
}

    .key_feature_sc .key_feature_container .no_style li {
        align-items: flex-start;
        padding: 8px 24px;
        border-radius: 10px;
        border: 1px solid #D1D1D1;
        margin-right: 12px;
    }

        .key_feature_sc .key_feature_container .no_style li.active {
            background: #FFDEE2;
            border: 1px solid #FFDEE2;
        }

.key_feature_sc .grid_container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(358px, 1fr)); */
    gap: 20px;
}

    .key_feature_sc .grid_container > div {
        padding: 40px 20px;
        border: 1px solid #D1D1D1;
        border-radius: 8px;
        background-color: rgba(255, 255, 255, 0.65);
    }

        .key_feature_sc .grid_container > div:hover {
            background: #FFFFFF;
            box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid transparent;
        }

    .key_feature_sc .grid_container h6 {
        font-weight: 700;
        font-size: 20px;
        line-height: 32px;
        color: #1F1F1F;
        padding-bottom: 16px;
    }

.browser_trading_sc .browser_trading_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    position: relative;
}

    .browser_trading_sc .browser_trading_container > div:first-child .show-768 {
        display: none;
    }

    .browser_trading_sc .browser_trading_container > div:first-child img {
        width: 100%;
        max-width: 480px;
    }

    .browser_trading_sc .browser_trading_container button {
        padding: 10px 86px;
        color: #fff;
        border: 1px #DD031C solid;
        border-radius: 12px;
        background: transparent;
    }

        .browser_trading_sc .browser_trading_container button.newuser_btn:hover {
            background: #A40D1F;
        }

        .browser_trading_sc .browser_trading_container button.login_btn:hover {
            color: white;
            background-color: #DD031C;
        }

        .browser_trading_sc .browser_trading_container button.login_btn {
            margin: 12px 16px 0 0;
            color: #DD031C;
        }

        .browser_trading_sc .browser_trading_container button.newuser_btn {
            background: #DD031C;
            color: var(--white);
        }

.mobile_trading_sc {
    padding-bottom: 30px;
}

.browser_trading_sc,
.mobile_trading_sc {
    padding-top: 70px;
}

    .mobile_trading_sc .mobile_trading_container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

        .mobile_trading_sc .mobile_trading_container > div:first-child {
            grid-column: span 2;
        }

    .browser_trading_sc .browser_trading_container ul,
    .mobile_trading_sc ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin-top: 26px;
    }

        .browser_trading_sc .browser_trading_container ul li,
        .mobile_trading_sc ul.no_style li {
            padding: 14px;
            background: #FFFFFF;
            border: 1px solid #D1D1D1;
            border-radius: 12px;
            margin: 0 16px 16px 0;
        }

            .browser_trading_sc .browser_trading_container ul li:hover,
            .mobile_trading_sc ul.no_style li:hover {
                color: #DD031C;
                box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
            }

    .browser_trading_sc .browser_trading_container p,
    .mobile_trading_sc .mobile_trading_container p {
        margin: 14px 0 26px 0;
    }

@media(max-width:1199px) {
    .equity_sc .content {
        gap: 46px;
    }

    .browser_trading_sc .browser_trading_container ul li, .mobile_trading_sc ul.no_style li {
        padding: 10px;
        margin: 0px 10px 10px 0;
    }

    .browser_trading_sc .browser_trading_container button {
        padding: 10px 78px
    }
}

@media(max-width:991px) {
    /* .ServicesTab ul li {
    padding: 14px 10px;
    margin: 0 14px;
} */
    .ServicesTab ul li a {
        padding: 12px 14px;
    }

    .ServicEquitySec {
        grid-template-columns: repeat(1, 1fr);
        margin: 40px 0;
    }

        .ServicEquitySec .service_img {
            text-align: center;
        }

        .ServicEquitySec .smarter-invest > div {
            padding: 16px 18px;
        }

        .ServicEquitySec .smarter-invest span {
            font-size: 50px;
            line-height: unset;
        }

        .ServicEquitySec .smarter-invest h6 {
            margin-top: 0px;
        }

    .equity_sc .content {
        grid-template-columns: repeat(1, auto);
        margin: 30px 0;
    }

        .equity_sc .content .dmat_account {
            margin-top: 0px;
        }

    .key_feature_sc .grid_container {
        grid-template-columns: repeat(2, 1fr);
    }

        .key_feature_sc .grid_container > div {
            padding: 20px 20px;
        }

        .key_feature_sc .grid_container h6 {
            line-height: unset;
            padding-bottom: 8px;
        }

    .browser_trading_sc, .mobile_trading_sc {
        padding-top: 40px;
    }

        .browser_trading_sc .browser_trading_container,
        .mobile_trading_sc .mobile_trading_container {
            grid-template-columns: repeat(1, 1fr);
        }

            .browser_trading_sc .browser_trading_container > div:first-child,
            .mobile_trading_sc .mobile_trading_container > div:last-child {
                text-align: center;
            }

            .mobile_trading_sc .mobile_trading_container > div:first-child {
                grid-column: unset;
            }

            .browser_trading_sc .browser_trading_container ul li, .mobile_trading_sc ul.no_style li {
                font-size: 14px;
            }

            .browser_trading_sc .browser_trading_container p, .mobile_trading_sc .mobile_trading_container p {
                font-size: 14px;
            }

            .browser_trading_sc .browser_trading_container > div:first-child .show-768 {
                display: block;
            }

            .browser_trading_sc .browser_trading_container > div:first-child .hide-768 {
                display: none;
            }
}

@media(max-width:767px) {
    .MainHeadingDiscrition {
        padding: .8rem 4%;
    }

    .ServicEquitySec h2 {
        margin-bottom: 10px;
    }

    p {
        font-size: 15px;
    }

    .ServicEquitySec .smarter-invest h6 {
        font-size: 20px;
        margin: 6px 0;
    }

    .ServicEquitySec .smarter-invest span {
        font-size: 40px;
    }

    .ServicesTab ul {
        margin: 1rem 0;
    }

    .ServicEquitySec img {
        margin-top: 10px;
    }

    .equity_sc .content .ownership_container {
        margin-top: 22px;
    }

        .equity_sc .content .ownership_container > div h6 {
            font-size: 20px;
            margin-bottom: 6px;
        }

    .equity_sc .content {
        margin: 10px 0 !important;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .key_feature_sc .key_feature_container .no_style li:last-child {
        margin-top: 10px;
    }

    .key_feature_sc .key_feature_container.equity .no_style li:last-child {
        margin-top: 0 !important;
    }

    .key_feature_sc .grid_container {
        grid-template-columns: repeat(1, 1fr);
    }

    .browser_trading_sc .browser_trading_container button {
        padding: 10px 50px;
    }
}

@media (max-width: 479px) {
    .ServicesTab ul li a {
        margin: 0px 4px;
    }

    .equity_sc .content {
        margin: 20px 0;
    }

        .equity_sc .content .ownership_container > div {
            flex-direction: column;
            justify-content: space-around;
            align-items: start;
        }

            .equity_sc .content .ownership_container > div span {
                margin-bottom: 10px;
            }

        .equity_sc .content .dmat_account > div button {
            padding: 10px 70px;
        }

    .key_feature_sc .key_feature_container .no_style li:nth-child(2) {
        margin-top: 10px;
    }

    .key_feature_sc .grid_container > div {
        padding: 10px;
    }

    .key_feature_sc .grid_container h6, .equity_sc .content .ownership_container > div h6 {
        font-size: 16px;
    }

    p {
        font-size: 13px;
        line-height: 22px;
    }

    .browser_trading_sc .browser_trading_container ul li, .mobile_trading_sc ul.no_style li {
        font-size: 13px;
    }

    .browser_trading_sc .browser_trading_container ul li, .mobile_trading_sc ul.no_style li {
        padding: 8px;
        margin: 0px 8px 8px 0;
    }

    .browser_trading_sc .browser_trading_container p, .mobile_trading_sc .mobile_trading_container p {
        font-size: 13px;
    }

    .browser_trading_sc .browser_trading_container button {
        padding: 8px 40px;
    }

    .mobile_trading_sc .download_container li a {
        display: inline-block;
        width: 120px;
    }
}
/*---why----*/
.whyUs-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.whyUs-sec-Des {
    font-size: .9rem;
}

.whyUs-sec ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

    .whyUs-sec ul li {
        background: #FFFFFF;
        border-radius: 30px;
        padding: 36px 28px;
        width: 100%;
        margin-right: 24px;
    }

        .whyUs-sec ul li:hover {
            box-shadow: 0px 4px 15px rgba(232, 16, 16, 0.08);
        }

        .whyUs-sec ul li:hover {
            box-shadow: 0px 4px 15px rgba(232, 16, 16, 0.08);
        }

        .whyUs-sec ul li:last-child {
            margin-right: 0;
        }

        .whyUs-sec ul li h3 {
            margin-bottom: 8px;
            white-space: nowrap;
            font-weight: 900;
            font-size: 28px;
            color: #1F1F1F;
        }

.invest-slider-sec {
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}


/*media-----*/
@media(max-width: 1024px) {
    .left-headBlock {
        margin-bottom: 32px;
    }
}

@media(max-width: 991px) {
    .whyUs-sec .flex-div {
        flex-direction: column;
    }

    .whyUs-sec .left-heading {
        margin-bottom: 12px;
    }
}

@media(max-width: 991px) {
    .home-main h3 {
        font-size: 20px;
    }

    .whyUs-sec ul li {
        padding: 20px 20px;
    }

    .whyUs-sec ul {
        gap: 18px;
        grid-template-columns: repeat(2, 1fr);
    }
}
/* About us css */
.trade_future_sc {
    background: linear-gradient(180deg, #FDDCDC -49.04%, rgba(253, 220, 220, 0) 97.71%);
}

    .trade_future_sc .content {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 50px;
    }

        .trade_future_sc .content h2 {
            margin-bottom: 16px;
        }

.trading_solutions_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 80px;
    margin: 80px 0 40px 0;
}

    .trading_solutions_container > div:first-child {
        grid-column: span 2;
    }

    .trading_solutions_container > div:last-child {
        grid-column: span 3;
    }

    .trading_solutions_container .client_sc .client_container > div {
        padding: 24px 20px;
        background: #FFFFFF;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        margin-top: 22px;
    }

    .trading_solutions_container .client_sc h3 {
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        color: #1F1F1F;
    }

    .trading_solutions_container .client_sc > div h6 {
        font-weight: 700;
        font-size: 20px;
        color: #1F1F1F;
        margin-bottom: 16px;
    }

    .trading_solutions_container .content p {
        font-size: 14px;
        line-height: 26px;
        color: #000000;
        margin-bottom: 12px;
    }

.founders_sc {
    padding: 50px 0 40px 0;
}

    .founders_sc h2 {
        margin-bottom: 16px;
    }

    .founders_sc .btn_container {
        margin: 40px 0 40px 0;
    }

        .founders_sc .btn_container button {
            padding: 8px 24px;
            border: 1px solid #D1D1D1;
            border-radius: 10px;
            font-weight: 500;
            font-size: 14px;
            color: #454545;
        }

        .founders_sc .btn_container > button.active {
            border: 1px solid #F5D454;
            background: #F5D454;
            color: #1F1F1F;
            font-weight: 500;
            margin-right: 14px;
        }

        .founders_sc .btn_container > button {
            margin-right: 14px;
        }

    .founders_sc .founders_container {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
        /* text-align: center; */
    }

        .founders_sc .founders_container > div {
            background: #FFFFFF;
            padding: 40px 20px;
            border-radius: 12px;
            display: flex;
            gap: 20px;
        }

            .founders_sc .founders_container > div:hover {
                box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.08);
            }

        .founders_sc .founders_container h6 {
            font-weight: 700;
            font-size: 16px;
            line-height: 24px;
            color: #1F1F1F;
        }

        .founders_sc .founders_container .name_container p {
            font-size: 14px;
            line-height: 24px;
            color: #5D5D5D;
        }

            .founders_sc .founders_container .name_container p:last-child {
                margin-top: 16px;
            }

.core_values_sc {
    padding: 50px 0;
}

    .core_values_sc .grid_container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 20px;
        margin-top: 24px;
    }

        .core_values_sc .grid_container > div {
            padding: 20px;
            border: 1px solid #E7E7E7;
            border-radius: 8px;
        }

            .core_values_sc .grid_container > div:hover {
                background: #FFFFFF;
                box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.08);
                border: 1px solid transparent;
            }

        .core_values_sc .grid_container h6 {
            font-weight: 700;
            font-size: 24px;
            line-height: 32px;
            color: #1F1F1F;
            margin: 24px 0 16px 0;
        }

        .core_values_sc .grid_container p:last-child {
            margin-top: 16px;
        }

.commitment_sc {
    height: 308px;
    background: #FCF4C9;
    padding-top: 50px;
}

.trading_sc .content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: -130px;
}

    .trading_sc .content > div {
        padding: 20px;
        background: #FFFFFF;
        border: 1px solid #E7E7E7;
        border-radius: 8px;
    }

    .trading_sc .content .flex {
        display: flex;
        align-items: center;
    }

        .trading_sc .content .flex h6 {
            margin-left: 24px;
            font-weight: 700;
            font-size: 24px;
            line-height: 32px;
            color: #1F1F1F;
        }

    .trading_sc .content p {
        margin-top: 24px;
    }

.trading_container {
    padding: 50px 0;
}

    .trading_container > div:first-child {
        text-align: center;
    }

        .trading_container > div:first-child p {
            padding: 24px 0 36px 0;
        }

    .trading_container .grid_container {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 34px;
        padding: 0 110px;
    }

        .trading_container .grid_container > div {
            padding: 20px;
            background: #FFFFFF;
            box-shadow: 0px 15px 15px rgba(255, 108, 110, 0.06);
            border-radius: 8px;
        }

            .trading_container .grid_container > div span {
                font-weight: 700;
                font-size: 18px;
                line-height: 25px;
                color: #DA282E;
                padding-bottom: 6px;
                display: inline-block;
            }

/* About us add Our Journey slider css */
.Ourjourney {
    padding: 0;
}

.Ourjourneyheading {
    font-size: 2rem;
    color: #0D0D0D;
    padding: 1.5rem 0;
    text-align: center;
    font-weight: 600;
}

.OurjourneyheadingDec {
    text-align: center;
    padding: 0 6%;
}

.Ourjourney li {
    padding: 0;
    margin: 0 !important;
}

    .Ourjourney li h1 {
        font-size: 1.8rem;
        text-align: center;
        font-weight: 600;
        color: #1F1F1F;
        padding: .5rem 0 1rem;
    }

    .Ourjourney li img.acheivement {
        padding: 0 .5rem;
    }

.awardsslider {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.awardsslider {
    margin-top: 40px;
    padding-left: 0rem;
}

    .awardsslider li {
        background-color: #fff;
        max-height: 400px;
        height: 400px;
        gap: 10px;
    }

        .awardsslider li h1 {
            font-size: 1rem;
            font-weight: 600;
            color: #1F1F1F;
            padding: .5rem 0 .5rem 1rem;
        }

        .awardsslider li h6 {
            font-size: .87rem;
            color: #454545;
            padding: 0 0 0 1rem;
        }

    .awardsslider.slick-prev {
        background-color: red;
    }

    .awardsslider .slick-next {
        background-image: url('../images/AwardSlidetLeftArrow.webp');
        border-radius: 100%;
        height: 21px;
        width: 21px;
        background-repeat: no-repeat;
        right: -20px;
        transform: rotate(180deg);
    }

    .awardsslider .slick-prev {
        background-image: url('../images/AwardSlidetLeftArrow.webp');
        border-radius: 100%;
        height: 21px;
        width: 21px;
        background-repeat: no-repeat;
        left: -20px;
        z-index: 100;
    }

        .awardsslider .slick-next::before, .awardsslider .slick-prev::before {
            content: ' ' !important;
            color: #fff;
            font-weight: 900;
            padding: .2rem;
        }

@media (max-width: 575px) {
    .Ourjourneyheading {
        font-size: 1.4rem;
    }

    .OurjourneyheadingDec {
        text-align: center;
        padding: 0 0;
    }

    .awardsslider .slick-next {
        right: 5px;
        top: 40%;
    }

    .awardsslider .slick-prev {
        left: 5px;
        top: 42%;
    }
}
/* About us add Our Journey slider css END */

@media (max-width:991px) {
    .trade_future_sc .content {
        grid-template-columns: repeat(1, 1fr);
    }

        .trade_future_sc .content p {
            font-size: 15px;
        }

        .trade_future_sc .content > div:last-child {
            text-align: center;
        }

    .trading_solutions_container {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

        .trading_solutions_container > div:first-child,
        .trading_solutions_container > div:last-child {
            grid-column: unset;
        }

    .founders_sc {
        padding: 0px 0 20px 0;
    }

        .founders_sc .founders_container {
            grid-template-columns: repeat(1, 1fr);
        }

    .core_values_sc .grid_container {
        grid-template-columns: repeat(2, 1fr);
    }

        .core_values_sc .grid_container h6 {
            font-size: 22px;
            line-height: normal;
            margin: 12px 0 12px 0;
        }

        .core_values_sc .grid_container p,
        .trading_sc .content .flex p,
        .trading_container > div:first-child p {
            font-size: 15px;
        }

    .trading_sc .content .flex h6 {
        margin-left: 14px;
        font-size: 22px;
        line-height: normal;
    }

    .trading_container .grid_container {
        gap: 26px;
        padding: 0px 50px;
    }
}

@media (max-width:767px) {
    .trading_solutions_container {
        margin: 50px 0 40px 0;
    }

        .trading_solutions_container .client_sc h3 {
            font-size: 20px;
            line-height: normal;
        }

    .founders_sc .btn_container {
        margin: 20px 0 20px 0;
    }

    .core_values_sc {
        padding: 20px 0;
    }

        .core_values_sc .grid_container p:last-child {
            margin-top: 6px;
        }

    .commitment_sc {
        height: 240px;
        padding-top: 20px;
    }

    .trading_sc .content,
    .core_values_sc .grid_container {
        grid-template-columns: repeat(1, 1fr);
    }

        .trading_sc .content .flex h6 {
            font-size: 18px;
        }

        .trading_sc .content p {
            margin-top: 14px;
        }

    .trading_container .grid_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:575px) {
    p {
        font-size: 14px !important;
    }

    .trading_solutions_container .client_sc h3 {
        font-size: 16px;
    }

    .trading_solutions_container .client_sc .client_container > div {
        padding: 13px 20px;
    }

    .trading_solutions_container .client_sc > div h6 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .founders_sc .btn_container button {
        font-size: 11px;
    }

    .founders_sc .founders_container > div {
        padding: 20px 20px;
    }

    .core_values_sc .grid_container h6 {
        font-size: 18px;
        margin: 6px 0 0px 0;
    }

    .core_values_sc .grid_container p:last-child {
        margin-top: 2px;
        line-height: 22px;
    }

    .trading_container .grid_container {
        gap: 20px;
        padding: 0px 30px;
    }

        .trading_container .grid_container > div span {
            font-size: 16px;
            padding-bottom: 2px;
        }

        .trading_container .grid_container > div {
            padding: 10px;
        }
}

@media (max-width:479px) {
    p {
        font-size: 13px !important;
    }

    .founders_sc .founders_container > div {
        flex-direction: column;
    }

    .founders_sc .founders_container .name_container p:last-child {
        margin-top: 4px;
    }

    .trading_container .grid_container {
        gap: 14px;
        padding: 0px 10px;
    }

        .trading_container .grid_container > div span {
            font-size: 14px;
        }
}

@media (max-width:359px) {
    .trading_solutions_container {
        margin: 46px 0 16px 0;
    }

    .founders_sc .btn_container button {
        padding: 8px 14px;
    }
}

/* Future & Option */


.callAndPutImg img {
    margin-top: 38px;
}

.derivativedmat_account {
    margin-top: 0px !important;
}

.derSubHd h6 {
    font-weight: 700;
    font-size: 24px;
    color: #1F1F1F;
    margin-bottom: 16px;
    margin-bottom: 24px;
}

.derSubHd p {
    font-size: 16px;
    line-height: 24px;
    color: var(--body-font);
}

    .derSubHd p:not(:last-child) {
        margin-bottom: 14px;
    }

.exSub {
    font-size: 16px;
    line-height: 24px;
    color: var(--body-font);
    font-weight: bold;
    margin-bottom: 4px;
}

.typesofDertxtCnt .commandMainHeading {
    margin-bottom: 56px;
}

.typesofDertxtCnt .derSubHd:not(:last-child) {
    margin-bottom: 48px;
}

.typesOfDerivativesSc .container .row {
    justify-content: space-between;
    align-items: center;
}

.sectionPadding {
    padding: 50px 0;
}

.typesOfDerivativesSc.sectionPadding {
    padding: 50px 0 100px 0;
}

.whyFAndOSc {
    padding: 90px 0;
}

    .whyFAndOSc .commandMainHeading {
        margin-bottom: 52px;
    }

.key_feature_sc.whyFAndOSc .grid_container > div {
    border: 1px solid transparent;
}

.key_feature_sc.whyFAndOSc .grid_container > div {
    padding: 24px;
    background-color: #ffffff;
}

.prosHdCnt .commandMainHeading {
    margin-bottom: 16px;
}

.prosHdCnt p {
    margin-bottom: 24px;
}

.prosSpecHd {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #DEFADD;
    padding: 8px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.consSpecHd {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FADDDE;
    padding: 8px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.indListPros h6 {
    color: #1F1F1F;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.indListPros p {
    color: var(--body-font);
    font-size: 16px;
    line-height: 24px;
}

.indListPros {
    padding: 12px 0;
    min-height: 105px;
}

    .indListPros:not(:last-child) {
        border-bottom: 1px solid #D1D1D1;
    }

.key_feature_sc.whyFAndOSc .grid_container > div:nth-child(2) {
    background-color: transparent;
    display: flex;
    align-items: center;
}

    .key_feature_sc.whyFAndOSc .grid_container > div:nth-child(2):hover {
        background-color: transparent;
        box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.08);
    }

.whyFAndODecorSc {
    position: relative;
}

.whyFAndODecor {
    position: absolute;
    top: 6%;
    z-index: -1;
    background-color: transparent !important;
}

.ServicEquitySec.derivativeSc {
    position: relative;
}

.callAndPutDecor {
    position: absolute;
    z-index: -1;
    top: 14%;
    left: 6%;
}

.hintHd {
    color: var(--primary-red);
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    padding: 8px 16px;
    background-color: #FFDEE2;
    border-radius: 8px;
    margin: 0 auto 17px;
    width: fit-content;
}

.prosAndConsSc .row:nth-child(2) {
    padding: 28px 38px;
    background-color: white;
    border-radius: 16px;
}

@media (min-width: 1400px) {
    .MainHeadingDiscrition {
        width: 60%;
        margin: auto;
    }

    .whyFAndODecor {
        top: 12%;
    }
}

@media (min-width: 1200px) and (max-width: 1399.9px) {
    .MainHeadingDiscrition {
        width: 70%;
        margin: auto;
    }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .whyFAndODecor {
        top: 8%;
        left: 2%;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .callAndPutDecor {
        top: 22%;
        left: 6%;
        overflow: hidden;
        width: 500px;
    }

    .whyFAndODecor {
        top: 0%;
        left: 8%;
        width: 500px;
        overflow: hidden;
    }

    .callAndPutImg {
        text-align: center;
    }

    .typesOfDerivativesSc .container .row {
        flex-direction: column-reverse;
    }

    .typesofDertxtCnt .commandMainHeading {
        margin-bottom: 24px;
    }

    .typesofDerImgCnt {
        text-align: center;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .prosAndConsSc .row:nth-child(2) {
        gap: 16px;
    }

    .callAndPutDecor {
        top: 12%;
        left: 6%;
        overflow: hidden;
        width: 400px;
    }

    .whyFAndODecor {
        /* top: 0%;
    left: 8%;
    width: 500px;
    overflow: hidden; */
        display: none;
    }

    .callAndPutImg {
        text-align: center;
    }

    .typesOfDerivativesSc .container .row {
        flex-direction: column-reverse;
    }

    .typesofDertxtCnt .commandMainHeading {
        margin-bottom: 24px;
    }

    .typesofDerImgCnt {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .callAndPutDecor {
        display: none;
    }

    .whyFAndODecor {
        display: none;
    }

    .callAndPutImg {
        text-align: center;
    }

    .typesOfDerivativesSc .container .row {
        flex-direction: column-reverse;
    }

    .typesofDertxtCnt .commandMainHeading {
        margin-bottom: 24px;
    }

    .typesofDerImgCnt {
        text-align: center;
    }

    .key_feature_sc.whyFAndOSc .grid_container > div:nth-child(2) {
        justify-content: center;
    }

    .prosAndConsSc .row:nth-child(2) {
        padding: 4px;
        gap: 16px;
    }

    .whyFAndOSc {
        padding: 50px 0;
    }
}

/* Future & option End */

/* Services Commodity */
.whyFAndOSc.whyCommodity .commandMainHeading {
    margin-bottom: 21px;
}

.whyCommodity .key_feature_container .commodityHdPass p {
    width: 95%;
    margin: 0 auto 40px;
}

.key_feature_sc.whyCommodity .grid_container {
    grid-template-columns: auto auto auto;
}

.comGridOne {
    grid-area: 1 / 1 / 1 / 2;
}

.comGridTwo {
    grid-area: 1 / 2 / 1 / 4;
}

.comGridThree {
    grid-area: 1 / 4 / 1 / -1;
}

.comGridFour {
    grid-area: 2 / 1 / 2 / 3;
}

.comGridFive {
    grid-area: 2 / 3 / 2 / 5;
}

.howTradeCom .TradeComCnt span {
    font-weight: 400;
    font-size: 42px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.19);
}

.howTradeCom .TradeComCnt div h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
    margin-bottom: 12px;
}

.howTradeCom .TradeComCnt div p {
    font-size: 16px;
    line-height: 24px;
}

.howTradeCom .TradeComCnt {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    border-bottom: 1px solid rgba(0, 0, 0, 0.19);
}

    .howTradeCom .TradeComCnt:first-child {
        border-radius: 16px 16px 0 0;
    }

    .howTradeCom .TradeComCnt:last-child {
        border-radius: 0 0 16px 16px;
        border-bottom: 1px solid transparent;
    }

.howTradeComSc .commandMainHeading {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 26px;
}

.howTradeComSc .alertCom {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: var(--primary-red);
    margin-top: 24px;
    margin-bottom: 12px;
}

.howTradeComSc .alertComDes {
    font-size: 14px;
    line-height: 24px;
}

.journeyTodaySc .key_feature_container h2 {
    margin-bottom: 16px;
}

.journeyHdDes {
    width: 54%;
    margin: 0 auto 42px;
}

.readyToComSc .readyCommodityCnt {
    display: flex;
    align-items: center;
    gap: 66px;
    justify-content: center;
}

.readyToComSc .readyComTxtCnt {
    width: 50%;
}

    .readyToComSc .readyComTxtCnt .commandMainHeading {
        margin-bottom: 17px;
    }

    .readyToComSc .readyComTxtCnt p {
        margin-bottom: 26px;
    }

.readyToComSc {
    padding: 35px 0;
}

.readyComImg {
    display: flex;
}

@media (min-width: 1400px) {
}

@media (min-width: 1200px) and (max-width: 1399.9px) {
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .whyFAndODecor {
        top: -2%;
    }

    .journeyHdDes {
        width: 82%;
    }

    .indListPros {
        min-height: 130px;
    }

    .readyToComSc .readyCommodityCnt {
        gap: 34px;
    }

    .whyFAndODecor {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .whyFAndODecor {
        display: none;
    }

    .key_feature_sc.whyCommodity .grid_container {
        grid-template-columns: auto auto;
        gap: 14px;
    }

    .comGridOne {
        grid-area: 1 / 1 / 1 / 4;
    }

    .comGridTwo {
        grid-area: 2 / 1 / 2 / 4;
        justify-content: center;
    }

    .comGridThree {
        grid-area: 3 / 1 / 3 / 2;
    }

    .comGridFour {
        grid-area: 3 / 3 / 3 / 4;
    }

    .comGridFive {
        grid-area: 4 / 1 / 4 / 4;
    }

    .TCCSM {
        display: none !important;
    }

    .journeyHdDes {
        width: 84%;
    }

    .prosAndConsSc .row {
        gap: 24px;
    }

    .readyToComSc .readyCommodityCnt {
        gap: 14px;
    }

    .readyToComSc .readyComTxtCnt {
        width: 60%;
    }

    .callAndPutDecor {
        top: 25%;
        transform: rotate(330deg);
        left: -5%;
        overflow: hidden;
        width: 500px;
    }
}

@media (min-width: 992px) {
    .TCCLG {
        display: none !important;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .whyFAndODecor {
        display: none;
    }

    .TCCSM {
        display: none !important;
    }

    .callAndPutDecor {
        top: 38%;
        transform: rotate(252deg);
        left: 6%;
        overflow: hidden;
        width: 400px;
    }

    .key_feature_sc.whyCommodity .grid_container {
        grid-template-columns: auto auto;
        gap: 14px;
    }

    .comGridOne {
        grid-area: 1 / 1 / 1 / 4;
    }

    .comGridTwo {
        grid-area: 2 / 1 / 2 / 4;
        justify-content: center;
    }

    .comGridThree {
        grid-area: 3 / 1 / 3 / 2;
    }

    .comGridFour {
        grid-area: 3 / 3 / 3 / 4;
    }

    .comGridFive {
        grid-area: 4 / 1 / 4 / 4;
    }

    .journeyHdDes {
        width: 94%;
    }

    .readyToComSc .readyCommodityCnt {
        flex-direction: column;
        gap: 24px;
    }

    .readyToComSc .readyComTxtCnt {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .TCCSM {
        display: none !important;
    }

    .whyFAndODecor {
        display: none;
    }

    .key_feature_sc.whyCommodity .grid_container {
        grid-template-columns: auto;
        gap: 14px;
    }

    .comGridOne {
        grid-area: 1 / 1 / 1 / 4;
    }

    .comGridTwo {
        grid-area: 2 / 1 / 2 / 4;
        justify-content: center;
    }

    .comGridThree {
        grid-area: 3 / 1 / 3 / 4;
    }

    .comGridFour {
        grid-area: 4 / 1 / 4 / 4;
    }

    .comGridFive {
        grid-area: 5 / 1 / 5 / 4;
    }

    .journeyHdDes {
        width: 100%;
    }

    .readyToComSc .readyCommodityCnt {
        flex-direction: column;
        gap: 24px;
    }

    .readyToComSc .readyComTxtCnt {
        width: 100%;
    }
    /* .readyComImg{
    width: 60%;
} */
    .prosAndConsSc.sectionPadding {
        padding: 30px 0;
    }
}
/* Services Commodity End */

/* services IPO */
.ipoMainSc .MainHeadingDiscrition {
    width: 80%;
}

.key_feature_sc.whatisIPOSc .grid_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
}

.whatisIPOSc .journeyHdDes {
    width: 84%;
    margin: 0 auto 42px;
}

.whatisIPOSc .key_feature_container h2 {
    margin-bottom: 16px;
}

.whatisIPOSc .commandMainHeading span {
    color: var(--primary-red);
}

.whatisIPOSc {
    background-color: #ffffff;
}

.applyIPOSc .stepCnt span {
    font-weight: 400;
    font-size: 42px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.19);
    margin-bottom: 14px;
}

.applyIPOSc .stepCnt h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
    margin-bottom: 12px;
}

.applyIPOSc .stepCnt {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.applyIPOSc .ipoThreeStepCnt {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.applyIPOSc .applyIpoWholeCnt .commandMainHeading {
    text-align: center;
    margin-bottom: 32px;
}

.applyIPOSc .applyIpo_btn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
}

.applyIPOSc .applyIpoBtnCnt {
    text-align: center;
    margin: 20px 50px;
}

.checkListCnt {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 20px;
}

    .checkListCnt:hover {
        box-shadow: 0px 4px 22px 0px rgba(0,0,0,0.08);
        -webkit-box-shadow: 0px 4px 22px 0px rgba(0,0,0,0.08);
        -moz-box-shadow: 0px 4px 22px 0px rgba(0,0,0,0.08);
    }

.ipoCheckListWholeCnt {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.checkListIpoSc .checkListIpoWholeCnt .commandMainHeading {
    margin-bottom: 20px;
}

.checkListIpoSc .checkListIpoWholeCnt .checkListSubHd {
    margin-bottom: 28px;
}

.checkListIpoSc .checkListIpoWholeCnt {
    margin-top: 55px;
}

.howIpoWorksSc .howIpoWorksWholeCnt .commandMainHeading {
    margin-bottom: 32px;
}

.ipostepsCnt {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 16px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0px -5px 13px 0px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px -5px 13px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px -5px 13px 0px rgba(0,0,0,0.08);
}

    .ipostepsCnt h6 {
        color: #1F1F1F;
        font-size: 24px;
        line-height: 32px;
        font-weight: bold;
        margin-bottom: 16px;
    }

.topMT {
    margin-top: -18px;
}

.howIpoWorksSc .row {
    justify-content: center;
}

.ipoBenefitsSc .ipoBenefitsTxtImgCnt h2 {
    margin-bottom: 86px;
}

.listOfBenefits p {
    color: #1F1F1F;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    padding: 26px 0;
}

.ipoBenefitsSc .applyIpo_btn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    margin-top: 16px;
}

.listOfBenefits p:not(:last-child) {
    border-bottom: 1px solid #DADADA;
}

.ipoBenefitsSc .row {
    justify-content: space-between;
    align-items: center;
}

.whoCanInvestCardCnt h6 {
    font-size: 24px;
    line-height: 32px;
    color: #1F1F1F;
    font-weight: bold;
    margin-bottom: 17px;
}

.whoCanInvestCardCnt {
    padding: 24px 16px;
    border-radius: 8px;
    background-color: #ffffff;
}

    .whoCanInvestCardCnt.cardOne {
        margin-bottom: 108px;
    }

.whoCanInvestSc .applyIpo_btn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    margin-top: 16px;
}

.whoCanInvestMainCardCnt {
    margin-top: 165px;
    text-align: center;
}

.whoCanInvestSc {
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
    margin-top: 63px;
}

    .whoCanInvestSc .whoCanInvestBgCnt {
        position: absolute;
        top: 2%;
        left: 29%;
        z-index: -1;
    }

.ipoMainSc .commandMainHeading {
    font-size: 24px;
}

.ipoMainSc .applyIpo_btn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    margin-top: 24px;
}

    .ipoMainSc .applyIpo_btn:hover, .whoCanInvestSc .applyIpo_btn:hover,
    .ipoBenefitsSc .applyIpo_btn:hover, .applyIPOSc .applyIpo_btn:hover {
        background: #A40D1F;
    }

.checkListIpoSc {
    margin-bottom: 25px;
}

.whoCanInvestSc .commandMainHeading {
    margin-bottom: 12px;
}

@media (min-width: 1200px) and (max-width: 1399.9px) {
    .whoCanInvestSc .whoCanInvestBgCnt {
        left: 28%;
    }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .whoCanInvestSc .whoCanInvestBgCnt {
        left: 21%;
    }

    .ipoMainSc .MainHeadingDiscrition {
        width: 90%;
        margin: auto;
    }

    .whoCanInvestMainCardCnt {
        margin-top: 195px;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .whatisIPOSc .journeyHdDes {
        width: 100%;
    }

    .whoCanInvestSc {
        margin-top: 30px;
    }

    .whoCanInvestCardCnt.cardOne {
        margin-bottom: 44px;
    }

    .whoCanInvestMainCardCnt {
        margin-top: 74px;
        margin-bottom: 74px;
    }

        .whoCanInvestMainCardCnt p {
            width: 70%;
            margin: auto;
        }

    .whoCanInvestSc .whoCanInvestBgCnt {
        top: 22%;
        left: 15%;
    }

    .ipoBenefitsSc .ipoBenefitsTxtImgCnt h2 {
        margin-bottom: 26px;
    }

    .applyIPOSc .applyIpoBtnCnt {
        margin-bottom: 50px;
    }

    .checkListIpoImgCnt {
        text-align: center;
        margin-top: 24px;
    }

    .ipoMainSc .MainHeadingDiscrition {
        width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .whatisIPOSc .journeyHdDes {
        width: 100%;
    }

    .whoCanInvestSc {
        margin-top: 30px;
    }

    .whoCanInvestCardCnt.cardOne {
        margin-bottom: 44px;
    }

    .whoCanInvestMainCardCnt {
        margin-top: 74px;
        margin-bottom: 74px;
    }

        .whoCanInvestMainCardCnt p {
            width: 70%;
            margin: auto;
        }

    .whoCanInvestSc .whoCanInvestBgCnt {
        top: 22%;
        left: 15%;
    }

    .ipoBenefitsSc .ipoBenefitsTxtImgCnt h2 {
        margin-bottom: 26px;
    }

    .applyIPOSc .applyIpoBtnCnt {
        margin-bottom: 50px;
    }

    .checkListIpoImgCnt {
        text-align: center;
        margin-top: 24px;
    }

    .ipoMainSc .MainHeadingDiscrition {
        width: 100%;
    }

    .key_feature_sc.whatisIPOSc .grid_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 24px;
    }

    .sectionPadding.whatisIPOSc {
        padding: 30px 0;
    }

    .whoCanInvestSc .whoCanInvestBgCnt {
        top: 22%;
        left: 9%;
    }

        .whoCanInvestSc .whoCanInvestBgCnt img {
            width: 100%;
        }

    .ipostepsCnt h6 {
        font-size: 18px;
        line-height: 16px;
        margin-bottom: 14px;
    }

    .applyIPOSc .ipoThreeStepCnt {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        margin-bottom: 32px;
    }
}

@media (max-width: 575px) {
    .whatisIPOSc .journeyHdDes {
        width: 100%;
    }

    .whoCanInvestSc {
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .whoCanInvestCardCnt.cardOne {
        margin-bottom: 24px;
    }

    .whoCanInvestMainCardCnt {
        margin-top: 44px;
        margin-bottom: 44px;
    }

        .whoCanInvestMainCardCnt p {
            width: 90%;
            margin: auto;
        }

    .whoCanInvestSc .whoCanInvestBgCnt {
        top: 22%;
        left: 15%;
    }

    .ipoBenefitsSc .ipoBenefitsTxtImgCnt h2 {
        margin-bottom: 26px;
    }

    .applyIPOSc .applyIpoBtnCnt {
        margin-bottom: 50px;
    }

    .checkListIpoImgCnt {
        text-align: center;
        margin-top: 24px;
    }

    .ipoMainSc .MainHeadingDiscrition {
        width: 100%;
    }

    .key_feature_sc.whatisIPOSc .grid_container {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 24px;
    }

    .sectionPadding.whatisIPOSc {
        padding: 30px 0;
    }

    .whoCanInvestSc .whoCanInvestBgCnt {
        top: 38%;
        left: 0%;
    }

        .whoCanInvestSc .whoCanInvestBgCnt img {
            width: 100%;
        }

    .ipostepsCnt h6 {
        font-size: 18px;
        line-height: 16px;
        margin-bottom: 14px;
    }

    .applyIPOSc .ipoThreeStepCnt {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
        margin-bottom: 32px;
    }

    .whoCanInvestCardCnt h6 {
        font-size: 18px;
    }

    .applyIPOSc .applyIpoWholeCnt .commandMainHeading {
        margin-bottom: 24px;
    }

    .checkListIpoSc .checkListIpoWholeCnt {
        margin-top: 14px;
    }
}
/* Services IPO end */

/* Services Bond */
.bondsMainSc .MainHeadingDiscrition {
    width: 80%;
}
/* .newOpenDematAc {
    max-height: 472px;
    overflow-y: scroll;

    scrollbar-width: none;     
    -ms-overflow-style: none;    
} */
.whyInvestScrollSc .content {
    margin-top: 0;
}

.whyInvestScrollSc {
    /* margin-top: 60px; */
    max-height: 514px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bondsMainSc .ServicEquitySec {
    margin-bottom: 120px;
}

.whyInvestScrollSc .content .dmat_account.derivativedmat_account {
    position: sticky;
    top: 0;
}

.newOpenDematAc::-webkit-scrollbar {
    display: none;
}

.howTradeComSc {
    padding: 75px 0;
}

.fixedReturnBondsCnt h6 {
    color: #1F1F1F;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.fixedReturnBondsCnt p {
    margin-bottom: 24px;
}

.fixedReturnBondsCnt .startInvestBtn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
}

    .fixedReturnBondsCnt .startInvestBtn svg {
        margin-left: 14px;
    }

.fixedReturnBondsImg {
    position: absolute;
    bottom: -37%;
    right: 0;
}

    .fixedReturnBondsImg img {
        /* width: 100%; */
    }

.fixedReturnBondsCnt {
    position: relative;
}

.investInBondsRudraSC .commandMainHeading {
    margin-bottom: 16px;
}

.key_feature_sc.investInBondsRudraSC .grid_container {
    margin-bottom: 16px;
}

.investInBondsRudraSC .alertCom {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: var(--primary-red);
    margin-top: 16px;
    margin-bottom: 12px;
}

.investInBondsRudraSC .alertComDes {
    font-size: 14px;
    line-height: 24px;
}

.readyToComSc .startInvestBtn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    margin-bottom: 26px;
}

.altKeyFeature.key_feature_sc .grid_container > div {
    background-color: #fff;
}

.bondsFaqSc .row {
    justify-content: center;
}

.bondsFaqSc .commandMainHeading {
    text-align: center;
    margin-bottom: 24px;
}

.bondsFaqSc .accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background-color: transparent;
    font-weight: 600;
    font-size: 16px;
}

.bondsFaqSc .accordion-button:focus {
    box-shadow: none;
}

.bondsAccordian .accordion-item {
    border: none;
    border-bottom: 1px solid #E0E0E0;
}

.bondsFaqSc .accordion-button:not(.collapsed)::after {
    background-image: url(../images/accordMinus.webp);
}

.bondsFaqSc .accordion-button::after {
    background-image: url(../images/accordPlus.webp);
}

.bondsMainSc .commandMainHeading {
    font-size: 24px;
}

.newInvestingBtnCnt {
    position: absolute;
    right: 16%;
    bottom: 0;
}

.bondsMainSc .startInvestBtn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
}

    .bondsMainSc .startInvestBtn:hover, .whyChooseUs .startInvestBtn:hover,
    .fixedReturnBondsCnt .startInvestBtn:hover, .readyToComSc .startInvestBtn:hover {
        background: #A40D1F;
    }

    .bondsMainSc .startInvestBtn svg {
        margin-left: 14px;
    }

.bondsMainSc .smarter-invest {
    position: relative;
}

.whyChooseUs .startInvestBtn {
    padding: 10px 24px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    margin-top: 40px;
}

    .whyChooseUs .startInvestBtn svg {
        margin-left: 14px;
    }

.whyChooseUs {
    text-align: center;
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .bondsMainSc .MainHeadingDiscrition {
        width: 90%;
        margin: auto;
    }

    .newInvestingBtnCnt {
        right: 15%;
        bottom: -6%;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .howTradeComSc {
        padding: 10px 0 30px 0;
    }

    .newOpenDematAc {
        max-height: fit-content;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whyInvestScrollSc {
        max-height: fit-content;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whyFAndOSc {
        padding: 30px 0 !important;
        padding-top: 30px !important;
    }

    .newInvestingBtnCnt {
        right: 37%;
        bottom: -6%;
    }

    .howTradeComSc .row {
        row-gap: 34px;
    }
    /* .howTradeComSc{
    padding-bottom: 150px;
} */
    .howTradeComSc .commandMainHeading {
        margin-bottom: 0;
    }

    .bondsMainSc .ServicEquitySec.derivativeSc {
        margin-bottom: 60px;
    }

    .bondsMainSc .MainHeadingDiscrition {
        width: 100%;
        margin: auto;
    }

    .howTradeComSc .alertCom {
        margin-top: 0;
        margin-bottom: 0;
    }

    .fixedReturnBondsImg {
        position: unset !important;
        text-align: center;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .bondsMainSc {
        margin-bottom: 50px;
    }

    .newOpenDematAc {
        max-height: fit-content;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whyInvestScrollSc {
        max-height: fit-content;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whyFAndOSc {
        padding: 70px 0 !important;
        padding-top: 20px !important;
    }

    .newInvestingBtnCnt {
        right: 37%;
        bottom: -6%;
    }

    .howTradeComSc .row {
        row-gap: 34px;
    }

    .howTradeComSc {
        padding: 0px 0 30px 0;
    }

        .howTradeComSc .commandMainHeading {
            margin-bottom: 0;
        }

    .bondsMainSc .ServicEquitySec.derivativeSc {
        margin-bottom: 60px;
    }

    .bondsMainSc .MainHeadingDiscrition {
        width: 100%;
        margin: auto;
    }

    .howTradeComSc .alertCom {
        margin: 0;
    }

    .fixedReturnBondsImg {
        position: unset !important;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .bondsFaqSc .accordion-button {
        font-size: 14px !important;
    }

    .howTradeComSc .alertCom {
        margin: 0;
    }

    .bondsMainSc {
        margin-bottom: 40px;
    }

        .bondsMainSc .MainHeadingDiscrition {
            width: 100%;
            margin: auto;
        }

        .bondsMainSc .ServicEquitySec.derivativeSc {
            margin-bottom: 90px;
        }

    .newInvestingBtnCnt {
        bottom: -6%;
        left: 4%;
    }

    .newOpenDematAc {
        max-height: fit-content;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whyInvestScrollSc {
        max-height: fit-content;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whyFAndOSc {
        padding: 70px 0;
        padding-top: 20px;
    }

    .howTradeComSc .row {
        row-gap: 34px;
    }

    .howTradeComSc {
        padding: 36px 0;
    }

        .howTradeComSc .commandMainHeading {
            margin-bottom: 0;
        }

    .fixedReturnBondsImg {
        bottom: -50%;
        right: 50px;
    }

    .fixedReturnBondsImg {
        position: unset !important;
        text-align: center;
        margin-top: 16px;
    }
}
/* Services Bond End */

/* Instant fund css start */
.instantFundDataCnt .fundImg {
    margin-bottom: 30px;
}

.hd20 {
    font-size: 20px;
    color: #050505;
    margin-bottom: 24px;
}

.tileWholeCnt {
    display: flex;
    align-items: top;
    gap: 16px;
    margin-bottom: 24px;
}

.tile {
    font-size: 14px;
    color: #050505;
    margin-bottom: 5px;
}

.tileCnt {
    font-size: 14px;
    color: #4F4F4F;
}

.bankdetail {
    padding: 12px 0;
}

    .bankdetail:not(:last-child) {
        border-bottom: 1px solid #DADADA;
    }

    .bankdetail .title {
        font-size: 14px;
        color: #3D3D3D;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .bankdetail .name {
        font-size: 16px;
        line-height: 24px;
        color: #17100B;
    }

.bankDetailsCntCnt {
    border: 1px solid #D1D1D1;
    border-radius: 13px;
    padding: 16px 24px;
    margin-bottom: 40px;
}

.chequeDetails .hd20 {
    margin-bottom: 16px;
}

.chequeDetails .bankdetail {
    border: none;
}

.instantFundTransferFormCnt h4 {
    font-size: 24px;
    color: #050505;
    margin-bottom: 24px;
}

.instantFundTransferFormCnt input {
    padding: 10px 24px;
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    outline: 0;
    width: 100%;
    margin-bottom: 16px;
}

    .instantFundTransferFormCnt input.active {
        background: #F9F9F9;
    }

.instantFundTransferFormCnt label {
    font-size: 14px;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.fundTransBtn {
    padding: 12px 16px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    width: 100%;
    /* margin-bottom: 16px; */
}

.ftLinkCnt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

    .ftLinkCnt a:first-child {
        color: #1F1F1F;
    }

    .ftLinkCnt a:last-child {
        color: var(--primary-red);
    }

.instantFundTransferFormCnt .formCnt {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 17px 0px rgba(0,0,0,0.06);
    -webkit-box-shadow: 0px 4px 17px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 4px 17px 0px rgba(0,0,0,0.06);
}

.instantFundSc {
    padding: 20px 0;
    /* max-height: 574px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none; */
}

.instantFundTransferFormCnt {
    margin-top: 27px;
    /* position: sticky; */
    top: 0;
}

@media (max-width: 991.9px) {
    .instantFundSc {
        max-height: fit-content;
    }

    .fundImg {
        text-align: center;
    }
}

@media (max-width: 359px) {
    .instantFundTransferFormCnt .formCnt {
        padding: 12px;
    }

    .ftLinkCnt {
        flex-direction: column;
    }
}
/* Instant fund css end */

/* key management css start */
.bodLeader {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
}

    .bodLeader h6 {
        font-size: 20px;
        color: #050505;
        margin-bottom: 4px;
    }

.bodRoll {
    font-size: 16px !important;
    color: #4F4F4F;
    margin-bottom: 16px !important;
}

.bodLeader p {
    font-size: 14px;
}

.bodTabSec {
    margin-bottom: 24px;
}

.bodLeadCnt {
    margin-bottom: 100px;
}

.MainHeadingDiscrition {
    width: 90%;
    margin: auto;
}

@media (max-width: 767.9px) {
    .ipoMainSc .commandMainHeading {
        font-size: 18px;
    }

    .bodLeader {
        flex-direction: column;
        margin-bottom: 42px;
    }

    .bodLeadCnt {
        margin-bottom: 30px;
    }
}
/* key management css ends */

/* CancellationPolicy css start */
.ulCnt {
    display: flex;
    align-items: start;
    gap: 8px;
}

    .ulCnt:not(:last-child) {
        margin-bottom: 12px;
    }

.refundPolicySc .commandMainHeading {
    margin-bottom: 20px;
}

.refundPolicySc {
    margin-top: 12px;
    margin-bottom: 100px;
}

.hintTitle {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.hintDes {
    font-size: 14px;
    line-height: 24px;
}

@media(max-width:767px) {
    .refundPolicySc {
        margin-bottom: 30px;
    }

    .hintHd {
        font-size: 14px !important;
    }
}
/* CancellationPolicy css end*/

/* privacyPolicy css start */
.privacyPolicySc .privacyCntCnt h2 {
    margin-bottom: 20px;
}

.privacyPolicySc .privacyCntCnt p:not(:last-child) {
    margin-bottom: 12px;
}

.privacyPolicySc {
    margin-top: 12px;
    margin-bottom: 100px;
}

@media(max-width:767px) {
    .privacyPolicySc {
        margin-bottom: 30px;
    }
}
/* privacyPolicy css end */

/* termsofUse css start */
.termsofUSeSc .termsofUseCntCnt h2 {
    margin-bottom: 20px;
}

.termsofUSeSc {
    margin-top: 12px;
    margin-bottom: 100px;
}

@media(max-width:767px) {
    .termsofUSeSc {
        margin-bottom: 30px;
    }
}
/* termsofUse css end */

/* disclaimer css start */
.disclaimerSc .disclaimerCntCnt h2 {
    margin-bottom: 20px;
}

.disclaimerSc .disclaimerCntCnt {
    margin-bottom: 50px;
}

    .disclaimerSc .disclaimerCntCnt p:not(:last-child) {
        margin-bottom: 12px;
    }

.disclaimerSc {
    margin-top: 12px;
    margin-bottom: 100px;
}

    .disclaimerSc .webTipsCntCnt h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .disclaimerSc .webTipsCntCnt {
        margin-bottom: 50px;
    }

        .disclaimerSc .webTipsCntCnt p {
            margin-bottom: 12px;
        }

.hintCnt .hintTitle {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.hintCnt .hintDes {
    font-size: 14px;
    line-height: 24px;
}

    .hintCnt .hintDes:not(:last-child) {
        margin-bottom: 12px;
    }

.disclaimerSc .mobileTipsCntCnt h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.disclaimerSc .mobileTipsCntCnt p:not(:last-child) {
    margin-bottom: 12px;
}

@media (max-width: 767.9px) {
    .disclaimerSc {
        margin-bottom: 30px;
    }

        .disclaimerSc .webTipsCntCnt h2 {
            font-size: 18px;
        }

        .disclaimerSc .mobileTipsCntCnt h2 {
            font-size: 18px;
        }

        .disclaimerSc .webTipsCntCnt, .disclaimerSc .disclaimerCntCnt {
            margin-bottom: 26px;
        }
}

@media (max-width: 479px) {
    .disclaimerSc .webTipsCntCnt h2 {
        font-size: 16px;
    }
}
/* disclaimer css end */

/* faq css start */
.bondsFaqSc .commandMainHeading {
    margin-bottom: 0;
}

.bondsFaqSc {
    margin-bottom: 100px;
}

@media(max-width:767px) {
    .bondsFaqSc {
        margin-bottom: 30px;
    }
}
/* faq css end */
.bondsFaqSc .commandMainHeading {
    margin-bottom: 24px;
}

/* feed back css start */
.feedbackSc .hintHd {
    margin: 0;
    margin-bottom: 16px;
}

.feedbackSc .commandMainHeading {
    text-align: left !important;
    margin-bottom: 8px;
}

.feedbackSc .dtCnt p {
    margin-bottom: 8px;
}

.fbImgCnt {
    text-align: center;
}

.formDtCnt input {
    padding: 10px 12px;
    border: 1px solid #E7E7E7;
    border-radius: 12px;
    outline: 0;
    width: 100%;
}

.formDtCnt .captcha_container {
    position: relative;
}

    .formDtCnt .captcha_container span {
        position: absolute;
        left: 30%;
        top: 50%;
        transform: translate(0px, -11px);
    }

.formDtCnt label {
    font-size: 14px;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.fundTransBtn {
    padding: 12px 16px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    width: 100%;
}

.feedbackSc .mfExploreBtn {
    padding: 12px 16px;
    background: transparent;
    border-radius: 12px;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    width: 100%;
}

.formDtCnt {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 17px 0px rgba(0,0,0,0.06);
    -webkit-box-shadow: 0px 4px 17px 0px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 4px 17px 0px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 16px;
    column-gap: 10px;
}

.fcOne {
    grid-column: 1 / -1;
}

.fcFour {
    grid-column: 1 / -1;
}

.fcFive {
    grid-column: 1 / -1;
}

    .fcFive textarea {
        min-height: 100px;
        padding: 10px 12px;
        border: 1px solid #E7E7E7;
        border-radius: 12px;
        outline: 0;
        width: 100%;
    }

.feedbackSc .row {
    padding: 32px 0 100px 0;
    row-gap: 24px;
}

@media (max-width: 575px) {
    .fcTwo {
        grid-column: 1 / -1;
    }

    .fcThree {
        grid-column: 1 / -1;
    }

    .feedbackSc .row {
        padding: 20px 0 50px 0;
    }
}

@media (max-width: 479px) {
    .formDtCnt {
        padding: 18px;
    }
}
/* feed back css end */

/* download css start */
.downloadCnt {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #D1D1D1;
    padding: 14px;
    border-radius: 12px;
    background-color: #ffffff;
}

    .downloadCnt p {
        color: #1F1F1F;
        font-weight: 500;
    }

.downloadsGridCnt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 14px;
    row-gap: 24px;
}

.downloadCnt:hover {
    box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08);
    border: 1px solid transparent;
}

    .downloadCnt:hover p {
        color: #DD031C;
    }

.downloadsSc {
    margin-bottom: 100px;
}

@media(max-width: 991.9px) {
    .downloadsGridCnt {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.9px) {
    .downloadsGridCnt {
        gap: 16px;
    }

    .downloadsSc {
        margin-bottom: 40px;
    }
}

@media(max-width:575px) {
    .downloadsGridCnt {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* down load css end */

/* news inner css start */
.detailedNewsCnt .shortNewsDes {
    font-size: 14px;
    line-height: 24px;
    color: var(--gray-800);
    -webkit-line-clamp: inherit;
    -webkit-box-orient: inherit;
    overflow: auto;
    text-overflow: inherit;
}

.shortNewsDes {
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detailedNewsCnt .newTitlecnt {
    border: transparent;
}

.sidebarNews.mainTitleNewsCnt {
    padding: 0;
    background: transparent !important;
}

.newsHdMainSc .detailedNewsCnt.mainTitleNewsCnt {
    box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08);
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.08);
}

@media (max-width: 991.9px) {
    .newsHdMainSc .detailedNewsCnt.mainTitleNewsCnt {
        margin-bottom: 50px;
    }
}
/* news inner css end */

/* News letter css start */
.newsletter_sc .grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    /* min-width: 370px; */
}

    .newsletter_sc .grid_container > div {
        padding: 16px;
        background: #FFFFFF;
        border-radius: 12px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .newsletter_sc .grid_container > div:hover {
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
        }

        .newsletter_sc .grid_container > div h6 {
            font-weight: 700;
            font-size: 16px;
            color: #1F1F1F;
        }

        .newsletter_sc .grid_container > div p {
            font-size: 14px;
            color: #4F4F4F;
            padding-top: 8px;
            margin: 0;
        }

            .newsletter_sc .grid_container > div p span {
                display: inline-block;
                padding-left: 12px;
                position: relative;
                margin-left: 12px;
            }

                .newsletter_sc .grid_container > div p span::before {
                    content: "";
                    position: absolute;
                    background: url('data:image/svg+xml,<svg width="4" height="4" viewBox="0 0 4 4" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%233A3A3A"/></svg>');
                    height: 4px;
                    width: 4px;
                    left: 0;
                    top: 45%;
                }

@media(max-width:767px) {
    .newsletter_sc .grid_container > div img {
        width: 40px;
    }
}
/* news letter css end */

/* contact us css start */
.addInDetail .detailCnt {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
}

    .addInDetail .detailCnt:not(:last-child) {
        margin-bottom: 8px;
    }

    .addInDetail .detailCnt .txtCnt p:first-child {
        color: #1F1F1F;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .addInDetail .detailCnt .txtCnt p:last-child {
        margin-bottom: 0;
        color: #4F4F4F;
        font-size: 16px;
    }

    .addInDetail .detailCnt .txtCnt p.emailAddress a,
    .matrixCnt .titleDes a,
    .escalationMatrixCnt .matrixCnt .role a {
        text-decoration: none;
        color: inherit;
    }

.feedbackSc .dtCnt p {
    margin-bottom: 28px;
}

.formDtCnt {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    padding-left: 32px;
    grid-template-columns: auto;
    column-gap: 16px;
}

    .formDtCnt .nationWiseNumber {
        display: flex;
        gap: 10px;
    }

        .formDtCnt .nationWiseNumber select {
            padding: 10px 12px;
            border: 1px solid #E7E7E7;
            border-radius: 4px;
            outline: 0;
            color: #4f4f4f;
        }

    .formDtCnt label {
        color: #000000;
        font-size: 16px;
        margin-bottom: 14px;
    }

.fcFive textarea {
    min-height: 150px;
    border-radius: 4px;
}

.formDtCnt input {
    border-radius: 4px;
}

.fundTransBtn {
    border-radius: 4px;
}

.feedbackSc .row {
    padding: 32px 0 35px 0;
}

.ourRegionalOffSc .dtCnt ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 16px;
    margin-bottom: 24px;
}

    .ourRegionalOffSc .dtCnt ul li {
        padding: 11px 12px;
        background: #FFFFFF;
        border: 1px solid #E7E7E7;
        border-radius: 4px;
        color: #4F4F4F;
        font-size: 14px;
    }

        .ourRegionalOffSc .dtCnt ul li:hover {
            background-color: #FFDEE2;
            color: #DD031C;
        }

.hoverTile {
    font-size: 14px;
    color: #1F1F1F;
    margin-bottom: 16px !important;
}

.ourRegionalOffSc .dtCnt .oroDes {
    margin-bottom: 30px;
}

.ourRegionalOffSc .addInDetail .detailCnt {
    margin-bottom: 0px;
    border-radius: 0px;
}

.ourRegionalOffSc .addInDetail {
    border-radius: 8px;
    background-color: #ffffff;
}

.ourRegionalOffSc .roMapCnt iframe {
    width: 100%;
}

.ourRegionalOffSc .row {
    align-items: center;
}

.ourRegionalOffSc {
    padding: 30px 0;
}

    .ourRegionalOffSc .dtCnt ul li.locationActive {
        background-color: #FFDEE2;
        color: #DD031C;
    }

    .ourRegionalOffSc .dtCnt ul li a,
    .addInDetail .detailCnt .txtCnt p a,
    .addInDetail .detailCnt .txtCnt .emailAddress a {
        text-decoration: none;
        color: inherit;
    }

.outletSc .row {
    justify-content: space-between;
    align-items: center;
}

.outletSc select {
    padding: 10px 12px;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    outline: 0;
    width: 100%;
}

.outletSc .nearByCityCnt {
    margin-bottom: 24px;
}

.outletSc {
    padding: 25px 0 45px 0;
}

.matrixSc .commandMainHeading {
    margin-bottom: 36px;
}

.matrixSc .escalationMatrixCnt {
    padding: 0 24px;
    border-radius: 12px;
    background-color: #ffffff;
    margin-bottom: 24px;
}

.matrixSc .matrixCnt {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 14px 0;
    gap: 12px;
}

.matrixCnt .tileName {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.56%;
    color: #1F1F1F;
    margin-bottom: 8px;
    font-weight: 800;
}

.matrixCnt .role {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.56%;
    color: #3D3D3D;
    margin-bottom: 12px;
}

.matrixCnt .tileNameDes {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.56%;
    color: #4F4F4F;
    margin-bottom: 0px;
}

.matrixCnt .title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    letter-spacing: -0.56%;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.matrixCnt .titleDes {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.56%;
    color: #454545;
}

    .matrixCnt .titleDes:not(:last-child) {
        margin-bottom: 8px;
    }

.matrixCnt .fourthGrid .tileNameDes {
    margin-bottom: 8px;
}

.matrixCnt .tileDateAndTime {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.56%;
    font-weight: 800;
    color: #DD031C;
}

.matrixSc .matrixCnt:not(:last-child) {
    border-bottom: 1px solid #D1D1D1;
}

.matrixSc .linksCnt p {
    font-size: 14px;
    line-height: 24px;
    color: #4F4F4F;
}

    .matrixSc .linksCnt p a {
        color: #1E37D7;
        text-decoration: none;
    }

    .matrixSc .linksCnt p:not(:last-child) {
        margin-bottom: 8px;
    }

.matrixSc .linksCnt {
    position: relative;
    margin-bottom: 21px;
}

    .matrixSc .linksCnt .linksImgCnt {
        position: absolute;
        bottom: 0%;
        right: 4%;
    }

.keyManageSc .matrixCnt {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 14px 16px;
}

.firstAndSecondCnt .conGrid {
    margin-bottom: 18px;
}

.keyManageSc .commandMainHeading {
    margin-bottom: 16px;
}

.keyManageSc .escalationMatrixCnt {
    padding: 16px;
    background-color: #ffffff;
    border-radius: 8px;
}

.keyManageSc .matrixCnt:not(:last-child) {
    border-bottom: 1px solid #D1D1D1;
    margin-bottom: 22px;
}

.keyManageSc .complacenceCnt .matrixCnt {
    flex-direction: column;
    gap: 14px;
}

.escalationMatrixCnt .matrixCnt .role {
    margin-bottom: 0;
}

.escalationMatrixCnt .matrixCnt .tileName {
    margin-bottom: 6px;
}

.keyManageSc {
    padding: 21px 0 78px;
}

.outletSc .commandMainHeading {
    margin-bottom: 25px;
}

.ourRegionalOffSc .commandMainHeading {
    margin-bottom: 16px;
}

.AddDropdown select {
    width: 100%;
    background: #fff !important;
}

.InvestMentItem.pb {
    margin-bottom: 40px;
}

@media (max-width: 991.9px) {
    .formDtCnt {
        padding-left: 0;
    }

    .ourRegionalOffSc .row {
        gap: 24px;
    }

    .outletSc .row {
        flex-direction: column-reverse;
        gap: 24px;
    }

    .outletSc .imgCnt {
        text-align: center;
    }

    .keyManageSc .row {
        gap: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .matrixSc .matrixCnt {
        grid-template-columns: auto auto;
    }

    .matrixSc .linksCnt .linksImgCnt {
        bottom: 32%;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .matrixSc .matrixCnt {
        grid-template-columns: auto auto;
    }

    .matrixSc .linksCnt .linksImgCnt {
        text-align: right;
        bottom: 26%;
        right: 0%;
    }

        .matrixSc .linksCnt .linksImgCnt img {
            width: 50%;
        }
}

@media (max-width: 575px) {
    .matrixSc .matrixCnt {
        grid-template-columns: auto;
    }

    .matrixSc .linksCnt .linksImgCnt {
        display: none;
    }

    .matrixSc .linksCnt p a {
        word-break: break-all;
    }

    .feedbackSc .row {
        padding: 14px 0 35px 0;
    }

    .matrixCnt .titleDes.text-white {
        display: none;
    }

    .keyManageSc .matrixCnt {
        flex-direction: column;
        gap: 18px;
    }

    .formDtCnt .nationWiseNumber {
        flex-direction: column;
    }

    .ourRegionalOffSc .dtCnt ul {
        gap: 6px
    }
}

@media(max-width:479px) {
    .formDtCnt .captcha_container span {
        left: 44%;
    }
}
/* contact us end */

/* Blog css start */
.blogSc .titleCnt {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

    .blogSc .titleCnt p {
        font-size: 20px;
        line-height: 24px;
        font-weight: 800;
        color: #1F1F1F;
    }

.blogSc .blogNewsTitleCnt .titleAndImgCnt {
    display: flex;
    align-items: start;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.blogSc .blogNewsTitleCnt .dateAndTimeCnt .dateCnt {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blogSc .blogNewsTileAndDes .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    color: #1F1F1F;
    letter-spacing: -0.56%;
    margin-bottom: 8px;
}

.blogSc .blogNewsTileAndDes .descrip {
    font-size: 14px;
    line-height: 24px;
    color: #454545;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogNewsTitleCnt .dateAndTimeCnt .dateCnt .date {
    font-size: 14px;
    line-height: 24px;
    color: #4F4F4F;
}

.blogNewsTitleCnt .dateAndTimeCnt .dateCnt .poweredBy {
    font-size: 14px;
    line-height: 24px;
    color: #1F1F1F;
    font-weight: 600;
}

.blogNewsTitleCnt .dateAndTimeCnt .timeCnt p {
    font-size: 14px;
    line-height: 24px;
    color: #4F4F4F;
}

.blogSc .blogNewsTitleCnt .dateAndTimeCnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogSc .blogNewsTitleCnt {
    padding: 16px;
    border-bottom: 1px solid #DADADA;
    background-color: #ffffff;
}

.blogSc .row {
    padding-bottom: 90px;
}

@media (min-width: 1400px) {
    .MainHeadingDiscrition {
        width: 68%;
    }

    .ServicesTab ul {
        max-width: fit-content;
    }
}

@media (min-width: 1200px) and (max-width: 1399.9px) {
    .MainHeadingDiscrition {
        width: 76%;
        margin: auto;
    }

    .ServicesTab ul {
        max-width: fit-content;
    }
}

@media(max-width:767px) {
    .blogSc .row {
        padding-bottom: 40px;
    }
}

@media (max-width: 479px) {
    .blogSc .blogNewsTitleCnt .titleAndImgCnt {
        flex-direction: column-reverse;
    }

    .blogSc .blogNewsTitleCnt .dateAndTimeCnt .dateCnt {
        gap: 8px;
    }

    .blogSc .blogNewsTitleCnt .dateAndTimeCnt {
        flex-direction: column;
        align-items: start;
    }
}
/* Blog css end */

/* business partner css start */
.earningSc .MainHeadingDiscrition {
    padding-bottom: 0;
}

.mfExploreBtn {
    padding: 12px 16px;
    background: transparent;
    border-radius: 12px;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    width: 100%;
}

.fundTransBtn {
    padding: 12px 16px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    width: 100%;
}

    .fundTransBtn:hover {
        background: #A40D1F;
    }

.earnBtnCnt {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.earningSc .mfExploreBtn svg path {
    stroke: #DD031C;
}

.earningSc .earndtCnt p {
    margin-bottom: 22px;
}

.earningSc .earndtCnt .getTouchCnt span {
    color: #454545;
    font-size: 16px;
    margin-right: 18px;
}

.earningSc .earndtCnt .getTouchCnt a {
    color: #1F1F1F;
    font-size: 16px;
}

.earningSc .earndtCnt .getTouchCnt {
    text-align: center;
}

.earningSc {
    padding-bottom: 50px;
}

    .earningSc .earndtCnt .commandMainHeading {
        margin-bottom: 22px;
        font-size: 24px;
    }

.redBtn {
    padding: 12px 16px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
    margin-bottom: 115px;
}

.setUsSc .setsTitleCnt .commandMainHeading {
    margin-bottom: 20px;
}

.setUsSc .setsTitleCnt p {
    margin-bottom: 20px;
}

.TradeComCnt:first-child {
    border-radius: 16px 16px 0 0;
}

.TradeComCnt {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    border-bottom: 1px solid rgba(0, 0, 0, 0.19);
}

    .TradeComCnt:last-child {
        border-radius: 0 0 16px 16px;
        border-bottom: 1px solid transparent;
    }

    .TradeComCnt span {
        font-weight: 400;
        font-size: 42px;
        line-height: 40px;
        color: rgba(0, 0, 0, 0.19);
    }

    .TradeComCnt div h6 {
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: #1F1F1F;
        margin-bottom: 12px;
    }

    .TradeComCnt div p {
        font-size: 16px;
        line-height: 24px;
    }

.setUsSc .setsTitleCnt {
    margin-top: 24px;
}

.setUsSc {
    padding: 48px 0 26px;
}

.forYouCardCnt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

    .forYouCardCnt .forYouCard {
        padding: 24px 16px;
        border-radius: 8px;
        border: 1px solid #D1D1D1;
    }

        .forYouCardCnt .forYouCard:hover {
            background-color: #ffffff;
            border: transparent;
        }

.forYouSc {
    padding: 50px 0;
}

    .forYouSc .commandMainHeading {
        margin-bottom: 20px;
    }

    .forYouSc .forYoudtCnt p {
        text-align: center;
        width: 50%;
        margin: 0 auto 45px;
    }

.forYouCardCnt .forYouCard .iconTitle {
    color: #050505;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.forYouCardCnt .forYouCard .iconDes {
    font-size: 16px;
    color: #4F4F4F;
}

.touchWithUsListCards > div {
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 22px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 14px;
}

    .touchWithUsListCards > div h6 {
        font-weight: 700;
        font-size: 24px;
        color: #1F1F1F;
        margin-bottom: 16px;
        margin-top: 24px;
    }

.touchWithUsSc .row.rowWithColumns {
    margin-bottom: 50px;
}

.touchWithUsSc .getTouchCnt {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

    .touchWithUsSc .getTouchCnt span {
        color: #454545;
        font-size: 16px;
    }

    .touchWithUsSc .getTouchCnt a {
        color: #1F1F1F;
        font-size: 16px;
    }

    .touchWithUsSc .getTouchCnt .fundTransBtn {
        width: fit-content;
    }

.touchWithUsSc {
    padding-bottom: 50px;
}

.equity_sc.whyInvestScrollSc {
    padding: 50px 0 45px;
}

.whyInvestScrollSc {
    max-height: 594px;
}

@media (min-width: 1200px) and (max-width: 1399.9px) {
    .earningSc .MainHeadingDiscrition {
        width: 76%;
    }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .mfExploreBtn {
        width: fit-content;
        white-space: nowrap;
    }

    .forYouSc .forYoudtCnt p {
        width: 60%;
    }

    .forYouCardCnt {
        gap: 18px;
    }
}

@media (max-width: 991.9px) {
    .earningSc .earnImgCnt {
        text-align: center;
    }

    .redBtn {
        margin-bottom: 34px;
    }

    .forYouSc .forYoudtCnt p {
        width: 100%;
    }

    .touchWithUsSc .touchWithUsImgCnt {
        text-align: center;
    }

    .equity_sc.whyInvestScrollSc {
        max-height: fit-content;
        padding: 0 0 20px 0;
    }

    .setUsSc .row {
        gap: 24px;
    }

    .touchWithUsSc .row.rowWithColumns {
        gap: 24px;
    }

    .setUsSc .setsTitleCnt {
        margin-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .forYouCardCnt {
        grid-template-columns: repeat(2, 1fr);
    }

    .earningSc {
        padding-bottom: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .forYouCardCnt {
        grid-template-columns: repeat(2, 1fr);
    }

    .earningSc {
        padding-bottom: 20px;
    }

    .earnBtnCnt {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .forYouCardCnt {
        grid-template-columns: repeat(1, 1fr);
    }

    .earningSc {
        padding-bottom: 20px;
    }

    .earnBtnCnt {
        flex-direction: column;
    }

    .forYouCardCnt .forYouCard {
        text-align: center;
    }

    .touchWithUsSc .getTouchCnt {
        flex-direction: column;
    }
}

@media(max-width:479px) {
    .forYouCardCnt .forYouCard {
        padding: 12px 16px;
    }
}
/* business partner css end */

/* Blog inner css start */
.sidebarNews .newTitlecnt h4 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newTitlecnt .hintCnt .hindiHint {
    font-size: 14px;
    color: #454545;
    padding: 3px 14px;
    background-color: #EEEEEE;
}

.newsHdMainSc .detailedNewsCnt.mainTitleNewsCnt .newTitlecnt h2 {
    margin-bottom: 16px;
}

.newsHdMainSc .detailedNewsCnt.mainTitleNewsCnt .newTitlecnt {
    padding: 0;
}

.newsHdMainSc .detailedNewsCnt.mainTitleNewsCnt {
    padding: 16px;
}

.newsHdMainSc .blogImgCnt {
    margin-bottom: 16px;
}

.shortBlogtitle {
    font-size: 20px;
    color: #1F1F1F;
    line-height: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.blogulCnt li {
    font-size: 16px;
    line-height: 24px;
    color: #454545;
    margin-bottom: 16px;
    list-style: disc;
}

    .blogulCnt li span {
        font-weight: 800;
    }

.detailedNewsCnt .shortNewsDes {
    font-size: 16px;
}

.blogInnerMainSc {
    max-height: 1000px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 60px;
}

    .blogInnerMainSc .sidebarNews.mainTitleNewsCnt {
        position: sticky;
        top: 0;
    }

    .blogInnerMainSc .dateAndTimeCnt {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

        .blogInnerMainSc .dateAndTimeCnt .dateCnt {
            display: flex;
            align-items: center;
            gap: 14px;
        }

            .blogInnerMainSc .dateAndTimeCnt .dateCnt .date {
                font-size: 14px;
                line-height: 24px;
                color: #4F4F4F;
            }

            .blogInnerMainSc .dateAndTimeCnt .dateCnt .poweredBy {
                font-size: 14px;
                line-height: 24px;
                color: #1F1F1F;
                font-weight: 600;
            }

        .blogInnerMainSc .dateAndTimeCnt .timeCnt p {
            font-size: 14px;
            line-height: 24px;
            color: #4F4F4F;
        }

.detailedNewsCnt.mainTitleNewsCnt .hindiHint {
    font-size: 14px;
    color: #454545;
    padding: 3px 14px;
    background-color: #EEEEEE;
    font-weight: bold;
    line-height: 24px;
    border-radius: 8px;
    width: fit-content;
}

@media (max-width: 991.9px) {
    .blogInnerMainSc {
        max-height: fit-content;
    }

        .blogInnerMainSc.newsHdMainSc .mainTitleNewsCnt {
            margin-bottom: 0;
        }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .Rudrabreadcrumb {
        overflow-x: scroll;
    }

        .Rudrabreadcrumb a {
            white-space: nowrap;
        }

        .Rudrabreadcrumb span {
            white-space: nowrap;
        }
}

@media (max-width: 575px) {
    .newsHdMainSc .detailedNewsCnt.mainTitleNewsCnt .newTitlecnt h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .blogInnerMainSc .dateAndTimeCnt {
        flex-direction: column;
        align-items: start;
    }

        .blogInnerMainSc .dateAndTimeCnt .dateCnt {
            gap: 8px;
            margin-bottom: 8px;
            display: grid;
            grid-template-columns: auto auto auto;
        }

    .detailedNewsCnt.mainTitleNewsCnt .hindiHint {
        grid-column: 1 / -1;
    }

    .Rudrabreadcrumb {
        overflow-x: scroll;
    }

        .Rudrabreadcrumb a {
            white-space: nowrap;
        }

        .Rudrabreadcrumb span {
            white-space: nowrap;
        }
}

@media(max-width:479px) {
    .blogulCnt li {
        font-size: 13px;
    }
}
/* blog css end */

/* bank details css start */
.bankDtSc .hintHd {
    margin: 0;
    margin-bottom: 14px;
}

.bankDtSc .commandMainHeading {
    text-align: left !important;
    margin-bottom: 14px;
}

.bankDtSc .row {
    justify-content: space-between;
}

.bankDtSc {
    padding: 10px 0 58px;
}

.bankPayListSc .commandMainHeading {
    font-size: 24px;
    margin-bottom: 30px;
}

.onlinePayCnt .addInDetail .detailCnt {
    padding: 12px 16px;
}

.chequePayCnt .addInDetail .detailCnt {
    padding: 20px 16px;
}

.bankPayListSc {
    padding-bottom: 32px;
}

.tileWholeCnt {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 24px;
}

.tile {
    font-size: 14px;
    color: #050505;
    margin-bottom: 5px;
}

.tileCnt {
    font-size: 14px;
    color: #4F4F4F;
}

.transferSc .commandMainHeading {
    font-size: 24px;
    margin-bottom: 24px;
}

.transferSc {
    padding-bottom: 46px;
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .bankDtSc .imgCnt {
        text-align: center;
    }

    .bankPayListSc .commandMainHeading {
        font-size: 22px;
    }
}

@media (max-width: 767.9px) {
    .bankDtSc .imgCnt {
        text-align: center;
    }

    .bankPayListSc .row {
        gap: 24px;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .bankPayListSc .addInDetail {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .addInDetail .detailCnt {
        gap: 14px;
    }

        .addInDetail .detailCnt:not(:last-child) {
            margin-bottom: 0px;
        }
}

@media (max-width: 575px) {
    .bankPayListSc .commandMainHeading {
        font-size: 20px;
    }

    .transferSc .commandMainHeading {
        font-size: 20px;
        margin-bottom: 24px;
    }
}
/* bank detail css end */

/* trading platform css start */
.MainHeadingDiscrition {
    width: 80%;
    margin: auto;
}

.tradingPlatformSc .imgCnt {
    text-align: center;
}

.mintTabSc .dtCnt .commandMainHeading {
    margin-bottom: 17px;
}

.derSubHd h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: #1F1F1F;
    margin-bottom: 16px;
}

.mintTabSc .derSubHd .subHdDes {
    padding: 16px 0;
    border-bottom: 1px solid #DADADA;
}

.mintTabSc .dtCnt {
    margin-bottom: 16px;
}

.mintTabSc {
    margin-bottom: 77px;
}

.ServicesTab {
    margin-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .MainHeadingDiscrition {
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 991.9px) {
    .MainHeadingDiscrition {
        width: 100%;
        margin: auto;
    }

    .mintTabSc .imgCnt {
        text-align: center;
    }
}
/* trading platform css end */

/* career css start */
.careersSc .MainHeadingDiscrition {
    width: 76%;
    margin: auto;
}

.careersSc .gridSelectTag select {
    padding: 11px 12px;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
    outline: 0;
    width: 100%;
}

.careersSc .gridSelectTag label {
    font-size: 14px;
    color: #1F1F1F;
    margin-bottom: 8px;
}

.careersSc .gridSelectTag {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.careersSc {
    padding-bottom: 45px;
}

    .careersSc .MainHeadingDiscrition {
        margin-bottom: 20px;
    }

.shapeUrFutureSc .commandMainHeading {
    margin-bottom: 20px;
}

.shapeUrFutureSc p {
    margin-bottom: 20px;
}

.careerBtn {
    padding: 12px 16px;
    background: var(--primary-red);
    border-radius: 12px;
    border: none;
    color: white;
}

.shapeUrFutureSc {
    padding-bottom: 58px;
}

.joinRudraSc .commandMainHeading {
    margin-bottom: 14px;
}

.joinRudraSc .joinDtCnt {
    margin-bottom: 38px;
}

.joinRudraSc p {
    margin: 0 auto;
    width: 80%;
}

.joinRudraSc {
    margin-bottom: 60px;
}

.comprehensiveDtCnt ul li {
    padding: 11px 12px;
    background: #FFFFFF;
    /* border: 1px solid #E7E7E7; */
    border-radius: 12px;
    color: #1F1F1F;
    font-size: 14px;
    box-shadow: 0px 4px 15px 0px rgba(31, 31, 31, 0.08);
    -webkit-box-shadow: 0px 4px 15px 0px rgba(31, 31, 31, 0.08);
    -moz-box-shadow: 0px 4px 15px 0px rgba(31, 31, 31, 0.08);
}

.comprehensiveDtCnt ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 16px;
    margin-bottom: 24px;
}

.comprehensiveDtCnt p {
    font-size: 24px;
    line-height: 32px;
    color: #1F1F1F;
    margin-bottom: 26px;
}

.comprehensiveSc {
    padding-bottom: 76px;
}

.stepInCareerSc {
    background-image: url('../images/careerImg.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

    .stepInCareerSc .stepInCareerDtCnt .commandMainHeading {
        color: #FFF0F2;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .stepInCareerSc .stepInCareerDtCnt p {
        color: #FFF0F2;
        margin-bottom: 16px;
    }

    .stepInCareerSc .stepInCareerDtCnt {
        padding: 85px 0;
    }

.stepInCareerSc {
    padding-bottom: 78px;
}

.formDtCnt input {
    padding: 10px 12px;
    border: 1px solid #E7E7E7;
    border-radius: 3px;
    outline: 0;
    width: 100%;
    background-color: #F6F6F6;
}

.formDtCnt label {
    color: #000000;
    font-size: 14px;
    margin-bottom: 14px;
}

.labInput {
    margin-bottom: 16px;
}

.fundTransBtn {
    padding: 10px 100px;
    background: #DD031C;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #DD031C;
    color: #fff;
    width: 100%;
}

.jobFindFormSc .row {
    justify-content: space-between;
}

.jobFindFormSc {
    padding: 53px 0;
    background-color: #FFFFFF;
}

.jobFindDtCnt .commandMainHeading {
    font-weight: 400;
    margin-bottom: 16px;
}

.jobFindDtCnt p {
    margin-bottom: 92px;
}

.uploadCnt {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .uploadCnt p {
        font-size: 14px;
        color: #4F4F4F;
        margin-bottom: 0;
    }

.uploadFileInputCnt {
    position: relative;
}

    .uploadFileInputCnt .uploadCnt {
        position: absolute;
        top: 38%;
        transform: translate(100%, 0%);
    }

    .uploadFileInputCnt input {
        height: 110px;
    }

.file_container {
    padding: 40px 20px;
    color: #6A6A6A;
    font-size: 14px;
    margin: 14px 0 16px 0;
    background: #F6F6F6;
    border: 1px solid #E7E7E7;
    text-align: center;
}

.uploadFile {
    color: grey;
    font-size: 16px;
    line-height: 23px;
    overflow: hidden;
    padding: 10px 10px 4px 10px;
    position: relative;
    resize: none;
    [type="file"]

{
    cursor: pointer !important;
    display: block;
    font-size: 60px;
    filter: alpha(opacity=0);
    min-height: 10%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0px;
    text-align: right;
    top: 0px;
    z-index: 1;
}

}

.file_container .uploadFile span {
    position: relative;
    padding-left: 36px;
}

    .file_container .uploadFile span::before {
        position: absolute;
        content: "";
        left: 10px;
        top: 3px;
        height: 15px;
        width: 17px;
        background-image: url('data:image/svg+xml,<svg width="17" height="15" viewBox="0 0 17 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.50641 13.875L8.50341 7.12499M14.6977 11.3685C15.2982 10.9462 15.7486 10.3435 15.9834 9.64784C16.2182 8.95222 16.2252 8.19987 16.0034 7.49999C15.5485 6.06374 14.1547 5.27661 12.6483 5.27811H11.7779C11.5702 4.46834 11.1815 3.71624 10.6411 3.07844C10.1006 2.44065 9.42251 1.93377 8.65781 1.59598C7.89311 1.25819 7.06174 1.09829 6.2263 1.12832C5.39085 1.15835 4.57311 1.37753 3.83463 1.76935C3.09616 2.16117 2.4562 2.71542 1.96294 3.39038C1.46968 4.06533 1.13598 4.8434 0.986953 5.66599C0.837929 6.48858 0.87747 7.33427 1.1026 8.13937C1.32773 8.94447 1.73257 9.688 2.28666 10.314" stroke="%234F4F4F" stroke-width="1.16667" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.8902 8.86355L8.50369 6.47705L6.11719 8.86355" stroke="%234F4F4F" stroke-width="1.16667" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    }

@media (min-width: 1400px) {
    .uploadFileInputCnt .uploadCnt {
        transform: translate(140%, 0%);
    }
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .careersSc .MainHeadingDiscrition {
        width: 86%;
    }
}

@media (max-width: 1199.9px) {
    .stepInCareerSc {
        padding-bottom: 48px;
    }

    .joinRudraSc p {
        width: 100%;
    }
}

@media (max-width: 991.9px) {
    .careersSc .MainHeadingDiscrition {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .shapeUrFutureImgCnt {
        text-align: center;
    }

    .shapeUrFutureSc .row {
        gap: 14px;
    }

    .comprehensiveSc .comprehensiveImgCnt {
        text-align: center;
    }

    .comprehensiveSc .row {
        gap: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .uploadFileInputCnt .uploadCnt {
        transform: translate(50%, 0%);
    }

    .jobFindDtCnt p {
        margin-bottom: 62px;
    }
}

@media (min-width: 576px) and (max-width: 767.9px) {
    .jobFindFormSc .row {
        gap: 34px;
    }

    .stepInCareerSc .stepInCareerDtCnt {
        padding: 65px 0;
    }

    .comprehensiveDtCnt p {
        font-size: 20px;
    }

    .jobFindDtCnt p {
        margin-bottom: 42px;
    }

    .careersSc .gridSelectTag select {
        padding: 4px 12px;
    }

    .stepInCareerSc {
        padding-bottom: 0px;
    }

    .suitCaseImgCnt {
        text-align: center;
    }
}

@media (min-width: 400.9px) and (max-width: 575px) {
    .uploadFileInputCnt .uploadCnt {
        transform: translate(70%, 0%) !important;
    }
}

@media (max-width: 575px) {
    .careersSc .gridSelectTag {
        grid-template-columns: repeat(1, 1fr);
    }

    .comprehensiveDtCnt p {
        font-size: 16px !important;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .jobFindFormSc .row {
        gap: 34px;
    }

    .stepInCareerSc .stepInCareerDtCnt {
        padding: 65px 0;
    }

    .comprehensiveDtCnt p {
        font-size: 20px;
    }

    .jobFindDtCnt p {
        margin-bottom: 42px;
    }

    .uploadFileInputCnt .uploadCnt {
        transform: translate(50%, 0%);
    }

    .stepInCareerSc {
        padding-bottom: 0px;
    }

    .careersSc .gridSelectTag select {
        padding: 4px 12px;
    }

    .stepInCareerSc {
        padding-bottom: 0px;
    }

    .suitCaseImgCnt {
        text-align: center;
    }

    .file_container {
        padding: 14px 20px;
    }
}
/* career css end */

/* career inner css start */
.mfLandingSc .hintHd {
    background-color: #ffffff;
    margin-left: 0;
}

.mfLandingSc .row {
    padding: 12px 0;
}

.careersSc {
    padding: 24px 0 35px;
}

.jobListTitle {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #1F1F1F;
    margin-bottom: 24px;
}

.postedTime {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 12px;
}

.postAndStreamCnt .post {
    color: #050505;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.postAndStreamCnt .stream {
    color: #454545;
    font-size: 14px;
    line-height: 18px;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #F6F6F6;
    border: 1px solid #D1D1D1;
}

.postAndStreamCnt {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 12px;
}

.experienceAndLocationCnt .experience {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 18px;
}

    .experienceAndLocationCnt .experience span {
        color: #262424;
    }

.experienceAndLocationCnt .location {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 18px;
}

    .experienceAndLocationCnt .location span {
        color: #DD031C;
    }

.experienceAndLocationCnt {
    display: flex;
    align-items: center;
    gap: 25px;
}

.jobCnt .applyBtn {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    background-color: #DD031C;
    padding: 9px 27px;
    border-radius: 4px;
    outline: none;
    border: none;
}

.jobCnt .detailedApplyBtnCnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.jobDes {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
}

.readMore {
    color: #1F1F1F;
    font-size: 14px;
    line-height: 24px;
    border: none;
    background-color: transparent;
}

.jobCnt {
    border: 1px solid #D1D1D1;
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 12px;
}

.jobSprCnt:not(:last-child) {
    margin-bottom: 24px;
}

.subTileAndPointsCnt h6 {
    color: #262424;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.subTileAndPointsCnt ul li {
    color: #4F4F4F;
    font-size: 14px;
    line-height: 24px;
    list-style: disc;
}

.subTileAndPointsCnt {
    margin-bottom: 22px;
}

.jobListSc {
    padding-bottom: 48px;
}

@media (min-width: 768px) and (max-width: 991.9px) {
    .mfLandingSc .mfHdCnt {
        margin-top: 8px;
        margin-bottom: 34px;
    }
}

@media (max-width: 767.9px) {
    .mfLandingSc .mfImgCnt {
        text-align: center;
    }

    .mfLandingSc .mfHdCnt {
        margin-bottom: 0px;
        margin-top: 16px;
    }

    .detailedApplyBtnCnt {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px;
    }
}

@media (max-width: 480.9px) {
    .experienceAndLocationCnt {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

        .experienceAndLocationCnt .seperator {
            display: none;
        }
}

@media (max-width: 400.9px) {
    .postAndStreamCnt {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .jobCnt {
        padding: 14px;
    }
}
/* career inner css end */
