@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
h1{
      /* font-family: "Cinzel Decorative", serif; */
      font-family: "Cormorant Garamond", serif;
}

.w-100{
    width: 100%;
}

@media (min-width: 1366px) {
    .container{
        max-width: 1220px;
    }
}


.header {
  padding: 40px 20px 40px;
  position: absolute;
    top: 0;
    z-index: 10;
    left: 0;
    right: 0;
}
/* Navigation */
.nav {
  max-width: 1220px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* Menu Groups */
.menu-left,
.menu-right {
  display: flex;
  gap: 58px;
  align-items: center;
}
.menu-left li, .menu-right li{
    text-align: center;
}
.nav a{
    text-align: center; 
}
/* Links */
.nav a,
.mobile-menu a {
color: #000;
text-align: center;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 18px; /* 128.571% */
text-transform: uppercase;
text-decoration: none;
}/** Search */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 18px;
}

.search-btn {
  background: #FFFFFF54;
  border: 1px solid #cfcfcf;
  padding: 12px;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 100%;
  transition: all 0.2s ease;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.search-btn:hover {
  background: #00000054;
  border-color: #999;
}

.search-btn svg {
  stroke: currentColor;
  width: 20px;
  height: 20px;
}

.header-search-form button {
  background: #FFFFFF54;
  border: 1px solid #cfcfcf;
  padding: 8px;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.header-search-form button:hover {
  background: #00000054;
  border-color: #999;
}

.header-search-form button svg {
  stroke: currentColor;
  width: 18px;
  height: 18px;
}

.search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 300px;
  display: none !important;
  z-index: 1010;
  background: #fff;
  border: 1px solid #e9dfd2;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.search-panel.open {
  display: block !important;
}

.header-search-form {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.header-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-family: "League Spartan", sans-serif;
  font-size: 15px;
  color: #000;
  background: transparent;
}

.header-search-form input::placeholder {
  color: #8c7b70;
}

.header-search-form input:focus {
  background: #f9f7f4;
  border-radius: 4px;
}
/***search**/
/* Logo */
.logo {
  /*margin: 0 54px;*/
}


/* Toggle Button */
.menu-toggle-btn {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1002;
  display: none;
}

/* Icons */
.icon-hamburger,
.icon-close {
  display: none;
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -103%;
  width: 100%;
  height: 100vh;
  background: url(../images/mobile-menu-bg.jpg) no-repeat 0px 0px;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  z-index: 1000;
  background-size: cover;
}

/* Mobile menu links */
.mobile-menu a {
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}
.mobile-menu li {
    margin-bottom: 20px;
}
.mobile-menu .menu-item-has-children > .sub-menu {
  display: none;
}
.mobile-menu .menu-item-has-children.open > .sub-menu {
  display: block;
}
.header .menu-left a{
    position: relative;
    display: table;
}

.header .menu-left a:hover::after{
    position: absolute;
    content: "";
    width: 80%;
    height: 2px;
    background: #B6784E;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto    ;
}


.header .menu-right a{
    position: relative;
    display: table;
}

.header .menu-right a:hover::after{
    position: absolute;
    content: "";
    width: 80%;
    height: 2px;
    background: #B6784E;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto    ;
}
header.header.scrolled {
    position: fixed;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-bottom: 1px solid #fcd5bb;
    z-index: 30;
}

/* Responsive */
@media (max-width:1024px) {
  .menu-left,
  .menu-right {
    display: none;
  }

  .header-search {
    position: absolute;
    left: 20px;
    z-index: 1002;
    margin-left: 0;
  }

  .search-panel {
    left: 0;
  }

  .menu-toggle-btn {
    display: block;
  }

  /* Default icon */
  .icon-hamburger {
    display: inline;
  }

  /* Menu open */
  #menu-toggle:checked ~ .mobile-menu {
    right: 0;
  }

  /* Icon switch */
  #menu-toggle:checked + label .icon-hamburger {
    display: none;
  }

  #menu-toggle:checked + label .icon-close {
    display: inline;
  }
}


.main-banner-section{
    position: relative;
}

.main-banner-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.main-banner-content{
    max-width: 880px;
    margin:230px auto 0;
    text-align: center;
}

.main-banner-content h1{
   color: #000;
text-align: center;
font-size: 70px;
font-style: normal;
font-weight: 400;
line-height: 80px; /* 114.286% */
}
.banner-flex{
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom:20px;
}
.banner-flex a{
   text-decoration: none;
}
.banner-flex p{
color: #69473A !important;
text-align: center;
font-family: "League Spartan", sans-serif;
font-size: 20px !important;
font-style: normal;
font-weight: 500 !important;
line-height: 30px !important; /* 150% */
}
.main-banner-content p{
    color: #000;
text-align: center;
font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px !important; /* 155.556% */
}
.main-banner-section::after{
    position: absolute;
    width: 100%;
    height:385px;
    background: linear-gradient(180deg, rgba(245, 244, 240, 0.00) 0%, rgba(245, 244, 240, 0.65) 52.4%, rgba(245, 244, 240, 0.88) 77.4%, #F5F4F0 100%);
    bottom: 0;
    left: 0;
    content: "";
}
.book-listing-section{
    background: linear-gradient(180deg, #F5F4F0 0%, rgba(235, 229, 217, 0.00) 100%);
}

.date-category{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin-bottom: 20px;
}
.blog-card img{
    border-radius: 10px;
    min-height: 215px;
}
.date{
color: #B6784E;
font-family: "League Spartan";
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 18px; /* 128.571% */
}
.category{
color: #000;
font-family: "League Spartan";
font-size: 12px;
font-style: normal;
font-weight: 300;
line-height: 14px; /* 83.333% */
border-radius: 50px;
background: #C3E2F2;
padding: 8px 10px;
}
.category  a{
    color: #000;
}
.category a:hover {
    color: #b6784e;
}

.category.christian-celebrities {
    background:#F0F0F0;
}
 
.category.christian-faith-walk {
    background:#F1EBDD;
}
 
.category.heart-matters {
    background:#E9F5ED;
}
 
.category.declarations-prophetic-prayers {
    background:#EBE5D9;
}
 
.category.joy-beauty {
    background:#E7F4FA;
}
 
.category.prophetic-perspectives {
    background:#FEEFE5;
}
 
.category.powerful-prayers-from-the-bible {
    background:#FAFBE4;
}
 
.category.testimonies {
    background:#EFE7FA;
}
 
.category.the-holy-spirit {
    background:#E5FEF6;
}
 
.category.unique-bible-quiz-hub {
    background:#E4EFFB;
}



h5.blog-title{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
margin-bottom: 20px;
max-width: 255px;
min-height: auto;
text-transform: uppercase;
}
p.blog-desc{
color: #000;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 128.571% */
max-width: 268px;
}
section.book-listing-section .container{
    margin-top: -45px;
    position: relative;
    border-bottom: 1px solid rgba(182, 120, 78, 0.3);
    margin-bottom: 0px;
}

.learn-more{
color: #000;
font-family: "League Spartan", sans-serif !important;
font-size: 14px !important;
font-style: normal;
font-weight: 300;
line-height: 18px !important; /* 128.571% */
text-decoration-line: underline !important;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}
.learn-more:hover{
    color: #B6784E;
}

.book-listing-section .col-lg-3.col-md-6{
    margin-bottom: 40px !important;
}


.view-all-button{
    border-radius: 50px;
border: 1px solid #EEE;
background: #B6784E;
box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
color: #FFF;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 14px; /* 100% */
text-transform: uppercase;
display: inline-flex;
padding: 15px 40px 12px 40px;
justify-content: center;
align-items: center;
text-decoration: none;
margin-bottom: 100px;
transition: .5s ease;
}

.view-all-button:hover {
    background: #fff;
    color: #000;
    transition: .5s ease;
}

.category-main-wrapper{
    margin: 0px 0px;
    padding: 0px 0px;
}
.category-main-wrapper h4{
    color: #FFF;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 14px; /* 100% */
text-transform: uppercase;
display: inline-flex;
height: 32px;
padding: 13px 20px 10px 20px;
justify-content: center;
align-items: center;
border-radius: 50px;
background: #162030;
margin-bottom: 20px;
}
.category-main-wrapper h2{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 125% */
  margin-bottom: 20px;
}
.category-main-wrapper p{
    color: #000;
font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
max-width: 478px;
margin-left: auto;
}
.category-item-wrapper{
    margin:0px 0px 0 0px;
     border-bottom: 1px solid rgba(182, 120, 78, 0.3);
     padding-bottom:100px;
     position: relative;
}

.category-item-wrapper .swiper-wrapper{
    display: block !important;
}

.category-list{
    text-decoration: none;

}
.category-item-wrapper .swiper-slide{
    width: 32%;
    border-radius: 10px;
    background: rgba(217, 217, 217, 0.4);
    padding: 35px 100px 35px 30px;
    display: inline-block;
    margin: 0px 19px 35px 0px;
    overflow: hidden;
    position: relative;
    min-height:240px;
}
.category-item-wrapper .category-list h3{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
word-wrap: break-word;
  margin-bottom: 20px;
}
.category-item-wrapper .category-list p{
    color: #000;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 128.571% */
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-item-wrapper .swiper-slide:nth-child(3){
    margin-right: 0;
     background: rgba(201, 230, 211, 0.4) !important;
}
.category-item-wrapper .swiper-slide:nth-child(6){
    margin-right: 0;
    background: #FEEFE5 !important;
}
.category-item-wrapper .swiper-slide:nth-child(9){
    margin-right: 0;
    background:#E5FEF6 !important;
}

.category-item-wrapper .swiper-slide:nth-child(2){
    background: rgba(221, 205, 171, 0.4) !important;
}

.category-item-wrapper .swiper-slide:nth-child(4){
    background: rgba(251, 228, 228, 1) !important;
}
.category-item-wrapper .swiper-slide:nth-child(5){
    background: rgba(231, 244, 250, 1) !important;
}
.category-item-wrapper .swiper-slide:nth-child(7){
    background: #FAFBE4 !important;
}
.category-item-wrapper .swiper-slide:nth-child(8){
    background: #EFE7FA !important;
}
.category-item-wrapper .swiper-slide:nth-child(10){
    background: #E4EFFB !important;
}

a.category-list-arrow {
    position: absolute;
    right: -9px;
    bottom: -7px;
}

.inner-mian-banner {
    margin-top: 150px;
    margin-bottom: 100px;
}

.grow-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 60px;
}

.banner-content h1 {
    color: #fff;
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content p {
    color: #fff;
    max-width: 480px;
    font-size: 16px;
    font-weight: 300;
}

.category-abstract-img-2 {
    position: absolute;
    top: -100px;
    right: 0;
}

.category-item-wrapper .slide-card {
    border-radius: 10px;
    background: rgba(217, 217, 217, 0.4);
    padding: 35px 100px 35px 30px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    min-height: 240px;
    text-align: left;
    
}

.card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px 24px;
}

.category-item-wrapper .slide-card:nth-child(3) {
    background: rgba(201, 230, 211, 0.4) !important;
}

.category-item-wrapper .slide-card:nth-child(6) {
    background: #FEEFE5 !important;
}

.category-item-wrapper .slide-card:nth-child(9) {
    background: #E5FEF6 !important;
}

.category-item-wrapper .slide-card:nth-child(2) {
    background: rgba(221, 205, 171, 0.4) !important;
}

.category-item-wrapper .slide-card:nth-child(4) {
    background: rgba(251, 228, 228, 1) !important;
}

.category-item-wrapper .slide-card:nth-child(5) {
    background: rgba(231, 244, 250, 1) !important;
}

.category-item-wrapper .slide-card:nth-child(7) {
    background: #FAFBE4 !important;
}

.category-item-wrapper .slide-card:nth-child(8) {
    background: #EFE7FA !important;
}

.category-item-wrapper .slide-card:nth-child(10) {
    background: #E4EFFB !important;
}

.category-item-wrapper .category-list h3 {
    color: #000;
    /* font-family: "Cinzel Decorative", serif; */
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    word-wrap: break-word;
    margin-bottom: 20px;
}

.category-item-wrapper .category-list p {
    color: #000;
    font-family: "League Spartan", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-item-wrapper .slide-card .learn-more {
    position: absolute;
    bottom: 25px;
}

.category-item-wrapper .category-list-arrow {
    position: absolute;
    right: -9px;
    bottom: -7px;
}

.category-abstract-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 991px) {
    .card-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 24px !important;
    }

    .category-item-wrapper .slide-card {
        padding: 35px 50px 35px 30px !important;
    }
}

@media (max-width: 767px) {
    .inner-mian-banner {
        margin-top: 75px !important;
        margin-bottom: 70px !important;
    }

    .category-abstract-img-2 {
        top: -70px !important;
    }

    .card-list {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 37px 24px !important;
    }

    .grow-banner {
        height: 360px;
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .banner-content {
        padding: 30px 35px;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .banner-content h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 0;
    }

    .banner-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 100%);
    }
}

.declarations-wrapper{
    padding: 100px 0;
}
.declarations-wrapper h4{
    color: #FFF;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 14px; /* 100% */
text-transform: uppercase;
display: inline-flex;
height: 32px;
padding: 13px 20px 10px 20px;
justify-content: center;
align-items: center;
border-radius: 50px;
background: #6A818C;
margin-bottom: 20px;
}

.declarations-main-tittle h2{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 125% */
}
.declarations-main-tittle p{
    color: #000;
font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
max-width: 478px;
margin-left: auto;
}
.declarations-listing-wrapper{
    margin: 20px 0px;
}
.declaration-main-list a{
    margin: 20px 0px;
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
max-width: 438px;
text-decoration: none;
display: inline-block;
}
.declaration-main-list p{
    color: #000;
font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
}
.declaration-main-list img{
    border-radius: 10px;
}
.declaration-listing-div{
    display: flex;
    margin-bottom: 25px;
}

.declaration-listing-content {
    margin-left: 25px;
}
.declaration-listing-content a{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
text-decoration: none;
max-width: 356px;
display: inline-block;
margin-bottom: 15px;
}
.declarations-wrapper .container{
    border-bottom: 1px solid rgba(182, 120, 78, 0.3);
}


.mostpopular-main-wrapper{
    margin: 0px 0px 0px;
}
.most-popular-listing{
    margin-top: 20px;
    margin-bottom: 40px;
}

.mostpopular-main-wrapper h4{
    color: #FFF;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 14px; /* 100% */
text-transform: uppercase;
display: inline-flex;
height: 32px;
padding: 13px 20px 10px 20px;
justify-content: center;
align-items: center;
border-radius: 50px;
background: #B6784E;
margin-bottom: 20px;
}
.mostpopular-main-wrapper h2{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 125% */
margin-bottom: 20px;
}
.mostpopular-main-wrapper p{
    color: #000;
font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
max-width: 478px;
margin-left: auto;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mostpopular-main-wrapper .container{
    border-bottom: 1px solid rgba(182, 120, 78, 0.3);
}

.prayer-main-wrapper{
    padding: 100px 0px 0px 0px;
}




.prayer-main-wrapper h4{
    color: #FFF;
font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 14px; /* 100% */
text-transform: uppercase;
display: inline-flex;
height: 32px;
padding: 13px 20px 10px 20px;
justify-content: center;
align-items: center;
border-radius: 50px;
background: #6A818C;
margin-bottom: 20px;
}
.prayer-main-wrapper h2{
    color: #000;
  /* font-family: "Cinzel Decorative", serif; */
  font-family: "Cormorant Garamond", serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 125% */
}
.prayer-main-wrapper p{
    color: #000;
font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
max-width: 478px;
margin-left: auto;
}

.prayer-listing-wrapper{
    margin: 0px 0px 40px 0;
    padding: 0px 0px;
}

.prayer-div{
    border-radius: 10px;
    background: rgba(217, 217, 217, 0.4);
    padding: 25px;
    display: block;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    min-height:260px;
}

.prayer-image-wrapper img{
    border-radius: 10px;
}

.prayer-div .prayer-image-wrapper{
    width: 195px;
}

.prayer-div .prayer-content-wrapper{
    max-width: 360px;
    width: 100%;
    padding-left: 24px;
}
.prayer-div .date-category{
    margin-top: 0;
}
.prayer-div .date {
    color: #000;
    font-family: "League Spartan", sans-serif;
}
.prayer-div .blog-desc{
    color: #000;
   font-family: "League Spartan", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px; /* 128.571% */
    max-width: 100%;
}
.prayer-div h5.blog-title {
    color: #000;
    /* font-family: "Cinzel Decorative", serif; */
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
    min-height: 50px;
    max-width: 100%;
}

.prayer-listing-wrapper .swiper-wrapper {
    padding-bottom:40px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #B6784E;
    opacity: .8;
}


.prayer-main-wrapper .container{
    border-bottom: 1px solid rgba(182, 120, 78, 0.3);
}

footer{
    padding: 100px 0 80px;
    background: url("../images/footer-bg.png") no-repeat 0px 0px;
    background-size: cover;
}
.footer-left{
    max-width: 100%;
  width: 100%;
  display: flex;
  gap: 16px;
  margin-bottom: 47px;
}
.footer-left p{
    color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
}

.newsletter-div{
    max-width: 100%;
}
.newsletter-div h4{
color: #000;
 /* font-family: "Cinzel Decorative", serif; */
 font-family: "Cormorant Garamond", serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
margin-bottom: 20px;
text-transform: uppercase;
}
.input-wrapper {
    border-radius: 100px;
    border:1px solid rgba(182, 120, 78, .3);
    height: 54px;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.input-wrapper input{
    border-bottom-left-radius: 100px;
     border-top-left-radius: 100px;
     border: none;
     background: transparent;
     
}

.signup-button{
    display: inline-flex;
padding: 15px 40px;
justify-content: center;
align-items: center;
border-radius: 50px;
background: #B6784E;
color: #FFF;
 font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 14px; /* 100% */
text-transform: uppercase;
border: none;
}
.signup-button:hover{
    background: #fff;
    color: #000;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
}
/*.col-md-6.align-right {
    display: flex;
    justify-content: end;
}
*/
.copyright-wrapper{
    text-align: center;
    margin-top: 180px;
    border-radius: 50px;
    background:rgba(255, 255, 255, .3);
    padding: 23px 25px;
}
.copyright-wrapper p{
color: #000;
text-align: center;
 font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 128.571% */
margin: 0;
}

.copyright-wrapper p a{
color: #000;
text-align: center;
 font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 128.571% */
margin: 0;
}

.copyright-wrapper p a:hover{
    color: #B6784E;
}
.desktop-img{
    display: block;
}
.mobile-img{
    display: none;
}

.blog-page{
    position: relative;
}

.blog-page::after{
    position: absolute;
    content: "";
    background: linear-gradient(180deg, #EBE5D9 0%, rgba(235, 229, 217, 0.00) 100%);
    width: 100%;
    height: 670px;
    top: 0;
    left: 0;
    z-index: -1;
}
.blog-page .blog-detail-banner {
  z-index: 2;
  position: relative;
}


.blog-banner{
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
        position: relative;
    z-index: 10;
}

.blog-page .header{
    position: relative;
    z-index: 30;
}
.blog-banner img{
    border-radius: 10px;
}
.blog-banner-content{
    position: absolute;
    bottom: 0;
    padding: 65px;
    z-index: 20;
    max-width: 500px;
}
.blog-banner-content h1{
color: #FFF;
 /* font-family: "Cinzel Decorative", serif; */
 font-family: "Cormorant Garamond", serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 125% */
max-width: 500px;
text-transform: uppercase;
}
.blog-banner-content p{
color: #FFF;
font-family: "League Spartan";
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 128.571% */
margin: 0;
}


.blog-banner .container{
    position: relative;
}
.blog-banner .container::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    width: 98.5%;
    height: 320px;
    right: 0;
    margin: auto;
}

.blog-listing-wrapper{
    padding: 50px 0px 0;
}
.blog-listing-sub-heading-wrapper{
    padding: 0px 0px 50px 0;
    margin: 0px 0px;
    text-align: center;
    position: relative;
}

.blog-listing-sub-heading-wrapper p{
color: #000;
text-align: center;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
}
.blog-abstract{
    position: absolute;
    bottom: 0;
    right: 0;
}

.blog-listing-wrapper .col-lg-4.col-md-6 {
    margin-bottom: 40px;
}

.category-item-wrapper.blog-listing .swiper-wrapper {
    display: flex !important;
}

.swiper-button-next, .swiper-button-prev {
    svg {
        fill: transparent;
    }
}


.swiper-button-next:hover svg path{
    stroke:#B6784E;
}
.swiper-button-next:hover svg circle{
    stroke:#B6784E;
}

.swiper-button-prev:hover svg path{
    stroke:#B6784E;
}
.swiper-button-prev:hover svg circle{
    stroke:#B6784E;
}



.left-right-arrow {
    position: absolute;
    width: 100%;    
    top: 30%;
}

.left-right-arrow .swiper-button-next {
    right: -60px;
    width: 50px;
    height: 50px;
}
.left-right-arrow .swiper-button-prev {
    left: -60px;
        width: 50px;
    height: 50px;
}
.category-slider-desktop .swiper-wrapper{
    padding-bottom:40px;
}

.blog-detail-header{
    text-align: center;
    padding: 65px 0px 30px;
    position: relative;
    z-index: 10;
}
.blog-detail-header .blog-detail-label{
display: inline-flex;
padding: 12px 20px;
justify-content: center;
align-items: center;
border-radius: 50px;
background: #EBE5D9; 
color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 10px; /* 62.5% */   
margin-bottom: 15px;
}
.blog-detail-header h1{
color: #000;
text-align: center;
 /* font-family: "Cinzel Decorative", serif; */
 font-family: "Cormorant Garamond", serif;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 50px; /* 125% */
padding: 0 160px;
text-transform: uppercase;
}
.blog-detail-header p{
color: #000;
text-align: center;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
}

.blog-detail-header ul {
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 0;
}
.blog-detail-header ul li{
    list-style: none;
    color: #69473A;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
}
.blog-detail-header ul span{
    margin-left: 15px;
    margin-right: 15px;
}
.blog-detail-banner img{
    border-radius: 10px;
}
.side-sticky-wrapper{
    border-radius: 10px;
    background: #F5F2EC;
    padding: 50px 80px 30px 40px;
}

.blog-detail-content-wrapper{
    padding: 40px 0px;
    position: relative;
    z-index: 1;
}
.side-sticky-wrapper h3 span{
    color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 23px; /* 115% */
}
.side-sticky-wrapper h3{
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    }

 .side-sticky-wrapper h3 i img {
  display: block;
}
.side-sticky-wrapper h3 i{
    margin-right: 25px;
}

.side-sticky-wrapper a{
    color: #69473A;
 font-family: "League Spartan", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 23px; /* 115% */
text-decoration: none;
display: inline-block;
margin-bottom: 40px;
transition: color 0.2s ease, font-weight 0.2s ease;
}

.side-sticky-wrapper a.active,
.side-sticky-wrapper a:hover,
.side-sticky-wrapper a:focus {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-image{
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-detail-content-wrapper h2{
color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 25px;
font-style: normal;
font-weight: 500;
line-height: 30px; /* 120% */
margin-bottom: 20px;
scroll-margin-top: 120px;
}

.blog-detail-content-wrapper p{
   color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */ 
margin-bottom: 15px;
}


.author-profile-wrapper{
    margin: 0px 0px;
    padding: 0px 0px;
}

.author-profile-div{
    margin: 0;
    padding: 40px;
    border-radius: 10px;
    background: #F2F2F2;
    display: flex;
}
.author-profile-div h4{
color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 23px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 121.739% */
}
.author-profile-div h5{
color: #69473A;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
}
.author-profile-div p{
color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 28px; /* 155.556% */
}
.image-wrapper img{
    border-radius: 10px;
}
.author-profile-div .content-wrapper{
    padding-left: 45px;
}
.mostpopular-main-wrapper.blog-detail{
    padding: 100px 0 0;
}

.social-media-links {
    display: flex;
    justify-content: space-between;
    margin: 25px auto;
    max-width: 280px;
    padding: 0;
}
.social-media-links li{
    list-style: none;
    color: #000;
text-align: center;
 font-family: "League Spartan", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 100% */
}
.social-media-links li a:hover path{
    fill: #B6784E;
}

.tnp-field label{
    display: none !important;
}

div.tnp-subscription, form.tnp-subscription, form.tnp-profile{
    margin: 0 !important;
}

.tnp.tnp-subscription form{
    display: flex !important;
    justify-content: space-between;
}

input#tnp-1 {
    background: transparent;
    color: #000;
    font-family: "League Spartan";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    height: 44px;
}

input#tnp-1::placeholder {
    color: #000;

}

input.tnp-submit{
    display: inline-flex;
    padding: 14px 40px !important;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #B6784E !important;
    color: #FFF;
    font-family: "League Spartan", sans-serif !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 14px;
    text-transform: uppercase;
    border: none;
}
input.tnp-submit:hover {
    background: #fff !important;
    color: #000 !important;
    transition: .5s ease;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
}

input:focus-visible {
    outline: none;
    box-shadow: none;

}
.blog-detail-content-wrapper p a {
    color: #69473a !important;
    text-decoration: none !important;
}

.blog-detail-content-wrapper p a:hover {
    color: #000 !important;
}

.blog-detail-content-wrapper p span{
    color:#000 !important;
}
.blog-detail-content-wrapper h2 span{
    color: #000 !important;
}

pre{
    color: #000;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 25px;
}

.blog-card a {
    text-decoration: none;
}

.banner-description {
    color: #000;
    text-align: center;
    font-family: "League Spartan";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
}
.banner-description a {
    text-decoration: none;
}


.col-md-8.post-content {
    padding-left: 34px;
}

body.blog-page a{
    text-decoration: none;
}
a.declaration-img {
    max-width: 100%;
    margin: 0;
    line-height: 0;
    display: block;
}
a.category-list-arrow:hover path {
    stroke: white;
}

a.category-list-arrow:hover circle {
    fill: #b6784e;
}

.page-does-not-exist {
    text-align: center;
    margin: 15% 15px 0;
}
.page-does-not-exist h2{
    color: #b6784e;
    font-size: 60px;
}
.page-does-not-exist p{
    font-size: 18px;
}
 a:-webkit-any-link:focus-visible {
    outline-offset: 0px;
    outline: none;
}

.blog-detail-content-wrapper h2{
    scroll-margin: 100px;
}
.search-banner{
    margin: 5% 0 0 0;
}

h3.result-title a {
    color: #000;
    /* font-family: "Cinzel Decorative", serif; */
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
    max-width: 255px;
    min-height: 50px;
    text-decoration: none;
}
span.result-date {
    color: #B6784E;
    font-family: "League Spartan";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}
span.result-category {
    color: #000;
    font-family: "League Spartan";
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 10px;
    border-radius: 50px;
    background: #C3E2F2;
    padding: 8px 10px;
}
span.result-category a{
    color: #000;
    text-decoration: none;
}

.result-meta {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.result-read-more {
    color: #000;
    font-family: "League Spartan", sans-serif !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 18px !important;
    text-decoration-line: underline !important;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.nav-links a{
    color: #b6784e;
    opacity: 1;
}

.declaration-listing-content p {
    color: #000;
    font-family: "League Spartan";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
}

@media (max-width: 1380px) {

.blog-detail-header h1{
padding: 0 100px;
}

}


@media (max-width: 900px) {

    .page-does-not-exist {
    text-align: center;
    margin: 45% 15px 0;
}

    .col-md-8.post-content {
    padding-left:calc(var(--bs-gutter-x) * .5);
}

.category-item-wrapper .swiper-wrapper {
    display: flex !important;
}
.desktop-img{
    display: none;
}
.mobile-img{
    display: block;
}

section.book-listing-section .container {
    margin-top:0;
    position: relative;
    border-bottom: 1px solid rgba(182, 120, 78, 0.3);
    margin-bottom: 0px;
}
.main-banner-content h1{
font-size: 35px;
font-weight: 400;
line-height: 45px; /* 128.571% */
}
.main-banner-content h1 br{
    display: none;
}
.banner-flex{
    flex-direction: column;
}
.main-banner-section::after {
    height: 125px;
}
.main-banner-content p br{
    display: none;
}
h5.blog-title{
    max-width: 100%;
}
p.blog-desc{
    max-width: 100%;
}
.category-main-wrapper h2 {
    font-size: 28px;
    line-height: 38px;
     margin-bottom: 20px;
}

.category-item-wrapper .swiper-slide {

    padding: 35px 30px 35px 30px;
    display: inline-block;
    margin: 0px 0px 35px 0px;
}
.declarations-main-tittle h2 {
    font-size: 28px;
    line-height: 38px;
}

.declaration-listing-div {
    display: flex;
    margin-bottom: 23px;
    align-items: flex-start;
}

.declaration-listing-content {
    margin-left: 25px;
    flex: 1;
}
.declaration-listing-div a {
    /*width: 40%;*/
}
.declaration-listing-div img{
    width: 100%;
}

.declaration-listing-content p{
    color: #000;
 font-family: "League Spartan", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 18px; /* 128.571% */
}
.mostpopular-main-wrapper h2 {
    font-size: 28px;
    line-height: 38px;
}
.most-popular-listing .col-lg-3.col-md-6{
    margin-bottom: 40px;
}
.prayer-main-wrapper h2 {
    font-size: 28px;
    line-height: 38px;
}
.prayer-div{
    flex-direction: column;
    padding: 15px 15px 25px 15px;
}
.prayer-image-wrapper{
    margin-bottom: 25px;
}
.prayer-div .prayer-image-wrapper {
    width: 100%;
}
.prayer-div .prayer-image-wrapper img{
    width: 100%;
}
.header {
    padding: 20px 20px 20px;
}
.nav a, .mobile-menu a{
    text-align: left;
    border-bottom: none;
}
.mobile-menu a{
    padding: 14px 24px;
}
li::marker {
  content: none !important;
   color: transparent !important;
}
.left-right-arrow{
    display: none;
}
.blog-banner .container::after {
    width: 93.5%;
    height: 300px;
}
.blog-banner-content {
    padding: 35px;
}
.blog-banner-content h1 {
    font-size: 28px;
    line-height: 38px;
}
.blog-listing-sub-heading-wrapper p br{
    display: none;
}
.author-profile-div{
    flex-direction: column;
}
.blog-detail-content-wrapper h2{
    text-align: center;
}
.blog-detail-content-wrapper p{
    text-align: center;
}
.author-profile-div .content-wrapper {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
}
.image-wrapper {
    margin: auto;
}
.social-media-links {
    margin: 25px auto 70px;
}

.author-profile-div {
    padding: 20px 10px;
}
.blog-detail-header h1 {
    font-size: 28px;
    line-height: 38px;
    padding: 0 15px;
}
.side-sticky-wrapper{
    padding: 40px 30px;
}
.side-sticky-wrapper a{
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-left {
    max-width: 100%;
    width: 100%;
    text-align: center;
}
.col-md-6.align-right {
    display: flex;
    justify-content: center;
}
.newsletter-div h4{
    text-align: center;
    margin-top: 40px;
}
footer {
    padding: 70px 10px;

}
input.tnp-submit {
    padding: 14px 20px !important;
}
.prayer-div .prayer-content-wrapper{
    padding-left: 0;
}
.mostpopular-main-wrapper p{
    margin-left: inherit;
}
.declarations-main-tittle p{
    margin-left: inherit;
}
.category-main-wrapper p{
    margin-left: inherit;
}
.prayer-main-wrapper p{
    margin-left: inherit;
}
.prayer-content-wrapper.category{
    max-width: 125px;
    width: 100%;
}
.newsletter-div {
    margin-left: auto;
    margin-right: auto;
}


.prayer-div .category{
    width: 125px;
}

}


@media screen and (min-width:1020px) and (max-width:1080px) {
.main-banner-section::after{
    height: 125px;
}
section.book-listing-section .container{
    margin-top: 0;
}
.main-banner-content h1 {
    font-size: 55px;
    line-height: 65px;
}
.category-item-wrapper .swiper-slide {
    width: 31.333%;
}
}

@media (max-width: 1025px) {
  .post-sidebar {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    width: auto !important;
  }
  .left-right-arrow{
    display: none;
  }
}
 
.post-sidebar {
  position: relative;
  transition: all 0.2s ease;
}
 
/* Applied ONLY while scrolling inside content */
.post-sidebar.is-sticky {
  position: fixed;
  top: 120px; /* adjust based on header height */
  width: 100%;
  max-width: 360px; /* match sidebar width */
}
 
 
 
/* Smooth scrollbar (optional) */
.post-sidebar.is-sticky::-webkit-scrollbar {
  width: 4px;
}
 
 
.post-sidebar.is-sticky::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.post-sidebar.is-scrollable {
  overflow-y: auto;
}
 
.post-sidebar.is-sticky {
  position: fixed;
  top: 120px;
  /* max-width: 25%; */
  width: 100%;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

@media (min-width: 1800px) {
   .post-sidebar.is-sticky {
    max-width: 20%;
   } 
}

.blog-loader {
  margin-top: 20px;
  text-align: center;
}
 
 
.spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
 
    background: url("../images/Spinner.svg") center / contain no-repeat;
  animation: spin 0.9s linear infinite;
  transform-origin: center;
}
 
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



.current-menu-item a::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 2px;
    background: #B6784E;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}

.sub-menu .current-menu-item a::after{
    display: none;
}

.sub-menu .current-menu-item a {
    color: #B6784E;
}

.menu-item-has-children{
    position: relative;
    background: url(../images/down.svg) no-repeat  82px 23px;
    padding-right: 20px;
}
.sub-menu{
    display: none;
        position: absolute;
    width: 200px;
    background: #fff;
    text-align: left;
    border-radius: 10px;
    top: 35px;
    left: 0;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.sub-menu li{
    list-style: none;
}
.sub-menu li a {
    text-align: left !important;
    display: block;
    margin: 12px 0px;
    padding: 0 25px;
    font-size: 12px;
}
@media (min-width: 901px) {
  .menu-item-has-children:hover .sub-menu {
      display: block;
  }
}
.sub-menu li a:hover::after{
    display: none;
}
.sub-menu li a:hover{
    color: #B6784E;
}

@media only screen and (min-width: 1025px) and (max-width: 1300px)  {
    .sub-menu{
        left: -147px;
    }
}


@media (max-width: 900px) {
.sub-menu {
    top: 30px;
    left: 0;
    max-width: 500px;
    width: 100%;
}
.main-banner-content{
    margin: 125px auto 0;
}
.menu-item-has-children {
    position: relative;
    /* background: url(../images/down.svg) no-repeat 95% 11px; */
    padding-right: 0px;
}

}
.mobile-menu li.current-menu-item a{
    color: #B6784E;
}
.category-item-wrapper.blog-listing .category-list p {
  min-height: 54px;
}
.blog-listing-wrapper .blog-card {
  position: relative;
  padding-bottom: 50px;
  height: 100%;
}
.blog-listing-wrapper .blog-card .learn-more {
  position: absolute;
  bottom: 20px;
}

.category-item-wrapper.blog-listing .swiper-slide {
  position: relative;
}
.category-item-wrapper.blog-listing .swiper-slide .learn-more {
  position: absolute;
  bottom: 25px;
}

.book-listing-section .blog-card {
  position: relative;
  height: 100%;
  padding-bottom: 25px;
}
.book-listing-section .blog-card .learn-more {
  position: absolute;
  bottom: 0;
}

.most-popular-listing .blog-card {
  position: relative;
  height: 100%;
  padding-bottom: 20px;
}
.most-popular-listing .blog-card .learn-more {
  position: absolute;
  bottom: 0;
}
.declaration-listing-div img {
  border-radius: 10px;
}

/* 25-06-2026 */

@media only screen and (max-width: 1200px){
  h5.blog-title {
  font-size: 15px;
}
.blog-listing-wrapper .blog-card {
  padding-bottom: 35px;
}
.category-item-wrapper .swiper-slide {
  min-height: 266px;
}
.blog-banner .desktop-img {
  height: 500px;
  object-fit: cover;
}

}
@media only screen and (max-width: 991px){
 h5.blog-title {
  min-height: auto;
 }
  .blog-detail-content-wrapper .col-md-4 {
  width: 100%;
}
.blog-detail-content-wrapper .col-md-8.post-content {
  width: 100%;
}
.prayer-div h5.blog-title{
      min-height: 75px;
}
 .prayer-div {
    min-height: 515px;
  }

  .menu-item-has-children {
    position: relative;
    padding-right: 30px;
}

.menu-item-has-children::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 11px;
    width: 14px;
    height: 14px;
    background: url("../images/down.svg") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.mobile-menu .menu-item-has-children.open::after {
    transform: rotate(180deg);
}

}

@media only screen and (max-width: 767px)
{
   h5.blog-title {
    font-size: 18px;
  }
  .blog-detail-content-wrapper{
    padding: 20px 0px;
  }
  .blog-listing-wrapper .blog-card .learn-more {
  position: inherit;
  bottom: 0;
}
 .blog-listing-wrapper .blog-card {
    min-height: auto;
  }
  .category-slider-desktop .swiper-wrapper {
  padding-bottom: 30px;
}
.category-main-wrapper {
  text-align: center;
}
.view-all-button {
  margin-bottom: 70px;
}
.blog-listing-wrapper {
  padding: 20px 0px 0;
}
.most-popular-listing .blog-card .learn-more {
  position: inherit;
  bottom: 0;
}
.most-popular-listing .blog-card {
  padding-bottom: 0;
}
.prayer-div {
    min-height: 555px;
  }
  .prayer-main-wrapper {
  padding: 70px 0px 0px 0px;
}
.container {
  padding-left: 20px;
  padding-right: 20px;
}
.most-popular-listing {
  margin-top: 5px;
}
.declarations-wrapper {
  padding: 70px 0;
}
.declaration-main-list p {
  margin-bottom: 30px;
}
.declaration-listing img {
  height: 88px;
  border-radius: 10px;
}



}

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






/* --------Search--------- */

.pagination{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.search-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .35s ease;
}

.search-popup.active {
    visibility: visible;
    opacity: 1;
}

.search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.search-box {
    position: relative;
    width: 90%;
    max-width: 700px;
    background: #fff;
    padding: 15px 20px 15px 40px;
    border-radius: 70px;
    z-index: 2;
    transform: translateY(-30px);
    transition: .35s ease;
}

.search-popup.active .search-box {
    transform: translateY(0);
}

.search-box form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box input {
    flex: 1;
    height: 40px;
    padding: 0;
    /* border-bottom: 1px solid #d1d1d1 !important; */
    font-size: 18px;
    outline: none;
    border: none;
}

.search-box a[type="submit"] {
     padding: 25px;
     cursor: pointer;
     background: #FFFFFF54;
     border-radius: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(10px);
     border: 1px solid #cfcfcf;
     width: 36px;
     height: 36px;
}
.search-box a[type="submit"]:hover {
         background: #FFFFFF54;

}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.search-btn { 
    padding: 12px;
    cursor: pointer;
    background: #FFFFFF54;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
        border: 1px solid #cfcfcf;
}
.search-btn:hover {  
    background: #00000054; 
}
/* --------Search--------- */

/* ---New CSS 24/07/2026--- */
.book-listing-section h2 {
    color: #000;
    /* font-family: "Cinzel Decorative", serif; */
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 45px;
}
.banner-flex h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #B6784E;
    text-align: center;
}
.banner-flex { 
    justify-content: center !important; 
}
.main-banner-content h6 { 
    margin: 0 auto;
    max-width: 600px;
    color: #000;
    text-align: center;
    font-family: "League Spartan", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px !important;  
    position: relative;
}
.main-banner-content h6 .left-dot { 
   margin-top: -15px;
}
.main-banner-content h6 .right-dot  { 
   margin-top: 5px;
}
/* .main-banner-content h6::before {
    content: "";
    position: absolute;
    width: 24px;    
    height: 24px;
    background: url("../images/left-dot.svg") no-repeat center;
    background-size: contain;
    top: 0;
    left: 0;
}

.main-banner-content h6::after {
    content: "";
    position: absolute;
    width: 24px;    
    height: 24px;
    background: url("../images/right-dot.svg") no-repeat center;
    background-size: contain;
    right: 0;
    bottom: 0;
} */
@media (max-width: 900px) {
.book-listing-section h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
.search-btn { 
    margin-top: -5px;
}
.home-down-arrow {
    display: flex;
    flex-direction: row-reverse;
}
.home-down-arrow {
    display: none;
}
}
.home-down-arrow {
    display: flex;
    flex-direction: row-reverse;
}
.home-down-arrow a {
    padding: 33px 36px;
    border-radius: 50%;
    border: 1px solid #B6784E59;
    height: fit-content;
}
.home-down-arrow a:hover {
    background: #ffffff7a;
}
.home-down-arrow a img {
    width: 18px;
    height: 18px;
}
.book-listing-section {
    scroll-margin-top: 150px;
}
.banner-description a {
    text-decoration: none;
    color: #000;
}
/* ---New CSS 24/07/2026--- */

/* 07-08-2026 */

.home .category-main-wrapper {
  display: none;
}
.declaration-listing-content .head {
  text-transform: uppercase;
}

.footer-categories .footer-title a {
  font-size: 22px;
  line-height: 25px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  text-decoration:none;
  margin-bottom: 20px;
  display: block;
}
.footer-categories .footer-title a:hover{
color: #B6784E;
}
.footer-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-categories ul li  a {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  text-decoration: none;
  font-weight: 300;
  font-family: "League Spartan", sans-serif;
}
.footer-categories ul li {
  margin-bottom: 14px;
}
.footer-category-list {
  display: flex;
  gap: 84px;
}
.footer-categories ul li  a:hover{
color: #B6784E;

}
footer .tnp.tnp-subscription {
  max-width: 100%;
}
.footer-left p {
  margin: 0;
}

.home .mostpopular-main-wrapper .view-all-button {
  display: none;
}

@media (max-width: 991px) {
 
footer .row .col-md-6.align-right {
    display: block;
}
    .footer-left p {
    text-align: left;
}
footer .col-md-6 {
  width: 100%;
}
.footer-categories {
  margin-bottom: 25px;
}
}
@media (max-width:600px) 
{
 .footer-category-list
    {
        display:block;
    }
    .footer-categories {
    text-align: center;
}
    footer .row .col-md-6.align-right {
    display: block;
}
 
.footer-left p {
    width: 100%;
    text-align: center;
}
 
.footer-left {
    display: block;
    text-align: left;
    margin-top: 20px;
}
 
.footer-left .footer-logo {
    margin-bottom: 15px;
    text-align: center;
}
}

