/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --primary: #eaeeb5;
    --light: #ffffff;
    --dark: #1b1b1b;
    --menu: #000000d1;
    --verse: #ffffff;
    --gray: #666666;
    --brown: #bc451d;
    --black: #202020;
    --text-light: #ffffff; /* Light text color */
    --text-dark: #333333; /* Dark text color */
    --background-light: #ffffff; /* Light background color */
    --background-dark: #121212; /* Dark background color */
}

html {
  scroll-behavior: smooth !important;
}

/*body {
    margin:0;
    font-family:"Open Sans",sans-serif;
    font-size:1.05rem;
    font-weight:400;
    line-height:1.4;
    color: var(--black) !important;
    background-color:#ffffff;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0)
}*/

/* dark theme.css */
body.light-mode {
    margin:0;
    font-family:"Open Sans",sans-serif;
    font-size:1rem;
    font-weight:400;
    line-height:1.4;
    color: var(--text-dark);
    background-color: var(--background-light);
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0)
}

body.dark-mode {
    margin:0;
    font-family:"Open Sans",sans-serif;
    font-size:1rem;
    font-weight:400;
    line-height:1.4;
    color: var(--text-light);
    background-color: var(--background-dark);
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0)
}

/* styles for light and dark modes */

.dark-mode {
  color: var(--text-light);
}

.dark-mode h1, .dark-mode .h1,
.dark-mode h2, .dark-mode .h2,
.dark-mode h3, .dark-mode .h3,
.dark-mode h4, .dark-mode .h4,
.dark-mode h5, .dark-mode .h5,
.dark-mode h6, .dark-mode .h6 {
  color: var(--text-light);
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6{
    margin-top:0;
    margin-bottom:.5rem;
    font-family:"Alegreya Sans SC",sans-serif;
    font-weight:700;
    line-height:1.2;
    color: var(--text-dark);
}

.text-justify{
    text-align: justify;
    text-justify: inter-word;
}

.text-primary{
    text-shadow: 2px 2px 1px #00000021;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: .5s;
    color: var(--brown);
}

/* .btn.btn-primary,
.btn.btn-secondary {
    color: #bc451d;
} */

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

.btn-link{
    color: var(--primary);
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition:ease-in .3s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    /* transition: ease-in 0.3s; */
    font-weight: 600;
    text-shadow: 2px 2px 2px #0000007b;
}

.navbar-dark .navbar-brand img {
    max-height: 80px;
    transition: ease-out 0.3s;
    padding-top: 5px;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 60px;
    padding-top: 5px;
    transition: ease-in 0.3s;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        transition: 0.3s ease-in;
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 10px;
        margin-left: 0;
        border: 1px solid transparent;
    }

    .navbar-dark .navbar-brand img {
        max-height: 60px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
        transition: ease-out 0.3s;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--menu) !important;
        transition: ease-in 0.3s;
        /* box-shadow: rgba(60, 60, 60, 0.508) 0px 10px 10px -10px; */
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgb(120 59 12 / 50%), rgb(9 4 0 / 50%)), url(../img/bishop\ and\ children\ 1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 750px;
    width: auto;
    display: block;
}

@media screen and (max-width: 325px){
    .hero-header{
        height: 570px;
        width: auto;
    }
}

.hero-header img {
    position: relative;
    transition: all ease-in 0.3s;
    animation: mymove 1s forwards;
    max-width: 385px;
    max-height: 630px;
}

@keyframes mymove {
    from {right: 0px;}
    to {right: 50px;}
}
/* @keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
} */

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0px 0px 0px 3px rgb(235 190 175 / 20%);
    transition:ease-in .3s;
    min-height: 525px;
}

.service-item:hover {
    background: var(--primary) !important;
}

.service-item * {
    transition:ease-in .3s;
}

.service-item:hover * {
    color: var(--brown) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 4px solid var(--brown);
}

#img-hover{
    transition: all ease-in 0.3s;
}

#img-hover:hover{
    transform: scale(1.05);
}

#calendar {
    max-width: 1100px;
    min-height: 430px;
    margin: 0px auto;
    /*background: #fea11617;*/
    border-radius: 5px;
    border: 1px solid #dddddd;
}

fc-view-harness fc-view-harness-active {
    background: #b7d6de9e;
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-top: 1rem;
}

#calendar h2 {
    color: #FEA116;
    font-size: 1.3rem;
    text-align: center;
    text-shadow: 0.5px 0.5px 0px #2c3e508a;
}

#calendar a {
    color:var(--gray) !important;
    font-size: large;
    /*font-weight: 700;*/
}

#calendar button {
    transition: all ease-in 0.3s;
    font-weight:600;
}

#calendar button:hover {
    transition: all ease-in 0.3s;
    color:#3788d8 !important;
    font-weight:600;
}

#calendar .fc-h-event .fc-event-title {
    width: 100%;
    height: 100%;
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    text-align: start;
    transition: color 0.3s ease-in; /* Smooth transition for color change */
    /* Translate and animation setup */
    transform: translateX(100%);
    animation: scroll-left 12s linear infinite;
    overflow: visible;
}

#calendar .fc-h-event .fc-event-title:hover {
    animation-play-state: paused; /* Pause the animation on hover */
    color: black; /* Change text color to black on hover */
}

@media screen and (max-width: 768px) {
    #calendar .fc-h-event .fc-event-title {
        font-size: 12px; /* Adjust font size for smaller screens */
        line-height: 20px; /* Adjust line height for smaller screens */
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(20%);
    }
    100% {
        transform: translateX(-100%); /* Change this value based on your needs */
    }
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(20%);
    }
    100% {
        -moz-transform: translateX(-100%); /* Change this value based on your needs */
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(20%);
    }
    100% {
        -webkit-transform: translateX(-100%); /* Change this value based on your needs */
    }
}

#calendar .fc-h-event .fc-event-main-frame {
    overflow-x:hidden;
    overflow-y:hidden;
}

.fc-h-event .fc-event-title-container {
    min-width:auto !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: #ffbc57e3 !important;
    box-shadow: inset 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

#btn-center{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius:2px;
    border:1px solid #bc451d;
    color:var(--brown);
}

.grid-box-sc{
    width: 100%;
    height: 600px !important;
    overflow-y: scroll;
    border: 3px solid #bc451db0;
}
.grid-box-sc h3 {
    color: brown;
}
.grid-box-sc h2 {
    color: #590f38;
}

/*** Youtube Video ***/
.modal-content {
    background-color:#696969d1;
}

.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/deanery.jpeg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#namespace-shadow{
    text-shadow: 2px 2px 3px rgb(255 255 255);
    color: rgb(120, 59, 12);
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0px 0px 0px 3px rgb(235 190 175 / 20%);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
    border-radius: 20px !important;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: url(../img/calvary-mountain-sunset-background-vector.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: inherit;
    border-color: var(--primary) !important;
    border-radius: 20px !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--verse) !important;
    text-shadow: 0px 0px 10px #00000021;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}
.bg-dark-1 {
    background: url(../img/abstract-png-9096.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.bg-dark-2 {
    background: url(../img/calvary-mountain-sunset-background-vector.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.py-6{
    padding-top: 3.4rem !important;
    padding-bottom: 3.4rem !important;
}

.form-floating {
    position: relative;
    color: #000 !important;
}
/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 10px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.b-top{
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/*counter-css*/
.head {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color:#fff;
}

.count {
  font-size: 15px;
  text-shadow: 1px 1px 10px black;
  text-align: center;
  color:#fff;
  font-weight: 600;
}

.counter {
  width:100%;
  height: auto;
  padding: 4px;
  background: radial-gradient(circle, #333333, #2e2e2e) !important;
  z-index: 999;
}
.counterimg {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 105px;
    display: block;
    padding-bottom: 15px;
}
#new_counter{
    background:transparent;
}
/*cookie consent banner-css*/
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #eaeeb5;
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 9999;
}
/*responsive-css*/
@media screen and (max-width:305px) {
    .navbar-dark .navbar-brand img {
        display: none;
    }
}
@media screen and (max-width:992px) {
    #right-image-animation {
        display: block;
        position: relative;
        top: -50px;
        margin-left: auto;
        margin-right: auto;
        transform: translate(40px,0px);
        max-width: 255px;
        max-height: 485px;
    }
    #calendar button {
    font-size:x-small !important;
    color:#ffffff !important;
    }
    #calendar h2 {
    color: #FEA116;
    font-size: 1rem;
    text-align: center;
    text-shadow: 0.5px 0.5px 0px #2c3e508a;
    }
}
/* @media screen and (min-width:325px) {
    #hero-header-2{
        display: none;    }
    
} */
@media screen and (max-width:325px) {
    #right-image-animation {
        display: none;
    }
    #calendar button {
        display:none;
    }
}

@media screen and (max-width:350px) {
    .navbar-dark .navbar-brand img {
        max-height: 50px;
    }
}

section.todo-outer {
    width: 100%;
    float: left;
    padding: 30px 0;
}
section.todo-outer h1 {
    font-size: 40px;
    margin-bottom: 20px;
}
.todo-inner {
    width: 100%;
    float: left;
    padding: 40px;
    box-shadow: 0px 0px 1px #c1c1c1;
}
table tr td button {
    background: no-repeat;
    border: none;
    padding: 0;
    cursor: pointer;
}
.completed{text-decoration: line-through;}
#visitor-globe{color:#0d6efd; text-shadow:0 0 1px black;}
#google_translate_element{
    text-align: right;
    padding-right: 8px;
    position: relative;
    bottom: 35px;
    width: 100%;
    height: auto;
}
.goog-te-gadget .goog-te-combo{
    margin: 4px 0;
    padding: 4px 5px 4px 5px;
    font-family: "Open Sans",sans-serif;
    cursor: pointer;
}
@media screen and (max-width:992px) {
    #google_translate_element{
    text-align: center;
    padding: 0px;
    position: relative;
    bottom: 35px;
    width: 100%;
    height: auto;
    }}
