/*** Spinner Start ***/

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

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

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

.btn-md-square {
    width: 46px;
    height: 46px;
}

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

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

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
   /* background: rgba(0, 0, 0, .6);*/
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
    
    .quote-1 {
        width: 100% !important;
    }
    .ban-image {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;
    height: 275px;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    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;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

#runnintext {
    width: 100%;
    
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

#runnintext p{
    display: inline-block;
    color: #FFF;
    padding-left: 100%;
    animation: move 25s linear infinite;
}

@keyframes move {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


.headimg {
    height: 80px;
}

.headerbg {
    background-color: #053f2c !important;
}

.headtitle {
    text-shadow: 2px 2px #1842b6;
    text-transform: uppercase;
    color: #FFF;
    line-height: 80px;
}

/*053f2c*/

.btn-toggle {
    display: inline-flex;
    align-items: center;
    padding: .25rem .5rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    background-color: transparent;
    border: 0;
  }
  .btn-toggle:hover,
  .btn-toggle:focus {
    color: rgba(0, 0, 0, .85);
    background-color: #d2f4ea;
  }
  
  .btn-toggle::before {
    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
  }
  
  .btn-toggle[aria-expanded="true"] {
    color: rgba(0, 0, 0, .85);
  }
  .btn-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
  }
  
  .btn-toggle-nav a {
    display: inline-flex;
    padding: .1875rem .5rem;
    margin-top: .125rem;
    margin-left: 1.25rem;
    text-decoration: none;
  }
  .btn-toggle-nav a:hover,
  .btn-toggle-nav a:focus {
    background-color: #d2f4ea;
  }
  
  .scrollarea {
    overflow-y: auto;
  }
  
  .fw-semibold { font-weight: 600; }
  .lh-tight { line-height: 1.25; }

  #prayer-page, #view-prayer-page {
    position: relative;
  }

  /* #prayer-page:before, #view-prayer-page:before {
    /* content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1; */
   /* background-image: url('../img/background-with-pattern.jpg');
    background-repeat: repeat-y;
    background-position: 50% 0;*/
    /*background-size: cover;
  } */

  /*#view-prayer-page::before {
    opacity: 0.2;
  }*/

  #view-prayer-page img {
    width : desired_width !important;
    height: auto; /*to preserve the aspect ratio of the image*/
   
  }

  #view-prayer-page .image.image_resized {
    display: block;
    box-sizing: border-box;
    z-index: 999;
}

#view-prayer-page .image.image_resized img {
    width: 100%;
}

#view-prayer-page .image.image_resized > figcaption {
    display: block;
}

#view-prayer-page h1 {
    z-index: 99;
    font-size: 35px;
    color: #1842b6;

    
}

#view-prayer-page  p {
    z-index: 999;
}

.prayer-list {
    height: 500px;
    /* box-shadow: 0 10px 10px #053f2c !important; */

    margin-bottom: 35px;
    box-shadow: 5px 5px #5d7acb !important;
    border: 1px solid #5d7acb !important;
    border-radius: 5px;
    transition: .5s;
    background-color: #FFF;
    cursor: pointer;

}

.prayer-list:hover {
    border-color: #1842b6 !important;
    box-shadow: 5px 5px #1842b6 !important;
    cursor: pointer;
}

.prayer-list .card-img-top {
   height: 250px;
   text-align:center;
}

.prayer-list .card-img-top img {
    height: 100%;
    width: auto !important;
 }

 .prayer-list .card-title {
    font-size: 15px;
    color: #1842b6;
    height: 35px;
    overflow: hidden;
 }

 .prayer-list .card-text {
    height: 100px;
 }

 .box-container {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-top: 1.4em;
    width: 100%;
}

.box.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.4s, transform 0.35s;
}
.box {
    list-style-type: none;
    float: left;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.2s, transform 0.35s;
}

.box .inner {
    padding: 10px;
    position: relative;
}

.box a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.box a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s;
}

.box img {
   /* width: calc(100% + 50px);*/
    max-width: calc(100% + 50px);
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-40px, 0, 0);
}

.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.blog-posts .post-img {
    max-height: 440px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
}

.blog-posts .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-posts .meta-top {
    margin-top: 20px;
    color: 
color-mix(in srgb, #444444, transparent 40%);
}

.blog-posts .meta-top ul {
    display: flex
;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.align-items-center {
    align-items: center !important;
}

.blog-posts .content {
    margin-top: 20px;
}

.blog-posts .title a {
    color: #556270;
    transition: 0.3s;
}

.blog-posts .title a:hover {
    color: #d9232d;
}

.widgets-container {
    background-color:#ffffff;
    padding: 30px;
   /* margin: 60px 0 30px 0;*/
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-item {
    margin-bottom: 40px;
}


.widget-title {
    color: #556270;
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget ul li {
    padding-bottom: 10px;
}

.categories-widget ul a {
    color: 
color-mix(in srgb, #444444, transparent 20%);
    transition: 0.3s;
}

.recent-posts-widget .post-item {
    display: flex
;
    margin-bottom: 15px;
}


.recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: 
color-mix(in srgb, #444444, transparent 50%);
}

.widget-item:last-child {
    margin-bottom: 0;
}

.tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tags-widget ul li {
    display: inline-block;
}

.tags-widget ul a {
    color: 
color-mix(in srgb, #444444, transparent 30%);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid 
color-mix(in srgb, #444444, transparent 60%);
    display: inline-block;
    transition: 0.3s;
}

.blog-pagination {
    padding-top: 0;
    color: 
color-mix(in srgb, #444444, transparent 40%);
}

.blog-pagination ul {
    display: flex
;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: 
color-mix(in srgb, #444444, transparent 40%);
    padding: 7px 16px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active, .blog-pagination li a:hover {
    background: #d9232d;
    color: #ffffff;
}

.ftco-section {
    /*padding: 7em 0;*/
    position: relative;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important;
}

.ftco-services-2 .services {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ftco-services-2 .services .icon {
    line-height: 1.3;
    position: relative;
    margin-bottom: 20px;
}

.ftco-services-2 .services .icon span {
    font-size: 60px;
    color: #ffd615;
}

.ftco-services-2 .services .media-body h3 {
    font-size: 20px;
    font-weight: 500;
}

.block-6 .media-body p {
    font-size: 16px;
}

.ftco-daily-verse {
    position: relative;
    padding: 7em 0;
    z-index: 0;
}

.ftco-daily-verse .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .6;
    background: #000000;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.ftco-daily-verse .icon span {
    color: #ffd615;
    font-size: 100px;
    font-weight: normal;
}

.daily-verse .subheading {
    font-family: "Great Vibes", cursive;
    display: inline-block;
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}

.daily-verse h3 {
    font-family: "Lora", Georgia, serif;
    font-style: italic;
    color: #ffd615;
    font-size: 18px;
}

.daily-verse h4 {
    color: #fff !important;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.daily-verse h4 span {
    color: rgba(255, 255, 255, 0.3);
}

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

.img, .blog-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*
.elementor-element {
    --widgets-spacing: 20px 20px;
}
.elementor-element, .elementor-lightbox {
    --swiper-theme-color: #000;
    --swiper-navigation-size: 44px;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-horizontal-gap: 6px;
}
.elementor-section {
    position: relative;
}
.elementor-element {
    --flex-direction: initial;
    --flex-wrap: initial;
    --justify-content: initial;
    --align-items: initial;
    --align-content: initial;
    --gap: initial;
    --flex-basis: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --order: initial;
    --align-self: initial;
    flex-basis: var(--flex-basis);
    flex-grow: var(--flex-grow);
    flex-shrink: var(--flex-shrink);
    order: var(--order);
    align-self: var(--align-self);
}
.elementor *, .elementor :after, .elementor :before {
    box-sizing: border-box;
}

.elementor-section .elementor-container {
    display: flex
;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

@media (min-width: 768px) {
    .elementor-column.elementor-col-50, .elementor-column[data-col="50"] {
        width: 50%;
    }
}
.elementor-element {
    --widgets-spacing: 20px 20px;
}


.elementor-column {
    position: relative;
    min-height: 1px;
    display: flex;

}

.elementor-element-populated {
    background-image: url("../img/need-pray.webp");
    background-repeat: no-repeat;
    background-size: cover;
}
.elementor-18 .elementor-element.elementor-element-44ad2ef > .elementor-element-populated {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 160px 100px 160px 100px;
}
.elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding: 10px;
}
.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap {
    display: flex
;
}
.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.elementor-18 .elementor-element.elementor-element-44ad2ef > .elementor-element-populated > .elementor-background-overlay {
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.elementor-18 .elementor-element.elementor-element-44ad2ef > .elementor-element-populated > .elementor-background-overlay {
    background-color: #000000;
    opacity: 0.5;
}
.elementor .elementor-background-overlay, .elementor .elementor-background-slideshow {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

.elementor-18 .elementor-element.elementor-element-2136a10 {
    text-align: center;
}
.elementor-widget:not(:last-child) {
    margin-block-end: 20px;
}
.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}
.elementor-widget-wrap>.elementor-element {
    width: 100%;
}
.elementor-element {
    --widgets-spacing: 20px 20px;
}
.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.elementor-widget:not(:last-child) {
    margin-block-end: 20px;
}
.elementor-widget:not(:last-child) {
    margin-bottom: 20px;
}
.elementor-widget-wrap>.elementor-element {
    width: 100%;
}
.elementor-element {
    --widgets-spacing: 20px 20px;
}

elementor-18 .elementor-element.elementor-element-fa5b3f8 > .elementor-widget-container {
    margin: 0px 0px 10px 0px;
}
.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.elementor-18 .elementor-element.elementor-element-fa5b3f8 .elementor-heading-title {
    color: #ffffff;
    font-family: "PT Serif", Sans-serif;
    font-size: 55px;
    font-weight: 700;
    text-transform: capitalize;
}

elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

elementor-18 .elementor-element.elementor-element-974492a .elementor-heading-title {
    color: #d1d1d1;
    font-family: "Muli", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.elementor-widget-wrap>.elementor-element {
    width: 100%;
}
.elementor-element {
    --widgets-spacing: 20px 20px;
}

.elementor-18 .elementor-element.elementor-element-a2415a9 .elementor-button {
    background-color: #f26938;
    font-family: "Muli", Sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    fill: #ffffff;
    color: #ffffff;
    border-radius: 0px 0px 0px 0px;
    padding: 21px 55px 21px 55px;
}
.elementor-18 .elementor-element.elementor-element-a2415a9 a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}*/

.event {
    width: 100%;
}

.event ul {
    list-style: none;
    margin-bottom: 0px;
}

.event_container {
    height: 100px;
    background: #eaffee;
    margin-top: -20px;
    border-radius: 6px;
    padding-left: 70px;
    padding-right: 35px;
    border: 1px solid #edecec;
    font-size:25px;
    font-weight:bold;
    color:#053f2c;
    text-align: justify;
}

.event_date {
    width: 70px;
    height: 70px;
    background: #b10707;
}
.event_day {
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 0.75;
}

.event_month {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 0.75;
    margin-top: 11px;
}

.event_content {
    padding-left: 60px;
}

.event_title, .event_title a {
    font-size: 18px;
    color: #181818;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.event_row {
    margin-top: 5px;
    padding-left: 0px !important;
}

.event_row li:not(:last-child) {
    margin-bottom: 7px;
}

.event_icon {
    display: inline-block;
    width: 14px;
    height: 15px;
}

.event_row li span {
    font-family: 'Standard', serif;
    font-style: italic;
    font-size: 12px;
    color: #7c7c7c;
    margin-left: 6px;
}

.event_timer li:not(:last-child) {
    border-right: solid 1px #e0e0e0;
}
.event_timer li {
    display: inline-block;
    height: 80px;
    width: 75px;
    text-align: center;
}

.event_num {
    font-size: 40px;
    font-weight: 600;
    line-height: 0.75;
    color: #181818;
    margin-top: 8px;
}

.event_ss {
    font-size: 16px;
    line-height: 0.75;
    color: #7c7c7c;
    text-transform: uppercase;
    margin-top: 19px;
}

#carouselExampleSlidesOnly {
    z-index: -1;
}

.quote {
    width: 100%;
    padding-top: 97px;
    padding-bottom: 98px;
    background-image: url('../img/quote.jpg');
}
.quote-1 {
    width: 100%;
    padding-top: 97px;
    padding-bottom: 98px;
    background-image: url('../img/quote.jpg');
}

.quote_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}

.section_title_container {
    text-align: center;
}

.section_title {
    margin-top: 10px;
}

.quote .section_title h2, .quote .section_subtitle {
    color: #FFFFFF;
}

.section_subtitle {
    font-family: 'Bilbo', serif;
    font-size: 24px;
    color: #9d9d9d;
    margin-top: -6px;
}

.quote_row {
    margin-top: 55px;
}

.quote_text {
    font-size: 18px;
    font-style: italic;
    color: #FFFFFF;
    margin-top: 30px;
    line-height: 2;
}

.quote_source {
    font-size: 18px;
    color: #e6c100;
    margin-top: 26px;
}

.ftco-section {
    /*padding: 9em 0;*/
    position: relative;
}

.heading-section {
    position: relative;
    z-index: 0;
}

.heading-section .subheading {
    font-size: 12px;
    display: inline-block;
    font-weight: 800;
    color: #ce0f3d;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 0;
    margin-bottom: 10px;
}

.heading-section h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    z-index: 0;
    position: relative;
    color: #000000;
}


.blog-entry {
    display: block;
    width: 100%;
    text-align: center;
}

.block-20 {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 300px;
    position: relative;
    display: block;
    width: 100%;
}

.blog-entry .text {
    position: relative;
    border-top: 0;
    border-radius: 2px;
    width: 100%;
    border: 1px solid #f7e8f0;
    z-index: 0;
    border-radius: 0 0 10px 10px;
    background: #f7e8f0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-entry .meta > div {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-entry .meta > div a {
    color: #ce0f3d;
    font-weight: 500;
}

.blog-entry .text .meta-chat {
    color: #ce0f3d;
}

.blog-entry .meta > div a {
    color: #ce0f3d;
    font-weight: 500;
}

.blog-entry .text .heading {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}
.blog-entry .text .heading a {
    color: #000000;
}

.blog-entry .text:after {
    position: absolute;
    bottom: -4px;
    left: 20px;
    right: 20px;
    content: '';
    height: 4px;
    background: #ce0f3d;
    border-radius: 0 0 6px 6px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn.btn-primary {
    background: #ce0f3d;
    border: 2px solid #ce0f3d;
    color: #fff;
}

.footer-container {
    background-color: transparent;
    background-image: url(../img/footer_background.png);
}

.top-footer.background-yellow {
    /* padding: 22px 0; */
    padding: 33px 0;
    background-image: url(../img/xmas_patterny_bar.jpg);
    background-repeat: repeat;
    
}

.blog-entry img {
    width: 100%;
    height: auto;
}


.glow {
    font-size: 40px;
    color: #045207;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #FFF, 0 0 25px #FFF, 0 0 30px #FFF, 0 0 35px #FFF;
    }
    to {
      text-shadow: 0 0 5px #FFF, 0 0 15px #FFF, 0 0 20px #FFF, 0 0 25px #FFF, 0 0 30px #FFF, 0 0 35px #FFF, 0 0 80px #FFF;
    }
  }

  .p-b-80, .p-tb-80, .p-all-80 {
    padding-bottom: 80px;
}

.p-r-45, .p-lr-45, .p-all-45 {
    padding-right: 45px;
}

.p-b-63, .p-tb-63, .p-all-63 {
    padding-bottom: 63px;
}

.hov-img0 {
    display: block;
    overflow: hidden;
}
.how-pos5-parent {
    position: relative;
}

.hov-img0 img {
    /*width: 100%;*/
    -webkit-transition: transform 0.9s ease;
    -o-transition: transform 0.9s ease;
    -moz-transition: transform 0.9s ease;
    transition: transform 0.9s ease;
}

.how-pos5 {
    position: absolute;
    top: 15px;
    left: 10px;
}
.bg9 {
    background-color: #26d48c;
}
.size-123 {
    width: 70px;
    min-height: 70px;
}

.ltext-107 {
    font-family: Poppins-Bold;
    font-size: 30px;
    line-height: 1.1;
}

.cl2 {
    color: #333;
}

.stext-109 {
    font-family: Poppins-Regular;
    font-size: 12px;
    line-height: 1.833333;
}
.cl3 {
    color: #666;
}

.p-t-32, .p-tb-32, .p-all-32 {
    padding-top: 32px;
}

.p-b-15, .p-tb-15, .p-all-15 {
    padding-bottom: 15px;
}



.ltext-108 {
    font-family: Poppins-Bold;
    font-size: 26px;
    line-height: 1.3846;
}


.trans-04 {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.stext-117 {
    font-family: Poppins-Light;
    font-size: 15px;
    line-height: 1.666667;
}

.p-b-15, .p-tb-15, .p-all-15 {
    padding-bottom: 15px;
}



.flex-sb-m {
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.flex-w {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stext-111 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.6923;
}

.stext-101 {
    font-family: Poppins-Medium;
    font-size: 15px;
    line-height: 1.466667;
    text-transform: uppercase;
}

.hov-img0:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-t-50, .p-tb-50, .p-all-50 {
    padding-top: 50px;
}

.mtext-112 {
    font-family: Poppins-Bold;
    font-size: 22px;
    line-height: 1.333333;
}

.bor7 {
    border: 1px solid #ccc;
    border-radius: 15px;
}
.size-301 {
    min-height: 30px;
}

.stext-107 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.923;
}



.bor7 {
    border: 1px solid #ccc;
    border-radius: 15px;
}
.size-301 {
    min-height: 30px;
}
.stext-107 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.923;
}
.cl6 {
    color: #888;
}
.flex-c-m {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.m-r-5, .m-lr-5, .m-all-5 {
    margin-right: 5px;
}
.m-b-5, .m-tb-5, .m-all-5 {
    margin-bottom: 5px;
}
.p-r-15, .p-lr-15, .p-all-15 {
    padding-right: 15px;
}
.p-l-15, .p-lr-15, .p-all-15 {
    padding-left: 15px;
}



.bor17 {
    border: 1px solid #e6e6e6;
    border-radius: 25px;
}

.pos-relative {
    position: relative;
}
.of-hidden {
    overflow: hidden;
}

.size-116 {
    width: 100%;
    height: 50px;
}
.stext-103 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.466667;
}

.size-122 {
    width: 55px;
    height: 100%;
}

.cl4 {
    color: #999;
}
.ab-t-r {
    position: absolute;
    right: 0px;
    top: 0px;
}

.zmdi {
    display: inline-block;
    font: normal normal normal 14px / 1 'Material-Design-Iconic-Font';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.zmdi-search:before {
    content: '\f1c3';
}
.zmdi-search:before {
    content: '\f1c3';
}

#blog-posts ul, li {
    margin: 0px;
    list-style-type: none;
}

.bor18 {
    border-top: 1px solid #e6e6e6;
}

.dis-block {
    display: block;
}

.p-b-33, .p-tb-33, .p-all-33 {
    padding-bottom: 33px;
}

.hov-ovelay1 {
    position: relative;
}

.size-214 {
    width: 90px;
}

.hov-ovelay1::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(103, 117, 214, 0.8);
    opacity: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.size-215 {
    width: calc(100% - 110px);
}

.flex-w, .flex-l, .flex-r, .flex-c, .flex-sa, .flex-sb, .flex-t, .flex-b, .flex-m, .flex-str, .flex-c-m, .flex-c-t, .flex-c-b, .flex-c-str, .flex-l-m, .flex-r-m, .flex-sa-m, .flex-sb-m, .flex-col-l, .flex-col-r, .flex-col-c, .flex-col-str, .flex-col-t, .flex-col-b, .flex-col-m, .flex-col-sb, .flex-col-sa, .flex-col-c-m, .flex-col-l-m, .flex-col-r-m, .flex-col-str-m, .flex-col-c-t, .flex-col-c-b, .flex-col-c-sb, .flex-col-c-sa, .flex-col-l-sb, .flex-col-r-sb, .flex-row, .flex-row-rev, .flex-col, .flex-col-rev, .dis-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
;
}

.flex-t {
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.flex-col-l, .flex-col-r, .flex-col-c, .flex-col-str, .flex-col-t, .flex-col-b, .flex-col-m, .flex-col-sb, .flex-col-sa, .flex-col-c-m, .flex-col-l-m, .flex-col-r-m, .flex-col-str-m, .flex-col-c-t, .flex-col-c-b, .flex-col-c-sb, .flex-col-c-sa, .flex-col-l-sb, .flex-col-r-sb, .flex-col {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.flex-col-t {
    justify-content: flex-start;
}

.p-b-30, .p-tb-30, .p-all-30 {
    padding-bottom: 30px;
}

.p-t-8, .p-tb-8, .p-all-8 {
    padding-top: 8px;
}

.m-r-20, .m-lr-20, .m-all-20 {
    margin-right: 20px;
}

.p-r-4, .p-lr-4, .p-all-4 {
    padding-right: 4px;
}
.p-l-4, .p-lr-4, .p-all-4 {
    padding-left: 4px;
}
.p-b-8, .p-tb-8, .p-all-8 {
    padding-bottom: 8px;
}
.p-t-8, .p-tb-8, .p-all-8 {
    padding-top: 8px;
}

.p-t-65, .p-tb-65, .p-all-65 {
    padding-top: 65px;
}


@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/Poppins/Poppins-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Light;
    src: url('../fonts/Poppins/Poppins-Light.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-ExtraLight;
    src: url('../fonts/Poppins/Poppins-ExtraLight.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/Poppins/Poppins-Medium.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Italic;
    src: url('../fonts/Poppins/Poppins-Italic.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/Poppins/Poppins-Bold.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf'); 
  }
  

  .bg-img1 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.txt-center {
    text-align: center;
}

.ltext-105 {
    font-family: Poppins-Bold;
    font-size: 50px;
    line-height: 1.1;
}
.cl0 {
    color: #fff;
}

.p-r-15, .p-lr-15, .p-all-15 {
    padding-right: 15px;
}
.p-l-15, .p-lr-15, .p-all-15 {
    padding-left: 15px;
}
.p-b-92, .p-tb-92, .p-all-92 {
    padding-bottom: 92px;
}
.p-t-92, .p-tb-92, .p-all-92 {
    padding-top: 92px;
}

.active-pagination1 {
    background-color: #999;
    border-color: #999;
    color: #fff;
}
.how-pagination1 {
    font-family: Poppins-Regular;
    font-size: 14px;
    color: #808080;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
}
.flex-c-m {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.m-r-7, .m-lr-7, .m-all-7 {
    margin-right: 7px;
}
.m-l-7, .m-lr-7, .m-all-7 {
    margin-left: 7px;
}
.m-b-7, .m-tb-7, .m-all-7 {
    margin-bottom: 7px;
}
.m-t-7, .m-tb-7, .m-all-7 {
    margin-top: 7px;
}

#main-head {
    background-color: #d5ebe6;
}

.accordion-style .card {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.04);
}

.card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
}

.accordion-style .btn-link {
    color: #000;
    line-height: 20px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 4px;
    padding: 20px 35px 20px 20px;
    font-weight: 700;
    text-decoration: none;
} 

.accordion-style .btn-link.collapsed:after {
    content: "\F282";
   
}
.accordion-style .btn-link:after {
    content: "";
    right: 17px;
    font-size: 18px;
    height: 30px;
    transform: none;
    width: 30px;
    top: 16px;
    position: absolute;
    color: var(--tp-heading-primary);
    content: "\F285";
   
    transition: 0.4s;
    background: #fbd45b;
    line-height: 30px;
    text-align: center;
    border-radius: 30px;
    font-weight: 400;
}

.mb-30 {
    margin-bottom: 30px;
}

.accordion-style .show {
    border-top: 1px solid #f1f2f2;
}

@media (max-width: 768px) {
	.event_container {
		height: auto !important;
		padding-left: 5px;
		padding-right: 5px;
		font-size:12px;
		margin-bottom: 10px;
		margin-left:10px;
		text-align: justify;
	}
	.event_content {
		padding-left: 5px;
	}
	
	.event_num {
		font-size:20px;
	}
	.event_timer li { 
		width:60px;
	}
	.contact-detail h4 {
		font-size:10px;
	}
	.contact-detail .h5 {
		font-size:10px;
	}
	.event_timer {
		padding-left:0px !important;
	}
	.event_timer li {
		height:0px;
	}
}

.img-center {
	text-align:center;
}
.txt-justify {
	text-align:justify;
}

.image {
    overflow: hidden;
    text-align:center;
}
.image, .image img {
    position: relative;
}

#blog-posts .blog_item, #blog .blog_share {
    border-bottom: 1px solid #cccccc;
}

.heading_space {
    margin-bottom: 45px;
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 30px;
}

.sidebar-widget {
    background-color: #f5f3ef;
    border: 1px solid #eee;
    padding: 30px;
}

.widget-title {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.widget-title h3:before {
    background-color: #ff6a32;
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

.widget-title h3 {
    font-weight: 700;
    color: #111521;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
    font-size: 20px;
}

.category-list li:not(:last-of-type) {
    margin-bottom: 10px;
}
.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    color: #111521;
    text-decoration: underline;
}
.category-list li a {
    /*font-family: var(--primary-font);*/
    font-weight: 600;
    color: #111521;
}

#blog-posts ul {
    padding-left : 0px !important;
}

.thumb-post li:not(:last-of-type) {
    margin-bottom: 20px;
}

.thumb-post li {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.thumb-post li .thumb {
    flex-shrink: 0;
    width: 80px;
    height: 70px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    margin: 0px 15px 0px 0px;
    overflow: hidden;
}

.thumb-post li .thumb img{
    width: 100%;
}

.thumb-post .thumb-post-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.thumb-post .thumb-post-info h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.thumb-post .thumb-post-info .date {
    font-weight: 600;
    font-size: 12px;
    
    text-transform: uppercase;
    color: #111521;
    display: flex;
    align-items: center;
    line-height: 1;
}

.thumb-post .thumb-post-info h3 a {
    color: #111521;
}

.tags li {
    display: inline-block;
}

.tags li a {
    background-color: #d7d7d7;
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    color: #111521;
    font-weight: 600;
    letter-spacing: -0.5px;
    padding: 3px 15px;
    margin: 0px 3px 10px 0px;
}

.js-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 0;
        list-style: none; /* If using <ul> */
        margin-top: 1rem;
    }

    .js-pagination .prev,
    .js-pagination .next,
    .js-pagination .number {
        /* Your base button styles: padding, margin, border, etc. */
        margin: 0 2px;
        padding: 5px 10px;
        border: 1px solid #ccc;
        background-color: #fff;
        cursor: pointer;
    }

    .js-pagination .prev:disabled,
    .js-pagination .next:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }

    .js-pagination .number.active {
        /* Styles for the active page number */
        background-color: #007bff;
        color: #fff;
        border-color: #007bff;
        font-weight: bold;
    }

    .js-pagination .numbers {
        display: flex;
        align-items: center;
    }

    .js-pagination .number-first,
    .js-pagination .number-last {
        padding: 5px;
        margin: 0 2px;
    }
    .sidebar-widget .search-form {
    position: relative;
}
.sidebar-widget .search-form .form-control {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
    height: 50px;
    border: 1px solid #b8b8b8;
    padding-right: 40px;
}
.sidebar-widget .search-form .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    font-size: 15px;
    color: #b8b8b8;
}

.sidebar-widget .search-form button {
    border:none;
    background:none;

}

/**
 * Grid container
 */
.tiles-wrap {
  position: relative; /** Needed to ensure items are laid out relative to this container **/
  margin: 10px 0;
  padding: 0;
  list-style-type: none;
  display: none;
}

/**
 * Grid container
 */
#tiles {
list-style-type: none;
position: relative; /** Needed to ensure items are laid out relative to this container **/
margin: 0;
}

/**
 * Grid items
 */
#tiles li {
width: 200px;
background-color: #ffffff;
border: 1px solid #dedede;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
display: none; /** Hide items initially to avoid a flicker effect **/
  cursor: pointer;
padding: 4px;
}

#tiles li img {
display: block;
}

/**
 * Grid item text
 */
#tiles li p {
color: #666;
font-size: 12px;
margin: 7px 0 0 7px;
}

/**
 * Some extra styles to randomize heights of grid items.
 */
#tiles ali:nth-child(3n) {
height: 175px;
}

#tiles ali:nth-child(4n-3) {
padding-bottom: 30px;
}

#tiles ali:nth-child(5n) {
height: 250px;
}

#view-prayer-page .card-body p, #arulvakku-container p, #arulvakku-container div {
    color:#000 !important;
}


.goog-logo-link {
   display:none !important;
}

.goog-te-gadget {
   color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
   color: blue !important;
}

.psalmText {
    width:100% !important;

}

.marquee-container {
  width: 100%;
  overflow: hidden; /* Hides content outside the container */
  white-space: nowrap; /* Prevents text from wrapping */
  box-sizing: border-box;

}

.marquee-text {
  display: inline-block; /* Allows animation of the text */
  padding-left: 20%; /* Starts the text off-screen to the right */
  animation: scroll-left 15s linear infinite; /* Applies the animation */
    font-size:18px;
  
  font-weight:bold;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0); /* Starting position */
  }
  100% {
    transform: translateX(-100%); /* Moves the text completely off-screen to the left */
  }
}


.img-thumbnail {
    background-color: #053f2c !important;

}

#today-read-home p {
    margin-bottom: 0px !important;
}

.quote-1 {
    width: 50%;
    padding-top: 97px;
    padding-bottom: 98px;
    background-image: url('../img/quote.jpg');
}
.quote-1 .section_title h2, .quote-1 .section_subtitle {
    color: #FFFFFF;
}

.ban-image {
    width: 100%;
}

 .swiper {
  width: 260px;
  height: 260px;
  padding: 50px;
  transform-style: preserve-3d;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 260px;
  height: 260px;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}
.embed-responsive::before {
    display: block;
    content: "";
}

.bd-example {
    position: relative;
    padding: 1rem;
    margin: 1rem -15px 0;
    border: solid #f8f9fa;
    border-width: 0.2rem 0 0;
}
