:root {
    --fc: black;
    --bg: #b4a8f8;
    --font_heading: 'Allura', cursive;
    --font_text: 'Convergence', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font_text);
    scroll-behavior: auto !important;
}

body {
    color: var(--fc);
    background-color: #F6EBFF;
    font-family: var(--font_text);
}

nav {
    background: rgb(117, 223, 245);
    background: linear-gradient(180deg, #8875f5 0%, #F6EBFF 99%);
}

a {
    -webkit-transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
    transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
}

.org-name {
    font-size: 18px;
}

.navbar-nav {
    /*font-size: 18px;*/
}

.nav-item {
    padding: 5px;
}

.nav-link,
.nav-link:visited,
.nav-link:active,
.nav-link:focus {
    color: var(--fc);
}

.nav-link {
    background-size: 300% 100%;
    transition: all .4s ease-in-out;
    display: flex;
    align-items: center;
    grid-gap: 5px;
}

.nav-link i {
    transition: all .4s ease-in-out;
    display: inline-flex;
}

.nav-link:hover {
    background: rgb(180, 168, 248);
    background: linear-gradient(0deg, rgba(180, 168, 248, 1) 0%, rgba(180, 168, 248, 0.2) 5%);
    background-position: 100% 0;
    color: var(--fc);

    i {
        transform: rotate(180deg);
    }
}

.dropdown-item:hover {
    background-color: #8875f5be;
    color: #fff;
}

.dropdown-menu {
    border: 0;
    box-shadow: 3px 2px rgba(0, 0, 0, 0.24);
    background-color: #F6EBFF;
    border-radius: 5px;
    transition: ease 0.5s;
    padding: 0;
}

.dropdown-menu .dropdown-item {
    padding: 8px 14px;
}

/*Loader styling starts*/
#main {
    position: relative;
}

#spinner-border1 {
    width: 50px;
    height: 50px;
    border: 2px solid #816bfd;
    position: absolute;
    animation: spinner 2s infinite linear alternate;
    border-radius: 10%;
}

#spinner-border2 {
    width: 35px;
    height: 35px;
    border: 2px solid #816bfd;
    position: absolute;
    animation: spinner 1.5s infinite linear alternate;
    border-radius: 10%;
}

#spinner-border3 {
    width: 20px;
    height: 20px;
    border: 2px solid #816bfd;
    position: absolute;
    animation: spinner 1s infinite linear alternate;
    border-radius: 10%;
}

#spinner-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    top: 43%;
}

#spinner-div {
    position: fixed;
    background-color: #f6ebff80;
    height: 100vh;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
}

#spinner-div>div {
    position: fixed;
    width: 100%;
}

@keyframes spinner {
    0% {}

    50% {
        width: 0px;
        height: 0px;
    }

    100% {
        width: 50px;
        height: 50px;
    }
}

/*Loader styling ends*/
.grecaptcha-badge {
    visibility: hidden;
}

.home hr {
    margin-left: 20px;
    margin-right: 20px;
}

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

.hrimg:before {
    content: "";
    width: 180px;
    height: 5px;
    margin-right: 10px;
    margin-top: 5px;
    border-color: #a58251;
    border-style: solid none dashed;
    border-width: 1px 0;
}

.hrimg:after {
    content: "";
    width: 180px;
    height: 5px;
    margin-left: 10px;
    margin-top: 5px;
    border-color: #a58251;
    border-style: solid none dashed;
    border-width: 1px 0;
}

#myBtn {
    display: none;
    position: fixed;
    width: 50px;
    bottom: 10px;
    right: 20px;
    z-index: 99;
    border: none;
    background-color: #555;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: gray;
}

.home .view-more .btn-blue-outline {
    border: 2px solid gray;
    font-family: var(--font_text);
    text-decoration: none;
    color: black;
    display: block;
    padding: 4px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 1000;
    cursor: pointer;
    transition: all 1.0s;
    text-align: center;
    border-radius: 24px 1px 24px 24px;
    width: 160px;
    margin: auto;
}

.home .view-more {
    margin: 40px 0 0;
}

/* .home .about-temp .view-more{
    margin: -50px 30px 50px;
    margin-right: 0;
} */
.home .view-more .btn-blue-outline:hover {
    background-color: gainsboro;
    border-color: gainsboro;
}

.home {
    width: 100%;
    overflow: hidden;
}

/**************************************************************/
.home .slider {
    display: block;
    margin: auto;
    margin-top: 30px;
    width: 80vw;
}

.home .carousel-item {
    min-height: 77vh;
    background-position: center;
    background-size: cover;
}

/**************************************************************/
.home .e-slider {
    width: 90%;
    margin: 20px;
    margin-left: auto;
    margin-right: auto;
}

.home .e-slider h1 {
    text-align: center;
    margin-top: 70px;
    font-family: var(--font_heading);
    font-size: 60px;
    color: var(--fc);
    position: relative;
}

.home .e-slider .card {
    margin: auto;
    width: 75%;
    height: auto;
    background-color: var(--bg);
    color: var(--fc);
}

.home .card>a>img {
    width: 100%;
    height: 220px;
}

.home .card h2 {
    font-family: var(--font_text);
    font-size: 20px;
    font-weight: 600;
}

.home .card p {
    font-family: var(--font_text);
    font-size: 15px;
}

/**************************************************************/
.home .quote {
    background-image: url("/images/chant_bg.jpg");
    height: 50%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.home .quote p {
    padding: 2%;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 3.2vw;
}

.home .quote p:nth-child(2),
.home .quote p:nth-child(3) {
    margin-top: -30px;
}

.home .quote .bg {
    background: rgb(9, 41, 121, 0.5);
}

@media (max-width: 430px) {
    .home .quote p {
        font-size: 3.3vw;
    }
}

.home .about-temp {
    width: 85vw;
    margin: auto;
}

.home .about-temp h1 {
    text-align: center;
    font-family: var(--font_heading);
    font-size: 60px;
    color: var(--fc);
    margin-top: 70px;
}

.home .about-temp .home-temp>img {
    width: 40%;
    padding: 8px;
    margin: 10px;
    height: auto;
    float: left;
}

.home .about-temp .home-temp p {
    font-family: var(--font_text);
    font-size: auto;
    margin: 15px 0;
    margin-top: 50px;
    text-align: justify;
}

/**************************************************************/
.home .acharya .row {
    width: 98vw;
    overflow: hidden;
    margin: 0;
}

.home .acharya .card {
    width: 80%;
    height: auto;
    margin-top: 20px;
    border: none;
    margin: auto;
    background-color: transparent !important;
}

.home .acharya h1 {
    text-align: center;
    font-size: 60px;
    font-family: var(--font_heading);
    color: var(--fc);
}

.home .acharya .card .card-body {
    margin: 0;
}

.home .acharya .card-title {
    font-size: inherit;
    color: var(--fc);
}

.home .acharya .card-title b {
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
}

.home .acharya .card-text {
    color: var(--fc);
    font-weight: 500;
}

.home .acharya .card>img {
    max-width: 90%;
    height: 200px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    clip-path: circle();
    object-fit: cover;
}

/**************************************************************/
.home .donate-slider {
    margin-top: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.home .donate-slider h1 {
    text-align: center;
    margin-top: 70px;
    font-family: var(--font_heading);
    font-size: 60px;
    color: var(--fc);
    position: relative;
}

.home .donate-slider .card {
    margin: auto;
    width: calc(100% - 20px);
    height: auto;
    background-image: url(https://i.pinimg.com/736x/12/af/f4/12aff4c74b6ffa1c1b1a031e4db7cac1.jpg);
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
}

.home .donate-slider .card-body {
    flex: 1 1 auto;
    padding: 11rem 1rem;
}

.home .donate-slider .card h2 {
    font-family: var(--font_text);
    font-size: 20px;
    top: 35%;
    left: 5%;
    right: 5%;
    font-weight: bold;
    text-align: center;
    color: white;
    position: absolute;
}

.home .donate-slider .card p {
    font-family: var(--font_text);
    font-size: 25px;
    top: 50%;
    left: 5%;
    right: 5%;
    position: absolute;
    text-align: center;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

/**************************************************************/
.video_cow video#video-field {
    max-width: 100%;
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.video_cow {
    margin-top: 60px;
    margin-bottom: 60px;
}

.video_cow .row {
    margin-top: 40px;
}

/**************************************************************/
.home .subscribe form {
    font-family: var(--font_text);
    display: block;
    margin-bottom: 70px;
}

.home .subscribe .container {
    text-align: center;
}

.home .subscribe .container h2 {
    font-size: 35px;
    font-family: var(--font_heading);
    font-size: 60px;
    text-align: center;
}

.home .subscribe input[type=email] {
    width: 70%;
    padding: 13px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid;
    box-sizing: border-box;
    outline: 0;
    background-color: transparent;

    &:focus {
        outline: 0;
        box-shadow: none;
        border-color: #000C77;
    }
}

.home .subscribe #subscribe[type=submit] {
    background-color: hsl(0, 0%, 24%);
    color: white;
    height: 40px;
    border: none;
    transition: all 350ms ease-in-out;
}

.home .subscribe #subscribe[type=submit]:hover {
    background-color: #000C77;
}

/**************************************************************/

.footer {
    background-color: #000C77;
    color: white;
}

/**************************************************************/

/**************************************************************/
@media (max-width: 1920px) and (min-width: 1440px) {
    .home .card>a>img {
        width: 100%;
        height: 320px;
    }

    .home .donate-slider .card {
        margin: auto;
        height: 420px;
        background-image: url(https://i.pinimg.com/736x/12/af/f4/12aff4c74b6ffa1c1b1a031e4db7cac1.jpg);
        color: white;
    }

    .home .donate-slider .card-body {
        flex: 1 1 auto;
        padding: 11rem 1rem;
    }

    .home .donate-slider .card h2 {
        font-family: var(--font_text);
        font-size: 20px;
        top: 35%;
        left: 5%;
        right: 5%;
        font-weight: bold;
        text-align: center;
        color: white;
        position: absolute;
    }

    .home .donate-slider .card p {
        font-family: var(--font_text);
        font-size: 25px;
        top: 50%;
        left: 5%;
        right: 5%;
        position: absolute;
        text-align: center;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }
}

@media (max-width: 1440px) and (min-width: 780px) {

    .navbar-nav,
    .navbar-brand {
        font-size: 14px;
    }

    .drpdwn:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-menu,
    .dropdown-menu>li {
        margin-top: -5px;
    }

    .home .donate-slider {
        margin-top: 30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 769px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .navbar-brand>img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .offcanvas-header {
        display: block;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 100%;
        width: 30%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        background-color: #8875f5;
        transition: all 0.2s linear;
        z-index: 9999999;
        display: block !important;
    }

    .open {
        transform: translateX(-100%)
    }

    .btn-close {
        background-color: transparent;
        border-color: transparent;
        color: white;
    }
}

@media (max-width: 600px) {
    .navbar-collapse {
        width: 42%;
    }
}

@media (max-width: 470px) {
    .navbar-collapse {
        width: 65%;
    }
}

@media (min-width: 481px) and (max-width: 779px) {
    .navbar-brand>img {
        height: 60px;
    }

    .home .slider {
        margin: auto;
        display: block;
        margin-top: 30px;
        width: 90vw;
    }

    .home .carousel-item {
        min-height: 60vh;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .hrimg:before {
        content: "";
        width: 120px;
        height: 5px;
        margin-right: 10px;
        margin-top: 5px;
        border-color: #a58251;
        border-style: solid none dashed;
        border-width: 1px 0;
    }

    .hrimg:after {
        content: "";
        width: 120px;
        height: 5px;
        margin-left: 10px;
        margin-top: 5px;
        border-color: #a58251;
        border-style: solid none dashed;
        border-width: 1px 0;
    }

    .my-navbar-content {
        font-size: 17px;
        font-weight: 500;
    }

    .navbar-nav {
        text-align: center;
    }

    .home .about-temp .home-temp>img {
        margin: auto;
        width: 100%;
        height: auto;
        float: left;
    }

    .home .acharya .card {
        width: 80%;
        height: auto;
        margin: auto;
        margin-top: 20px;
    }

    .home .donate-slider {
        margin-top: 30px;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }

    .home .donate-slider .card {
        margin: auto;
        height: auto;
        background-image: url(https://i.pinimg.com/736x/12/af/f4/12aff4c74b6ffa1c1b1a031e4db7cac1.jpg);
        color: white;
    }
}

@media only screen and (max-width: 767px) {

    .home .subscribe input[type=email] {
        width: 100%;
    }


    .home .about-temp .home-temp>img {
        float: none;
        padding: 0;
    }

    .home .about-temp .home-temp p {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .home .e-slider h1 {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 992px) {
    .navbar {
        padding: 20px 0;
        height: auto !important;
    }

    .sticky-top {
        border-bottom: 1px solid #8875f5;
    }

    .nav-link,
    .nav-link:visited,
    .nav-link:active,
    .nav-link:focus {
        color: #fff;
    }

    #nav-close {
        color: #fff;
    }

    .navbar-nav .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-gap: 10px;
    }

    .navbar-nav .nav-link.show {
        color: #fff;
    }

    .navbar-nav .nav-link i {
        transition: all 350ms ease-in-out;
    }

    .navbar-nav .nav-link.show i {
        transform: rotate(-180deg);
    }

    .nav-link:hover {
        color: #fff;
    }
}


@media (max-width: 480px) {
    .navbar-brand>img {
        height: 50px;
    }
}

@media (max-width: 1025px) and (min-width: 768px) {
    .home .about-temp .home-temp p {
        margin-top: 12px;
    }
}

@media (min-width: 769px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

@media (min-width: 481px) and (max-width: 766px) {
    .home .acharya .card {
        width: 60%;
        height: auto;
        margin: auto;
        margin-top: 20px;
    }
}

@media (max-width: 400px) {
    .org-name {
        font-size: 14px;
    }

    .navbar-brand>img {
        height: 45px;
    }

    .navbar-toggler {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .home .slider {
        display: block;
        margin: auto;
        margin-top: 30px;
        width: 90vw;
    }

    .home .carousel-item {
        min-height: 40vh;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .hrimg:before {
        content: "";
        width: 80px;
        height: 5px;
        margin-right: 10px;
        margin-top: 5px;
        border-color: #a58251;
        border-style: solid none dashed;
        border-width: 1px 0;
    }

    .hrimg:after {
        content: "";
        width: 80px;
        height: 5px;
        margin-left: 10px;
        margin-top: 5px;
        border-color: #a58251;
        border-style: solid none dashed;
        border-width: 1px 0;
    }

    #home-page-slider>.carousel-inner {
        height: auto;
    }

    .home .about-temp {
        margin: 20px;
    }

    .home .about-temp .home-temp>img {
        width: 95%;
        height: auto;
        float: left;
    }

    .home .donate-slider {
        margin-top: 30px;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 360px) and (min-width: 250px) {
    .home .card>a>img {
        width: 100%;
        height: 140px;
    }

    .home .donate-slider {
        margin-top: 30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .home .donate-slider .card {
        margin: auto;
        background-image: url(https://i.pinimg.com/736x/12/af/f4/12aff4c74b6ffa1c1b1a031e4db7cac1.jpg);
        color: white;
    }
}

/* ******************************************************************************************************************
About Temple
****************************************************************************************************************** */
.at h2 {
    font-family: var(--font_heading);
    font-size: 60px;
    text-align: center;
}

.drpdwn:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu {
    margin-top: -5px;
}

.my-navbar-content {
    color: var(--fc);
    font-size: 18px;
    margin-right: 15px;
}

.dropdown-menu[data-bs-popper] {
    top: auto;
    left: auto;
    margin-top: 0.125px;
}

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

.at .main-container img {
    margin-top: 10px;
    width: 60%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
}

.at .main-container .about-temp {
    text-align: justify;
    font-family: var(--font_text);
    font-size: 16px;
    margin-left: 130px;
    margin-right: 130px;
    margin-bottom: 40px;
}

.at .main-container p {
    font-size: 30px;
    text-decoration: underline;
    text-align: center;
    font-weight: 1000;
}

.at .main-container .history {
    font-size: 23px;
    text-align: center;
    font-weight: 700;
}

.at .main-container hr.n2 {
    border-top: 3px dashed;
    color: brown;
}

.at .main-container .btn-outline-dark {
    margin: 30px;
}

.at .main-container .btn-outline-dark:hover {
    background-color: gray;
}

@media (max-width: 780px) and (min-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler .navbar-toggler-icon {
        border-radius: 2px;
    }

    .at .main-container img {
        margin-top: 10px;
        width: 70%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .at .main-container .about-temp {
        text-align: justify;
        font-family: var(--font_text);
        font-size: 16px;
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .at .main-container img {
        margin-top: 10px;
        width: 80%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .at .main-container .about-temp {
        text-align: justify;
        font-family: var(--font_text);
        font-size: 16px;
        margin-left: 40px;
        margin-right: 40px;
    }
}

/* ******************************************************************************************************************
Founder Acharya
****************************************************************************************************************** */
.f-acharya h2 {
    font-family: var(--font_heading);
    font-size: 60px;
    text-align: center;
    color: var(--fc);
}

.f-acharya .fa-container img {
    margin-top: 10px;
    width: 60%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
}

.f-acharya .fa-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    margin: 0 auto;
    max-width: 650px;
    min-height: 360px;
}

.f-acharya .fa-container .about-acharya {
    text-align: justify;
    font-family: var(--font_text);
    font-size: 16px;
    margin-left: 120px;
    margin-right: 120px;
}

.f-acharya .fa-container .about-acharya {
    margin-bottom: 40px;
}

.f-acharya .fa-container hr.n2 {
    border-top: 3px dashed;
    color: brown;
}

@media (max-width: 780px) and (min-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler .navbar-toggler-icon {
        border-radius: 5px;
        width: 1.5em;
        height: 1.5em;
        /* background-color: green; */
    }

    .navbar-nav {
        text-align: center;
    }

    .f-acharya .fa-container img {
        margin-top: 10px;
        width: 70%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .f-acharya .fa-container .about-acharya {
        text-align: justify;
        font-family: var(--font_text);
        font-size: 16px;
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .f-acharya .fa-container img {
        margin-top: 10px;
        width: 70%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .f-acharya .fa-container .about-acharya {
        text-align: justify;
        font-family: var(--font_text);
        font-size: 16px;
        margin-left: 30px;
        margin-right: 30px;
    }
}

/* ******************************************************************************************************************
Event Page
****************************************************************************************************************** */
.event h1 {
    color: var(--fc);
    font-family: var(--font_heading);
    font-size: 60px;
    text-align: center;
    margin-top: 30px;
}

.event .card {
    margin: auto;
    width: 100%;
    height: 100%;
}

.event-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.event-row .card-title {
    margin-bottom: 0;
}

.event .card a {
    position: relative;
    padding-top: 57.97%;
    display: flex;
    width: 100%;
    background-color: #000C77;
}

.event a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
    object-fit: cover;
    color: #fff;
}

.event .card-body {
    font-size: 17px;
    text-align: center;
}

.event .card-text {
    font-size: 15px;
    color: brown;
    font-weight: 550;
}

.event .box-shadow {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

/* ******************************************************************************************************************
Second - Event Page
****************************************************************************************************************** */
.s-event h2 {
    font-family: var(--font_heading);
    text-align: center;
    font-size: 60px;
    color: var(--fc);
}

.s-event .container img {
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    height: 600px;
    transform: translate(-10px);
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
}

.s-event .event-desc {
    font-family: var(--font_text);
    text-align: justify;
}

.s-event hr.n1 {
    border-top: 1px dashed brown;
    margin-bottom: -10px;
}

.s-event hr.n2 {
    height: 2px;
    color: brown;
    background-color: brown;
}

@media (max-width: 1180px) {
    .s-event .container img {
        display: block;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        height: 510px;
        transform: translate(-10px);
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }
}

@media (max-width: 781px) and (min-width: 482px) {
    .navbar-nav {
        text-align: center;
    }

    .s-event .container img {
        display: block;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        height: 350px;
        transform: translate(-10px);
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }
}

@media (max-width: 481px) {
    .navbar-nav {
        text-align: center;
    }

    .s-event .container img {
        display: block;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        height: 200px;
        transform: translate(-10px);
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }
}

/* ******************************************************************************************************************
Blog Page
****************************************************************************************************************** */
.blog h1 {
    font-family: var(--font_heading);
    font-size: 60px;
    color: var(--fc);
    margin-top: 10px;
    text-align: center;
}

.blog .row {
    margin: 5%;
    width: 70%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .05);
    border-radius: 0.5rem;
}

.blog .blog-con>img {
    margin: 2%;
    margin-left: 0;
    width: 30%;
    height: auto;
    float: left;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
}

.blog .card-body {
    margin: 1%;
    line-height: 2;
}

.blog .card-title {
    color: purple;
    font-size: 24px;
}

.blog .card-text {
    text-align: justify;
    font-size: 16px;
}

@media (max-width: 780px) and (min-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler .navbar-toggler-icon {
        border-radius: 2px;
    }

    .blog .blog-con>img {
        margin: 2%;
        margin-left: 0;
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .blog .card-body {
        margin: 1%;
        margin-top: 30px;
        line-height: 2;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .blog .blog-con>img {
        margin: 5%;
        margin-left: 0;
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .blog .card-body {
        margin-top: 10px;
        line-height: 2;
    }
}

/* ******************************************************************************************************************
Second - Blog Page
****************************************************************************************************************** */
.se-blog h1 {
    font-family: var(--font_heading);
    font-size: 60px;
    color: var(--fc);
    margin-top: 10px;
    text-align: center;
}

.se-blog .s-blog img {
    display: block;
    margin: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
    transform: translate(-10px);
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
}

.se-blog .blog-desc {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    color: blue;
    text-align: justify;
    font-size: 16px;
}

.se-blog .intro span {
    color: red;
}

@media (max-width: 780px) and (min-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-toggler .navbar-toggler-icon {
        border-radius: 2px;
    }

    .se-blog .s-blog>img {
        display: block;
        margin: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 75%;
        height: auto;
        transform: translate(-10px);
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .se-blog .s-blog .blog-desc {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        color: blue;
        text-align: justify;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        text-align: center;
    }

    .se-blog .s-blog>img {
        display: block;
        margin: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 80%;
        height: auto;
        transform: translate(-10px);
        border-radius: 0.5rem;
        box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
    }

    .se-blog .s-blog .blog-desc {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        color: blue;
        text-align: justify;
        font-size: 16px;
    }
}

/* ******************************************************************************************************************
Contact Page
****************************************************************************************************************** */
.con h1 {
    font-family: var(--font_heading);
    font-size: 60px;
    text-align: center;
    margin-top: 30px;
}

.con h2 {
    font-family: var(--font_text);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.con.hrimg {
    margin-bottom: 30px;
}

.con .cont {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.con .row {
    margin: 0;
}

.cont-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    margin-top: 30px;
}

.con .card {
    margin: auto;
    padding: 0;
    width: 100%;
    height: 100%;
}

.con .card-body {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;

    p {
        &:last-child {
            margin-bottom: 0;
        }
    }
}

.con #card-title {
    font-family: var(--font_text);
    font-size: 60px;
    font-size: 20px;
    color: black;
}

.con #card-content {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.con .box-shadow {
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}

.maps {
    margin-top: 50px;
}

.con #main-map {
    width: 100%;
    height: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }
}

/*************************************/
@media (max-width: 768px) {
    .s-event h2 {
        font-size: 40px;
    }
}

@media (max-width: 425px) {
    .s-event h2 {
        font-size: 30px;
    }
}

/************************************/
.act-heading {
    font-family: var(--font_heading);
    font-size: 50px;
}

@media (min-width: 768px) {
    .activity-content {
        padding-top: 20px;
    }
}

@media (max-width: 800px) {
    .side-btns {
        display: none;
    }

    .activity-content {
        padding: 10px;
    }
}

.activity-btn {
    background: rgb(206, 206, 206);
    border: 2px solid #4634A5;
    font-weight: bold;
    border-radius: 20px 20px 20px 0;
}

.activity-btn:hover {
    background-color: #8875f5;
}

.modal-header {
    background-color: #8875f5;
}

.modal {
    font-family: 'Noto Sans', sans-serif;
}

.donate-btn {
    background-color: #b4a8f8;
}

.donate-btn:hover {
    background-color: #8875f5;
}

input,
input:focus {
    border-color: #8875f5;
}

textarea,
.textarea:focus {
    border: 2px solid #8875f5;
}

span>input {
    margin-top: 10px;
}

/*Donation 2 added by Nihal*/
.donation2 .donation-desc h1 {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}

.bread-crumb a {
    color: black;
}

.donation2 .donation-content h3 {
    font-weight: bold;
}

.donation2 .row {
    margin-bottom: 20px;
}

.donation2 .row img {
    text-align: right;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px 3px rgba(0, 0, 0, .3);
}

/* .donation2 input[type=number]{
    /* width: 130px;
    border: 2px solid blue;
    border-radius: 5px;
} */
.donation2 .donation-desc .donation-content {
    font-size: 16px;
}

.donation2 .tab {
    font-weight: bold;
}

.donation2 .tab .amount {
    width: 30%;
}

.donation2 .tab .desc {
    width: 50%;
}

.donation2 .tab button {
    background: #000C77;
    width: 130px;
    height: 40px;
    cursor: pointer;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .donation2 button {
        width: 70px;
        font-size: 12px;
        border-radius: 10px
    }
}

@media (max-width: 420px) {
    .donation2 .tab button {
        width: 70px;
    }

    .donation2 .tab .desc {
        width: 30%;
    }
}

/*******************************************************/
.confirm-data-table {
    margin-top: 40px;
}

.modal-header {
    background-color: #000C77;
    color: white;
}

.modal-footer button,
footer a {
    background-color: #000C77;
    color: white;
}

@media (max-width:767px) {
    .confirm-data-table tr {
        border: 0;
    }

    .confirm-data-table td {
        display: block;
        position: relative;
        padding-left: 30%;
        border: 1px solid black;
        overflow-wrap: break-word;
    }

    .confirm-data-table td:before {
        content: attr(data-title);
        position: absolute;
        left: 1px;
        font-weight: bold;
    }

    .tr-dnt-show {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .confirm-data-table .tr-dnt-show {
        background-color: #b4a8f8;
        text-align: center;
    }

    .confirm-data-table td {
        border: 3px solid black;
    }
}

@media (max-width: 430px) {
    .confirm-data-table {
        font-size: 14px;
    }

    .confirm-data-table td {
        padding-left: 35%;
    }
}

/***************************************/
/*Daily Darshan*/
/***************************************/
.dd input {
    border: 1px solid #8875f5;
}

.dd .box input[type=button] {
    background-color: #8875f5;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 5px;
}

.dd input {
    padding: 5px;
}

.dd input[type=date] {
    height: 36px;
}

.slick-dots {
    margin-top: 30px;
}



.section-row {
    padding: 50px 0;
}


.gausala-videos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;


    .gausala-videos {
        a {
            position: relative;
            padding-top: 66.667%;
            display: flex;
            width: 100%;
            background-color: #8875f5;
        }

        video,
        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}



.img-hover {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.img-hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.img-hover:hover::after {
    opacity: 1;
    visibility: visible;
}

.img-hover:hover img {
    transform: scale(1.03);
}

.img-hover img {
    transition: transform 0.3s ease-in-out;
    width: 100%
}


.section-title {
    margin-bottom: 40px;

    &.center {
        text-align: center;
    }

    h2 {
        margin-bottom: 30px;
        font-family: var(--font_heading);
        font-size: clamp(2.5rem, 3.125vw, 3.75rem);
    }

    p {
        margin-bottom: 10px;
    }

    .hrimg {
        margin-top: 20px;
    }
}


.f-acharya,
.at,
.event,
.activities-main-sec,
.dd,
.blog-main-sec,
.con {
    margin-top: 50px;
}

footer .contact-us-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.donate-slider .hrimg {
    margin-bottom: 40px;
}


/*==========================================================================================================*/

@media only screen and (max-width: 1023px) {

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

    .gausala-videos-row {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .video_cow {
        margin: 40px 0;
    }

    .section-row {
        padding: 40px 0;
    }

    .section-title h2 {
        margin-bottom: 20px;
    }

    p {
        font-size: 14px;
    }

    .cont-row {
        grid-template-columns: 1fr 1fr;
    }

    .f-acharya .fa-container iframe {
        width: calc(100% - 20px);
    }

    .f-acharya .fa-container .about-acharya {
        margin-left: 0;
        margin-right: 0;
    }

    .f-acharya .fa-container {
        margin-top: 30px;
    }

    .donate-slider .hrimg {
        margin-bottom: 30px;
    }
}


/*==========================================================================================================*/
@media only screen and (max-width: 991px) {

    .map-sec {
        width: 100%;
    }

    .map-sec iframe {
        min-height: 300px;
    }

}


/*==========================================================================================================*/
@media only screen and (max-width: 767px) {

    .cont-row {
        display: flex;
        flex-direction: column;
    }


    .con #main-map {
        height: 400px;
    }

    .home .donate-slider h1 {
        margin-top: 50px;
    }
}

/*==========================================================================================================*/
@media only screen and (max-width: 567px) {.f-acharya .fa-container iframe {min-height: 300px;}}

/*==========================================================================================================*/
@media only screen and (max-width: 479px) {

    .event-row,
    .gausala-videos-row {
        display: flex;
        flex-direction: column;
    }

    .home .quote {
        position: relative;
        height: 100%;
        min-height: 250px;
    }

    .home .quote .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .video_cow video#video-field {
        height: 200px;
    }

    .map-sec iframe {
        min-height: 200px;
    }

    .footer .list-inline {margin-bottom: 0;}
}