@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;500;600;700;800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
:root{
    /* 'Work Sans', sans-serif */
    /* 'Montserrat', sans-serif */
    /* 'Roboto', sans-serif */
    /* 'DM Sans', sans-serif */
    /* 'Inter', sans-serif */
    --font-family-head: 'Inter', sans-serif;
    --font-family-text: 'Inter', sans-serif;

    --color-one: 238, 84, 53;
    --color-two: 252, 175, 23; /* 254, 215, 0 */
    
    --golden-light: 255, 226, 121;
    --golden-center: 254, 215, 0;
    --golden-dark: 225, 178, 39;

    --color-primary: 254, 215, 0;

    --font-size: '1rem';
}
*{
    -webkit-font-smoothing: antialiased;
}
body{
    font-family: var(--font-family-text);
    font-weight: 400;
    text-align: justify;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: var(--font-family-head)!important;
}

/* ==================== Header / Navbar ==================== */
/* LOGO */
.main-logo{
    /* width: 160px; */
    width: 132px;
}
.ft-logo{
    width: 100%;
    max-width: 150px;
}
.logo-text{
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    padding: 0;
}
.logo-text span{
    display: block;
}
.logo-text span:first-child{
    color: rgba(var(--color-one), 1);
    font-weight: 600;
    font-size: 1.15rem;
}
.logo-text span:last-child{
    color: rgba(var(--color-two), 1);
    font-weight: 600;
    font-size: 1.26rem;
    letter-spacing: .19rem;
}
/* Header */
#main-header {
    position: fixed;
    background: rgba(255,255,255, 1);
    top: 0;
    width: 100%;
    z-index: 1024;
    transition: all 300ms ease-in-out;
    /* box-shadow: 0 1px 25px rgba(0,0,0, .1); */
}
#main-header.hide {
    top: -72px;
}
/* navigation */
nav.navbar{
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 70px;
    background-color: transparent;
}
nav.navbar::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background: transparent linear-gradient(115deg, rgba(var(--golden-dark), 1) 6%, rgba(var(--golden-light), 1) 60%, rgba(var(--golden-center), 1) 100%) 0% 0% no-repeat padding-box;;
    bottom: -2px;
    left: 0;
}
.navbar .navbar-toggler{
    color: var(--bs-dark);
    box-shadow: none!important;
    border: none!important;
    outline: none!important;
    padding: .5rem 0rem;
    font-size: 1.8rem;
}
nav.navbar .navbar-nav > .nav-item > .nav-link{
    color: var(--bs-dark);
    font-weight: 500;
    font-size: .9rem;
    outline: none!important;
    transition: all 300ms ease;
    text-align: left;
    position: relative;
}

nav.navbar .navbar-nav > .nav-item > .nav-link:hover,
nav.navbar .navbar-nav > .nav-item > .nav-link:focus{
    color: rgb(var(--color-two));
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0;
    vertical-align: middle;
    border:0px;
    content: "\F229";
    font-family: bootstrap-icons!important;
    font-style: normal;
    font-weight: 400!important;
    font-size: 10px;
}
.dropdown .dropdown-menu{
    /* border: 0; */
    position: relative;
    /* max-width: 250px; */
    margin-top: 0px;
    box-shadow: 0 5px 30px 5px rgb(66 71 76 / 10%);
}
.dropdown .dropdown-menu .dropdown-item{
    padding: 8px 15px;
    font-weight: 600;
    white-space: break-spaces;
    font-size: smaller;
    transition: all 300ms ease;
    text-align: left;
}
.dropdown .dropdown-menu .dropdown-item:hover{
    background-color: rgba(var(--color-two), 1);
    color: rgba(255, 255, 255, 1);
}
.dropdown .dropdown-menu .dropdown-item.active,
.dropdown .dropdown-menu .dropdown-item:focus{
    background-color: rgba(var(--color-primary), .8);
    color: #FFF;
}
nav.navbar .dropdown-toggle::after{
    display: none!important;
}
.dropdown .dropdown-menu::before{
    content: "";
    position: absolute;
    bottom: calc(100% - 6px);
    left: 1.5rem;
    background-color: #FFF;
    width: 14px;
    min-height: 14px;
    border-top-left-radius: 4px;
    border-left: 1px solid rgba(0,0,0,.20);
    border-top: 1px solid rgba(0,0,0,.20);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /* border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid rgb(255, 255, 255); */
}
.dropdown .dropdown-menu.dropdown-menu-end::before{
    left: auto;
    right: 1.5rem;
}
.close-btn{
    color: rgba(var(--color-text-dark), 1);
    position: absolute;
    top: 22px;
    left: 15px;
}
.header-back-cover{
    position: relative;
    width: 100%;
    padding-bottom: 70px;
}
/* ==================== END - Header / Navbar ==================== */

/* Wrapper */
#content-wraper{
    position: relative;
}


/* Activities */
.card.activiti{
    background-color: #FFFFFF;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    border: none;
    transition: all 300ms ease;
    margin-bottom: 1.5rem;
    text-align: left;
}
.card.activiti:hover{
    background-color: #FFFFFF;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.card.activiti a{
    text-decoration: none!important;
    color: inherit;
}
.card.activiti .img{
    width: 65px;
    height: 65px;
}
.card.activiti .img > img{
    width: 65px;
}
.card.activiti .title{
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1.15rem;
}
.card.activiti .text{
    font-weight: 400;
    font-size: 85%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0px;
    text-align: left;
}



/* Daily Darsh Gallery */
.daily-darshan-gallery{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    /* height: 55%; */
    /* gap: 15; */
    flex-wrap: wrap;
    /* min-height: 500px; */
}
.daily-darshan-gallery .ddg-item{
    padding: .75rem;
}
.daily-darshan-gallery .dd-p{
    position: relative;
    padding-bottom: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f2f2f2;
    background-position: center;
    background-size: cover;
}
.daily-darshan-gallery .dd-1{
    width: 35%;
    height: 100%;
}
.daily-darshan-gallery .dd-5{
    width: 25%;
    height: 100%;
}
.daily-darshan-gallery .dd-grp{
    width: 40%;
    height: 100%;
}
.daily-darshan-gallery .dd-grp > .dd-gp-flex{
    display: flex;
    flex-wrap: wrap;
}
.daily-darshan-gallery .dd-2,
.daily-darshan-gallery .dd-3{
    width: 50%;
    height: 50%;
}
.daily-darshan-gallery .dd-4{
    width: 100%;
    height: 50%;
}
.daily-darshan-gallery .dd-4 .dd-p{
    padding-bottom: 35%;
}
.daily-darshan-gallery .dd-5 .dd-p{
    padding-bottom: 142%;
}

/* doante card */
.card.donate-slider{
    border: none;
    border-radius: 10px;
    max-width: 360px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
    margin-left: auto;
    overflow: hidden;
}


/* daily quotes */
.daily-quotes{
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
}
.daily-quotes .dq-image{
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-position: center top;
    background-color: #f2f2f2;
    background-size: cover;
    background-image: url('../images/shrila-prabhupada-portrait.jpg');
}
.daily-quotes .dq-text{
    padding: .75rem;
    height: 100%;
    background-color: rgba(var(--color-two), 1);
}

/* Social icons */
.social-icons{
    position: relative;
}
.social-icons ul{
    position: relative;
    padding-left: 0px;
    list-style: none;
}
.social-icons ul > li{
    display: inline-block;
    margin-right: .3rem;
}
.social-icons ul > li > .link{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    font-size: 1.3rem;
    background: transparent linear-gradient(94deg, rgba(var(--golden-light), 1) 0%, rgba(var(--golden-dark), 1) 60%, rgba(var(--golden-center), 1) 130%) 0% 0% no-repeat padding-box;
    color: var(--bs-dark);
    transform: scale(.9);
    transition: all 300ms ease-in-out;
    text-decoration: none!important;
}
.social-icons ul > li > .link:hover{
    transform: scale(1);
}
.social-icons ul > li > .link > i{
    line-height: 1;
}

/* -- Footer -- */
footer{
    position: relative;
    color: rgba(255, 255, 255, 1);
}
.ft-title{
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}
 /* Footer Links */
.links{
    position: relative;
}
.links ul{
    position: relative;
    padding-left: 15px;
    list-style: circle;
}
.links ul > li{
    margin-bottom: .3rem;
}
.links ul > li > .link{
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    transition: all 300ms ease;
}
.links ul > li > .link.link:hover{
    text-decoration: none;
    color: rgba(var(--golden-light), 1);
}

/* footer form */
.ft-subscribe .form-control{
    background-color: rgba(255, 255, 255, .1);
    color: #FFFFFF;
    box-shadow: none;
    outline: none;
}
.ft-subscribe .form-control:focus{
    border-color: rgb(var(--golden-light));
}


/* Other payment table */
.other_payment .table th{
    font-weight: 600;
}
.other_payment .table th:first-child,
.other_payment .table tr:first-child{
    padding-left: 0px;
}

.other_payment .table tr td{
    color: inherit;
    transition: all 200ms ease;
}
.other_payment .table tr:hover td:last-child{
    color: rgba(var(--color-one), 1);
}

/* Copy css */
.copy-circle{
    cursor: pointer;
    position: relative;
    display: inline-flex;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: transparent;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease;
}
.copy-circle i{
    font-size: .8rem;
    line-height: 1;
}
.copy-circle:hover{
    border: 1px solid rgba(var(--color-two), 0.3);
    background-color: rgba(0, 0, 0, 0.2);
}


/* feed card */
.card.feed{
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
}
.card.feed,
.card.feed .card-footer{
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.card.feed .card-footer > .donate-btn{
    height: 45px;
    line-height: 33px;
}

/* Form */
.hkm-form .form-label{
    color: #454545;
    margin-bottom: 3px;
    line-height: 1.5;
    font-weight: 400;
}
.hkm-form .form-label span{
    color: var(--bs-danger);
}
.hkm-form .form-label small{
    color: #898989;
    font-size: 80%;
}
.hkm-form .form-control{
    outline: none;
    box-shadow: none;
    padding: .5rem .75rem;
}
.hkm-form .form-control:focus{
    border-color: rgba(var(--golden-center), 1);
}
.hkm-form .form-check-input:checked{
    background-color: rgba(var(--golden-center), 1);
    border-color: rgba(var(--golden-dark), 1);
}
.form-check-input:focus {
    border-color: rgba(var(--golden-light), 1);
    box-shadow: 0 0 0 0.25rem rgba(var(--golden-light), .2);
}
.hkm-form .form-check-label{
    font-weight: 400;
}

::-webkit-input-placeholder { /* Edge */
    color: rgb(191, 191, 191)!important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgb(191, 191, 191)!important;
}
::placeholder {
    color: rgb(191, 191, 191)!important;
}


/* TEAM CARD */
.card.team .card-header{
    display: flex;
    justify-content: start;
    align-items: center
}
.card.team .image{
    max-width: 70px;
    margin-right: 1rem;
}
.card.team .image > .d-picture{
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f2f2f2;
    background-position: center;
    background-size: cover;
    background-image: url('../images/team/avatar.jpg');
    transform: scale(1);
    transition: all 300ms ease;
}
.card.team .image > .d-picture:hover{
    transform: scale(1.5);
}

/* Half image card */
.card.horizontal{
    border-radius: 15px;
    overflow: hidden;
}
.card.horizontal .image{
    position: relative;
    /* height: 100%; */
    width: 40%;
    background-color: #f2f2f2;
    background-position: center;
    background-size: cover;
    background-image: url('../images/diety.jpg');
}
.card.horizontal .content{
    width: 60%;
    padding: 1.5rem;
}

/* accordians */
.page-accordions .accordion-header{
    cursor: pointer;
    color: rgba(var(--color-two), 1);
    transition: all 300ms ease;
}
.page-accordions .accordion-header.collapsed{
    color: var(--bs-dark);
}


.yt-frame{
    position: relative;
    width: 100%!important;
    height: 400px;
}


/* contact form */
.contact-card,
.gmap{
    border-radius: .8rem;
    overflow: hidden;
}
.contact-link{
    text-decoration: none!important;
    color: #443217;
}
.gmap iframe{
    display: block;
    width: 100%;
    height: 325px;
}

/* WhatsApp Chat Button */
.wa-chat-btn {
    width: 50px;
    height: 50px;
    left: 20px;
    bottom: 20px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display:  flex;
    justify-content: center;
    align-items: center;
}
.wa-chat-btn i{
    font-size:1.8rem;
    line-height:1;
}
.wa-chat-btn:before {
    position: absolute;
    content: " ";
    z-index: -1;
    top: -15px;
    left: -15px;
    background-color: #10b418;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: .6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: .3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}
@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: .6;
    }
    75% {
        transform: scale(0.9);
        opacity: .3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Dynamic Content Style */
.text_content_dynamic table{
    width: 100%;
    margin-bottom: 1rem;
    vertical-align:middle;
    border-color: var(--bs-table-border-color);
}
.text_content_dynamic table>:not(caption)>*>*{
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    border-width: 0 1px;
}


.helloleads-form-container{
    position: relative;
    background-color: #28b5a4;
    padding: 1rem;
    border-radius: .8rem;
    overflow: hidden;
}