:root {
    /* Colors */
    --red-bg: #FF0000;
    --red-text: #ffffff;
    --yellow-bg: #FFD408;
    --text-color-black: #000000;
    --black-border: #000000;
    --btn-arrow: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 0.5L6.59 1.91L12.17 7.5H0V9.5H12.17L6.59 15.09L8 16.5L16 8.5L8 0.5Z' fill='black'/%3E%3C/svg%3E%0A");
}

.cursor-dot {
  width: 12px;
  height: 12px;
  background: #FFB703;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}


p.animation {
    animation-duration: 3s;
    animation-name: slide-in;
}

@keyframes slide-in {
    from {
        translate: 150vw 0;
        scale: 200% 1;
    }

    to {
        translate: 0 0;
        scale: 100% 1;
    }
}

h1 {
    font-size: 93px;
    line-height: 111px;
    color: #fff;
    font-weight: bold;
    position: relative;
    text-transform: uppercase;
    text-align: center;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'), url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'), url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../fonts/Baloo2-ExtraBold.woff2') format('woff2'), url('../fonts/Baloo2-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins';
    font-weight: bold;
}

body {
    font-family: 'Poppins';
    font-size: 16px;
    line-height: 24px;
    color: #000;
    overflow-x: hidden;
}

header .header-top .mobile-menu .menu>li.mobile-booking-btn {
    display: none;
}

body header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: all .5s ease;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-top {
    width: 100%;
    padding-top: 10px;
}

header.nav-up {
    top: -100%;
}

.header_row {
    display: flex;
    align-items: center;
}

.mobile_menu_bar {
    width: 52px;
    height: 52px;
    cursor: pointer;
    transition: all .5s ease;
}

.mobile_menu_bar svg {
    width: 100%;
    height: 100%;
    transition: all .5s ease;
}

.header_logo {
    width: 113px;
    height: 100px;
    opacity: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: all .5s ease;
}

.desktop-menu {
    width: calc(100% - 113px);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.header_logo a {
    display: block;
    height: 100%;
    width: 100%;
}

.header_logo a img {
    display: block;
    width: 100%;
    height: 100%;
}

.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.desktop-menu ul.header-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cstm-btn.menu-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid #000;
    box-shadow: 2px 3px 0px #000;
    transition: all 0.2s ease-in-out;
    padding-top: 10px;
    padding-right: 52px;
    padding-bottom: 10px;
    padding-left: 30px;
    font-size: 21px;
    line-height: 30px;
    font-weight: 700;
    display: block;
    color: #fff;
    align-items: center;
    position: relative;
    text-transform: uppercase;
}

.cstm-btn.menu-item a::before {
    content: '';
    display: inline-block;
    width: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    position: absolute;
    height: 16px;
    background-color: #fff;
    mask-image: var(--btn-arrow);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: var(--btn-arrow);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: background-color .3s, opacity .3s;
}

.about-right-col a.df-btn:hover::before,
.cstm-btn.menu-item a:hover::before {
    animation: arrowSlideAcross 0.5s ease forwards;
}

@keyframes arrowSlideAcross {
    0% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }

    30% {
        transform: translateY(-50%) translateX(10px);
        opacity: 0;
    }

    60% {
        transform: translateY(-50%) translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

.btn_one::after {
    content: "";
    background-color: #e62424;
    width: 0%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100%;
    transition: all .6s;
}

.btn_one:hover::after {
    width: 100%;
}

.cstm-btn.menu-item.yellow a::before {
    background-color: #000;
}

.cstm-btn.menu-item a:hover {
    transform: translateY(-3px);
    box-shadow: 4px 5px 0px #000;
}

.cstm-btn.menu-item a:active {
    transform: translateY(0);
    box-shadow: 2px 3px 0px #000;
}


/* Red Contact Button */

.cstm-btn.menu-item.red a {
    background: var(--red-bg);
    color: #fff;
}

header.nav-down {
    background: #fff;
    padding-bottom: 10px;
    box-shadow: 0 1px 10px rgb(0 0 0 / .22);
}

header.nav-down {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.nav-down .header_logo {
    width: 90px;
    height: 90px;
}

header.nav-down .header-top {
    padding-top: 10px;
}

header.nav-down .desktop-menu {
    width: calc(100% - 90px);
}

header.nav-down .cstm-btn.menu-item a {
    padding-top: 8px;
    padding-right: 62px;
    padding-bottom: 8px;
    padding-left: 30px;
}

header.nav-down .mobile_menu_bar {
    width: 48px;
    height: 48px;
}

body.active-responsive-menu header.nav-down {
    background: transparent;
    backdrop-filter: unset;
}

body.active-responsive-menu .header_logo {
    opacity: .7;
    filter: blur(2px);
}


/* Yellow Booking Button */

.cstm-btn.menu-item.yellow a {
    background: var(--yellow-bg);
    color: #000;
}

@media screen and (min-width: 320px) {
    header .header-top .mobile-menu {
        position: fixed;
        right: -200%;
        top: 0;
        width: 450px;
        background: #6a0e43;
        height: 100vh;
        margin: 0;
        padding: 0 20px 40px;
        overflow-y: auto;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        transition: all .6s ease;
        display: flex;
        flex-wrap: nowrap;
        z-index: 99;
        gap: 0;
    }

    body.active-responsive-menu header .header-top .mobile-menu {
        right: 0;
    }

    header .header-top nav.mobile-menu ul.menu {
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        display: flex;
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }

    nav.mobile-menu ul.menu li.menu_text {
        position: sticky;
        top: 0;
        z-index: 2;
        display: flex;
        justify-content: end;
        border-bottom: 0;
        height: 50px;
        align-items: end;
        background: #6a0e43;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-right: 0;
        width: 100%;
        margin-top: 0;
    }

    nav.mobile-menu ul.menu li.menu_text button.mobile_menu_bar_inner {
        width: 15px;
        height: 16px;
        padding: 0;
        border: 0;
        background: 0 0;
    }

    nav.mobile-menu ul.menu li.menu_text button.mobile_menu_bar_inner svg {
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    header .header-top .mobile-menu .menu>li {
        padding-right: 0;
        width: 100%;
        width: 100%;
        margin: 1px 0;
        padding-bottom: 0;
        border-bottom: 1px solid #e0e0e040;
    }

    header .header-top .nav-link .menu li a,
    header.nav-down .header-top .nav-link .menu li a {
        color: #fff;
        font-size: 16px;
        line-height: 26px;
        display: block;
        padding: 12px 0 !important;
        border-bottom: 0;
    }

    header .header-top .nav-link .menu li a:hover,
    header .header-top .nav-link .menu li.current-menu-item>a,
    header .header-top .nav-link .menu>li ul.sub-menu li>a:hover,
    header .header-top .nav-link .menu>li.menu-item-has-children:hover>ul.sub-menu li.menu-item-has-children:hover>a,
    header .header-top li.menu-item-has-children:hover:hover>a {
        color: var(--yellow-bg);
    }

    body.active-responsive-menu::before {
        content: "";
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 1;
        visibility: visible;
        background: #0000008c;
        z-index: 9;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        transition: all .6s ease;
    }

    body.active-responsive-menu header.nav-down {
        box-shadow: none;
    }

    body.active-responsive-menu {
        position: relative;
        overflow: hidden;
    }

    body.active-responsive-menu .header_logo {
        z-index: -1;
        position: relative;
    }

    body.active-responsive-menu .desk {
        opacity: 0;
    }

    header .header-top nav.mobile-menu .menu>li>a {
        display: inline-block;
        opacity: 0;
        transform: translateX(40px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li>a {
        opacity: 1;
        transform: translateX(0);
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(1)>a {
        transition-delay: 0.45s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(2)>a {
        transition-delay: 0.55s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(3)>a {
        transition-delay: 0.65s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(4)>a {
        transition-delay: 0.75s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(5)>a {
        transition-delay: 0.85s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(6)>a {
        transition-delay: 0.95s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(7)>a {
        transition-delay: 0.10s;
    }

    body.active-responsive-menu header .header-top nav.mobile-menu .menu>li:nth-child(8)>a {
        transition-delay: 1s;
    }

    header .header-top nav.mobile-menu .menu>li>a {
        transition-delay: 0s;
    }

}


/* Banner css */

section.hero-banner {
    background: #29AAE2;
}

section.hero-banner:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #EA1790;
    background: #ffd408;
    height: 700px;
    left: 0;
}

.main-head {
    animation: scale 2s cubic-bezier(.5, 1, .89, 1) forwards;
    text-align: center;
}

.main-heads {
    text-align: center;
}

section.hero-banner h1 {
    font-size: 90px;
    line-height: 108px;
    letter-spacing: 0%;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    transform: rotate(-2.65deg);
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 #000;
    margin: 0 auto;
    max-width: 1200px;
}

section.hero-banner {
    padding-top: 240px;
    background: #29AAE2;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
}

.india-map {
    position: absolute;
    top: 160px;
    right: 0;
    overflow: hidden;
}

.banner-left-map {
    position: absolute;
    left: 0;
    top: 275px;
}

.gif-video {
    transform: rotate(-2.5deg);
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.gif-video img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    height: 797.0000010541793px;
    opacity: 1;
    border-radius: 50px;
}

.over-hiddn img {
    object-fit: cover;
}

.gif-video .over-hiddn video {
    border-radius: 50px;
    display: block;
}

.gif-video .over-hiddn video.custom-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 800px;
}

.gif-video .bg-color {
    position: absolute;
    top: -56px;
    right: -17px;
    width: 100%;
    z-index: -1;
    transform: rotate(1.5deg);
}


/* fun section */

.non-stop-fun-section {
    /* background: #EA1790; */
    padding-top: 82px;
    padding-bottom: 200px;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector.png);
    background-image: url(../../../../wp-content/uploads/2025/12/Vector1.svg);
    background-size: cover;
    background-position: bottom;
    overflow: hidden;
}



.non-stop-fun-section h2 {
    color: #000;
    font-size: 50px;
    line-height: 80px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    transform: rotate(-4.32deg);
}

.non-stop-fun-section h2.bottom-text {
    color: #00000091;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    /* -webkit-text-stroke: 1px #00000091; */
    -webkit-text-fill-color: #00000091;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    top: -65px;
}

.non-stop-fun-section h2.bottom-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000000;
    -webkit-text-stroke: 0;
    z-index: -1;
}

.non-stop-fun-section p {
    color: #000;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    transform: rotate(-4.32deg);
    margin-top: -80px;
    padding-right: 281px;
    /* text-shadow: 1px 5px 4px #0000006e; */
    position: relative;
    left: 10px;
}

.pos-rel {
    position: relative;
    z-index: 1;
}

img.fun-one {
    position: absolute;
    left: 0;
    top: 80px;
    z-index: -1;
}

.one-image {
    width: fit-content;
}

.one-image:before {
    content: "";
    position: absolute;
    left: 5px;
    top: -20px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/12/Ellipse-7.svg);
}

.one-image.pos-rel img.attachment-full.size-full {
    z-index: 2;
    position: relative;
}

.fun-img-box {
    width: fit-content;
}

.one-image:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../../../../wp-content/uploads/2025/10/Mask-group.png);
    bottom: -56px;
    left: -13px;
    transform: rotate(6.68deg);
    width: 447px;
    height: 437px;
    background-position: bottom;
    background-size: contain;
}

.img-row {
    padding-left: calc((100% - 1200px) / 2);
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 100px 390px;
}

.fun-img-box.right-image {
    margin-top: -120px;
    z-index: 1;
    position: relative;
}

.fun-img-box {
    animation: float 3s linear 0s infinite alternate;
    position: relative;
    transition: opacity 1s ease 0s, top 1s ease 0s;
}

.fun-img-box.right-image {
    animation: float 5s linear 0s infinite alternate;
    position: relative;
    transition: opacity 1s ease 0s, top 1s ease 0s;
}

.fun-img-box.bottom-image {
    animation: float 6s linear 0s infinite alternate;
    position: relative;
    transition: opacity 1s ease 0s, top 1s ease 0s;
}

.right-image:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../../../../wp-content/uploads/2025/10/Mask-group.png);
    transform: rotate(2.68deg);
    width: 496px;
    height: 495px;
    background-position: center;
    top: -70px;
    background-size: contain;
    left: -15px;
}

.right-image:before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/12/Ellipse-7.svg);
    z-index: 1;
}

.three-image::before {
    content: "";
    position: absolute;
    right: -10px;
    top: -13px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/12/Ellipse-7.svg);
    z-index: -1;
}

.three-image:after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../../../../wp-content/uploads/2025/10/Mask-group-2-1.png);
    bottom: 6px;
    left: -40px;
    transform: rotate(6.68deg);
    width: 100%;
    height: 100%;
    background-position: bottom;
    background-size: contain;
    z-index: -2;
}

.fun-img-box.bottom-image {
    margin-top: 10px;
    position: relative;
    left: 450px;
    margin-top: -300px;
}

.foot-path {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
}

.foot-path-right {
    position: absolute;
    right: 0;
    bottom: 0;
}

.fun-img-box img {
    width: 450px;
    object-fit: contain;
}


/* Event title */

.event-title {
    /* background-image: url(../../../../wp-content/uploads/2025/10/Rectangle-1574.png); */
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 10px 0 480px 0px; */
    position: relative;
    margin-top: -190px;
    z-index: 1;
    background: #ea1790;
    background: #ffd408;
    /* height: 356px; */
    /* overflow: hidden; */
}

.event-title::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url(../../../../wp-content/uploads/2025/10/Rectangle-1574.png); */
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.event-title>.containers {
    height: 113px;
    position: relative;
    background: #198fdd;
    transform: skewY(9deg);
    overflow: hidden;
    Z-INDEX: 61;
}

.event-title::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0072bd;
    z-index: 1;
    transform: skewY(9deg);
}

.event-title h2 {
    font-weight: 900;
    font-style: Black;
    font-size: 50px;
    line-height: 91px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
}

.event-title h2.bottom-text {
    color: transparent;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position: absolute;
    top: 6px;
    left: 3px;
}

.event-title h2.bottom-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0;
    z-index: -1;
}

section.event-title .containers {
    /* transform: rotate(9deg); */
    /* position: absolute; */
    /* bottom: 110px; */
    /* left: 50%; */
    /* width: 100%; */
    /* transform: translateX(-50%) rotate(9deg); */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-box {
    /* background-image: url(../../../../wp-content/uploads/2025/10/Rectangle-1573.png); */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    /* padding: 10px 0 480px 10px;
    position: relative;
    overflow: hidden;
    z-index: -1; */
    padding-bottom: 470px;
}

.event-box iframe {
    margin-top: 150px;
    height: 700px;
}

.event-box {
    /* padding-bottom: 470px; */
}

.event-box::before {
    /* content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
     background-image: url(../../../../wp-content/uploads/2025/10/Rectangle-1573.png);
    background-repeat: no-repeat;
    background-size: cover; */
}

.event-card-wrap {}

.event-card-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.event-box .container {
    max-width: 1300px;
}

.event-card {
    /* background: #b9d736; */
    /* green background like image */
    border-radius: 16px;
    padding: 47px 17px 30px 25px;
    width: 100%;
    color: #fff;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); */
    /* ✅ main shadow */
    transition: all 0.3s ease;
    position: relative;
    height: fit-content;
}

.event-box-section {
    /* background-color: #0072bd; */
    background-image: url(../../../../wp-content/uploads/2025/10/Rectangle-1573-2.png);
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
}

div#event-one {
    background: transparent;
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    border-top-left-radius: 34px;
    border-top-right-radius: 75px;
}

div.event-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.event-card::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -10px;
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1545.png');
    background-position: right;
    width: 100%;
    height: 100%;
    z-index: -2;
    top: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 30px;
}

div#event-one::before {
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544.png');
}

div#event-two {
    background: transparent;
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544-1.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    border-top-left-radius: 34px;
    border-top-right-radius: 75px;
    margin-top: 90px;
}

div#event-two::before {
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544-1.png');
}

div#event-three {
    background: transparent;
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544-2.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    border-top-left-radius: 34px;
    border-top-right-radius: 75px;
    margin-top: 180px;
}

div#event-three::before {
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544-2.png');
}

div#event-four {
    background: transparent;
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544-3.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    border-top-left-radius: 34px;
    border-top-right-radius: 75px;
    margin-top: 280px;
}

div#event-four::before {
    background-image: url('../../../../wp-content/uploads/2025/10/Rectangle-1544-3.png');
}


/* hover effect (optional) */

.event-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35); */
}

.event-icon h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 25px;
    padding-bottom: 34px;
}

a.df-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid #000;
    box-shadow: 2px 3px 0px #000;
    transition: all 0.2s ease-in-out;
    padding-top: 17px;
    padding-right: 65px;
    padding-bottom: 17px;
    padding-left: 40px;
    font-size: 21px;
    line-height: 30px;
    font-weight: 700;
    display: block;
    color: #fff;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    width: 100%;
    max-width: 231px;
}

a.df-btn::before {
    content: '';
    display: inline-block;
    width: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    position: absolute;
    height: 16px;
    background-color: #fff;
    mask-image: var(--btn-arrow);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: var(--btn-arrow);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transition: background-color .3s, opacity .3s;
    filter: brightness(0) invert(1);
}

a.df-btn::before {
    background-color: #000;
}

a.df-btn {
    background: var(--red-bg);
    color: #fff;
}

a.df-btn:hover {
    transform: translateY(-3px);
    box-shadow: 4px 5px 0px #000;
}

a.df-btn:active {
    transform: translateY(0);
    box-shadow: 2px 3px 0px #000;
}

.btn-box {
    display: flex;
    justify-content: end;
}

.location-icom {
    height: fit-content;
    display: flex;
}

.d-flex {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date {
    margin-bottom: 35px;
}

.event-location {
    margin-bottom: 17px;
    position: relative;
    align-items: flex-start;
}

.event-location svg {
    position: relative;
    top: 5px;
}

.event-date,
.event-location {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

section.review-section .back-word {
    /* position: absolute; */
    /* left: 50%; */
    /* top: -88px; */
    /* transform: translateX(-50%) */
}

.back-text h2 {
    font-weight: 700;
    color: transparent;
    font-size: 300px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    -webkit-text-stroke: 2px #E7E7E76E;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.back-text h2::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000000;
    -webkit-text-stroke: 0;
    z-index: -1;
}

.back-text {
    position: absolute;
    z-index: -3;
    /* top: 62%; */
    top: 73%;
    transform: translateY(-50%);
    left: 12%;
}

.new-iframe .back-text {
    top: 73%;
}

.btn-box-left {
    margin-top: 167px;
}

a.df-btn.yl-btn {
    max-width: 250px;
    background: var(--yellow-bg);
    color: #000;
}

a.df-btn.yl-btn::before {
    background-color: #000000;
    filter: none;
}

.event-box {
    position: relative;
}

.event-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    width: 200px;
    height: 198px;
    background-image: url('../../../../wp-content/uploads/2025/10/Vector-1.png');
}


/* Height light css */

section.heightlight-section {
    position: relative;
    z-index: 1;
}

#highligh-section {
    padding-bottom: 250px;
    background: #0072bd;
}

section.heightlight-section:after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: 0;
    width: 100%;
    height: 100%;
    background: #F89320;
    z-index: 1;
    transform: skewY(-6deg);
}

.scr-title {
    height: 113px;
    position: relative;
    background: #E88412;
    transform: skewY(-6deg);
    overflow: hidden;
    Z-INDEX: 61;
    margin-top: -120PX;
}

.scr-title h2 {
    font-weight: 900;
    font-style: Black;
    font-size: 50px;
    line-height: 91px;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

.scr-title h2.bottom-text {
    color: transparent;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    top: -84px;
    left: 50%;
    transform: translateX(-50%);
}

.scr-title h2.bottom-text.bottom-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0;
    z-index: -1;
}

.box-items {
    position: relative;
    z-index: 4;
    padding-top: 60px;
}

/* Gallery Image */
.gallert-items {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);
}

.gallert-items .gallery-list {
    width: 100%;
}

.gallert-items .gallery-list img {
     width: 100%;
    display:block;
    height: 100%;
    object-fit: cover;
}

.gallert-items .gallery-list a {
   display: block;
    box-shadow: 0px 10px rgba(167, 94, 9, 1);
    overflow: hidden;
    border-radius: 120px 40px 120px 40px;
    height: 500px;
    transition: all 0.5s ease;
}
.gallert-items .gallery-list a:hover {
    transform: scale(1.04);
}

.gallert-items .gallery-list a:hover::after {
    opacity: 1;
    /* transform: translate(-50%, -50%) scale(1); */
    /* animation: pulse 1.5s ease-in-out infinite; */
}

.gallert-items .gallery-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transition: all ease-in-out .3s;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z'/%3E%3C/svg%3E");
}
.gallert-items .gallery-list a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    opacity:0;
       transition: all ease-in-out .3s;
}
.gallert-items .gallery-list a:hover:before {opacity:1;}

div#highlight-6 {
    margin-top: -120px;
}

div#highlight-5 {
    margin-top: -50px;
}

div#highlight-4 {
    margin-top: 30px;
}
/* Gallery Image end */


.highlights-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    width: calc(100% / 3 - 14px);
    height: fit-content;
}
.highlight-item a:hover {
    transform: scale(1.04);
}



.highlight-item a {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
  overflow: hidden;
}

.highlight-item a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: all ease-in-out .3s;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z'/%3E%3C/svg%3E");
}

.highlight-item a:hover::after {
  opacity: 1;
  /* transform: translate(-50%, -50%) scale(1); */
}

/* Hover effect */
.highlight-item a:hover::after {
  opacity: 1;
  /* transform: translate(-50%, -50%) scale(1); */
  /* animation: pulse 1.5s ease-in-out infinite; */
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .9;
  }
}
.highlight-item img {
    /* border-top-left-radius: 140px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 150px; */
}

div#highlight-1 {
    margin-top: 140px;
}

div#highlight-2 {
    margin-top: 66px;
}

div#highlight-3 {
    /* margin-top: 40px; */
}

div#highlight-4 {
    /* margin-top: -7px; */
}

div#highlight-5 {
    /* margin-top: -83px; */
}

div#highlight-6 {
    /* margin-top: -150px; */
}

.btn-gallery {
    display: flex;
    justify-content: center;
    margin-top: -26px;
}

.share-data h3 {
    font-weight: 900;
    font-size: 25px;
    line-height: 36px;
    text-transform: uppercase;
    color: #fff;
}

#highligh-section .btn-gallery {
    opacity: 0;
    pointer-events: none;
}

.share-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    transform: skewY(-6deg);
}

.custom-share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.share-btn {
    display: inline-block;
}

section.heightlight-section .back-text {
    top: auto;
    transform: unset;
    bottom: -60px;
    transform: skewY(-12deg);
}


/* Ticktes css */

#ticket-section .container {
    max-width: 1380px;
}

section#ticket-section .scr-title {
    background: #B8C30F;
    transform: skewY(-12deg);
}

section#ticket-section:after {
    background: #C2CD1D;
    transform: skewY(-12deg);
}

.over-hiddn {
    overflow: hidden;
}

section#ticket-section {
    margin-top: -210px;
}

section#ticket-section .scr-title h2.bottom-text {
    top: -84px;
    left: 49.9%;
    display: block;
    ;
}

.tickets-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

#ticket-section .col2,
.ticket-list {
    width: calc(100% / 2 - 25px);
    position: relative;
    height: fit-content;
}
#ticket-section .col2:hover {
    transform: scale(1.02);
}
#ticket-section .col2 {transition: all 0.5s ease;}
#ticket-section .col2 .ticket-list {
    width: 100%;
}

div#ticket-one {
    margin-top: 240px;
}

.tickets-desc {
    padding: 40px 40px 80px 40px;
}

.tickets-desc::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url('../../../../wp-content/uploads/2026/02/Rectangle-pinkpng-1.png');

}

.tickets-desc::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    background-image: url('../../../../wp-content/uploads/2026/02/Rectangle-pinkpng-1.png');


}

.ticket-text {
    display: inline-block;
    background: #e62424;
    /* padding: 18.5px 30px; */
    border-radius: 50px;
    position: absolute;
    /* top: 60px; */
    /* left: -44px; */
    transform: rotate(-36deg);
    top: 60px;
    left: -74px;
    min-width: 300px;
    text-align: center;
    padding: 14px 30px;
}
.tickets-desc .ticket-text {
    padding: 0;
    text-align: center;
    width: 100%;
    background: transparent !important;
}
.tickets-desc .ticket-text h3 {
    text-align: center;
    background: linear-gradient(to right, snow 0%, snow 20%, #ffd408 40%, #ff0000 60%, snow 80%, snow 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        font-size: 28px;
        line-height: 34px;
    animation: moveLeftRight 3s linear infinite;
}

.heading-h3 h3 {
    font-size: 26px;
    line-height: normal;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}


@keyframes moveLeftRight {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
div#ticket-two .ticket-text {
    left: -104px;
}

#ticket-four .ticket-text {
    left: -44px;
}

#ticket-section .container {
    margin-top: 70px;
}

.ticket-text h3 {
    color: #fff;
    /* font-size: 25px; */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
}

.desc {
    /* max-width: 378px; */
    transform: rotate(-36deg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    /* top: 73px; */
    /* left: -20px; */
    max-width: 360px;
    padding: 30px 0 100px;
    top: 13px;
    left: 79px;
}






.desc p {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}

.ticket-logo img {
    width: 173px;
    height: 155px;
    mix-blend-mode: Multiply;
}

.ticket-logo {
    display: block;
    text-align: end;
    margin-top: -80px;
    display: none;
}

.ticket-image {
    width: fit-content;
    width: 100%;
}

.ticket-image img {
    display: block;
    /* max-width: 200px; */

    margin: 0 auto;
}
.ticket-image.height {width: 350px; height: 300px; margin: 0 auto;}
.ticket-image.height img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.ticket-item.height {height: 450px; justify-content: flex-start;}
.ticket-item {}

.link-box {
    position: absolute;
    right: -30px;
    top: calc(100% - 230px);
}
.link-box a {
    display: block;
    /* pointer-events: none; */
}
body.popup-open {
    overflow: hidden;
}
span.popup-close svg {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 20px;
    cursor: pointer;
}
span.popup-close svg path {
    transition: all 0.5s ease;
}
span.popup-close svg:hover path {fill: #B8C30F;}

.ticket-popup .popup-content .link-box {display: none;}

.ticket-popup .popup-content .ticket-text {
    background: transparent;
    transform: unset;
    position: static;
    left: unset;
    padding: 0;
    top: unset;
    width: 100%;
    text-align: left;
}
.ticket-popup .popup-content .desc {
    color: #000;
    padding: 0;
    transform: unset;
    top: unset;
    max-width: 100%;
    left: unset;
    margin-top: 10px;
    text-align: left;
    margin-bottom: 20px;
}
.ticket-popup .popup-content .desc p {color: #000; font-weight: normal; text-shadow: none;
    text-align: left;
}
.ticket-popup .popup-content .ticket-image {padding-bottom: 0; margin: unset;width: 100%; max-width: 100%;}
.ticket-popup .popup-content .ticket-text h3 {
    color: #000;
    font-weight: 600;
    text-align: left;
}
.center-box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.ticket-list:after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    width: calc(100% - 30px);
    height: 60%;
    background-image: url(../../../../wp-content/uploads/2025/10/Rectangle-1579.png);
    background-position: bottom;
    z-index: -2;
}

.ticket-list::before {
    content: "";
    position: absolute;
    bottom: -134px;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-image: url(../../../../wp-content/uploads/2025/10/Mask-group-1.png);
    width: 128%;
    height: 100%;
    z-index: -1;
}

#ticket-two .ticket-text {
    background: rgba(234, 23, 144, 1);
}

#ticket-three .ticket-text {
    background: rgba(42, 82, 202, 1);
}

#ticket-four .ticket-text {
    background: rgba(236, 124, 4, 1);
}

div#ticket-three {
    margin-top: 70px;
}

div#ticket-four {
    margin-top: -180px;
}

.ticket_section:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 109px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-image: url(../../../../wp-content/uploads/2025/10/BOTTOM-ICNO.png);
    height: 319px;
    opacity: 1;
    width: 218px;
    z-index: 4;
    transform: rotate(0deg);
}

section#ticket-section .back-text {
    bottom: auto;
    top: 80px;
}

.ticket-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;

    /* always in DOM */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-inner  .heading-h3 h3 {text-align: left;
    color: #000;
    font-weight: 600;
    padding: 0;
    margin: 0;}

.ticket-popup .popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ticket-popup .popup-content {
    position: relative;
    background: #fff;
    max-width: 600px;
    width: 90%;
    margin: 8% auto;
    padding: 40px 30px 30px 30px;
    border-radius: 12px;
    height: 50vh;
    overflow-y: auto;
    text-align: end;

    /* smooth start */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

/* ACTIVE STATE */
.ticket-popup.active {
    opacity: 1;
    visibility: visible;
}

.ticket-popup.active .popup-overlay {
    opacity: 1;
}

.ticket-popup.active .popup-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.popup-open {
    overflow: hidden;
}


/* our visitors */

section#our-visitors .scr-title {
    background: rgba(108, 37, 242, 1);
    transform: skewY(-12deg);
}

section#our-visitors:after {
    transform: skewY(-12deg);
    background: rgba(122, 52, 255, 1);
}

section#our-visitors {
    margin-top: 180px;
}

.visitor-row {
    position: relative;
    z-index: 2;
    padding-top: 210px;
    display: flex;
    flex-wrap: wrap;
}

.visitor-row p {
    color: #fff;
    font-family: 'Baloo 2';
    font-weight: 900;
    font-size: 25px;
    line-height: 40px;
}

.left .visitor-desc p {
    transform: rotate(19deg);
    top: -30px;
    position: relative;
    left: -10px;
    text-shadow: 1px 5px 4px #0000006e;
}

.left .visitor-image {
    width: fit-content;
    position: relative;
    left: 60px;
    top: -60px;
}

.left .visitor-desc {
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 494.739746px;
    height: 410.13562px;
    padding: 40px 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.left .visitor-desc:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    width: 71px;
    height: 145px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-7.png);
}

.left .visitor-desc:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 62px;
    height: 170px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-8.png);
}

.visitor-items {
    position: relative;
    height: fit-content;
}

.visitor-items.left:before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 494.739746px;
    height: 410.13562px;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-4.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

.right .visitor-image {
    width: fit-content;
    position: relative;
    right: -150px;
    top: 30px;
}

.visitor-items.right {
    margin-top: -160px;
}

.right .visitor-desc {
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-1-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 494.739746px;
    height: 410.13562px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visitor-items.right:before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 60px;
    width: 494.739746px;
    height: 410.13562px;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-2.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -10px;
}

.right .visitor-desc:after {
    content: "";
    position: absolute;
    right: 30px;
    top: 57%;
    transform: translateY(-50%) rotate(60deg);
    width: 62px;
    height: 137px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-8.png);
}

.right .visitor-desc::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 37%;
    transform: translateY(-50%) rotate(57deg);
    width: 71px;
    height: 146px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../../../../wp-content/uploads/2025/10/Vector-7.png);
}

section#our-visitors .visitor-row:after {
    content: "";
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    top: 100px;
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/10/Group-1000008422.png);
}

section#our-visitors:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #7a34ff;
    z-index: 1;
}

.wrapper {
    position: relative;
}

section#our-visitors .wrapper::before {
    content: "";
    position: absolute;
    left: 200px;
    bottom: 200px;
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/10/Group-1000008422.png);
    z-index: 2;
}

section#our-visitors .wrapper::after {
    content: "";
    position: absolute;
    right: 200px;
    bottom: 120px;
    width: 90px;
    height: 90px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../../../wp-content/uploads/2025/10/Group-1000008422.png);
    z-index: 2;
}


/* Footer css */

footer.footer-section {
    position: relative;
    z-index: 1;
    background: rgba(17, 20, 67, 1);
    padding: 100px 0 0;
}

.footer-row {
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
}

.footer-logo a {
    display: block;
    margin-bottom: 75px;
}

.footer-logo a img {
    display: block;
}

.col-box {
    margin-bottom: 17px;
}

a.footer-link {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    display: block;
    width: fit-content;
    font-family: 'Baloo 2';
    transition: all 0.5s;
}

a.footer-link:hover {
    color: #B8C30F;
}

.col-one {
    width: 27.4%;
}

.menu-box.pl10px {
    padding-left: 100px;
}

.menu-box.menu-one {
    width: 44%;
}

.menu-box.menu-two {
    width: 34%;
}

.footer-menu-row {
    display: flex;
    flex-wrap: wrap;
}

.menu-box.menu-three {
    width: 26.4%;
}

.col-two {
    width: 72.6%;
}

.form-box {
    display: flex;
    height: fit-content;
    align-items: center;
    width: 100%;
    margin-bottom: 91px;
}

.form-box h2 {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    width: 324px;
}

.menu-box h3 {
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    font-weight: bold;
    color: rgba(71, 201, 245, 1);
    padding-bottom: 20px;
}

a.youtube img {
    filter: brightness(0) invert(1);
}

.term-and-condition {
    overflow: auto;
    height: 220px;
    padding-left: 20px;
}


/* .term-and-condition::-webkit-scrollbar {
    width: 4px;
    background: #111443;
    border-radius: 12px;

}

.term-and-condition::-webkit-scrollbar-track {
    border-radius: 10px;
}

.term-and-condition::-webkit-scrollbar-thumb {
    background-color: rgb(17 20 67);
    border-radius: 10px;

} */

.term-and-condition {
    overflow: hidden;
    /* JS se control hoga */
    height: 220px;
}


/* Default scrollbar design */

.term-and-condition::-webkit-scrollbar {
    width: 6px;
    background: transparent;
}

.term-and-condition::-webkit-scrollbar-track {
    border-radius: 10px;
}

.term-and-condition::-webkit-scrollbar-thumb {
    background-color: rgb(255 255 255);
    border-radius: 10px;
}


/* Hover hone par design active ho */

.term-and-condition.show-scroll::-webkit-scrollbar {
    background: #ccc;
}

.term-and-condition.show-scroll::-webkit-scrollbar-thumb {
    background-color: #ffffff;
}

.term-and-condition strong {
    font-weight: 600;
}

.col-lg-12 button[type="submit"] br {
    display: none;
}

.term-and-condition p {
    color: #fff;
    padding-bottom: 10px;
}

.term-and-condition p:last-child {
    padding-bottom: 0;
}

.term-and-condition p a {
    color: #B8C30F;
}

.term-and-condition p a:hover {
    color: #fff;
}

.footer-copyright {
    background-color: rgba(14, 16, 50, 1);
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
    padding: 28.5px 0;
}

.footer-copyright .row {
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap: wrap;
}

.footer-copyright p a {
    color: #fff;
}

.footer-copyright p a:hover {
    color: #C2CD1D;
}

.newsletter-form {
    width: calc(100% - 324px);
    position: relative;
    padding-left: 20px;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
    display: none;
}

.newsletter-form .wpcf7-not-valid-tip {
    display: none;
}

.newsletter-form input[type="email"].wpcf7-not-valid {
    border: 1px solid red !important;
}

.newsletter-form input[type="email"] {
    background-color: #FFFFFF;
    font-family: 'Poppins';
    border: 1px solid #fff !important;
    color: #000000;
    font-size: 16px;
    border-radius: 50px !important;
    outline: 0;
    padding: 16px 20px 16px 20px;
    height: 56px;
    font-weight: 500;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: rgba(106, 106, 106, 1);
}

.newsletter-form input[type="email"]:focus {
    border: 1px solid #0072bd !important;
}

.newsletter-form form .footer-btn .wpcf7-form-control {
    position: absolute;
    right: 0;
    cursor: pointer;
    padding: 16px 32.5px;
    height: 56px;
    top: 0;
}

.newsletter-form form .footer-btn .wpcf7-form-control:focus,
.newsletter-form form .footer-btn .wpcf7-form-control:hover {
    background: #ffd408;
    color: #000;
    border-color: #ffd408;
}

.footer-btn .theme-btn {
    background: rgba(255, 0, 0, 1);
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins';
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 0, 0, 1);
    display: inline-block;
    width: max-content;
    position: relative;
    transition: all 0.6s ease;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.footer-btn span.wpcf7-spinner {
    position: absolute;
    bottom: -40px;
    left: 0;
}

.term-and-condition {
    width: 66%;
}

ul.list-items li {
    margin-bottom: 12px;
}

ul.list-items li:last-child {
    margin-bottom: 0;
}

ul.list-items li a {
    color: #fff;
    width: fit-content;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    transition: all 0.5s ease;
    text-transform: uppercase;
}

ul.list-items li.current-menu-item>a,
ul.list-items li a:hover {
    color: #B8C30F;
}

.social-link {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 28px;
}

.social-items a {
    display: inline-block;
}

.social-items a:hover {
    opacity: 0.6;
}

.social-items a img {
    display: block;
}

.home section#our-visitors .container {
    /* overflow: hidden; */
}

footer .screen-reader-response {
    display: none;
}

footer .wpcf7-response-output {
    position: absolute;
    bottom: -30px;
    width: 100%;
    left: 20px;
    z-index: 61;
    color: #fff;
    font-size: 14px;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-style: italic;
}

@media (max-width:767px) {
    footer .wpcf7-response-output {
        left: 0;
    }
}

@media (max-width:470px) {
    footer .wpcf7-response-output {
        bottom: -50px;
    }
}


/* Thank you */


/* 404 and Thank You css */

body.error404,
body.page-template-thank-you {
    padding-top: 180px;
}

body.error404 header,
body.page-template-thank-you header {
    box-shadow: 0 1px 10px rgb(0 0 0 / .22);
}

body.error404 header,
body.page-template-thank-you header {
    padding-bottom: 20px;
}

.img_txt_row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.error_col_two {
    width: 50%;
}

.error_col_one.err-col {
    width: 50%;
    margin-right: 0px;
    padding-right: 90px;
}

.error_col_one img {
    max-width: 100%;
    height: auto;
}

.err-col.img-col {
    padding-right: 40px;
}

.error_col_two.inner-page-title h1 {
    margin-bottom: 20px;
    text-align: left;
    color: #000;
}

.error_col_two .description p {
    text-align: left;
}

.cmn_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 22px;
    column-gap: 20px;
    row-gap: 15px;
}

.error_col_two p {
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.error_col_two p:last-child {
    padding-bottom: 0;
}

.error_col_two h1 {
    padding-bottom: 15px;
    font-size: 35px;
    color: #000;
    text-align: left;
    line-height: 45px;
    text-transform: none;
    text-shadow: none;
}

.error_col_two a.df-btn {
    width: 100%;
    max-width: fit-content;
    padding-top: 10px;
    padding-bottom: 10px;
}

.error_section {
    padding: 80px 0px;
}

.thank_you_sec .error_col_two {
    width: 60%;
}

.thank_you_sec .error_col_one.err-col {
    width: 40%;
}

section.form-section.booking-section .form-box {
    width: 100%;
    max-width: 100%;
}

section.form-section.booking-section.purple-banner::after,
section.form-section.booking-section.purple-banner::before {
    background: rgb(0 114 189);
    background-image: unset;
}

section.form-section.booking-section .wrapper::before,
section.form-section.booking-section .wrapper::after {
    display: none;
}

.cnb-single.cnb-right {
    display: block !important;
    bottom: 15px !important;
    right: 20px !important;
    position: fixed !important;
}

/* 28-01-026 */
.ticket-popup .popup-content {
    background: linear-gradient(135deg, #198FDD 0%, #FFD408 50%, #29AAE2 100%);
        background: linear-gradient(135deg, #FFD408 0%, #FF2F92 100%);
}

/* Chrome, Edge, Safari */
.popup-content::-webkit-scrollbar {
    width: 5px;
}

.popup-content::-webkit-scrollbar-track {
    background: #3998be;
}

.popup-content::-webkit-scrollbar-thumb {
    background-color: #fad30e;
}

/* Firefox */
.popup-content {
    scrollbar-width: thin;
    scrollbar-color: #00000024 transparent;
}