/* Immanual Church Styling */
:root {
    --primary-clr: #BB0E23;
    --secondary-clr: linear-gradient(96deg, #FAC322 -15.91%, #FACF52 23.83%, #FDD766 62.98%, #E9BD38 102.73%);
    --primary-text-clr: #CF872F;
    --background-clr: #FEFFE1;
    --black-clr: #000;
    --white-clr: #fff;
    --main-text-clr: #0A0A0A;
    --sub-text-clr: #636A79;
    --fc-button-bg-color: #FAC322;
    --fc-button-border-color: var(--primary-clr);
    --fc-button-hover-border-color: var(--primary-clr);
    --fc-button-hover-bg-color: #CF872F;
    --fc-button-text-color: var(--main-text-clr);
}

body {
    background: var(--background-clr);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* button styling */
.btn {
    padding: 10px 15px;
    min-width: 100px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 40px;
    transition: all .3s linear;
}

.btn-main {
    background: var(--secondary-clr);
    color: var(--black-clr) !important;
    font-weight: 600 !important;
}

.btn-main:hover,
.btn-main:focus {
    color: var(--black-clr) !important;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: #FAC322;
    outline: 1px solid #FAC322;
}

.btn-outline:hover,
.btn-outline:focus {
    color: #FAC322 !important;
    outline: 1px solid #FAC322;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

/* Header styling */
/* .brand-title{
    max-width: 170px;
} */
.custom-dropdown-submenu {
    max-height: 200px;
    overflow-y: auto;
}

body::-webkit-scrollbar-track,
.custom-dropdown-submenu::-webkit-scrollbar-track,
.custom-card-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--background-clr);
}

body::-webkit-scrollbar,
.custom-dropdown-submenu::-webkit-scrollbar,
.custom-card-content::-webkit-scrollbar {
    width: 6px;
    background-color: var(--background-clr);
}

body::-webkit-scrollbar-thumb,
.custom-dropdown-submenu::-webkit-scrollbar-thumb,
.custom-card-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-clr);
}

/* banner styling */

.carousel-item img {
    object-fit: cover;
}

.main-slide-wrapper {
    position: relative;
}

.main-slide-content {
    position: absolute;
    display: flex;
    background: #00000075;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    
}
.carousel-item:not(:first-child) .main-slide-content{
    display: none;
}

.main-slide-content img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    position: absolute;
    top: 2%;
    right: 2%;
}

.slide-title {
    font-size: clamp(1.5rem, 1.3571rem + 0.7143vw, 2rem);
    color: var(--white-clr);
    font-weight: 600;
}

.slide-text {
    /* line limit */
    /* overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical; */
    font-weight: 400;
    font-size: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
}
/* .welcome-msg{
    background-color: #000000cc;
    padding: 1rem;
} */
.welcome-msg{
    display: none;
}

@media(max-width:922px) {
    .main-slide-content {
        display: none;
    }
    .welcome-msg{
        display: block;
    }
}

.flash_news_sec {
    outline: 1px solid #ffe492;
}

/* service tile section styling */
.services .services-tile {
    display: flex;
    gap: 10px;
    background: var(--secondary-clr);
    padding: 24px;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.services .services-tile img {
    width: 40px;
    max-width: 100%;
}

.services .services-tile h5,
.services .services-tile p {
    font-size: clamp(1rem, 0.9643rem + 0.1786vw, 1.125rem);
    color: var(--main-text-clr);
    font-weight: 700;
    margin-bottom: 3px;
}

.services .services-tile p {
    font-size: 14px;
}


/* timings and calender styling */
.main-title {
    font-size: clamp(1.5rem, 1.3214rem + 0.8929vw, 2.125rem);
    color: var(--primary-clr);
    font-weight: 600;
}

.main-title span {
    color: var(--primary-text-clr);

}

.no-data {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.custom-card {
    padding: 1rem;
    height: 350px;
    border-radius: 10px;
    background: var(--white-clr);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
}

.card-title {
    font-size: clamp(1.125rem, 1.0179rem + 0.5357vw, 1.5rem);
    font-weight: 700;
    color: var(--main-text-clr);
    line-height: normal;
}

.service-card {
    padding: .5rem;
    border: none;
    margin-bottom: .5rem;
    background-color: var(--background-clr);
}

.custom-card-content {
    overflow-y: auto;
    overflow-x: hidden;
}

.fc .fc-button {
    /* line-height: .5; */
    background-color: var(--white-clr);
}

.fc .fc-button .fc-icon {
    vertical-align: top;
}

/* footer styling */

.main-footer .maps-wrap iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px
}

.contact-info .contact-info-txt {
    margin-right: 1rem;
    /* max-width: 50%; */
    width: auto;
}

.address-list {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    height: 100%;
}
.store-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.playstore-card, .appstore-card{
    max-width: 150px;
}
.footer-bottom, .footer-bottom-sm{
    margin-top: auto;
}
.footer-bottom-sm{
    background-color: var(--primary-clr);
    padding-top: 10px;
}
.footer-bottom-sm p{
    color: var(--white-clr);
}
@media(max-width:576px){
    .playstore-card, .appstore-card{
        max-width: 100px;
    }
}

/* Live bubble styling */
.live-bubble-wrapper{
    position: fixed;
    top: 150px;
    z-index: 10;
    right: 0;

}
.live-bubble{
    display: flex;
    align-items: center;
    padding-right: 5px;
    background-color: var(--primary-clr);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    color: white;
    font-weight: 600;
    
}
.live-bubble:hover{
    color: #fff;
    text-decoration: none;
}
.blinking {
    -webkit-animation: 1s blink ease infinite;
    -moz-animation: 1s blink ease infinite;
    -ms-animation: 1s blink ease infinite;
    -o-animation: 1s blink ease infinite;
    animation: 1s blink ease infinite;
    
  }
  
  @keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-moz-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-ms-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  
  @-o-keyframes blink {
    from, to {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }

  .ad-carousel .carousel-item img{
    width: 100%;
    height: 100%;
  }

  /* Inner page Styling */

  /* News & Events styling */

  .member-img img{
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}
.box-img{
    position: relative;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.member-img{
    position: relative;
}
.member-img::after{
    content: '';
    position: absolute;
    background-color: rgba(190, 66, 42, 0.7);
    width: 100%;
    inset: 0;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}
.donate-backdrop::after{
    background-color:rgba(190, 180, 42, 0.7);
}

.member-img:hover::after{
    background-color: rgba(190, 67, 42, 0.842);
}
.donate-backdrop:hover::after{
    background-color:rgba(190, 188, 42, 0.87);
}
.member-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.member-icon::after{
    content: attr(data-lang);
    color: #fff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: max-content;
    font-size: clamp(1rem, 0.5789rem + 2.1053vw, 2rem);
    font-weight: bold;
}
.member-icon img{
    width: clamp(7.5rem, 6.0714rem + 7.1429vw, 10.5rem);
    padding-bottom: 1rem;
}
.donate-icon::after{
    content: attr(data-lang);
}
@media (max-width:991px){
    .box-img-mt{
        margin-top: 1rem;
    }
}