/*** 	 01. Global Variables	  ***/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
  --primary-color: #f31017;
  --secondary-color: #ffae1f;
  --text-color: #525252;
  --accent-color: #bd0006;
  --white-color: #ffffff;
  --divider-color: #ffffff26;
  --dark-divider-color: #2a2928;
  --error-color: rgb(230, 87, 87);
  --default-font: 'Plus Jakarta Sans', sans-serif;
}

/*** 	   02. General css		  ***/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  background-color: var(--white-color);
  color: var(--text-color);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.mfp-container {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 14px 70px 14px 20px;
  border: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.btn-default:hover {
  background-color: transparent;
}
.btn-default-noicon::before {
  content: none !important;
}
.btn-default-noicon {
  padding: 14px 20px !important;
}

.btn-default::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  background-image: url('../images/arrow-orange.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  transform: translate(-4px, -50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
  transform: translate(-4px, -50%) rotate(45deg);
  background-size: 12px auto;
}

.btn-default::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  width: 100%;
}

.btn-default.btn-highlighted {
  background-color: var(--white-color);
  color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
  background-color: transparent;
  color: var(--white-color);
}

.btn-default.btn-highlighted:before {
  background-color: var(--accent-color);
  background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
  background-color: var(--primary-color);
}

.readmore-btn {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.readmore-btn img {
  max-width: 15px;
  transition: all 0.3s ease-in-out;
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8px !important;
  height: 8px !important;
  background: var(--accent-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.section-row {
  margin-bottom: 60px;
}

.section-row .section-title {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
  color: var(--secondary-color);
  padding-left: 25px;
  margin-bottom: 15px;
}

.section-title h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url('/images/icon-sub-heading.svg') no-repeat;
  background-position: left center;
  background-size: cover;
  width: 18px;
  height: 18px;
}

.section-title h1,
.hero-slide h2 {
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.3em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--dark-divider-color) !important;
}

.section-title p {
  margin-top: 25px;
  margin-bottom: 0;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/**** 	   03. Header css		 ****/

header.main-header {
  position: relative;
  border-bottom: 1px solid var(--divider-color);
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  backdrop-filter: blur(30px);
}
/* Base link */
header.main-header .header-sticky .navbar-nav a {
  position: relative;
  display: block;
  overflow: hidden;
  transition: color 0.35s ease;
}
header.main-header .header-sticky .navbar-nav a:focus {
  color: var(--white-color);
}
header.main-header .header-sticky .navbar-nav ul li a:hover {
  color: var(--white-color) !important;
}

/* Underline base */
header.main-header .header-sticky .navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%; /* Line hidden from left */
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  transition: left 0.35s ease, background-color 0.35s ease;
}

/* Hover — line slides left → right */
header.main-header .header-sticky .navbar-nav a:hover::after {
  left: 0;
}

/* Unhover — line moves right → left */
header.main-header .header-sticky .navbar-nav a:not(:hover)::after {
  left: 100%;
}

/* Active sticky header hover color change */
header.main-header .header-sticky.active .navbar-nav a:hover {
  color: var(--secondary-color) !important;
}

header.main-header .header-sticky.active .navbar-nav a:hover::after {
  background-color: var(--secondary-color) !important;
}
header.main-header .header-sticky.active .header-btn .btn-default:hover::after {
  background-color: var(--secondary-color) !important;
}

.navbar {
  padding: 4px 0;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 4px !important;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 270px;
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: '\f105';
  float: right;
}

.main-menu ul li.submenu:first-child ul ul {
  width: 250px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--white-color);
  padding: 6px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 10px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
  border-radius: 0;
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--primary-color);
}

/***        04. Hero css	      ***/

.hero {
  position: relative;
  background: var(--primary-color) url('../images/hero-bg.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100%;
  overflow: hidden;
  padding: 250px 0;
  margin-top: -118px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-video .hero-bg-video::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 40%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider {
  background: none;
  padding: 0;
}

.hero-slider-layout .hero-slide {
  position: relative;
  height: calc(90vh - 30px) !important;
  /* padding: 250px 0; */
  display: flex;
  align-items:center;
  justify-content: center;
  margin-top: -30px;
}

.hero.hero-slider:before {
  display: none;
}

.hero.hero-slider .hero-slider-layout {
  position: relative;
  z-index: 2;
}

.hero-slider-layout .hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--dark-divider-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-slider-layout .hero-pagination {
  position: absolute;
  text-align: center;
  z-index: 2;
  bottom: 30px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet , .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active , .swiper-pagination-bullet-active {
  background-color: var(--accent-color) ;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-content .section-title h1,
.hero-slide h2 {
  color: var(--white-color) !important;
}

.hero-content .section-title p {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  margin-top: 20px;
  color: var(--white-color);
}

.hero-content-body .btn-default.btn-highlighted {
  margin-left: 30px;
}

.down-arrow a {
  position: absolute;
  top: auto;
  right: 80px;
  bottom: 30px;
  width: 30px;
  height: 50px;
  border: 2px solid var(--white-color);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: jumpInfinite 1.5s infinite;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.down-arrow a:hover {
  border-color: var(--accent-color);
}

.down-arrow a i {
  font-size: 20px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.down-arrow a:hover i {
  color: var(--accent-color);
}

@keyframes jumpInfinite {
  0% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 20px;
  }
  100% {
    margin-bottom: 0;
  }
}

/***  05. Scrolling Ticker css    ***/

.our-scrolling-ticker {
  background-color: var(--accent-color);
  padding: 6px 0;
}

.our-scrolling-ticker .scrolling-ticker-box {
  --gap: 40px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
  height: 40px;
}

.our-scrolling-ticker .scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 36s linear infinite;
}

.our-scrolling-ticker .scrolling-content span {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--white-color);
  vertical-align: middle;
}

.our-scrolling-ticker .scrolling-content span img {
  width: 100%;
  max-width: 30px;
  margin-right: 40px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/***       06. About Us css	      ***/

.about-us {
  padding: 60px 0;
}

.about-image {
  position: relative;
}

.about-img-1 {
  width: 100%;
}

.about-img-1 figure {
  display: block;
  border-radius: 40px 40px 100px 40px;
}

.about-img-1 img {
  aspect-ratio: 1 / 1.34;
  object-fit: cover;
  border-radius: 40px 40px 100px 40px;
}

.about-content {
  margin-left: 30px;
}

.about-us-body {
  margin-bottom: 40px;
}

.about-content-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.about-list-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.about-list-item .icon-box {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  color: var(--primary-color);
}

.about-list-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.about-list-item:hover .icon-box:before {
  transform: scale(1);
}

.about-list-item:hover .icon-box i {
  color: var(--white-color);
  z-index: 9;
  position: relative;
}

.about-list-item-content {
  width: calc(100% - 55px);
}

.about-list-item-content h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

/***     07. Join Worship css	  ***/

.join-worship {
  /* background-color: #fff1d8; */
  padding: 60px 0;
}

.highlighted-worship-item {
  position: relative;
  overflow: hidden;
}

.highlighted-worship-image a {
  display: block;
  cursor: none;
}

.highlighted-worship-image a img {
  width: 100%;
  aspect-ratio: 1/ 0.88;
  object-fit: cover;
  border-radius: 50px !important;
}

.highlighted-worship-body {
  position: absolute;
  background-color: var(--white-color);
  border-radius: 20px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  z-index: 1;
}

.highlighted-worship-content h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.highlighted-worship-content p {
  margin: 0;
}

.highlighted-worship-btn {
  margin-left: 10px;
}

.highlighted-worship-body:hover .highlighted-worship-btn .readmore-btn {
  background-color: var(--primary-color);
}

.highlighted-worship-body:hover .highlighted-worship-btn .readmore-btn img {
  transform: rotate(45deg);
}

.worship-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px 0;
}

.worship-item:last-child {
  margin-bottom: 0;
}

.worship-image {
  width: 50%;
}

.worship-image a {
  display: block;
  cursor: none;
}

.worship-image img {
  width: 100%;
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
  border-radius: 14px;
}

.worship-body {
  width: calc(100% - 50%);
  margin-left: 30px;
}

.worship-content {
  margin-bottom: 25px;
}

.worship-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.worship-content p ,.highlighted-worship-content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
}

.worship-btn .readmore-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.worship-btn {
  position: absolute;
  bottom: 10px;
  right: 20px;
  z-index: 9;
}

.worship-btn .readmore-btn img {
  max-width: 20px;
  object-fit: contain;
}

.worship-item:hover .worship-btn .readmore-btn {
  background-color: var(--primary-color);
}

.worship-item:hover .worship-btn .readmore-btn img {
  transform: rotate(45deg);
}

/***     08. Our Counter css	  ***/

.our-counter {
  background-image: linear-gradient(
    180deg,
    #fff1d8 35%,
    var(--white-color) 35%
  );
}

.counter-box {
  background-color: var(--accent-color);
  border-radius: 20px;
  padding: 40px 15px;
}

.counter-item {
  border-right: 1px solid var(--divider-color);
  text-align: center;
  padding-right: 30px;
}

.counter-box .col-lg-3:last-child .counter-item {
  border: none;
  padding-right: 0;
}

.counter-title {
  margin-bottom: 20px;
}

.counter-title h2 {
  font-size: 45px;
  color: var(--white-color);
}

.counter-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 20px;
}

.counter-content p {
  color: var(--white-color);
  margin: 0;
}

/***     09. Our Mission css	  ***/

.our-mission {
  padding: 60px 0;
}

.mission-content-body {
  margin-bottom: 40px;
}

.mission-content-body h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

.mission-content-body p {
  margin-bottom: 0;
}

.mission-image {
  position: relative;
}

.mission-img {
  text-align: right;
  padding: 0 0 80px 80px;
}

.mission-img figure {
  width: 100%;
  border-radius: 40px 40px 100px 40px;
}

.mission-img img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 0 0 100px 0;
}

/***     10. Our Services css	  ***/

.our-services {
  /* background-color: #fff1d8; */
  padding: 60px 0 50px;
}

.service-item {
  position: relative;
  background-color: var(--white-color);
  border-radius: 12px;
  padding: 30px 25px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.service-item:before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--accent-color);
  transition: all 0.4s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}

.service-item:hover:before {
  top: 0;
  border-radius: 0;
  opacity: 1;
}

.service-item .icon-box {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.service-item .icon-box i {
  font-size: 36px !important;
  color: var(--primary-color);
}
.service-item:hover .icon-box {
  background-color: transparent;
}

.service-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.service-item:hover .icon-box:before {
  transform: scale(1);
}

.service-item:hover .icon-box i {
  color: var(--white-color) !important;
  position: relative;
  z-index: 2;
}

.service-body {
  position: relative;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.service-item:hover .service-body {
  border-color: var(--divider-color);
}

.service-body p {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-body p {
  color: var(--white-color);
}

.service-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content h3 {
  color: var(--white-color);
}

.service-btn .readmore-btn {
  width: 34px;
  height: 34px;
}

.service-btn .readmore-btn img {
  max-width: 10px;
}

.service-item:hover .service-btn .readmore-btn {
  background-color: var(--primary-color);
}

.service-item:hover .service-btn .readmore-btn img {
  transform: rotate(45deg);
}

/******************************************/
/****     11. Service Ticker css  	   ****/
/******************************************/

.service-ticker {
  background-color: var(--secondary-color);
}

.service-ticker .scrolling-ticker-box {
  --gap: 30px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  margin-bottom: -16px;
}

.service-ticker .scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 80s linear infinite;
}

.service-ticker .scrolling-content span {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 100px;
  line-height: 1em;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--accent-color);
  stroke: var(--accent-color);
  opacity: 50%;
}

.service-ticker .scrolling-content span img {
  width: 100%;
  max-width: 45px;
  margin-right: 30px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/***     12. Our Ministries css	  ***/

.our-ministries {
  padding: 60px 0 50px;
}

.our-ministries .section-title h2 span,
.our-ministries .section-title h3 {
  color: var(--secondary-color);
}

.ministries-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.ministries-image a {
  position: relative;
  cursor: none;
}

.ministries-image a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0) 22.58%,
    rgba(4, 4, 1, 0.49) 88.72%
  );
  width: 100%;
  height: 100%;
  z-index: 2;
}

.ministries-image a img {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}

.ministries-item:hover .ministries-image a img {
  transform: scale(1.1);
}

.ministries-content {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.ministries-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
}

.ministries-btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 2;
}

.ministries-item:hover .ministries-btn .readmore-btn {
  background-color: var(--primary-color);
}

.ministries-item:hover .ministries-btn .readmore-btn img {
  transform: rotate(45deg);
}

.our-ministries-footer {
  text-align: center;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  margin-top: 30px;
}

.our-ministries-footer p {
  margin: 0;
}

.our-ministries-footer p a {
  font-weight: 700;
  color: var(--accent-color);
  text-transform: capitalize;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.our-ministries-footer p a:hover {
  color: var(--primary-color);
}

/***     13. Our Sermons css	  ***/

.our-sermons {
  padding: 50px 0 70px;
}

.sermons-item {
  overflow: hidden;
  border-radius: 12px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
}

.sermons-image {
  position: relative;
}

.sermons-image a {
  display: block;
  cursor: none;
}

.sermons-image figure a img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  object-position: center top;
  transition: all 0.5s ease-in-out;
}

.sermons-item:hover .sermons-image figure a img {
  transform: scale(1.1);
}

.sermons-meta {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-color);
  border-radius: 0;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 5px 10px;
}

.sermons-meta h3 {
  font-size: 20px;
  line-height: 1.1em;
  color: var(--white-color);
}

.sermons-meta p {
  font-size: 14px;
  line-height: 1.2em;
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

.sermons-audio-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.sermons-item:hover .sermons-audio-icon {
  opacity: 1;
  visibility: visible;
}

.sermons-audio-icon img {
  max-width: 110px;
}

.sermons-body {
  background-color: var(--white-color);
  border-radius: 0;
  padding: 18px;
}

.sermons-title {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.sermons-title h2 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.sermons-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sermons-list ul li {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.sermons-list ul li:last-child {
  margin-bottom: 0;
}

.sermons-list ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
}

.sermons-list ul li i.fa-tag {
  transform: rotate(90deg);
}

.sermons-list ul li span {
  font-weight: 500;
  color: var(--primary-color);
}

/***     14. Verse Church css	  ***/

.verse-church {
  background: var(--secondary-color) url('../images/verse-church-bg.png')
    no-repeat;
  background-position: right center;
  background-size: contain;
  padding: 60px 0;
}

.verse-church-btn {
  position: relative;
}

.verse-church-content .section-title {
  margin-bottom: 50px;
}

.verse-church-content .section-title p {
  color: var(--primary-color);
}

.verse-church-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  background: url('../images/arrow-move-orange-.svg') no-repeat;
  background-position: right center;
  background-size: auto;
  width: 135px;
  height: 80px;
  animation: versearrowmoveobjects 3s infinite linear alternate;
}

@keyframes versearrowmoveobjects {
  50% {
    right: 56%;
  }
}

/***       15. CTA Box css	      ***/

.cta-box {
  background-color: var(--accent-color);
  padding: 50px 0;
}

.cta-box-content {
  position: relative;
  z-index: 1;
}

.cta-box-content .section-title {
  margin: 0;
}

.cta-box-content .section-title h2 {
  color: var(--white-color);
}

.cta-box-btn {
  position: relative;
  text-align: right;
}

.cta-box-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  background: url('../images/arrow-move-white-.svg') no-repeat;
  background-position: left center;
  background-size: auto;
  width: 130px;
  height: 80px;
  animation: ctaarrowmoveobjects 3s infinite linear alternate;
  z-index: 0;
}

@keyframes ctaarrowmoveobjects {
  50% {
    left: 40px;
  }
}

/***      16. Our Event css	      ***/

.our-event {
  padding: 60px 0;
  /* background-color: #fff1d8; */
}

.event-image figure {
  border-radius: 40px 40px 100px 40px;
}

.event-image img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 40px 40px 100px 40px;
}



.event-body {
  margin-bottom: 40px;
}

.event-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.event-item:last-child {
  margin-bottom: 0;
}

.event-item .icon-box {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.event-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.event-item:hover .icon-box:before {
  transform: scale(1);
}

.event-item .icon-box i {
  position: relative;
  font-size: 20px;
  color: var(--accent-color);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.event-item:hover .icon-box i {
  color: var(--white-color);
}

.event-item-content {
  width: calc(100% - 55px);
}

.event-item-content p {
  font-weight: 500;
  margin: 0;
}

.event-footer {
  margin-bottom: 40px;
}

.event-footer p {
  margin: 0;
}

/***      17. Donate Now css	  ***/

.donate-now {
  background: url('../images/shiv.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.video-play-button {
  position: relative;
  z-index: 1;
}

.video-play-button a {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 100%;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}

.video-play-button a:before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--dark-divider-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--dark-divider-color);
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.video-play-button a i {
  font-size: 30px;
  color: var(--white-color);
}

.donate-box {
  background-color: var(--white-color);
  border-radius: 0;
  padding: 28px;
}

.donate-value-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.donate-form .donate-value {
  width: calc(33.33% - 6.66px);
}

.donate-form .form-control {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 0 0 20px 0;
  font-weight: 500;
  box-shadow: none;
  outline: none;
  padding: 20px;
}

.donate-form .form-control::placeholder {
  color: var(--primary-color);
  font-weight: 500;
}

.donate-form .donate-value input {
  position: absolute;
  left: -9999px;
}

.donate-form .donate-value label {
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 0 0 20px 0;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.donate-form .donate-value input[type='radio']:focus + label,
.donate-form .donate-value input[type='radio']:checked + label {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.donate-form .form-group-btn {
  text-align: center;
}

/***      18. Latest Post css	  ***/

/* .our-blog {
  background-color: #fff1d8;
} */
.bg-sec-color {
  background-color: #fff1d8;
}
.our-blog,
.our-ads,
.profile-sec {
  padding: 60px 0 60px;
}

.blog-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  z-index: 1;
}

.blog-item .post-featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-item .post-featured-image a {
  position: relative;
  display: block;
  cursor: none;
  overflow: hidden;
}
/* 
.blog-item .post-featured-image a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 30%;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.blog-item .post-featured-image img {
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
}

.blog-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-body {
  width: 100%;
  max-width: 335px;
  margin-bottom: 15px;
}

.post-item-body h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.post-item-body h2 a {
  color: var(--dark-divider-color);
}

.post-item-footer a.read-more-btn {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 50px;
  transition: 0.5s ease-in-out;
}
.read-more-btn-2 {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--accent-color);
  transition: 0.5s ease-in-out;
}

.post-item-footer a.read-more-btn::after {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  background-image: url('../images/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  transition: 0.4s ease-in-out;
}

.post-item-footer a.read-more-btn:hover::after {
  transform: rotate(45deg);
  background-color: var(--primary-color);
}

.post-item-footer a.read-more-btn:hover {
  color: var(--primary-color);
}

.read-more-btn-2:hover {
  color: var(--primary-color);
}

/*** 19. Subscribe Newsletter Css ***/

.subscribe-newsletter {
  position: relative;
  background: url('../images/subscribe-newsletter-bg.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 0;
}

.subscribe-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 60.5%
  );
  width: 100%;
  height: 100%;
  z-index: 0;
}

.subscribe-newsletter .section-row {
  position: relative;
  z-index: 1;
}

.subscribe-newsletter .section-title p,
.subscribe-newsletter .section-title h2 {
  color: var(--white-color);
}

.subscribe-newsletter-form {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  z-index: 1;
}

.subscribe-newsletter-form .form-group {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.subscribe-newsletter-form .form-group .form-control {
  width: 100%;
  padding: 18px 20px;
  background: var(--white-color);
  color: var(--primary-color);
  font-weight: 500;
  border: none;
  border-radius: 100px;
  box-shadow: none;
}

.subscribe-newsletter-form .form-group .form-control::placeholder {
  font-weight: 500;
  color: var(--primary-color);
}

.subscribe-newsletter-form .form-group .subscribe-btn {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  font-weight: 700;
  text-transform: capitalize;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 14px 25px;
  border: none;
  transition: all 0.3s ease-in-out;
}

.subscribe-newsletter-form .form-group .subscribe-btn:hover {
  background-color: var(--primary-color);
}

/***   		20. Footer css        ***/

.main-footer {
  padding: 60px 0 0;
  background: #140303;
}

.about-footer {
  width: 100%;
  max-width: 305px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-width: 80px;
}

.about-footer-content {
  margin-bottom: 25px;
}

.about-footer-content p {
  color: var(--white-color);
  margin: 0;
}

.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li {
  display: inline-flex;
  margin-right: 20px;
}

.footer-social-links ul li:last-child {
  margin-right: 0;
}

.footer-social-links ul li a i {
  color: var(--white-color);
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
  color: var(--accent-color);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 25px;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.footer-links ul li {
  text-transform: capitalize;
  margin-bottom: 10px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li::marker {
  color: var(--accent-color);
}

.footer-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
  color: var(--accent-color);
}

.footer-contact-details .footer-info-box {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
}

.footer-contact-details .footer-info-box:last-child {
  margin-bottom: 0;
}

.footer-info-box .icon-box {
  position: absolute;
  top: -2px;
  left: 0;
}

.footer-info-box .icon-box img {
  max-width: 24px;
}

.footer-info-box-content a , .footer-info-box-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-info-box-content a:hover{
  color: var(--accent-color);
}
.footer-copyright {
  border-top: 1px solid var(--divider-color);
  padding: 10px 0;
  margin-top: 10px;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.footer-privacy-policy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: end;
}

.footer-privacy-policy ul li {
  display: inline-block;
  margin-right: 40px;
}

.footer-privacy-policy ul li:last-child {
  margin-right: 0;
}

.footer-privacy-policy ul li a {
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover a {
  color: var(--accent-color);
}

/***     21. About us Page css	  ***/

.page-header {
  position: relative;
  background: url('../images/page-header-bg.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 190px 0 100px;
  margin-top: -118px;
}
.dashboard-header {
  position: relative;
  background: url('../images/page-header-bg.jpg') no-repeat;
  background-position: top;
  background-size: cover;
  border-bottom: none !important;
}
header:has(+ div .dashboard-sidebar) {
  position: relative;
  background: url('../images/page-header-bg.jpg') no-repeat;
  background-position: top;
  background-size: cover;
  border-bottom: none !important;
} 
header:has(+ div .dashboard-sidebar)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}


.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header-box h1 {
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 25px;
}

.page-header-box h1 span {
  color: var(--white-color);
}

.page-header-box ol {
  margin: 0;
  display: inline-flex;
  justify-content: center;
  background-color: transparent;
  border-radius: 0 0 20px 0;
  padding: 10px 20px;
  gap: 12px;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item.active {
  color: var(--secondary-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary-color);
  content: none !important;
}

.page-about-us .about-content-body {
  margin-bottom: 0px;
}

.vision-mission , .building-sections {
  /* background-color: #fff1d8; */
  padding: 60px 0;
}

.vision-mission .section-row .section-title {
  max-width: 965px;
}

.vision-mission-nav {
  margin-bottom: 50px;
  text-align: center;
}

.vision-mission-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  background-color: var(--white-color);
  border-radius: 100px;
  border: none;
  padding: 15px;
}

.vision-mission-nav ul li {
  margin-right: 25px;
}

.vision-mission-nav ul li:last-child {
  margin-right: 0;
}

.vision-mission-nav ul li .nav-link {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: capitalize;
  border: none;
  padding: 15px 30px;
  transition: all 0.4s ease-in-out;
}

.vision-mission-nav ul li .nav-link:hover {
  border: none;
}

.vision-mission-nav ul li .nav-link.active {
  background-color: var(--accent-color);
  color: var(--white-color);
  border: none;
}

.vision-mission-content .section-title {
  width: 100%;
  max-width: 480px;
}

.vision-mission-body h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.6em;
}

.vision-mission-body p {
  margin: 0;
}

.vision-mission-image {
  margin-left: 30px;
}

.vision-mission-image figure {
  width: 100%;
  border-radius: 20px 20px 100px 20px;
}

.vision-mission-image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 20px 20px 100px 20px;
}

.what-we-do {
  padding: 100px 0 70px;
}

.what-we-item {
  position: relative;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 25px;
}

.what-we-item::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid var(--dark-divider-color);
  width: 1px;
  height: 200px;
}

.what-we-do .col-lg-4:last-child .what-we-item::before {
  border: none;
}

.what-we-item .icon-box {
  margin-bottom: 40px;
}

.what-we-item .icon-box i {
  font-size: 48px;
  color: var(--primary-color);
}

.what-we-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.what-we-content p {
  margin: 0;
}

.our-team {
  /* background: #fff1d8; */
  padding: 100px 0 20px;
}

.our-team .section-row .section-title h3,
.our-team .section-row .section-title h2 span {
  color: var(--secondary-color);
}

.team-member-item {
  position: relative;
  z-index: 1;
  border-radius: 12px !important;
  overflow: hidden;
  background-color: var(--white-color);
 box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 2px;
 height: 100%;
}

.team-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  z-index: 1;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-social-icon {
  position: absolute;
  left: 20px;
  bottom: 0;
  margin: 0 auto;
  line-height: 1em;
  transform: translateY(100%);
  text-align: center;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon {
  left: 20px;
  bottom: 20px;
  transform: translateY(0);
}

.team-social-icon ul {
  display: inline-block;
  list-style: none;
  line-height: normal;
  margin: 0;
  background-color: var(--white-color);
  padding: 12px;
  overflow: hidden;
}

.team-social-icon ul li {
  position: relative;
  display: block;
  text-align: center;
  /* margin-right: 15px; */
  padding: 8px;
  z-index: 1;
}

.team-social-icon ul li:last-child {
  margin-right: 0;
}

.team-social-icon ul li a {
  display: block;
}

.team-social-icon ul li a i {
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a:hover i {
  color: var(--primary-color);
}

.team-content {
  text-align: left;
  padding: 10px;
}

.team-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.team-content p {
  margin: 0;
}
.leadership-table tbody tr td:nth-child(4) {
  text-transform: lowercase !important;
}

.pastors-message {
  padding: 50px 0 100px;
}

.pastors-image {
  margin-right: 30px;
}

.pastors-image figure {
  border-radius: 20px 20px 100px 20px;
  overflow: hidden;
}

.pastors-image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 20px 20px 100px 20px;
}

.pastors-content-body {
  margin-bottom: 40px;
}

.pastors-content-body h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

.pastors-content-body p {
  /* border-left: 2px solid var(--accent-color); */
  padding-left: 15px;
  margin-bottom: 0;
}

.pastors-signature-img {
  margin-bottom: 10px;
}

.pastors-signature-img img {
  max-width: 170px;
}

.pastors-signature-content p {
  font-size: 18px;
  text-transform: capitalize;
  color: var(--accent-color);
  font-weight: 700;
  margin: 0;
}

.core-value {
  /* background-color: #fff1d8; */
  padding: 60px 0;
}

.core-value-faqs-accordion .accordion-item {
  position: relative;
  background: none;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.core-value-faqs-accordion .accordion-item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.core-value-faqs-accordion .accordion-item .accordion-button {
  font-size: 20px;
  font-weight: 500;
  border: none;
  box-shadow: none;
  padding: 10px 30px 10px 0px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.core-value-faqs-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
}

.core-value-faqs-accordion .accordion-item .accordion-button::after,
.core-value-faqs-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\f068';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translate(0px, -10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  width: 20px;
  height: 20px;
  padding: 5px;
  transition: all 0.3s ease-in-out;
}

.core-value-faqs-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\f067';
  color: var(--primary-color);
}

.core-value-faqs-accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 5px 30px 10px 0px;
}

.core-value-faqs-accordion
  .accordion-item
  .accordion-collapse
  .accordion-body
  p {
  margin: 0;
}

.core-value-slider {
  position: relative;
  margin-left: 30px;
}

.core-value-slider-img {
  border-radius: 20px 20px 100px 20px;
  overflow: hidden;
}

.core-value-slider-img img {
  width: 100%;
  aspect-ratio: 1 / 0.95;
  object-fit: cover;
  border-radius: 20px 20px 100px 20px;
}

.core-value-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: left;
  z-index: 1;
}

.core-value-btn .core-value-button-next,
.core-value-btn .core-value-button-prev {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.core-value-btn .core-value-button-next:hover,
.core-value-btn .core-value-button-prev:hover {
  background-color: var(--primary-color);
}

.core-value-btn .core-value-button-next::before,
.core-value-btn .core-value-button-prev::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../images/arrow-white.svg') no-repeat center center;
  background-size: 14px auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.core-value-btn .core-value-button-prev::before {
  transform: rotate(225deg);
}

/***     22. Page Services css	  ***/

.page-services {
  padding: 100px 0 70px;
}

.page-services .service-item {
  border: 1px solid var(--dark-divider-color);
}

/***    23. Services Single css	  ***/

.page-service-single {
  padding: 60px 0;
}

.service-single-content {
  margin-right: 30px;
}

.service-single-slider {
  margin-bottom: 40px;
}

.service-single-btn {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.service-single-btn .service-single-button-next,
.service-single-btn .service-single-button-prev {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-next:hover,
.service-single-btn .service-single-button-prev:hover {
  background-color: var(--primary-color);
}

.service-single-btn .service-single-button-next::before,
.service-single-btn .service-single-button-prev::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../images/arrow-white.svg') no-repeat center center;
  background-size: 14px auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.service-single-btn .service-single-button-prev::before {
  transform: rotate(225deg);
}

.service-slider-image {
  border-radius: 0 0 100px 0;
  overflow: hidden;
}

.service-slider-image img {
  border-radius: 0 0 100px 0;
  overflow: hidden;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
}

.service-featured-image figure {
  display: block;
  border-radius: 30px;
}

.service-featured-image img {
  border-radius: 30px;
}

.service-entry {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.service-entry h2 {
  font-size: 44px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-entry h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0px;
}

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-entry ul li {
  position: relative;
  width: 100%;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 30px;
}

.service-entry ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 2px;
  left: 0;
}

.service-single-faqs .section-title {
  margin-bottom: 20px;
}

.service-sidebar {
  position: sticky;
  top: 20px;
}

.service-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 0 0 50px 0;
  padding: 30px;
  margin-bottom: 40px;
}

.service-catagery-list h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.service-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-catagery-list ul li {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.service-catagery-list ul li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-catagery-list ul li a {
  display: block;
  position: relative;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
  color: var(--accent-color);
}

.service-catagery-list ul li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
  background-image: url('../images/arrow-orange.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
  transform: translate(0px, -50%) rotate(45deg);
}

.sidebar-cta-box {
  position: relative;
  background: var(--accent-color) url('../images/sidebar-cta-bg-1.svg')
    no-repeat;
  background-position: top left;
  background-size: auto;
  border-radius: 0 0 50px 0;
  text-align: center;
  padding: 40px 65px;
}

.sidebar-cta-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: url('../images/sidebar-cta-bg-2.svg') no-repeat;
  background-position: bottom right;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-contact-item .icon-box {
  position: relative;
  background-color: var(--divider-color);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 30px;
  z-index: 1;
}

.cta-contact-item .icon-box img {
  max-width: 50px;
}

.cta-contact-content {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.cta-contact-content h2 {
  font-size: 34px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 20px;
}

.cta-contact-content p {
  color: var(--white-color);
  margin: 0;
}

.cta-contact-btn {
  position: relative;
  z-index: 1;
}

/***      24. Blog Archive css	  ***/

.page-blog {
  padding: 60px 0;
}

.page-blog .blog-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}

/***      25. Blog Single css	  ***/

.page-single-post {
  padding: 60px 0;
}

.post-single-meta ol li.breadcrumb-item {
  font-size: 18px;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
}

.post-image figure,
.post-image img {
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 12px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: '';
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  margin: 0 0 0.6em;
}

.post-entry h1 {
  font-size: 54px;
}

.post-entry h2 {
  font-size: 44px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ol li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 18px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: var(--secondary-color) url(../images/icon-blockquote.svg)
    no-repeat 35px 40px;
  background-size: 45px;
  border-radius: 4px;
  padding: 16px 16px 16px 100px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 8px;
  border: 1px solid var(--accent-color);
  padding: 8px 20px;
  margin-left: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

.post-social-sharing {
  display: flex;
  align-items: center;
  text-align: left;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background-color: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
  color: var(--secondry-color);
}
.h-fit-content {
  height: fit-content;
}
.h-130 {
  height: 130px;
}

/***    26. Page Sermons css	  ***/

.page-sermons {
  padding: 60px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

/*** 27. Page Sermons Single css  ***/

.page-sermons-single {
  padding: 60px 0;
}

.sermons-single-content {
  margin-right: 0px;
}

.sermons-audio-player {
  background-color: var(--accent-color);
  padding: 30px;
}

.sermons-audio-player .plyr__controls {
  background-color: var(--divider-color);
  width: 100%;
  padding: 11px;
  border-radius: 44px;
}

.sermons-audio-player .plyr__control,
.sermons-audio-player .plyr__controls__item.plyr__time--current.plyr__time,
.sermons-audio-player .plyr__controls__item.plyr__control {
  background-color: transparent;
  color: var(--white-color);
}

.sermons-audio-player .plyr__control:hover {
  background-color: transparent;
}

.sermons-audio-player .plyr__progress__buffer {
  background-color: var(--white-color);
}

.sermons-audio-player .plyr--full-ui input[type='range'] {
  color: var(--primary-color);
}

.plyr--audio .plyr__control:focus-visible,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded='true'] {
  background-color: transparent;
}

.plyr__menu__container [role='menu'] {
  background-color: var(--primary-color);
}

.sermons-featured-image {
  margin-bottom: 40px;
}

.sermons-featured-image img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
}

.sermons-entry {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.sermons-entry h2 {
  font-size: 44px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sermons-entry p {
  margin-bottom: 20px;
}

.sermons-entry p:last-child {
  margin: 0;
}

.sermons-social-sharing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sermons-social-sharing-title h3 {
  font-size: 24px;
  text-transform: capitalize;
}

.sermons-social-sharing-list {
  text-align: right;
}

.sermons-social-sharing-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sermons-social-sharing-list ul li {
  display: inline-block;
  margin-right: 10px;
}

.sermons-social-sharing-list ul li:last-child {
  margin-right: 0;
}

.sermons-social-sharing-list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.sermons-social-sharing-list ul li:hover a {
  background-color: var(--primary-color);
}

.sermons-social-sharing-list ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.sermons-sidebar {
  position: sticky;
  top: 120px;
}

.about-sermons-sidebar {
  background-color: #fdf3e2;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-sermons-title {
  margin-bottom: 40px;
}

.about-sermons-title h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.about-sermons-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.about-sermons-item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-sermons-item .icon-box {
  background-color: var(--accent-color);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.about-sermons-item:hover .icon-box {
  background-color: var(--primary-color);
}

.about-sermons-item .icon-box i {
  font-size: 20px;
  color: var(--white-color);
}

.about-sermons-item .icon-box i.fa-tag {
  transform: rotate(90deg);
}

.about-sermons-content {
  width: calc(100% - 70px);
}

.about-sermons-content h3 {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.about-sermons-content p {
  text-transform: capitalize;
  margin: 0;
}

/***    28. Page Campaign css	  ***/

.page-campaign {
  padding: 60px 0;
}



.campaign-image a {
  display: block;
  cursor: none;
}

.campaign-image a img {
  width: 100%;
  aspect-ratio: 1 / 0.65;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
  border-radius: 12px 12px 0 0 ;
}

.campaign-item:hover .campaign-image a img {
  transform: scale(1.1);
}
.campaign-item{
  border-radius: 12px;
  overflow: hidden;
}
/* .campaign-item h4{
    overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
} */
.campaign-item h4 + p{
    overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.campaign-item h4{
    overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.read-full-content{
      margin-top: -10px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}


.campaign-body {
  background-color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-top: none;
  border-radius: 0 0 12px 12px ;
  padding: 14px;
}

.campaign-content {
  margin-bottom: 20px;
}

.campaign-content h2 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.campaign-content p {
  margin: 0;
}

.campaign-btn{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}

.campaign-btn a.read-more-btn {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 50px;
  transition: 0.5s ease-in-out;
}

.campaign-btn a.read-more-btn:hover {
  color: var(--primary-color);
}

.campaign-btn a.read-more-btn::after {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  background-image: url(../images/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  transition: 0.4s ease-in-out;
}

.campaign-btn a.read-more-btn:hover::after {
  transform: rotate(45deg);
  background-color: var(--primary-color);
}

.skillbar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.skillbar .skill-data .skill-title {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.skillbar .skill-data .skill-title span {
  font-weight: 600;
  color: var(--primary-color);
}

.skillbar .skill-data .skill-no {
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
}

.skillbar .skill-data .skill-no span {
  font-weight: 600;
  color: var(--primary-color);
}

.skillbar .skill-progress {
  width: 100%;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 99px;
  position: relative;
}

.skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--accent-color);
  border-radius: 99px;
}

/*** 29. Page Campaign Single css ***/

.page-campaign-single {
  padding: 60px 0;
}

.campaign-single-content {
  margin-right: 30px;
}

.campaign-featured-image figure {
  display: block;
}

.campaign-featured-image img {
  overflow: hidden;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
}

.campaign-donate-box {
  border: 1px solid var(--dark-divider-color);
  border-radius: 0;
  border-top: none;
  margin-bottom: 40px;
}

.campaign-donate-box .skills-progress-bar {
  padding: 40px;
}

.campaign-donate-content {
  background-color: var(--accent-color);
  border-radius: 0 0 100px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 25px 60px;
}

.campaign-donate-item {
  width: calc(33.33% - 20px);
  border-right: 1px solid var(--divider-color);
}

.campaign-donate-item:last-child {
  border: none;
}

.campaign-donate-item h3 {
  font-size: 34px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 10px;
}

.campaign-donate-item p {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

.campaign-entry {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.campaign-entry h2 {
  font-size: 44px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.campaign-entry h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.campaign-entry p {
  margin-bottom: 20px;
}

.campaign-entry p:last-child {
  margin-bottom: 0px;
}

.campaign-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.campaign-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 30px;
}

.campaign-entry ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 2px;
  left: 0;
}

.campaign-gallery {
  margin-bottom: 30px;
}

.campaign-gallery a {
  cursor: none;
}

.campaign-gallery figure {
  border-radius: 0 0 40px 0;
}

.campaign-gallery img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 0 0 40px 0;
}

.campaign-single-faqs {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.campaign-single-faqs .section-title {
  margin-bottom: 20px;
}

.campaign-single-sidebar {
  position: sticky;
  top: 20px;
  background-color: var(--secondary-color);
  border-radius: 0 0 50px 0;
  padding: 30px;
}

.campaign-sidebar-title {
  margin-bottom: 25px;
}

.campaign-sidebar-title h3 {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.campaign-sidebar-title h3 span {
  color: var(--accent-color);
}

.campaign-sidebar-title p {
  margin: 0;
}

.campaign-donate-value {
  margin-bottom: 40px;
}

.campaign-donate-form .form-group .form-control {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 0 0 20px 0;
  font-weight: 500;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 10px;
}

.campaign-donate-form .form-group .form-control::placeholder {
  font-size: 14px;
}

.campaign-donate-value .donate-value-box {
  margin-bottom: 0;
}

.campaign-donate-form .donate-value {
  width: calc(33.33% - 6.66px);
}

.campaign-donate-form .donate-value input {
  position: absolute;
  left: -9999px;
}

.campaign-donate-form .donate-value label {
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--white-color);
  color: var(--primary-color);
  border-radius: 0 0 20px 0;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

.campaign-donate-form .donate-value input[type='radio']:focus + label,
.campaign-donate-form .donate-value input[type='radio']:checked + label {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.donate-payment-method {
  margin-bottom: 40px;
}

.payment-method-title {
  margin-bottom: 25px;
}

.payment-method-title h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.donate-payment-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.donate-payment-method .payment-method {
  width: calc(50% - 15px);
}

.donate-payment-method .payment-method input {
  color: var(--accent-color);
}

.donate-payment-method .payment-method label {
  text-transform: capitalize;
}

.donar-personal-info {
  margin-bottom: 40px;
}

.donar-personal-form-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donar-personal-create-account {
  display: flex;
  align-items: center;
}

.donar-personal-create-account label {
  font-size: 12px;
  line-height: normal;
  text-transform: capitalize;
  margin-left: 5px;
}

.donar-personal-login-account p {
  font-size: 12px;
  text-transform: capitalize;
  margin: 0;
}

.donar-personal-login-account p a {
  font-weight: 500;
  color: var(--accent-color);
}

/***    30. Page Ministries css   ***/

.page-ministries {
  padding: 60px 0;
}

/**************************************/
/*** 31. Page Ministries Single css ***/
/**************************************/

.page-ministry-single {
  padding: 60px 0;
}

.ministry-single-content {
  margin-right: 20px;
}

.ministry-single-slider {
  margin-bottom: 30px;
}

.ministry-slider-image {
  border-radius: 0 0 100px 0;
  overflow: hidden;
}

.ministry-slider-image img {
  width: 100%;
  border-radius: 0 0 100px 0;
  overflow: hidden;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
}

.ministry-single-slider .swiper-pagination {
  position: relative;
  text-align: center;
  bottom: 40px;
}

.ministry-single-slider .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: var(--white-color);
  opacity: 1;
  margin: 0px 4px;
}

.ministry-single-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

.ministry-entry {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.ministry-entry h2 {
  font-size: 44px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ministry-entry h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.ministry-entry p {
  margin-bottom: 20px;
}

.ministry-entry p:last-child {
  margin-bottom: 0px;
}

.ministry-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.ministry-entry ul li {
  position: relative;
  width: calc(25% - 15px);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 30px;
}

.ministry-entry ul li:before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 2px;
  left: 0;
}

.ministry-entry-img-1 figure,
.ministry-entry-img-2 figure {
  display: block;
}

.ministry-entry-img-1 img,
.ministry-entry-img-2 img {
  aspect-ratio: 1 / 0.71;
  object-fit: cover;
  border-radius: 0 0 50px 0;
}

.ministry-single-sidebar {
  position: sticky;
  top: 20px;
  background-color: var(--secondary-color);
  border-radius: 0 0 50px 0;
  padding: 30px;
}

.ministry-single-box {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.ministry-single-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.ministry-single-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ministry-single-info .icon-box {
  margin-right: 15px;
}

.ministry-single-info .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.ministry-single-info-content {
  width: calc(100% - 39px);
}

.ministry-single-info-content h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.ministry-single-info-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ministry-single-info-list ul li {
  margin-bottom: 10px;
}

.ministry-single-info-list ul li:last-child {
  margin-bottom: 0;
}

/***     32. Page Pastor css       ***/

.page-team {
  padding: 100px 0 70px;
}

/***     33. Page Gallery css     ***/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.photo-gallery video {
  border-radius: 12px !important;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  border-radius: 12px;
}

.page-gallery-box .photo-gallery img {
  aspect-ratio: 1 / 0.97;
  object-fit: cover;
  border-radius: 12px;
}

/***    34. Contact us Page css   ***/

.page-contact-us {
  padding: 60px 0;
}

.contact-information {
  margin-right: 50px;
}

.contact-info-item {
  border-radius: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px 20px;
  background-color: #fdf3e2;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .icon-box {
  margin-right: 20px;
}

.contact-info-item .icon-box img {
  max-width: 34px;
}

.contact-info-content {
  width: calc(100% - 54px);
}

.contact-info-content p {
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-info-content h3 {
  font-size: 18px;
  font-weight: 600;
}

.contact-us-form {
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 14px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 4px;
}


.contact-us-form .form-control,
.inquiry-form .form-control,
.filter-form .form-select 
, .select2 .select2-container  , div .select2 .select2-selection
  {
  padding: 12px;
  font-size: 16px;
  background-color: var(--white-color);
  border: none;
  border-bottom: 1px solid var(--divider-color);
  border-radius: 0 !important;
  color: var(--dark-divider-color);
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2) ;
}
.select2 .select2-selection , .select2-container--default .select2-selection--single .select2-selection__arrow , .select2-selection__rendered{
height: 49.6px !important;
}
.select2-selection__placeholder{
  color: var(--dark-divider-color) !important;
}
.select2 .select2-selection__clear{
  display: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 24px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after{
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #555;
      top: 50%;
    position: absolute;
    transform: translateY(-50%);
}
textarea.select2-search__field{
  line-height: 14px !important;
}
textarea.select2-search__field::placeholder{
color: #444 !important;
}



.form-select:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* .contact-us-form .form-control::placeholder  {
  color: var(--primary-color);
  text-transform: capitalize;
} */

.google-map .container-fluid {
  padding: 0;
}

.google-map-iframe {
  width: 100%;
  height: 450px;
}

.google-map-iframe iframe {
  width: 100%;
  height: 450px;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.select2-selection__rendered{
  flex-wrap: nowrap;
  overflow-x: auto;
}
.google-map-iframe iframe:hover {
  filter: grayscale(0);
}
ul.select2-selection__rendered{
  width: -webkit-fill-available;
  margin-bottom: 0 !important;
  height: fit-content !important;
    margin-top: -10px;
}
ul.select2-selection__rendered li{
  height: fit-content !important;
}

/***       35. 404 Page css       ***/

.error-page {
  padding: 60px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 60px;
}

.error-page .error-page-content {
  text-align: center;
}

.error-page-content-heading {
  margin-bottom: 30px;
}

.error-page-content-heading h2 {
  font-size: 44px;
}

.error-page-content-heading h2 span {
  color: var(--accent-color);
}

/*** ------------custom css-------------- ***/
.h-logo {
  height: 70px;
}
.bg-primary {
  background: var(--primary-color) !important;
}
.border-primary {
  border-color: var(--primary-color) !important;
}
.bg-accent {
  background: var(--accent-color) !important;
}
.header-top a {
  font-size: 14px !important;
}
header.main-header .header-sticky.active .header-top {
  background: var(--secondary-color) !important;
}

.worship-box {
  position: relative;
}

/* All items sticky behavior */
.worship-item {
  position: sticky;
  background-color: #fff1d8;
}

/* Bhawan 1 Sticky */
.worship-item:nth-child(1),
.top-120 {
  top: 120px;
}

/* Bhawan 2 Sticky */
.worship-item:nth-child(2) {
  top: 180px;
}

/* Bhawan 3 Sticky */
.worship-item:nth-child(3) {
  top: 240px;
}
.worship-image figure {
  position: relative;
}
.text-primary {
  color: var(--primary-color) !important;
}
.page-header {
  position: relative;
  overflow: hidden;
}
.page-header *:not(.offcanvas-md , .offcanvas , .offcanvas-header , .offcanvas-body , .offcanvas-backdrop) {
  position: relative;
}

body:has(.offcanvas-md.show) .page-header::after{
  content: none !important;
}
.page-header  .page-header-box{
  position: relative;
  z-index: 2;
}

/* ------ */



.page-header::after,
.dashboard-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* black shade */
  z-index: 1;
}
/* ----------------- */
.contact-info-item .icon-box {
  width: 50px;
  height: 50px;
  background: var(--secondary-color); /* dark shade */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .icon-box i {
  color: var(--white-color);
  font-size: 20px;
}

.blog-sidebar {
  position: sticky;
  top: 130px;
}
.right-bottom-ad {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 350px;
  height: 180px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  overflow: hidden;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(120px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.ad-close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
  line-height: 24px;
  padding: 0;
}

/* Banner wrap */
.ad-banner-wrap {
  position: relative;
  width: 100%;
  height: 180px;
}

/* Image */
.ad-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

/* Gradient overlay */
.ad-banner-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* Sponsored badge */
.ad-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  z-index: 2;
}

/* Button overlay */
.ad-overlay {
  position: absolute;
  bottom: 5px;
  left: auto;
  right: 5px;
  text-align: center;
  z-index: 2;
}

/* Mobile hide (optional) */
@media (max-width: 768px) {
  .member-table table {
    width: max-content !important;
  }
  .right-bottom-ad {
    display: none;
  }
}
/* Sponsored badge */
.ad-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-divider-color);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 3;
}
.right-bottom-ad .ad-badge {
  position: absolute;
  top: 5px;
  left: 15px;
}
.our-ads .ad-badge {
  background-color: var(--secondary-color);
}

/* Transparent modal content */
.modal-content {
  border: none;
}
.adSectionSwiper img {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}
.adSectionSwiper {
  background-color: var(--accent-color);
}
.profile-badges .badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 20px;
}
.profile-badges .badge i {
  margin-right: 6px;
}
.profile-info-minimal {
  font-size: 14px;
  color: #333;
}

.info-row {
  display: grid;
  grid-template-columns: 18px 90px 1fr;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed #eaeaea;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row i {
  font-size: 13px;
  color: var(--accent-color);
}

.info-row .label {
  font-size: 13px;
  color: #777;
}

.info-row .value {
  font-weight: 500;
  color: #222;
}


/* Mobile even tighter */
@media (max-width: 576px) {
  .family-tree-modal-content .boc-edit-form-header .boc-edit-form-close {
    display: block !important;
  }
  .hero-slider-layout .hero-slide {
  height: calc(100vh - 30px) !important;
}
.mission-img{
  padding: 0 !important;
}
.page-header-box h1{
  width: 100%;
}
.booking-sidebar-premium{
  padding: 14px !important;
}
.leadership-table-wrap{
  padding: 0 !important;
  background-color: transparent !important;
}

  .offcanvas-lg{
    max-width: 84% !important;
  }
  .offcanvas-md{
     max-width: 84% !important;
  }
  .text-anime-style-2{
    display: block;
  }
  .adSectionSwiper{
    border-radius: 12px !important;
  }
  .info-row {
    grid-template-columns: 16px 80px 1fr;
    font-size: 13px;
  }
  .page-header-box {
    flex-wrap: wrap;
    justify-content: center !important;
    margin-bottom: 12px !important;
  }
  .profile-img,
  .father-img {
    max-width: 150px !important;
    max-height: 190px !important;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
  }
  .contact-box {
    flex-direction: column !important;
  }
  .row:has(.dashboard-sidebar){
  row-gap: 0 !important;
}
}
.border-t-dashed {
  border-top: 1px dashed rgba(0, 0, 0, 0.3);
}

/* ------------------------- */
/* Images */
.profile-img,
.father-img {
  max-width: 200px;
  max-height: 280px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.profile-img:hover,
.father-img:hover {
  transform: scale(1.05);
}

/* Info lines */
.info-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}
.info-line span {
  color: #666;
}
.info-line strong {
  color: #000;
}

/* Contact box */
.contact-box {
  padding: 12px;
  border-radius: 12px;
}
.contact-box p {
  padding: 4px 10px;
  border-radius: 20px;
  margin: 0 0 6px;
  font-size: 0.9rem;
  background-color: var(--accent-color);
}
.contact-box i {
  color: var(--white-color);
  margin-right: 6px;
}
.contact-box a {
  color: var(--white-color);
  text-decoration: none;
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: none;
}
.contact-box p:hover {
  background-color: var(--primary-color);
}

/* Modal cleanup */
.modal-header,
.modal-footer {
  border: none;
}

/* ------------------- */

.booking-form-modern {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.booking-form-modern h3 {
  font-weight: 700;
  color: #222;
}

.booking-form-modern label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.booking-form-modern .form-control,
.booking-form-modern .form-select {
  border-radius: 12px;
  padding: 10px 14px;
}

.booking-form-modern .btn-primary {
  border-radius: 30px;
  font-weight: 600;
}
/* Availability message */
.availability-text {
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Animation */
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }

}


.booking-sidebar {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  position: sticky;
  top: 120px;
}

.booking-header {
  margin-bottom: 20px;
}

.booking-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.booking-header p {
  font-size: 13px;
  color: #777;
}

/* Items */
.booking-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.booking-item:last-of-type {
  border-bottom: none;
}

.booking-item i {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 6px;
}

.booking-content span {
  font-size: 12px;
  color: #777;
}

.booking-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.booking-content small {
  color: #999;
  font-size: 12px;
}

.booking-content input,
.booking-content select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  margin-top: 4px;
  background: transparent;
}

/* Button */


.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,155,60,0.4);
}


.booked-date{
  background-color: #ff4d4d !important;
  color: #fff !important;
  border-radius: 50%;
}
.booking-sidebar-premium {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: 120px;
}

.sidebar-header h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.sidebar-header p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.premium-btn {
  padding: 12px 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.premium-btn i {
  font-size: 16px;
}

.btn-outline-primary.premium-btn:hover {
  background: var(--accent-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.btn-primary.premium-btn:hover {
  transform: translateY(-2px);
}
.btn-primary{
  background-color: var(--primary-color);
  border-color: transparent;
}
.btn-primary:hover{
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.divider {
border-top: 1px dashed rgba(0, 0, 0, 0.1);
margin: 12px auto;
}
.divider-b {
border-bottom: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

.sidebar-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
  background: var(--white-color);
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 16px;
}

/* Availability Table */
.availability-table {
  border-collapse: separate;
  border-spacing: 0 10px; /* row gap */
 margin-bottom: 0;
}
.table-responsive{
   background-color: var(--white-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 2px;
  border-radius: 12px;
  margin: 10px 0;
}

/* Header */
.availability-table thead th {
  font-size: 13px;
  color: #777;
  font-weight: 600;
  border: none;
  padding-bottom: 6px;
}

/* Row Card */
.availability-table tbody tr , .availability-table thead tr {
  background: #fff;
  border-radius: 14px;
  position: relative;
}

/* Dashed separator between rows */
.availability-table tbody tr::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -7px;
  border-bottom: 1px dashed #dcdcdc;
}
/* Dashed separator between rows */
.availability-table thead tr::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -7px;
  border-bottom: 1px dashed #dcdcdc;
}

/* Remove last dashed line */
.availability-table tbody tr:last-child::after {
  display: none;
}

/* Cells */
.availability-table tbody td {
  vertical-align: middle;
  border: none;
  padding: 4px 14px;
}

/* Rounded corners */
.availability-table tbody tr td:first-child {
  border-radius: 14px 0 0 14px;
}

.availability-table tbody tr td:last-child {
  border-radius: 0 14px 14px 0;
}



/* Title */
.availability-result h6 {
  font-size: 15px;
  font-weight: 600;
}

/* Buttons */
.btn-outline-primary {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}
.form-control:focus{
  box-shadow:  none !important;
}








/* -------------table member-------- */
.member-table thead tr th {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
  padding: 4px !important;
}
.member-table tbody tr th,
.member-table tbody tr td {
  color: var(--dark-divider-color);
  font-weight: 500;
  font-size: 14px;
}

.member-table tbody tr:nth-child(odd) td,
.member-table tbody tr:nth-child(odd) th {
  background-color: #fff1d8 !important;
}
.member-table tbody tr td button {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 60px !important;
  border: none;
  font-size: 12px !important;
}
.member-table tbody tr td button:hover,
.member-table tbody tr td button:active {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}
.family-tree-modal-content {
  height: 500px !important;
}
.family-tree-modal-content .boc-edit-form-header {
  background-color: var(--secondary-color) !important;
}
.family-tree-modal-content .boc-edit-form-header h1 {
  font-size: 18px !important;
}
/* .family-tree-modal-content .boc-edit-form-header .boc-edit-form-close, */
.family-tree-modal-content .boc-edit-form-instruments {
  display: none !important;
}
.family-tree-modal-content .boc-edit-form-fields {
  margin-top: 50px !important;
}
/* Modern browsers only */
.boc-form-field:has(input[data-binding="img"]) {
  display: none;
}

.family-tree-modal-content svg rect {
  cursor: pointer !important;
}

#signin-model .modal-content {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

#signin-model .input-premium .input-group-text {
  background: var(--secondary-color);
  border-right: 0 !important;
  border-radius: 0 !important;
  padding: 12px 16px;
  font-size: 18px;
  color: var(--white-color) !important;
}

#signin-model .input-premium .form-control {
  padding: 12px;
  font-size: 16px;
  background-color: var(--white-color);
  border: none;
  border-bottom: 1px solid var(--divider-color);
  border-radius: 0;
  color: var(--dark-divider-color);
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
#signin-model .input-premium .form-control:focus {
  box-shadow: none;
}

#signin-model .btn-carrow::before {
  content: none !important;
}

.btn-default.btn-carrow {
  width: 100% !important;
  padding: 14px 20px !important;
}

#signin-model .btn-login:hover {
  opacity: 0.9;
}
button:focus {
  box-shadow: none !important;
}
.otp-input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.2s;
}

.otp-input:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.input-premium .input-group-text {
  background: #f9fafb;
  border-right: 0;
}

.input-premium .form-control {
  border-left: 0;
}
/* ------------- */
.user-dropdown-card {
  position: absolute;
  top: 120%;
  right: 0;
  width: 200px;
  background: var(--white-color);
  border-radius: 12px;
  padding: 0px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
  overflow: hidden !important;
}

.user-dropdown:hover .user-dropdown-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-card .dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--dark-divider-color);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.user-dropdown-card .dropdown-item i {
  color: var(--primary-color);
}

.user-dropdown-card .dropdown-item:hover,
.user-dropdown-card .dropdown-item:hover i {
  background: var(--accent-color);
  color: var(--white-color) !important;
}

.user-dropdown-card i {
  width: 18px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}
/* --------------- */
.card-ui {
  background: var(--white-color);
  border-radius: 16px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text);
  margin-bottom: 6px;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  background: var(--primary-color);
  color: var(--white-color) !important;
}

.membership-card {
  background: linear-gradient(135deg, #111827, #374151);
  color: var(--white-color);
}
.welcome-card {
  background: #fff1d8;
  color: var(--dark-divider-color);
  border-radius: 18px;
}

.welcome-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(243, 16, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.welcome-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(243, 16, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.profile-card {
  border-radius: 16px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px;
  border-radius: 12px;
}

.info-item i {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 3px;
}

.info-item small {
  color: #6b7280;
  font-size: 12px;
}

.info-item p {
  margin: 0;
  font-weight: 500;
  color: #111827;
}

.edit-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(243, 16, 23, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
}
table .badge {
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 20px;
}


/* ------------- */
.member-card {
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 16px !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 2px !important;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.member-header i {
  font-size: 28px;
  color: #6c757d;
}

.member-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.member-relation {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 10px;
}

.member-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.member-info li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  color: #555;
}

.member-info i {
  color: var(--primary-color);
  margin-top: 3px;
  line-height: unset !important ;
}
.fs-14 {
  font-size: 14px !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 1px;
}
.member-card .dropdown-menu , .membership-card .dropdown-menu {
  border-radius: 10px;
  font-size: 14px;
  padding: 0;
  background: var(--white-color);
  overflow: hidden;
  left: auto !important;
  right: 0 !important;
  color: var(--dark-divider-color) !important;
}
.member-card .dropdown-menu i  , .membership-card .dropdown-menu i {
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #f5f7fa;
}
#addMemberModal label {
  font-size: 14px !important;
  color: var(--dark-divider-color) !important;
}
#addMemberModal input+label , #addMemberModal select+label , #addMemberModal textarea+label{
  color: #fff !important;
}

.logout-modal {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logout-icon {
  width: 70px;
  height: 70px;
  background: rgba(220, 53, 69, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.family-membership-cart .membership-card {
  background: #fff; /* Gradient for premium look */
  border: 2px dashed var(--white-color); /* Dashed border */
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 2px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.family-membership-cart .membership-card:hover {
  transform: translateY(-5px);
}

.status-badge {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.8rem;
}

.family-membership-cart .membership-card p,
.family-membership-cart .membership-card small,
.family-membership-cart .membership-card b {
  color: #000;
}

.card-center {
  font-size: 0.9rem;
}

.card-bottom {
  font-size: 0.85rem;
}

/* ----------- */
.profile-premium {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8f9fc);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Avatar */
.profile-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

/* Info Box */
.info-box {
  display: flex;
  gap: 15px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0px 0px 1px rgba(0, 0, 0, 0.09);
  transition: all 0.3s ease;
}

.info-box i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-top: 4px;
}

.info-box label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 2px;
  display: block;
}

.info-box p {
  margin: 0;
  font-weight: 500;
  color: #111827;
}
.family-tree-modal-content  svg rect , .family-tree-modal-content  image , .family-tree-modal-content  text{
  cursor: pointer !important;
}
/* -------------------- */
/* Date Badge on top-right corner of image */
.campaign-item .date-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Organizer heading */
.campaign-item .organizer {
  display: inline-block;
  /* background-color: #f1f1f1; */
  color: var(--dark-divider-color);
  font-size: 16px !important;
  /* padding: 6px 12px; */
  border-radius: 6px;
  font-weight: 500;
  margin-top: 10px;
}
.campaign-item .location {
  display: inline-block;
  /* background-color: #dfe6e9; */
  color: var(--primary-color);
  /* padding: 5px 10px; */
  border-radius: 6px;
  font-weight: 400;
  margin-top: 5px;
  font-size: 0.9rem;
  margin-bottom: 0;
}
/* ---------- */.team-content {
  padding: 18px 15px;
}

/* Name */
.team-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Designation + Tenure row */
.designation-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}

.designation {
  color: #555;
  font-weight: 500;
}

.tenure {
  color: #999;
  font-size: 12px;
  border-left: 1px solid #ddd;
  padding-left: 10px;
}

/* Contact row */
.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f6f6f6;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-row i {
  color: var(--secondary-color); /* premium gold */
}

.contact-row a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Hover effect */
.premium-team-card:hover .contact-row {
  background: var(--secondary-color);
}

.premium-team-card:hover .contact-row i,
.premium-team-card:hover .contact-row a {
  color: #fff;
}

/* Mobile fix */
@media (max-width: 575px) {
  .team-content h3 {
    font-size: 17px;
  }
}

.btn-outline-primary{
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}
.btn-outline-primary:hover{
color: var(--white-color) !important;
}
/* ---- */
.bhawanbooking{
  margin-top: -140px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 14px;
  border-radius:0 0  12px 12px;
}

/***     36. responsive css       ***/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }
}

.lux-location i{
  opacity: 0.85;
  margin-right: 10px;
  color: var(--primary-color);
}

/* INFO BAR */
.lux-info {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 18px;
}

.lux-info div {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
 box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 12px 2px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}

/* SECTIONS */
.lux-section {
  margin: auto;
}

.lux-section h2 {
  font-size: 30px;
  margin-bottom: 28px;
}

.muted-bg {
  background: #fafafa;
  border-radius: 50px;
}

/* ROOMS */
.lux-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 28px;
}

.lux-room-card {
  background: #fff;
  padding: 30px;
  border-radius: 26px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.room-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f3efe7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.room-icon i {
  color: var(--primary-color);
  font-size: 22px;
}

.lux-room-card ul {
  margin-top: 14px;
  padding-left: 18px;
}

/* AMENITIES */
.lux-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 16px;
}

.lux-amenities span {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* EVENTS */
.lux-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 16px;
}

.lux-event-grid div {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}



@media only screen and (max-width: 991px) {
  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn .btn-default {
    display: none;
  }

  .readmore-btn {
    width: 40px;
    height: 40px;
  }

  .readmore-btn img {
    max-width: 12px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-row .section-title {
    max-width: 100%;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    margin-bottom: 15px;
  }

  .section-title h1,
  .hero-slide h2 {
    font-size: 50px !important;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .section-btn {
    text-align: left;
    margin-top: 20px;
  }

  .hero {
    padding: 150px 0;
    margin-top: -85px;
    min-height: 100%;
  }

  .hero-slider-layout .hero-slide {
    position: relative;
    min-height: 100%;
    /* padding: 150px 0; */
  }

  .hero-slider-layout .hero-pagination {
    bottom: 110px;
  }

  .our-scrolling-ticker {
    padding: 6px 0;
  }

  .our-scrolling-ticker .scrolling-ticker-box {
    --gap: 30px;
  }

  .our-scrolling-ticker .scrolling-content span {
    font-size: 22px;
  }

  .our-scrolling-ticker .scrolling-content span img {
    width: 100%;
    max-width: 26px;
    margin-right: 30px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-image {
    width: 100%;
    /* max-width: 650px; */
    margin: 0 auto;
    /* margin-bottom: 30px; */
  }

  .about-content {
    margin-left: 0px;
  }

  .about-content-body {
    margin-bottom: 30px;
  }

  .join-worship {
    padding: 50px 0;
  }

  .join-worship .section-title {
    max-width: 350px;
  }

  .highlighted-worship-item {
    margin-bottom: 30px;
  }

  .highlighted-worship-image a img {
    aspect-ratio: 1 / 0.78;
  }

  .highlighted-worship-body {
    padding: 15px;
  }

  .highlighted-worship-content h3 {
    font-size: 24px;
  }

  .worship-image {
    width: 40%;
  }

  .worship-body {
    width: calc(100% - 40%);
  }

  .worship-content {
    margin-bottom: 20px;
  }

  .our-counter {
    padding: 0 15px;
  }

  .counter-box {
    border-radius: 0 0 50px 0;
    padding: 40px 0px 10px;
  }

  .counter-item {
    margin-bottom: 30px;
    padding-right: 20px;
  }

  .counter-box .col-lg-3:nth-child(2n + 2) .counter-item {
    border: none;
    padding-right: 0;
  }

  .counter-title {
    margin-bottom: 15px;
  }

  .counter-title h2 {
    font-size: 46px;
  }

  .counter-content h3 {
    margin-bottom: 15px;
  }

  .our-mission {
    padding: 50px 0;
  }

  .mission-content {
    margin-bottom: 30px;
  }

  .mission-content-body {
    margin-bottom: 30px;
  }

  .mission-img {
    padding: 0 0 70px 70px;
  }

  .mission-img img {
    aspect-ratio: 1 / 0.98;
  }

  .mission-life-circle img {
    max-width: 160px;
  }

  .our-services {
    padding: 50px 0 20px;
  }

  .service-item {
    padding: 25px 20px;
  }

  .service-item .icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .service-item .icon-box img {
    max-width: 30px;
  }

  .service-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .service-ticker .scrolling-ticker-box {
    --gap: 20px;
    margin-bottom: -12px;
  }

  .service-ticker .scrolling-content span {
    font-size: 80px;
  }

  .service-ticker .scrolling-content span img {
    max-width: 40px;
    margin-right: 20px;
  }

  .our-ministries {
    padding: 50px 0 25px;
  }

  .ministries-item,
  .ministries-image a img {
    border-radius: 12px;
  }

  .our-ministries-footer {
    margin-top: 10px;
  }

  .ministries-btn {
    bottom: 30px;
    right: 30px;
  }

  .our-sermons {
    padding: 25px 0 20px;
  }

  .sermons-item {
    border-radius: 0;
  }

  .sermons-meta h3 {
    font-size: 18px;
  }

  .sermons-body {
    border-radius: 0;
    padding: 18px;
  }

  .sermons-list ul li {
    font-size: 14px;
  }

  .sermons-list ul li i {
    font-size: 14px;
  }

  .verse-church {
    background-size: 75% auto;
    padding: 50px 0;
  }

  .verse-church-content .section-title {
    margin-bottom: 30px;
  }

  .cta-box-btn::before {
    bottom: -30px;
  }

  .our-event {
    padding: 50px 0;
  }

  .event-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .event-image img {
    aspect-ratio: 1 / 0.95;
  }

  

  .event-body {
    margin-bottom: 30px;
  }

  .event-footer {
    margin-bottom: 30px;
  }

  .donate-now {
    padding: 50px 0;
  }

  .video-play-button a {
    width: 64px;
    height: 64px;
  }

  .video-play-button a i {
    font-size: 24px;
  }

  .donate-box {
    padding: 30px;
  }

  .donate-form .form-control {
    padding: 15px 20px;
  }

  .donate-form .donate-value label {
    padding: 15px;
  }

  .our-blog,
  .our-ads,
  .profile-sec {
    padding: 50px 0 50px;
  }

  .blog-item .post-featured-image {
    margin-bottom: 20px;
  }

  .post-item-body {
    max-width: 100%;
  }

  .post-item-footer a.read-more-btn {
    font-size: 18px;
    padding-right: 40px;
  }

  .post-item-footer a.read-more-btn::after {
    background-size: 10px auto;
    width: 30px;
    height: 30px;
  }

  .subscribe-newsletter {
    padding: 50px 0;
  }

  .main-footer {
    padding: 50px 0 0;
  }

  .about-footer {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .about-footer-content,
  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-social-links ul li a i {
    font-size: 22px;
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 20px;
  }

  .footer-contact-details .footer-info-box {
    padding-left: 35px;
    margin-bottom: 20px;
  }

  .footer-copyright {
    padding: 20px 0;
  }

  .footer-privacy-policy ul li {
    margin-right: 20px;
  }

  .page-header {
    padding: 130px 0 50px;
    margin-top: -85px;
  }

  .page-header-box h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .page-header-box ol {
    padding: 8px 15px;
  }

  .vision-mission {
    padding: 50px 0;
  }

  .vision-mission-nav {
    margin-bottom: 30px;
  }

  .vision-mission-nav .nav-tabs {
    padding: 10px;
  }

  .vision-mission-nav ul li {
    margin-right: 20px;
  }

  .vision-mission-nav ul li .nav-link {
    padding: 12px 20px;
  }

  .vision-mission-content {
    margin-bottom: 30px;
  }

  .vision-mission-content .section-title {
    max-width: 100%;
  }

  .vision-mission-body h3 {
    margin-bottom: 20px;
  }

  .vision-mission-image {
    text-align: center;
    margin-left: 0px;
  }

  .vision-mission-image img {
    aspect-ratio: 1 / 0.8;
  }

  .what-we-do {
    padding: 50px 0 20px;
  }

  .what-we-item {
    padding: 15px;
  }

  .what-we-item .icon-box {
    margin-bottom: 30px;
  }

  .what-we-item .icon-box img {
    max-width: 70px;
  }

  .what-we-content h3 {
    margin-bottom: 20px;
  }

  .our-team {
    background: linear-gradient(
      180deg,
      var(--accent-color) 32%,
      var(--white-color) 32%
    );
    padding: 50px 0 20px;
  }

  .team-image img {
    aspect-ratio: 1 / 1;
  }

  .pastors-message {
    padding: 20px 0 50px;
  }

  .pastors-image {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .pastors-image img {
    aspect-ratio: 1 / 0.9;
  }

  .pastors-content-body {
    margin-bottom: 30px;
  }

  .pastors-signature-img img {
    max-width: 150px;
  }

  .core-value {
    padding: 50px 0;
  }

  .service-single-faqs {
    margin-bottom: 30px;
  }

  .core-value-slider {
    margin-left: 0px;
  }

  .core-value-slider-img img {
    aspect-ratio: 1 / 0.8;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .service-single-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .service-single-btn {
    left: 20px;
    right: 20px;
  }

  .service-single-slider {
    margin-bottom: 30px;
  }

  .service-entry {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .service-entry h2 {
    font-size: 36px;
  }

  .service-catagery-list {
    padding: 20px;
    margin-bottom: 30px;
  }

  .service-catagery-list h3 {
    margin-bottom: 20px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .cta-contact-item .icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .cta-contact-item .icon-box img {
    max-width: 40px;
  }

  .cta-contact-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .cta-contact-content {
    margin-bottom: 20px;
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry blockquote {
    background: var(--secondary-color) url('../images/icon-blockquote.svg')
      no-repeat 30px 35px;
    background-size: 45px;
    padding: 25px 25px 25px 90px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-entry h2 {
    font-size: 36px;
  }

  .post-entry ul li {
    font-size: 16px;
  }

  .post-tag-links {
    padding: 0 0px;
  }

  .post-tags {
    margin-bottom: 10px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .post-tags .tag-links a {
    font-size: 16px;
    padding: 8px 15px;
  }

  .page-sermons {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-sermons-single {
    padding: 50px 0;
  }

  .page-sermons-single .row {
    flex-direction: column-reverse;
  }

  .sermons-single-content {
    margin-right: 0;
  }

  .sermons-audio-player {
    padding: 20px 15px;
  }

  .sermons-featured-image {
    margin-bottom: 30px;
  }

  .sermons-entry {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .sermons-entry h2 {
    font-size: 36px;
  }

  .sermons-social-sharing-title h3 {
    font-size: 22px;
  }

  .about-sermons-sidebar {
    padding: 18px;
    margin-bottom: 30px;
  }

  .about-sermons-title {
    margin-bottom: 30px;
  }

  .about-sermons-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .page-campaign {
    padding: 50px 0;
  }

  .campaign-body {
    padding: 20px;
  }

  .campaign-btn a.read-more-btn {
    font-size: 18px;
    padding-right: 40px;
  }

  .campaign-btn a.read-more-btn::after {
    background-size: 10px auto;
    width: 30px;
    height: 30px;
  }

  .page-campaign-single {
    padding: 50px 0;
  }

  .campaign-single-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .campaign-donate-box .skills-progress-bar {
    padding: 20px;
  }

  .campaign-donate-box {
    margin-bottom: 30px;
  }

  .campaign-donate-content {
    padding: 20px 40px;
  }

  .campaign-donate-item h3 {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .campaign-donate-item p {
    font-size: 18px;
  }

  .campaign-entry {
    margin-bottom: 30px;
  }

  .campaign-entry h2 {
    font-size: 36px;
  }

  .campaign-gallery img {
    aspect-ratio: 1 / 0.8;
  }

  .campaign-single-faqs {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .campaign-sidebar-title {
    margin-bottom: 20px;
  }

  .campaign-donate-value {
    margin-bottom: 30px;
  }

  .donate-payment-method {
    margin-bottom: 30px;
  }

  .payment-method-title {
    margin-bottom: 20px;
  }

  .donar-personal-info {
    margin-bottom: 30px;
  }

  .page-ministries {
    padding: 50px 0;
  }

  .page-ministry-single {
    padding: 50px 0;
  }

  .ministry-single-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .ministry-entry {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .ministry-entry h2 {
    font-size: 36px;
  }

  .ministry-entry ul li {
    width: calc(33.33% - 13.33px);
  }

  .ministry-entry-img-1 img,
  .ministry-entry-img-2 img {
    aspect-ratio: 1 / 0.65;
  }

  .ministry-single-box {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-gallery-box .photo-gallery figure,
  .page-gallery-box .photo-gallery img {
    aspect-ratio: 1 / 0.8;
    border-radius: 12px;
  }

  .page-contact-us {
    padding: 50px 0;
  }

  .contact-information {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .contact-us-form {
    padding: 14px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 500px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 30px;
  }

  .error-page-content-heading {
    margin-bottom: 20px;
  }

  .error-page-content-heading h2 {
    font-size: 36px;
  }
   .top-lg-0{
    top: 0 !important ;
    position: static !important;
  }
  .offcanvas-body .card-ui{
    border: none !important;
    box-shadow:  none !important;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1,
  .hero-slide h2 {
    font-size: 40px !important;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .hero-content-body .btn-default.btn-highlighted {
    margin-left: 0px;
    margin-top: 15px;
  }

  .our-scrolling-ticker {
    padding: 6px 0;
  }

  .our-scrolling-ticker .scrolling-ticker-box {
    --gap: 20px;
  }

  .our-scrolling-ticker .scrolling-content span {
    font-size: 20px;
  }

  .our-scrolling-ticker .scrolling-content span img {
    max-width: 22px;
    margin-right: 20px;
  }

  .about-image {
    max-width: 100%;
    /* padding-top: 50px; */
  }

  .about-img-1 {
    width: 100%;
  }

  .about-img-2 {
    width: 200px;
  }

  .about-img-1 figure,
  .about-img-1 img {
    border-radius: 20px 20px 50px 20px;
  }

  .about-content-body {
    gap: 20px;
  }

  .about-list-item {
    width: 100%;
  }

  .highlighted-worship-body {
    bottom: 20px;
    left: 20px;
    right: 20px;
    border-radius: 20px;
    padding: 10px;
  }

  .highlighted-worship-image a,
  .highlighted-worship-image a img {
    aspect-ratio: 1 / 0.98;
  }

  .highlighted-worship-content h3 {
    font-size: 20px;
  }

  .worship-image a,
  .worship-image img {
    aspect-ratio: 1 / 0.98;
  }

  .worship-body {
    margin-left: 20px;
  }

  .worship-content {
    margin-bottom: 10px;
  }

  .worship-content h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
  }

  .worship-btn .readmore-btn {
    width: 30px;
    height: 30px;
  }

  .counter-item {
    border-right: none;
    padding-right: 0px;
  }

  .counter-title {
    margin-bottom: 10px;
  }

  .counter-title h2 {
    font-size: 36px;
  }

  .counter-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .mission-img {
    padding: 0 0 60px 60px;
  }

  .mission-img figure,
  .mission-img img {
    aspect-ratio: 1 / 1.15;
    border-radius: 20px 20px 50px 20px;
  }

  .mission-life-circle img {
    max-width: 140px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-ticker .scrolling-ticker-box {
    margin-bottom: -9px;
  }

  .service-ticker .scrolling-content span {
    font-size: 60px;
  }

  .ministries-image a img {
    aspect-ratio: 1 / 1.2;
  }

  .ministries-content h3 {
    font-size: 18px;
  }

  .sermons-title h2 {
    font-size: 18px;
  }

  .sermons-list ul li {
    margin-bottom: 10px;
  }

  .verse-church {
    position: relative;
    background-size: cover;
  }

  .verse-church::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--white-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
  }

  .verse-church-content {
    position: relative;
    z-index: 1;
  }

  .verse-church-btn::before {
    right: 0;
    transform: translateX(0%);
  }

  @keyframes versearrowmoveobjects {
    50% {
      right: 8%;
    }
  }

  .cta-box-content .section-title {
    margin-bottom: 30px;
  }

  .cta-box-btn {
    text-align: left;
  }

  .cta-box-btn::before {
    display: none;
  }

  .event-image figure,
  .event-image img {
    aspect-ratio: 1 / 1.15;
    border-radius: 20px 20px 50px 20px;
  }

  .event-item {
    margin-bottom: 20px;
  }

  .video-play-button {
    margin: 30px 0 50px;
  }

  .donate-box {
    padding: 20px;
  }

  .blog-item .post-featured-image,
  .blog-item .post-featured-image img {
    border-radius: 12px;
  }

  .post-item-body h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .post-item-footer a.read-more-btn {
    font-size: 16px;
    padding-right: 35px;
  }

  .post-item-footer a.read-more-btn::after {
    top: -2px;
    background-size: 8px auto;
    width: 24px;
    height: 24px;
  }

  .footer-links {
    margin-bottom: 40px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-copyright-text {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-privacy-policy ul {
    text-align: center;
  }

  .page-header-box h1 {
    font-size: 36px;
  }

  .page-header-box ol {
    padding: 6px 10px;
  }

  .vision-mission-nav .nav-tabs {
    justify-content: center;
  }

  .vision-mission-nav ul li {
    margin-right: 5px;
  }

  .vision-mission-nav ul li .nav-link {
    font-size: 14px;
    padding: 10px 15px;
  }

  .vision-mission-image figure,
  .vision-mission-image img {
    border-radius: 10px 10px 50px 10px;
  }

  .what-we-item .icon-box {
    margin-bottom: 20px;
  }

  .what-we-item .icon-box img {
    max-width: 60px;
  }

  .what-we-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .our-team {
    background-image: linear-gradient(
      180deg,
      var(--accent-color) 20%,
      var(--white-color) 20%
    );
  }

  .team-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .pastors-image figure,
  .pastors-image img {
    aspect-ratio: 1 / 1.1;
    border-radius: 10px 10px 50px 10px;
  }

  .pastors-signature-img img {
    max-width: 130px;
  }

  .core-value-faqs-accordion .accordion-item .accordion-button {
    font-size: 18px;
  }

  .core-value-slider-img,
  .core-value-slider-img img {
    aspect-ratio: 1 / 0.95;
    border-radius: 10px 10px 50px 10px;
  }

  .core-value-btn .core-value-button-next,
  .core-value-btn .core-value-button-prev {
    width: 40px;
    height: 40px;
  }

  .service-slider-image img {
    aspect-ratio: 1 / 0.8;
    border-radius: 0 0 50px 0;
  }

  .service-single-btn .service-single-button-next,
  .service-single-btn .service-single-button-prev {
    position: relative;
    width: 40px;
    height: 40px;
  }

  .service-entry h2 {
    font-size: 28px;
  }

  .service-entry h3 {
    font-size: 18px;
  }

  .service-entry ul {
    display: block;
  }

  .service-entry ul li {
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .service-entry ul li:last-child {
    margin-bottom: 0;
  }

  .service-entry ul li:before {
    font-size: 18px;
    top: 4px;
  }

  .service-catagery-list h3 {
    margin-bottom: 18px;
  }

  .cta-contact-content h2 {
    font-size: 26px;
  }

  .post-single-meta ol li i {
    font-size: 18px;
  }

  .post-image figure,
  .post-image img {
    aspect-ratio: 1 / 0.7;
    border-radius: 12px;
  }

  .post-entry blockquote {
    background: var(--secondary-color) url(../images/icon-blockquote.svg)
      no-repeat 20px 20px;
    background-size: 35px;
    padding: 55px 16px 16px 16px;
  }

  .post-entry h2 {
    font-size: 28px;
  }

  .tag-links {
    font-size: 20px;
  }

  .sermons-featured-image img {
    aspect-ratio: 1 / 0.8;
  }

  .sermons-entry h2 {
    font-size: 28px;
  }

  .sermons-social-sharing {
    display: block;
  }

  .sermons-social-sharing-title {
    margin-bottom: 20px;
  }

  .sermons-social-sharing-list {
    text-align: left;
  }

  .sermons-social-sharing-title h3 {
    font-size: 20px;
  }

  .about-sermons-sidebar {
    padding: 14px;
  }

  .about-sermons-title h3 {
    font-size: 18px;
  }

  .about-sermons-item .icon-box {
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .about-sermons-item .icon-box i {
    font-size: 20px;
  }

  .about-sermons-content {
    width: calc(100% - 55px);
  }

  .campaign-content h2 {
    font-size: 18px;
  }

  .campaign-btn a.read-more-btn {
    font-size: 16px;
    padding-right: 35px;
  }

  .campaign-btn a.read-more-btn::after {
    top: -2px;
    background-size: 8px auto;
    width: 24px;
    height: 24px;
  }

  .campaign-donate-content {
    padding: 10px 20px;
  }

  .campaign-featured-image img {
    aspect-ratio: 1 / 0.8;
  }

  .campaign-donate-content {
    border-radius: 0 0 50px 0;
    gap: 20px;
  }

  .campaign-donate-item {
    width: calc(33.33% - 13.33px);
  }

  .campaign-donate-item h3 {
    font-size: 26px;
  }

  .campaign-donate-item p {
    font-size: 16px;
  }

  .campaign-entry h2 {
    font-size: 28px;
  }

  .campaign-entry ul {
    display: block;
  }

  .campaign-entry ul li {
    width: 100%;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 25px;
  }

  .campaign-entry ul li:last-child {
    margin-bottom: 0;
  }

  .campaign-entry ul li:before {
    font-size: 18px;
    top: 4px;
  }

  .campaign-single-sidebar {
    padding: 20px;
  }

  .campaign-sidebar-title h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .payment-method-title h3 {
    font-size: 18px;
  }

  .ministry-slider-image,
  .ministry-slider-image img {
    aspect-ratio: 1 / 0.8;
    border-radius: 0 0 50px 0;
  }

  .ministry-entry h2 {
    font-size: 28px;
  }

  .ministry-entry ul li {
    width: calc(50% - 10px);
    font-size: 16px;
    padding-left: 25px;
  }

  .ministry-entry ul li:before {
    font-size: 18px;
    top: 4px;
  }

  .ministry-entry-img-1 {
    margin-bottom: 20px;
  }

  .ministry-single-sidebar {
    padding: 20px;
  }

  .ministry-single-info {
    margin-bottom: 15px;
  }

  .ministry-single-info .icon-box i {
    font-size: 20px;
  }

  .ministry-single-info-content {
    width: calc(100% - 35px);
  }

  .ministry-single-info-content h3 {
    font-size: 18px;
  }

  .contact-info-item {
    margin-bottom: 20px;
    padding: 10px;
  }

  .contact-us-form {
    padding: 14px 18px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 400px;
  }

  .error-page-content-heading h2 {
    font-size: 28px;
  }
 
  .hero-slider-layout .hero-slide {
    height: calc(100vh - 30px) !important;
  }
}
@media (max-width: 576px) {
  .family-tree-modal-content .boc-edit-form-header .boc-edit-form-close {
    display: block !important;
    top: 160px;
  }
  .bhawanbooking{
    margin-top: -60px !important;
  }
  .inquiry-btn::before {
    content: none !important;
    padding-right: 20px !important;
  }
  .inquiry-btn {
    padding-right: 20px !important;
  }
}
.dashboard-sidebar{
  order: 2 !important;
}
.dashboard-sidebar + div{
  order: 1 !important;
}
@media 
(min-width:992px) {
  .top-sticky{
    position: sticky;
    top: 120px;
  }
   .page-header > * {
    position: relative;
  z-index: 2;
}
.dashboard-sidebar{
  order: 1 !important;
}
.dashboard-sidebar + div{
  order: 2 !important;
}
}
@media 
(min-width:768px) {
   .page-header > * {
    position: relative;
  z-index: 2;
}
.boc-edit-form-close{
  top:34px !important;
}
}
.family-tree-modal-content g.node.head rect  {
  fill: var(--secondary-color);
}

/* ------------------------------------------- */
/* Leadership table styles */
.leadership-table-wrap {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}
.leadership-table-wrap .table-header h4 {
  margin: 0 0 6px 0;
  color: var(--primary-color);
}
.leadership-table-wrap .table-header .muted {
  margin: 0 0 12px 0;
  color: #666;
  font-size: 14px;
}
.leadership-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.leadership-table thead th {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  color: var(--white-color);
  font-weight: 700;
  border: none;
  vertical-align: middle;
}
.leadership-table tbody td {
  padding: 12px 10px;
  vertical-align: middle;
  border-top: 1px solid #f1f1f1;
  color: var(--text-color);
}
.leadership-table tbody tr:nth-child(even) {
  background: #fbfbfb;
}
.leadership-table tbody tr:hover {
  background: linear-gradient(90deg, #fff7f7, #ffffff);
}
.leadership-table td:first-child {
  font-weight: 600;
  width: 60px;
}
.table-responsive {
  overflow-x: auto;
}
@media (max-width: 576px) {
  .leadership-table thead th {
    font-size: 13px;
  }
  .leadership-table tbody td {
    padding: 10px 8px;
    font-size: 13px;
  }
}

/* end leadership table styles */
/* Floating Scroll to Top Button */
/* ------------------------------------------- */

.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white-color);
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(243, 16, 23, 0.3);
  z-index: 999;
  animation: bounce-idle 2s infinite;
}

.floating-btn:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(243, 16, 23, 0.5);
}

.floating-btn.show {
  opacity: 1;
  visibility: visible;
}

.floating-btn:active {
  transform: translateY(-2px);
}

@keyframes bounce-idle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .floating-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

/* ------------------------------------------- */
.text-hover-primary:hover {
  color: var(--primary-color) !important;
}
.footer-copyright-text p.mb-0.text-white-50{
  text-align: right !important;
}
.text-justify{
  text-align: justify !important;
}
/* Available dates */
.flatpickr-day.available-date {
  background: #22c55e !important;
  color: #fff !important;
  border-radius: 50%;
  margin: 2px;
}

/* Booked / disabled dates */
.flatpickr-day.disabled,
.flatpickr-day.flatpickr-disabled {
  background: #e5e7eb !important;
  color: #9ca3af !important;
  cursor: not-allowed;
}
.team-image {
  position: relative;
}

.position-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.position-label.pastor {
  background: var(--primary-color);
}

.team-content {
  padding: 14px;
}

.team-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.team-content p i {
  color: var(--primary-color);
  margin-right: 4px;
}

.team-content p  {
 font-size: 14px !important;
}



/* ------------------ */

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    transition: transform 0.3s ease;
}



.building-card {
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.building-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.building-header {
    background-color: var(--white-color);
    color: var(--dark-divider-color);
    padding: 20px;
    border-bottom: 2px dashed rgba(0,0,0,0.2);
}

.building-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.building-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.building-body {
    padding: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #fdf3e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #1f2a38;
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1f2a38;
}

.info-content p {
    margin: 0;
    color: #555;
}

.contact-btn {
    background-color: #1f2a38;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #16212a;
}

@media (max-width: 992px) {
    .map-container iframe {
        height: 350px;
    }
    .leadership-table{
      width: max-content;
    }
.nav-item.dropdown.slicknav_parent.slicknav_open ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--dark-divider-color) !important;
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
    .building-body {
        padding: 20px;
    }
}
@media (min-width: 1140px) {
    .main-menu ul li a {
  padding: 14px 10px !important;
}
}

.checkbox-wrapper-25 {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
}

/* Hide default checkbox */
.checkbox-wrapper-25 input[type="checkbox"] {
  display: none;
}

/* Toggle background */
.toggle-label {
  position: relative;
  width: 50px;
  height: 25px;
  background-color: #ccc;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Ball inside toggle */
.toggle-ball {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* When checked */
input[type="checkbox"]:checked + .toggle-label {
  background-color: var(--primary-color);
}

input[type="checkbox"]:checked + .toggle-label .toggle-ball {
  transform: translateX(25px);
}

/* Yes/No text */
.toggle-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}
html:has(body.modal-open){
  overflow: hidden !important;
}


.adSectionSwiper  .swiper-slide .ad-item , .ad-image{
 display: block !important;
}

.line-clamp-2{
  overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}

.line-clamp-3{
  overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
}
.map-container iframe{
  height: 300px;
}
.header-sticky:has(.slicknav_nav[aria-hidden="false"]){
  background-color: var(--white-color) !important; 
}
.row{
  row-gap: 24px !important;
}

/* ----------- */
.bhawan-luxury {
  color: #333;
  line-height: 1.6;
}

.bhawan-section {
  border-bottom: 2px dashed #eaeaea;
  padding-bottom:24px ;
  margin-bottom: 24px
}

.bhawan-section:last-child {
  border-bottom: none;
}





.lux-location {
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.lux-location i {
  color: #e74c3c;
  margin-right: 0.5rem;
}


/* KEY INFO */
.lux-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  background: #f8f9fa;
  border-radius: 10px;
}

.lux-info div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lux-info i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 24px;
}

.lux-info span {
  font-weight: 500;
  color: #2c3e50;
}

/* History Section */



.history-content {
  line-height: 1.8;
}

.history-content h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.history-content p {
  margin-bottom: 1.2rem;
  text-align: justify;
}

.history-content ul {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1rem;
}

.history-content li {
  margin-bottom: 0.5rem;
  position: relative;
}

.history-content li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.history-content strong {
  color: #2c3e50;
  font-weight: 600;
}

.note-text {
  font-style: italic;
  color: #7f8c8d;
  background: #fff;
  padding: 1rem;
  border-left: 4px solid var(--secondary-color);
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {

 
  
  .lux-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  

}
.metrimonial-toggelcart label{
  font-size: 12px !important;
}
.metrimonial-toggelcart{
display: flex !important;
gap: 8px !important;
align-items: center;
margin-right: 4px;
}
.metrimonial-toggelcart .toggle-ball{
  width: 14px !important;
  height: 14px !important;
}
.metrimonial-toggelcart .toggle-label{
  height: 18px !important;
  width: 34px;
}
.metrimonial-toggelcart .checkbox-wrapper-25{
  height: 18px !important;
}
.metrimonial-toggelcart input[type="checkbox"]:checked + .toggle-label .toggle-ball {
    transform: translateX(15px);
}




.id-card {
  width: 300px;
  background: url(images/pdfigbg.png);
  position: relative;
  overflow: hidden;
  font-family: "Fjalla One", sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  aspect-ratio: 54 / 83;
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.id-card:after{
    content: "";
    background-color: rgba(255, 255, 255, 0.92);
    position: absolute;
    inset: 0;
}
.id-card > * {
    position: relative;
z-index: 2;}
.top-design{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.bottom-design{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
}


.top-img-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.logo , .qr{
  width: 90px;
  margin: 50px 15px 0 15px;
}

/* Photo */
.photo-container {
  position: absolute;
  top: 44mm;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  object-fit: cover;
  border:4px solid #000;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.name {
  position: absolute;
  top: 72mm;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

/* Father Name */
.father {
  position: absolute;
  top: 80mm;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #780000;
  font-weight: bold;
}

/* Membership */
.membership {
  position: absolute;
  top: 85mm;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #1a237e;
  font-weight: bold;
}

.date {
  position: absolute;
  top: 90mm;
  width: 100%;
  text-align: center;
 font-size: 14px;
  font-weight: bold;
  color: #000;
}



/* Signature */
.signature-left-main{
  position: absolute;
  bottom: 10mm;
  width: 100%;
  display: flex;
align-items: center;
justify-content: space-between;}
.signature-left {
width: fit-content;
margin: 0px 15px 0 15px;
}
.signature-left P {
  font-size: 9px;
  color: red;
  margin: 0;
  text-align: center;
}
.signature-left span{
    display: block;
    font-size: 7px;
    color: #000;
  font-size: 9px;
  text-align: center;
}
.sign-img{
    max-width: 50px;
    display: block;
}


.signature-right {
  position: absolute;
  bottom: 15mm;
  right: 5mm;
  font-size: 9px;
  color: red;
  text-align: right;
}

@media print {
  body {
    margin: 0;
  }
}

 .custom-tabs {
    justify-content: center;
    border-bottom: none;
  }

  .custom-tabs .nav-link {
    border: none;
    border-radius: 50px;
    padding: 8px 25px;
    margin: 0 5px;
    background-color: var(--accent-color); /* Bootstrap danger (red) */
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
  }

  .custom-tabs .nav-link:hover {
    background-color: var(--accent-color);
    color: #fff;
  }

  .custom-tabs .nav-link.active {
    background-color: var(--primary-color); /* Bootstrap primary blue */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }

  #profileImageWrapper{
    min-width: 60px;
    max-height: 60px;
  }
    .photo-container1 {
  top: 17px;
    margin-left: 95px;
  width: 100px;
  height: 100px;
  border: 4px solid #000;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #f31216 !important;
    border-color: #f31216 !important;
}

.pagination{--bs-pagination-color:#f31216 !important;
  --bs-pagination-hover-color:#f31216 !important;
  --bs-pagination-hover-color:#f31216 !important;

}
.pt-15{padding-top: 15px;}
.con_width{width: 12%;}
.rest_btn{position: relative;
    top: -39px;
    right: 100px;}
    .flatpickr-calendar{
    width: 100% !important;
}
.dashboard-container{
  min-height: calc(100vh - 111px) !important;
}
.offcanvas-body .card-ui{
  width: 100% !important;
}