/*!
Theme Name: hilltopfuncdev
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: hilltopfuncdev
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

hilltopfuncdev is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

/* Alignments
--------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}


body.stop-scroll {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* ==== Colours ==== */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --red: #D11F2D;
    --dark-red: ##861619;
    --light-black: #231F20;
    --Yellow: #F0C458;

    /* container (wrap) */
    /* --wrap: 1440px; */
    --wrap: 1200px;
    --wrapspace: 30px;

    /* Heading and body font sizes */
    --body-font: 18px;
    --body-lineheight: 1.3846;

    --bg-color: #FEF9F0;


    /* ==== Fonts ==== */
    --font-Staatliches: 'Staatliches-Regular';
    --font-Roboto: 'Roboto';
    --font-Barlow: 'Barlow';
}

/* ==== Colours ==== */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
}

html {
    scroll-behavior: smooth;
}

body {
    font: var(--body-font)/var(--body-lineheight) var(--font-Roboto);
    color: var(--light-black);
    transition: 0.3s all;
}

body div p {
    margin-bottom: 25px;
}

body div p:last-child {
    margin-bottom: 0;
}


.wrapper {
    max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
    width: 100%;
    margin: 0 auto;
    padding-left: var(--wrapspace);
    padding-right: var(--wrapspace);
}


img {
    display: block;
}



/*============================================================= Header start =============================================================*/
header#masthead {
    position: relative;
    z-index: 999;
}

.header-logo {
    position: absolute;
    width: 280px;
    top: -80px;
    left: -70px;
}

.header-top-row-main {
    display: flex;
    justify-content: end;
}

.header-top-row-main {
    position: relative;
}

.header-logo a {
    display: block;
}


.header-logo a img {
    display: block;
    width: 100%;
    height: 100%;
}

.social-icon {
    display: flex;
    align-items: center;
    padding-left: 102px;
}

p.social-icon-title {
    font-family: 'Barlow';
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    margin-right: 25px;
}

.header-social {
    position: relative;
    padding: 26px 0;
    z-index: 1;
}

.social-icon a {
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 16px;
}

.social-icon a img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease-in-out;
}

.social-icon a:last-child {
    margin: 0;
}

.header-top-row {
    overflow: hidden;
}

.social-icon:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: var(--red);
    bottom: 0;
    width: 1200px;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.header-phone:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1200px;
    background: var(--Yellow);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
    pointer-events: none;
}

.header-phone {
    display: flex;
    align-items: center;
    padding-left: 60px;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.header-phone a {
    position: relative;
    font-family: var(--font-Staatliches);
    font-weight: 400;
    line-height: 1;
    color: var(--light-black);
    padding-left: 32px;
    transition: all 0.3s ease-in-out;
}

.header-phone a:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0px;
    background-image: url(./assets/Images/header-phone-icon.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.header-top-cnt {
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.header-top-cnt p {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    line-height: 1;
    position: relative;
    padding-left: 40px;
    color: var(--light-black);
}

.header-top-cnt p a {
    color: var(--red);
    transition: 0.3s all;
    position: relative;
    padding-right: 35px;
}

.header-top-cnt p:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    top: -4px;
    background-image: url(./assets/Images/bag-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-top-cnt p a:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 8px;
    background-image: url(./assets/Images/red-arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-bottom-row {
    background: var(--light-black);
    min-height: 80px;
    display: flex;
    align-items: center;
}

.header-bottom-row-main {
    position: relative;
    display: flex;
    justify-content: end;
}

.header-bottom-row-main ul#menu-header-menu {
    display: flex;
    gap: 20px;
}

.header-bottom-row-main ul#menu-header-menu .menu-item a {
    font-family: Barlow;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    transition: 0.3s all;
    padding: 25px 25px 25px 0;
    display: inline-block;
    position: relative;
}

.header-bottom-row-main ul#menu-header-menu .menu-item:last-child a {
    padding-right: 0;
}

.header-bottom-row-main ul#menu-header-menu .menu-item:last-child a:before {
    display: none;
}

.header-bottom-row-main ul#menu-header-menu .menu-item a:before {
    content: "";
    position: absolute;
    width: 9px;
    height: 8px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(./assets/Images/red-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header-top-cnt p a:hover {
    color: var(--Yellow);
}

.social-icon a:hover img {
    opacity: 0.6;
}

.header-bottom-row-main ul#menu-header-menu .menu-item a:hover {
    color: var(--Yellow);
}

.header-phone a:hover {
    color: var(--red);
}

.header-bottom-row-main ul#menu-header-menu .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    display: block !important;
}

.header-bottom-row-main ul#menu-header-menu .menu-item.menu-item-has-children a {
    padding-right: 38px;
}

.header-bottom-row-main ul#menu-header-menu .menu-item i.fa-solid.fa-angle-down {
    position: absolute;
    color: #fff;
    z-index: 1;
    font-size: 20px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.header-bottom-row-main ul#menu-header-menu .menu-item .sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    position: absolute;
    background: #000;
    min-width: 220px;
    height: 0;
    overflow: hidden;
    transition: 0.3s all;
    top: 100%;
    left: 0;
}

.header-bottom-row-main ul#menu-header-menu .menu-item {
    position: relative;
}

.header-bottom-row-main ul#menu-header-menu .menu-item .sub-menu .menu-item a {
    padding: 0;
    padding: 10px;
    display: block;
    border-bottom: 1px solid rgb(255 255 255 / 50%);
}

.header-bottom-row-main ul#menu-header-menu .menu-item .sub-menu .menu-item a:before {
    display: none;
}

/*============================================================= Mobile Menu Start =============================================================*/

.hamburger-menu {
    height: 44px;
    width: 44px;
    background: #F3F5F7;
    padding: 15px 13px;
    position: relative;
    display: none;
    transition: 0.3s all;
}


.icon-left,
.icon-right {
    position: absolute;
    height: 2px;
    background: #000000;
    left: 13px;
    right: 13px;
    transition: 0.3s all;
}

.icon-right {
    bottom: 15px;
}

.icon-left {
    top: 15px;
}

.hamburger-menu:before {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 2px;
    background: #000000;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s all;
}

.mobile-menu-main {
    background: #000000;
    top: 90px;
    padding: 100px 0 40px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    height: calc(100vh - 90px);
    opacity: 0;
    transition: 0.3s all;
}

.mobile-menu {
    padding: 0 30px;
    padding-bottom: 30px;
    position: relative;
}

.mobile-menu #menu-header-menu-1 li.menu-item a {
    font-family: Barlow;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    position: relative;
    transition: 0.3s all;
}

.mobile-menu #menu-header-menu-1 {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.mobile-menu:before {
    position: absolute;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.497041) 62.92%, rgba(255, 255, 255, 0) 91.65%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    left: 0;
    right: 0;
    content: '';
    bottom: 0;
    opacity: 0.4;
}

.mobile-social-icon {
    display: flex;
    padding: 30px;
    align-items: center;
}

.mobile-social-icon a {
    margin-right: 16px;
    display: block;
}

.mobile-social-icon a:last-child {
    margin: 0;
}

.mobile-social-icon p.social-icon-title {
    margin-right: 25px;
}

.mobile-menu {
    padding: 0 30px;
    padding-bottom: 30px;
    position: relative;
}

.mobile-menu #menu-header-menu-1 li.menu-item a {
    font-family: Barlow;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    position: relative;
    transition: 0.3s all;
}

.mobile-menu #menu-header-menu-1 {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.mobile-menu:before {
    position: absolute;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.497041) 62.92%, rgba(255, 255, 255, 0) 91.65%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    left: 0;
    right: 0;
    content: '';
    bottom: 0;
    opacity: 0.4;
}

.mobile-social-icon {
    display: flex;
    padding: 30px;
    align-items: center;
}

.mobile-social-icon a {
    margin-right: 16px;
    display: block;
}

.mobile-social-icon a:last-child {
    margin: 0;
}

.mobile-social-icon p.social-icon-title {
    margin-right: 25px;
}

.header-mobile-top-cnt p {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--light-black);
    padding: 20px 0;
    max-width: 313px;
    padding-left: 52px;
    position: relative;
}

.header-mobile-top-cnt {
    background: #FFFFFF;
    padding-left: 30px;
}

.header-mobile-top-cnt p a {
    display: block;
    margin-top: 10px;
    color: var(--red);
    position: relative;
    width: fit-content;
    padding-right: 27px;
}

.header-mobile-top-cnt p a:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 8px;
    right: 0;
    top: 6px;
    background-image: url(./assets/Images/red-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-mobile-top-cnt p:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    border-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 21%) 52.42%, rgba(0, 0, 0, 0) 100%);
    border-right: 1px solid;
    border-image-slice: 1;
    background-image: url(./assets/Images/bag-icon.png);
    background-position: center;
    background-size: 29px;
    background-repeat: no-repeat;
}

.header-mobile-button {
    margin-top: 40px;
    text-align: center;
}

.mobile-menu-main.open {
    z-index: 9;
    opacity: 1;
    overflow: auto;

}

.hamburger-menu.open .icon-right {
    transform: rotate(45deg);
    bottom: 21px;
}

.hamburger-menu.open .icon-left {
    transform: rotate(-45deg);
    top: 21px;
}

body.over-scr {
    overflow: hidden;
}

.hamburger-menu:hover {
    background: var(--Yellow);
}

.hamburger-menu.open:before {
    opacity: 0;
}

.mobile-menu #menu-header-menu-1 li.menu-item a:hover {
    color: var(--red);
}

.header-mobile-top-cnt p a:hover {
    color: var(--light-black);
}

.mobile-social-icon a:hover img {
    opacity: 0.8;
}

.mobile-menu #menu-header-menu-1 li.mobile-hide.menu-item {
    display: none;
}

.mobile-menu #menu-header-menu-1 li.menu-item ul.sub-menu {
    padding-left: 15px;
    padding-top: 17px;
    display: none;
}

.mobile-menu #menu-header-menu-1 li.menu-item ul.sub-menu .menu-item a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
}

.mobile-menu #menu-header-menu-1 li.menu-item {
    position: relative;
}

.mobile-menu #menu-header-menu-1 li.menu-item i:before {
    content: '';
    position: absolute;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/mobile-menu-arrow.png);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    transition: 0.3s all;
    font-size: 0;
    right: 0;
}

.mobile-menu #menu-header-menu-1 li.menu-item i {
    z-index: 1;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 0;
    top: 5px;
}

.mobile-menu #menu-header-menu-1 li.menu-item i.active:before {
    transform: rotate(90deg);
}

/*============================================================= Mobile Menu End =============================================================*/
/*============================================================= Header end =============================================================*/


/*============================================================= Footer start =============================================================*/

footer#colophon {
    background: linear-gradient(180deg, var(--red) 0%, #861619 100%);
    padding: 100px 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    max-width: 41.78%;
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-cnt-box {
    background: rgb(0 0 0 / 8%);
    border-radius: 16px;
    position: relative;
    padding: 94px 50px 64px;
    text-align: center;
    width: 29.11%;
    margin-top: 60px;
}

.footer-cnt-icon {
    width: 189px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
}

.footer-cnt-title {
    color: var(--Yellow);
    font-family: Barlow;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 3.2px;
}

.footer-cnt-content {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.28;
    color: #FFFFFF;
    transition: 0.3s all;
    max-width: 300px;
    margin: 0 auto;
}

.footer-copyright-text p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    max-width: 350px;
    margin: 0 auto;
    margin-top: -25px;
}

a.footer-cnt-content:hover {
    color: var(--Yellow);
}

.footer-cnt-icon img {
    width: 100%;
    height: 100%;
}

/*============================================================= Footer end =============================================================*/
/*============================================================= Home Hero Banner start =============================================================*/

.slider-item-title {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 60px;
    line-height: 1.14;
    color: var(--light-black);
}

.slider-item-sub-title {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 42px;
    line-height: 100%;
    color: var(--red);
    margin-bottom: 0;
}

.slider-item-content p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
}

.slider-item-button {
    margin-top: 60px;
}

.button:hover:before {
    filter: brightness(0) saturate(100%) invert(10%) sepia(86%) saturate(5231%) hue-rotate(349deg) brightness(112%) contrast(84%);
}

.button:hover {
    color: #fff;
}

.button {
    background: linear-gradient(180deg, var(--red) 0%, #861619 100%);
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 21px 71px 20px 20px;
    display: inline-block;
    border-radius: 8px;
    transition: 0.3s all;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.attractions-item-image .button {
    background-image: url(./assets/Images/triangle-btn-shape.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 21px 70px 20px 40px;
}

.attractions-item-image .button:hover::before {
    transform: translateX(5px) translateY(-50%);
    filter: none;
}

.attractions-item-image .button:hover:after {
    display: none;
}

.button:after {
    top: 0;
    position: absolute;
    content: '';
    bottom: 0;
    left: -100%;
    right: 100%;
    background: var(--light-black);
    transition: 0.5s all;
    z-index: -1;
    border-radius: 50px;
    width: 100%;
}

.button:hover:after {
    right: 0;
    border-radius: 0;
    left: 0;
}

.button:before {
    content: '';
    width: 15px;
    height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/yellow-arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /* transition: all 350ms ease-in-out; */
}

section.home-hero-banner {
    padding: 120px 0 180px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
}


section.inner-hero-banner {
    padding: 110px 0 100px;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--Yellow);
}

section.inner-hero-banner .slider-item-title {
    margin-bottom: 0;
}

section.inner-hero-banner .slider-item-button {
    margin-top: 30px;
    display: flex;
}

.home-hero-banner-video .video-bottom {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;


    -webkit-mask-image: url('/wp-content/uploads/2025/04/video-mask-new.svg');
    mask-image: url('/wp-content/uploads/2025/04/video-mask-new.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.home-hero-banner-video .video-bottom:before {
    position: absolute;
    content: '';
    background-image: url(/wp-content/uploads/2025/04/mask-video-border.png);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    pointer-events: none;
    z-index: 0;
}


.home-hero-banner-video .video-bottom video,
.home-hero-banner-video .video-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-fit: contain; */
    object-position: top center;
}

.home-hero-banner-video {
    position: absolute;
    bottom: -533px;
    right: -207px;
    width: 1328px;
    height: 1162px;
    filter: drop-shadow(-8px -6px 16px rgb(0 0 0 / 30%));
    /* Safari */
    -webkit-filter: drop-shadow(-8px -6px 16px rgb(0 0 0 / 30%));
}


.inner-hero-banner .home-hero-banner-video {
    bottom: -430px;
    right: -107px;
    width: 1204px;
    height: 1056px;
}

.home-hero-slider {
    max-width: 708px;
}

.inner-hero {
    max-width: 450px;
}

.slider-item-content {
    margin-top: 20px;
}

/*============================================================= Home Hero Banner end =============================================================*/
/*============================================================= Moments Section Start =============================================================*/

section.moments-section {
    padding: 140px 0 100px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-sub-title {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 34px;
    line-height: 100%;
    text-align: center;
    color: var(--red);
    margin: 0;
}

.section-title {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 42px;
    line-height: 1.14;
    text-align: center;
    color: var(--light-black);
}

.small-title {
    font-size: 36px;
}

.moments-section-galler {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
}

.moments-section-galler-item {
    border-radius: 16px;
    overflow: hidden;
    width: calc(25% - 12px);
}

.moments-section-galler-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.moments-section-button {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

/*============================================================= Moments Section end =============================================================*/
/*============================================================= Testimonials Section Start =============================================================*/
.testimonials-main {
    padding: 210px 0 100px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(./assets/Images/Testimonials-inner.png);
}

.testimonials-main .section-sub-title {
    color: var(--Yellow);
    font-size: 24px;
    line-height: 1;
}

.testimonials-main .section-title {
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1.3;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 34px;
    padding-top: 40px;
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 21%) 50%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
}

.testimonials-slider-item.slick-slide {
    margin: 0 10px;
}

span.rating-5 {
    display: none;
}

.testimonials-slider-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.testimonials-slider-rating span {
    display: block;
}

.testimonials-item-content p {
    font-style: italic;
    font-size: 26px;
    line-height: 46px;
    text-align: center;
    color: #FFFFFF;
}

.color-content p {
    color: var(--Yellow);
    margin-top: 30px;
}

.testimonials-item-author-name {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
    margin-top: 45px;
    margin-bottom: 11px;
}

.testimonials-item-author-designation {
    font-size: 20px;
    line-height: 30px;
    color: var(--Yellow);
    text-align: center;
    margin-top: 1px;
}

.testimonials-slider .slick-dots li {
    display: block;
    margin: 0;
    height: auto;
    width: auto;
}

.testimonials-slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 24px;
    bottom: -40px;
}

.testimonials-slider .slick-dots li button {
    padding: 0;
    margin: 0;
    width: 8px;
    height: 8px;
    background: red;
    position: relative;
    transition: 0.3s all;
    background-color: var(--light-black);
    opacity: 32%;
    border-radius: 10px;
    display: block;
    transition: 0.3s all;
}

.testimonials-slider .slick-dots li button:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #F0C45833;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    opacity: 0;
}

.testimonials-slider .slick-dots li.slick-active button,
.testimonials-slider .slick-dots li button:hover {
    background-color: var(--Yellow);
    opacity: 1;
}

.testimonials-slider .slick-dots li.slick-active button:before,
.testimonials-slider .slick-dots li button:hover:before {
    opacity: 1;
}

.testimonials-main-inner {
    position: relative;
}

.testimonials-main-inner:before {
    position: absolute;
    content: '';
    width: 88px;
    height: 64px;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(./assets/Images/quotes.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

section.testimonials-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonials-section .wrapper {
    max-width: 1596px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

/*============================================================= Testimonials Section End =============================================================*/
/*============================================================= Attractions Section Start =============================================================*/
section.attractions-section {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.attractions-box-list {
    margin-top: 60px;
}

.attractions-item-image img {
    height: 100%;
    width: 100%;
    position: relative;
    transition: 0.3s all;
}

.attractions-item-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;

    /* WebKit-specific (Safari, some older versions of Chrome) */
    -webkit-mask-image: url('https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/image-mask.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    /* Standard syntax for modern browsers */
    mask-image: url('https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/image-mask.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}


.attractions-item-overly {
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 100%;
    width: 100%;
    -webkit-mask-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/image-mask.svg);
    mask-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/image-mask.svg);
    backdrop-filter: blur(8px);
    background: #FFFFFFA3;
    display: flex;
    mask-size: contain;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
}

.attractions-item-image .button.no-shadow {
    position: relative;
}

.attractions-list-item:hover .attractions-item-overly {
    top: 0;
}

.attractions-box-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 74px 42px;
}

.attractions-item-image:before {
    content: '';
    position: absolute;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/Vector.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    pointer-events: none;
}

a.attractions-list-item {
    width: calc(33.33% - 37px);
    padding-bottom: 40px;
    filter: drop-shadow(0px 24px 16px rgb(0 0 0 / 30%));
    /* Safari */
    -webkit-filter: drop-shadow(0px 24px 16px rgb(0 0 0 / 30%));
    position: relative;
}

.attractions-item-title-main {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--red);
    padding: 30px 60px 30px 16px;
    max-width: 250px;
    min-width: 250px;
    min-height: 130px;
    place-content: center;
    transition: 0.3s all;

    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    /* For Safari */
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
}


.attractions-item-title {
    filter: drop-shadow(0 -24px 48px rgba(0, 0, 0, 0.24));
    /* Safari */
    -webkit-filter: drop-shadow(0 -24px 48px rgba(0, 0, 0, 0.24));
    margin-top: -135px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*============================================================= Attractions Section End =============================================================*/

/*============================================================= Event Section Start =============================================================*/

section.event-section {
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.plan-event-main-page .event-item-image {
    width: 450px;
}

.event-section-main .section-sub-title {
    color: var(--red);
}

.bg-dark.event-section .section-sub-title,
.bg-dark.event-section-main .section-sub-title {
    color: var(--Yellow);
}

.bg-dark .event-section-main .section-title {
    color: #ffffff;
}

.bg-dark .event-section-main .section-content {
    color: #ffffff;
}

.bg-dark .event-section-main .section-content p {
    color: inherit;
}

.event-box-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 64px;
}

.event-list-item {
    flex: 1 0 calc(50% - 37px);
    position: relative;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/event-box-bg.jpg);
    background-color: var(--Yellow);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    padding: 36px 48px;
    display: flex;
    justify-content: end;
    min-height: 400px;
}

.event-item-image {
    position: absolute;
    bottom: -2px;
    left: -2px;
}

.event-item-image.rectangle-image {
    position: absolute;
    bottom: -160px;
    left: -12px;
    width: 600px;
}

.event-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-item-title-main {
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2129;
    color: var(--light-black);
    margin-bottom: 0px;
}

.event-item-title {
    max-width: 190px;
    z-index: 1;
    position: relative;
}

.event-key-points ul li {
    position: relative;
    padding-left: 14px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: var(--light-black);
}

.event-key-points ul li:before {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-black);
    content: '';
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 5px;
}

.plan-event-main-page .event-list-item:before {
    position: absolute;
    content: '';
    width: 71px;
    height: 25px;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/event-box-arrow.png);
    transition: 0.3s all;

}

.plan-event-main-page.events-inner-section .event-list-item:before {
    top: 60px;
}

.plan-event-main-page.events-inner-section .event-list-item.box_theme-yellow .event-item-title {
    max-width: 460px;
}

.plan-event-main-page.events-inner-section .event-box-list {
    gap: 50px;
}

.plan-event-main-page.events-inner-section .event-section .section-title {
    font-size: 64px;
}

.event-list-item:hover:before {
    transform: translateX(10px);
}

.event-button {
    position: absolute;
    right: -38px;
    bottom: 32px;
    filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.16));
    /* Safari */
    -webkit-filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.16));
}

.event-button:before {
    content: '';
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/Button.png);
    width: 92px;
    height: 72px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s all;
}

.event-list-item:hover .event-button:before {
    transform: translateX(10px);
    opacity: 0.8;
}

.plan-event-main-page .event-list-item.box_theme-red:before {
    left: 0;
    right: auto;
}

.plan-event-main-page .event-list-item .event-item-title::before {
    display: none;
}

.event-list-item.box_theme-red {
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/06/red-bg-svg.svg);
    background-color: var(--red);
}

.event-list-item.box_theme-red:before {
    left: 0px;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/event-box-arrow-2.png);
    width: 71px;
}

.event-list-item.box_theme-red .event-button:before {
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/Button-1.png);
}

.event-list-item.box_theme-red .event-key-points p,
.event-list-item.box_theme-red .event-key-points ul li,
.event-list-item.box_theme-red .event-key-points ul li a,
.event-list-item.box_theme-red .event-key-points p a {
    color: #fff;
}

.event-list-item.box_theme-red .event-key-points ul li a,
.event-list-item.box_theme-red .event-key-points p a {
    text-decoration: underline;
    transition: all 350ms ease-in-out;
}

.event-list-item.box_theme-red .event-key-points ul li a:hover,
.event-list-item.box_theme-red .event-key-points p a:hover {
    text-decoration: none;
}

.event-list-item.box_theme-red .event-item-title-main {
    color: #fff;
}

.event-list-item.box_theme-red .event-key-points ul li:before {
    background: #fff;
}

.event-key-points ul {
    display: flex;
    flex-wrap: wrap;
}

.event-key-points ul li {
    min-width: 50%;
}


/*============================================================= Event Section Start =============================================================*/
/*============================================================= Text Slide Start=============================================================*/

.text-slide-main {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #fff;
    padding: 24px 0;
    box-shadow: 0px 48px 48px 0px #00000014;
    position: relative;
    z-index: 5;
}

.text-slide-main-inner {
    display: inline-flex;
    animation: marquee-scroll 18s linear infinite;
}

.text-slide-main-inner p {
    display: inline-block;
    padding: 0 45px 0 40px;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0.7px;
    margin: 0;
    position: relative;
    color: var(--light-black);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-slide-main-inner p:before {
    content: '';
    width: 17px;
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/red-arrow-text.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/*============================================================= Text Slide End =============================================================*/


/*============================================================= Outside Attractions Section Start =============================================================*/

::selection {
    background-color: var(--red);
    color: var(--white);
}

.outside-attractions-section {
    padding: 200px 0 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.outside-attractions-section .attractions-section-main .section-title {
    background-color: var(--light-black);
    color: var(--white);
    padding: 25px 66px;
    border-radius: 40px 40px 0 0;
    margin-bottom: 0;
    font-size: 44px;
}

.top-rectangle {
    position: relative;
    z-index: 1;
}

.top-rectangle::before {
    content: "";
    position: absolute;
    top: -82px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    width: 193px;
    height: 163px;
    background-image: url(./assets/Images/yellow-rectangle-bg.svg);
}

.calendar-table {
    display: flex;
    flex-direction: column;
    font-family: var(--font-Staatliches);
}

.calendar-header-row,
.calendar-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-header-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.calendar-header-cell {
    padding: 10px 8px 8px 8px;
}

.calendar-header-row {
    background: var(--red);
    color: #fff;
    font-size: 15px;
}

.calendar-cell {
    padding: 15px 20px;
    min-height: 150px;
    border: 1px solid #D3D3D3;
    box-sizing: border-box;
    background: #fff;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    margin: -1px;
}

.calendar-cell:nth-child(even) {
    background-color: var(--bg-color);
}

.calendar-cell strong {
    display: block;
    color: var(--red);
}

.calendar-cell .calendar-cell-info {
    list-style: none;
    margin: 0.5em 0 0 0;
    font-size: 15px;
    font-family: var(--font-Roboto);
}

.calendar-cell ul {
    list-style: none;
    margin: 0.5em 0 0 0;
}

.calendar-cell li {
    line-height: 1.125;
    margin-bottom: 10px;
}

.calendar-cell li:last-child {
    margin-bottom: 0;
}

.section-row {
    padding: 100px 0;
}

/*============================================================= Outside Attractions Section Start =============================================================*/

/*============================================================= Employment Application Section Start =============================================================*/

.employment-application-section {
    padding: 37px 0 100px;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.gform_legacy_markup_wrapper .gfield_required {
    color: var(--Yellow) !important;
}

#gform_page_4_2 .ginput_container_checkbox ul li label::after,
.employment-application-form .gfield--input-type-address .gform-grid-row label.gform-field-label--type-sub::after,
.ginput_container--name label.gform-field-label--type-sub::after {
    content: " *";
    color: var(--Yellow);
}


#gform_fields_4 .gfield.gsection h2 {
    font-size: 22px !important;
    text-align: center !important;
    margin-bottom: 25px !important;
    font-weight: 600;
    text-transform: none;
    font-family: var(--font-Roboto);
}

#input_4_6_1_container {
    padding-right: 0 !important;
}

#gform_fields_4 .gfield.gsection .gsection_description {
    font-size: 22px;
    text-align: center;
    padding-right: 0;
}

#gform_page_4_1 .gform_page_fields {
    background-color: transparent;
    padding: 0;
    border: 0;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting {
    background-color: var(--bg-color);
    padding: 50px 40px 50px 30px;
    border: 1px solid #D3D3D3;
}

.employment-application-form .gform_legacy_markup_wrapper .gform_page .gsection {
    border-bottom: 0;
    padding-bottom: 0;
    margin-top: 72px;
    padding-right: 0;
    margin-right: 0;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h2 {
    text-align: center;
    font-size: 44px;
    max-width: 930px;
    margin: 0 auto 20px;
    font-family: var(--font-Staatliches);
    font-weight: 400;
    line-height: 1.15625;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    max-width: 1100px;
    margin: 0 auto;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul,
.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol {
    margin-top: 30px !important;
    font-size: 20px;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul li,
.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol li {
    line-height: 1.69;
}

.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container {
    margin-top: 0 !important;
}

.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_complex {
    margin-top: 0;
}

.gform_wrapper form .gform_body .gform_fields .gfield .gfield_description {
    padding-top: 4px;
}

.gform_wrapper.gravity-theme .description,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .gsection_description,
.gform_wrapper.gravity-theme .instruction {
    padding: 12px 20px !important;
}

.gform_wrapper.gravity-theme .gform_validation_errors:focus {
    outline: 0 solid #c02b0a !important;
    outline-offset: 0 !important;
}

/* Container layout */
.employment-application-form .gf_page_steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    border-bottom: 0 !important;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.employment-application-form .gf_step {
    height: auto !important;
    margin: 0 !important;
    position: relative;
    opacity: 1 !important;
    text-align: center;
}

.employment-application-form .gf_step::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100vw;
    height: 2px;
    background: #d9d9d9 !important;
    z-index: 0;
}

.employment-application-form .gf_step .gf_step_number {
    position: relative;
    width: 97px !important;
    height: 85px !important;
    /* background: #E9E9E9 !important; */
    background-image: url(./assets/Images/gray-triangle.svg) !important;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    transition: all 0.3s ease;
    z-index: 1;
    font-family: var(--font-Staatliches) !important;
    font-weight: 400 !important;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
}

.employment-application-form .gform_legacy_markup_wrapper .gf_step span.gf_step_number {
    font-weight: bold;
    font-size: 44px;
    color: #fff;
}

.employment-application-form .gform_legacy_markup_wrapper .gf_step_label {
    display: block;
    text-align: center;
    font-size: 26px;
    position: relative;
    margin-top: 55px;
    text-transform: capitalize;
}

.employment-application-form .gf_step.gf_step_completed .gf_step_number,
.employment-application-form .gf_step.gf_step_active .gf_step_number {
    background-image: url(./assets/Images/red-triangle.svg) !important;
}

.employment-application-form .gf_step.gf_step_completed::before {
    background: var(--red) !important;
}

.employment-application-form .gform_legacy_markup_wrapper .gform_page_footer {
    border-top: 0 !important;
    margin-bottom: 0;
    margin: 50px auto 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s all;
    border-radius: 8px;
    gap: 30px;
}

/* form#gform_4 {
    opacity: 1 !important;
} */

.gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_last,
.gform_legacy_markup_wrapper.gf_browser_chrome .gfield_error .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_middle {
    margin-left: 0 !important;
}

.employment-application-form .submit_button .gform_button,
.employment-application-form .gform-theme-button {
    border-top: 0 !important;
    margin-bottom: 0;
    border: 0;
    cursor: pointer;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 21px 71px 20px 40px !important;
    display: inline-block;
    transition: 0.3s all;
    margin-right: 0 !important;
    border-radius: 8px !important;
    font-size: 23px !important;
}

.employment-application-form .gform-theme-button::before,
.employment-application-form .gform-theme-button::after {
    display: none;
}

.employment-application-form .gform-page-footer .submit_button,
.employment-application-form .gform-page-footer .previous_button,
.employment-application-form .gform-page-footer .next_button {
    position: relative;
    z-index: 1;
}

.employment-application-form .gform-page-footer .submit_button::before,
.employment-application-form .gform-page-footer .previous_button::before,
.employment-application-form .gform-page-footer .next_button::before {
    content: '';
    width: 15px;
    height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/yellow-arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.employment-application-form .gform-page-footer .previous_button .gform-theme-button {
    padding: 21px 40px 20px 71px !important;
}

.employment-application-form .gform-page-footer .previous_button::before {
    left: 40px;
    right: auto;
    transform: translateY(-50%) rotate(180deg);
}

.employment-application-form .gform_legacy_markup_wrapper .gform_page_footer .next_button:hover .gform-theme-button {
    color: #fff !important;
}

.employment-application-form .gform_legacy_markup_wrapper .gform_page_footer .previous_button:hover::before {
    transform: translateX(-5px) translateY(-50%) rotate(180deg);
    transition: 0.3s all;
}

.employment-application-form .submit_button:hover::before,
.employment-application-form .gform_legacy_markup_wrapper .gform_page_footer .next_button:hover::before {
    transform: translateX(5px) translateY(-50%);
    transition: 0.3s all;
}


.employment-application-form .gform_page {
    text-align: center;
    /* display: block !important; */
}

.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select,
.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select,
.gform_legacy_markup_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
    margin-left: 0;
}

.employment-application-form .gfield--input-type-address .gform-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 28px;
}

.employment-application-form .gfield--input-type-address .gform-grid-row span {
    padding-right: 0 !important;
    width: 100% !important;
}

.employment-application-form .gfield--input-type-address .gform-grid-row .address_line_1 {
    grid-column: span 3;
}

.employment-application-form .gform_page_fields {
    text-align: left;
}

.employment-application-form .gform-page-footer {
    position: relative;
    z-index: 1;
    display: inline-flex !important;
    width: auto !important;
}

.employment-application-form table.gfield_list.gfield_list_container th {
    background-color: transparent;
    font-size: 18px;
}

.gform_page .gform_page_fields {
    background-color: var(--bg-color);
    padding: 30px 0 56px 30px;
    border: 1px solid #D3D3D3;
    margin-top: 50px;
}

.gform_page .gform_page_fields ul li:first-child {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    text-align: left;
}

.gform_page .gsection_title {
    font-size: 44px !important;
    text-transform: uppercase;
    text-align: left !important;
    font-family: var(--font-Staatliches);
    font-weight: 400 !important;
}

.gform_page .gsection_title:last-child {
    margin-bottom: 0;
}

.gf_right_half input,
.gf_left_half input {
    width: 100%;
}

.gform_page input,
.gform_page select {
    border: 1px solid #d9d9d9;
    background-color: var(--white);
    border-radius: 0;
    min-height: 60px;
    width: 100% !important;
    outline: 0;
    margin: 0;
    padding: 10px 15px !important;
}

.gform_page textarea {
    border: 1px solid #d9d9d9;
    border-radius: 0;
    outline: 0;
}

.gform_page textarea:focus {
    border-color: var(--Yellow);
    border-radius: 0;
}

.gform_page select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.25 7.25l4.25 4.25 4.25-4.25' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 30px;
    font-size: 18px !important;
    color: #9E9E9E;
}

.gform_page input:focus,
.gform_page select:focus {
    border-color: var(--Yellow);
    border-radius: 0;
}

.gform_page input::placeholder,
.gform_page textarea::placeholder,
.gform_page select::placeholder {
    color: #9E9E9E;
}

#gform_page_4_2 .gfield_checkbox {
    margin-top: 0 !important;
}

#gform_page_4_2 input,
#gform_page_4_2 select {
    margin-top: 10px;
}

.previous_button input,
.next_button input {
    margin-top: 0 !important;
}

#gform_page_4_2 .gfield_checkbox .ginput_container_checkbox {
    width: 100%;
}

#gform_page_4_2 .gfield--type-checkbox {
    vertical-align: middle;
    margin-top: 66px;
    margin-bottom: 0;
}

#gform_page_4_2 .gfield--type-checkbox .gfield-choice-input {
    width: 21px !important;
    height: 21px;
    border-color: #D9D9D9 !important;
    border-radius: 0 !important;
    margin-right: 10px !important;
    margin-top: 0 !important;
}

#gform_page_4_2 .gfield--type-checkbox .gfield_checkbox label {
    margin-bottom: 0;
}


#gform_page_4_2 .ginput_container_checkbox ul {
    margin-bottom: 0;
}

#gform_page_4_2 .ginput_container_checkbox .gfield_checkbox li {
    margin-bottom: 0;
}

#gform_page_4_2 .ginput_container_checkbox .gfield_checkbox li input {
    min-height: auto;
}

#gform_page_4_2 .gfield_checkbox .ginput_container_checkbox .gfield_checkbox li label {
    margin-bottom: 0;
    display: block;
}

#gform_page_4_2 .gfield_checkbox label.gfield_label.gform-field-label.gfield_label_before_complex {
    display: none;
}

#gform_page_4_2 .gfield_checkbox input {
    width: auto;
    min-height: auto;
}

#gform_page_4_2 .datepicker::placeholder {
    opacity: 0;
}

#gform_page_4_2 #gfield_description_4_4 {
    display: none;
}

#gform_page_4_2 .gfield--type-address label.gfield_label.gform-field-label.gfield_label_before_complex {
    display: none;
}

#gform_page_4_2 .gfield--type-address .gform-grid-row .address_city,
#gform_page_4_2 .gfield--type-address .gform-grid-row .address_state,
#gform_page_4_2 .gfield--type-address .gform-grid-row .address_zip {
    width: 33.3%;
    margin: 13px 0 0 !important;
    padding-right: 29px;
}

.emergency-contact-title {
    font-size: 30px;
    font-family: var(--font-Staatliches);
    margin-bottom: 0;
}

#gform_page_4_2 .gform-field-label,
#gform_page_4_2 .gfield_label {
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 0;
    margin-top: 0;
}

#gform_page_4_2 #gform_fields_4_2>li {
    padding-right: 29px;
}

#gform_page_4_2 #gform_fields_4_2>li .gform-grid-col {
    padding-right: 29px;
}

#gform_page_4_2 #gform_fields_4_2>li #input_4_3 {
    width: 100%;
}

#gform_page_4_2 #gform_fields_4_2>li #input_4_3_6_container,
#gform_page_4_2 #gform_fields_4_2>li .ginput_address_zip {
    padding-right: 0 !important;
}

.gfield--input-type-textarea label {
    margin-bottom: 10px;
}


.gform_legacy_markup_wrapper .top_label .gsection_description {
    font-size: var(--body-font);
}

#field_4_22 label {
    margin-bottom: 20px;
}

#gform_page_4_5 label {
    margin-bottom: 10px;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul.gfield_radio {
    margin-top: 0 !important;
    margin-bottom: 0;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul.gfield_radio label {
    margin-bottom: 0 !important;
    margin-top: 0;
}

.gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul.gfield_radio input {
    width: 21px !important;
    min-height: auto;
    height: 21px;
    margin-top: 0;
}

.gfield--type-textarea .gfield_description,
.gfield--type-website .gfield_description {
    font-size: var(--body-font) !important;
    margin-bottom: 10px;
}

.gfield--type-radio label {
    margin-top: 0;
    font-size: 18px !important;
}

#field_4_56 label {
    margin-bottom: 10px;
}

.gform_wrapper form .gform_body .gform_fields .gfield .ginput_list {
    margin-top: 10px !important;
}

/*============================================================= Employment Application Section End =============================================================*/


/*============================================================= About Beverage Section Start =============================================================*/

.rectangle-image {
    position: relative;
    filter: drop-shadow(0px 35px 12px rgb(0 0 0 / 16%));
    /* Safari */
    -webkit-filter: drop-shadow(0px 35px 12px rgb(0 0 0 / 16%));
}

.rectangle-image img {
    height: 100%;
    width: 100%;
    position: relative;
    transition: 0.3s all;


    /* Mask for modern browsers */
    mask-image: url('https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/beverages-bg.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    /* WebKit-specific (Safari, older Chrome) */
    -webkit-mask-image: url('https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/beverages-bg.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

}

.rectangle-image:before {
    content: '';
    position: absolute;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/beverages-border.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    pointer-events: none;
}

.yellow-border-rectangle .rectangle-image:before {
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/yellow-border.svg);
}

.about-beverage-section {
    padding: 100px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.about-beverage-section .main-section-title {
    text-align: center;
}


.about-beverage-content ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 12px;
}

.about-beverage-content ol {
    padding-left: 30px;
}

.about-beverage-content ol li a {
    color: var(--light-black);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.about-beverage-content ol li a:hover {
    text-decoration: none;
    color: var(--Yellow);
}

.about-beverage-content ol li {
    margin-bottom: 12px;
    list-style-type: auto;
}

.about-beverage-content ul li:last-child {
    margin-bottom: 0;
}

.about-beverage-content ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--red);
    z-index: -1;
    pointer-events: none;
}

.about-beverage-content strong {
    color: #861619;
}

.dark-bg .about-beverage-content strong {
    color: var(--Yellow);
}

.about-right-image-sec .about-beverage-info {
    max-width: 708px;
    width: 100%;
    order: -1;
}

.about-beverage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: auto 710px; */
    gap: 67px;
    align-items: center;
}

.about-beverage-row.no-image {
    display: flex;
    gap: 0;
    text-align: center;
    justify-content: center;
}

.about-beverage-row.no-image .about-right-image-sec .about-beverage-info {
    max-width: 100%;
    width: 100%;
}

.about-beverage-row.no-image .about-beverage-info {
    text-align: center;
}

.about-beverage-row .about-beverage-info ol,
.about-beverage-row .about-beverage-info ul {
    text-align: left;
}

.about-beverage-row.no-image .about-beverage-info ol,
.about-beverage-row.no-image .about-beverage-info ul {
    text-align: left;
}

.about-beverage-image {
    width: 550px;
    height: 100%;
}

.about-beverage-image img {
    object-fit: cover;
}

.about-beverage-content p,
.about-beverage-content p a {
    color: var(--light-black);
}

.about-beverage-content p a {
    text-decoration: underline;
    transition: all 350ms ease-in-out;
}

.about-beverage-content .button {
    color: var(--white);
    text-decoration: none;
}

.about-beverage-content .button:hover {
    color: var(--white);
}

.about-beverage-row.no-image .section-button {
    justify-content: center;
}

.about-beverage-content p a:hover {
    color: var(--red);
    text-decoration: none;
}

.text-left {
    text-align: left;
}

.text-left .section-sub-title,
.text-left .section-title {
    text-align: inherit;
}

.about-beverage-info .section-title {
    margin-bottom: 21px;
}

.about-beverage-info .section-sub-title {
    margin-bottom: 8px;
}

.section-button {
    margin-top: 42px;
    display: flex;
}

.dark-bg {
    background-position: top;
    background-color: var(--light-black);
    background-repeat: no-repeat;
    background-size: cover;
}

.dark-bg .section-sub-title,
.dark-bg .section-title,
.dark-bg p,
.dark-bg p a,
.dark-bg ul li a,
.dark-bg ul {
    color: var(--white);
}

.dark-bg .section-sub-title {
    color: var(--Yellow);
}

.dark-bg .about-beverage-info a {
    color: #fff;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.dark-bg .about-beverage-info a:hover {
    color: var(--Yellow);
    text-decoration: none;
}

.dark-bg .about-beverage-info ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 10px;
}

.dark-bg .about-beverage-info ul li:last-child {
    margin-bottom: 0;
}

.dark-bg .about-beverage-info ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.dark-bg .about-beverage-info ul.red-dot-lisitng li::before {
    background-color: var(--red);
}

.more-info .buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.more-info ul {
    margin-bottom: 20px;
    text-align: left;
}

.more-info ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 10px;
}

.more-info ul li strong {
    color: var(--red);
}

.more-info ul li:last-child {
    margin-bottom: 0;
}

.more-info ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.dark-bg .more-info ul li::before {
    background-color: var(--white);
}

/*============================================================= About Beverage Section End =============================================================*/


/*============================================================= Events Inner Section Start =============================================================*/

.events-inner-section .event-list-item.box_theme-yellow {
    flex: 1 0 100%;
    background-color: var(--Yellow);
}

.events-inner-section .box_theme-red .event-item-title {
    max-width: 100%;
    width: 100%;
}

.events-inner-section .event-list-item.box_theme-red {
    justify-content: flex-start;
    padding: 54px 48px 80px;
}

.events-inner-section .event-list-item.box_theme-red .event-item-title-main {
    max-width: 460px;
}

.events-inner-section .event-list-item.box_theme-red:before {
    display: none;
}

.events-inner-section .event-list-item.box_theme-yellow .event-key-points {
    margin-top: 20px;
    color: var(--light-black);
}

.events-inner-section .event-list-item.box_theme-yellow .event-key-points p {
    color: inherit;
}

.snackbar-menu-section.events-inner-section .event-list-item.box_theme-yellow .event-key-points {
    margin-top: 0;
}

.events-inner-section .event-list-item .event-key-points ul {
    flex-direction: column;
    margin-top: 20px;
}

.events-inner-section .event-list-item .event-key-points ul ul li strong {
    font-weight: 500;
}

.events-inner-section .event-list-item .event-key-points ul li {
    font-size: 26px;
    font-family: var(--font-Staatliches);
    line-height: normal;
}

.events-inner-section .event-list-item .event-key-points ul li {
    flex-direction: column;
    margin-top: 10px;
    min-width: auto;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.events-inner-section .event-list-item .event-key-points ul li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 28px solid var(--red);
    background-color: transparent;
    border-radius: 0;
}

.events-inner-section .event-list-item.box_theme-red .event-key-points ul.red-dot-lisitng li::before {
    background-color: var(--Yellow);
}

.events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng,
.events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng ul {
    margin-top: 0;
}

.events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng li {
    font-family: var(--body-font);
    padding-left: 32px;
    font-size: 20px;
    margin-bottom: 5px;
}

.events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng li::before {
    top: 12px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--red);
    border: 0;
}

.events-inner-section .event-list-item.box_theme-red .event-key-points ul li::before {
    border-left-color: var(--Yellow);
}

.events-inner-section .event-list-item.box_theme-yellow {
    padding-right: 148px;
    display: flex;
    align-items: center;
}

.events-inner-section .event-list-item.box_theme-yellow .event-item-title {
    max-width: 100%;
}

.events-inner-section .section-sub-title {
    font-size: 30px;
    margin: 0 0 20px;
}

.event-item-title .button {
    margin-top: 30px;
}

.event-list-item.box_theme-red .button {
    background: linear-gradient(180deg, #FFF0CB 0%, #F0C458 100%);
    color: var(--light-black);
}

.event-list-item.box_theme-red .button::before {
    filter: brightness(0) saturate(100%) invert(10%) sepia(86%) saturate(5231%) hue-rotate(349deg) brightness(112%) contrast(84%);
}

.event-section .section-title {
    /* font-size: 64px; */
    max-width: 1273px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.15625;
}

.event-section .main-section-title {
    margin-bottom: 55px;
}

.more-info {
    margin-top: 50px;
    text-align: center;
}

.dark-bg .more-info {
    color: var(--white);
}

.more-info .section-button {
    justify-content: center;
    text-align: center;
}

.more-info p a,
.more-info p {
    color: inherit;
}

.more-info p a {
    text-decoration: underline;
    transition: all 350ms ease-in-out;
}

.more-info p a:hover {
    text-decoration: none;
    color: var(--Yellow);
}

.button.btn-white:hover {
    color: var(--red);
}

.button.btn-white::after {
    background-color: var(--white);
}


.dark-bg .button:hover {
    color: var(--red);
}

.dark-bg .button::after {
    background-color: var(--white);
}


/*============================================================= Events inner Section End =============================================================*/

/*============================================================= Snackbar Section Start =============================================================*/



.snackbar-menu-section .event-box-list {
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.snackbar-menu-section .event-item-title .event-item-title-main:last-child {
    margin-bottom: 0;
}

/* .event-key-points p strong,
.event-key-points b {
    font-size: 24px;
} */

.snackbar-menu-section .event-box-list .event-list-item.no-image {
    padding: 50px 30px 30px;
}

.snackbar-menu-section .event-box-list .event-list-item.no-image .event-item-title-main {
    max-width: 100%;
}

.event-box-list .event-list-item.box_theme-red .event-key-points h3,
.event-box-list .event-list-item.box_theme-red .event-key-points h4,
.event-box-list .event-list-item.box_theme-red .event-key-points h5,
.event-box-list .event-list-item.box_theme-red .event-key-points h6 {
    color: var(--white);
}

.event-key-points h2,
.event-key-points h3,
.event-key-points h4,
.event-key-points h5,
.event-key-points h6 {
    margin-bottom: 10px;
}

.event-key-points h2+ul,
.event-key-points h3+ul,
.event-key-points h4+ul,
.event-key-points h5+ul,
.event-key-points h6+ul {
    margin-bottom: 20px;
}

.snackbar-menu-section .event-box-list .event-list-item {
    flex: 1 0 calc(33.33% - 16px);
    padding: 289px 30px 50px;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.snackbar-menu-section .event-list-item:before {
    left: 40px;
    top: 218px;
}


.snackbar-menu-section.menu-cols3 .event-item-image.rectangle-image {
    top: -320px;
    left: -50px;
    width: 684px;
    height: 600px;
}

.snackbar-menu-section .event-item-image.rectangle-image {
    bottom: auto;
    top: -300px;
    left: auto;
    right: -205px;
    width: 684px;
    height: 600px;
}

/* .snackbar-menu-section .event-item-image.rectangle-image img {
    object-position: bottom;
} */

.box_theme-red .rectangle-image::before {
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/yellow-border.svg);
}

.snackbar-menu-section .event-list-item:before {
    display: none;
}

.event-item-title::before {
    position: absolute;
    content: '';
    width: 66px;
    height: 18px;
    top: -30px;
    left: 0;
    z-index: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/06/arrows-img2.png);
    transition: 0.3s all;
    pointer-events: none;
}

.box_theme-red .event-item-title::before {
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/06/arrows-img.png);
}

/* .snackbar-menu-section .event-key-points p {
    font-size: 22px;
} */

.snackbar-menu-section .event-item-title .event-item-title-main {
    margin-bottom: 17px;
}

.event-item-title:hover:before {
    transform: translateX(10px);
}

.event-list-item.no-image {
    padding: 70px 30px 30px;
    min-height: auto;
    justify-content: flex-start;
}

.event-list-item.no-image .event-item-title {
    max-width: 100%;
}

.menu-cols4 .event-box-list {
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.menu-cols4 .more-info {
    font-weight: 600;
}

.menu-cols4 .event-box-list .event-list-item {
    flex: 1 0 calc(25% - 18px);
    padding: 248px 20px 40px;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.snackbar-menu-section.menu-cols4 .event-item-title,
.snackbar-menu-section.menu-cols4 .event-item-title .event-item-title-main {
    max-width: 100%;
    width: 100%;
}

.snackbar-menu-section.menu-cols4 .event-item-image.rectangle-image {
    top: -370px;
    right: -173px;
    width: 520px;
    height: 720px;
}




/*============================================================= Snackbar Section End =============================================================*/


/*============================================================= Packages Section Start =============================================================*/

/* .all-packages-section {
    padding-top: 142px;
    padding-bottom: 138px;
} */

.all-packages-section-main .pricing-table {
    margin-top: 40px;
}

.all-packages-section-main .card-details strong {
    font-weight: 600;
}

.all-packages-section-main .event-box-list.packages-list .event-key-points p strong {
    line-height: 1.333333333333333;
}

.notice-text {
    margin: 40px 0;
    color: var(--light-black);
}

.notice-text p {
    color: inherit;
}

.packages-list {
    gap: 24px;
}

.packages-list .event-list-item {
    flex: 1 0 calc(33.33% - 16px);
}

.card-details {
    margin-top: 60px;
}

.card-details h2 {
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.15625;
    font-family: var(--font-Staatliches);
    font-weight: 400;
}

.red-dot-lisitng li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 12px;
}

.red-dot-lisitng ul {
    margin-top: 12px;
}

.red-dot-lisitng li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--red);
    z-index: -1;
    pointer-events: none;
}



/* =Table CSS =========================================*/


.pricing-table {
    border-radius: 18px;
    overflow: hidden;
}

table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    font-family: var(--font-Staatliches);
    font-weight: 400;
    width: 100%;
}

table th,
table td {
    padding: 15px 14px;
    line-height: 1.32;
    text-align: left;
    vertical-align: middle;
    border-top: 1px solid #D3D3D3;
    border-right: 1px solid #D3D3D3;
    text-align: center;
}

table thead th {
    vertical-align: middle;
    background-color: var(--Yellow);
    font-size: 20px;
    font-weight: 400;
}

table caption+thead tr:first-child th,
table caption+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
}

.pricing-table th:first-child {
    border: 0;
    background-color: transparent;
}


.pricing-table table thead th:nth-child(2) {
    background-color: var(--red);
    color: var(--white);
}


.pricing-table .schedule-row .feature-title-main {
    padding: 20px 14px 20px 25px;
    display: flex;
    align-items: center;
}

.pricing-table .schedule-row.has-long-text {
    min-height: 150px;
}

.feature-title-sec {
    font-size: 24px;
}

.feature-title {
    line-height: 1;
    margin-bottom: 5px;
}

.feature-note-medium {
    font-size: 0.722222em;
}

.feature-note {
    font-size: 0.611111em;
}

.pricing-table .schedule-row .schedule-row-main.has-choices .feature-title-main {
    padding: 0;
    width: 100%;
}

.pricing-table .schedule-row .schedule-row-main.has-choices .feature-title-main .feature-title-sec {
    padding: 20px 14px 20px 25px;
    flex: 1 0 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.feature-choices {
    padding-left: 26px;
    border-left: 1px solid #D3D3D3;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 0 50%;
}

.feature-choices li {
    border-bottom: 1px solid #D3D3D3;
    padding: 11px 12px;
    font-size: 18px;
}

.feature-choices li:last-child {
    border-bottom: 0;
}

.checkmark-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark-icon img {
    width: 30px;
    height: auto;
}

.pricing-table .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    padding: 23px 10px;
    min-width: 55px;
    max-width: 55px;
    background-color: var(--Yellow);
}

.pricing-table .feature-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pricing-table table tbody tr td {
    font-size: 18px;
    line-height: 1.227;
}

.pricing-table table tbody tr td:nth-child(2) {
    background-color: #fef9f0;
}

.pricing-table tr:first-child .schedule-row:first-child {
    border-top-left-radius: 16px;
}

.pricing-table tr:first-child .schedule-row .feature-icon:first-child {
    border-top-left-radius: 16px;
}

.pricing-table .schedule-row {
    padding: 0;
    /* min-width: 760px; */
    display: flex;
}

.schedule-row-main {
    display: flex;
    width: 100%;
}


.pricing-table tfoot tr td {
    font-family: var(--font-Staatliches);
    font-size: 22px;
    background-color: var(--red);
    color: #ffffff;
}

.pricing-table tfoot tr td:first-child {
    font-family: var(--font-Staatliches);
    font-size: 26px;
}

.pricing-table tfoot tr .pricing-label {
    padding: 14px 80px;
}

.pricing-table th:nth-child(2) {
    border-top-left-radius: 16px;
}

.pricing-table th:last-child {
    border-top-right-radius: 16px;
}


/*============================================================= Packages Section End =============================================================*/


/*============================================================= Party Schedule Section Start =============================================================*/

.party-schedule-section {
    color: var(--white);
}

.party-schedule-section .section-sub-title {
    color: var(--Yellow);
}

.party-schedule-section .section-title,
.party-schedule-section h3,
.party-schedule-section h4,
.party-schedule-section h5,
.party-schedule-section h6,
.party-schedule-section p,
.party-schedule-section a {
    color: inherit;
}

.faq-section-main .section-title {
    margin-bottom: 15px;
}

.main-section-title+.accordion-databox {
    margin-top: 46px;
}

.main-section-title p a {
    color: var(--black);
    text-decoration: underline;
    transition: all 350ms ease-in-out;
}

.main-section-title p a:hover {
    color: var(--Yellow);
    text-decoration: none;
}

.main-section-title+.party-schedule-section-row {
    margin-top: 60px;
}

.faq-section-main .main-section-title {
    max-width: 1129px;
    margin: 0 auto;
}

.party-schedule-section-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.party-schedule-box {
    width: calc(25% - 38px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}


.party-schedule-image {
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 141px;
    background-image: url(./assets/Images/yellow-rectangle-bg.svg);
}

.party-schedule-image img {
    width: 50px;
    height: auto;
    object-fit: cover;
}

.party-schedule-info p {
    font-weight: 600;
}

.party-schedule-info p a {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.party-schedule-info p a:hover {
    color: var(--Yellow);
    text-decoration: none;
}


/* =Accordian CSS
========================================================================================*/

.accordion-databox .accordion-row {
    background: #FEF9F0;
    border: 1px solid #D3D3D3;
    padding: 20px 50px 20px 20px;
    margin-bottom: 20px;
}

.accordion-databox .accordion-row:last-child {
    margin-bottom: 0;
}

.accordion-databox .accordion-row h5 {
    cursor: pointer;
    margin: 0;
    position: relative;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.583;
    font-family: var(--font-Staatliches);
    font-weight: 400;
}

.accordion-databox .accordion-row h5 i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Yellow);
    border-radius: 50%;
    font-size: 20px;
    color: var(--white);
    position: absolute;
    right: -40px;
    transition: all 0.3s ease-in-out;
}

.accordion-databox .accordion-row h5.open i {
    background-color: var(--red);
}

.accordion-databox .accordion-row h5.open i::before {
    content: "\f068";
}

.accordion-data {
    display: none;
    padding: 15px 0 0;
}

.accordion-data p {
    /* padding-left: 27px; */
    margin: 20px 0 0;
    color: var(--light-black);
}

.accordion-data p:first-child {
    margin-top: 0;
}

.accordion-databox .accordion-row p a {
    color: var(--light-black);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.accordion-databox .accordion-row p a:hover {
    text-decoration: none;
    color: var(--Yellow);
}

/*============================================================= Party Schedule Section End =============================================================*/


/*============================================================= Teen Adult Party Info Section Start =============================================================*/

.teen-adult-party-info-section .more-info {
    margin-top: 0;
    margin-bottom: 50px;
}

.laser-tag-info .teen-adult-party-info {
    grid-gap: 36px 24px;
}

.teen-adult-party-info-section .main-section-title {
    max-width: 1422px;
    margin: 0 auto;
}

.teen-adult-party-info-section+.event-section {
    padding-top: 0;
}

.teen-adult-party-info {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 23px;
    justify-content: center;
}

.teen-adult-party-info-row {
    background-color: var(--bg-color);
    border: 1px solid #D3D3D3;
    padding: 32px 51px 32px 21px;
    width: calc(33.33% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    position: relative;
}

.teen-adult-party-info-row::before,
.teen-adult-party-info-row::after {
    content: "";
    position: absolute;
    top: -13px;
    left: 21px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 36px solid var(--Yellow);
    background-color: transparent;
    border-radius: 0;
    transition: 0.3s all;
    pointer-events: none;
}

.teen-adult-party-info-row::before {
    left: 61px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 36px solid var(--red);
}

.teen-adult-party-info-row:hover::after,
.teen-adult-party-info-row:hover:before {
    transform: translateX(10px);
}

.teen-adult-party-info-section-main .main-section-title {
    margin-bottom: 50px;
}

.teen-adult-party-info-section.dark-bg {
    padding-bottom: 100px;
}

.teen-adult-party-info-row p {
    font-weight: 600;
    line-height: 1.3;
    color: var(--light-black);
}

.teen-adult-party-info-row p:last-child {
    margin-bottom: 0;
}

.teen-adult-party-info-row p a {
    color: inherit;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.teen-adult-party-info-row p a:hover {
    color: var(--red);
    text-decoration: none;
}


/*============================================================= Teen Adult Party Info Section End =============================================================*/


/*============================================================= Group Rate Pricing Section Start =============================================================*/

.group-rate-pricing-section-main {
    background-color: var(--bg-color);
    border: 1px solid #D3D3D3;
}

.group-rate-pricing-section-main .main-section-title {
    padding: 23px 30px;
    margin-bottom: 0;
}

.group-rate-pricing-section-main .main-section-title .section-title {
    margin-bottom: 0;
}

.group-rate-pricing-row {
    padding: 22px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-weight: 600;
    border-bottom: 1px solid #D3D3D3;
}

.group-rate-pricing-row:last-child {
    border-bottom: 0;
}

.group-rate-pricing-row:nth-child(odd) {
    background-color: var(--white);
}

.group-rate-pricing-row:first-child {
    background-color: var(--red);
    color: var(--white);
    font-family: var(--font-Staatliches);
    font-weight: 400;
    font-size: 22px;
    padding: 19px 30px;
}

.group-rate-pricing-section .more-info {
    max-width: 1135px;
    margin: 42px auto 0;
}


/*============================================================= Group Rate Pricing Section End =============================================================*/


/*============================================================= Group FAQ Section Start =============================================================*/

.main-section-title {
    margin-bottom: 50px;
    text-align: center;
}

.main-section-title .section-sub-title {
    margin-bottom: 10px;
}

.group-faq-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.group-bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 311px;
    left: 0;
    width: 100%;
    height: 869px;
    z-index: -1;
    pointer-events: none;
}

.group-faq-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D3D3D3;
}

.group-faq-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.numbers {
    /* font-family: var(--font-Staatliches); */
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
}

.group-faq-info {
    background-color: var(--bg-color);
    border: 1px solid #D3D3D3;
    padding: 40px 30px;
}

.faq-content ol {
    padding-left: 30px;
}

.faq-content ol li {
    list-style-type: auto;
    margin-bottom: 12px;
}

.faq-content ol li:last-child {
    margin-bottom: 0;
}

.faq-content ul li {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    padding-left: 32px;
}

.faq-content ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--red);
    z-index: -1;
    pointer-events: none;
}

.faq-content ul li:last-child {
    margin-bottom: 0;
}

.when-booking .numbers {
    display: none;
}

.when-booking .main-section-title {
    margin-bottom: 25px;
}

.when-booking .faq-content p strong,
.when-booking .faq-content p b {
    font-weight: 600;
}

.when-booking .faq-content ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 12px;
}

.when-booking .group-faq-info {
    padding: 41px 30px;
}

.when-booking .faq-content ul li:last-child {
    margin-bottom: 0;
}

.when-booking .faq-content ul ul {
    padding-top: 10px;
}

.group-faq-section+section {
    padding-top: 0;
}

/*============================================================= Group FAQ Section End =============================================================*/

/*============================================================= How Does It Work Section Start =============================================================*/

.custom-event-info h2 {
    margin-bottom: 20px;
}

.custom-event-info ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 12px;
}

.custom-event-info ul li:last-child {
    margin-bottom: 0;
}

.custom-event-info ul ul {
    padding-top: 10px;
}

.custom-event-info ul li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--red);
    z-index: -1;
    pointer-events: none;
}

.custom-event-content p a,
.custom-event-content ul li a {
    color: var(--light-black);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.dark-bg .custom-event-content p a,
.dark-bg .custom-event-content ul li a {
    color: var(--white);
}

.custom-event-content p a:hover,
.custom-event-content ul li a:hover {
    color: var(--Yellow);
    text-decoration: none;
}

.how-does-it-work-section-main .more-info {
    margin: 60px 0;
}

.dark-bg .step-block .section-sub-title,
.dark-bg .step-block .section-title,
.dark-bg .step-block p,
.dark-bg .step-block p a,
.dark-bg .step-block ul li a,
.dark-bg .step-block ul {
    color: var(--light-black);
}

.steps-row ul {
    display: flex;
    justify-content: center;
    gap: 70px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.line {
    position: absolute;
    z-index: 1;
    display: table;
    margin: 0 auto;
    top: calc(50% - 28px);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    height: 1px;
    background-color: var(--Yellow);
}

.steps-row ul li {
    width: 20%;
    text-align: center;
}

.steps-row p {
    font-size: 22px;
}

.steps-row span {
    display: table;
    margin: 0 auto 18px;
    font-size: 22px;
    font-weight: 600;
}

.step-icon {
    background-image: url(./assets/Images/yellow-rectangle-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 149px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.steps-row p {
    margin-top: 42px;
}

.step-block {
    background: var(--Yellow);
    background-image: url(./assets/Images/event-box-bg.jpg);
    padding: 50px 68px 56px 39px;
    margin-bottom: 0;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.step-block p a,
.step-block ul li a {
    color: var(--light-black);
    text-decoration: underline;
}

.step-block p a:hover,
.step-block ul li a:hover {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: var(--red);
}

.step-block-row {
    position: relative;
    z-index: 1;
    padding-bottom: 154px;
}

.step-block-row:last-child {
    padding-bottom: 0;
}

.step-block-row .step-number {
    font-size: 30px;
    font-family: var(--font-Staatliches);
    color: white;
    background-image: url(./assets/Images/red-rectangle-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    text-align: center;
    width: 232px;
    height: 207px;
    position: absolute;
    top: -102px;
    z-index: -1;
    left: 30px;
    padding-top: 46px;
}

.step-block ul li {
    position: relative;
    z-index: 1;
    padding-left: 32px;
    margin-bottom: 12px;
}

.step-block ul li:last-child {
    margin-bottom: 0;
}

.step-block ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--red);
    z-index: -1;
    pointer-events: none;
}

.step-block ul ul {
    padding-top: 20px;
}

.step-info p+ul {
    padding-top: 10px;
}

.step-info strong {
    font-weight: 600;
}

.step-title {
    font-size: 34px;
    font-family: var(--font-Staatliches);
    font-weight: 400;
    margin-bottom: 20px;
}

.step-info p {
    margin: 0 0 15px;
}

.packages-table table {
    width: 100%;
    border-collapse: collapse;
}

.packages-table tbody thead tr {
    border: 1px solid transparent;
}

.packages-table th,
.packages-table td {
    border: 0;
    padding: 5px 30px;
    text-align: left;
    /* font-size: 26px; */
    font-family: var(--font-Roboto);
    font-weight: 400;
}

.step-note p strong {
    font-weight: 600;
}

.packages-table th {
    background-color: var(--red);
    color: var(--white);
    font-weight: 600;
}

.packages-table tbody tr {
    border: 1px solid #d9d9d9;
    background-color: var(--bg-color);
}

.packages-table tbody tr tr:nth-child(even) {
    background-color: var(--white);
}

.step-points {
    list-style: disc;
    padding-left: 20px;
}

.step-note p {
    margin-bottom: 12px;
}

.packages-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 590px;
    width: 100%;
}

.packages-table {
    width: 100%;
}

.packages-row a {
    background-color: var(--red);
    padding: 19px 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.packages-row a:hover {
    background-color: var(--white);
    color: var(--red);
}

.packages-main-sec {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin: 20px 0;
}

.steps-blocks {
    margin-top: 158px;
}

/*============================================================= How Does It Work Section End =============================================================*/

/*============================================================= Organizations Raise Money Section Start =============================================================*/

.organizations-raise-money-section-main .more-info {
    margin-top: 50px;
}

.organizations-raise-money-section-main .more-info p {
    margin-bottom: 15px;
}

.organizations-raise-money-section-main .more-info p:last-child {
    margin-bottom: 0;
}

.organizations-raise-money-section-main .more-info p strong {
    color: var(--Yellow);
}

.organizations-raise-money-section-main .more-info p strong a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.organizations-raise-money-section-main .more-info p strong a:hover {
    color: var(--red);
}

.organizations-raise-money-section-main .section-content {
    margin-top: 30px;
}

.organizations-raise-money-section-main .main-section-title+.raise-money-row-main {
    margin-top: 73px;
}

.raise-money-row-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 24px;
    justify-content: center;
}

.raise-money-row {
    width: calc(25% - 18px);
    padding: 48px 37px 24px 20px;
    border: 1px solid var(--Yellow);
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

.dark-bg .raise-money-row {
    background-color: var(--light-black);
}

.fundraising-details {
    margin-top: 80px;
}

.fundraising-details h3 {
    font-family: var(--font-Staatliches);
    font-size: 30px;
    color: var(--Yellow);
    font-weight: 400;
}

/* .raise-money-row p {
    font-size: 22px;
} */

.raise-money-row .numbers {
    background-image: url(./assets/Images/yellow-rectangle-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 55px;
    position: absolute;
    z-index: 1;
    top: -28px;
    left: 20px;
}

.fundraising-details .fundraising-options-row h3 {
    margin-bottom: 15px;
}

.fundraising-options-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fundraising-options {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fundraising-options .fundraising-options-details {
    background-color: var(--red);
    border-radius: 16px;
    color: var(--white);
    padding: 50px 33px 69px 38px;
    height: 100%;
    background-image: url(./assets/Images/event-box-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fundraising-options-details ul,
.fundraising-options-details ul li,
.fundraising-options-details ul li a,
.fundraising-options-details p a,
.fundraising-options-details p {
    color: inherit;
    font-size: inherit;
}

.fundraising-options-details p a {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.fundraising-options-details p a:hover {
    text-decoration: none;
    color: var(--Yellow);
}

.fundraising-content+.fundraising-options-row {
    margin-top: 50px;
}

/*============================================================= Organizations Raise Money Section End =============================================================*/

/*============================================================= Go Cart Section Start =============================================================*/

.go-cart-event-section .event-item-image {
    top: -70px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
    height: auto;
}

.go-cart-event-section .event-item-image img {
    object-fit: contain;
}

.go-cart-event-section .event-list-item {
    padding: 100px 30px 30px;
    overflow: visible;
    min-height: auto;
}

.go-cart-event-section .event-item-title {
    max-width: 100%;
    width: 100%;
}

.go-cart-event-section .event-item-title::before {
    display: none;
}

.go-cart-event-section-main .event-box-list {
    padding-top: 140px;
    gap: 130px 64px;
}

.go-cart-event-section .event-list-item strong {
    color: #861619;
    font-size: var(--body-font);
}

.go-cart-event-section .event-list-item.box_theme-red strong {
    color: var(--Yellow);
}

.go-cart-event-section .event-list-item.box_theme-yellow .event-key-points p {
    color: var(--light-black);
}

.go-cart-event-section .event-item-title .event-item-title-main {
    margin-bottom: 20px;
}

/*============================================================= Go Cart Section End =============================================================*/


/*============================================================= Arcade Info Section Start =============================================================*/

.arcade-info-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.arcade-info-main p strong {
    font-weight: 600;
}

.small-section-row {
    padding: 80px 0;
}

.arcade-images-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.arcade-image {
    width: calc(25% - 18px);
}

.arcade-image .rectangle-image {
    width: 280px;
    height: 240px;
}

.arcade-image .rectangle-image::before {
    background-image: url(./assets/Images/red-border-rectangle.png);
}

.main-section-title+.arcade-images-row {
    padding-top: 15px;
}

.arcade-info-main .main-section-title+.more-info {
    margin-top: 106px;
}

.arcade-info-main .arcade-images-row+.more-info {
    margin-top: 60px;
}

.arcade-info-main .more-info {
    margin-top: 0;
}


/*============================================================= Arcade Info Section End =============================================================*/

/*============================================================= Laser Tag Section Start =============================================================*/

.event-section.powerup-mode-section {
    padding: 100px 0;
}

.powerup-mode-section .event-item-title-main {
    margin-bottom: 6px;
}

.powerup-mode-section .more-info p strong {
    font-weight: 600;
}

.powerup-mode-section .event-box-list {
    gap: 24px;
}

.powerup-mode-section .event-list-item .event-key-points p {
    margin-bottom: 17px;
}

.powerup-mode-section .event-list-item .event-key-points p:last-child {
    margin-bottom: 0;
}

.powerup-mode-section .event-list-item.box_theme-red .event-key-points p strong {
    color: var(--Yellow);
}

/*============================================================= Laser Tag Section End =============================================================*/

/*============================================================= Pricing Section Start =============================================================*/

.primary-text {
    color: var(--red);
}

.pricing-section {
    padding-top: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.main-section-title+.pricing-main-sec.top-rectangle {
    margin-top: 160px;
}

.pricing-section .top-rectangle::before {
    top: -80px;
}

.pricing-wrapper table {
    background-color: var(--white);
    font-family: var(--font-Roboto);
}

.pricing-wrapper table thead th {
    background-color: var(--red);
    color: var(--white);
    font-family: var(--font-Staatliches);
    border: 0;
    width: 33.33%;
    line-height: 1.425;
    padding: 7px 14px;
}

.pricing-wrapper table thead th:first-child {
    border-top-left-radius: 16px;
}

.pricing-wrapper table thead th:last-child {
    border-top-right-radius: 16px;
}

.pricing-wrapper table td {
    border: 1px solid #dedede;
    vertical-align: top;
    text-align: left;
    padding: 30px;
}

.pricing-wrapper tr td:nth-child(2) {
    background-color: var(--bg-color);
}

.pricing-wrapper ul {
    text-align: left;
}

.pricing-wrapper strong em {
    color: var(--red);
}

.pricing-wrapper a {
    color: var(--red);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.pricing-wrapper a:hover {
    text-decoration: none;
    color: var(--Yellow);
}

.pricing-wrapper h6 {
    font-size: 20px;
    color: var(--red);
    font-family: var(--font-Staatliches);
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.pricing-wrapper ul ul {
    padding-top: 20px;
    padding-bottom: 10px;
}

.pricing-wrapper ul li {
    position: relative;
    z-index: 1;
    padding-left: 36px;
    margin-bottom: 20px;
}

.pricing-wrapper ul li:last-child {
    margin-bottom: 0;
}

.pricing-wrapper ul li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 20px solid var(--Yellow);
}

.pricing-wrapper ul+p {
    padding-top: 25px;
    margin-bottom: 25px;
}

.pricing-wrapper ul+ul {
    padding-top: 30px;
}

.callout {
    margin-top: 32px;
    text-align: center;
}

.pricing-wrapper .section-button a {
    padding: 12px 15px;
    border: 1px solid var(--red);
    color: var(--red);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-Staatliches);
    text-decoration: none;
    font-weight: 400;
}

.pricing-wrapper .section-button a:hover {
    background-color: var(--red);
    color: var(--white);
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    max-height: 750px;
    overflow-y: auto;
    background: #fff;
    max-width: 600px;
    border-radius: 10px;
}

.modal.open {
    display: flex;
}

.modal-dialog {
    width: 100%;
    position: relative;
    padding: 260px 30px 30px;
}

.modal-dialog strong {
    color: var(--red);
}

.modal-dialog p+ul {
    margin-bottom: 20px;
}

.modal-dialog ul li a,
.modal-dialog p a {
    color: var(--light-black);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.modal-dialog ul li a:hover,
.modal-dialog p a:hover {
    color: var(--red);
    text-decoration: none;
}

.modal-dialog ul li {
    position: relative;
    z-index: 1;
    padding-left: 30px;
    margin-bottom: 12px;
}

.modal-dialog ul li:last-child {
    margin-bottom: 0;
}

.modal-dialog ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    background-color: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}


.modal-dialog .event-item-title {
    max-width: 100%;
}

.close-modal-btn {
    position: absolute;
    width: 52px;
    height: 52px;
    left: auto;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 26px;
    z-index: 1;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

.close-modal-btn:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.modal-overlay {
    position: relative;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

.modal-overlay::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
}

.modal-content p:last-of-type {
    margin-bottom: 0;
}

.snackbar-menu-section .modal .event-item-image.rectangle-image {
    width: 468px;
    height: 393px;
    top: -160px;
}

.modal .event-item-title::before {
    display: none;
}

.modal .event-item-title .event-item-title-main {
    font-size: 30px;
}

.modal .event-item-title h6 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--red);
    color: var(--red);
    margin-top: 20px;
}

.modal .teen-adult-party-info {
    grid-gap: 32px 16px;
}

.modal .teen-adult-party-info .teen-adult-party-info-row {
    width: calc(50% - 8px);
    padding: 32px;
}

.modal .teen-adult-party-info .teen-adult-party-info-row p {
    font-weight: 400;
}

.modal .teen-adult-party-info .teen-adult-party-info-row strong {
    color: var(--light-black);
    font-weight: 600;
}

.popup_more_info {
    margin-top: 32px;
}

.current-offering-section .main-section-title .section-title {
    margin-bottom: 15px;
}


/*============================================================= Pricing Section End =============================================================*/

/*============================================================= Contact Us Section Start =============================================================*/

.gform_legacy_markup_wrapper li.gfield.gfield_error,
.gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.gform_legacy_markup_wrapper .validation_message {
    font-size: 14px !important;
}

.contact-us-section {
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
    background-position: top center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-us-section .trianle-bg-img {
    position: absolute;
    top: -1140px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
    pointer-events: none;
}

.contact-info-row {
    position: relative;
    z-index: 1;
    padding: 100px 20px 30px;
    border: 1px solid #D3D3D3;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-icon {
    background-image: url(./assets/Images/yellow-rectangle-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    height: 119px;
    position: absolute;
    z-index: 1;
    top: -62px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.contact-icon img {
    width: 38px;
}

.main-section-title+.contact-info-sec {
    margin-top: 100px;
}

.contact-info h3 {
    margin-bottom: 5px;
    font-size: 22px;
    font-family: var(--font-Staatliches);
    font-weight: 400;
}

.contact-info-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center
}

.contact-info-row {
    width: calc(25% - 24px);
}

.contact-info.email {
    font-size: calc(var(--body-font) - 2px);
}

.contact-info.directions p {
    font-weight: 600;
    line-height: 1.23;
}

.contact-info.directions p a {
    text-decoration: underline;
}

.contact-info.directions p a:hover {
    text-decoration: none;
}

.contact-info-row a {
    color: var(--light-black);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.contact-info-row address {
    font-style: normal;
    font-weight: 600;
    line-height: 1.23;
}

.contact-info-row a:hover {
    color: var(--Yellow);
}

.contact-main-sec {
    padding-top: 120px;
}

.contact-form-sec .main-section-title {
    margin-bottom: 75px;
}

.contact-form-sec .main-section-title .small-title,
.contact-form-sec .main-section-title .section-title {
    font-weight: 400;
    font-family: var(--font-Staatliches);
}

.contact-form-sec .gfield--input-type-radio label.gfield_label.gform-field-label {
    font-weight: 600 !important;
}

.contact-form-row {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-form-map,
.contact-form {
    width: 50%;
}

.contact-form label.gform-field-label.gform-field-label--type-sub,
.contact-form .gfield_label {
    font-size: 18px !important;
    margin-bottom: 8px;
    line-height: 150% !important;
    font-weight: 500 !important;
}


.contact-form .gfield--type-radio .gfield_label {
    font-size: 20px !important;
}

.gchoice_select_all,
.gform_legacy_markup_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label,
.gform_legacy_markup_wrapper ul.gfield_radio li input[type=radio]:checked+label {
    font-weight: 400 !important;
}

.contact-form .ginput_container_radio .gfield_radio {
    display: flex;
    justify-content: space-between;
    width: 100% !important;
}

.contact-form .ginput_container_radio .gfield_radio li {
    margin-bottom: 0 !important;
}

.contact-form .ginput_container_radio .gfield_radio li input[type=radio] {
    margin-top: 0 !important;
    min-height: auto !important;
    border-radius: 50%;
}

.contact-form .gform_fields .gfield {
    margin-bottom: 13px;
}

.contact-form .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding-right: 0 !important;
    margin-top: 0 !important;
}

.contact-form .gform_heading {
    display: none;
}

.contact-form .ginput_container_textarea textarea {
    height: 120px !important;
}

.join-our-email-club .contact-form input {
    width: 100% !important;
}

.join-our-email-club .contact-form .gform_fields .gfield {
    margin-bottom: 0;
}

.join-our-email-club .contact-form {
    padding-bottom: 0;
    width: 100%;
}

.contact-form input {
    min-height: 60px;
    border: 1px solid #D9D9D9;
    outline: 0;
    border-radius: 0;
    padding: 10px 20px !important;
    margin-bottom: 0 !important;
}

.contact-form textarea {
    border: 1px solid #D9D9D9;
    outline: 0;
    border-radius: 0;
    padding: 10px 20px !important;
    margin-bottom: 0 !important;
}

.contact-form textarea:focus,
.contact-form input:focus {
    border-color: var(--Yellow);
}

.contact-form-map {
    background-color: var(--bg-color);
    border: 1px solid #d9d9d9;
}

.contact-form {
    padding: 0 0 30px;
}

.contact-form .gform_legacy_markup_wrapper {
    margin-bottom: 0;
    margin-top: 0;
}

.contact-form .gform-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    margin-top: 28px !important;
}

.submit_button {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.submit_button .gform_button {
    border-top: 0 !important;
    margin-bottom: 0;
    border: 0;
    cursor: pointer;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 21px 71px 20px 40px !important;
    display: inline-block;
    transition: 0.3s all;
    margin-right: 0 !important;
    border-radius: 8px !important;
    font-size: 20px !important;
    font-weight: 400;
}

.gform-theme-button::before,
.gform-theme-button::after {
    display: none;
}

.gform-page-footer .submit_button {
    position: relative;
    z-index: 1;
}

.submit_button::before {
    content: '';
    width: 15px;
    height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/04/yellow-arrow.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.submit_button:hover::before {
    transform: translateX(5px) translateY(-50%);
    transition: 0.3s all;
}

.contact-main-sec {
    position: relative;
    z-index: 1;
}

.contact-main-sec .bg-img {
    position: absolute;
    bottom: -145px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.corporate-private-party-inquiry-section .contact-main-sec {
    padding-top: 0;
}

.corporate-private-party-inquiry-section .contact-form-row .contact-form {
    background-color: var(--bg-color);
    padding: 20px 20px 30px;
    width: 100%;
    border: 1px solid #D3D3D3;
}

.corporate-private-party-inquiry-section .contact-form .ginput_container_radio .gfield_radio {
    justify-content: flex-start;
    gap: 30px;
}

.corporate-private-party-inquiry-section .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gf_left_half {
    padding-right: 8px !important;
}

.corporate-private-party-inquiry-section .contact-form-row .contact-form .gf_right_half {
    padding-left: 8px;
}


.mini-golf-section .contact-form-row .contact-form {
    width: 50%;
}

.mini-golf-section .contact-form-row .contact-form p a {
    color: var(--light-black);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.mini-golf-section .contact-form-row .contact-form p a:hover {
    text-decoration: none;
    color: var(--Yellow);
}

.mini-golf-section .contact-form .gform_fields .gfield {
    margin-bottom: 0;
}

.mini-golf-section .gform_wrapper.gravity-theme .ginput_complex span {
    margin-bottom: 0;
}

/*============================================================= Contact Us Section End =============================================================*/


/*============================================================= 404 Section Start =============================================================*/

.error-404 {
    text-align: center;
}

.error-404 .widget {
    margin-top: 20px;
}

.error-404 .page-header .page-title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 40px;
}

.error-404 .page-header {
    margin-bottom: 30px;
}

.error-404 .page-header h3 {
    margin-bottom: 20px;
}

.error-404 .page-content p {
    margin-bottom: 30px;
}

/* Search Form Styling */
/* 404 Search Form Styled Like Widget Search */
.error-404 .search-form {
    display: inline-flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
    margin: 0 auto;
    /* center form */
}

.error-404 .search-form .search-field {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.error-404 .search-form .search-field::placeholder {
    color: #888;
}

.error-404 .search-form .search-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-Staatliches);
}

.error-404 .search-form .search-submit:hover {
    background: var(--Yellow);
    color: var(--black);
}

.search-form label {
    width: 100%;
}

/*============================================================= 404 Section End =============================================================*/


/* --- Search Results Heading --- */

.search-results article {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.search-results article:last-child {
    border-bottom: none;
}

.search-results h2.entry-title {
    font-size: 24px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.search-results h2.entry-title a {
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease-in-out;
}

.search-results h2.entry-title a:hover {
    color: var(--red);
}

/* --- Pagination (Posts Navigation) --- */
.posts-navigation {
    text-align: center;
    margin: 40px 0;
}

.posts-navigation .nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.posts-navigation .nav-links a {
    display: inline-block;
    padding: 10px 18px;
    font-size: 16px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--black);
}

.posts-navigation .nav-links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.posts-navigation .nav-previous a::before {
    content: "← ";
}

.posts-navigation .nav-next a::after {
    content: " →";
}

/* --- Search Widget --- */


.no-results.not-found {
    text-align: center;
}

.widget_search {
    margin: 40px auto 0;
    text-align: center;
}

.widget_search .search-form {
    display: inline-flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    justify-content: space-between;
}

.widget_search .search-field {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-size: 16px;
    outline: none;
    width: 100%;
}

.widget_search .search-field::placeholder {
    color: #888;
}

.widget_search .search-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-Staatliches);
}

.widget_search .search-submit:hover {
    background: var(--Yellow);
    color: var(--black);
}

/*============================================================= Responsive Css start =============================================================*/


@media only screen and (min-width:1921px) {


    .home-hero-banner-video {
        right: 100px;
    }

    .inner-hero-banner .home-hero-banner-video {
        right: 200px;
    }
}


@media only screen and (max-width:1800px) {
    .home-hero-banner-video {
        bottom: -368px;
        width: 1150px;
        height: 984px;
    }
}

@media only screen and (max-width:1600px) {
    .slider-item-sub-title {
        font-size: 48px;
        line-height: 1;
    }

    .slider-item-title {
        font-size: 50px;
    }

    .slider-item-content p {
        font-size: 24px;
    }

    .slider-item-button {
        margin-top: 30px;
    }

    section.inner-hero-banner .slider-item-button {
        margin-top: 30px;
    }

    .home-hero-slider {
        max-width: 470px;
    }

    .inner-hero {
        max-width: 470px;
    }

    .home-hero-banner-video {
        position: absolute;
        bottom: -388px;
        width: 1216px;
        height: 994px;
    }

    .text-slide-main {
        padding: 25px 0;
    }

    section.attractions-section {
        padding: 100px 0;
    }

    .attractions-box-list {
        margin-top: 40px;
    }

    .attractions-item-title-main {
        line-height: 1.2;
        max-width: 210px;
        min-width: 210px;
        min-height: 140px;
    }

    .attractions-item-title {
        margin-top: -110px;
    }

    .attractions-box-list {
        gap: 40px 40px;
    }

    section.event-section {
        padding: 120px 0 120px;
    }

    .event-item-title {
        max-width: 150px;
    }

    .testimonials-main-inner:before {
        width: 68px;
        height: 54px;
        top: -80px;
    }

    .testimonials-item-content p {
        line-height: 1.4;
        font-size: 20px;
    }

    section.moments-section {
        padding: 120px 0 120px;
    }

    footer#colophon {
        padding: 80px 0;
    }

    .outside-attractions-section .attractions-section-main .section-title {
        font-size: 30px;
    }
}

@media only screen and (max-width:1440px) {

    .header-logo {
        width: 200px;
        left: 0;
        top: -50px;
    }

    .home-hero-banner-video {
        position: absolute;
        bottom: -295px;
        right: -150px;
        width: 995px;
        height: 860px;
    }

    .inner-hero-banner .home-hero-banner-video {
        bottom: -375px;
        width: 980px;
        height: 860px;
        right: -150px;
    }

    section.inner-hero-banner,
    section.home-hero-banner {
        min-height: 600px;
    }

    .slider-item-sub-title {
        font-size: 50px;
    }

    .slider-item-content p {
        font-size: 22px;
    }

    .header-bottom-row-main ul#menu-header-menu .menu-item a {
        padding: 20px 33px 20px 0;
    }

    .header-social {
        position: relative;
        padding: 16px 0;
    }

    section.attractions-section {
        padding: 80px 0;
    }

    section.event-section {
        padding: 80px 0;
    }

    .events-inner-section .section-sub-title {
        font-size: 28px;
    }

    .events-inner-section .event-item-image {
        width: 700px;
    }

    .more-info {
        margin-top: 50px;
    }

    .menu-cols4 .more-info {
        margin-top: 30px;
    }

    .events-inner-section .event-list-item.box_theme-red {
        padding: 50px 40px 60px;
    }

    .snackbar-menu-section .event-box-list .event-list-item {
        padding: 289px 40px 40px;
        padding-right: 40px;
    }

    .event-key-points p strong,
    .event-key-points b {
        font-size: 22px;
    }

    .events-inner-section .event-list-item .event-key-points ul li {
        font-size: 24px;
    }

    .events-inner-section .event-list-item.box_theme-yellow {
        padding-right: 50px;
    }

    section.moments-section {
        padding: 100px 0 100px;
    }

    .footer-cnt-box {
        padding: 70px 30px 40px;
        margin-top: 40px;
    }

    .footer-logo {
        max-width: 310px;
    }

    .footer-cnt-icon {
        width: 150px;
        left: 50%;
        transform: translateX(-50%);
        top: -50px;
    }

    .footer-cnt-title {
        margin-bottom: 15px;
    }

    .slider-item-content {
        margin-top: 15px;
    }

    .gform_page .gform_page_fields {
        margin-top: 60px;
    }

    .gform_page .gsection_title {
        font-size: 30px !important;
    }

    .employment-application-form .gform_legacy_markup_wrapper .gf_step span.gf_step_number {
        font-size: 30px;
    }

    #gform_fields_4 .gfield.gsection .gsection_description {
        font-size: 18px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h2 {
        font-size: 34px;
        margin: 0 auto 20px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h3 {
        font-size: 18px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul,
    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol {
        margin-top: 40px !important;
        font-size: 18px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting {
        padding: 40px;
    }


    .section-button {
        margin-top: 30px;
    }

    .about-beverage-section {
        padding: 100px 0;
    }

    .event-list-item.no-image {
        padding: 70px 30px 30px;
    }

    .dark-bg .about-beverage-info ul li::before {
        top: 6px;
    }

    .card-details {
        margin-top: 50px;
    }

    .card-details h2 {
        margin-bottom: 20px;
    }

    .section-row {
        padding: 100px 0;
    }

    .employment-application-section {
        padding-top: 30px;
    }

    .all-packages-section {
        padding: 100px 0;
    }

    .about-right-image-sec .about-beverage-info {
        max-width: 500px;
        width: 100%;
    }

    .group-rate-pricing-row:first-child {
        padding: 15px 20px;
    }

    .group-rate-pricing-section-main .main-section-title {
        padding: 20px;
    }

    .group-rate-pricing-row {
        padding: 20px;
    }

    .event-section .section-title {
        font-size: 44px;
    }

    .steps-row p {
        margin-top: 20px;
    }

    .line {
        top: calc(50% - 15px);
    }

    .step-title {
        font-size: 38px;
    }

    .packages-table th,
    .packages-table td {
        padding: 5px 20px;
    }

    .step-block {
        padding: 50px 40px;
    }

    .about-beverage-section .main-section-title .section-title,
    .when-booking .main-section-title .section-title {
        margin-bottom: 10px;
    }

    .fundraising-details {
        margin-top: 100px;
    }

    .fundraising-details h3 {
        margin-bottom: 30px;
    }

    .fundraising-options-row {
        gap: 50px;
    }

    .arcade-info-main .main-section-title+.more-info {
        margin-top: 60px;
    }

    .arcade-info-main .arcade-images-row+.more-info {
        margin-top: 60px;
    }

    .main-section-title+.arcade-images-row {
        padding-top: 0;
    }

    .teen-adult-party-info-section .more-info {
        margin-bottom: 30px;
    }

    .event-section.powerup-mode-section {
        padding: 100px 0;
    }

    .event-section.powerup-mode-section .more-info {
        margin-top: 80px;
    }

    .pricing-wrapper ul+ul {
        padding-top: 20px;
    }

    .pricing-wrapper .section-button a {
        font-size: 16px;
    }

    .pricing-wrapper h6 {
        font-size: 18px;
    }

    .pricing-section {
        padding-top: 150px;
    }

    .pricing-wrapper table td {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 148px;
        height: 129px;
        top: -65px;
    }

    .contact-info-row {
        padding: 80px 20px 30px;
    }

    .contact-form-sec .main-section-title {
        margin-bottom: 50px;
    }

    .contact-form-row {
        gap: 60px;
    }

    .contact-main-sec {
        padding-top: 100px;
    }

    .plan-event-main-page.events-inner-section .event-section .section-title {
        font-size: 54px;
    }

    .small-section-row {
        padding: 60px 0;
    }

    .pricing-wrapper ul+p {
        padding-top: 25px;
        margin-bottom: 25px;
    }

    .teen-adult-party-info-section.dark-bg {
        padding-bottom: 100px;
    }

}

@media only screen and (max-width:1360px) {

    .header-logo {
        width: 200px;
    }

    .header-bottom-row-main ul#menu-header-menu .menu-item.menu-item-has-children a {
        padding-right: 30px;
    }


    .inner-hero-banner .home-hero-banner-video {
        bottom: -250px;
        width: 880px;
        height: 773px;
    }

    .social-icon {
        padding-left: 60px;
    }

    .header-phone {
        padding-left: 50px;
        padding-right: 10px;
    }

    .header-top-cnt {
        padding-right: 20px;
    }

    .header-top-cnt p a:after {
        top: 8px;
    }

    .header-top-cnt p {
        padding-right: 25px;
        padding-left: 35px;
    }

    .header-top-cnt p a {
        padding-right: 25px;
    }

    .header-bottom-row-main ul#menu-header-menu {
        gap: 10px;
    }

    .header-bottom-row-main ul#menu-header-menu .menu-item a {
        padding: 20px 20px 20px 0px;
    }

    .home-hero-banner-video {
        bottom: -240px;
        right: -190px;
        width: 950px;
        height: 763px;
    }

    .text-slide-main-inner p {
        font-size: 20px;
        padding: 0 45px 0 28px;
    }

    .slider-item-title {
        font-size: 40px;
    }

    .packages-list {
        gap: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-sub-title {
        font-size: 30px;
    }

    .moments-section-galler {
        margin-top: 50px;
    }

    .moments-section-button {
        margin-top: 60px;
    }

    .testimonials-slider {
        max-width: 600px;
    }

    body div p {
        margin-bottom: 20px;
    }

    .about-beverage-row {
        gap: 40px;
    }

    .events-inner-section .section-sub-title {
        font-size: 24px;
    }

    .events-inner-section .section-title {
        font-size: 34px;
    }

    .events-inner-section .event-item-image {
        width: 650px;
        bottom: -220px;
    }

    .events-inner-section .event-list-item.box_theme-yellow .event-item-title {
        max-width: 45%;
        width: 100%;
    }

    .plan-event-main-page.events-inner-section .event-list-item.box_theme-yellow .event-item-title {
        max-width: 45%;
        width: 100%;
    }

    .events-inner-section .event-list-item .event-key-points ul li {
        padding-left: 45px;
    }

    .events-inner-section .event-list-item .event-key-points ul li {
        font-size: 22px;
    }

    .events-inner-section .event-list-item .event-key-points ul li::before {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 26px;
        background-color: transparent;
        top: 15px;
    }

    .snackbar-menu-section .event-box-list .event-list-item {
        padding: 285px 30px 30px;
        padding-right: 30px;
    }

    .snackbar-menu-section .event-list-item.box_theme-yellow .event-item-title {
        max-width: 100%;
    }

    .event-key-points p strong,
    .event-key-points b {
        font-size: 20px;
    }

    .event-key-points p {
        font-size: 18px;
    }

    .event-item-title::before {
        width: 65px;
        height: 20px;
        top: -30px;
    }

    .snackbar-menu-section .event-item-title .event-item-title-main {
        max-width: 100%;
    }

    .feature-choices li {
        font-size: 18px;
    }

    .checkmark-icon img {
        width: 30px;
    }

    table thead th {
        font-size: 20px;
    }

    .pricing-table tfoot tr td {
        font-size: 18px;
    }

    .pricing-table tfoot tr .pricing-label {
        padding: 14px 20px 14px 70px;
    }

    .pricing-table tfoot tr .pricing-values {
        padding: 20px 14px;
    }

    .pricing-table .schedule-row .feature-title-main.has-choices .feature-title-sec {
        padding: 20px 15px;
    }

    .pricing-table .schedule-row .feature-title-main {
        padding: 20px 15px;
    }

    .pricing-table tfoot tr td:first-child {
        font-size: 20px;
    }

    .event-key-points p {
        margin-top: 10px;
    }

    .main-section-title+.party-schedule-section-row {
        margin-top: 50px;
    }

    .party-schedule-section-row {
        grid-gap: 40px;
    }

    .party-schedule-box {
        width: calc(25% - 30px);
    }

    .party-schedule-image {
        margin-bottom: 30px;
    }

    .testimonials-main {
        padding: 160px 0 60px;
    }

    .group-bg-img {
        bottom: 250px;
    }

    .group-faq-row {
        gap: 20px;
    }

    .event-section .section-title {
        font-size: 40px;
    }

    .about-beverage-image {
        width: 500px;
    }

    .packages-main-sec {
        gap: 50px;
    }

    .packages-table th,
    .packages-table td {
        padding: 5px 20px;
    }

    .fundraising-details h3 {
        font-size: 30px;
    }

    .fundraising-details {
        margin-top: 60px;
    }

    .fundraising-options .fundraising-options-details {
        padding: 50px 30px;
    }

    .go-cart-event-section .event-item-image {
        max-width: 300px;
        top: -50px;
    }

    .go-cart-event-section .event-list-item {
        padding: 120px 40px 40px;
    }

    .go-cart-event-section-main .event-box-list {
        padding-top: 60px;
        gap: 80px 64px;
    }

    .arcade-image .rectangle-image {
        width: 276px;
        height: 234px;
    }

    .teen-adult-party-info-section .more-info {
        margin-bottom: 30px;
    }

    .event-section.powerup-mode-section .more-info {
        margin-top: 50px;
    }

    .powerup-mode-section .event-list-item .event-key-points p {
        margin-bottom: 10px;
    }

    .modal .event-item-title .event-item-title-main {
        font-size: 34px;
    }

    .modal .event-item-title h6 {
        font-size: 18px;
        margin-top: 25px;
    }

    .modal .teen-adult-party-info .teen-adult-party-info-row {
        min-height: auto;
        padding: 30px 20px;
    }

    .contact-icon {
        width: 138px;
        height: 119px;
        top: -60px;
    }

    .contact-icon img {
        width: 30px;
        height: auto;
        object-fit: cover;
    }

    .contact-main-sec {
        padding-top: 80px;
    }

    .contact-form-row {
        gap: 40px;
    }

    .pricing-table table tbody tr td {
        font-size: 16px;
    }

    .snackbar-menu-section.menu-cols3 .event-item-image.rectangle-image {
        top: -240px;
        width: 584px;
        height: 500px;
    }
}


@media only screen and (max-width:1200px) {

    .header-logo {
        width: 180px;
    }

    .home-hero-banner-video {
        width: 880px;
        height: 730px;
        bottom: -210px;
    }

    .inner-hero-banner .home-hero-banner-video {
        bottom: -290px;
        width: 800px;
        height: 643px;
        right: -70px;
    }

    .snackbar-menu-section .event-item-image.rectangle-image {
        right: -125px;
    }

    .social-icon {
        padding-left: 40px;
    }

    .social-icon a {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    p.social-icon-title {
        margin-right: 15px;
    }

    .header-phone {
        padding-left: 40px;
    }

    .header-top-cnt {
        padding-right: 10px;
    }

    a.event-list-item {
        padding: 20px 20px;
        min-height: 320px;
        width: calc(50% - 15px);
    }

    .event-box-list {
        gap: 30px;
    }

    .packages-list {
        gap: 24px;
    }

    .calendar-header-cell {
        font-size: 18px;
    }

    .calendar-cell {
        font-size: 24px;
        padding: 15px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting {
        padding: 30px 30px;
    }

    .events-inner-section .event-box-list {
        gap: 40px;
    }

    .plan-event-main-page.events-inner-section .event-box-list {
        gap: 40px;
    }

    .events-inner-section .event-list-item.box_theme-red {
        padding: 40px;
    }

    .events-inner-section .event-list-item.box_theme-red .event-item-title-main {
        margin-bottom: 10px;
    }

    .events-inner-section .event-item-image {
        width: 560px;
        bottom: -210px;
    }

    .snackbar-menu-section .event-box-list {
        gap: 24px;
        align-items: stretch;
    }

    .snackbar-menu-section .event-box-list .event-list-item {
        padding: 285px 30px 30px;
        padding-right: 30px;
    }

    .snackbar-menu-section .event-box-list .event-list-item {
        flex: 1 0 calc(50% - 12px);
        min-height: 550px;
        height: auto;
    }

    .snackbar-menu-section .event-box-list .event-list-item.no-image {
        min-height: auto;
    }

    .menu-cols4 .event-box-list .event-list-item {
        min-height: auto;
    }

    .snackbar-menu-section.menu-cols4 .event-item-image.rectangle-image {
        top: -300px;
        right: 0px;
        width: 460px;
        height: 600px;
    }

    .snackbar-menu-section .event-section-main {
        align-items: flex-start;
    }

    .testimonials-item-content p {
        font-size: 18px;
    }

    .testimonials-slider {
        margin-top: 20px;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .testimonials-slider-rating {
        margin-bottom: 20px;
    }

    .teen-adult-party-info-row {
        padding: 30px 20px;
    }

    .step-icon {
        width: 148px;
        height: 129px;
    }

    .step-icon img {
        width: 44px;
        height: auto;
        object-fit: cover;
    }

    .steps-row p {
        font-size: 20px;
    }

    .step-title {
        font-size: 34px;
    }

    .packages-table th,
    .packages-table td {
        padding: 5px 15px;
    }

    .when-booking .faq-content ul li::before {
        top: 6px;
    }

    .about-beverage-content ul li::before {
        top: 6px;
    }

    .raise-money-row {
        padding: 40px 20px 30px;
    }

    .organizations-raise-money-section-main .more-info {
        margin-top: 40px;
    }

    .arcade-image .rectangle-image {
        width: 246px;
        height: 204px;
    }

    .snackbar-menu-section .modal .event-item-image.rectangle-image {
        width: 528px;
        height: 413px;
        top: -140px;
        right: -90px;
    }

    .modal-dialog {
        padding: 280px 30px 30px;
    }

    .modal .event-item-title .event-item-title-main {
        font-size: 24px;
    }

    .contact-info-sec {
        gap: 20px;
    }

    .contact-info-row a {
        font-size: 16px;
    }

    .contact-info-row {
        width: calc(25% - 15px);
    }

    .contact-icon {
        width: 128px;
        height: 109px;
        top: -55px;
    }

    .snackbar-menu-section.menu-cols3 .event-item-image.rectangle-image {
        top: -220px;
        width: 560px;
        height: 480px;
        left: -30px;
    }

    section.inner-hero-banner,
    section.home-hero-banner {
        min-height: 400px;
    }
}

@media only screen and (max-width:1150px) {
    .inner-hero-banner .home-hero-banner-video {
        bottom: -280px;
        width: 780px;
        height: 623px;
        right: -70px;
    }
}


@media only screen and (max-width:1100px) {

    :root {
        --body-font: 16px;
    }

    .home-hero-banner-video {
        bottom: -210px;
        right: -180px;
        width: 869px;
        height: 730px;
    }

    .inner-hero-banner .home-hero-banner-video {
        bottom: -260px;
        width: 700px;
        height: 600px;
        right: -50px;
    }

    .social-icon:before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
        /* For Safari */
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
    }

    .header-phone:before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
        /* For Safari */
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
    }

    .header-phone a {
        padding-left: 22px;
    }

    .header-phone {
        padding-left: 30px;
    }

    .social-icon {
        padding-left: 30px;
    }

    .header-logo {
        width: 170px;
        top: -40px;
    }

    .header-bottom-row {
        min-height: auto;
    }

    .header-bottom-row-main ul#menu-header-menu .menu-item a {
        padding: 20px 15px 20px 0;
    }

    .footer-logo {
        width: 260px;
    }

    footer#colophon {
        padding: 70px 0;
    }

    .attractions-item-title-main {
        max-width: 180px;
        min-width: 180px;
    }

    .attractions-item-title {
        margin-top: -80px;
    }

    a.attractions-list-item {
        width: calc(33.33% - 20px);
    }

    .attractions-box-list {
        gap: 40px 20px;
    }

    .calendar-cell {
        min-height: 150px;
    }

    .outside-attractions-section {
        padding: 140px 0 100px;
    }

    .top-rectangle::before {
        width: 200px;
        border-radius: 20px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h2 {
        font-size: 26px;
        margin: 0 auto 20px;
    }

    .gform_page .gsection_title {
        font-size: 26px !important;
    }

    #gform_fields_4 .gfield.gsection h2 {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul,
    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol {
        margin-top: 20px !important;
        font-size: 18px;
    }

    #gform_fields_4 .gfield.gsection .gsection_description {
        font-size: 16px;
        padding: 0;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h3 {
        font-size: 16px;
    }

    #gform_page_4_2 .gform-field-label,
    #gform_page_4_2 .gfield_label {
        font-size: 14px;
    }

    .gform_page .gform_page_fields {
        padding: 20px 0 30px 20px;
    }

    #gform_page_4_2 #gform_fields_4_2>li {
        padding-right: 20px;
    }

    #gform_page_4_2 #gform_fields_4_2>li .gform-grid-col {
        padding-right: 20px;
    }

    #field_4_22 label {
        margin-bottom: 0;
    }

    .gform_legacy_markup_wrapper .top_label .gsection_description {
        font-size: 14px;
    }

    .section-button {
        margin-top: 20px;
    }

    .events-inner-section .event-item-image {
        width: 500px;
        bottom: -150px;
    }

    .snackbar-menu-section .event-box-list .event-list-item {
        min-height: 580px;
        height: auto;
    }

    .snackbar-menu-section .event-box-list .event-list-item.no-image {
        min-height: auto;
    }

    .menu-cols4 .event-box-list .event-list-item {
        min-height: auto;
    }

    .accordion-databox .accordion-row {
        padding: 30px 60px 30px 20px;
    }

    .accordion-databox .accordion-row {
        margin-bottom: 15px;
    }

    .party-schedule-image {
        width: 140px;
        height: 120px;
    }

    .party-schedule-image img {
        width: 44px;
    }

    .accordion-data p {
        padding-left: 0;
    }

    .testimonials-main {
        padding: 120px 0 40px;
    }

    .testimonials-main .section-sub-title {
        font-size: 20px;
    }

    .testimonials-main .section-title {
        font-size: 24px;
    }

    .testimonials-main-inner:before {
        width: 58px;
        height: 44px;
        top: -60px;
    }

    .testimonials-item-author-name {
        font-size: 24px;
    }

    .testimonials-item-author-designation {
        font-size: 18px;
    }

    .numbers {
        font-size: 30px;
    }

    .group-bg-img {
        bottom: 150px;
    }

    .packages-row {
        gap: 20px;
    }

    .packages-main-sec {
        margin: 20px 0;
    }

    .step-block {
        border-radius: 10px;
    }

    .step-block-row .step-number {
        font-size: 24px;
        width: 192px;
        height: 167px;
        top: -90px;
    }

    .step-block-row {
        padding-bottom: 130px;
    }

    .step-block ul li::before {
        top: 5px;
    }

    .fundraising-options .fundraising-options-details {
        padding: 40px 20px;
    }

    .fundraising-details h3 {
        font-size: 28px;
    }

    .fundraising-content+.fundraising-options-row {
        margin-top: 40px;
    }

    .contact-form-row {
        gap: 30px;
    }

    .gfield--type-radio label {
        font-size: 16px !important;
    }

    .main-section-title+.contact-info-sec {
        margin-top: 80px;
    }

    .contact-info-sec {
        gap: 80px 20px;
    }

    .contact-info-row {
        width: calc(50% - 10px);
    }

    .contact-form-sec input {
        min-height: 50px;
    }

    .contact-form label.gform-field-label.gform-field-label--type-sub,
    .contact-form .gfield_label {
        font-size: 16px !important;
    }

    .contact-form {
        padding: 0;
    }

    .pricing-table table tbody tr td {
        font-size: 16px;
    }

    .about-beverage-content ol,
    .about-beverage-content ul {
        text-align: left;
    }

    .snackbar-menu-section.menu-cols3 .event-item-image.rectangle-image {
        left: auto;
    }

    .header-bottom-row-main ul#menu-header-menu .menu-item a {
        font-size: 14px;
    }

    p.social-icon-title {
        font-size: 14px;
    }

}

@media only screen and (max-width: 761px),
(min-device-width: 768px) and (max-device-width: 1023px) {
    .gform_legacy_markup_wrapper table.gfield_list tr {
        margin-bottom: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-top: 0 !important;
        border-bottom: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .gform_legacy_markup_wrapper .gfield_list td.gfield_list_cell input,
    .gform_legacy_markup_wrapper table.gfield_list td {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before,
    .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td:after {
        margin: 20px 0 10px !important;
    }

    .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td:after {
        text-align: left;
        font-size: 14px;
        color: var(--light-black);
        font-weight: 500;
    }
}

/* Hide mobile on large screens */
@media screen and (min-width: 1000px) {
    .calendar-mobile-view {
        display: none;
    }
}


@media only screen and (max-width:999px) {

    .inner-hero-banner .home-hero-banner-video {
        bottom: -220px;
        width: 650px;
        height: 550px;
        right: -70px;
    }

    .header-social {
        display: none;
    }

    .header-top-cnt {
        display: none;
    }

    .header-bottom-row-main ul#menu-header-menu {
        display: none;
    }

    .header-phone {
        padding: 13px 0 13px 35px;
        margin-left: auto;
    }

    .hamburger-menu {
        display: block;
        margin-left: auto;
    }

    .header-logo {
        width: 170px;
        top: -40px;
        z-index: 1;
    }

    section.home-hero-banner {
        padding: 100px 0 60px;
    }

    a.button:before {
        right: 20px;
    }

    section.attractions-section {
        padding: 80px 0 80px;
    }

    a.attractions-list-item {
        width: calc(50% - 20px);
    }

    .attractions-item-title {
        margin-top: -100px;
    }

    section.event-section {
        padding: 80px 0 80px;
    }

    a.event-list-item {
        padding: 20px 20px;
        min-height: 420px;
        width: 100%;
        flex: 1 0 100%;
    }

    .testimonials-section .wrapper {
        padding: 0;
    }

    .testimonials-main {
        padding: 160px 30px 80px;
    }

    .testimonials-slider {
        max-width: 480px;
    }

    .color-content p {
        margin-top: 20px;
    }

    section.moments-section {
        padding: 80px 0 80px;
    }

    .footer-logo {
        width: 240px;
    }

    .footer-cnt-box {
        padding: 70px 15px 30px;
        margin-top: 40px;
    }

    .footer-cnt-content {
        font-size: 20px;
    }

    .footer-copyright-text p {
        font-size: 18px;
        line-height: 1.4;
        max-width: 280px;
    }

    .moments-section-galler-item {
        width: calc(33% - 12px);
    }

    .moments-section-galler {
        margin-top: 40px;
        justify-content: center;
    }

    .moments-section-button {
        margin-top: 40px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .slider-item-content {
        margin-top: 10px;
    }

    .home-hero-banner-video {
        bottom: -170px;
        right: -90px;
        width: 589px;
        height: 503px;
    }

    /* Calender CSS */

    .outside-attractions-section {
        background-size: contain;
        background-position: top;
    }

    .calendar-cell-info br {
        display: none;
    }

    .calendar-cell-info {
        margin-top: 15px;
    }

    .calendar-cell-info ul li {
        margin-bottom: 5px;
    }

    .calendar-cell-info ul li:last-child {
        margin-bottom: 0;
    }

    .calendar-table {
        display: none;
    }

    .calendar-mobile-view {
        display: block;
        border: 1px solid #D3D3D3;
    }

    .calendar-mobile-row {
        display: flex;
        border-bottom: 1px solid #D3D3D3;
        padding: 15px 10px;
        gap: 0;
    }

    .outside-attractions-section .attractions-section-main .section-title {
        border-radius: 20px 20px 0 0;
        font-size: 26px;
        padding: 30px 20px;
    }

    .calendar-mobile-view {
        border-radius: 0 0 20px 20px;
    }

    .calendar-mobile-row:last-child {
        border-bottom: 0;
    }

    .calendar-mobile-day {
        background: var(--red);
        color: white;
        text-align: center;
        padding: 20px;
        font-size: 18px;
        flex-shrink: 0;
        min-width: 150px;
        max-width: 150px;
        width: 100%;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        border: 1px solid var(--red);
        text-transform: uppercase;
        font-family: var(--font-Staatliches);
        font-weight: 400;
    }

    .calendar-mobile-row:nth-child(even) .calendar-mobile-content {
        background: var(--bg-color);
    }

    .calendar-mobile-content {
        flex: 1;
        padding: 20px;
        background: var(--white);
        font-size: 16px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border: 1px solid #D3D3D3;
    }

    .calendar-mobile-content strong {
        display: block;
        color: var(--red);
        font-size: 20px;
        margin-bottom: 5px;
        text-transform: uppercase;
        font-family: var(--font-Staatliches);
        font-weight: 400;
    }

    /* Calender CSS */


    .employment-application-form .gform_legacy_markup_wrapper .gf_step_label {
        font-size: 20px;
    }

    .employment-application-form .gf_step .gf_step_number {
        width: 85px !important;
        height: 74px !important;
    }

    .employment-application-form .gform_legacy_markup_wrapper .gf_step span.gf_step_number {
        font-size: 24px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h2 {
        font-size: 22px;
        margin: 0 auto 20px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul,
    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol {
        margin-top: 20px !important;
        font-size: 16px;
    }

    #gform_page_4_2 #gform_fields_4_2>li .gform-grid-col {
        padding-right: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    #gform_page_4_2 #gform_fields_4_2>li .gform-grid-col input {
        margin-top: 0;
    }

    .gform_page .gform_page_fields {
        padding: 30px;
    }

    #gform_page_4_2 #gform_fields_4_2>li {
        padding-right: 0;
        width: 100%;
    }

    .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
        padding-right: 0 !important;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting {
        padding: 30px !important;
    }

    body .gform_legacy_markup_wrapper h2.gsection_title {
        margin-bottom: 10px !important;
    }

    .about-beverage-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-beverage-info.text-left .section-button {
        justify-content: center;
    }

    .about-right-image-sec .about-beverage-row {
        flex-direction: column;
    }

    .about-right-image-sec .about-beverage-info {
        order: 0;
    }

    .about-beverage-info.text-left {
        text-align: center;
    }

    .about-beverage-info.text-left ul {
        text-align: left;
    }

    .dark-bg .about-beverage-info ul li {
        padding-left: 25px;
    }

    .dark-bg .about-beverage-info ul li::before {
        top: 4px;
        width: 12px;
        height: 12px;
    }

    .about-right-image-sec .about-beverage-info {
        max-width: 100%;
    }

    .about-beverage-section {
        padding: 80px 0;
    }

    .events-inner-section .section-sub-title {
        font-size: 22px;
    }

    .events-inner-section .section-title {
        font-size: 36px;
    }

    .events-inner-section .main-section-title {
        margin-bottom: 30px;
    }

    .events-inner-section .event-item-image {
        width: 360px;
        bottom: -90px;
    }

    .events-inner-section .event-list-item.box_theme-yellow {
        min-height: 250px;
    }

    .event-list-item {
        border-radius: 10px;
    }

    .events-inner-section .event-box-list {
        gap: 30px;
    }

    .plan-event-main-page.events-inner-section .event-box-list {
        gap: 30px;
    }

    .events-inner-section .event-list-item.box_theme-red {
        flex: 1 0 calc(50% - 15px);
        padding: 30px;
    }

    .events-inner-section .event-list-item .event-item-title-main {
        font-size: 22px;
    }

    .events-inner-section .event-list-item {
        min-height: 360px;
    }

    .events-inner-section .event-list-item.box_theme-red .event-key-points ul li {
        font-size: 20px;
        padding-left: 35px;
    }

    .events-inner-section .event-list-item .event-key-points ul li::before {
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 20px;
        top: 12px;
    }

    .more-info {
        margin-top: 30px;
    }

    .snackbar-menu-section .event-box-list .event-list-item {
        min-height: auto;
        padding: 285px 30px 30px;
        padding-right: 30px;
    }

    .snackbar-menu-section.menu-cols4 .event-box-list .event-list-item {
        padding: 230px 20px 20px;
    }

    br {
        display: none;
    }

    .faq-content br {
        display: block;
    }

    .section-row {
        padding: 80px 0;
    }

    table thead th {
        font-size: 18px;
    }

    .pricing-table .feature-icon {
        padding: 15px 10px;
        min-width: 50px;
        max-width: 50px;
    }

    .feature-title-sec {
        font-size: 18px;
    }

    .checkmark-icon img {
        width: 24px;
    }

    .feature-choices li {
        font-size: 16px;
    }

    .feature-note-medium {
        font-size: 16px;
    }

    .feature-note {
        font-size: 14px;
    }

    .pricing-table tfoot tr .pricing-label {
        padding: 14px 20px 14px 66px;
    }

    .pricing-table tfoot tr td:first-child {
        font-size: 18px;
    }

    .notice-text {
        margin: 30px 0;
    }

    .red-dot-lisitng li {
        padding-left: 25px;
    }

    .red-dot-lisitng li::before {
        top: 4px;
        width: 10px;
        height: 10px;
    }

    .event-list-item.no-image {
        padding: 60px 20px 30px;
    }

    .party-schedule-section-row {
        grid-gap: 30px;
    }

    .party-schedule-box {
        width: calc(33.33% - 20px);
    }

    .party-schedule-image {
        margin-bottom: 20px;
    }

    .accordion-databox .accordion-row h5 {
        font-size: 20px;
    }

    .accordion-databox .accordion-row {
        padding: 20px 60px 20px 20px;
    }

    .testimonials-item-content p {
        font-size: 16px;
    }

    .events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng li {
        font-size: 20px;
    }

    .teen-adult-party-info-row {
        width: calc(50% - 12px);
    }


    .group-rate-pricing-row {
        padding: 15px 20px;
    }

    .group-rate-pricing-row:first-child {
        font-size: 20px;
        padding: 15px 20px;
    }

    .group-rate-pricing-section .more-info {
        margin: 30px auto 0;
    }

    .main-section-title {
        margin-bottom: 30px;
    }

    .group-faq-info {
        padding: 30px 20px;
    }

    .when-booking .group-faq-info {
        padding: 30px 20px;
    }

    .numbers {
        font-size: 24px;
    }

    .group-faq-row {
        padding-bottom: 20px;
        margin-bottom: 20px;
        gap: 10px;
    }

    .event-section .section-title {
        font-size: 38px;
    }

    .snackbar-menu-section.menu-cols4 .event-item-image.rectangle-image {
        top: -320px;
        right: -33px;
        width: 420px;
        height: 620px;
    }

    .steps-row ul {
        gap: 50px;
    }

    .step-icon {
        width: 138px;
        height: 120px;
    }

    .line {
        top: calc(50% - 11px);
    }

    .how-does-it-work-section-main .more-info {
        margin: 40px 0;
    }

    .step-block {
        padding: 40px 30px;
    }

    .packages-main-sec {
        flex-direction: column;
        gap: 30px;
    }

    .packages-row {
        max-width: 100%;
    }

    .step-title {
        font-size: 30px;
    }

    .step-block-row .step-number {
        top: -85px;
    }

    .step-block ul li::before {
        width: 10px;
        height: 10px;
    }

    .step-block ul ul {
        padding-top: 10px;
    }

    .step-block ul li {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .when-booking .faq-content ul li {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .when-booking .faq-content ul li::before {
        width: 10px;
        height: 10px;
    }

    .about-beverage-content ul li {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .about-beverage-content ul li::before {
        width: 10px;
        height: 10px;
    }

    .step-block {
        padding: 30px 20px;
    }

    .step-block-row .step-number {
        top: -78px;
        width: 172px;
        height: 147px;
    }

    .step-block-row {
        padding-bottom: 100px;
    }

    .step-title {
        margin-bottom: 10px;
    }

    .steps-row p {
        font-size: 16px;
    }

    .line {
        top: calc(50% - 8px);
    }

    .steps-blocks {
        margin-top: 100px;
    }

    .raise-money-row {
        width: calc(50% - 12px);
    }

    .fundraising-options-row {
        gap: 30px;
    }

    .fundraising-options .fundraising-options-details {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .fundraising-details h3 {
        font-size: 22px;
    }

    .organizations-raise-money-section-main .main-section-title+.raise-money-row-main {
        margin-top: 60px;
    }

    .go-cart-event-section .event-item-image {
        max-width: 250px;
        top: -32px;
    }

    .go-cart-event-section-main .event-box-list {
        padding-top: 60px;
        gap: 60px 24px;
    }

    .go-cart-event-section .event-list-item {
        padding: 90px 20px 30px;
        flex: 1 0 calc(50% - 12px);
    }

    .go-cart-event-section-main .more-info {
        margin-top: 40px;
    }

    .arcade-image .rectangle-image {
        width: 166px;
        height: 144px;
        margin: 0 auto;
    }

    .arcade-info-main .main-section-title+.more-info {
        margin-top: 40px;
    }

    .arcade-info-main .arcade-images-row+.more-info {
        margin-top: 60px;
    }

    .laser-tag-info .teen-adult-party-info {
        grid-gap: 30px 24px;
    }

    .event-section.powerup-mode-section .more-info {
        margin-top: 30px;
    }

    .event-section.powerup-mode-section {
        padding: 80px 0;
    }

    .pricing-wrapper table td {
        padding: 20px;
    }

    .pricing-wrapper ul li {
        padding-left: 30px;
    }

    .pricing-wrapper ul li::before {
        top: 4px;
    }

    .pricing-section {
        padding-top: 180px;
    }

    .contact-icon img {
        width: 30px;
    }

    .contact-icon {
        width: 118px;
        height: 105px;
        top: -52px;
    }

    .contact-form-row {
        display: flex;
        flex-direction: column;
    }

    .contact-form-map,
    .contact-form {
        width: 100%;
    }

    .contact-form-map iframe {
        height: 400px;
    }

    .contact-main-sec {
        padding-top: 60px;
    }

    .contact-form-sec .main-section-title {
        margin-bottom: 0;
    }

    .contact-info-row {
        padding: 70px 20px 30px;
    }

    .corporate-private-party-inquiry-section .contact-form-row .contact-form {
        padding: 10px 20px 20px;
    }

    .mini-golf-section .contact-form-row {
        margin-top: 20px;
    }

    .mini-golf-section .contact-form-row .contact-form {
        width: 100%;
        padding: 30px 20px;
    }

    #gform_page_4_2 .gfield--type-checkbox {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .employment-application-section {
        padding-top: 30px;
    }

    .plan-event-main-page.events-inner-section .event-list-item:before {
        top: 30px;
    }

    .inner-hero {
        max-width: 360px;
    }

    #gform_page_4_2 .gform-field-label,
    #gform_page_4_2 .gfield_label {
        margin-bottom: 10px;
    }

    .employment-application-form .gfield--input-type-address .gform-grid-row {
        display: block;
    }

    .main-section-title+.accordion-databox {
        margin-top: 30px;
    }

    .plan-event-main-page.events-inner-section .event-section .section-title {
        font-size: 30px;
    }

    .teen-adult-party-info-section.dark-bg {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width:860px) {

    .inner-hero-banner .home-hero-banner-video {
        bottom: -190px;
        width: 620px;
        height: 510px;
        right: -120px;
    }
}


@media only screen and (max-width:767px) {

    .section-row {
        padding: 60px 0;
    }


    .slider-item-title {
        font-size: 32px;
        line-height: 45px;
    }

    .slider-item-sub-title {
        font-size: 30px;
        margin-bottom: 6px;
    }

    section.home-hero-banner {
        padding: 90px 0 0px;
    }

    .home-hero-slider {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .inner-hero {
        max-width: 300px;
    }

    .slider-item-content p {
        font-size: 20px;
    }

    .slider-item-button {
        margin-top: 24px;
    }

    section.inner-hero-banner .slider-item-button {
        margin-top: 20px;
        justify-content: center;
    }

    .home-hero-banner-video {
        height: 590px;
        position: relative;
        margin-bottom: -220px;
    }

    section.attractions-section {
        padding: 60px 0 60px;
        background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/05/Attractions-bg-mobile.png) !important;
    }

    .attractions-box-list {
        gap: 40px 20px;
        align-items: center;
    }

    .attractions-item-title-main {
        font-size: 22px;
        line-height: 1;
        max-width: 170px;
        min-width: 170px;
        min-height: 117px;
        padding-left: 10px;
    }

    .attractions-box-list {
        gap: 30px 20px;
    }

    .attractions-box-list {
        margin-top: 40px;
    }

    section.event-section {
        padding: 60px 0 60px;
    }

    .section-title {
        font-size: 30px;
    }

    .testimonials-slider {
        max-width: 500px;
    }

    .testimonials-slider {
        margin-top: 20px;
        padding-top: 15px;
    }

    .testimonials-main-inner:before {
        position: absolute;
        content: '';
        width: 38px;
        height: 28px;
        top: -50px;
    }

    .testimonials-main {
        padding: 170px 30px 170px;
    }

    .testimonials-item-author-name {
        margin-top: 30px;
    }

    section.testimonials-section {
        padding: 20px 0 20px;
    }

    section.moments-section {
        padding: 60px 0 60px;
    }

    footer#colophon {
        padding: 60px 0 50px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-cnt-box {
        padding: 70px 30px 30px;
        margin-top: 40px;
        width: 100%;
        max-width: 312px;
        order: 2;
    }

    .footer-logo {
        order: 1;
        margin-bottom: -30px;
    }

    .footer-copyright-text p {
        font-size: 18px;
        line-height: 1.4;
        max-width: 300px;
        margin-top: 40px;
    }

    .moments-section-galler-item {
        border-radius: 16px;
        overflow: hidden;
        margin: 0 7px;
    }


    .moments-section-galler {
        margin: 40px 0 01;
    }

    .moments-section-galler-item img {
        width: 100%;
    }

    .moments-section .wrapper {
        padding: 0;
    }

    .event-key-points ul li {
        padding-left: 10px;
    }

    a.event-list-item {
        padding: 20px 20px;
        min-height: 330px;
        width: 100%;
    }

    .home-hero-banner-video {
        bottom: 0;
        left: -5%;
        right: -5%;
        width: 110%;
        height: 430;
        position: relative;
        margin-bottom: -340px;
    }

    .inner-hero-banner .home-hero-banner-video {
        bottom: 0;
        left: -5%;
        right: -5%;
        width: 110%;
        height: 550px;
        position: relative;
        margin-bottom: -300px;
    }

    .home-hero-banner-main {
        margin-bottom: 30px;
    }

    .inner-hero {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    section.home-hero-banner.inner-hero-banner {
        padding: 60px 0 0px;
        display: block;
    }

    .outside-attractions-section {
        padding: 80px 0;
    }

    .top-rectangle::before {
        width: 100px;
        height: 103px;
        border-radius: 10px;
        top: -40px;
    }

    .pricing-section .top-rectangle::before {
        top: -44px;
    }

    .outside-attractions-section .attractions-section-main .section-title {
        padding: 30px 20px;
        font-size: 22px;
    }

    .gform_wrapper .top_label li.gfield.gf_left_half,
    .gform_wrapper .top_label li.gfield.gf_right_half {
        width: 100%;
    }

    .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: 1;
    }

    .employment-application-form .gform_legacy_markup_wrapper .gform_page_footer {
        gap: 20px;
        margin: 30px auto 0;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul.gfield_radio {
        margin-top: 10px !important;
    }

    .gform_page .gform_page_fields {
        padding: 20px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting {
        padding: 20px !important;
    }

    .employment-application-form .gform_legacy_markup_wrapper .gf_step span.gf_step_number {
        font-size: 22px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h2 {
        font-size: 20px;
        margin: 0 auto 10px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields .gfield.read-before-starting h3 {
        font-size: 16px;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul,
    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol {
        margin-top: 20px !important;
        font-size: 14px;
    }

    #gform_fields_4 .gfield.gsection .gsection_description {
        padding: 0;
    }

    .about-beverage-section {
        padding: 60px 0;
    }

    .about-beverage-image {
        max-width: 300px;
    }

    .about-beverage-info.text-left {
        text-align: center;
    }

    .events-inner-section .event-list-item.box_theme-red {
        flex: 1 0 100%;
    }

    .events-inner-section .event-list-item .event-key-points ul {
        margin-top: 10px;
    }

    .events-inner-section .section-title {
        font-size: 28px;
    }

    .events-inner-section .section-sub-title {
        line-height: 1.3;
    }

    .events-inner-section .event-item-image {
        width: 48%;
    }

    .more-info .button {
        font-size: 16px;
        padding: 16px 50px 15px 20px;
        border-radius: 6px;
    }

    /* Table CSS */


    .pricing-table tr:first-child .schedule-row .feature-icon:first-child {
        border-radius: 8px;
    }

    .res-table {
        border: 0;
    }

    .res-table thead,
    .res-table colgroup {
        display: none;
    }

    .res-table tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #dedede;
        border-radius: 18px;
        overflow: hidden;
    }

    .res-table td {
        display: block;
        text-align: right;
        position: relative;
        padding: 16px 14px 16px 50%;
        border: none;
        background-color: #fff;
    }

    .res-table td::before {
        content: attr(data-th);
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;

        font-size: 18px;
    }

    .res-table td:first-child {
        background-color: var(--red);
        color: #fff;
        font-size: 18px;
        padding: 16px;
        text-align: left;
    }

    .pricing-table .schedule-row.has-long-text {
        min-height: auto;
    }

    .feature-title {
        margin-bottom: 0;
    }

    .pricing-table .schedule-row .schedule-row-main.has-choices .feature-title-main .feature-title-sec {
        font-size: 20px;
        flex: 1 0 50%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .pricing-table tfoot tr td {
        border-bottom: 1px solid #fef9f0;
    }

    .pricing-table tfoot tr td:last-child {
        border-bottom: 0;
    }

    .checkmark-icon img {
        width: 24px;
    }

    .feature-choices {
        padding-left: 0;
        border-left: none;
        flex: 1 0 50%;
    }

    .feature-choices li {
        border-bottom: none;
        padding: 4px 0;
        font-size: 18px;
    }

    .pricing-table .schedule-row .feature-title-main .feature-title-sec {
        font-size: 22px;
    }

    .schedule-row-main {
        align-items: center;
    }

    .pricing-table table tbody tr td:nth-child(even) {
        background-color: #fef9f0;
    }

    .pricing-table .feature-icon {
        padding: 10px;
        border-radius: 8px;
    }

    .checkmark-icon {
        justify-content: flex-end;
    }

    .pricing-table .schedule-row .feature-title-main {
        padding: 0 0 0 20px;
    }

    .feature-icon img {
        width: 100%;
        height: auto;
    }

    .feature-note,
    .feature-note-medium {
        font-size: 16px;
    }

    /* Footer row styling for mobile */
    .res-table tfoot {
        display: block;
        margin-top: 10px;
    }

    .res-table tfoot tr {
        display: block;
        background-color: var(--red);
        color: #fff;
        border-radius: 12px;
        overflow: hidden;
    }

    .res-table tfoot td {
        display: block;
        text-align: right;
        position: relative;
        padding: 16px 14px 16px 50%;
        border: none;
        font-size: 16px;
        background-color: transparent;
    }

    .res-table tfoot td::before {
        content: attr(data-th);
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 45%;
        font-size: 18px;
        text-align: left;
        color: #fff;
    }

    .pricing-table .res-table tfoot td:first-child {
        background-color: var(--red);
        color: #fff;
        font-size: 24px;
        padding: 16px;
        text-align: center;
    }

    .res-table tfoot .pricing-label::before {
        display: none;
    }

    /* Table CSS */

    .packages-list .event-list-item {
        flex: 1 0 calc(50% - 12px);
    }

    .party-schedule-box {
        width: calc(50% - 15px);
    }

    .party-schedule-image img {
        width: 40px;
    }

    .events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng li {
        font-size: 18px;
        padding-left: 30px;
    }

    .teen-adult-party-info-row p {
        font-size: 16px;
    }

    .teen-adult-party-info-row::before,
    .teen-adult-party-info-row::after {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 26px;
        top: -11px;
    }

    .teen-adult-party-info-row::before {
        left: 50px;
    }

    .group-rate-pricing-row:first-child {
        font-size: 18px;
    }

    .event-section .section-title {
        font-size: 30px;
    }

    .snackbar-menu-section.menu-cols4 .event-item-image.rectangle-image {
        top: -230px;
        right: -33px;
        width: 300px;
        height: 500px;
    }

    .plan-event-main-page .event-list-item:before {
        width: 61px;
        height: 15px;
        top: 20px;
    }

    .packages-table table thead {
        display: none;
    }

    .packages-table table,
    .packages-table table tbody,
    .packages-table table tr,
    .packages-table table td {
        display: block;
        width: 100%;
    }

    .packages-table table tr td {
        border-bottom: 1px solid #d9d9d9;
    }

    .packages-table table tr td:last-child {
        border-bottom: 0;
    }

    .packages-table table tr {
        margin-bottom: 15px;
    }

    .packages-table table tr:last-child {
        margin-bottom: 0;
    }

    .packages-table table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .packages-table table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        text-align: left;
        color: var(--red);
    }

    .packages-table th,
    .packages-table td {
        font-size: 18px;
    }

    .step-title {
        font-size: 26px;
    }

    .step-icon {
        width: 114px;
        height: 100px;
    }

    .line {
        top: calc(50% - 12px);
    }

    .step-icon img {
        width: 36px;
    }

    .steps-row ul li {
        width: 33.33%;
    }

    .steps-row span {
        font-size: 20px;
        font-weight: 600;
    }

    .raise-money-row-main {
        gap: 40px 24px;
    }

    .fundraising-content+.fundraising-options-row {
        display: flex;
        flex-direction: column;
    }

    .go-cart-event-section-main .event-box-list {
        flex-direction: column;
    }

    .go-cart-event-section .event-list-item {
        flex: 1 0 100%;
    }

    .arcade-image {
        width: calc(33.33% - 16px);
    }

    .powerup-mode-section .event-box-list {
        display: flex;
        flex-direction: column;
    }

    .powerup-mode-section .event-list-item .event-key-points p br {
        display: block;
    }

    .event-section.powerup-mode-section {
        padding: 60px 0;
    }


    .pricing-wrapper table,
    .pricing-wrapper thead,
    .pricing-wrapper tbody,
    .pricing-wrapper th,
    .pricing-wrapper td,
    .pricing-wrapper tr {
        display: block;
        width: 100%;
    }

    .pricing-wrapper thead {
        display: none;
    }

    .pricing-wrapper tr {
        margin-bottom: 20px;
        border: 1px solid #dedede;
        border-radius: 10px;
    }

    .pricing-wrapper table td {
        border: none;
        padding: 20px;
    }

    .table-card {
        border-top: 1px solid #dedede;
        padding-top: 10px;
    }

    .table-card:first-child {
        border-top: none;
        padding-top: 0;
    }

    .pricing-section {
        padding-top: 80px;
    }

    .modal {
        max-width: 90%;
        width: 100%;
    }

    .contact-form .gfield--type-radio .gfield_label {
        font-size: 20px !important;
    }

    .small-title {
        font-size: 28px;
    }

    .contact-form .ginput_container_radio .gfield_radio {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .corporate-private-party-inquiry-section .contact-form .ginput_container_radio .gfield_radio {
        gap: 5px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-form-sec input {
        min-height: 50px !important;
        padding: 5px 15px !important;
    }

    .contact-form-sec .submit_button .gform_button {
        min-height: auto !important;
        line-height: normal !important;
    }

    .contact-form-sec .gform_legacy_markup_wrapper ul.gfield_checkbox li label,
    .contact-form-sec .gform_legacy_markup_wrapper ul.gfield_radio li label {
        width: 60%;
    }

    .modal-dialog ul li {
        padding-left: 25px;
    }

    .modal-dialog ul li::before {
        top: 6px;
        width: 12px;
        height: 12px;
    }

    .gform_page select {
        font-size: 16px !important;
    }

    .employment-application-section {
        padding-top: 10px;
        background-size: contain;
        background-position: bottom;
    }

    .plan-event-main-page.events-inner-section .event-list-item:before {
        top: 20px;
    }

    .rectangle-image {
        filter: drop-shadow(0px 20px 20px rgb(0 0 0 / 16%));
        /* Safari */
        -webkit-filter: drop-shadow(0px 20px 20px rgb(0 0 0 / 16%));
    }

    .pricing-wrapper ul+p {
        padding-top: 20px;
        margin-bottom: 20px;
    }

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

    .pricing-wrapper tr td:nth-child(2) {
        background-color: transparent;
    }

    .pricing-wrapper tr td:nth-child(even) {
        background-color: var(--bg-color);
    }

    .table-card .section-button {
        justify-content: center;
    }

    .modal {
        max-height: 80vh;
    }

    .home-hero-banner-video .video-bottom video,
    .home-hero-banner-video .video-bottom img {
        object-fit: cover;
    }

    .error-404 .page-header .page-title {
        font-size: 30px;
    }
}


@media only screen and (max-width:641px) {

    .gform_legacy_markup_wrapper div.ginput_complex.ginput_container.gf_name_has_2 span {
        width: 100% !important;
    }

    .gform_wrapper .top_label li.gfield.gf_left_half,
    .gform_wrapper .top_label li.gfield.gf_right_half {
        width: 100% !important;
    }

    .corporate-private-party-inquiry-section .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gf_left_half {
        padding-right: 0 !important;
    }

    .corporate-private-party-inquiry-section .contact-form-row .contact-form .gf_right_half {
        padding-left: 0;
    }

    .employment-application-form .gf_step {
        width: auto !important;
        display: -moz-inline-stack;
        display: inline-block;
    }

    .teen-adult-party-info-section.dark-bg {
        padding-bottom: 60px;
    }

}


@media only screen and (max-width:575px) {
    .attractions-box-list {
        gap: 30px 20px;
        flex-direction: column;
        align-items: center;
    }

    a.event-list-item {
        padding: 20px 20px;
        min-height: 280px;
    }

    .plan-event-main-page .event-list-item:before {
        width: 34px;
        height: 11px;
    }

    .plan-event-main-page .event-list-item.box_theme-red:before {
        width: 31px;
    }

    .event-button:before {
        width: 38px;
        height: 29px;
    }

    .event-key-points ul li {
        position: relative;
        padding-left: 15px;
        font-family: Roboto;
        font-weight: 400;
        font-size: 10px;
        line-height: 18px;
    }

    .event-item-title {
        max-width: 100px;
    }

    .event-section.plan-event-main-page:not(.events-inner-section) .event-item-title {
        margin-left: auto;
    }

    .event-list-item.no-image .event-item-title {
        margin: 0 auto;
    }

    .event-key-points {
        margin-top: 12px;
    }

    a.event-list-item {
        padding: 20px 20px;
        min-height: 180px;
    }

    .event-item-image {
        width: 75%;
    }

    .event-button {
        position: absolute;
        right: -18px;
        bottom: 22px;
    }

    .event-box-list {
        gap: 35px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-sub-title {
        font-size: 20px;
        margin-bottom: 6px;
    }


    .home-hero-banner-video {
        height: 430px;
        position: relative;
        margin-bottom: -200px;
        margin-top: 30px;
    }

    .inner-hero-banner .home-hero-banner-video {
        height: 350px;
        margin-bottom: -142px;
        margin-top: 30px;
    }

    .event-item-image {
        width: 72%;
    }

    .event-item-image {
        position: absolute;
        bottom: -2px;
        left: -15px;
    }

    .plan-event-main-page .event-item-image {
        width: 250px;
    }

    .plan-event-main-page .event-list-item:before {
        width: 34px;
        height: 11px;
        top: 26px;
    }

    .plan-event-main-page .event-list-item.box_theme-red:before {
        left: 0;
    }

    .header-phone a:before {
        content: '';
        position: absolute;
        width: 13px;
        height: 13px;
    }

    .header-phone a:before {
        top: 3px;
    }

    a.attractions-list-item {
        width: 100%;
        max-width: 305px;
        filter: drop-shadow(0px 10px 10px rgb(0 0 0 / 20%));
        -webkit-filter: drop-shadow(0px 10px 10px rgb(0 0 0 / 20%));
    }

    .button {
        font-size: 16px;
        padding: 21px 51px 20px 40px;
    }

    .attractions-item-image .button:before {
        right: 30px;
    }

    .attractions-item-image .button {
        font-size: 16px;
        padding: 16px 51px 16px 25px;
    }

    .event-key-points {
        margin-top: 5px;
    }


    .employment-application-form .gform_legacy_markup_wrapper .gf_step_label {
        margin-top: 40px;
    }

    .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: 1 !important;
    }

    .gform_legacy_markup_wrapper .gform_footer input.button,
    .gform_legacy_markup_wrapper .gform_footer input[type=submit],
    .gform_legacy_markup_wrapper .gform_page_footer input.button,
    .gform_legacy_markup_wrapper .gform_page_footer input[type=submit] {
        margin-bottom: 0 !important;
    }

    .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before,
    .gform_legacy_markup_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td:after {
        white-space: normal !important;
    }

    .gform_wrapper form .gform_body .gform_fields .gfield .gfield_description {
        word-break: break-all;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul,
    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol {
        margin-left: 20px;
    }

    #gform_page_4_2 .gfield_checkbox {
        margin-left: 0;
    }

    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ul.gfield_radio,
    .gform_wrapper form .gform_body .gform_page .gform_page_fields .gform_fields ol.gfield_radio {
        margin-left: 0;
    }

    .employment-application-form .gform_legacy_markup_wrapper .gf_step_label {
        font-size: 18px;
    }

    .employment-application-form .gform_legacy_markup_wrapper .gf_step span.gf_step_number {
        font-size: 20px;
        width: 50px !important;
        height: 44px !important;
    }

    .gform_legacy_markup_wrapper .gf_step {
        width: auto !important;
    }

    .events-inner-section .event-list-item.box_theme-yellow .event-item-title {
        max-width: 100%;
        width: 100%;
    }

    .events-inner-section .event-list-item.box_theme-yellow {
        display: flex;
        flex-direction: column-reverse;
        min-height: auto;
        padding-bottom: 0;
        padding-top: 50px;
        padding-right: 20px;
    }


    .events-inner-section .event-item-image {
        width: 100%;
        position: relative;
        margin: -80px auto -50px;
        left: 0;
    }

    .events-inner-section .event-list-item:before {
        top: 20px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .plan-event-main-page.events-inner-section .event-list-item.box_theme-yellow .event-item-title {
        max-width: 100%;
        width: 100%;
    }

    .events-inner-section .event-list-item.box_theme-yellow .event-key-points {
        margin-top: 10px;
    }

    .snackbar-menu-section.events-inner-section .event-list-item.box_theme-yellow .event-key-points {
        margin-top: 0;
    }

    .events-inner-section .event-list-item.box_theme-red {
        padding: 20px;
    }

    .events-inner-section .event-list-item .event-key-points ul li {
        font-size: 18px;
        padding-left: 30px;
    }

    .events-inner-section .event-list-item {
        min-height: auto;
    }

    .events-inner-section .event-list-item .event-item-title-main {
        font-size: 20px;
        line-height: 1.3;
    }

    .events-inner-section .event-list-item {
        text-align: center;
    }

    .events-inner-section .event-list-item ul {
        text-align: left;
    }

    .events-inner-section .event-list-item .event-key-points ul li::before {
        border-top-width: 6px;
        border-bottom-width: 6px;
        border-left-width: 16px;
    }

    .more-info .button {
        padding: 13px 40px 12px 16px;
    }

    .snackbar-menu-section .event-list-item.box_theme-red,
    .snackbar-menu-section .event-box-list .event-list-item {
        min-height: auto;
        padding: 285px 30px 30px;
        padding-right: 30px;
    }

    .event-item-title::before {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 45px;
    }

    .snackbar-menu-section .event-item-image.rectangle-image {
        width: 420px;
        height: 500px;
        top: -160px;
        position: absolute;
    }

    .snackbar-menu-section .event-list-item.box_theme-red,
    .snackbar-menu-section .event-box-list .event-list-item {
        padding: 245px 20px 30px;
        padding-right: 20px;
    }

    .snackbar-menu-section .event-box-list .event-list-item.no-image {
        padding: 60px 20px 30px;
    }

    .event-key-points p strong,
    .event-key-points b {
        font-size: 18px;
    }

    .snackbar-menu-section .event-key-points p {
        font-size: 16px;
    }

    .home-hero-banner-video {
        height: 330px;
        position: relative;
        margin-bottom: -150px;
    }

    .calendar-mobile-row {
        flex-direction: column;
        align-items: center;
    }

    .calendar-mobile-content {
        width: 100%;
        text-align: center;
        border-top-right-radius: 0;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .calendar-mobile-day {
        min-width: auto;
        max-width: 100%;
        padding: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
    }

    .calendar-mobile-row {
        gap: 0;
    }

    .res-table td::before,
    .pricing-table .schedule-row .feature-title-main .feature-title-sec {
        font-size: 18px;
    }

    .schedule-row-main {
        align-items: flex-start;
    }

    .pricing-table .schedule-row .schedule-row-main.has-choices .feature-title-main .feature-title-sec {
        padding-left: 0;
        padding-right: 0;
    }

    .pricing-table .schedule-row .schedule-row-main.has-choices .feature-title-main {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .pricing-table .schedule-row .feature-title-main {
        padding-left: 20px;
        align-self: center;
    }

    .feature-choices {
        margin-top: 10px;
    }

    .feature-choices li {
        position: relative;
        z-index: 1;
        padding-left: 25px;
    }

    .feature-choices li::after {
        content: "";
        position: absolute;
        top: 8px;
        left: 0;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--Yellow);
        z-index: -1;
        pointer-events: none;
    }

    .pricing-table .schedule-row .feature-title-main.has-choices .feature-title-main {
        flex-direction: column;
    }

    .feature-choices li {
        font-size: 16px;
    }

    .pricing-table tfoot tr .pricing-values {
        padding: 15px;
    }

    .packages-list {
        gap: 24px;
    }

    .packages-list .event-list-item {
        flex: 1 0 100%;
    }

    .event-list-item.no-image {
        justify-content: center;
        text-align: center;
    }

    .card-details h2 {
        text-align: center;
    }

    .event-list-item.no-image {
        padding: 60px 20px 20px;
    }

    .accordion-databox .accordion-row h5 {
        line-height: 1.3;
    }

    .teen-adult-party-info-row {
        width: 100%;
    }

    .teen-adult-party-info-row {
        min-height: 80px;
        padding: 20px;
        text-align: center;
    }

    .teen-adult-party-info-row::before,
    .teen-adult-party-info-row::after {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 45px;
        background-image: url(https://hilltopfuncdev.wpenginepowered.com/wp-content/uploads/2025/06/yellow-red-traingle.svg);
        transform: translateX(0px);
        transform: none;
        border: 0;
        height: 25px;
        background-size: contain;
        background-repeat: no-repeat;
        top: -8px;
    }

    .teen-adult-party-info-row::before {
        transform: none;
    }

    .teen-adult-party-info-row::after {
        display: none;
    }

    .group-rate-pricing-section-main {
        padding: 0 20px 20px;
    }

    .pricing-column::before {
        content: attr(data-label);
        display: block;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--red);
    }

    .group-rate-pricing-row {
        grid-template-columns: 1fr;
        padding: 16px 20px;
        text-align: left;
    }

    .group-rate-pricing-row:first-child {
        display: none;
    }

    .pricing-column {
        padding: 8px 0;
        border-bottom: 1px solid #dedede;
    }

    .pricing-column:first-child {
        padding-top: 0;
    }

    .pricing-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .group-rate-pricing-info {
        border: 1px solid #dedede;
        border-radius: 6px;
        overflow: hidden;
    }

    .menu-cols4 .event-box-list .event-list-item {
        width: 100%;
        flex: 1 0 100%;
    }

    .snackbar-menu-section.menu-cols4 .event-item-image.rectangle-image {
        top: -130px;
        right: 0;
        width: 300px;
        height: 300px;
        left: 0;
        margin: 0 auto;
    }

    .snackbar-menu-section.menu-cols4 .event-box-list .event-list-item {
        padding: 200px 20px 20px;
        text-align: center;
    }

    .snackbar-menu-section.menu-cols4 .event-box-list .event-list-item ul {
        text-align: left;
    }

    .packages-table th,
    .packages-table td {
        font-size: 16px;
    }

    .packages-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .step-block-row .step-number {
        top: -58px;
        width: 130px;
        height: 124px;
        padding-top: 30px;
        font-size: 20px;
    }

    .step-title {
        font-size: 22px;
    }

    .steps-row ul {
        gap: 30px;
    }

    .step-icon img {
        width: 30px;
    }

    .step-icon {
        width: 94px;
        height: 80px;
    }

    .steps-row span {
        font-size: 16px;
        margin: 0 auto 10px;
    }

    .steps-row p {
        margin-top: 10px;
    }

    .line {
        top: calc(50% - 22px);
    }

    .packages-row a {
        padding: 12px 18px;
    }

    .step-info p {
        margin: 0 0 15px;
    }

    .raise-money-row {
        width: 100%;
    }

    .organizations-raise-money-section-main .more-info {
        margin-top: 20px;
    }

    .fundraising-details {
        margin-top: 40px;
    }

    .organizations-raise-money-section-main .section-content {
        margin-top: 10px;
    }

    .go-cart-event-section-main .more-info {
        margin-top: 30px;
    }

    .arcade-image .rectangle-image {
        width: 216px;
        height: 174px;
    }

    .snackbar-menu-section .modal .event-item-image.rectangle-image {
        width: 400px;
        top: -200px;
        right: 0;
        position: absolute;
        left: 0;
        margin: 0 auto;
    }

    .modal-dialog {
        padding: 190px 20px 20px;
        text-align: center;
    }

    .modal-dialog ul {
        text-align: left;
    }

    .popup_more_info {
        margin-top: 20px;
    }

    .modal .teen-adult-party-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .modal .teen-adult-party-info .teen-adult-party-info-row {
        width: 100%;
    }

    .close-modal-btn {
        width: 42px;
        height: 42px;
    }

    .contact-info-row {
        width: 100%;
    }

    .contact-info-sec {
        gap: 70px 20px;
    }

    .small-title {
        font-size: 22px;
    }

    .contact-form .ginput_container_radio .gfield_radio {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form .gform-footer {
        margin-top: 20px !important;
    }

    .contact-form-map iframe {
        height: 250px;
    }

    .arcade-image {
        width: calc(50% - 12px);
    }

    .snackbar-menu-section.menu-cols3 .event-item-image.rectangle-image {
        top: -60px;
        width: 400px;
        height: 300px;
    }

    .event-item-title-main {
        font-size: 20px;
    }

    .error-404 .page-header .page-title {
        font-size: 28px;
    }
}


@media only screen and (max-width:479px) {
    .home-hero-banner-video {
        height: 310px;
        position: relative;
        margin-bottom: -140px;
    }

    .inner-hero-banner .home-hero-banner-video {
        height: 350px;
        margin-bottom: -145px;
    }

    .wrapper {
        padding: 0 15px;
    }

    .snackbar-menu-section .event-item-image.rectangle-image {
        width: 420px;
        height: 480px;
        top: -160px;
    }

    .snackbar-menu-section .event-list-item.box_theme-red,
    .snackbar-menu-section .event-box-list .event-list-item {
        padding: 200px 20px 30px;
        padding-right: 20px;
    }

    .snackbar-menu-section .event-item-title .event-item-title-main {
        margin-bottom: 10px;
    }

    .event-key-points p strong,
    .event-key-points b {
        font-size: 16px;
    }

    body div p {
        margin-bottom: 15px;
    }

    .party-schedule-box {
        width: 100%;
    }

    .accordion-databox .accordion-row h5 {
        padding-right: 50px;
    }

    .accordion-databox .accordion-row {
        padding: 20px;
    }


    .accordion-databox .accordion-row h5 i {
        width: 30px;
        height: 30px;
        font-size: 16px;
        right: 0;
    }

    .testimonials-main {
        padding: 140px 20px 120px;
    }

    .main-section-title+.party-schedule-section-row {
        margin-top: 30px;
    }

    .events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng li {
        font-size: 16px;
        padding-left: 25px;
    }

    .events-inner-section .event-list-item .event-key-points ul.red-dot-lisitng li::before {
        top: 10px;
        width: 12px;
        height: 12px;
    }

    .about-beverage-image {
        max-width: 100%;
    }

    .arcade-image .rectangle-image {
        width: 156px;
        height: 134px;
    }

    .snackbar-menu-section .modal .event-item-image.rectangle-image {
        width: 350px;
    }

    .close-modal-btn {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
        font-size: 16px;
    }

    .modal .event-item-title h6 {
        margin-top: 15px;
    }

    .modal .event-item-title .event-item-title-main {
        font-size: 24px;
    }

    .modal-dialog {
        padding: 180px 20px 20px;
    }

    .no-flex-gap .contact-info-sec .contact-info-row {
        margin-bottom: 70px;
    }

    .contact-form .ginput_container_radio .gfield_radio {
        display: flex;
        flex-direction: column;
    }

    .events-inner-section .event-list-item.box_theme-red .event-key-points ul li {
        padding-left: 25px;
    }

    body .gform_legacy_markup_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol,
    body .gform_legacy_markup_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol {
        margin-left: 20px !important;
    }

    .rectangle-image {
        filter: drop-shadow(0px 10px 10px rgb(0 0 0 / 16%));
        /* Safari */
        -webkit-filter: drop-shadow(0px 10px 10px rgb(0 0 0 / 16%));
    }

    .no-flex-gap .about-beverage-image {
        margin-bottom: 30px;
    }

    .no-flex-gap .events-inner-section .event-list-item {
        margin-bottom: 30px;
    }

    .no-flex-gap .footer-cnt-box {
        margin: 80px 0 20px;
    }

    .no-flex-gap .event-section .event-list-item {
        margin-bottom: 30px;
    }

    .employment-application-form .submit_button .gform_button,
    .employment-application-form .gform-theme-button {
        font-size: 16px !important;
    }

    .slider-item-content p {
        line-height: 1.5;
        font-size: 18px;
    }

    .header-logo {
        width: 130px;
        top: -30px;
    }
}


/*============================================================= Responsive Css End =============================================================*/

@media only screen and (max-width: 641px) {
    .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: 1 !important;
    }
}