:root {
    --heading-color: #277078;
    --secondary: linear-gradient(135deg, #D4AF37, #e1be50, #B8962E);
    --black: #252422;
    --heading-font: "Bricolage Grotesque", sans-serif;
    --body-text: "Onest", sans-serif;
    --gap: calc(var(--size) / 5);
    --duration: 40s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
}

body {
    font-family: var(--body-text);
    background: linear-gradient(180deg, #f8f4ef, #f2ebe3);
}


.footer-device-mobile.hide {
    display: none !important;
}

input[type="number"]::-webkit-inner-spin-button{
    appearance:none;
    margin:0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

ul {
    list-style: none;
    margin: 0px !important;
    padding: 0px !important;
}

a {
    text-decoration: none !important;
    color: #000;
}

p {
    color: #000;
}

p:last-child {
    margin-bottom: 0 !important;
}

strong {
    font-weight: 600;
}

.gold {
    color: #c49456 !important;
}

.section-padding {
    padding: 50px 0;
}

.desktop-header {
    position: relative;
    z-index: 9;
}


.desktop-header .container-fluid {
    padding: 5px 45px;
}


.desktop-header .navbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


.desktop-header .navbar .menu-inner {
    display: flex;
    gap: 55px;
    margin-bottom: 0px !important;
}

.desktop-header .navbar .menu-inner .menu-item {
    font-family: var(--heading-font);
}

.desktop-header .navbar .menu-inner .menu-item a {
    color: #fff;
    font-size: 17px;
    position: relative;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: inline-block;
    font-family: var(--heading-font);
}

.desktop-header .navbar .header-button {
    font-size: 14px;
    text-transform: uppercase;
    background: var(--secondary);
    padding: 12px 30px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    font-family: var(--heading-font);
    overflow: hidden;
    animation: moveLeftRight 1.8s ease-in-out infinite;
}

.desktop-header .navbar .header-button::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, #fff0 30%, rgb(255 255 255 / .5), #fff0 70%);
    top: 0;
    left: -100px;
    animation: shine 3s infinite linear;
    transition: left 4s;
}

.desktop-header .navbar .logo-box h2 {
    font-family: var(--heading-font);
    margin-bottom: 0;
    font-size: 22px;
}

.desktop-header .navbar .menu-row .btn a::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--heading-color);
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    display: inline-block;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
}

.cta-btn {
    background: var(--secondary);
    padding: 12px 35px;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    animation: moveLeftRight 1.2s ease-in-out infinite;
}

.cta-btn::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, #fff0 30%, rgb(255 255 255 / .5), #fff0 70%);
    top: 0;
    left: -100px;
    animation: shine 3s infinite linear;
    transition: left 4s;
}


@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}


.desktop-header .logo-box img {
    width: 200px;
    margin-top: 6px;
}

.hero-banner {
    padding-top: 160px;
    background: radial-gradient(circle at center, #C62828 0%, #8B0000 40%, #4A0000 100%);
    height: 104vh;
    position: relative;
    margin-top: -124px;
    z-index: 1;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: url('../images/homeherobg.png') no-repeat bottom center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.desktop-header .top-header-wrp,
.mobile-header .top-header-wrp {
    padding: 5px 0;
    background: var(--secondary);
}

.desktop-header p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0.7px;
}

.gradient-text {
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-banner span {
    margin-bottom: 4px;
    display: block;
    font-size: 18px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-banner h1 {
    font-family: var(--heading-font);
    color: #fff;
    letter-spacing: 1.1px;
    font-weight: 500;
    font-size: 44px;
    line-height: 55px;
    margin-bottom: 10px;
}

.hero-banner p {
    padding: 0 50px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-bottom: 20px;
}

.mn-btn {
    background: var(--secondary);
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 99999;
}

.mn-btn::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, #fff0 30%, rgb(255 255 255 / .5), #fff0 70%);
    top: 0;
    left: -100px;
    animation: shine 3s infinite linear;
    transition: left 4s;
}


.sn-btn {
    background: transparent;
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #F2D272;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid #F2D272;
    z-index: 99999;
}


.hero-banner .hero-img {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-banner ul li {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #FFFDF510;
    padding: 12px 20px 12px 10px;
    border-radius: 10px 10px 10px 10px;
    width: fit-content;
    border: 1px solid #ffffff29;
    position: absolute;
    z-index: 999;
    transition: all .25s ease-in-out;
}

.hero-banner ul li p {
    padding: 0 !important;
    font-size: 16px;
}

.hero-banner ul li:hover {
    transform: translateY(-4px);
}

.hero-banner ul li img {
    width: 50px;
    border-radius: 100px;
    padding: 7px;
    filter: invert(1) brightness(22);
    border: 1px solid #c6a43f82;
}

.hero-banner ul li.first {
    top: 50%;
    left: 17%;
}

.hero-banner ul li.third {
    bottom: 70px;
    left: 15%;
}


.hero-banner ul li.sec {
    top: 55%;
    right: 15%;
}

.hero-banner ul li.fourth {
    bottom: 60px;
    right: 10%;
}

.about-us h2,
.cause-sec h2 {
    font-family: var(--heading-font);
    font-size: 46px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 17px;
    letter-spacing: 0.2px;
    line-height: 32px;
    margin-bottom: 8px;
}

.about-us .box {
    display: grid;
    grid-template-columns: 14% 86%;
}

.about-us .box .content {
    padding: 0 15px;
}

.about-us .box .content h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
}

.about-us .box .content p {
    font-size: 15px;
    line-height: 26px;
    color: rgba(from #000 r g b / 0.5);
}


.cause-sec p {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}


.cause-sec .cause-box.first {
    height: 420px;
    background: url(../images/inclusion.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cause-sec .cause-box img {
    width: 50px;
}

.cause-sec .cause-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: all .25s ease-in-out;
    padding: 25px 15px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.cause-sec .cause-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.cause-sec .cause-box h3 {
    font-family: var(--heading-font);
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
    color: #fff;
}

.cause-sec .cause-box p {
    margin-bottom: 0 !important;
    font-size: 18px;
    line-height: 26px;
    color: rgba(from #000 r g b / 0.6);
    letter-spacing: 0.4px;
    color: #fff;
}


.cause-sec .cause-box.sec {
    background: url(../images/service.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 340px;
    justify-content: end;
}

.cause-sec .cause-box.third {
    height: 340px;
    justify-content: space-between;
    background: url(../images/equality.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cause-sec .cause-box.third::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 14px;
}

.hand {
    position: absolute;
    top: 45%;
    width: 108% !important;
    left: -16px;
    transform: translateY(-56%);
}

.cause-sec .cause-box.fourth {
    height: 320px;
    justify-content: end;
    background: url(../images/equality-img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cause-sec .slider {
    padding: 0 10px;
}


.cause-sec .cause-box.fifth {
    height: 420px;
    justify-content: space-between;
    background: #c62929;
    position: relative;
    overflow: hidden;
}

.event-sec {
    background: #c62929;
}

.event-sec .content {
    padding: 60px;
}

.event-sec .content h2 {
    font-family: var(--heading-font);
    font-size: 46px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    color: #fff;
}

.event-sec .content p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
}

.event-sec .content ul li {
    display: grid;
    grid-template-columns: 9% 91%;
}

.event-sec .content ul li:not(:last-child) {
    margin-bottom: 35px;
}

.event-sec .content ul li .con {
    padding-left: 15px;
}

.event-sec .content ul li h3 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}

.event-sec .content ul li img {
    background: #fff;
    padding: 8px;
    border-radius: 100px;
}

.event-sec .content ul li p {
    margin-bottom: 0 !important;
    font-size: 16px;
    line-height: 26px;
}

.book-sec {
    position: relative;
}

.book-sec h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 5px;
    letter-spacing: 0.2px;
    font-family: var(--heading-font);
}

.book-sec .book {
    width: 50px;
    margin-bottom: 10px;
}

.book-sec .left p {
    font-size: 15px;
    color: #00000094;
    letter-spacing: 0.1px;
}


.book-sec .right {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


.book-sec .right span,
.donation-form span {
    color: #C62828;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.book-sec .right h2,
.donation-form h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.book-sec .right p,
.donation-form p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}

.book-sec .right a {
    font-size: 18px;
    background: var(--secondary);
    padding: 10px 30px;
    color: #fff;
    margin-top: 15px;
    border-radius: 10px;
    font-weight: 500;
    display: inline-block;
}

.book-sec .img-box {
    position: absolute;
    padding: 20px;
    display: grid;
    grid-template-columns: 14% 86%;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8f4ef, #f2ebe3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    align-items: center;
    top: 58%;
    z-index: 9999999;
    left: 9%;
}

.book-sec .img-box p {
    padding-left: 15px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
}


.support-sec .box {
    background: #fff;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}


.support-sec .content {
    padding: 36px 50px;
    height: 100%;
}

.support-sec .content h2,
.donate-sec .content h2 {
    font-family: var(--heading-font);
    font-size: 46px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.support-sec .content p,
.support-sec .content ul li,
.donate-sec .content p {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    color: #000;
}

.support-sec .content ul {
    list-style: disc;
    padding-left: 20px !important;
    margin-bottom: 10px !important;
}

.support-sec .content b,
.donate-sec .content b {
    color: #C62828;
}

.donate-sec {
    background: url(../images/donate.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.donate-sec a {
    background: var(--secondary);
    padding: 10px 30px;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 99999;
    margin-top: 25px;
    animation: moveLeftRight 1.8s ease-in-out infinite;
}

.gallery-img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}


.donation-form .form {
    padding: 40px 30px;
}

.form-box .form-group {
    margin-bottom: 22px;
}

.form-box .form-group label {
    display: block;
    font-size: 15px;
    letter-spacing: 0.4px;
}

.form-box .form-group input,
.form-box .form-group select {
    background-color: rgba(255, 255, 255, 0);
    border-radius: unset;
    border: 1px solid #78787899;
    padding: 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    box-shadow: unset;
    border-radius: 8px;
    height: 55px;
    color: #616161 !important;
    width: 100%;
}

.form-box .form-group select .form-box .form-group input::placeholder,
.form-box .form-group textarea::placeholder {
    color: #616161 !important;
}

.form-box .bottom-wrap button {
    width: 100%;
    background: var(--secondary);
    padding: 10px;
    border: 0;
    color: #fff;
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
}

.form-box .servicesList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 12px;
    padding: 0px;
    gap: 12px;
    flex-wrap: wrap;
}

.form-box .servicesList .amountItem input {
    height: 0;
    width: 0;
    background: none;
    display: none;
}

.form-box .servicesList .amountItem>input:checked+label {
    background-color: #C62828;
    color: rgb(255, 255, 255);
    border: 1px solid #C62828;
}

.form-box .servicesList .amountItem label {
    align-items: center;
    border: 1px solid #9a9a9a;
    border-radius: .5rem;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    justify-content: center;
    line-height: 1.2;
    list-style: none;
    margin-bottom: 0;
    padding: 10px 30px;
    text-align: center;
    transition-duration: .2s;
    width: 100%;
}

.spritual-sec .subheading {
    display: block;
    font-family: var(--tagline);
    font-size: 22px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    color: var(--heading-color);
    text-align: center;
}

.spritual-sec .content {
    padding: 80px 60px;
}

.spritual-sec p {
    text-align: center;
    line-height: 30px;
    letter-spacing: 0.5px;
}


.inner-border {
    position: relative;
    display: inline-block;
}

.inner-border img {
    display: block;
}

.inner-border::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid white;
    pointer-events: none;
}

.spritual-sec .sec-img {
    margin-top: 180px;
}

.spritual-sec h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.spritual-sec h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    color: #C62828;
    font-weight: 800;
}

.spritual-sec p.price {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2px !important;
}

.spritual-sec p.price b {
    color: #C62828;
    font-size: 20px;
    letter-spacing: 0.8px !important;
}

.sticky-amount {
    background: #fff;
    padding: 15px 0;
    z-index: 99999;
    border-top: 2px solid #C62828;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    opacity: 1;
    transform: translateY(0);
    border-radius: 14px 14px 0 0;
}

.sticky-amount h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #C62828;
}

.sticky-amount .sticky-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
}

.sticky-amount.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.sticky-amount p {
    font-size: 16px;
    margin-bottom: 0;
    color: #212121;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.main-btn {
    background: #C62828;
    padding: 12px 35px;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #fff;
    border-radius: 10px;
    font-size: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.donation-form h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    letter-spacing: 0.6px;
    color: #c62828;
    margin-bottom: 15px;
    font-weight: 600;
}

.donation-form ul li {
    display: flex;
    gap: 15px;
    align-items: center;
}


.donation-form ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.donation-form ul li {
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-weight: 500;
    text-align: left;
    border-radius: 10px;
    padding: 10px 13px 10px 16px;
    background: #f3ede5;
    border: 1px solid #c628283b;
    transition: all .25s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    border-bottom: 2px solid #C62828;
}

.donation-form ul li:hover {
    border-bottom-width: 4px;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}


.donation-form ul li img {
    width: 54px;
    height: auto;
    background: #C62828;
    padding: 6px;
    border-radius: 100px;
}

.client-sec h2 {
    font-family: var(--heading-font);
    font-size: 26px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee_group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

.marquee_group img {
    width: 150px;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.marquee_group img:hover {
    filter: grayscale(0%);
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
}

.seat-counter {
    display: flex;
    align-items: center;
    border: 1px solid #78787899;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
}

.seat-btn {
    background: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 18px;
    cursor: pointer;
}

.seat-btn:hover {
    background: #e6e6e6;
}

#seatCount {
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
}

.form-box {
    background: #f2ebe4;
}

.form-box .bg-image {
    background: url(../images/reserve-seat.webp);
    height: -webkit-fill-available;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer {
    background: #c62828;
    padding: 12px 0;
}

footer p,
footer ul li a {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.4px;
    font-weight: 500;
}


footer ul {
    display: flex;
    justify-content: end;
    gap: 25px;
}

.wellness-partner {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}

.wellness-partner span img{
       width: 42px;
}

.logo-img {
    width: 160px;
}

.jeetu-logo {
    width: 125px;
}

.donation-form h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.8px;
    color: #c62828;
    padding-top: 15px;
    text-align: center;
}

.gallery-img h2,
.organizer-sec h2 {
    font-family: var(--heading-font);
    font-size: 38px;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
    text-align: center;
}


.organizer-sec p {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.5px;
    text-align: center;
}

.organizer-sec p b {
    color: #c62828;
}

.organizer-sec .organize-box img {
    margin-bottom: 15px;
}


.organizer-sec .organize-box h3 {
    font-family: var(--heading-font);
    font-size: 18px;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    font-weight: 600;
}


.organizer-sec .organize-box p {
    font-size: 14px;
    text-align: left !important;
    line-height: 24px;
    color: #6d6d6d;
    font-weight: 600;
}

.organizer-sec .container-fluid {
    padding: 0 40px;
}

.count {
    column-count: 2;
}

.donate-header .navbar li a {
    color: #000 !important;
}

.donate-box .form {
    padding: 25px;
    border-radius: 10px;
}

.donate-box img{
    height: 550px !important;
    object-fit: cover;
}

.about-us ul{
    padding-left: 20px !important;
    list-style: disc;
}

.about-us ul li{
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 0.2px;
}

.qrCode .container {
    max-width: 1200px;
}

.qrCode .img-box img {
    width: 90%;
}

.qrCode .content-area h2 {
    font-family: var(--heading-font);
    font-size: 32px;
    letter-spacing: 0.6px;
    color: #c62828;
    margin-bottom: 15px;
    font-weight: 600;
}

.qrCode span{
    font-family: var(--heading-font);
    font-size: 22px;
    letter-spacing: 0.6px;
    color: #c62828;
    margin: 25px 0 10px;
    font-weight: 600; 
    display: block;
}

.qrCode .content-area p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
}

.qrCode .content-area div {
    display: flex;
    gap: 80px;
}

.qrCode .content-area div ul {
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.qrCode .content-area div ul li {
    line-height: 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.qrCode .content-area div ul li b {
    color: #c62828;
    font-weight: 600;
}

.qrCode .bottom-area {
    margin-top: 40px;
}

.qrCode .bottom-area p,
.support-sec .bottom-area p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.4px;
   
}

@media (min-width:320px) and (max-width:600px){
    
    .qrCode .row {
       
        gap: 40px;
    }
    
    .qrCode .img-box img {
        width: 100%;
    }

    .qrCode .content-area h2 {
        font-size: 28px;
        line-height: 37px;
    }
}

.policies-sec .container .row:not(:last-child) {
    padding-bottom: 25px;
    margin-bottom: 20px;
    border-bottom: solid 1px #ccc5c5;
}

.policies-sec h2 {
    font-size: 25px;
    font-weight: 500;
    line-height: 45px;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}

.policies-sec ul {
    list-style: disc;
    padding-left: 20px !important;
    margin: 5px 0;
}

.policies-sec p, .policies-sec ul li {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 8px;
}

.policies-sec b {
    color: #c62828;
}

.policies-sec strong {
    color: #c62828;
    font-size: 18px;
}

#seat img{
    height: 600px;
    object-fit: cover;
}

.floating_btn {
    position: fixed;
    bottom: 120px;
    right: 20px;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;

    mix-blend-mode: difference; /* main trick */
}

.floating_btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating_btn a{
    text-decoration: none;
    text-align: center;
}

/* pulsing animation */
@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(198, 41, 41, 0);
    }
}

.contact_icon {
    background-color: #c62929;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(198, 41, 41, 0.7);
    animation: pulsing 1.25s infinite cubic-bezier(0.66,0,0,1);

    margin: 8px auto;
}

.contact_icon img{
    width:45px;
}

.floating_btn p{
    margin:0;
    font-weight:500;
    color:#fff;
}

.pricing-section h2 {
    font-family: var(--heading-font);
    font-size: 46px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}


.pricing-wrapper .card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  position: relative;
  transition: 0.3s;
  border: 0;
}

.pricing-wrapper .card:hover {
  transform: translateY(-5px);
}

.pricing-wrapper .card h3 {
  font-size: 22px;
  margin-bottom: 5px;
 font-family: var(--heading-font);
}

.pricing-wrapper .card  a{
    font-size: 16px !important;
    margin: 15px 0 2px;
}

.pricing-wrapper .price {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0;
}

.pricing-wrapper ul {
  text-align: left;
  padding-left: 20px !important;
  margin: 10px 0 20px;
  list-style: disc;
}

.pricing-wrapper ul li {
  margin-bottom: 7px;
  font-size: 16px;
  letter-spacing: 0.3px;
}


.pricing-wrapper .note {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: #c62828;
  font-weight: 500;
  letter-spacing: 0.5px;
}



.pricing-wrapper .badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: #C62828;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

label.error {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 9px;
    color: red;
}

.alert-success {
    background: unset;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    border: 2px solid #28a745;
    border-radius: unset;
    color: #000;
}

.hero-banner .mn-btn{
    display: none;
}

.mobile-whatsapp{
    display:none;
}

.booking-form .form-group .quantity-box {
    border: 1px solid #78787899;
    border-radius: 8px;
    display: flex;
    width: max-content;
}

.booking-form .form-group .quantity-box button {
    height: 40px;
    border: 0;
    background: #fff0;
    padding: 0 0 0 16px;
    font-size: 13px;
    color: #212121;
}

.booking-form .form-group .quantity-box input[type=number] {
    height: 40px;
    width: 90px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 0;
    outline: 0;
    border: 0;
    box-shadow: unset;
    font-family: var(--body-text);
}

.booking-form .form-group .quantity-box .plus {
    padding-left: 0;
    padding-right: 16px;
}

.form-box #tickets-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 22px;
}

#seat .wellness-partner {
    gap:30px !important;
}


#seat .logo-img {
        width: 185px !important;
}

.social-side {
    position: fixed;
    left: 10px;
    bottom: 18%;
    z-index: 9999;
    display: flex;
    /*mix-blend-mode: exclusion;*/
    color: #000;
}

.socials {
    gap: 30px;
}

.social-side .icon {
    text-align: center;
    width: 30px;
    line-height: 30px;
    cursor: pointer;
    writing-mode: vertical-rl;
    /*-webkit-text-orientation: mixed;*/
    /*text-orientation: mixed;*/
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 12px;
    margin-top: 20px;
}

.social-side .icon:before {
    content: "";
    position: relative;
    display: inline-block;
    border-left: 1px solid #000;
    height: 50px;
    margin-bottom: 10px;
}

.socials li a {
    position: relative;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #000;
}

.socials li a img {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials li a span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 13px;
    opacity: 0;
    transform-origin: center bottom;
    cursor: pointer;
    transform: translateX(0px) translateY(-50%);
}

.socials li a:after,
.socials li a span,
.socials li a:hover i {
    transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
}

.socials li a:hover i {
    transform: scale(0);
}

.socials li a:hover span {
    opacity: 1;
    transform: translateX(10px) translateY(-50%);
}

.sticky-amount span, .sticky-amount .wellness-partner{
    display: none !important;
}

.mobile-sticky{
    display: none !important;
}


.support-sec .bottom-area {
    padding: unset;
    margin-top: 40px;
}

.phone-img{
    display: none !important;
}