
/******commom css******/

:root {
    --white: #ffffff;
    --black: #151519;
    --graybg: #f1dede /*#fffbfc*/;
    --pink: #ff59c9;
    --purple: #891785;
    --darkpurple: #2b185a;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 500;
    color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 54px;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-weight: 700;
    font-size: 45px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.3;
    margin: 0;
    font-family: 'Times New Roman';
}

p {
    word-break: break-word;
    margin: 0;
    line-height: 1.4;
}

button,
input,
optgroup,
select,
textarea {
    font-family: "Quicksand", sans-serif;
}

    button:focus {
        outline: none !important;
    }

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
}

.btn {
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Times New Roman';
    transition: all ease-in-out 0.5s;
}

.btn-primary {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    border-width: 2px;
}


    .btn-primary:hover {
        background: #5a0b57;
        border-color: #5a0b57;
        color: var(--white);
    }

    .btn-primary:focus, .btn-primary:active {
        box-shadow: none !IMPORTANT;
        background: #5a0b57;
        border-color: #5a0b57;
        color: var(--white);
    }

.btn-secondary {
    background: var(--darkpurple);
    border-color: var(--darkpurple);
    color: var(--white);
    border-width: 2px;
}

    .btn-secondary:hover {
        background: #2c0c78;
        border-color: #2c0c78;
        color: var(--white);
    }

    .btn-secondary:focus, .btn-secondary:active {
        box-shadow: none !IMPORTANT;
        background: #2c0c78;
        border-color: #2c0c78;
        color: var(--white);
    }

.btn-outline {
    background: none;
    border-color: var(--purple);
    color: var(--purple);
    border-width: 2px;
}

    .btn-outline:hover {
        background: none;
        border-color: var(--purple);
        color: var(--purple);
    }

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    background-color: #5a0b57;
    border-color: #5a0b57;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active {
    background-color: #2c0c78;
    border-color: #2c0c78;
}

/**********common css**********/


/* header */

header {
    width: 100%;
    padding: 10px 0;
    background: #fff;
    transition: all 0.2s ease-in-out 0.2s;
    border-bottom: 2px solid #f1f0ef;
}

    header.fixed {
        -webkit-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        -moz-box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        box-shadow: 0 0 10px 0 rgba(102, 102, 102, 0.3);
        position: fixed;
        background: #fff;
        z-index: 99;
    }


    header .logo img {
        margin: 0;
        display: block;
        max-width: 220px;
    }


.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

header .mainNav {
    display: flex;
    align-items: center;
}

    header .mainNav li {
        display: block;
        list-style-type: none;
        padding: 0 15px;
        position: relative;
    }


        header .mainNav li a {
            color: var(--black);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            width: 100%;
            align-items: center;
            text-transform: none;
            font-size: 15px;
            text-transform: uppercase;
        }

            header .mainNav li a:hover, header .mainNav li.active a {
                color: var(--purple);
            }

        header .mainNav li.header-btn a {
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: space-between;
            grid-column-gap: 8px;
        }

header .header-top-left .menu-toggle {
    display: none;
}

header .mainNav li.mobile-top {
    display: none;
}

header li.mobile-btn {
    display: none;
}

/******header end********/

/**********footer start**************/
.Footer {
    background: #0e0d12;
    color: var(--white);
    padding: 60px 0 0;
}


.footer-sec h4 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px;
}

.footer-sec p {
    font-size: 15px;
    font-weight: 400;
    margin: 0px;
    opacity: 0.8;
}

.footer-sec ul {
    display: flex;
    flex-wrap: wrap;
    grid-column-gap: 10px;
}

    .footer-sec ul li {
        width: calc(50% - 10px);
        padding: 0;
    }

.footer-sec .social {
    display: flex;
    grid-gap: 15px;
    margin: 20px 0 0;
    flex-wrap: nowrap;
}

    .footer-sec .social li {
        width: auto;
    }

        .footer-sec .social li a {
            background: var(--purple);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

.footer-sec a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
}

    .footer-sec a:hover {
        opacity: 1;
    }

.footer-sec .address a, .footer-sec .address p {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    margin-bottom: 10px;
}

.footer-sec .address p {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

    .footer-sec .address a i, .footer-sec .address p i {
        min-width: 18px;
        font-size: 16px;
    }

.footer-sec a.f-logo img {
    border-radius: 10px;
    max-width: 300px;
}

.footer-sec a.f-logo {
    opacity: 1;
}

.footer-sec .address a {
    font-size: 16px;
}

.footer-sec .address {
    margin: 20px 0 0;
}



.copyright {
    background: #18171f;
    position: relative;
    margin-top: 50px;
}

.copyright-inner {
    display: flex;
    align-items: center;
    padding: 15px 0;
    justify-content: center;
    margin-top: 0;
}

    .copyright-inner p {
        font-size: 13px;
        color: var(--white);
        font-weight: 400;
        font-family: times new roman;
        opacity: 0.9;
    }

        .copyright-inner p a {
            color: var(--white);
        }

.scrollTop {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 10px;
    background-color: var(--purple);
    padding: 6px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

    .scrollTop img {
        margin-bottom: 7px;
        max-width: 20px;
    }

/************ footer end****************/







/********************** content css start****************************/

.main-banner {
    background: url(../images/banner.webp) no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
}

    .main-banner .banner-content {
        max-width: 615px;
        background: rgba(255,245,254,0.8);
        padding: 45px;
        float: right;
    }

    .main-banner h1 {
        color: var(--darkpurple);
        margin: 0;
        font-size: 60px;
        text-align: left;
        line-height: 1.1;
    }

        .main-banner h1 span {
            color: var(--purple);
            display: block;
        }

    .main-banner p {
        margin: 15px 0;
        font-size: 17px;
        font-weight: 600;
        line-height: 24px;
    }

    .main-banner .banner-content > div {
        display: flex;
        align-items: center;
        grid-column-gap: 15px;
        margin-top: 30px;
    }

.heading {
    position: relative;
    text-align: center;
    min-height: 100px;
}

    .heading .text {
        position: relative;
        padding-bottom: 20px;
    }

        .heading .text:after {
            content: "";
            background: var(--purple);
            height: 2px;
            width: 100%;
            position: absolute;
            left: 0;
            bottom: 0;
        }

        .heading .text:before {
            content: "";
            background: var(--purple);
            height: 2px;
            width: 70%;
            position: absolute;
            left: 50%;
            bottom: -14px;
            transform: translate(-50%, 0);
        }

    .heading .bullet {
        background: var(--white);
        left: 50%;
        transform: translate(-50%, 0);
        top: 71px;
        position: absolute;
        padding: 0;
        width: 40px;
        z-index: 11;
        height: 22px;
        text-align: center;
    }

        .heading .bullet:before {
            content: "";
            background: var(--purple);
            width: 16px;
            height: 16px;
            transform: translate(0, -50%) rotate(45deg);
            display: block;
            margin: 8px auto 0;
        }




.contentsection {
    padding: 80px 0;
    overflow: hidden;
}

.aboutcontent .block p {
    margin-bottom: 20px;
}

.what-vedanta {
    background: url(../images/what-is-vedant-bg.webp);
    background-size: cover;
    color: var(--white);
    padding: 60px 0;
}

    .what-vedanta h2 {
        margin: 0 0 15px;
    }

    .what-vedanta p {
        margin-bottom: 25px;
    }

.our-program {
    background: var(--graybg);
}

    .our-program .heading + p {
        margin: 20px 0 0;
    }

.program-block {
    border: 1px solid var(--purple);
    border-radius: 10px;
    padding: 15px 15px 30px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    transition: all ease-in-out 0.5s;
	color:var(--black);
}

    .program-block > span {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .program-block > span img {
            max-height: 100%;
            object-fit: contain;
            max-width: 100%;
        }

    .program-block h5 {
        font-weight: 600;
        margin: 15px 0 10px;
    }

.our-program .row {
    margin-bottom: 40px;
}

.program-block:hover {
    background: var(--purple);
    color: var(--white);
}

.our-program .heading .bullet {
    background: var(--graybg);
}

.events-retreats {
    background: url(../images/event-bg.webp) no-repeat;
    background-size: cover;
    color: var(--white);
}

    .events-retreats h2 + p {
        margin: 15px 0 40px;
    }

.event-img img {
    width: 100%;
    border-radius: 5px;
}

.event-block h4 {
    font-size: 24px;
    margin: 0 0 10px;
}

.event-block p {
    margin: 0 0 15px;
}

.event-block span {
    display: flex;
    align-items: center;
    grid-column-gap: 10px;
    font-size: 20px;
    font-family: 'Times New Roman';
    font-weight: 600;
    margin: 0 0 25px;
}

.forum-community {
    background: var(--graybg);
}

    .forum-community .heading .bullet {
        background: var(--graybg);
    }

    .forum-community .heading {
        margin: 0 0 15px;
    }

        .forum-community .heading + p {
            margin: 0 0 30px;
        }

.fc-img img {
    border-radius: 5px;
    width: 100%;
}

.forum-content {
    text-align: left;
}

    .forum-content ul {
        margin: 0 0 15px;
    }

        .forum-content ul li {
            background: url(../images/arrow.webp) no-repeat;
            padding: 0 0 15px 30px;
            background-position: -3px 1px;
            font-size: 18px;
            font-weight: 700;
            background-size: 20px 24px;
        }
section.pdf-section{padding:30px 0;}
.pdf-card {
    margin-bottom: 15px;
}
.pdf-section h2 {
    padding-bottom: 15px;
}
.resources-membership {
    position: relative;
    color: var(--white);
}

    .resources-membership:before {
        content: "";
        background: url(../images/free-resources.webp) no-repeat;
        background-size: cover;
        height: 100%;
        position: absolute;
        width: 50%;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .resources-membership:after {
        content: "";
        background: url(../images/membership-bg.webp) no-repeat;
        background-size: cover;
        height: 100%;
        position: absolute;
        width: 50%;
        right: 0;
        top: 0;
        z-index: -1;
    }

.free-resources, .membership-sign-up {
    padding: 0 30px;
}

.resources-membership h2 {
    margin: 0 0 10px;
}

.resources-membership p {
    margin: 0 0 30px;
    /*font-size: 14px;*/
}

.resources-membership ul {
    display: flex;
    grid-gap: 20px;
    margin-bottom: 30px;
}

    .resources-membership ul li a {
        border: 1px solid var(--white);
        display: block;
        border-radius: 5px;
        color: var(--white);
        font-weight: 700;
        font-size: 18px;
        padding: 20px 10px;
        text-align: center;
        min-width: 140px;
        transition: all ease-in-out 0.5s;
    }

        .resources-membership ul li a img {
            display: block;
            max-height: 40px;
            margin: 0 auto 6px;
        }

        .resources-membership ul li a:hover {
            background: var(--purple);
            border-color: var(--purple);
        }



.recent-articles {
}

    .recent-articles .heading {
        margin-bottom: 10px;
    }

    .recent-articles p {
        margin: 0 0 30px;
    }

    .recent-articles .article-block {
        padding: 0;
        color: var(--black);
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 1px;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid var(--purple);
    }

        .recent-articles .article-block .date {
            position: absolute;
            background: var(--white);
            top: 1px;
            right: 30px;
            padding: 15px 20px 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            font-size: 20px;
            transition: all ease-in-out 0.5s;
        }

        .recent-articles .article-block img {
            height: 210px;
            object-fit: cover;
        }

.article-block .articleDesc {
    padding: 30px 40px;
    background: var(--white);
    text-align: center;
    transition: all ease-in-out 0.5s;
}

.recent-articles .article-block h2 {
    font-size: 24px;
    margin: 0 0 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: 'Quicksand';
    font-weight: 700;
}

.recent-articles .article-block p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-articles .article-block:hover .articleDesc {
    background: var(--darkpurple);
    color: var(--white);
}

    .recent-articles .article-block:hover .articleDesc h2 {
        color: var(--white);
    }

.recent-articles .article-block:hover .date {
    background: var(--darkpurple);
    color: var(--white);
}

.owl-carousel .owl-nav {
    margin: 30px 0 0;
    color: var(--purple);
}

    .owl-carousel .owl-nav button.owl-prev {
        background: url(../images/left-trans-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
        float: left;
    }

    .owl-carousel .owl-nav button.owl-next {
        float: right;
        background: url(../images/right-trans-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
    }

    .owl-carousel .owl-nav button.owl-prev:hover {
        background: url(../images/left-fill-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
        float: left;
    }

    .owl-carousel .owl-nav button.owl-next:hover {
        float: right;
        background: url(../images/right-fill-arrow.webp) no-repeat;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-size: 100% 100%;
    }

.photo-gallery {
    background: var(--graybg);
}

    .photo-gallery .heading .bullet {
        background: var(--graybg);
    }

    .photo-gallery .heading {
        margin-bottom: 10px;
    }

    .photo-gallery p {
        margin: 0 0 30px;
    }
.photo-block{margin:10px;}
.photo-block img {
    border-radius: 5px;
}
.full-width > .container-fluid, .full-width > .container-fluid > .row, .full-width > .container-fluid > .row > .col-lg-12 {
    padding: 0;
    margin: 0;
}

.full-width > .container-fluid, .full-width > .container-fluid > .row, .full-width > .container-fluid > .row > .col-lg-12 {
    padding: 0;
    margin: 0;
}

.breadcrumbs-hold {
    background:#f7eff7;
    padding: 10px 0;
}
.breadcrumbs-hold .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}
.breadcrumbs-hold ul.breadcrumb li {
    font-size: 15px;
    color: var(--black);
}
.breadcrumbs-hold ul.breadcrumb li a {
    color: var(--purple);
}
.breadcrumbs-hold ul.breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}
.banner-mask {
    background-repeat: no-repeat;
    background-position: center;
    height: 280px;
    background-size: cover;
}
.banner-mask.mobile-banner {
    display: none;
}
.blog-list .heading {
    margin-bottom: 30px;
}
.blog-list .article-block {
    margin-bottom: 30px;
}
.innerPage {
    padding: 30px 15px;
}
.innerPage .container-fluid, .innerPage .container-fluid > .row, .innerPage .container-fluid > .row .col-lg-12 {
    padding: 0;
    margin: 0;
}

.innerPage ul {
    padding-left: 20px;
}
.innerPage ul, .innerPage p {
    margin-bottom: 15px;
}
.innerPage ul li {
    list-style: disc outside;
	padding:2px 0;
}
.innerPage .contentsection {
    padding: 0;
}
.innerPage .our-program {
    background: none;
}
.innerPage .our-program .heading .bullet {
    background: var(--white);
}
.innerPage .our-program .row {
    margin-bottom: 0;
}
.innerPage .heading {
    margin-bottom: 30px;
}
.service-details {
    padding: 30px 0;
}
.service-details .heading {
    margin-bottom: 30px;
}
.service-block li {
    list-style: disc;
    margin-left: 45px;
}
.innerPage h2 {
    margin-bottom: 25px;
}
.innerPage .ArticleBlock img {
    display: block;
    margin: 0 auto 30px;
    max-width: 600px;
    width: 100%;
    max-height: 300px;
}
.innerPage p.date {
    opacity: 0.8;
}
/**--.article-detail p {
    text-align: justify;
}--**/
.contact-page {
    padding: 30px 0;
}
.contct-sidebar {
    padding: 20px;
    background: var(--graybg);
    border-radius: 5px;
}
.contct-sidebar .form-control {
    margin-bottom: 10px;
    height: auto;
    min-height: inherit;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
}
.contct-sidebar .g-recaptcha {
    margin-bottom: 10px;
}
.location-list h4 {
    margin-bottom: 10px;
}
.loc-icon {
    display: block;
    margin-bottom: 5px;
    padding-left: 30px;
    padding-top: 0px;
}
.contact-page .adds.loc-icon:before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(/images/loaction-images.png) no-repeat top left !important;
    position: absolute;
    left: 16px;
    top:46px;
}
.email.loc-icon, .loc-icon.phone, .loc-icon.timing {
    background: url(/images/loaction-images.png) no-repeat;
    height: auto;
}
.loc-icon.phone {
    background-position: 0px -28px;
}
.email.loc-icon {
    background-position: 0px -53px;
}
.location-list p a {
    color: var(--purple);
}
a.view-map.btn.btn-primary {
    margin-top: 10px;
}
#modal-location-1 .modal-body iframe {
    width: 100%;
    max-height: 350px;
}
.sign-up-hold a.btn.btn-primary.btn-block {
    color: #fff !important;
}
.container-fluid.t-c-hold h2, .container-fluid.privacy-hold h2 {
    font-size: 34px;
}
/**********************Responsive Css Start*********************/

@media (max-width:1199px) {
    header .logo img {
        max-width: 180px;
    }

    h2 {
        font-size: 38px;
    }

    .heading .bullet {
        top: 62px;
    }

    .main-banner h1 {
        font-size: 50px;
    }

    .main-banner .banner-content {
        max-width: 550px;
        padding: 40px;
    }

    .free-resources, .membership-sign-up {
        padding: 0 20px;
    }

    .resources-membership ul li a {
        font-size: 16px;
        padding: 10px 10px;
        min-width: 120px;
    }
}


@media (max-width:991px) {
    header {
        padding: 0;
    }

        header .NavBar {
            padding: 0;
            position: static;
            border: none;
            max-width: 100%;
            transform: inherit;
        }

        header .main-header .NavBar {
            padding: 10px 0;
        }

        header.fixed {
            position: fixed;
        }

        header .logo img {
            max-width: 150px;
        }

        header .header-top-left {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header .header-top-left .menu-toggle {
                display: block;
                background: none;
                width: auto;
                height: 26px;
                margin: 0;
                color: var(--purple);
            }

        header ul.mainNav li.mobile-top {
            display: block;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 1;
            background: #fff;
        }


        header .mainNav .mobile-top a.logo:hover {
            background: none;
        }

        header ul.mainNav li.mobile-top .m-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

            header ul.mainNav li.mobile-top .m-top-inner a.close {
                float: none;
                width: auto;
                opacity: 1;
                text-shadow: none;
                color: var(--purple);
            }

                header ul.mainNav li.mobile-top .m-top-inner a.close:hover {
                    background: none;
                }

        header ul.mainNav {
            float: none;
            width: 100%;
            display: block;
            position: fixed;
            top: 0;
            background: #fff;
            z-index: 99;
            max-height: 100vh;
            overflow: auto;
            min-height: 100vh;
            left: -100%;
            -moz-transition-property: all;
            -o-transition-property: all;
            -webkit-transition-property: all;
            transition-property: all;
            -moz-transition-duration: 0.3s;
            -o-transition-duration: 0.3s;
            -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
            -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
            transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        }

            header ul.mainNav + ul {
                display: none;
            }

            header ul.mainNav.active {
                left: 0;
            }

            header ul.mainNav li {
                font-size: 16px;
                display: block;
                padding: 8px 20px;
            }

        header .mainNav li:nth-child(2) {
            padding-left: 20px;
        }

        header .mainNav li {
            padding: 15px 20px;
            margin: 0;
            height: auto;
        }

            header .mainNav li a {
                color: #000;
            }

        header .mainNav > li > a i.material-icons {
            display: none;
        }

        header span.submenu-icon {
            display: block;
            height: 24px;
            position: absolute;
            right: 15px;
            top: 8px;
            cursor: pointer;
            z-index: 1;
        }

        header ul.mainNav ul.subMenu {
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            transition-duration: 0.4s;
            transition-duration: 0.2s;
            display: none;
            overflow: visible;
            opacity: 1;
            max-height: inherit;
            border: none;
            margin-top: 10px;
        }


        header .mainNav li:before {
            display: none;
        }

    .main-banner .banner-content {
        float: none;
        margin: 0 auto;
    }

    .aboutcontent {
        text-align: center;
    }

    .what-vedanta {
        text-align: center;
    }

    .event-block span {
        font-size: 20px;
        margin: 0 0 10px;
    }

    .event-block p {
        margin: 0 0 10px;
    }

    .resources-membership:before {
        height: 50%;
        width: 100%;
        left: 0;
        top: 0;
        z-index: -1;
    }

    .resources-membership:after {
        height: 50%;
        width: 100%;
        right: auto;
        top: auto;
        left: 0;
        z-index: -1;
        bottom: 0;
    }

    .resources-membership {
        padding: 0;
    }

    .free-resources, .membership-sign-up {
        padding: 50px 0 50px;
    }

    .footer-sec a.f-logo img {
        max-width: 200px;
    }
	.contct-sidebar {
		margin-top: 20px;
	}
}

@media (max-width:767px) {
    .main-banner {
        padding: 40px 0 40px;
    }

        .main-banner h1 {
            font-size: 40px;
            line-height: 1;
        }

    .contentsection {
        padding: 40px 0;
        overflow: hidden;
    }

    .what-vedanta {
        padding: 40px 0;
    }

    .program-block {
        height: auto;
        margin-bottom: 20px;
    }

    .event-img img {
        width: 100%;
        border-radius: 5px;
        max-height: 300px;
        object-fit: contain;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 34px;
        line-height: 1;
    }

    .fc-img img {
        margin-bottom: 20px;
    }

    .free-resources, .membership-sign-up {
        padding: 40px 0 40px;
    }

    .resources-membership ul {
        grid-gap: 10px;
    }

        .resources-membership ul li a {
            font-size: 14px;
            min-width: 100px;
        }

            .resources-membership ul li a img {
                max-height: 35px;
            }

    .membership-sign-up ul {
        margin-bottom: 0;
    }

    .resources-membership {
        padding: 0;
    }

    .recent-articles .article-block {
        min-height: auto;
    }

    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-prev:hover {
        height: 50px;
        width: 50px;
    }

    .photo-gallery .text-center.mt-5, .recent-articles .text-center.mt-5 {
        margin-top: 35px !important;
    }

    .heading .bullet {
        top: 51px;
    }

    .heading {
        min-height: 90px;
    }

    .forum-community .heading {
        min-height: 110px;
    }

    .heading .text {
        display: block;
    }

    .main-banner .banner-content {
        padding: 20px;
    }

        .main-banner .banner-content > div {
            grid-gap: 10px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

            .main-banner .banner-content > div .btn {
                width: 100%;
            }

    .our-program .row {
        margin-bottom: 20px;
    }

    .our-program .heading + p {
        margin: 0;
    }

    .footer-sec {
        margin-bottom: 20px;
    }

        .footer-sec h4 {
            margin: 0 0 10px;
        }

    .copyright {
        margin-top: 10px;
    }

    .Footer {
        padding: 40px 0 0;
    }
	.banner-mask.desktop-banner {
		display: none;
	}
	.banner-mask.mobile-banner {
		min-height: auto;
		width: 100%;
		display: block;
		background-position: center;
		height: 170px;
		position: relative;
	}
}

@media(max-width:497px) {
    .event-img img {
        max-height: 200px;
    }

    .forum-community .heading .bullet {
        top: 85px;
    }
}
@media(max-width:390px) {
    .heading .text {
        padding-bottom: 20px;
        font-size:28px;
}
.heading .bullet {
    top: 51px;
}
    
}
