/* CSS Document */

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/Roboto-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/Roboto-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Roboto", sans-serif;
    src: url(../fonts/Roboto-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
} */

/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css"); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* @font-face {
    font-family: "Diploma";
    src: url(../fonts/Diploma.ttf) format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
} */

:root {
    /* --font-family: "Lato", sans-serif; */
    --font-family: "Poppins", sans-serif;
    --primary-clr: #EF1921;
    /* --secondary-clr: #27090B; */
    --secondary-clr: #951A19;
    --background-clr: #FFD7D8;
    --text-clr: #0D0B08;

}

/* @media (forced-colors: active) {
    :root {
        color-scheme: light;
    }
} */

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "Roboto", sans-serif; */
    font-family: var(--font-family);
    overflow-x: hidden;
}
.font-weight-bold{
    font-weight: 600 !important;
}
a:hover {
    text-decoration: none;
}

.clr-green {
    color: #3d8f37;
}
table{
    font-family: var(--font-family) !important;
}
.btn-cmn {
    border: 1px solid var(--secondary-clr);
    color: var(--secondary-clr);
    background: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 12px;
    line-height: initial;
    padding: 6px 12px;
    margin-top: 20px;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn-cmn-two {
    border: 1px solid transparent;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    line-height: initial;
    padding: 7px 14px;
    margin-top: 20px;
    font-weight: 500;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.btn-cmn:hover {
    color: #fff;
    background: var(--secondary-clr);
}

.btn-cmn-two:hover {
    color: var(--secondary-clr);
}

.outline-btn {
    color: var(--secondary-clr);
    border-color: var(--secondary-clr);
    display: block;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

h2 {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

h5 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

li {
    font-size: 14px;
}

.sec-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    color: var(--secondary-clr);
    padding-bottom: 8px;
}

.custom-sec-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    color: var(--secondary-clr);
    padding-bottom: 8px;
    text-align: center;
}

.sec-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    /* background-color: transparent; */
    background-image: var(--primary-clr);
    /* border: 1px solid #fff; */
    left: calc(50% - 30px);
    bottom: 0;

}

.custom-sec-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 9px;
    background-image: var(--primary-clr);
    /* border: 1px solid #fff; */
    left: calc(50% - 30px);
    bottom: 0;
}

.bg-error {
    color: #f00;
}

body {
    /* background: url(../images/body-bg.jpg);
    background-attachment: fixed;
    background-size: cover; */
    background-color: #fff;
}

.topnav-main {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    box-shadow: 0 2px 10px 0px rgb(0 0 0 / 10%);
    height: auto;
    background-image: url(../images/header-bg.png);
    background-repeat: no-repeat;
    background-size: 7% 62%;
    background-position: top right;
    background-color: #fff;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.topnav-container {
    width: 100%;
    height: auto;
    float: left;
    padding-right: 15px;
    padding-left: 15px;
}

.topnav-main .navbar-header {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
}

.topnav-main .navbar-header .brand-title h5 {
    font-family: "Poppins", sans-serif;
    /* font-family: "Diploma", serif; */
    color: var(--secondary-clr);
    font-size: clamp(1rem, 0.5929rem + 1.1468vw, 1.625rem);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.topnav-main .navbar-header .brand-title span {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.625rem, 0.4622rem + 0.4587vw, 0.875rem);
    font-weight: 500;
    text-transform: uppercase;
    color: #5C5C5B;
}

.topnav-main .menu-wrap {
    background-color: var(--secondary-clr);
    justify-content: center;
    margin-right: -15px;
    margin-left: -15px;
}

.topnav-main.shrink-nav {
    height: 80px;
}

.topnav-main.shrink-nav .nav-right .nav-menu-btn {
    height: 80px;
}

.topnav-main .navbar-header .navbar-brand,
.footer-logo .navbar-brand {
    /* width: 480px; */
    max-width: 100px;
    height: auto;
    float: left;
    margin: 0 auto;
}

.topnav-main .brand-wrapper {
    /* flex-direction: column; */
    flex-direction: row;
}

.topnav-main .navbar-header .brand-title {
    text-align: center;
}

@media(max-width:992px) {
    .topnav-main .brand-wrapper {
        flex-direction: row;
    }

    .topnav-main .navbar-header .brand-title {
        text-align: left;
    }

    .topnav-main {
        background-image: none;
    }


}
@media(max-width:600px){
    .topnav-main .navbar-header .brand-title h5{
        font-size: 14px;
    }
    .topnav-main .navbar-header .navbar-brand{
        width: 60px;
    }
    .address-bx h6{
        text-align: center;
    }
}

.navbar-collapse>.navbar-nav>li>a {
    color: var(--text-clr);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 12px;
    text-transform: capitalize;
    padding-right: 16px !important;
    padding-left: 16px !important;
    padding-top: 14px;
    padding-bottom: 12px;
    font-weight: 500;
    line-height: initial;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}

.navbar-collapse>.navbar-nav>li>a:hover,
.navbar-collapse>.navbar-nav>li>a:focus {
    background-color: #f2faff;
    color: var(--secondary-clr);
}

.navbar-collapse>.navbar-nav>li>a.dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

.navbar-collapse>.navbar-nav>li.dropdown.show>a {
    background-color: #f2faff;
    color: var(--secondary-clr);
}

.navbar-collapse>.navbar-nav>.nav-item .dropdown-menu {
    background-color: #fff;
    border-radius: 0;
    border: 0;
    margin-top: 0;
    box-shadow: 0 5px 10px -6px #000;
}

.navbar-collapse>.navbar-nav>.nav-item .dropdown-menu .dropdown-item {
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    padding-right: 10px;
    padding-left: 14px;
    padding-top: .5rem;
    padding-bottom: .5rem;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    white-space: break-spaces;
}

.dropdown-item.active,
.dropdown-item:active {
    /* background-color: #b0252b; */
    background-color: var(--secondary-clr);
    color: var(--secondary-clr);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 2px;
    top: 0.8em;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff !important;
    text-decoration: none;
    background-color: var(--secondary-clr);
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
}

.body-bg {
    background: url(../images/body-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.banner {
    width: 100%;
    height: auto;
    /* float: left; */
}

#banner-carousel {
    /* max-width: 1300px; */
    margin-inline: auto;
    /* margin-top: 1rem; */
    /* margin-bottom: 1rem; */
}

#banner-carousel .item {
    width: 100%;
    float: left;
    max-height: 550px;
    /* height: 80vh; */
}

#banner-carousel .item img {
    width: 100%;
    /* height: 100%; */
    /* float: left; */
    object-fit: cover;
    max-height: 550px;
    /* width: 100vw; */
    aspect-ratio: 144 / 55;
}

#banner-carousel .owl-dots {
    margin-top: 0;
    text-align: right;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
}

@media(max-width:992px) {
    #banner-carousel {
        margin: 0;
    }
}

.flash_news_sec {
    width: 100%;
    height: auto;
    float: left;
    background-color: #fff;
    position: relative;
    z-index: 0;
}

/* .flash_news_sec::after {
  width: 16%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #b0252b;
  height: 100%;
  z-index: -1;
} */
#marquee_container {
    align-items: stretch;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

#marquee_container .title {
    font-size: 15px;
    font-weight: 500;
    line-height: initial;
    color: #fff;
    background-color: var(--secondary-clr);
    padding: 10px 15px;
    float: left;
    width: 120px;
}

#marquee_container .content {
    display: flex;
    width: calc(100% - 120px);
    /* padding-left: 15px;
    padding-right: 15px; */
    background: var(--secondary-clr);
    padding: 10px 15px;
}

#marquee_container .flash-news-link {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-right: 10px;
    border-right: 1px solid var(--secondary-clr);
    padding-right: 10px;
}

.about {
    width: 100%;
    height: auto;
    /* float: left; */
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url(../images/header-bg.png), url(../images/header-bg-flip.png);
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: top right, bottom left;
}

.about .sec-content .sec-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.about .sec-content .sec-title::after {
    left: 0;
}

.about .sec-content p {
    font-size: 18px;
    text-align: justify;
    color: #fff;
}

.about .sec-content .abt-btn {
    text-align: right;
    margin-top: 20px;
}

@media (max-width:568px) {
    .about {
        background: none;
    }
}

.event {
    width: 100%;
    height: auto;
    float: left;
    background-color: #f2faff;
    position: relative;
    z-index: 0;
}

.event::after {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: #b0252b;
    height: 100%;
    z-index: -1;
}

.event .sec-title::after {
    left: 0;
}

.event .event-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
}

.event .event-wrap .btn-cmn {
    background-color: var(--secondary-clr);
    color: #fff;
}

.event-ul {
    width: 100%;
    height: auto;
    float: left;
    list-style: none;
    margin-bottom: 0;
}

.event-ul li {
    padding-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.event-ul li::after {
    position: absolute;
    color: #fff;
    content: "\f18e";
    font-size: 14px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    top: 0;
    left: 0;
}

.event-ul li:first-child {
    padding-top: 0;
}

.events h2 {
    color: #fff;
}

.event-ul .event-bx {
    text-decoration: none;
}

.event-ul .event-bx h5 {
    font-size: 18px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
}

.event-ul .event-bx p {
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

#calendar {
    /* padding-top: 15px;
    padding-left: 15px; */
    padding: 1rem;
}

#calendar .fc-toolbar {
    padding: 10px;
    margin-bottom: 0;
}

.gallery {
    width: 100%;
    height: auto;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
    /* background-color: #f2faff; */
    /* background: url(../images/content-wrapper-bg.jpg) top left repeat-x;
    background-size: contain; */
}

.gallery .sec-title {
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}

.gallery .sec-title::after {
    border-color: #b0252b;
}

.gallery-bx {
    width: 100%;
    height: auto;
    float: left;
    background-color: #f2faff;
    padding: 10px;
    box-shadow: 2px 2px 10px -7px #787878;
}

.gallery-bx .bx-img {
    width: 100%;
    height: 200px;
    float: left;
}

.gallery-bx .bx-cnt {
    width: 100%;
    /* height: auto; */
    height: 50px;
    float: left;
    padding-top: 14px;
    padding-bottom: 4px;
}

.gallery-bx .bx-cnt h6 {
    font-size: 16px;
    color: #000;
    text-align: center;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery .gallery-btn-sec {
    text-align: center;
    margin-top: 40px;
}

.gallery .gallery-btn-sec .btn-cmn {
    background-color: var(--secondary-clr);
    color: #fff;
    border-color: var(--secondary-clr);
}

.gallery-wrap {
    width: 100%;
    height: auto;
    float: left;
}

ul.imglist {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 10px;
}

ul.imglist li {
    display: block;
    float: left;
    margin-bottom: 12px;
    width: 33.333333%;
    padding-left: 10px;
    padding-right: 10px;
}

ul.imglist li a img {
    display: block;
    width: 100%;
    height: 200px;
    float: left;
}

.news {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 80px;
    margin-bottom: 80px;
}

.news .sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.news-bx {
    width: 100%;
    height: auto;
    float: left;
    background: #fff;
    height: 220px;
}

.news-bx .bx-img {
    width: 50%;
    height: 100%;
    float: left;
}

.news-bx .bx-img img {
    height: 100%;
}

.hover-scale .bx-img {
    overflow: hidden;
}

.hover-scale .bx-img img {
    position: relative;
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.hover-scale:hover .bx-img img {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.news-bx .bx-content {
    width: 50%;
    height: auto;
    float: left;
    padding: 10px;
}

.news-bx .bx-content h6 {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #b0252b;
    margin-top: 6px;
}

.news-bx .bx-content p {
    font-size: 12px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.news-bx .bx-content .news-btn {
    color: #a32921;
    font-size: 12px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.news-btn-sec {
    text-align: center;
}

.news-btn-sec .btn-cmn {
    margin-top: 30px;
}

.owl-dots {
    margin-top: 20px !important;
    text-align: center;
}

.owl-dots .owl-dot.active span {
    background: var(--primary-clr) !important;
    transform: scale(1.1);
}

.owl-dots .owl-dot:not(.active) span {
    background: var(--secondary-clr) !important;
    transform: scale(1.1);
}

.owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 2px !important;
    border-radius: 100% !important;
    border: 1px solid #fff !important;
    background: transparent !important;
    display: flex;
}

.owl-dots .owl-dot:hover span {
    background: var(--primary-clr) !important;
}

.main-footer {
    width: 100%;
    height: auto;
    float: left;
    /* background: #FF5960; */
    background: var(--secondary-clr);
    position: relative;
    z-index: 0;
}

.main-footer .maps-wrap {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary-clr);
    height: calc(100% - 45px);
    z-index: 1;
}

.main-footer .maps-wrap p {
    display: inline;
}

.main-footer .maps-wrap .maps {
    width: 100%;
    height: 100%;
    background-color: #3d8f37;
}

.address-bx {
    padding-top: 50px;
}

.address-bx h6 {
    font-size: clamp(1rem, 0.8372rem + 0.4587vw, 1.15rem);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.address-list {
    list-style: none;
    margin-bottom: 0;
}

.contact-info {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    margin-bottom: 10px;
}

.contact-info i {
    color: #fff;
    font-size: 24px;
    min-width: 30px;
    float: left;
    display: flex;
    justify-content: center;
}

.contact-info-txt {
    padding-left: 10px;
    display: inline-block;
}

.address-list li,
.address-list li a,
.address-list li p {
    font-size: 14px;
    color: #fff;
}

.footer-bottom {
    width: 100%;
    height: 45px;
    float: left;
    background-color: var(--secondary-clr);
    /* border-top: 1px solid rgb(255 255 255 / 20%); */
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 0;
    font-weight: normal;
}

.social-link {
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
    clear: both;
    /* float: right; */
}

.social-link li a {
    width: 26px;
    height: 26px;
    background: var(--secondary-clr);
    color: #fff;
    border: 1px solid #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-left: 2px;
    margin-right: 2px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-link li a:hover {
    transform: translateY(-4px);
}

/* inner-page */
.pagination-outer {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
}

.pg-custom-props ul.pagination {
    margin-bottom: 0;
}

.pg-custom-props .page-link {
    color: var(--secondary-clr);
}

.pg-custom-props .page-item.active .page-link {
    background-color: var(--secondary-clr);
    border-color: var(--secondary-clr);
}

.innerpg-content {
    width: 100%;
    height: auto;
    float: left;
}

.innerpg-banner {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: transparent;
    width: 100%;
    height: auto;
    float: left;
    background: url(../images/org-bg.png), url(../images/org-bg-flip.png);
    background-repeat: no-repeat;
    background-position: top right, top left;
}

.innerpg-bnr-cnt .sec-title {
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
}

.innerpg-cnt-wrap {
    width: 100%;
    height: auto;
    float: left;
    padding-bottom: 80px;
}

.innerpg-cnt-wrap .cnt-box {
    padding: 50px;
    /* background-color: #fff; */
    box-shadow: -1px 1px 20px 0px rgba(0, 0, 0, 0.38);
    /* background-image: url(../images/cnt-box-bg.jpg); */
    /* background-image: url(../images/bg_horz.png); */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    background-color: var(--background-clr);
}

.cnt-box img {
    max-width: 100%;
    height: auto !important;
}

.innerpg-cnt-img-side {
    width: 40%;
    /* max-height: 320px; */
    float: left;
    overflow: hidden;
    margin-right: 30px;
}

.innerpg-cnt-img-side img {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.org-member-sec-outer {
    width: 100%;
    height: auto;
    float: left;
}

.submit-succ-outer {
    background-color: #e0efcb;
    color: #2c662d;
    border-radius: 0.28571429rem;
    padding: 0.6em;
    width: 100%;
    float: left;
    margin-bottom: 0.8rem;
    box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent;
}

.submit-succ-outer .succ-icon {
    background: #1a531b;
    margin-right: 6px;
    padding: 4px 5px;
    border-radius: 100%;
    color: #fff;
    font-size: 10px;
    float: left;
}

.contact-pg.address-list li,
.contact-pg.address-list li a,
.contact-pg.address-list li p {
    color: #000;
}

.contact-pg .contact-info i {
    color: var(--secondary-clr);
}

.contact-pg-map {
    width: 100%;
    float: left;
    height: 150px;
}

.inner-pg-title {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.inner-pg-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-clr);
    border: 1px solid var(--secondary-clr);
    left: 0;
    bottom: 0;
}

.inner-pg-title.text-center::after {
    left: calc(50% - 30px);
}

.reach-form {
    padding-right: 50px;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group .form-control {
    border-radius: 0;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #b0252b;
}

label {
    font-size: 14px;
    margin-bottom: 0.2rem;
}

/* .btn-submit {
    background-color: #b0252b;
    color: #fff;
    border-color: #b0252b;
} */
.mpin {
    width: 100%;
}

.mpin p {
    font-size: 12px;
    text-align: right;
    margin-bottom: 0;
}

.post-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f7f8f8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.2s;
    color: black;
    text-decoration: none;
}

.post-box-thumbnail-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    flex: 0 0 auto;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    overflow: hidden;
    transition: clip-path 0.2s;
}

.post-box-thumbnail {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    transition: transform 0.3s;
}

.post-box-thumbnail img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.post-box-thumbnail-wrapper:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to top,
            rgba(136, 27, 132, 0.2),
            rgba(162, 77, 211, 0.03));
}

.post-box-content-wrapper {
    padding: 1rem;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.post-box-title {
    color: white;
    margin-top: -3rem;
    margin-bottom: 1rem;
}

.post-box-title span {
    display: inline;
    background-color: var(--secondary-clr);
    padding: 0.2rem 0.6rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 30px;
}

.post-box-disc {
    font-size: 14px;
    line-height: 1.2;
}

.post-box-read-more {
    padding-bottom: 3px;
    display: inline;
    background-image: linear-gradient(#b0252b, #b0252b);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: left bottom;
    transition: background-size 0.3s;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary-clr);
}

.post-box-read-more:hover {
    text-decoration: none;
    color: #7b1b1b;
}

/* hover state */
.post-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.post-box:hover .post-box-thumbnail-wrapper {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.post-box:hover .post-box-thumbnail {
    transform: scale(1.1);
}

.post-box:hover .post-box-read-more {
    background-size: 30% 2px;
}

.video-bx .bx-img>iframe {
    width: 100%;
    height: 100%;
}

ul.audio-bx li {
    width: 50%;
}

.audio-bx audio {
    width: 100%;
    float: left;
}

ul.downloads-wrap {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 0;
}

ul.downloads-wrap>li {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 10px;
}

.downloads-bx {
    background-color: var(--secondary-clr);
    width: 100%;
    height: 100%;
    float: left;
    padding: 10px;
    box-shadow: 2px 2px 10px -7px #787878;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.downloads-bx .bx-icon {
    width: 20%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.downloads-bx .bx-icon i {
    font-size: 30px;
    color: #fff;
}

.downloads-bx .bx-cnt {
    width: 80%;
    height: auto;
    float: left;
}

.downloads-bx .bx-cnt h6 {
    margin-bottom: 0;
    color: #fff;
}

.login-form {
    padding-right: 0;
}

.vicar-details-wrap {
    text-align: left;
}

.vicar-details-wrap .inner-pg-title::after {
    left: calc(50% - 30px);
}

.vicar-details-wrap .vicar-img-side {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 20px;
}

.vicar-details-wrap .vicar-img-side img {
    max-width: 400px;
    width: 100%;
    margin: auto;
    display: block;
}

.fix-width-x {
    overflow-y: hidden;
    overflow-x: auto;
}

.min-w-table {
    min-width: 500px;
}

.prayer-rq-form label {
    margin-bottom: 0;
}

.prayer-rq-addmorebtn {
    float: left;
    padding: 8px 10px;
    font-size: 12px;
    border-color: #bbb;
    color: #342984;
    margin-top: 24px;
}

.add_form_wrap {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
}

.add_form_dlt {
    width: 100%;
    height: auto;
    float: left;
}

.delete_icon {
    color: #b73235;
    padding: 4px 6px;
    background: #f3f3f3;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    float: left;
    cursor: pointer;
    margin-top: 24px;
}

.mandatory {
    color: #f00;
}

.service-time-box {
    margin: 15px 0;
    background-color: #fff;
}

.service-time-box .head {
    padding: 8px 15px;
    background-color: var(--secondary-clr);
    color: #fff;
}

.service-time-box .head h4 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #fff;
}

.service-time-box table p {
    margin-bottom: 0;
}

.appli-btn-wrap {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 1rem;
}

.quick-link-btn {
    width: 160px;
    text-align: center;
    float: left;
    margin: 10px;
    text-decoration: none !important;
}

.quick-link-btn .icon-div {
    width: 90px;
    height: 90px;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(0deg, #ddd, #fff);
    transition: 0.5s;
}

.quick-link-btn h6 {
    color: #303030;
    margin-bottom: 0;
    text-decoration: none;
}

.quick-link-btn .icon-div span {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    background: linear-gradient(0deg, #fff, #ddd);
    border-radius: 50%;
    line-height: calc(60px - 12px);
    font-size: 24px;
    color: #b0252b;
    transition: 0.5s;
}

.quick-link-btn:hover .icon-div {
    background: linear-gradient(30deg, #ddd, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.quick-link-btn:hover .icon-div span {
    background: linear-gradient(0deg, #ffced0, #ffe7e8);
    border: 1px solid #ffa3a6;
}

.quick-link-btn:hover h6 {
    color: #b0252b;
}

#social_floating_icn {
    position: fixed;
    top: 50%;
    right: 0;
    padding: 0;
    list-style: none;
    z-index: 99;
}

#social_floating_icn li a {
    display: block;
    transition: 0.5s;
    text-decoration: none !important;
}

#social_floating_icn li a i {
    font-size: 16px;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    display: block;
    width: 40px;
    padding: 10px;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

#social_floating_icn li a:hover i {
    background: rgba(0, 0, 0, 0.2);
}

.fb-embed-wrap {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.post-box.hori {
    background-color: #fff;
    border: 1px solid #b0252b;
    padding: 4px 10px;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: none;
    margin-bottom: 6px;
    height: auto;
    flex-direction: row;
}

.post-box.hori .post-box-thumbnail {
    width: 15%;
    height: auto;
    position: initial;
}

.post-box.hori .post-box-thumbnail img {
    width: 80px;
    height: 80px;
}

.post-box.hori .post-box-content-wrapper {
    width: 70%;
    padding: 0 1rem;
}

.post-box.hori .post-box-title {
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.post-box.hori .post-box-rdmore {
    width: 15%;
    text-align: center;
    margin-top: 0;
}

.post-box.hori .post-box-rdmore a {
    font-size: 14px;
    line-height: initial;
    display: flex;
    color: #bf451e;
    font-weight: 500;
}

.pagination {
    padding-left: 0 !important;
    list-style: none !important;
    margin-bottom: 0;
    max-width: 100%;
    overflow-x: auto;
}

.page-link {
    padding: 0.2rem 0.4rem;
}

.datepicker table {
    width: 100%;
}


@media screen and (max-width: 991.99px) {
    h1 {
        font-size: 36px;
    }

    h2,
    .sec-title {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    p,
    li {
        font-size: 14px;
    }

    .about .sec-content p {
        font-size: 14px;
    }

    .btn-cmn {
        font-size: 10px;
        padding: 6px 12px;
    }

    .appli-btn {
        font-size: 10px;
    }

    .appli-btn span {
        padding: 8px;
        line-height: calc(30px - 16px);
    }

    .topnav-main .navbar-header .navbar-brand {
        margin: 0;
        width: 380px;
    }

    .topnav-main .menu-wrap {
        position: fixed;
        display: block;
        width: 230px;
        background: var(--secondary-clr);
        /* background: linear-gradient(180deg,
                rgba(217, 35, 49, 1) 0%,
                rgba(117, 34, 31, 1) 100%); */
        height: 100vh;
        overflow-y: hidden;
        top: 0;
        left: -215px;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        border-left: 1px solid #001934;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        z-index: 999;
    }

    .topnav-main .menu-wrap.show {
        height: 100vh;
        overflow-y: auto;
        transform: translate(100%, 0);
        opacity: 1;
        -webkit-box-shadow: 4px 0px 5px 0px rgb(76 15 16 / 40%);
        -moz-box-shadow: 4px 0px 5px 0px rgba(76, 15, 16, 0.4);
        box-shadow: 4px 0px 5px 0px rgb(76 15 16 / 40%);
    }

    .navbar-collapse>.navbar-nav {
        display: flex;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .navbar-collapse>.navbar-nav>.nav-item {
        float: left;
        width: 100%;
        height: auto;
        border-bottom: 1px ridge rgba(255, 255, 255, 0.2);
    }

    .navbar-collapse>.navbar-nav>.nav-item .dropdown-menu .dropdown-item {
        color: #000;
        font-weight: 400;
        font-size: 13px;
        padding-right: 16px;
        padding-left: 16px;
        text-transform: uppercase;
    }

    .dropdown-submenu .dropdown-menu {
        background-color: #d7d7d7 !important;
        box-shadow: inset 0 5px 10px -6px #000 !important;
    }

    .dropdown-submenu a::after {
        right: 12px;
    }

    .navbar-collapse>.navbar-nav>li>a {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        color: #fff;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .navbar-collapse>.navbar-nav>li>a:hover {
        background-color: var(--secondary-clr);
        color: #fff;
    }

    .navbar-collapse>.navbar-nav>li.dropdown.show>a {
        background-color: var(--secondary-clr);
    }

    .nav-menu-btn {
        margin-left: auto;
        padding: 0;
    }

    .nav-menu-btn>label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        width: 30px;
        height: 50px;
        float: left;
        margin-bottom: 0;
    }

    .nav-menu-btn>label>span {
        width: 100%;
        height: 4px;
        background: var(--secondary-clr);
        margin-bottom: 6px;
        border-radius: 4px;
        display: block;
        float: right;
        -webkit-transition: all 0.8s ease;
        -moz-transition: all 0.8s ease;
        -o-transition: all 0.8s ease;
        -ms-transition: all 0.8s ease;
        transition: all 0.8s ease;
    }

    .nav-menu-btn>label>span:nth-child(2) {
        width: 80%;
        border: 1px solid var(--secondary-clr);
        background-color: transparent;
    }

    .nav-menu-btn>label>span:last-child {
        margin-bottom: 0;
    }

    .nav-menu-btn[aria-expanded="true"]>label>span {
        opacity: 1;
        transform: rotate(45deg) translate(-7px, -8px);
        background: var(--secondary-clr);
        width: 100%;
    }

    .nav-menu-btn[aria-expanded="true"]>label>span:nth-last-child(3) {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
    }

    .nav-menu-btn[aria-expanded="true"]>label>span:nth-last-child(2) {
        transform: rotate(-45deg) translate(1px, 0);
    }

    #topmain-nav-backdrop {
        display: none;
        position: fixed;
        z-index: 99999;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        opacity: 0;
        width: 100%;
        min-height: inherit;
        background-color: rgba(0, 0, 0, 0.8);
    }

    #marquee_container .title {
        font-size: 12px;
    }

    #marquee_container .flash-news-link {
        font-size: 12px;
    }

    .about,
    .news {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .about {}

    .about .sec-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .about .sec-content .sec-title::after {
        left: calc(50% - 30px);
    }

    .about .sec-content p {
        text-align: center;
    }

    .about .sec-content .abt-btn {
        text-align: center;
    }

    .event-ul .event-bx h5 {
        font-size: 16px;
    }

    .news .sec-title {
        margin-bottom: 30px;
    }

    .gallery .gallery-btn-sec {
        margin-top: 0;
    }

    .address-bx {
        padding-top: 30px;
        padding-bottom: 10px;
    }

    .address-list li,
    .address-list li a,
    .address-list li p {
        font-size: 12px;
    }

    .inner-pg-title {
        margin-bottom: 12px;
        padding-bottom: 7px;
    }

    .innerpg-cnt-wrap {
        padding-bottom: 60px;
    }

    .innerpg-cnt-img-side {
        width: 100%;
        margin-right: 0;
    }

    .reach-form {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .prayer-rq-addmorebtn {
        margin-top: 0;
        float: right;
    }

    .delete_icon {
        margin-top: 0;
        float: right;
    }
}

@media screen and (max-width: 767.99px) {
    #banner-carousel .item {
        max-height: 360px;
    }

    #marquee_container .title {
        font-size: 10px;
        line-height: initial;
        padding-top: 6px;
        padding-bottom: 6px;
        width: 60px;
    }

    #marquee_container .content {
        width: calc(100% - 60px);
    }

    #marquee_container .flash-news-link {
        font-size: 11px;
    }

    .about .sec-content .sec-title {
        padding-left: 0;
        padding-right: 0;
    }

    .event .event-wrap {
        padding-bottom: 20px;
    }

    .event::after {
        width: 100%;
        height: 100%;
    }

    .event #calendar {
        padding-top: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }

    #calendar .fc-toolbar {
        background-color: #e1e8f0 !important;
    }

    .fc-toolbar h2 {
        color: #000 !important;
    }

    ul.imglist li {
        width: 50%;
    }

    .footer-bottom p {
        font-size: 10px;
    }

    .social-link li a {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .address-bx {
        padding-left: 15px;
        padding-right: 15px;
    }

    .innerpg-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .post-box-disc {
        font-size: 12px;
    }

    ul.downloads-wrap>li {
        width: 100%;
    }
}

@media screen and (max-width: 576.99px) {
    h1 {
        font-size: 30px;
    }

    h2,
    .sec-title {
        font-size: 20px;
    }

    p,
    li,
    label {
        font-size: 12px;
    }

    .about .sec-content p {
        font-size: 12px;
    }

    #marquee_container .title {
        width: 55px;
    }

    #marquee_container .content {
        width: calc(100% - 55px);
    }

    .event-ul .event-bx h5 {
        font-size: 14px;
    }

    .owl-dots {
        margin-top: 10px !important;
    }

    .owl-dots .owl-dot span {
        width: 6px !important;
        height: 6px !important;
        margin: 4px 2px !important;
    }

    .topnav-main .navbar-header .navbar-brand {
        margin: 0;
        width: 100px;
    }

    #banner-carousel .item {
        max-height: 300px;
    }

    .gallery {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .about,
    .news {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .gallery .sec-title,
    .news .sec-title {
        margin-bottom: 20px;
    }

    .gallery-bx .bx-cnt {
        padding-top: 10px;
        padding-bottom: 0px;
    }

    .gallery-bx .bx-cnt h6 {
        font-size: 14px;
    }

    .gallery {
        background-size: cover;
    }

    .news-btn-sec .btn-cmn {
        margin-top: 20px;
    }

    .main-footer .maps-wrap {
        width: 100%;
        position: static;
        height: 120px;
    }

    .address-list {
        text-align: center;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .contact-info-txt {
        padding-left: 0;
    }

    .contact-info i {
        margin-bottom: 10px;
    }

    .footer-bottom {
        height: auto;
        text-align: center;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    ul.imglist li {
        width: 100%;
    }

    .innerpg-banner {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .innerpg-cnt-wrap {
        padding-bottom: 0;
    }

    .innerpg-cnt-wrap .cnt-box {
        padding: 25px;
    }

    .contact-pg .contact-info-txt {
        text-align: left;
    }

    .contact-pg .contact-info i {
        justify-content: left;
    }

    .submit-succ-outer {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 399.99px) {
    h6 {
        font-size: 15px;
    }

    .topnav-main .navbar-header .navbar-brand {
        width: 100px;
    }

    .topnav-main .menu-wrap {
        width: 200px;
        left: -186px;
    }

    .navbar-collapse>.navbar-nav>li>a {
        font-size: 12px;
    }

    .innerpg-cnt-wrap .cnt-box {
        padding: 20px;
    }
}

@media screen and (max-width: 340.99px) {
    .topnav-main .navbar-header .navbar-brand {
        width: 100px;
    }

    .innerpg-cnt-wrap .cnt-box {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* User Get Your Pin form styling  */
#inner-wrapper {
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 50px;
}

.mem-log-outer {
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    margin-top: 80px;
}

.mem-log-outer .inner-pg-title {
    padding-bottom: 4px;
    margin-bottom: 10px;
}

.hd-underln {
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.hd-underln:after {
    bottom: 0px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 35px;
    background-color: #b0252b;
}

.hd-underln.text-center:after {
    left: calc(50% - 17px);
}

@media screen and (max-width: 991.99px) {
    .mem-log-outer {
        margin-top: 60px;
    }

    .btn-cmn,
    .btn-cmn-two {
        font-size: 10px;
        padding: 6px 12px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 576.99px) {
    .mem-log-outer {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    #inner-wrapper {
        margin-bottom: 0;
    }

    .hd-underln {
        padding-bottom: 4px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 399.99px) {
    .mem-log-outer {
        padding: 40px 30px;
    }
}

/* New contents styling section */
/* Buttons styling */
.btn-theme {
    border-radius: 10px;
    background: var(--secondary-clr);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #fff !important;
}

.btn-link {
    color: var(--secondary-clr);
    font-weight: 500;
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
}

.btn-theme i {
    padding-left: 1rem;
    color: var(--text-clr);
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.about-content {
    border-radius: 10px;
    /* background: #FFF; */
    /* box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25); */
    padding: 1rem;
}

.about-content h5,
.welcome-note h5,
.custom-sec-title h5 {
    color: var(--primary-clr);
    /* font-size: 35px; */
    font-size: clamp(1.25rem, 0.9722rem + 1.3889vw, 1.5rem);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.about-content p {
    text-align: justify;
    /* text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.features a,
.organization a {
    text-decoration: none;
}

.quick-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    background: var(--primary-clr);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease-in-out;
}

.quick-card:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.quick-card .quick-card-body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-card .quick-card-img {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
}

.quick-card .quick-card-text h6 {
    color: var(--secondary-clr);
    /* font-size: 24px; */
    font-size: clamp(0.875rem, 0.6898rem + 0.9259vw, 1.2rem);
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 0;
    /* 100% */
}

.quick-card i {
    /* font-size: 2rem; */
    color: var(--secondary-clr);
    font-size: clamp(1rem, 0.7037rem + 1.4815vw, 2rem);
}

.service-timings {
    background-image: url(../images/bg_horz.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.service-timings .welcome-note {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    padding: 1rem;
    margin: 2rem 0rem;
}

.service-timings .timings-note {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    padding: 1rem 1rem 1rem 2rem;
    margin: 2rem 0rem;
    background-image: url(../images/pray-bg.png);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: bottom right;
}

.saints .saint-img img {
    border-radius: 10px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}

.saints .saint-text h5 {
    color: var(--secondary-clr);
    /* font-size: 32px; */
    font-size: clamp(1rem, 0.7037rem + 1.4815vw, 1.2rem);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.organization .org-link {
    display: flex;
    align-items: center;
    background: var(--primary-clr);
    padding: .4rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.organization .org-link:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.org-link img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    /* transform: translateX(-10px); */
}

.org-link .org-title {
    flex-grow: 1;
}

.org-link .org-title h5 {
    color: var(--secondary-clr);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.gallery-img img {
    border: 10px solid #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.lectionary-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.lectionary-title .icon-anime {
    transform: rotateZ(-90deg);
    transition: all 0.3s ease-in-out;
}

.custom-card-header {
    background-color: var(--secondary-clr);

}

.custom-card-header h5 button,
.custom-card-header h5 button:hover,
.custom-card-header h5 button:focus {
    color: #fff;
    box-shadow: none;

}

.lectionary-title[aria-expanded="true"] .icon-anime {
    transform: rotateZ(0deg);
}

@media (min-width:1200px) {

    .navbar-collapse>.navbar-nav>li>a,
    .navbar-collapse>.navbar-nav>.nav-item .dropdown-menu .dropdown-item {
        font-size: 15px;
    }

}

@media (min-width:1800px) {

    .navbar-collapse>.navbar-nav>li>a,
    .navbar-collapse>.navbar-nav>.nav-item .dropdown-menu .dropdown-item {
        font-size: 18px;
    }
}


/* New styles */
/* Feature Block */
.feature-wrapper {
    background-color: var(--background-clr);
}

.feature-block .feature-icon {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #fff;
    width: fit-content;
    margin-bottom: 10px;
    transition: all .3s linear;
}

.feature-block h6 {
    font-size: clamp(1.125rem, 0.8807rem + 0.6881vw, 1.5rem);
    font-weight: 500;
    color: var(--text-clr);
}

.feature-block p {
    margin: 0;
}

.feature-block:has(.btn-link:hover) .feature-icon {
    background-color: #fff;
}

.organization {
    background: url(../images/org-bg.png);
    background-repeat: no-repeat;
    background-position: top right;
}

.org-card {
    position: relative;
    width: 150px;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    margin-inline: auto;
}

/* .org-card .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
} */
.org-card img{
    height: 150px;
    width: 150px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}

.org-card h6 {
    /* position: absolute;
    bottom: 5px;
    left: 5px; */
    text-align: center;
    font-size: clamp(0.925rem, 0.8807rem + 0.6881vw, 1rem);
    color: var(--text-clr);
}

#organization-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 10px;
}

/* Event */
.event-card h6 {
    font-size: clamp(0.875rem, 0.7936rem + 0.2294vw, 1rem);
    color: var(--secondary-clr);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card p {
    margin: 0;
    color: #666666;
    font-size: 12px;
}