@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Italic.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-LightItalic.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


body {
    --PrimaryColor: #820001;
    --YellowColor: #dba84d;
    --LightBg: #f2e1c1;
    --headingColor: #1e1402;
    --textcolor: #4a4343;
    --whitecolor: #ffffff;
    --borderColor: #d5cdcd;
    --TextonRedColor: #ded5d5;
    font-family: "Poppins", sans-serif !important;
    background: var(--whitecolor);
}

p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--textcolor);
    font-family: "Poppins", sans-serif !important;
}

.container {
    max-width: 1440px !important
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headingColor);
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;}

a{
	text-decoration: none;
	transition-duration: 0.3s;
}

a:hover{
	text-decoration: none;
}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 8px;
    height: 8px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 8px;
    height: 8px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 8px;

    position: absolute;
    top: 0;
    left: 0;

    width: 8px;
    height: 8px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}


/*----*/



.services-scroll .slick-dots,
.ourclients-scroll .slick-dots,
.hotdeals-scroll .slick-dots,
.package-scroll .slick-dots,
.package-banner .slick-dots {
	bottom: -25px !important;
}

.services-scroll .slick-dots li button,
.ourclients-scroll .slick-dots li button,
.hotdeals-scroll .slick-dots li button,
.package-scroll .slick-dots li button,
.package-banner .slick-dots li button {
	border: 2px solid var(--PrimaryColor);
	list-style: none !important;
	z-index: 990;
	border-radius: 50%;
}

.services-scroll .slick-dots li button,
.ourclients-scroll .slick-dots li button,
.hotdeals-scroll .slick-dots li button,
.package-scroll .slick-dots li button,
.package-banner .slick-dots li button {
	border: 2px solid var(--PrimaryColor);
	list-style: none !important;
	z-index: 990;
	border-radius: 50%;
}

.services-scroll li button:before,
.ourclients-scroll li button:before,
.hotdeals-scroll li button:before,
.package-scroll li button:before,
.package-banner li button:before {
	display: none;
	visibility: hidden;
}

.services-scroll .slick-dots li.slick-active button,
.ourclients-scroll .slick-dots li.slick-active button,
.hotdeals-scroll .slick-dots li.slick-active button,
.package-scroll .slick-dots li.slick-active button,
.package-banner .slick-dots li.slick-active button {
	background: var(--PrimaryColor);
}

.services-scroll .slick-dots li.slick-active button,
.ourclients-scroll .slick-dots li.slick-active button,
.hotdeals-scroll .slick-dots li.slick-active button,
.package-scroll .slick-dots li.slick-active button,
.package-banner .slick-dots li.slick-active button {
	background: var(--PrimaryColor);
}

.services-scroll .slick-dots li button,
.ourclients-scroll .slick-dots li button,
.hotdeals-scroll .slick-dots li button,
.package-scroll .slick-dots li button,
.package-banner .slick-dots li button {
	border: 2px solid var(--PrimaryColor);
	list-style: none !important;
	z-index: 990;
	border-radius: 0%;
}

::selection {
    background: var(--PrimaryColor);
    color: #fff;
}

::-moz-selection {
    background: var(--PrimaryColor);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgba(249, 187, 38, .9);
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(249, 187, 38, 1);
}

.header-wrapper-div{
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1030;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.4);
}

.header-topsection{
    width: 100%;
    background: var(--YellowColor);
    min-height: 40px;
    transition-duration: 0.3s;
}

.header-topsection p{
    padding: 0;
    margin: 0;
    width: auto;
    display: inline-block;
    color: var(--headingColor);
    font-weight: 500;
    font-size: 14px;
    line-height: 40px;
}

.header-topsection p a{
    color: var(--headingColor);
    text-decoration: none;
}

.header-topsection p i{
    color: var(--PrimaryColor);
    margin-right: 4px;
}

.header-topsection .col-lg-6:last-child p{
    text-align: right;
    width: 100%;
}

.header-topsection .col-lg-6:first-child p:first-child{
    margin-right: 25px;
}

.header-wrapper-div .header-logo img{
    display: inline-block;
    transition-duration: 0.3s;
    width: auto;
    height: 58px;
}

.header-wrapper-div .col-lg-8 .nav-item{
    margin: 0px 1px;
}

.header-wrapper-div .col-lg-8 .nav-link{
    color: var(--headingColor);
    padding: 8px 30px;
    margin: 0px;
    font-weight: 400;
    font-size: 15px;
    border-radius: 4px;
}

.header-wrapper-div .col-lg-8 .nav-link:hover{
    background: var(--LightBg);
}

.header-wrapper-div .col-lg-8 .nav-link.active,
#home .header-menucon .homelink,
#aboutus .header-menucon .aboutlink,
#services .header-menucon .serviceslink,
#statutory .header-menucon .statutorylink,
#contact .header-menucon .contactlink{
    background: var(--PrimaryColor);
    color: var(--whitecolor);
}

.header-wrapper-div .header-menucon{
    transition-duration: 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header-wrapper-div .dropdown-menu{
    min-width: 220px;
}

.header-wrapper-div .dropdown-menu li a{
    padding: 8px 15px;
    margin: 0px;
    color: var(--headingColor);
    font-size: 15px;
}

.header-wrapper-div .dropdown-menu li a:hover{
    background: var(--PrimaryColor);
    color: var(--whitecolor);
}

.banner-wrapper-div{
    width: 100%;
    min-height: 520px;
    margin-top: 138px;
    position: relative;
}

.footer-wrapper-div{
    width: 100%;
    background: var(--PrimaryColor);
    position: relative;
    padding: 22px 0px;
}

.footer-wrapper-div p{
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: var(--TextonRedColor);
}

.footer-wrapper-div .col-lg-6:last-child p{
    text-align: right;
}

.footer-wrapper-div .col-lg-6:last-child p a{
    color: var(--TextonRedColor);
}

.footer-wrapper-div .col-lg-6:last-child p a:hover{
    color: var(--YellowColor);
}

.footer-wrapper-div .col-lg-6:last-child p font{
    margin: 0px 20px;
}

.header-wrapper-div .navbar{
    padding: 9px 0px 0px 0px;
}

.f-nav .header-topsection{
    margin-top: -40px;
}

.f-nav .header-wrapper-div .header-menucon{
    margin-top: 10px;
    margin-bottom: 10px;
}

.f-nav .header-wrapper-div .header-logo img{
    height: 45px;
}

.f-nav .header-wrapper-div .navbar{
    padding: 3px 0px 0px 0px;
}

.banner-wrapper-div .carousel-item{
    position: relative;
}

.banner-wrapper-div .carousel-item img{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.banner-wrapper-div .carousel-captions{
    width: 100%;
    height: 560px;
    display: table;
    position: relative;
    z-index: 10;
}

.banner-wrapper-div .carousel-captions .captionmiddlealign{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.banner-wrapper-div .carousel-captions .captionmiddlealign h1{
    padding: 0;
    margin: 0px 0px 0px 0px;
    color: var(--whitecolor);
    font-size: 48px;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.banner-wrapper-div .carousel-captions .captionmiddlealign h1 font{
    color: var(--PrimaryColor);
    font-weight: 700;
}

.banner-second-section{
    width: 100%;
    min-height: 560px;
    display: table;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 20;
}

.banner-second-section .banner-second-middle{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.banner-second-section .banner-second-middle .bannersec-div{
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 100;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.4);
    border-radius: 15px;
    text-align: center;
    padding: 65px 15px;
}

.banner-second-section .banner-second-middle .bannersec-div p{
    padding: 0;
    margin: 0;
}

.banner-second-section .banner-second-middle .bannersec-div h4{
    font-size: 18px;
    color: var(--PrimaryColor);
    padding: 0;
    margin: 0px 0px 15px 0px;
    font-weight: 600;
}

.banner-second-section .banner-second-middle .bannersec-div h6{
    font-size: 18px;
    color: var(--headingColor);
    padding: 0;
    margin: 0px 0px 10px 0px;
    font-weight: 500;
}

.banner-second-section .banner-second-middle .bannersec-div h5{
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 0;
    margin: 0px 0px 30px 0px;
}

.banner-second-section .banner-second-middle .bannersec-div h5 span{
    background: var(--YellowColor);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
}

.welcome-text-wrap .col-lg-4 img{
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 480px;
}

.welcome-text-wrap .col-lg-8 p{
    text-align: justify;
}

.welcome-text-wrap .col-lg-8 h3{
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.welcome-text-wrap .col-lg-8 .readmore-btn{
    margin-top: 25px;
}

.readmore-btn{
    border: 2px solid var(--PrimaryColor);
    color: var(--PrimaryColor);
    font-size: 15px;
    font-weight: 500;
    line-height: 40px;
    padding: 0px 25px;
    display: inline-block;
    border-radius: 4px;
}

.readmore-btn:hover{
    background: var(--PrimaryColor);
    color: var(--whitecolor);
}

.welcome-text-wrap .col-lg-8 .welcome-wrapper-text{
    width: 100%;
    height: 480px;
    display: table;
    padding-left: 65px;
}

.welcome-text-wrap .col-lg-8 .welcome-wrapper-text .welcome-wrapper-middlealign{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.welcome-text-wrap{
    width: 100%;
    margin-top: 100px;
}

.bewareof-imposters-wrap{
    width: 100%;
    text-align: center;
    background: var(--PrimaryColor);
    border-radius: 15px;
    padding: 80px 45px;
    margin-top: 100px;
    position: relative;
    z-index: 100;
}

.bewareof-imposters-wrap p{
    color: var(--TextonRedColor);
    padding: 0;
    margin: 0;
}

.bewareof-imposters-wrap h3{
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0px 20px 0px;
    color: var(--YellowColor);
    font-size: 32px;
    font-weight: 600;
}

.bewareof-imposters-wrap  span{
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.bewareof-imposters-wrap  span i{
    color: var(--YellowColor);
    font-size: 48px;
}

.sebi-address-wrap{
    width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.sebi-address-wrap .sebi-address-item{
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: 15px;
    padding: 60px 40px;
    min-height: 350px;
}

.sebi-address-wrap .sebi-address-item p{
    padding: 0;
    margin: 12px 0px 0px 0px;
}

.sebi-address-wrap .sebi-address-item p a{
    color: var(--textcolor);
    text-decoration: none;
}

.sebi-address-wrap .sebi-address-item h6{
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    margin: 0px 0px 0px 0px;
}

.sebi-address-wrap .sebi-address-item h4{
    width: 100%;
    padding: 0;
    margin: 0px 0px 4px 0px;
    font-size: 22px;
    font-weight: 600;
}


.mandatory-disclosure{
    width: 100%;
    background: var(--LightBg);
    padding: 180px 0px 90px 0px;
    margin-top: -90px;
}

.mandatory-disclosure .complaintbox-div{
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 100;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 20px -8px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 20px -8px rgba(0,0,0,0.4);
    border-radius: 15px;
    text-align: center;
    padding: 0px 0px;
    overflow: hidden;
}

.mandatory-disclosure .complaintbox-div p{
    padding: 0;
    margin: 45px 0px;
    line-height: 32px;
}

.mandatory-disclosure .complaintbox-div h5{
    width: 100%;
    padding: 10px 0px;
    margin: 0;
    background: var(--YellowColor);
    color: var(--headingColor);
    font-size: 15px;
}


.mandatory-disclosure .col-lg-8{
    padding-right: 100px;
}

.mandatory-disclosure .col-lg-8 p{
    text-align: justify;
}

.mandatory-disclosure .col-lg-8 .readmore-btn{
    margin-top: 20px;
}

.mandatory-disclosure .col-lg-8 h3{
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
}

.dropdown-menu {
    transition: all 0.2s ease-in-out;
}




@media (max-width: 992px) {
    .navbar-collapse {
        position: fixed;
        top: 0px;
        right: 0;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 15px;
        padding-top: 60px;
        width: 300px;
        height: 100vh;
        z-index: 1050;
        background: rgba(219, 168, 77, 0.9);
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    }

    .navbar-collapse.collapsing {
        right: -300px;
        transition: height 0s ease;
    }

    .navbar-collapse.show {
        right: 0;
        transition: right 300ms ease-in-out;
    }

    .navbar-toggler.collapsed~.navbar-collapse {
        transition: right 500ms ease-in-out;
    }

    .navbar-light .close_btn {
        color: var(--YellowColor);
        right: 0px;
        top: 0px !important;
        margin-left: -20px;
        background-color: #cdab81;
        width: 40px;
        height: 40px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }

    .menu-wrapper .navbar .navbar-nav a {
        color: #fff !important;
    }

    .menu-wrapper .navbar .navbar-nav {
        margin-top: 50px;
    }

    .menu-wrapper .navbar .navbar-nav a {
        padding: 10px 10px !important;
        line-height: 60px !important;
    }

    .menu-wrapper .navbar .dropdown .dropdown-menu {
        padding: 10px 10px !important;
    }

    .header-bar .navbar .nav-item {
        border-left: none !important;
        border-bottom: 1px dashed #dbb957;
    }

    .header-bar .navbar .nav-item .nav-link {
        text-align: center;
        padding: 20px 0px !important;
        color: #fff !important;
        font-weight: 500;
    }

    .navbar-light .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
        color: rgba(255, 255, 255, 0.5);
        margin-top: 6px;
    }

    .header-wrapper .nav-link{
        color: #fff !important;
        padding: 10px 10px !important;
        border-radius: 4px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    }

    .header-wrapper  .dropdown-item:last-child .nav-link{
        border-bottom: none;
    }

    .header-wrapper .nav-link:hover{
        background: var(--PrimaryColor);
        color: #fff !important;
    }


}

.close-btn{
    width: 44px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    color: var(--whitecolor);
    position: absolute;
    top: 0px;
    right: 0px;
    display: none;
    visibility: hidden;
}

.inner-banner-wrapper-div{
    width: 100%;
    margin-top: 138px;
    position: relative;
    height: 200px;
    display: table;
    text-align: center;
    overflow: hidden;
}

.inner-banner-wrapper-div span{
    width: 100%;
    position: relative;
    z-index: 10;
    display: table-cell;
    vertical-align: middle;
}

.inner-banner-wrapper-div span h2{
    padding: 0;
    margin: 0px 0px 0px 0px;
    color: var(--whitecolor);
    font-size: 48px;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.inner-banner-wrapper-div img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: absolute;
    left: 0px;
    top: 0px;
}

.innerpage-content-wrap{
    width: 100%;
    margin-top: 90px;
    margin-bottom: 90px;
}

.googlemap-wrapper {
	position: relative;
	padding-bottom: 420px;
	height: 0;
	overflow: hidden;
	margin: 80px 0px 0px 0px;
}

.googlemap-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.sendus-message .col-lg-6 input{
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    height: 45px;
    font-size: 15px;
    color: var(--textcolor);
    padding: 0px 15px;
    transition-duration: 0.3s;
}

.sendus-message .col-lg-12 textarea{
    width: 100%;
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    height: 140px;
    font-size: 15px;
    color: var(--textcolor);
    padding: 10px 15px 0px 15px;
    transition-duration: 0.3s;
}

.sendus-message .col-lg-6 input:focus,
.sendus-message .col-lg-12 textarea:focus{
    outline: none;
    border-color: var(--PrimaryColor);
}

.sendus-message .col-lg-3 .submit-btn{
    width: 100%;
    background: var(--PrimaryColor);
    color: var(--whitecolor);
    border-radius: 4px;
    height: 45px;
    border: none;
    font-weight: 500;
    text-transform: uppercase;
    transition-duration: 0.3s;
}

.sendus-message .col-lg-3 .submit-btn:hover{
    background: var(--YellowColor);
    color: var(--headingColor);
}

.sendus-message .col-lg-6{
    margin-bottom: 16px;
}

.sendus-message .col-lg-12{
    margin-bottom: 10px;
}

.sendus-message h3{
    padding: 0;
    margin: 0px 0px 10px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.sendus-message form{
    padding-top: 15px;
    display: block;
}

.getintouch-wrapper{
    width: 100%;
    display: table;
    border: 2px solid var(--YellowColor);
    border-radius: 10px;
    padding: 45px 35px;
    height: 100%;
}

.getintouch-wrapper div{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.getintouch-wrapper p a{
    color: var(--textcolor);
    text-decoration: none;
}

.getintouch-wrapper p:last-child{
    margin-bottom: 0px;
}

.getintouch-wrapper h5{
    width: 100%;
    padding: 0;
    margin: 0px 0px 10px 0px;
    color: var(--PrimaryColor);
    font-size: 18px;
    font-weight: 600;
}

.auditcompliance-page .col-lg-8 p{
    text-align: center;
    margin-bottom: 45px;
}

.auditcompliance-page .col-lg-6 .table{
    font-size: 15px;
    color: var(--textcolor);
}

.auditcompliance-page .col-lg-6 .table thead tr th{
    color: var(--PrimaryColor);
}

.visionmission-con{
    width: 100%;
    padding: 60px 45px;
    background: var(--whitecolor);
    text-align: justify;
    border-radius: 10px;
    min-height: auto;
}

.visionmission-con h4{
    width: 100%;
    padding: 0;
    margin: 0px 0px 14px 0px;
    color: var(--headingColor);
    font-size: 22px;
    font-weight: 600;
}

.visionmission-con p{
    padding: 0;
    margin: 0;
}

.visionmission-bottomtext{
    width: 100%;
    background: var(--LightBg);
    padding: 90px 0px;
}

.about-page-text .col-lg-4 img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}

.about-page-text .col-lg-8 .about-page-content{
    width: 100%;
    height: 100%;
    display: table;
}

.about-page-text .col-lg-8 .about-page-content span{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.about-page-text .col-lg-8 .about-page-content span p{
    text-align: justify;
}

.about-page-text .col-lg-8 .about-page-content span h5{
    color: var(--PrimaryColor);
    font-size: 18px;
    padding: 0;
    margin: 15px 0px 8px 0px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
}

.about-page-text .col-lg-8 .about-page-content span h6{
    color: var(--textcolor);
    font-size: 15px;
    padding: 0;
    margin: 0px 0px 0px 0px;
}

.services-page .col-lg-8{
    text-align: justify;
}

.services-page .col-lg-8 ul{
    width: 100%;
    padding: 0px 0px 0px 20px ;
    margin: 0px 0px 20px 0px;
}

.services-page .col-lg-8 ul li{
    width: 100%;
    padding: 0px 0px 0px 0px;
    font-size: 15px;
    margin: 14px 0px;
    color: var(--textcolor);
}

.services-page .col-lg-4 img{
    width: 100%;
    border-radius: 10px;
    height: 345px;
    object-fit: cover;
}

.grievance-redressal-item{
    border: 2px solid var(--YellowColor);
    text-align: center;
    display: inline-block;
    margin: 12px 0px;
    padding: 20px 20px;
    width: 100%;
    display: block;
}

.grievance-redressal-item a{
    background: var(--YellowColor);
    color: var(--whitecolor);
    padding: 10px 0px;
    margin: 0px 0px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    min-width: 140px;
    transition-duration: 0.3s;
}

.grievance-redressal-item a:hover{
    background: var(--PrimaryColor);
}

.grievance-redressal-item h4{
    color: var(--headingColor);
    padding: 0;
    margin: 0px 0px 25px 0px;
    font-size: 18px;
    line-height: 24px;
}

.statutory-page .col-lg-8 ul{
    width: 100%;
    padding: 0px 0px;
    margin: 0px 0px 20px 0px;
}

.statutory-page .col-lg-8 ul li{
    list-style: none;
    padding: 0;
    margin: 10px 0px;
    width: 100%;
    font-size: 15px;
    color: var(--textcolor);
}

.statutory-page .col-lg-8 ul li a{
    color: var(--textcolor);
    text-decoration: none;
}

.statutory-page .col-lg-8 h3{
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.statutory-page .col-lg-4 img{
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 6px;
}

.statutory-historic-page{
    width: 100%;
    background: var(--LightBg);
    text-align: center;
    padding: 90px 0px;
    margin-top: 90px;
}

.statutory-historic-page h4{
    padding: 0;
    margin: 0px 0px 20px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
    width: 100%;
    text-align: center;
}

.statutory-historic-page a{
    background: var(--PrimaryColor);
    color: var(--whitecolor);
    padding: 10px 0px;
    margin: 15px 0px 0px 0px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    min-width: 140px;
    transition-duration: 0.3s;
}

.statutory-historic-page a:hover{
    background: var(--headingColor);
}

.privacypolicy-page h4{
    width: 100%;
    padding: 0;
    margin: 25px 0px 8px 0px;
    font-size: 20px;
    font-weight: 600;
}

.privacypolicy-page h3{
    width: 100%;
    padding: 0;
    margin: 25px 0px 8px 0px;
    font-size: 22px;
    font-weight: 600;
    color: var(--PrimaryColor);
}

.privacypolicy-page ul{
    width: 100%;
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 20px 0px;
}

.privacypolicy-page ul li{
    color: var(--textcolor);
    padding: 0px 0px;
    margin: 8px 0px;
}

.privacypolicy-page p a{
    color: var(--headingColor) ;
    font-weight: 600 ;
}

.privacypolicy-page p a:hover{
    text-decoration: none;
    color: var(--PrimaryColor);
}

.historicdata-modal{
    padding: 60px 45px;
    text-align: center;
    text-align: center;
    position: relative;
}

.historicdata-modal .btn-close{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 13px;
}

.historicdata-modal h4{
    width: 100%;
    color: var(--PrimaryColor);
    font-size: 20px;
    padding: 0;
    margin: 0px 0px 15px 0px;
    font-weight: 600;
}

.historicdata-modal p{
    margin-bottom: 30px;
}

.disclaimer-wrap h4{
    padding: 0;
    margin: 0px 0px 12px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.disclaimer-wrap ul{
    width: 100%;
    padding: 0px 0px 0px 18px;
    margin: 0px;
}

.disclaimer-wrap ul li{
    width: 100%;
    padding: 0;
    margin: 15px 0px 0px 0px;
    color: var(--textcolor);
    font-size: 15px;
    line-height: 26px;
}

.disclaimer-wrap{
    width: 100%;
    margin: 90px 0px;
}

.onboaring-style .col-lg-8 h4,
.ongoing-style .col-lg-8 h4{
    padding: 0;
    margin: 0px 0px 0px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.onboaring-style .col-lg-8 h5,
.ongoing-style .col-lg-8 h5{
    padding: 0;
    margin: 20px 0px 5px 0px;
    font-size: 18px;
    font-weight: 600;
    color: var(--PrimaryColor);
}

.onboaring-style .col-lg-8 ul,
.ongoing-style .col-lg-8 ul{
    width: 100%;
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 0px 0px;
}

.onboaring-style .col-lg-8 ul li,
.ongoing-style .col-lg-8 ul li{
    width: 100%;
    padding: 0;
    margin: 5px 0px 0px 0px;
    color: var(--textcolor);
}

.onboaring-style .col-lg-4 img{
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 6px;
}

.ongoing-style  .col-lg-4 img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 6px;
}

.ongoing-style{
    margin-top: 90px;
}

.ourcommitment-con{
    width: 100%;
    border: 2px solid var(--PrimaryColor);
    padding: 45px 45px;
    margin-top: 90px;
    border-radius: 10px;
    min-height: 380px;
}

.ourcommitment-con ul{
    width: 100%;
    padding: 0px 0px 0px 20px;
    margin: 0px 0px 0px 0px;
}

.ourcommitment-con ul li{
    width: 100%;
    padding: 0;
    margin: 5px 0px 0px 0px;
    color: var(--textcolor);
}

.ourcommitment-con  h4{
    padding: 0;
    margin: 0px 0px 0px 0px;
    font-size: 32px;
    font-weight: 600;
    color: var(--headingColor);
}

.ourcommitment-con h6{
    padding: 0;
    margin: 10px 0px 15px 0px;
    font-size: 16px;
    font-weight: 600;
    color: var(--PrimaryColor);
}

.onboaring-four-sections{
    margin-bottom: 90px;
}


.popup-modals {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px
}

.popup-modals img {
    width: 142px;
    height: 141px;
    position: relative;
    left: 50%;
    margin-left: -71px
}

.popup-modals h2,
.popup-modals h4 {
    padding: 0;
    width: 100%;
    text-align: center
}

.popup-modals h2 {
    margin: 20px 0;
    font-weight: 700;
    font-size: 22px;
    color: #000
}

.popup-modals h4 {
    margin: 0;
    font-size: 16px;
    color: var(--textcolor)
}

.grecaptcha-badge { 
    visibility: hidden !important;
    display: none !important;
}

.viewaudit-btn{
    font-weight: 500;
    font-size: 14px;
    color: var(--headingColor);
}

.viewaudit-btn:hover{
    text-decoration: none;
    color: var(--PrimaryColor);
}






@media screen and (max-width: 1024px) {
    
}

@media screen and (max-width: 980px) {
    .banner-wrapper-div .carousel-captions .captionmiddlealign h1 br,
    .sendus-message h3 br{
        display: none;
        visibility: hidden;
    }

    .header-topsection .col-lg-6:last-child p{
        text-align: center;
    }

    .welcome-text-wrap .col-lg-8 .welcome-wrapper-text{
        height: auto;
        padding-left: 0px;
    }

    .welcome-text-wrap .col-lg-8 h3{
        text-align: center;
        margin-top: 45px;
    }

    .mandatory-disclosure .col-lg-8{
        padding-right: 12px;
        margin-bottom: 45px;
    }

    .mandatory-disclosure .col-lg-8 h3{
        text-align: center;
    }

    .sebi-address-wrap .sebi-address-item{
        min-height: auto;
        margin: 12px 0px;
    }

    .banner-second-section{
        position: relative;
        min-height: auto;
        margin-top: -45px;
    }

    .banner-wrapper-div .carousel-captions .captionmiddlealign h1{
        text-align: center;   
        font-size: 38px; 
    }

    .banner-wrapper-div .carousel-captions .captionmiddlealign{
        vertical-align: bottom;
        padding-bottom: 85px;
    }

    .banner-wrapper-div .carousel-captions,
    .banner-wrapper-div .carousel-item img{
        height: 400px;
    }

    .navbar-toggler{
        border: 1px solid var(--borderColor);
        outline: none !important;
        box-shadow: none !important;
        position: absolute;
        top: 10px;
        right: 0px;
        padding: 9px 15px;
    }

    .f-nav .navbar-toggler{
        top: 1px;
    }

    .header-wrapper-div .col-lg-8 .nav-link,
    .header-wrapper-div .dropdown-menu li a{
        text-align: center;
    }

    .close-btn{
        display: block;
        visibility: visible;
    }

    .getintouch-wrapper{
        margin-bottom: 60px;
        text-align: center;
        display: block;
        height: auto;
    }

    .sendus-message h3,
    .sendus-message p{
        text-align: center;
    }

    .visionmission-con{
        min-height: auto;
        margin: 12px 0px;
    }

    .about-page-text .col-lg-4 img{
        height: auto;
        margin-bottom: 45px;
    }

    .statutory-page .col-lg-4 img{
        height: auto;
        margin-top: 45px;
    }

    .onboaring-style .col-lg-4 img,
    .ongoing-style .col-lg-4 img{
        height: auto;
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 540px) {
    .welcome-text-wrap .col-lg-8 h3 br{
        display: none;
        visibility: hidden;
    }

    .header-topsection p{
        font-size: 13px;
    }

    .banner-wrapper-div .carousel-captions .captionmiddlealign h1{
        font-size: 28px;
    }

    .welcome-text-wrap .col-lg-4 img{
        height: auto;
    }

    .welcome-text-wrap .col-lg-8 h3,
    .bewareof-imposters-wrap h3,
    .mandatory-disclosure .col-lg-8 h3,
    .sendus-message h3,
    .statutory-page .col-lg-8 h3,
    .statutory-historic-page h4{
        font-size: 26px;
    }

    .welcome-text-wrap,
    .bewareof-imposters-wrap{
        margin-top: 80px;
    }

    .sebi-address-wrap{
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .bewareof-imposters-wrap{
        padding: 60px 20px;
    }

    .footer-wrapper-div p{
        width: 100%;
        text-align: center !important;
    }

    .mandatory-disclosure{
        padding-top: 160px;
    }

    .sebi-address-wrap .sebi-address-item{
        text-align: center;
        padding: 45px 20px;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-collapse.collapsing {
        right: -100%;
        transition: height 0s ease;
    }

    .getintouch-wrapper{
        padding: 45px 15px;
    }

    .innerpage-content-wrap{
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .inner-banner-wrapper-div span h2{
        font-size: 32px;
    }

    .visionmission-bottomtext{
        padding: 70px 0px;
    }

    .visionmission-con{
        padding: 45px 25px;
    }

    .visionmission-con h4{
        font-size: 20px;
        text-align: center;
    }

    .services-page .col-lg-4 img{
        height: auto;
        margin-top: 45px;
    }

    .statutory-historic-page{
        padding: 80px 0px;
    }

    .onboaring-style .col-lg-8 h4, 
    .ongoing-style .col-lg-8 h4,
    .ourcommitment-con h4,
    .disclaimer-wrap h4{
        font-size: 26px;
    }

    .ongoing-style,
    .statutory-historic-page{
        margin-top: 70px;
    }

    .ourcommitment-con{
        padding: 45px 20px;
        margin-top: 60px;
    }

    .disclaimer-wrap{
        margin: 70px 0px;
    }
    .onboaring-four-sections{
        margin-bottom: 80px;
    }

}