@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "New York";
  src: url("../library/fonts/newyork/NewYorkExtraLargeRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
  color: #140e0c;
}

a {
  text-decoration: none;
}

.f30 {
  font-size: 30px;
  font-weight: 400;
}

.f20 {
  font-size: 20px;
}

.f25 {
  font-size: 25px;
}
.f18 {
  font-size: 18px;
}

.f11 {
  font-size: 11px;
}

.f12 {
  font-size: 12px;
}

.fntred {
  color: #8f1a24;
}

.fntgry {
  color: #c1c1c1;
}

.f16 {
  font-size: 16px;
}
.bggrey {
  background-color: #f6f6f6;
}

.ms-6 {
  margin-left: 130px;
}
.banner-wrapper {
  position: relative;
}
.w-xs-100
{
	width:100%!important;
}
.scrollingtext {
  display: inline-flex;
  gap: 25px;
  font-size: 12px;
  font-weight: 600;
}

.scrollingtext span::before {
  content: "• ";
  color: #ccc;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px; /* adjust height as needed */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
}
.social-buttons__button {
  margin: 5px;
}
.social-button {
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  width: 32px;
  height: 32px;
  text-decoration: none;
  color: #fff;
}
.social-icons {
  width: 100%;
}
.social-button__inner {
  font-size: 2.3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 100%;
  border: 1px solid #fff;
  text-align: center;
}
.social-button i,
.social-button svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
  font-size: 16px;
}

.social-button svg {
  height: 25%;
  width: 25%;
}
.social-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  transition: 0.3s;
}
.social-button:focus,
.social-button:hover {
  color: #fff;
  text-decoration: none;
}
.social-button:focus::after,
.social-button:hover::after {
  width: 100%;
  height: 100%;
  margin-left: -50%;
}

.social-button--facebook,
.social-button--twitter,
.social-button--instagram,
.social-button--youtube {
  color: #fff;
}
.social-button--facebook::after,
.social-button--twitter::after,
.social-button--instagram::after,
.social-button--youtube::after {
  background: #8f1a24;
}

.user-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 20px;
}

/* Button Style */
.user-btn {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #8f1a24; /* deep red like screenshot */
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Icons */
.user-btn i {
  font-size: 14px;
}


/* Dropdown */
.dropdown-menu {
  position: absolute;
/*   top: 54%; */
  right: -4px;
  background: #ffffff;
  border-radius: 8px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 160px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999;
}
/* .dropdown-menu.show {
    display: block;
} */
.user-menu
{
	position:relative;
}
.user-menu.active .dropdown-menu {
    display: block;
}
/* .dropdown-menu li {
  padding: 8px 16px;
} */

.dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}

/* Show dropdown */
.user-dropdown.active .dropdown-menu {
  display: block;
}

.navbar {
  padding: 0px;
  justify-content: center;
  background: #8f1a24;
  padding: 12px 0px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 7px 10px !important;
  font-size: 12px;
  color: #fff;
  margin: 0px 10px;
}

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

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  top: 32px;
  border-radius: 0;
  left: 10px;
  width: 200px;
}
.navbar .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 0px;
    background-color: #fff;
    display: none;
    position: absolute;
    min-width: 250px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 13px 15px;
  font-size: 12px;
}

.navbar-expand-lg .navbar-nav .active,
.navbar-expand-lg .navbar-nav li.active .nav-link,
.current-menu-ancestor,
.nav-link:hover {
  background-color: #f2a65a;
  border-radius: 3px;
  color: #fff !important;
}

.navbar-expand-lg .navbar-nav li .active .nav-link
 {
  border-radius: 0px !important;
	 background-color:none !important;
}
.dropdown-menu {
  padding: 0 !important;
}

.dropdown-item {
  font-size: 12px;
  padding: 8px 10px;
  white-space: inherit;
}

.dropdown-item:hover {
  color: #000;
  background-color: #fff2d6;
}

.slick-dots li button:before {
  font-size: 16px;
  top: -29px;
  color: #fff;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: white;
}

/* TEXT OVER IMAGE */
.banner-text {
  position: absolute;
  top: 130px;
  left: 60px;
  transform: translateY(-50%);
  color: #fff;
}

/* TITLE */
.banner-text h1 {
  font-size: 53px;
  font-weight: 900;
  color: #ffc72c;
  margin-bottom: 10px;
}

/* SUBTITLE */
.banner-text h5 {
  font-size: 25px;
  color: #ffc72c;
  margin-bottom: 20px;
}

.banner-text h5 span {
  color: #ffffff;
}

/* PILL */
.info-pill {
  background: #6e1a1a;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-flex;
  gap: 25px;
  font-size: 12px;
  font-weight: 600;
}

.info-pill span::before {
  content: "• ";
}

h2 {
  font-family: "New York";
  color: #8f1a24;
  font-weight: 700;
  font-size: 24px;
}
.pulse {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        margin-right: 5px;
        position: relative;
	   display:inline-block;
    }
    .pulse::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        width: 24px;
        height: 24px;
        border: 3px solid;
        border-radius: 50%;
        opacity: 0;
        animation: ripple 1.5s infinite;
    }
    .pulse.green::before { border-color: green; }
    .pulse.red::before { border-color: red; }
@keyframes ripple {
        0% {
            transform: scale(0.6);
            opacity: 0.8;
        }
        80% {
            transform: scale(1.5);
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }
.donate-btn, .ssp-btn {
  background: #f2a65a;
  border: none;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 12px;
  color: #8f1a24;
  text-transform:uppercase;
}

.donate-btn:hover, .ssp-btn:hover {
  background: #d7843b;
}

/* ===========================
   LIVE SECTION
=========================== */

.templeTimes {
	 box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	border-radius:5px;
}

.live-title {
  color: #8f1a24;
  font-size: 16px;
  font-weight: 700;
}

.video-wrapper {
  border-radius: 6px;
  overflow: hidden;
}

/* ===========================
   HOURS SECTION
=========================== */

.hours-title {
  color: #8b0000;
  font-weight: 700;
  margin-bottom: 10px;
}

.hours-day {
  color: #969696;
  font-size: 12px;
}

/* ===========================
   SERVICES SECTION
=========================== */

.service-card {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 25px 20px 29px 25px;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Temple Essentials Cards */
.essential-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
/*   margin-bottom: 15px; */
display: inline-block;
color: #000;
	width:100%;
	height:100%;
}

/* Upcoming Events */
.event-tabs-wrapper {
  position: relative;
  margin-bottom: 30px;
  max-width: 574px;
  margin: 0 auto;
}

.event-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
}

.event-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid #f39c3d;
  background: #fff;
  color: #f39c3d;
  padding: 6px 18px;
  border-radius: 5px;
  cursor: pointer;
}

.tab-btn.active {
  background: #f39c3d;
  color: #fff;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  font-size: 10px;
}

.left-btn {
  left: 0;
}
.right-btn {
  right: 0;
}

.tab-content {
  display: none;
  height: 300px;
  overflow-y: auto;
}

.tab-content.active {
  display: block;
}

/*Event items*/

.event-item {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Left red border */
.event-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: #b22222;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  border-radius: 8px 0 0 8px;
}

/* Hover Effect */
.event-item:hover::before {
  transform: scaleY(1);
}

.event-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.event-date {
  margin: 0 20px;
  padding-right: 20px;
}

.event-date .day,
.event-date .month {
  font-size: 20px;
  color: #c2c2c2;
}

/* Details */
.event-details h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.event-details p {
  margin: 0;
  color: #555;
}

.testimonialsbg {
  background-color: #eed9c4;
}

.review-btn {
  background: #1a73e8;
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  text-decoration: none;
  gap: 6px;
  transition: 0.3s ease;
}

.custom-footer {
  background: #8b1c1f;
  font-size: 14px;
}
.bgyellow {
    background-color: #fffaf3;
	border-radius: 15px;
}
.bckgrey {
    background-color: #F7F7F7;
    border-radius: 15px;
    padding: 30px;
}
.wp-block-column .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
}
.bckcolgrey {
    background-color: #F7F7F7;
}
.btn-1-4 {
    border: 1px solid #49242b;
    color: #49242b !important;
    font-size: 0.8rem;
}
.btn-1-2 {
    border: 1px solid #000;
    color: #fff;
    background-color: #49242b;
    font-size: 0.8rem;
}
.btn2 {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    /* text-transform: uppercase; */
    border: 1px solid currentColor;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 1;
    padding: 7px 0px;
    width: 120px;
}
h6.ea-header a {
    font-size: 14px !important;
}
.sp-easy-accordion * {
    border-radius: 15px;
}
.sp-easy-accordion .sp-ea-single {
    border: 1px solid #fff;
    border-radius: 15px !important;
    box-shadow: var(--bs-box-shadow-sm) !important;
}
.sp-easy-accordion .sp-ea-single:hover {
    border: 1px solid #AB153A !important;
}
form input[type="text"], form input[type="email"], form input[type="number"], form input[type="tel"]
 {
    width: 100% !important;
}
.contact-form input, .contact-form textarea, #forminator-module-118 input, .form input, .gform-body input, form select {
    padding: 10px !important;
    border: 1px solid #CECDCD !important;
    border-radius: 6px;
}
.contact-form button, .wpmtst_submit_testimonial, .gform_button,#ermForm button[type="submit"] {
    width: 100% !important;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    background-color: #F2A65A !important;
    border: 1px solid #F2A65A !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    color: #8F1A24 !important;
	text-transform:uppercase;
}
.wpmtst_submit_testimonial:hover, .gform_button:hover,#ermForm button[type="submit"]:hover {
    color: #8F1A24 !important;
    background-color: transparent !important;
    border: 1px solid #8F1A24 !important;
	
}
.wp-block-table thead {
    border-bottom: 1px solid;
}

#tribe-events-pg-template {
    padding: 0 !important;
	 margin: inherit !important;
    max-width: 100% !important;
}
.customLayout {
    margin-top: 40px;
    margin-bottom: 50px;
}
.tribe-events-event-meta:before {
    border-top: 0px solid var(--tec-color-border-secondary)!important;
}

.tribe-events .tribe-events-c-search__button, .tribe-events button.tribe-events-c-search__button, .tribe-common .tribe-common-c-btn-border, .tribe-common a.tribe-common-c-btn-border 
 {
background-color: #F2A65A !important;
	 color: #8F1A24 !important;
	
}

.tribe-common .tribe-common-c-btn-border {
	 border:0 !important;
}


ul.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
	columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 2rem;
    list-style-position: inside;
}
ul.doc-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px 15px;
    margin-bottom: 10px;
    background: #fff;
}
ul.doc-list li .links a.view {
    color: #0d6efd;
}
ul.doc-list li .links a {
    margin-left: 15px;
    text-decoration: none;
    font-size: 0.95rem;
}

#galleryItems img, .searchImg {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}
.events-wrapper .event-img
{
	width:120px;
}


.saicharith ul {
list-style: none;
padding: 0;
margin: 10px 0;
}
.saicharith ul li {
display: inline;
margin: 0 8px;
}
.saicharith ul li a {
text-decoration: none;
color: black;
font-weight: 400;
transition: 0.3s ease;
}
.saicharith ul li::after {
content: "|";
margin-left: 8px;
color: gray;
}
.saicharith .note {
margin-top: 20px;
font-size: 12px;
color: gray;
}
ul.doc-list {
list-style: none;
padding: 0;
margin: 0;
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
column-gap: 2rem;
list-style-position: inside;

}
.text-nish
{
	display:none;
}
/* Mobile Toggle Button */
.mobile-menu-toggle {
    background: #8F1A24;
    color: #fff;
    border: none;
    width: 100%;
    font-size: 16px;
    text-align: center;
	display:none;
}

/* Mobile Sidebar */
@media (max-width: 767px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 9999;
        padding-top: 60px;
        display: block !important;
    }

    .sidebar.active {
        left: 0;
    }

    body.menu-open {
        overflow: hidden;
    }
}
.post-thumbnail img 
{
	width:100%;
	height:auto;
}
.gfield_radio .gchoice
{
	margin-bottom:8px;
}
.ginput_container_date input[type="text"]
{
	width:96%!important;
}
/**************** Footer Section ******************/

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.footer-column
{
	margin-bottom:20px;
}
.footer-links ul li {
  margin-bottom: 4px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  font-size: 12px;
}

.footer-links ul li a:hover {
  color: #f4a261;
}

.contact-info p {
  margin-bottom: 25px;
}

.footersocial-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 20px;
  transition: 0.3s;
}

.footersocial-icons a:hover {
  background: #ffff;
  color: #000;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  color: #fff;
  line-height: 1.6;
}

/* WhatsApp Floating */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.dropdown-toggle::after {
    content: "\f078";
    font-family: "FontAwesome";
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    border: 0;
    vertical-align: -1px;
    color: #fff;
}

.post-26,.post-29
{
	width:50%;
	margin:auto;
	padding: 40px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.post-27
{
	margin:auto;
	padding: 40px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.post-27 .entry-title, .post-26 .entry-title,.post-29 .entry-title,.
{
	text-align:center;
	color:#000;
}
.post-27 .entry-title a ,.post-26 .entry-title a 
{
	color:#000;
}

#wppb-recover-password > p 
{
	text-align:center;
	margin-bottom:30px;
}
#wppb-register-user #register,.post-27 .button,.post-29 .button
{
padding: 15px 10px;
font-weight: 600;
	background-color:#F2A65A;
font-size: 14px;
text-transform: uppercase;
	border-radius: 2px;
	    -webkit-appearance: none !important;
    appearance: none !important;
    color: #8F1A24 !important;
	width:100%;
	border: 0;
}
#wppb-register-user #register:hover,.post-27 .button:hover,.post-29 .button:hover
 {
    background-color:#F2A65A !important;
  }
.text-input,.post-27 .input,.post-29 .password
{
	width:100%!important;
	padding: 14px 15px 13px 15px!important;
	font-size: 12px!important;
	color: #000!important;
	border: 1px solid #D4D4D4!important;
	border-radius: 2.5px!important;
}
.wppb-form-field .wppb-password-field-container
{
	width:100%!important;
}
.wppb-form-field label
{
	float:none!important;
	width:100%!important;
}

.btn-1-2 {
  border: 0px solid #000;
 color: #8F1A24 !important;
  background-color:#F2A65A;
	font-size:0.8rem;
	text-transform:uppercase;
}

.btn-1-3 {
  border: 1px solid #FFF2D6;
	  color: #FFF2D6 !important;
  width: 300px ;
}

.btn-1-4 {
  border: 1px solid #49242b;
  color: #49242b !important;
  font-size:0.8rem;
}
/******************offering page table css *****************/

.table-responsive {
  overflow-x: auto;
}

/* Target only your special table */
.custom-table1 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed; /* important for controlling column widths */
}
.custom-table1 th {
  background: #f5f5f5;
}

.custom-table1 th,
.custom-table1 td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
  vertical-align: middle;
}

/* Column widths */
.custom-table1 th:nth-child(1),
.custom-table1 td:nth-child(1) {
  width: 23%; /* First column wider */
}

.custom-table1 th:nth-child(2),
.custom-table1 td:nth-child(2) {
  width: 20%; /* Second column */
}

.custom-table1 th:nth-child(3),
.custom-table1 td:nth-child(3) {
  width: 20%; /* Third column */
}

table.custom-table1 th:nth-child(4),
table.custom-table1 td:nth-child(4) {
  width: 37% !important; /* force width */
  text-align: center !important; /* force horizontal center */
  vertical-align: middle !important; /* force vertical center */	
}
.baba-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.baba-table th,
.baba-table td {
  border: 1px solid #ccc;
  padding: 10px;
}

.baba-table thead th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.baba-table td:first-child {
  text-align: left; /* Keep row labels (Inches / Centimeters) aligned left */
  font-weight: bold;
}
.numberfont {
    color: #d6d2d2 !important;
    font-size: 72px !important;
    line-height: 67px !important;
}
.sidebar {
background-color: #fff;
height: 100vh;
}
.sidebar .nav-link {
display: block;
color: #333;
text-decoration: none;
padding: 0.8rem 1.5rem;
font-weight: 500;
padding: 10px 15px;
cursor: pointer;
}
.sidebar .nav-link:hover, .sidebar .nav-link.active {
background-color: #F2A65A;
color: #8F1A24;
font-weight: 500;
	border-radius:3px;
}
.content {
padding: 2rem;
position: relative;
}
.profile-card {
background-color: #fff;
border-radius: 5px;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.07);
}
.table-responsive {
overflow-x: auto;
}
/* .navbar-expand-lg .navbar-nav .active, .navbar-expand-lg .navbar-nav li.active .nav-link, .current-menu-ancestor,
.nav-link:hover {
      background-color: #FFF2D6;
      border-radius: 3px;
  } */



/****************** Mobile menu *****************************/

/*#menu {
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  top: 0px;
  right: 0;
  visibility: hidden;
  width: 100%;
  transition: all 0.2s ease-out;
  z-index: 1100;
  text-align: left;
}

#menu.open {
  opacity: 1;
  visibility: visible;
}

#menu .main-nav ul {
  list-style: none;
  margin: 0;
  padding: 50px 10px 0px 0px;
	background: #F2A65A;
}

#menu .main-nav ul li {
  border-bottom: 0px solid #d9d9d9;
  padding: 10px 40px 10px 30px;
}

#menu .main-nav ul li ul {
  padding: 10px 0px 0px 0px;
}

#menu .main-nav ul li ul li {
  border-bottom: 0px solid #d9d9d9;
  padding: 5px 0px;
}

#menu .main-nav ul li a {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
}

#menu .main-nav ul li a:hover {
  color: #ff4d9e;
}

#menu .main-nav ul li a[aria-expanded="true"]::after {
  content: "\f106";
  font-family: "FontAwesome";
  float: right;
  font-size: 18px;
  padding-left: 10px;
}

#menu .main-nav ul li a[aria-expanded="false"]::after {
  content: "\f107";
  font-family: "FontAwesome";
  float: right;
  padding-left: 10px;
  font-size: 14px;
}

#menu .main-nav ul li ul li a {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}

.toggle-menu {
   background: none;
  border-radius: 5px;
  cursor: pointer;
  border: 0;
  position: relative;
  z-index: 1110;
  top: 0;
  right: 0px;
  padding: 19px;
}

.toggle-menu span {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  left: calc(50% - 13px);
  position: absolute;
  top: calc(50% - 2px);
  transform-origin: 50% 50%;
  transition:
    background-color 0.2s ease-in-out,
    top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 26px;
  right: 0;
  border-radius: 2px;
}

.toggle-menu span:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  transform-origin: 50% 50%;
  transition:
    background-color 0.2s ease-in-out,
    top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 26px;
  border-radius: 2px;
}

.toggle-menu span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  transform-origin: 50% 50%;
  transition:
    background-color 0.2s ease-in-out,
    top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 26px;
  border-radius: 2px;
}

.toggle-menu span:before {
  top: 7px;
}

.toggle-menu span:after {
  top: -7px;
}

.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}

.toggle-menu.active span:before,
.toggle-menu.active span:after {
  transition:
    top 0.2s ease-out,
    transform 0.2s 0.2s ease-out;
}

.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}

.dropdown-toggle::after {
  display: none;
}


/* =========================
   MOBILE MENU BASE
========================= */

#menu {
  background: #F2A65A;
  height: 100%;
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  z-index: 1100;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#menu .main-nav {
	    padding-top: 150px;
}

#menu.open {
  opacity: 1;
  visibility: visible;
}
#menu {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

#menu.open {
  opacity: 1;
  visibility: visible;
}

/* Remove bootstrap dropdown behavior */
#menu .dropdown-menu {
  display: none;
  position: static;
  float: none;
  width: 100%;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background: #F2A65A;
}

#menu .dropdown-menu.open-submenu {
  display: block;
}

/* =========================
   LEVEL 1 (Purple Header)
========================= */
#menu .main-nav ul li a[aria-expanded="true"]::after {
  content: "\f106";
  font-family: "FontAwesome";
  float: right;
  font-size: 18px;
  padding-left: 10px;
}

#menu .main-nav ul li a[aria-expanded="false"]::after {
  content: "\f107";
  font-family: "FontAwesome";
  float: right;
  padding-left: 10px;
  font-size: 14px;
}

/* Target ONLY items that have submenu */
#menu .menu-item-has-children > a {
  position: relative;
  padding-right: 35px;
	 color: #000;
  font-size:18px;
}


/* Default down arrow */
#menu .menu-item-has-children > a::after {
  content: "\f078"; /* down arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

/* When opened */
#menu .menu-item-has-children > a[aria-expanded="true"]::after {
  content: "\f077"; /* up arrow */
}
/* =========================
   SUBMENU (White Box)
========================= */

#menu .main-nav ul li ul {
  background: #F2A65A !important;
}

#menu .main-nav ul li ul li {
  padding: 2px 10px 2px 18px;
	 background: #F2A65A !important;
}

#menu .main-nav .dropdown-item:hover {
    color: #000;
    background: #F2A65A !important;
}

#menu .main-nav ul li ul li a {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  display: block;
  text-decoration: none;
}


/* #menu .main-nav ul li ul li:hover {
  background: #f2f2f2;
} */

/* =========================
   3rd Level (Indented)
========================= */

#menu .main-nav ul li ul li ul li {
  padding-left: 40px;
  font-size: 15px;
}

#menu .main-nav .active, #menu .main-nav li.active .nav-link{
    color: #000 !important;
	font-size:18px;
}
#menu .main-nav .nav-link{
    color: #000 !important;
	font-size:18px;
}

/* =========================
   CLOSE BUTTON
========================= */

.toggle-menu {
  background: none;
  border-radius: 5px;
  cursor: pointer;
  border: 0;
  position: relative;
  z-index: 1110;
  top: 0;
  right: 0px;
  padding: 14px;
}

.toggle-menu span {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  left: calc(50% - 13px);
  position: absolute;
  top: calc(50% - 2px);
  transform-origin: 50% 50%;
  transition:
    background-color 0.2s ease-in-out,
    top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 100%;
  right: 0;
  border-radius: 2px;
}

.toggle-menu span:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  transform-origin: 50% 50%;
  transition:
    background-color 0.2s ease-in-out,
    top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 100%;
  border-radius: 2px;
}

.toggle-menu span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  transform-origin: 50% 50%;
  transition:
    background-color 0.2s ease-in-out,
    top 0.2s 0.2s ease-out,
    transform 0.2s linear;
  width: 100%;
  border-radius: 2px;
}

.toggle-menu span:before {
  top: 7px;
}

.toggle-menu span:after {
  top: -7px;
}

.toggle-menu.active span {
  background-color: transparent;
  transition: background 0.2s ease-out;
}

.toggle-menu.active span:before,
.toggle-menu.active span:after {
  transition:
    top 0.2s ease-out,
    transform 0.2s 0.2s ease-out;
}

.toggle-menu.active span:before {
  top: 0;
  transform: rotate3d(0, 0, 1, -45deg);
}

.toggle-menu.active span:after {
  top: 0;
  transform: rotate3d(0, 0, 1, 45deg);
}



.toggle-menu-close {
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

.events-empty {
    min-height: 200px;
}

.events-empty img {
    width: 180px;
    opacity: 0.6;
}



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

@media (min-width: 821px) {
  .d-custmd-none {
    display: none !important;
  }
}

@media (max-width: 575.98px) and (max-width: 767px) {
	.ginput_container_date input[type="text"]
{
	width:93%!important;
}
	.shadow
	{
		box-shadow:none!important;
	}
	.post-26, .post-29
	{
		width:100%;
		background:none;
		padding:0px;
		box-shadow:none;
	}
  .banner-text {
    left: 20px;
    top: 40%;
    max-width: 90%;
  }

  .banner-text h1 {
    font-size: 26px;
  }

  .info-pill {
    flex-direction: column;
    gap: 8px;
  }

  .social-button--facebook,
  .social-button--twitter,
  .social-button--instagram,
  .social-button--youtube {
    color: #000;
  }

  .social-button {
    width: 25px;
    height: 25px;
  }

  .social-button i,
  .social-button svg {
    font-size: 12px;
  }

  .social-button__inner {
    border: 1px solid #000;
  }

  .social-buttons__button {
    margin: 0px;
  }

  .user-btn {
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: none;
  }

  .user-dropdown {
    margin-right: 0px;
  }

  .logo img {
    width: 237px;
  }

  .banner-content {
    padding: 10px 0px;
  }

  .navbar {
/*     margin-top: -225px; */
    background: none;
  }

  .blanketbanrbg {
    margin-top: 160px;
  }

  .service-card {
    text-align: left;
    height: 100%;
  }

  .service-card img {
    margin-bottom: 12px;
  }

  .event-tabs-wrapper {
    max-width: 340px;
  }

  .footer-text {
    margin: 20px auto 0px auto;
  }

  .donate-btn {
    width: 100%;
    text-align: center;
  }

  
	
/* 	.events_banner {
	    margin-top: 182px;
} */
	.pulse {
		margin:20px 5px 0px 0px;}
	
.dropdown-toggle::after {
      color: #000;
}	
	.templeTimes
	{
		box-shadow:none;
		border-radius:0;
	}
	
}
/* Ipad Air and Mini*/
@media screen and (min-width: 768px) and (max-width: 991px) {
}

/* For Large screens */

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