:root {
    --btn-blue: #2E86ED;
    --banner-heading-higlight: #FFD000;
    --banner-button-bg: #EA580C;
    --banner-button-hover-bg: #c54d0c;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #000;
    font-family: "Inter", sans-serif;
}

h1.banner-heading {
    font-size: 3.75rem;
    font-weight: 700;
}

.banner-heading-highlight {
    color: var(--banner-heading-higlight);
}

.section-heading {
    font-size: 3.05rem;
    font-weight: 600;
}

.section-heading--opacity80 {
    color: #000000CC;
}

.sub-section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
}

.banner-section {
    position: relative;
    /* background-image: linear-gradient(90deg, rgba(33, 47, 93, 0.8) 0%, rgba(30, 58, 138, 0.7) 50%, rgba(33, 47, 93, 0.8) 100%),
        url(../img/banner-desktop.jpg); */
    overflow: hidden;
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply; */
}

.banner-section .gradient-layer,
.banner-section .image-layer,
.banner-section .banner-content-layer {
    top: 0;
    left: 0;
}

.banner-section .image-layer {
    z-index: 1;
}

.banner-section .image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-section .gradient-layer {
    z-index: 2;
    background: linear-gradient(90deg, rgba(33, 47, 93, 0.8) 0%, rgba(30, 58, 138, 0.7) 50%, rgba(33, 47, 93, 0.8) 100%);
}

.banner-section .banner-content-layer {
    z-index: 4;
}

.header-explore-btn {
    background-color: var(--banner-button-bg);
    color: #fff;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    border-radius: 999px;
}

.header-explore-btn:hover,
.header-explore-btn:focus,
.header-explore-btn:active,
.header-explore-btn.active {
    transform: translateY(-2px);
    background-color: var(--banner-button-hover-bg);
}

.header-explore-btn .fa-arrow-right {
    transition: transform 0.3s ease;
}

.header-explore-btn:hover .fa-arrow-right,
.header-explore-btn:focus .fa-arrow-right {
    transform: translateX(8px);
}

.featured-media__wrapper {
    overflow: hidden;
}

.featured-media {
    animation: ticker-scroll 30s linear infinite;
}

.featured-media__wrapper:hover .featured-media {
    animation-play-state: paused;
}

.featured-media-logo {
    height: 2rem;
    border-right: 1px solid #d0d0d0;
}

.featured-media-logo-img {}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.benefits-section {
    background-color: #fffaf0;
}

.dignitaries-views {
    background-color: #DDEDFF;
}

.dignitaries-testimonials-slider .testimonial-card {
    background: white;
    border-radius: 0.8rem;
    padding: 1.5rem 2rem;
    max-width: 800px;
    margin: auto;
}

.dignitaries-testimonials-slider .profile-img {
    width: 100px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.dignitaries-testimonials-slider .dignitaries-testimonials-slider .quote {
    font-size: 3rem;
    color: #cce0ff;
    line-height: 1;
}

.dignitaries-testimonials-slider .text {
    font-size: 1.1rem;
    margin: 1rem 0;
    line-height: 1.5;
}

.dignitaries-testimonials-slider .author {
    font-size: 0.9rem;
}

.dignitaries-testimonials-slider .author span {
    color: #00000099;
}

.dignitaries-testimonials-slider .prev-btn,
.dignitaries-testimonials-slider .next-btn,
.participants-testimonials-wrapper .prev-btn,
.participants-testimonials-wrapper .next-btn,
.participant-testimonial-mobile-prev-btn,
.participant-testimonial-mobile-next-btn {
    background-color: var(--btn-blue);
    color: #fff;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    line-height: 2rem;
    vertical-align: baseline;
    /* font-family: monospace; */
    font-weight: 300;
    box-shadow: 0px 2px 4px 2px #00000040;
}

.spiritual-service-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    box-shadow: 0px 1px 2px 0px #0000000D;
    border-radius: 0.5rem;
}

.spiritual-service-card:hover {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.35);
}


.spiritual-service-card__text {
    color: #00000099;
    font-weight: 400;
}

.service-snippet-card {
    overflow: hidden;
    border: 1px solid #bebebe;
}

.service-snippet-card__img__wrapper,
.service-snippet-card .card-title,
.service-snippet-card__text {
    cursor: pointer;
}


.service-snippet-card:hover {
    border: 1px solid var(--btn-blue);
}

.service-snippet-card .card-body {
    position: relative;
    overflow-y: auto;
    height: 100%;
}

.service-snippet-card__img__wrapper {
    width: 100%;
    height: 225px;
    overflow: hidden;
    border-radius: 0.5rem;
}

.service-snippet-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-snippet-card:hover .service-snippet-card__img {
    transform: scale(1.1);
    overflow: hidden;
}

.service-snippet-card__text {
    color: #00000099;
}

.service-snippet-card__action-btn {
    border: none;
    border-radius: 0.5rem;
    background-color: #E7EEF6;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.service-snippet-card__action-btn:hover,
.service-snippet-card__action-btn:focus {
    background-color: #d7f3f3;
    transform: translateY(-2px);
}

.for-children-teens {
    background-color: #FFFCE4;
}

.for-children-teens .sub-section-heading {
    color: #DD8C00;
}

.for-young-men-women {
    background-color: #FCE9F5;
}

.for-young-men-women .sub-section-heading {
    color: #DB2777;
}

.for-adults-families {
    background-color: #DEFCE8;
}

.for-adults-families .sub-section-heading {
    color: #16A34A;
}

.for-contributors {
    background-color: #F2E9FF;
}

.for-contributors .sub-section-heading {
    color: #9333EA;
}

.for-community-involvement {
    background-color: #FFEED7;
}

.for-community-involvement .sub-section-heading {
    color: #EA580C;
}

.for-dining-spiritual {
    background-color: #ECF1FF;
}

.for-dining-spiritual .sub-section-heading {
    color: #2563EB;
}

.for-guests-events {
    background-color: #FCE9F5;
}

.for-guests-events .sub-section-heading {
    color: #DB2777;
}

.participants-testimonials-wrapper .prev-btn,
.participants-testimonials-wrapper .next-btn {
    position: absolute;
    top: 50%;
    z-index: 9;
}

.swiper.participants-testimonials-slider {
    width: 100%;
}

.participants-testimonials-wrapper .prev-btn {
    left: 10px;
    transform: translate(-30px, -50%);
}

.participants-testimonials-wrapper .next-btn {
    right: 10px;
    transform: translate(30px, -50%);
}

.participant-testimonial-slide {
    border: 1px solid #DCDCDC;
    border-radius: 1rem;
    opacity: 60%;
}

.participant-testimonial-slide.swiper-slide-active {
    border: 1px solid #1F81F6;
    opacity: 100%;
}

.participant-testimonial-slide .person-name {
    color: #1F81F6;
}

footer {
    background-color: #ECF1FF;
}

footer strong.copyright-statement {
    color: #020202;
    font-weight: 500;
}