:root {
    --body-text-color: #292D33;
    --body-font-size: 14px;
    --body-font-family: 'Open Sans';
    --body-white-color: #ffffff;
    --body-default-color: #266088;
    --heading-text-color: #266088;
    --heading-font-family: 'Montserrat';
    --button-bg-dark-color: #266088;
    --border-color: #E6E6E6;
    --footer-bg-color: #000000;
    --footer-text-color: #9497A1;
    --section-bg-light-color: #f0f9ff;
    --section-bg-dark-color: #266088;
    --body-yelllow-color: #FF9800;
}

body {
    color: var(--body-text-color);
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;;
    line-height: 1.3;
    letter-spacing: 0.6px;
}
a, a:hover {
    color: var(--body-default-color);
    text-decoration: none;
    display: inline-block;
}
p {
    margin-bottom: 15px;
}
p:last-child {
    margin-bottom: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--heading-text-color);
    font-family: var(--heading-font-family);
    margin-bottom: 15px;
    line-height: 1.4;
}
h1 {
    font-size: 38px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 26px;
}
h5 {
    font-size: 22px;
}
h6 {
    font-size: 18px;
}
ul {    
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
    text-decoration: none;
}
.form_group {
    position: relative;
    margin: 15px 0;
}
.form_group input, 
.form_group textarea, 
.form_group select {
    font-size: 14px;
    border: 1px solid var(--border-color) !important;
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    background-color: transparent;
} 
.form_group input:focus, 
.form_group textarea:focus, 
.form_group select:focus,
button, button:focus { 
    box-shadow: none;
    border: none;
    outline: none;
}
.form_group label {
    font-family: var(--heading-font-family);
    margin-bottom: 5px;
}
.form_group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    background-image: url('../imgs/arrow.png');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center right 15px;
}
.button_main {
    padding: 15px 30px;
    color: var(--body-white-color);
    font-family: var(--heading-font-family);
    border-radius: 10px;
    box-shadow: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.7px;
    max-width: 300px;
    width: 100%;
    white-space: nowrap;
    background: var(--button-bg-dark-color);
}
.button_main:hover {
    color: var(--body-white-color);
}
section {
    padding: 50px 0;
    position: relative;
}
img {
    max-width: 100%;
}
.row_grid {
    gap: 25px 0;
}
.section_bg_dark {
    background-color: var(--section-bg-dark-color);
    color: var(--body-white-color);
}
.section_bg_light {
    background-color: var(--section-bg-light-color);
}

.header_wrapp {
    background-color: var(--body-default-color);
    color: var(--body-white-color)
}
.header_menu {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.menubar_main {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px 30px;
    text-align: right;
}
.menubar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px 25px;
    white-space: nowrap;
}
.menubar ul li {
    position: relative;
}
.menubar ul li a {
    font-weight: 500;
    font-family: var(--heading-font-family);
    color: var(--body-white-color);
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    font-size: 14px;
}
.menubar>ul>li>a {
    padding: 25px 0;
}
.menubar ul li a span {
    transition: transform 0.3s ease;
}
.menubar ul li:hover>a>span {
    transform: rotate(90deg);
}
.menubar ul li .submenu {
    background-color: var(--section-bg-light-color);
    box-shadow: none;
    border-top: 1px solid var(--body-default-color);
    display: block;
    left: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 250px;
    z-index: 999999;
}
.menubar ul li:hover>.submenu {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    visibility: visible;
}
.menubar ul li .submenu li a {
    padding: 10px 15px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--body-default-color);
    color: var(--body-text-color);
    font-size: 13px;
}
.menubar ul li .submenu li .submenu {
    left: 101%;
    top: 0;
}
.brand_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.brand_logo a h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--body-white-color);
    margin-bottom: 0;
}
.header_main {
    gap: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 15px;
}
.header_right .header_info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
}
.header_right .header_info li a {
    color: var(--body-white-color);
}
.header_right .header_info li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
}
.header_right .header_info li a span {
    color: var(--body-yelllow-color);
}
.loginbtns.button_main {
    background-color: var(--body-yelllow-color);
    padding: 10px 25px;
}




.hero_banner_wrapp {
    padding: 0;
}
.slider_imgs {
    /* background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0; */
    position: relative;
}
/* .slider_imgs:after {
    content: '';
    background-color: rgba(41, 45, 51, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
} */
.heroSlider .owl-dots, 
.ourhistorySlider .owl-dots {
    position: absolute;
    bottom: 20px;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0;
}
.heroSlider .owl-nav, 
.ourhistorySlider .owl-nav {
    position: absolute;
    margin: 0;
    bottom: 100px;
    z-index: 9;
    left: 25px;
    right: 0;
}
.heroSlider .owl-nav button, 
.ourhistorySlider .owl-nav button {
    width: 40px;
    height: 40px;
    background-color: var(--body-default-color) !important;
    color: var(--body-white-color) !important;
    border-radius: 5px !important;
    font-size: 48px !important;
    line-height: 31px !important;
    position: absolute;
    top: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.heroSlider .owl-nav button span, 
.ourhistorySlider .owl-nav button span {
    height: 100% !important;
    width: 100%;
}
.heroSlider .owl-nav button.owl-next, 
.ourhistorySlider .owl-nav button.owl-next {
    right: unset;
    left: 50px;
}
.slider_content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 99;
    color: var(--body-white-color);
    font-size: 22px;
}
.slider_content h1 {
    color: var(--body-white-color);
    margin-bottom: 25px;
    line-height: 1.2;
}
.slider_content h5 {
    color: var(--body-white-color);
    margin-bottom: 30px;
}
.slider_content .button_main {
    margin-top: 30px;
}
.main_heading {
    margin-bottom: 25px;
    position: relative;
    z-index: 99;
}
.main_heading_center {
    text-align: center;
}

.main_grid_wrapp {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}
.main_right_part {
    background-color: var(--section-bg-light-color);
    padding: 30px;
    border-radius: 15px;
}
.statistics_menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}
.statistics_menu ul li {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #f7fcff;
    padding: 5px 10px;
    border-radius: 10px;
}
.statistics_menu ul li span {
    font-size: 14px;
    color: var(--body-yelllow-color);
    background-color: var(--body-white-color);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-color);
}
/* .about_info_main {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--body-default-color);
    background-color: var(--body-white-color);
    color: var(--body-text-color);
    width: 100%;
    position: relative;
    z-index: 9;
} */
.about_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
/* .about_content {
    padding: 15px;
} */
/* .about_text {
    padding: 15px 0;
} */
.about_info_main .nav.nav-tabs {
    border: none;
    gap: 0px;
    background-color: #f7fcff;
}
.about_text h6 {
    font-size: 17px;
    line-height: 22px;
}
.about_text p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.about_text a {
    font-weight: 600;
}
.about_info_main .nav.nav-tabs .nav-item .nav-link {
    border-radius: 0;
    color: var(--body-text-color);
    font-weight: 600;
    border-bottom: none;
}
.about_info_main .nav.nav-tabs .nav-item .nav-link.active, 
.about_info_main .nav.nav-tabs .nav-item .nav-link:hover {
    border-color: var(--border-color);
    color: var(--body-yelllow-color);
}
.about_info_main .tab-content {
    background-color: #f7fcff;
    border: 1px solid var(--border-color);
}
.about_info_main .tab-content .tab-pane.active {
    background-color: #fff;
}
.about_content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about_content_list {
    max-height: 256px;
    overflow-y: scroll;
    position: relative;
}
.about_content_list::-webkit-scrollbar {
    width: 0px;       
    height: 0px; 
}
.about_content ul li a {
    color: var(--body-text-color);
    font-size: 14px;
    font-weight: 600;
}
.featute_card_main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.featute_card, 
.charity_card {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--body-default-color);
    background-color: var(--body-white-color);
    color: var(--body-text-color);
    width: 100%;
    position: relative;
    z-index: 9;
}
.charity_card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.charity_img img {
    border-radius: 10px;
}
/* .featute_card {
    min-height: 150px;
} */


.priests_list {
    border: none;
}
.priests_list {
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.priests_list .nav-item .nav-link {
    background-color: #bee5ff;
    border-radius: 5px;
    padding: 10px 20px;
    color: #000;
    font-weight: 600;
}
.priests_list .nav-item .nav-link.active {
    background-color: var(--heading-text-color);
    color: var(--body-white-color);
}

.charity_content h5{
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}
.charity_content p {
    margin-bottom: 10px;
}
.charity_content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}
.charity_content ul span {
    font-weight: 600;
    color: var(--body-yelllow-color);
}
.upcoming_box {
    border: 1px solid var(--border-color);
}
.upcoming_content {
    background-color: var(--body-white-color);
    padding: 10px 15px 15px;
}

.iframe_video {
    width: 100%;
}

.marquee_section {
    padding: 15px 0;
    background-color: var(--body-yelllow-color);
}
.marquee_section h4 {
    margin: 0;
    color: var(--body-white-color);
}

.about_content_list ul li {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}
.about_content_list ul li .stud_item_main {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: center;
}
.stud_item_img img {
    border-radius: 100%;
}
.stud_item_content {
    text-align: left;
    font-size: 12px;
}
.stud_item_content h6 {
    font-size: 13px;
    margin: 0 0 5px;
}
.stud_item_content p {
    margin-bottom: 0;
}


.calendar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 5px;
}
.about_content_list_bg {
    background-color: #fff;
    position: sticky;
    top: 0;
    padding-bottom: 10px;
}
.calendar_header h3 {
    margin: 0;
    font-size: 14px;
}
.calendar_days, 
#calendar_dates, 
#calendar_dates1 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px 10px;
    text-align: center;
}
.calendar_days>div {
    font-size: 12px;
    text-align: center;
    padding: 5px 0;
    font-weight: 700;
    color: #333;
}
#calendar_dates>.week-date, 
#calendar_dates1>.week-date {
    text-align: center;
    font-size: 12px;
}
#calendar_dates>.week-date.selected, 
#calendar_dates1>.week-date.selected {
    color: var(--body-yelllow-color);
}
.event_list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px;
}
.event_item {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    gap: 15px;
    font-size: 12px;
    width: 100%;
}
.event_bg1 {
    background-color: #f1f0ff;
}   
.event_bg2 {
    background-color: #fdf6D8;
}   
.event_bg3 {
    background-color: #edf9fd;
} 
.recent_stud_item {
    padding-bottom: 10px;
}


.footer_wrapp {
    background-color: var(--footer-bg-color);
    padding: 50px 0 0px;
    color: var(--body-white-color);
}
.footer_detail h2 {
    color: var(--body-white-color);
    margin-bottom: 30px;
}
.footer_info p {
    font-size: 13px;
}

.footer_heading {
    color: var(--body-white-color);
}
.info_listing li span {
    color: var(--body-yelllow-color);
}
.info_listing {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}
.info_listing li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 5px;
}
.info_listing li a {
    color: var(--body-white-color);
}
.social_media ul {
    display: flex;
    align-items: center;
    gap: 10px 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}
.social_media ul li h6 {
    margin: 0 10px 0 0;
    color: var(--body-white-color); 
}
.social_media ul li a {
    color: var(--body-yelllow-color);
}

.footer_info p a {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--body-white-color);
}
.footer_info_left h6 {
    color: var(--body-white-color);
    margin: 25px 0 0;
}
.footer_bottom_copyright {
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}
.copright_text {
    text-align: right;
}
.footer_bottom_menu ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px 30px;
}
.footer_bottom_menu ul li a {
    color: var(--body-white-color);
}
.footer_menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.footer_menu li a {
    color: var(--body-white-color);
}
.copyright {
    background-color: var(--body-default-color);
    color: var(--body-white-color);
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}
.copyright p a {
    color: var(--body-yelllow-color);
    font-weight: 700;
}

.priests_content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.priests_content {
    font-size: 16px;
    line-height: 25px;
}
.priests_content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}
.priests_content ul li span {
    color: var(--body-yelllow-color);
    font-weight: 600;
}
.priests_imgs img {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 5px;
}
.priests_video {
    margin-top: 30px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--body-default-color);
}
.about_card {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--body-default-color);
}
.about_card img {
    border-radius: 10px;
}

.contact_details .info_listing li a {
    color: var(--body-text-color);
}
.contact_from {
    background-color: var(--section-bg-light-color);
    padding: 30px;
    border-radius: 15px;
}
.contact_from .from_group {
    margin-bottom: 15px;
}
.contact_from .from_group input, .contact_from .from_group textarea {
    padding: 10px 15px;
    width: 100%;
    outline: none;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}