/**********
SITEWIDE STYLES
**********/


body,
html,
a,
p,
div,
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Quicksand', sans-serif;
    line-height: 120%;
    font-size: 12px;
}
.btn{
	text-transform: uppercase;
	text-decoration: none;
}
.btn,
a{
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--text-black);
    text-decoration: none;
}
.btn:hover,
a:hover{
	color: var(--primary);
    text-decoration: none;
}

:root{
    --primary: #005A00 !important;
    --secondary: #FFC830;
    --orange: #ED6000;
    --purple: #662D91;
	--purple-light: #5D2DE6;
    --green: #61973B;
    --red: #D82F2F;
	--grey: #323232;
    --orange-50: rgba(237, 96, 0, 0.2);
    --purple-50: rgba(102, 45, 145, 0.2);
    --green-50: rgba(97, 151, 59, 0.2);
    --red-50: rgba(216, 47, 47, 0.2);

    --text-black: #0A0A0A;
    --white: #fff;
    --text-grey: #404040;

}
h1{
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
h2,
h2 a{
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}
.railway-map h2{
	font-size: 48px;
	line-height: 42px;
	margin-bottom: 25px;
}
h2 a{
	text-transform:unset;
}
h3{
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}
h4{
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.hover-none:hover{
	opacity: 1;
}
.font-xxl{
    font-size: 64px;
    font-weight: 700;
    line-height: 60px

}
.font-lg{
    font-size: 24px;
}
.font-md p,
.font-md{
    font-size: 18px;
    line-height: 26px;
}
.font-sm,
.font-sm p,
.font-sm span,
.font-sm a{
    font-size: 16px;
}
.font-xs,
.font-xs p{
    font-size: 14px;
}
.font-xxs{
    font-size: 12px;
}

.fw-reg{
    font-weight: 400 !important;
}
.fw-md,
.fw-md p{
    font-weight: 500;
}
.fw-semibold{
    font-weight: 600;
}
.fw-bold,
.fw-700{
    font-weight: 700;
}
.text-primary{
    color: var(--primary) !important;
}
.text-black{
    color: var(--text-black);
}
.text-grey{
    color: var(--text-grey) !important;
}
.text-white p{
	color: #ffffff;
}
.rounded-sm{
	border-radius: 10px;
}

/* BUTTON */
.btn{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 50px;
}

.btn.btn-yellow{
    background: var(--secondary);
    color: var(--text-black);
}
.btn.sold-out{
	pointer-events: none;
}
.btn.btn-grey{
    background: #989898;
    color: #ffffff;
}
.full-width-image img{
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.btn.btn-purple{
    background: var(--purple);
    color: var(--white);
}
.btn.btn-purple-light{
    background: var(--purple-light);
    color: var(--white);
}
.btn.icon-right {
	position: relative;
	padding: 14px 53px 14px 35px;
}
.btn.icon-right.icon-share:after{
	content:"";
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	right: 25px;
	width: 16px;
	height: 16px;
	background-image: url('../img/share-icon.png');
	background-size: contain;
	background-repeat: no-repeat;
}
.icon-right.light:hover{
	color: var(--white) !important;
}
.btn-plane.light{
    color: var(--white);
    position: relative;
}
.btn-plane.dark{
    color: var(--text-black);
    position: relative;
}
.btn-outline.dark{
    border-radius: 50px;
    border: 1px solid #000;
    background: #FFF;
}
.btn-outline.dark:hover{
    color: var(--white);
    background: var(--primary);
}

.btn-plane.icon-right{
    padding-right: 20px;
	display: inline-block;
	position: relative;
}
.btn-plane.icon-right:hover{
	color: var(--primary);
}

.btn-plane.icon-right.light::after{
    content: url(../img/icon-right-sm-light.svg);
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
}
.btn-plane.icon-right.primary::after{
	 content: url(../img/arrow-right-primary.svg);
    position: absolute;
    top: -3px;
    right: 0;
    width: 15px;
    height: 15px;
}
.btn-plane.icon-right.ticket-btn:hover,
.btn-plane.icon-right.ticket-btn:focus{
	color: var(--primary) !important;
}
.btn-plane.icon-right.ticket-btn.primary::after{
    top: 6px;
    transform: rotate(-90deg);
	 transition: all 0.3s ease;
}
.btn-plane.icon-right.ticket-btn.active::after {
    top: -2px;
    transform: rotate(90deg);
    right: -5px;
}
.btn-plane.icon-right.dark::after{
    content: url(../img/icon-right-sm-dark.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1px;
    width: 15px;
    height: 15px;
}
/* END BUTTON */
.bg-white{
	background: #FFFFFF;
}
.bg-white-50{
	background: #FAFAFA;
}

/* HIGHLIGHTS */
.highlight{
	font-family: 'Quicksand', sans-serif;
}
.highlight-yellow{
    background: var(--secondary);
    border-radius: 30px;
    color: var(--text-black);
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
}
.highlight-red{
    background: var(--red-50);
    border-radius: 30px;
    color: var(--red);
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.highlight-purple{
    background: var(--purple-50);
    border-radius: 30px;
    color: var(--purple);
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.highlight-orange{
    background: var(--orange-50);
    border-radius: 30px;
    color: var(--orange);
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.highlight-bronze{
    background: rgba(176, 111, 56, 0.2);
    border-radius: 30px;
    color: #B06F38;
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.highlight-mustard{
    background: rgba(255, 200, 48, 0.24);
    border-radius: 30px;
    color: #956d01;
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.highlight-green{
    background: var(--green-50);
    border-radius: 30px;
    color: var(--green);
    padding: 2px 10px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.highlight-plane{
	font-family: 'Quicksand', sans-serif;
    border-radius: 40px;
    background: rgba(181, 181, 181, 0.20);
    color: var(--text-grey);
    padding: 2px 4px;
    display: inline-block;
    margin-inline: 3px;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

/* END HIGHLIGHTS */

/* CARD */


.card-style-1 .card{
	height: 100%;
    border-radius: 20px;
/*     border: 1px solid #000; */
    background: #FFF;
    margin: 8px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, .125);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
/* .card-style-1.no-border .card{
	border: 1px solid rgba(0, 0, 0, .125) !important;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
} */
.card-style-1 .slick-track
{
    display: flex !important;
}

.card-style-1 .slick-slide
{
    height: inherit !important;
}

.card-style-1 .card .dates span{
    margin-bottom: 5px;
}
.card-style-1 .card .info{
	height: calc(100% - 290px);
    display: flex;
    flex-direction: column;
    padding: 13px 15px;
    align-items: start;
}
.card-style-1 .card .info a.main-event,
.card-style-1 .card .info a.event-day,
.event-date-section a.event-day,
.event-date-section a.main-event{
	font-family: 'Quicksand', sans-serif;
}
.card-style-1 .card .info .btn{
	margin-top: auto;
}

.card-style-1 .card img{
	height: 290px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.card-style-2 img{
	height: 386px;
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
}
/* END CARD */

/* SLIDER */


.hero-slider .item{
    position: relative;
    display: flex;
    place-items: center;
    height: 661px;
}
.hero-slider .item .container{
    position: relative;
    z-index: 1;
}


.hero-slider .item img,
.hero-slider .item .video-repeat{
    position: absolute;
    width: 100%;
    height: 661px;
    object-fit: cover;
}
.hero-slider .item .video-repeat video{
    width: 100vw;
    height: 661px;
    object-fit: cover;
}
.hero-slider .item .overlay{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-slider .item .overlay-green{
    background: linear-gradient(278deg, rgba(56, 142, 60, 0.00) 6.39%, rgba(0, 90, 0, 0.90) 71.57%);
}
.hero-slider .item .overlay-blue{
    background: linear-gradient(270deg, rgba(0, 131, 185, 0.00) 43.58%, rgba(0, 131, 185, 0.90) 74.17%);
}
.hero-slider .item .overlay-orange{
    background: linear-gradient(270deg, rgba(102, 47, 0, 0.00) 43.58%, rgba(102, 47, 0, 0.90) 74.17%);
}
.hero-slider .item .overlay-red{
    background: linear-gradient(270deg, rgba(134, 0, 0, 0.00) 43.58%, rgba(134, 0, 0, 0.90) 74.17%);
}
.hero-slider .item .overlay-pink{
    background: linear-gradient(270deg, rgba(255, 81, 171, 0.00) 43.58%, rgba(255, 81, 171, 0.90) 69.06%);
}
.hero-slider .item .overlay-dark.blue{
    background: linear-gradient(270deg, rgba(0, 31, 108, 0.00) 43.58%, rgba(0, 31, 108, 0.80) 69.06%);
}

.arrow-light .slick-next{
    right: 25px;
}
.arrow-light .slick-prev{
    left: 25px;
    z-index: 1;
}
.slick-next:before{
    content: url(../img/icon-right-md-light.svg);
}
.slick-prev:before{
    content: url(../img/icon-left-md-light.svg);
}
.arrow-light.arrow-sm .slick-next:before{
    content: url(../img/arrow-right-sm-light.svg);
}
.arrow-light.arrow-sm .slick-prev:before{
    content: url(../img/arrow-left-sm-light.svg);
}

.top-header.arrow-light .slick-next{
    right:15px;
}
.top-header.arrow-light .slick-prev{
    left: 15px;
    z-index: 1;
}

.dots-light .slick-dots{
    bottom: 95px;
    max-width: 1200px;
    display: flex;
    transform: translateX(-50%);
    left: 50%;
    padding-inline: 20px;
}
.dots-light  .slick-dots li{
    margin-inline: 0;
}
.dots-light  .slick-dots li button{
    width: 10px;
    height: 10px;
}
.dots-light .slick-dots li button:before{
    content: "";
    border: 1px solid #fff;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.slick-dots li.slick-active button:before{
    background: #fff;
}

.arrow-dark.arrow-sm.nav-circle .slick-prev{
	left: 5% !important;
    background: #fff;
    fill: #FFF;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
    border-radius: 48px;
    padding: 9px;
    width: 48px;
    height: 48px;
    z-index: 1;
}
.arrow-dark.arrow-sm.nav-circle .slick-next{
	right: 5% !important;
    background: #fff;
    fill: #FFF;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
    border-radius: 48px;
    padding: 9px;
    width: 48px;
    height: 48px;
    z-index: 1;
}
.arrow-dark .slick-next{
    right: -10px !important;
}
.arrow-dark .slick-prev{
    left: -10px !important;
    z-index: 1;
}
.arrow-dark.arrow-sm .slick-next{
    right: -20px !important;
	z-index: 1;
}
.arrow-dark.arrow-sm .slick-prev{
    left: -20px !important;
    z-index: 1;
}

.arrow-dark .slick-prev:before{
    content: url('../img/arrow-left-dark.svg') !important;
}
.arrow-dark .slick-next:before{
    content: url('../img/arrow-right-dark.svg') !important;
}
.arrow-dark.arrow-sm .slick-prev:before{
    content: url('../img/arrow-left-dark-sm.svg') !important;
}
.arrow-dark.arrow-sm .slick-next:before{
    content: url('../img/arrow-right-dark-sm.svg') !important;
}

.carousel-style-1{
	overflow-x: hidden;
}
.carousel-style-1 .item,
.sbi_item{
	width: 100%;
	border-radius: 20px;
	padding: 10px !important;
	overflow:hidden !important;
}
#sb_instagram #sbi_load{
	display: none;
}
.carousel-style-1 .item img,
.sbi_item img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* END SLIDER */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}
.toggle-faq{
	cursor: pointer;
}
.faq-description {
  padding-top: 15px;
  display: none;
}
.faq-description a{
	color: var(--primary);
}
.toggle-icon svg.active {
  transform: rotate(45deg); /* rotate the plus sign to a minus */
  transition: transform 0.3s ease;
}

.faq-item {
	align-self: start;
	padding: 20px 27px;
	margin: 20px 10px;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0px 0px 110px 0px rgba(0, 0, 0, 0.10);
}

.faq-list .faq-item{
	padding: 20px 27px;
	margin: 10px 0;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0px 0px 110px 0px rgba(0, 0, 0, 0.10);
}


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

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.8
}
img.contain{
	object-fit: contain !important;
	object-position: center !important;
}
.lh-xs{
	line-height: 27px;
}
.flex {
    display: flex
}
.page-template-page-container-md main{
	max-width:997px;
	margin: auto;
	width: 100%;
}
.container {
    max-width: 1200px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto
}
.container-sm{
	max-width: 793px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto
}
.container-md{
	max-width: 997px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto
}


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

.contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.bottom30 {
    margin-bottom: 30px;
}

.bottom60 {
    margin-bottom: 60px;
}

.bottom90 {
    margin-bottom: 90px;
}

.menu-item-has-children::after {
/*     content: "\f078"; */
	content:"";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
/*     display: inline-block; */
	display: none;
    top: -1px;
    transition: all 300ms;
    transform: scaleY(1);
}

.menu-item-has-children.sub-menu-active::after {
    transform: scaleY(-1);
}

/* header {
    padding-top: 15px;
    padding-bottom: 15px
} */

header{
	box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.12);
}
/**********
COOKIE    
**********/

#siteCookie {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 30;
    bottom: 0;
    padding: 10px 0;
    width: 100%;
}

#siteCookie,
#siteCookie p,
#siteCookie a,
#siteCookie .fa {
    color: #fff;
    font-weight: 600
}

#siteCookie .inner {
    display: flex;
    align-items: center;
}

#siteCookie p {
    margin-right: 20px
}

#siteCookie .fa {
    font-size: 28px;
    margin-left: auto
}

#siteCookie i {
    cursor: pointer
}

/* HEADER */
.top-header{
    
    color: var(--white);
    padding: 0;
	display: flex;
	justify-content: space-between;
	
}
.top-header .green-col{
	background: var(--primary);
	position:relative;
}
.top-header .red-col{
	background: #EB001B;
}
.top-header .item{
	width: 50%;
	padding: 8px 14px;
	height: 46px;
	display: flex;
	align-items:center;
	justify-content: center;
}


/* END HEADER */

/* FOOTER */
footer{
    background: #FAFAFA;
}
footer .cards img{
    max-width: 66px;
    height: auto;
    object-fit: contain;
    margin-inline: 5px;
}
footer .address p{
    line-height: 24px;
}
.ftr-links{
    list-style: none;
    padding: 0;
    margin: 0;
}
.review-img{
	padding:35px 15px 0;
	display: flex;
	justify-content: center;
}
.review-img img{
	max-width: 480px;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.ftr-links li{
    padding-block: 10px;
}
.ftr-links li a{
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
/*     text-transform: capitalize; */
}
.ftr-links li a:hover{
    color: var(--primary);
}
.ftr-logo img{
    max-height: 86px;
    width: 100%;
    object-fit: contain;
}
.ftr-logo-2 img{
    max-width: 92px;
    width: 100%;
    object-fit: contain;
}
.whitebox{
	overflow: hidden;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 9px 35px 0px rgba(0, 0, 0, 0.15);
    padding: 23px 36px;
}


.gform_required_legend{
    display: none;
}
.whitebox .form-light input[type=text],
.whitebox .form-light input[type=email],
.whitebox .form-light input[type=tel]{
    border-radius: 80px;
    background: #F1F1F1;
    padding: 15px !important;
    width: 100%;
    border: none;
    margin-block: 10px;
}
.whitebox .form-light textarea{
	 border-radius: 20px;
    background: #F1F1F1;
    padding: 15px !important;
    width: 100%;
    border: none;
    margin-block: 10px;
}
.whitebox .form-light .gfield_label{
	font-size: 14px !important;
}
.whitebox .form-light .gfield_radio .gchoice label{
	width: 100%;
}
.whitebox .form-light .gfield_radio .gchoice:last-child{
	padding-inline-end: 0 !important;
}
.whitebox .form-light .gform_confirmation_message {
    font-size: 18px;
    font-weight: 600;
}

#gform_wrapper_4 .gform_description{
	font-size: 14px;
}
.gfield--type-consent {
	margin-top: 20px !important;
}
.gfield--type-consent .ginput_container{
	display: flex;
	align-items: start;
}
/* Base styles for radio labels */
.whitebox .form-light .gfield_radio .gchoice label {
  display: inline-block;
  border: 2px solid #BFBFBF;
  border-radius: 80px;
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
}

/* Hide the default radio input */
.whitebox .form-light .gfield_radio .gchoice input[type="radio"] {
  display: none;
}

/* Style selected (checked) button */
.whitebox .form-light .gfield_radio .gchoice input[type="radio"]:checked + label {
  	border-color: var(--primary);
	color: var(--primary);
}

.whitebox .form-light input::placeholder,
.whitebox .form-light textarea::placeholder{
    color: #AFA7A7;
    font-size: 14px;
    font-weight: 600;
}
.whitebox .form-light.text-center input[type=submit]{
	margin: auto;
}
.whitebox .form-light .gform_title{
	margin-bottom: 20px;
}
.whitebox .form-light .gform_description{
	font-size: 18px;
	margin-bottom: 20px;
}
.whitebox .form-light input[type=submit]{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--text-black);
    border: none;
    padding: 15px 48px;
}
.copyright{
    background: #F1F1F1;
    padding-block: 12px;
}
/* END FOOTER */

/* FORM */
.gform_submission_error.hide_summary{
    font-size: 16px;
    color: var(--red);
}
.gfield_validation_message{
    font-size: 14px;
    color: var(--red);
}

.bg-green-overlay{}

/* END FORM */

.bg-primary{
	background: var(--primary) !important;
}
.bg-green-overlay{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    position: relative;
}
.bg-green-overlay::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(56, 142, 60, 0.00) -3.07%, rgba(0, 90, 0, 0.90) 52.48%);
}

.gallery-grid-1{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 100px);
    grid-gap: 18px;
}
.gallery-grid-2 .item{
	position: relative;
}
.gallery-grid-2 .item img.logo{
	position: absolute;
	width: 116px;
	height: auto;
	object-fit: contain;
	top: 8px;
	left: 50%;
	transform: translatex(-50%);
}
.gallery-grid-1 .item img,
.gallery-grid-2 .item img,
.gallery-grid-3 .item img{
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-grid-1 .item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
}
.gallery-grid-1 .item:nth-child(2){
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery-grid-1 .item:nth-child(3){
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 6;
}
.gallery-grid-1 .item:nth-child(4){
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}

.gallery-grid-2{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 75px);
    grid-gap: 18px;
}

.gallery-grid-2 .item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery-grid-2 .item:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 4;
}
.gallery-grid-2 .item:nth-child(3) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 4;
    grid-row-end: 6;
}
.gallery-grid-2 .item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 6;
}

.gallery-grid-3{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 120px);
    grid-gap: 18px;
}

.gallery-grid-3 .item:first-child {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery-grid-3 .item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 5;
}
.gallery-grid-3 .item:nth-child(3) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
}


.gallery-grid-3.style-2 .item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery-grid-3.style-2 .item:nth-child(2) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}


.gallery-grid-3.style-2 .item:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
}

.gallery-grid-3.style-3 .item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
}


.railway-map{
	position: relative;
    width: 100%;
    aspect-ratio: 1440 / 718;
	background-size: cover !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
	display: flex;
	align-items: center;
	background: #FAFAFA;
}
.map-location{
	position: absolute;
    transform: translate(-50%, -100%);
	display: inline-block;
	z-index: 1;
}


.map-location:hover .station-label{
	background-color: #ffffff;
	border: 2px solid var(--primary);
	
}
.map-location:hover .station-label a{
	color: var(--primary);	
}
.map-location.map-location-1 {
    top: 12%;
    left: 50.8%;
}

.map-location.map-location-2 {
	top: 17%;
	left: 30.7%;
}
.map-location.map-location-3 {
    top: 41%;
    left: 9.7%;
}

.map-location.map-location-4 {
    top: 84%;
    left: 20.5%;
}

.station-label {
    background-color: var(--primary); 
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
	text-transform: uppercase;
}
.station-grid .item{
	display: flex !important;
	align-items: center !important;
	justify-content: center;
	position: relative;
	height: 381px !important;
	border-radius: 20px;
}
.station-grid .item a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.station-label a{
	 color: white;	
	text-align: center;
}

.station-label::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary); ;
}

/* EVENTS */
.event-content p,
.event-content a,
.event-content li {
	font-size: 14px;
	line-height: 20px;
}
.event-content .event-description h2{
	margin-bottom: 20px;
}
.notification{
	padding: 14px 20px;
	border-radius: 6px;
	background: rgba(126, 126, 126, 0.10);
}
.notification ul{
	padding-left: 20px;
}
.notification ul li{
	padding-bottom: 15px;
}
.notification p,
.notification ul li{
	font-weight: 600;
}
.notification .icon {
    width: 18px;
    padding-top: 3px;
    margin-right: 8px;
}
.notification .message p{
	margin-bottom: 0;
}
.border-box{
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
}
.border-box ul {
    padding-left: 20px;
}
.event-content h2,
.event-content h3{
	color: #323232;
}
.border-box h2{
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 700;
}
.border-box.black{
	border: 1px solid #000;	
}
.side-by-side-images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	
}
.gallery-slider .image-main img{
	height: 475px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.gallery-slider .image-items img{
	cursor: pointer;
	width: 90px;
	height: 67px;
	margin: 5px;
	object-fit: cover;
	border-radius: 7px;
	border: 3px solid #FFF;
}
.gallery-slider .image-items .slick-track{
	transform: translate3d(-0, 0px, 0px) !important;	
}
.gallery-slider .image-items img.slick-current{
	border: 3px solid var(--primary);
}
.sticky-top{
	position: sticky;
	top: 20px;
	z-index: 1;
}
.what-to-see img{
	height: 213px;
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

.event-filter-container,
.upcoming-event-filter,
.filter-container{
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
ul.event-filter,
.upcoming-event-filter{
	padding: 0;
	margin: 0 auto;
	list-style: none;
	display: flex;
	justify-content: center;
	width: max-content;
}
/* .event-filter-container, */
.filter-container{
	overflow-x: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.event-filter-container::-webkit-scrollbar,
.filter-container::-webkit-scrollbar{
	display: none; /* Chrome, Safari, Opera */
}
ul.event-filter li,
.upcoming-event-filter li{
	margin-left: 8px;
	margin-right: 8px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 16px;
	border-bottom: 4px solid transparent;
}
li.event-filter-item.active,
ul.event-filter li:hover,
.upcoming-event-filter-item.active,
.upcoming-event-filter li:hover{
	color: var(--primary);
	border-bottom: 4px solid var(--primary);
}
.event-filter-item{
	position: relative;
}
.tabs .event-filter-item{
	padding-left: 30px !important;
}
.event-filter-item:hover:before,
.event-filter-item.active:before{
	filter: invert(19%) sepia(22%) saturate(7274%) hue-rotate(98deg) brightness(96%) contrast(104%);
}
.event-filter-item::before{
	position: absolute;
	top: 10px;
	left:0;
	width: 20px;
	height: 20px;
}
.tab-expanded::before{
	content: url('../img/icon-expanded.svg');
}
.tab-collapse::before{
	content: url('../img/icon-collapse.svg');
}
.tab-calendar::before{
	content: url('../img/icon-calendar.svg');
}
/* END EVENTS */

/* STATIONS */
.single-stations .page-banner{
	margin-bottom: 40px;
}
.page-banner .border,
.banner-contain{
	border-radius: 20px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.page-banner{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.image-square-md{
	width: 100%;
	height: 487px;
	object-fit: cover;
	border-radius: 20px;
}
body.jinty-appeal .image-square-md{
	height: 756px;
	object-fit: contain;
}
.single-stations .image-content p,
.single-stations .image-content li,
.single-stations .image-content span,
.single-stations .image-content a,
body.for-sale .image-content p,
body.for-sale .image-content li,
body.for-sale .image-content span,
body.for-sale .image-content a{
	font-size: 18px;
	line-height: 26px;
}
.plane-content p,
.plane-conten li,
.plane-conten span{
	font-size: 14px;
}
.timetable-container table tbody tr:last-child td,
.custom-calendar-table tbody tr:last-child td{
	border-bottom: none !important;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
	border-radius: 20px;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

table td,
table th{
	font-family: 'Quicksand', sans-serif;
}
.plane-content table td{
	padding: 8px 0;
}
.image-content p,
.image-content li,
.image-content  span{
	font-size: 14px;
	line-height: 20px;
}
.image-content p a{
	color: var(--primary);
}
.image-content ul {
    padding-left: 26px;
}

.image-content h2 {
    margin-bottom: 25px;
}
.image-content h3{
	font-size: 24px;
	line-height: 24px; 
}
.image-content h4{
	font-size: 20px;
	line-height: 24px; 
}

.image-full-contain{
	max-width: 995px;
	width: 100%;
	height:557px;
	border-radius: 20px;
	object-fit: cover;
	display: block;
	margin: auto;
}
.full-content-image img{
	width: 100%;
	height:487px;
	border-radius: 20px;
	object-fit: cover;
	display: block;
	margin: auto;
}
/* END STATIONS */


/* FARES */
.table-fares{
	border-radius: 10px;
	border: 1px solid #000;
}
.table-fares .heading{
	border-radius: 10px 10px 0 0;
	padding: 15px 17px;
}
.table-fares .heading-red{
	background: #EB001B;
	color: #ffffff;
}
.table-fares .heading-purple{
	background: var(--purple);
	color: #ffffff;
}
.table-fares .heading-green{
	background: var(--primary);
	color: #ffffff;
}
.table-fares .heading-yellow{
	background: var(--yellow);
	color: #000;
}
.table-fares .ticket-type{
	padding: 13px 17px;
}

/* END FARES */

.single-engine .page-content img{
	width: 100%;
	height: 487px;
	object-fit: cover;
	border-radius: 20px;
}
.page-content p,
.page-content li,
.page-content div{
	font-size: 14px;
	line-height: 20px;
}
.page-content a:not(.btn){
	color: var(--primary);
	text-decoration: underline;
}
.page-content ul {
    padding-left: 17px;
}
.page-content img.full-image{
	width: 100%;
	display: block;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
}
.page-content table {
	max-width: 100%;
}

/* timeline */
.timeline-wrapper{
	position: relative;
	max-width: 1440px;
	margin: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.timeline_circle,
.timeline-item .pointer::before{
	content: "";
	position: sticky;
	top:15px;
	margin-left: -25px;
	background-color: var(--primary);
    border-radius: 100%;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    min-height: 20px;
    max-height: 20px;
    box-shadow: 0 0 0 4px var(--primary);
	border: 4px solid #fff;
}
.timeline_progress {
  z-index: -2;
  width: 3px;
  height: 100%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.3) 10px,
    transparent 10px,
    transparent 20px
  );
  background-size: 100% 20px;
  animation: dashMove 0.4s linear infinite;
}

@keyframes dashMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 20px;
  }
}

/* Stop animation class */
.timeline_progress.stop-animation {
  animation: none !important;
}

.timeline-item .image img{
	width: 388px;
	max-width: 100%;
	height: 295px;
	border-radius: 20px;
	object-fit: cover;
}
.timeline-item .pointer{
	position: relative;
}
/* end timeline */
/* TABLE */
.table-style-1 .table-item{
	overflow: hidden;
	border-radius: 10px;
	border: 1px solid #000;
}
.table-style-1 .table-item .heading-green,
.table-heading-green{
	background: var(--primary);
	color: #fff;
}
.table-style-1 .table-item .heading-red,
.table-heading-red{
	background: var(--red);
	color: #fff;
}
.table-style-1 .table-item .heading-purple,
.table-heading-purple{
	background: var(--purple);
	color: #fff;
}
.table-style-1 .table-item .heading-orange,
.table-heading-orange{
	background: var(--orange);
	color: #fff;
}
.table-style-1 .table-item .heading-yellow,
.table-heading-yellow{
	background: var(--yellow);
}
.table-style-1 .table-item .item:not(:last-child){
	border-bottom: 1px solid #000;
}
.table-style-1 .table-item .heading,
.table-style-1 .table-item .item{
	padding: 10px 18px;
}
.card-item img{
	width: 100%;
	height: 353px;
	object-fit: cover;
	border-radius: 10px;
}

.event-date-section {
	overflow: hidden;
    border-radius: 20px;
    border: 1px solid #000;
    background: #FFF;
	margin-bottom: 30px;
}
.event-date-heading{
	padding: 15px 30px;
	border-bottom: 1px solid #000;
	background:var(--primary);
	color: #fff;
}
.before-footer .gform-footer.gform_footer.top_label {
    display: none;
}
/* .event-date-grouped .event-date-section:first-child .event-date-heading{
	background:var(--yellow);
	color: #000;
} */
.event-card{
	padding: 20px 30px;
	display: flex;
	align-items: center;
}
.event-date-section .event-thumb img{
	min-width: 153px;
	width: 153px;
	height: 153px;
	object-fit: cover;
	border-radius: 10px;
}
.event-date-section .event-card:not(:last-child){
	border-bottom: 1px solid #000;
}
.event-collapse  .event-date-heading{
	height: 100%;
	border-bottom: none;
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
}
.event-collapse .collapse-heading{
	width: 20%;
	border-right: 1px solid #000;
}
.event-date-grouped .event-date-section .collapse-heading{
	background: var(--primary);
	
}

.event-date-grouped .event-date-section:first-child .collapse-heading{
	background: var(--yellow);
}
.event-collapse .event-card{
	height: 100%;
	width: 80%;
}
.event-collapse .highlight {
	border-radius: 4px;
	padding: 3px 5px;
	line-height: 18px;
}
.event-collapse .highlight img,
.event-calendar .highlight img{
	width: 23px;
	height: 23px;
	object-fit: cover;
	border-radius: 3px;
}
.calendar-header .nav .prev,
.calendar-header .nav .next{
	cursor: pointer;
}

.event-collapse .event-date-section{
	margin-bottom: 20px;
}

.custom-calendar-table {
  min-height: 800px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 10px;
  overflow: hidden;
}
.custom-calendar-table th{
	font-size: 14px;
	color: #fff;
	background: var(--primary);
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	
}
.custom-calendar-table tr td:last-child{
	border-right:none;
}
.custom-calendar-table tr td:first-child{
	border-left:none;
}

.custom-calendar-table td {
	border: 1px solid #000;
}

.event-calendar {
    border: 1px solid;
    border-radius: 10px;
}
/* .calendar-wrapper{
	position: relative;
} */

.custom-calendar-table th,
.custom-calendar-table td {
	overflow-x: hidden;
  padding: 8px;
	text-align: center;
  vertical-align: top;
}
.custom-calendar-table td.calendar-day{
	text-align: left;
}
.custom-calendar-table .day-number {
  font-weight: bold;
  margin-bottom: 8px;
}
.custom-calendar-table .calendar-event {
  margin-bottom: 5px;
}
.calendar-event img {
  max-width: 24px;
  height: auto;
  margin-right: 4px;
  vertical-align: middle;
}
.event-badge {
  display: inline-block;
  padding: 2px;
  font-size: 12px;
}
.event-expanded .event-badge,
.custom-calendar-table .event-badge{
 	padding: 2px 10px;
	font-family: 'Quicksand', sans-serif;
}
.custom-calendar-table .event-badge{
	font-size: 10px;
}
.event-collapse .event-badge {
	 border-radius: 4px;
	font-family: 'Quicksand', sans-serif;
}

.calendar-event .event-badge{
	width: max-content;
}

#event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 270px;
  max-width: 100%;
  display: none;
  z-index: 9999;
}

.event-popup-content {
  background: #fff;
  width: 100%;
  filter: drop-shadow(0px 7px 20px rgba(0, 0, 0, 0.30));
}
.event-popup-content .image-wrap{
	height: 160px;
	width: 100%;
	position: relative;
}
.event-popup-content .info{
	padding: 13px 15px;
}
.event-popup-content .image-wrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.event-overlay-close {
  position: absolute;
  top: 0px;
  right: 10px;
z-index: 1;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


.tickets-wrap .ticket-item{
	display: flex;
	align-items: stretch;
	position: relative;
	border-radius: 10px;
	border: 1px solid #000;
	margin-bottom: 10px;
	overflow: hidden;
}

.tickets-wrap  .ticket-item .date{
	padding: 20px 18px;
	background: var(--primary);
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}
.tickets-wrap  .ticket-item.sold-out .date{
	background:#989898;
}
.tickets-wrap  .ticket-item .date p{
	font-size: 24px;	
	font-weight: 700;
	line-height: 32px;
}
.tickets-wrap  .ticket-item .date span{
	font-size: 18px;	
	font-weight: 700;
}
.tickets-wrap  .ticket-item .date{
	width: 25%;
}
.tickets-wrap  .ticket-item .info{
	width: 75%;
	padding: 20px;
}
.tickets-wrap  .ticket-item .info p{
	font-weight: 700;
}

/* END TABLE */

/* STOCKLIST */
.stocklist-item{
   height: 388px;
   position: relative;
   overflow: hidden;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	max-width: 100%;
}
.stocklist-item h3{
	font-size: 32px;
	z-index: 2;
}
.stocklist-item::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0 ,0 , 0, 0.2);
	z-index: 1;
}

.stocklist-item img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	z-index: 0;
}
.stocklist-item:hover img {
	transform: scale(1.1);
}

.engine-item img{
	border-radius: 20px;
	width: 100%;
	height: 388px;
	object-fit: cover;
}
.engine-item:hover h3{
	color: var(--primary);
}
.engines-list a:hover{
	opacity: 1;
}
.term-the-kent-cheese-train .image-with-text .col-12.col-md-8 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}
.image-with-text .btn{
	margin-top: 20px;
}

/* END STOCKLIST */


/* TICKET */

.ticket-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.ticket-popup .popup-content {
  background: #fff;
  position: relative;
  max-width: 1200px;
  width: 100%;
  border-radius: 10px;
	overflow-y: hidden;
}
.ticket-popup .popup-image{
	width: 100%;
	height: 320px;
	position: relative;
}
.ticket-popup .popup-image::after{
	content: "";
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.40);
}

.ticket-popup .popup-heading{
	background: #fff;
	padding: 2rem;
}
.ticket-popup .popup-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ticket-popup .popup-content .info {
/* 	padding: 15px 2rem 0; */
	overflow-y: auto;
/* 	height: 440px; */
	height: 640px;
	scrollbar-width: thin; /* For Firefox */
	scrollbar-color: #333 transparent;
	background: #ffffff;
}

/* Chrome, Safari and Edge (Webkit-based) */
.ticket-popup .popup-content .info::-webkit-scrollbar {
	width: 4px;
}

.ticket-popup .popup-content .info::-webkit-scrollbar-track {
	background: transparent;
}

.ticket-popup .popup-content .info::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 4px;
	border: none;
}

/* REMOVE scrollbar buttons (arrows) for WebKit */
.ticket-popup .popup-content .info::-webkit-scrollbar-button:single-button {
	display: none;
	height: 0;
	width: 0;
	background: transparent;
}

.ticket-popup .close-popup {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 38px;
    cursor: pointer;
    color: #000;
    z-index: 1;
}

.ticket-type-table-wrapper {
	overflow-x: auto;
	margin-bottom: 2rem;
	border: 1px solid #000;
	border-radius: 8px;
	border-bottom: none;
	
}

.ticket-type-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
	border-radius: 8px;
	overflow: hidden;
}
.ticket-type-table td{
	font-weight: 500;
	padding: 0.95rem 1.5rem;
}

.ticket-type-table th,
.ticket-type-table td {
	border-bottom: 1px solid #000;
    
    text-align: left;
    vertical-align: middle;
	font-size: 14px;
}
.ticket-type-table th{
	padding: 1.5rem;
}

.ticket-type-table th {
	font-weight: 700;
	background: var(--primary);
	color: #fff;
}

/* Wrapper to position relative */
.custom-select-wrapper {
	position: relative;
	width: 100%;
}

/* Styled select with right padding for icon */
.custom-select-wrapper select#ticket_format {
	width: 100%;
	font-size: 14px;
	padding: 12px 15px;
	padding-right: 50px; /* reserve space for icon */
	border-radius: 80px;
	border: 1px solid #ccc;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	cursor: pointer;
}

/* Custom icon placement */
.custom-select-icon {
	position: absolute;
	right: 15px;
	top: 55%;
	transform: translateY(-50%);
	pointer-events: none; /* don't block clicks */
}

/* Optional: style the icon */
.custom-select-icon svg {
	width: 20px;
	height: 20px;
}



.qty-control {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.qty-control input[type="number"] {
	width: 36px;
	text-align: right;
	border: none;
	background: transparent;
	font-size: 14px;
	pointer-events: none;
}

.qty-btn {
	border: 1px solid #333;
	background: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	text-align: center;
	line-height: 26px;
	cursor: pointer;
	font-weight: bold;
}
.note{
	position: relative;
	padding: 14px 20px;
    border-radius: 6px;
    background: rgba(126, 126, 126, 0.10);
	padding-left: 45px;
}
.note:before{
	content: "";
	position: absolute;
	left: 15px;
	top: 15px;
	background-image: url('../img/note.svg');
	width: 20px;
	height: 20px;
	background-size: contain;
	background-repeat: no-repeat;
}

/* END TICKET */
.loading-gif-wrapper{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 408px;
}
.loading-gif-wrapper img{
	max-width: 100%;
	width: 75px;
	height:75px;
	object-fit: contain;
}
.loading-video-wrapper video{
	width: 100px;
	height: 100px;
	object-fit: contain;
}
/* 404 */

.img-404 img{
	max-width: 277px;
	width: 100%;
	height: auto;
}
.wrapper-404 .inner h1{
	font-size: 36px;
}


@media(max-width: 1440px){
	.gallery-grid-2{
    	grid-template-rows: repeat(5, 70px);
	}
}

@media only screen and (min-width: 1140px) {
/* 	.card-style-1 .card{
		width: 280px !important;
	} */
	.timeline-item h2{
		width: 147px;
	}
	
    /**********
    COLUMNS
    **********/
    .twoCol {
        width: calc(100% + 30px);
        position: relative;
        left: -15px;
    }
    .twoCol .col {
        width: 50%;
        padding: 15px;
    }
    .threeCol .col {
        width: 33.33%;
        padding: 15px;
    }
    .fourCol .col {
        width: 25%;
        padding: 15px;
    }
    .fiveCol .col {
        width: 20%;
        padding: 15px;
    }
    /**********
    HEADER NAV
    **********/
    header .flex {
        align-items: center;
        justify-content: space-between;
    }
    header .logo img {
        max-height: 51px;
        max-width: 100%;
        object-fit: contain;
    }
	nav.nav ul:not(.sub-menu) li a{
		text-transform: uppercase;
	}
	nav.nav ul.sub-menu li a{
		text-transform: capitalize;
	}
	nav.nav ul li a{
		padding-top: 15px;
		padding-bottom: 35px;
		
	}
    
    nav.nav ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    nav.nav ul li {
        position: relative;
        margin-left: 35px;
    }
    nav.nav ul li a:hover,
    nav.nav ul li.current_page_item > a{
        color: var(--primary);
    }
    nav.nav ul li:first-child {
        margin-left: 0;
    }
    /**********
    submenu popup
    **********/
    nav.nav .sub-menu {
       	max-height: 0;
        overflow: hidden;
        position: absolute;
        flex-wrap: wrap;
/*         transition: all 200ms; */
		transform: translatex(-50%);
		left: 50%;
    }
    .menu-item-has-children::after {}
    nav.nav .menu-item-has-children.sub-menu-active>.sub-menu {
		margin-top: 35px;
		max-height: 900px;
		padding: 20px;
		background: var(--yellow);
		width: 302px !important;
		z-index: 20;
    }
	nav.nav .sub-menu-active li{
		padding: 10px 0;
	}
    nav.nav .sub-menu li {
        width: 100%;
        margin-left: 0;
        display: inline-block;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 1140px) {
	.links-m-nav {
    	display: flex;
		flex-direction: column;
		width: 100%;
		padding: 10px 20px;
	}
	.links-m-nav a{
		margin-bottom: 10px;
	}
	header .bg-white{
		min-height: 81px;
	}
	header .flex{
		justify-content: space-between;
	}
	.menu-item-has-children::after {
		content: "\f078";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		font-size: 11px;
		display: inline-block;
		top: -1px;
		transition: all 300ms;
		transform: scaleY(1);
	}
	header{
		box-shadow: none;
	}
	button.go-back-button {
		position: absolute;
		top: -60px;
		background: none;
		border: none;
		left: 20px;
		font-size: 16px;
		font-weight: bold;
		padding: 10px 20px;
		background-image: url('../img/icon-left-sm-dark.svg');
		background-size: 10px;
		background-repeat: no-repeat;
		background-position: left center;
	}
	.menu-item-has-children.sub-menu-active > a{
		font-size: 12px;
		color:rgba(10, 10, 10, 0.5);
		pointer-events: none;

	}
	
	.menu-item-has-children.sub-menu-active::after{
		display:none;
	}
/* 	header .container.bg-white{
		box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.12);
	} */
	.sub-menu-active ul{
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
	.sub-menu-active ul li a{
		font-size: 14px !important;
		font-weight: 500;
		color: #0A0A0A;
		border-bottom: none !important;
	}
	.gallery-grid-2{
		grid-template-rows: repeat(5, 55px);
	}
   
    .flex .links{
        display: flex;
        align-items: center;
		margin-right: 50px;
    }
	header .logo{
		height: 45px;
	}
    header .logo img {
        max-height: 45px;
    }
    header .logo {
        position: relative;
        z-index: 20;
    }
    /**********
    HEADER NAV
    **********/
    body.fix {
        overflow: hidden;
    }
    header .nav {
        position: fixed;
		left: 0;
        top: -100%;
        z-index: -1;
/*         height: 50vh; */
        width: 100%;
        background-color: #ffffff;
        transition: all 300ms;
    }
	.top-header{
		position: relative;
		z-index: 11;
	}
	header{
		position: relative;
		z-index: 11;
	}
    header .nav.navActive {
        top: 127px;
        transition: all 300ms;
		border-top: 3px solid var(--primary);
		padding-top: 20px;
		padding-bottom: 20px;
    }
    header .nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    header .nav>ul {
        margin-top: 0;
        box-sizing: border-box;
/*         padding-left: 15px;
        padding-right: 15px; */
		margin-bottom: 25px;
		width: 100%;
    }
    header .nav>ul li {
        position: relative;
		
    }
	header .nav > ul:not(.sub-menu) li a{
		padding: 15px 15px;
		border-bottom: 1px solid #f1f1f1;
	}
    header .nav>ul li a {
        display: block;
        width: 100%;
		font-size: 18px;
    }
    .menu-item-has-children::after {
        position: absolute;
		top: 18px;
        right: 27px;
		transform: rotate(-90deg);
    }
    #burgerNav {
        position: absolute;
        top: 66px;
        right: 15px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 90;
		border: 1px solid #000;
        padding: 10px;
        border-radius: 40px;
    }
    #burgerNav .innerBurger {
        position: relative;
        height: 100%;
    }
    #burgerNav .innerBurger span {
        width: 100%;
        height: 2px;
        top: 0;
        background-color: #000;
        position: absolute;
        opacity: 1;
        transition: all 300ms;
        transform: rotate(0deg);
    }
    #burgerNav.navActive .innerBurger span {
        transition: all 300ms;
    }
    #burgerNav .innerBurger span:nth-child(1) {
        top: 24%;
    }
    #burgerNav .innerBurger span:nth-child(2) {
        top: 50%;
    }
    #burgerNav .innerBurger span:nth-child(3) {
        top: 75%;
    }
    #burgerNav.navActive .innerBurger span:nth-child(1) {
        top: 50%;
        transform: rotate(-45deg);
    }
    #burgerNav.navActive .innerBurger span:nth-child(2) {
        top: 50%;
        opacity: 0;
    }
    #burgerNav.navActive .innerBurger span:nth-child(3) {
        top: 50%;
        transform: rotate(45deg);
    }
   nav.nav .sub-menu {
	  max-height: 0;
	  overflow: hidden;
	  flex-wrap: wrap;
	  transform: translateX(100%);
	  opacity: 0;
	  transition: transform 300ms ease, opacity 300ms ease, max-height 300ms ease;
	}

	.menu-item-has-children::after {
	  margin-left: 8px;
	}

	nav.nav .menu-item-has-children.sub-menu-active > .sub-menu {
	  max-height: 900px;
	  width: 100% !important;
	  transform: translateX(0);
	  opacity: 1;
	}

	/* Optional: Smooth fade/slide back when closed */
	nav.nav .menu-item-has-children > .sub-menu {
	  will-change: transform, opacity;
	}

}

@media(min-width: 991px){
	
	.top-header .green-col::after {
	  content: '';
	  position: absolute;
	  top: 0;
	  right: -20px;
	  width: 40px;
	  height: 100%;
	  background-color: #EB001B; /* same as red-col */
	  transform: skewX(-36deg);
	  z-index: 2;
	}
	.event-card .event-buttons{
		margin-left: auto;
	}
	.timeline-item:nth-child(odd) .image .pointer-mobile{
		position: sticky;
		top: 25px;
		margin-left: -25px;
		background-color: var(--primary);
		border-radius: 100%;
		width: 20px;
		min-width: 20px;
		max-width: 20px;
		height: 20px;
		min-height: 20px;
		max-height: 20px;
		box-shadow: 0 0 0 4px var(--primary);
		border: 4px solid #fff;
	}
    .hero-slider .item h1{
        font-size: 64px;
        font-style: normal;
        font-weight: 700;
        line-height: 60px;
    }
	.timeline-item:nth-child(odd) .pointer::before{
		display: none;
	}
	.timeline-item:nth-child(even) h2{
		text-align: right;
	}
	.timeline-item h2{
		max-width: 100%;
		font-size: 32px;
	}
	.timeline-item .description{
		 max-width: 490px;
	}
	.timeline-item:nth-child(odd) .description{
		padding-right: 3rem !important;
        margin-left: auto;
	}
	.timeline-item:nth-child(odd) .description p{
		text-align: right;
	}
	.timeline-item:nth-child(even) .image{
		justify-content: end;
		
	}
	.timeline-item:nth-child(odd) .image,
	.timeline-item:nth-child(odd) .content img{
		order: 2;
	}
	.timeline-item:nth-child(odd) .content img{
		margin-left: 3rem;
	}
	.timeline-item:nth-child(even) .content img{
		margin-right: 3rem;
	}
	.timeline_progress {
		height: calc(100% - 400px);
		top: 50%;
		transform: translate(-50%, -50%);
		left: 50%;
	}
}
@media(max-width:991px){
	.top-header p,
	.top-header span,
	.top-header a{
		font-size: 12px !important;
	}
	.desktop{
		display: none;
	}
	.event-card .event-buttons{
		margin: auto;
	}
	.timeline-item .content{
		display: flex;
		align-items: start !important;
		flex-direction: column;
	}
	.timeline-item .content h2{
		order: 1;
	}
	.timeline-item .content img{
		order: 2;
	}
	.pointer-mobile{
		margin-bottom: -40px;
		position: sticky;
		top: 25px;
		margin-left: -15px;
		background-color: var(--primary);
		border-radius: 100%;
		width: 20px;
		min-width: 20px;
		max-width: 20px;
		height: 20px;
		min-height: 20px;
		max-height: 20px;
		box-shadow: 0 0 0 4px var(--primary);
		border: 4px solid #fff;
	}
	.timeline-wrapper{
		padding-left: 15px;
		padding-right: 15px;
	}
	.timeline_progress {
        top: 39px;
        left: 22px;
    }
	.timeline-item .image img{
		height: 219px;
	}
	.timeline_circle, .timeline-item .pointer::before{
		display: none;
	}
	
	
}
@media(min-width: 768px) and (max-width: 824px){
	.gallery-grid-2 {
		grid-template-rows: repeat(5, 42px);
		gap: 10px;
	}
	.railway-map h2{
		font-size: 28px !important;
		margin-bottom: 10px !important;
	}
	.railway-map p{
		font-size: 16px !important;
	}
}
@media(max-width: 824px){
	.station-label{
		text-align: center;
		padding: 4px 15px !important;
		border-radius: 4px;
	}
	.station-label a{
		font-size: 10px !important;
	}
	
	
}

@media(min-width: 768px){
	.event-filter-select{
		display: none;
	}
	.event-filter-container{
	overflow-x: hidden;
	}
	.links-m-nav{
		display: none;
	}
	.font-lg{
		font-size: 24px !important;
	}
	.font-md p,
	.font-md{
		font-size: 18px !important;
	}
	
	body:not(.our-stations) .page-banner{
		margin-bottom: 2rem;
	}
	.tickets-wrap .ticket-item .info p{
		max-width: 400px;
	}
	.event-collapse .collapse-heading .event-date-heading{
		padding: 23px 0;	
	}
	.whitebox .form-light .gfield:not(.hidden_label) .gfield_label{
		margin-bottom: 0;
		width: 30%;
		float: right;
        text-align: left;
	}
	.whitebox .form-light .gfield_radio{
		display:flex !important;
	}
	.whitebox .form-light .gfield_radio .gchoice{
		width: 50%;
	}
	.whitebox .form-light .gfield:not(.hidden_label){
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.whitebox .form-light .gfield:not(.hidden_label) .ginput_container {
		width: 70%;
	}
	.page-banner,
	.event-banner{
		min-height: 317px;
		display: flex;
		align-items: center;
	}
    .whitebox .form-light form{
        width: 656px;
        max-width: 100%;
    }
    #field_submit{
        display: inline-block;
    }
/*     .gfield--width-third:not(#field_submit){
        width: 33%;
        display: inline-block;
        margin-right: 12px;
    } */
	.bottom-nav .nav-links .ticket-btn,
	.bottom-nav .bottom-nav-close{
		display: none;
	}
	.bottom-nav .nav-links{
		padding-bottom: 10px;
	}
	
}

@media(max-width: 767px){
	.img-404 img{
		max-width: 177px;
	}
	.wrapper-404 .inner h1 {
		font-size: 28px;
		margin-bottom:10px !important;
	}
	
	.card-style-1{
		padding-left: 15px;
		padding-right: 15px;
	}
	.event-filter-container{
		border-bottom: none;
	}
	/* Use your existing style */
.event-filter-select {
    width: 100%;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid #000;
    font-weight: 600;
    background: url("../img/arrow-down.svg") no-repeat right 12px center / 12px auto;
    position: relative;
    cursor: pointer;
}

/* Hide dropdown list by default */
.event-filter-select .dropdown-options {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    z-index: 10;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}
.event-filter-select .dropdown-options li.active{
	color: var(--primary);
	background: url("../img/icon-check.svg") no-repeat right 16px center / 16px auto;
}
.event-filter-select .dropdown-options li {
    padding: 10px 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.event-filter-select .dropdown-options li:hover {
    background: #f3f3f3;
}

/* Show options when active */
.event-filter-select.active .dropdown-options {
    display: block;
}

	p.copyright{
		font-size: 10px !important;
		
	}
	.station-grid h3{
		font-size: 18px;
		line-height: 24px;
	}
	footer .cards img {
		max-width: 35px;
		margin-inline: 3px;
	}
	.carousel-style-1 .item{
		height: 243px;
	}
	.single-stations .image-content p,
	.single-stations .image-content li,
	.single-stations .image-content span,
	.single-stations .image-content a,
	body.for-sale .image-content p,
	body.for-sale .image-content li,
	body.for-sale .image-content span,
	body.for-sale .image-content a{
		font-size: 14px;
		line-height: 20px
	}
	.info-col{
		text-align:center;
	}
	.image-content ul {
		text-align: left;
	}
	.note{
		font-size: 12px;
		text-align: left;
		font-weight: 600;
	}
	
	.info-col h2{
		font-size: 24px !important;
		line-height: 42px;
	}
	.image-content h2 {
		font-size: 24px !important;
		margin-bottom: 15px;
	}
	body.our-stations .image-content img{
		max-width: 207px;
		width: 100%;
		margin-bottom: 0;
	}
	body.our-stations .railway-map h2{
		font-size: 48px !important;
		line-height: 42px;
	}
	.what-to-see h4 a{
		font-size: 18px !important;
	}
	.bottom-nav {
		position: fixed;
		bottom: 0;
		background: #ffffff;
		width: 100%;
		left: 0;
		padding: 15px 20px;
		border-radius: 20px 20px 0px 0px;
		background: #FFF;
		box-shadow: 0px 9px 35px 0px rgba(0, 0, 0, 0.65);
	}
	.bottom-nav .nav-links{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.bottom-nav .nav-info,
	.bottom-nav-close{
		display: none;
	}
	.bottom-nav-close {
		text-align: right;
	}
	.tickets-wrap .ticket-item .date{
		width: 45%;
		
	}
	.sticky-top .links{
		display: flex;
		flex-direction: column;
		align-items: start;
	}
	.tickets-wrap .ticket-item .info{
		width: 55%;
	}
	.event-content h2{
		font-size: 24px !important;
	}
	.event-content p, .event-content a, .event-content li{
		font-size: 12px;
	}
	.image-with-text img{
		margin-bottom: 20px;
	}
	.gallery-slider .image-main img {
		height: 294px;
	}
	.calendar-header .nav .prev,
	.calendar-header .nav .next{
		padding:8px !important;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 5px;
		border: 1px solid #000;
		border-radius: 100%;
	}
	.calendar-event .event-badge{
		width: unset;
		border-radius: 4px;
		padding: 4px;
		font-size: 8px;
		line-height: normal;
	}
	
	.custom-calendar-table th{
		padding: 10px 6px;
		font-size: 10px;
	} 
	.custom-calendar-table td{
		padding: 4px;
		font-size: 8px;
	}
	.single-fundraising .page-banner{
		margin-bottom: 0 !important;
	}	
	.page-banner h1,
	.event-banner h1{
		font-size: 28px !important;
		line-height: 44px;
	}
	.event-collapse .event-card .event-badge .term-name{
		 display: inline-block;
		  max-width: 35ch;
		  white-space: nowrap;
		  overflow: hidden;
		  text-overflow: ellipsis;
		}
	.event-collapse .event-date-heading{
		flex-direction: row !important;
	}
	.event-collapse .event-date-heading span{
		font-size: 18px !important;
	}
	.event-expanded .event-card{
		padding: 20px;
	}
	.btn-plane.icon-right.dark{
		padding:10px 22px 10px 10px;
		border-radius: 50px;
		border: 1px solid #000;
	}
	.btn-plane.icon-right.dark::after {
		right: 5px;
	}
	.event-details .dates p{
		font-size: 12px;
	}
	.event-card{
		justify-content: center;
		text-align: center;
	}
	.event-collapse .event-card .event-badge{
		width: 100%;
		display: block;
		position: relative;
		padding: 6px 10px;
	}
	.event-collapse .event-card .event-badge:after{
		content: url(../img/icon-right-sm-dark.svg);
		position: absolute;
		top: 61%;
    	transform: translateY(-50%);
		right:0;
		width: 20px;
		height: 20px;
	}
	.event-collapse .event-details{
		width: 100%;
	}
	.event-collapse .event-details a{
		font-size: 12px;
		text-align: left;
	}
	.event-collapse .event-card{
		padding: 14px;
		
	}
	.event-card .event-badge{
		margin-bottom: 10px !important;
	}
	.event-date-heading{
		text-align: center;
		font-size: 18px;
		line-height: 36px;
		padding: 7px 15px;
	}
	.faq-description p,
	.faq-description a{
		font-size: 14px;
	}
	.gallery-grid-2{
		 grid-template-rows: repeat(5, 72px);
	}
	.before-footer .whitebox p{
		font-size: 20px;
		margin-bottom: 15px;
	}
	.gallery-grid-1 {
		grid-template-rows: repeat(5, 69px);
	}
	.collapse-content .faq-item:first-child{
		margin-top: 0 !important;
	}
	.wm-100{
		width: 100%;
	}
	.toggle-faq h4{
		font-size: 16px !important;
		font-weight: 500 !important;
	}
	section.railway-map.home{
		background-image:url('/wp-content/uploads/2025/07/M_Map.jpg') !important;
		aspect-ratio: 454 / 1006;
		background-size: contain !important;
		min-height: 1035px !important;
		background-color: #f7f7f7;
	}
	body.our-stations section.railway-map{
		background-image: url(/wp-content/uploads/2025/07/M_Map.jpg) !important;
        aspect-ratio: 454 / 527;
        background-size: contain !important;
        min-height: 725px !important;
        background-color: #f7f7f7;
		margin-bottom: 0 !important;
	}
	.station-grid .item {
		height: 227px !important;
	}
	 body.our-stations section.railway-map .container {
        position: absolute;
        top: 66%;
    }
	section.railway-map .btn{
		width: 100%;
	}
	section.railway-map .container{
		position: absolute;
   		 top: 47%;
	}
	.map-location.map-location-1 {
		top: 4%;
        left: 87%;
	}
	.map-location.map-location-2 {
		top: 6%;
		left: 50.9%;
	}
	.map-location.map-location-3 {
		top: 16%;
		left: 13.7%;
	}
	.map-location.map-location-4 {
		top: 33%;
		left: 32.9%;
	}
	body.our-stations .map-location.map-location-1 {
		top: 6%;
	}
	body.our-stations .map-location.map-location-4 {
		top: 44%;
	}
	body.our-stations .map-location.map-location-2 {
		top: 8%;
	}
	body.our-stations .map-location.map-location-3 {
		top: 21%
	}
	p,
	.font-md p, 
	.font-md{
		font-size: 14px;
		line-height: 18px;
	}
	.hero-slider{
		margin-bottom: 0 !important;
	}
	.btn-desktop{
		display: none !important;
	}
	.card-style-1 .info p,
	.card-style-1 .highlight,
	.card-style-1 .highlight-plane{
		font-size: 10px;
		line-height: 18px;
	}
	.flex .links{
		display:none;
	}
	.card-style-1 .card .info{
		padding: 8px;
	}
	
	body.jinty-appeal .image-square-md{
		height: 456px;
		object-fit: contain;
	}
	.card-style-2 img{
		height: 280px;
	}
	.map-container .map iframe{
		height: 280px !important;
	}
	.faq-row .collapse-content .faq-item:last-child{
		margin-bottom: 0;
	}
	h1{
		font-size: 41px;
		line-height: 44px;
	}
	.hero-slider p{
		font-size: 18px !important;
	}
	.single-engine .page-content img{
		height: 320px;
	}
	
	
	h2{
		font-size: 28px !important;
	}
	h2 a{
		font-size: 24px;
	}
	.top-header{
		padding-left: 0;
		padding-right: 0;
	}
	
	
	.ticket-item{
		flex-wrap: wrap;
	}
	.ticket-item .date,
	.ticket-item .info{
		width: 100%;
		text-align: center;
	}
	.stocklist-item,
	.engine-item img{
		height: 288px;
	}
	
	.image-full-contain{
		height: 320px;
		
	}
	.full-content-image img{
		height: 280px;
	}
	.page-content img.full-image {
		height: 288px;
	}
	.event-collapse .collapse-heading .event-date-heading{
		padding: 10px 0;	
	}
	.event-collapse .collapse-heading,
	.event-collapse .event-card{
		width: 100%;
	}
	.event-collapse .event-date-section {
		flex-direction: column;
	}
	.event-collapse .collapse-heading {
		border-right: none;
	}
	.event-date-section .event-thumb img{
		width: 100%;
	}
	.whitebox .form-light .gfield_radio .gchoice{
		width: 48%;
	}
	.whitebox .form-light .gfield .ginput_container {
		width: 100%;
	}
	.railway-map{
		align-items: end;
        min-height: 862px;
        background-size: 1179px 601px !important;
        background-position: left top !important;
    }
	.station-label {
		background-color: var(--primary);
		position: relative;
		text-transform: uppercase;
	}
    .bg-green-overlay::before{
        background: linear-gradient(180deg, rgba(56, 142, 60, 0.00) -3.07%, rgba(0, 90, 0, 0.90) 52.48%);
    }
    .card-style-1 .card img{
        height: 300px;
    }
	.card-style-1 .card .info {
		height: calc(100% - 192px);
	}
	

    .hero-slider .item .overlay-pink {
        background: linear-gradient(180deg, rgba(255, 81, 171, 0.00) 21.58%, rgba(255, 81, 171, 0.90) 76.06%);
    }
    .hero-slider .item .overlay-green{
        background: linear-gradient(180deg, rgba(56, 142, 60, 0.00) 21.58%, rgba(0, 90, 0, 0.90) 71.57%);
    }
    .hero-slider .item .overlay-blue{
        background: linear-gradient(180deg, rgba(0, 131, 185, 0.00) 21.58%, rgba(0, 131, 185, 0.90) 74.17%);
    }
    .hero-slider .item .overlay-orange{
        background: linear-gradient(180deg, rgba(102, 47, 0, 0.00) 21.58%, rgba(102, 47, 0, 0.90) 74.17%);
    }
    .hero-slider .item .overlay-red{
        background: linear-gradient(180deg, rgba(134, 0, 0, 0.00) 21.58%, rgba(134, 0, 0, 0.90) 74.17%);
    }
    .hero-slider .item .overlay-dark.blue{
        background: linear-gradient(180deg, rgba(0, 31, 108, 0.00) 21.58%, rgba(0, 31, 108, 0.80) 69.06%);
    }
	.hero-slider .item .video-repeat{
		z-index: -1;
	}

}
@media(max-width:600px){
	.hero-slider .item img, .hero-slider .item .video-repeat {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
	}
	
	.hero-slider .item .video-repeat video {
		width: 100vw;
		height: 100%;
		object-fit: cover;
	}
	 .hero-slider .slick-dots {
        bottom: -10px !important;
        justify-content: center;
    }
	.hero-slider.dots-light .slick-dots li button:before{
		border: 1px solid #000;
	}
	.hero-slider .slick-dots li.slick-active button:before{
		background: #000;
	}
	.hero-slider .item h1{
		font-size: 30px;
		line-height: 34px;
		margin-bottom: 10px !important;
	}
	.hero-slider .item{
		height: 220px !important;
		margin: 20px 5px; 
		border-radius: 10px;
		overflow: hidden;
		align-items: center;
	}
	.hero-slider p{
		display: none;
	}
	.event-result{
		max-width: 100%;
		margin: auto;
		justify-content: center;
	}
	.hero-slider .item {
		place-items: end;
		align-items: center;
	}
	.hero-slider .item .row{
/* 		margin-bottom: 20px; */
	}
	
	.card-style-1 .card{
		max-width: 389px;
        width: 100%;
        margin: 0 auto 15px;
	}
	.btn.ticket .btn-text {
		display: none;
	}	
	.btn.ticket {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 92px;
		position:relative;
		padding:6px 10px !important;
	}
	.btn.ticket img{
		 position: absolute;
        top: 50%;
		transform: translatey(-50%);
        right: 12px;
        width: 15px;
        height: 15px;
	}
	.btn.ticket::before {
		content: "";
		display: inline-block;
		background: url('../img/icon-ticket.svg') no-repeat center center;
		background-size: 28px 28px; /* Adjust size */
		width: 28px;
		height: 28px;
	}

	.gallery-grid-3 {
		grid-template-rows: repeat(4, 83px);
	}
	.image-square-md {
		height: 333px;
	}
	.card-item img{
		width: 100%;
		height: 283px;
	}
    .ftr-links li{
        padding-block: 5px;
    }
}
@media(max-width: 513px){
/* 	#burgerNav {
        position: absolute;
        top: 82px;
	} */
	.top-header p{
		line-height: 28px;
	}
}

@media(max-width: 420px){
	section.railway-map .container {
		position: absolute;
		top: 48% !important;
	}
	 body.our-stations section.railway-map .container {
        position: absolute;
        top: 63% !important;
    }
	.map-location.map-location-4 {
        top: 30% !important;
        left: 32.9%;
    }
	body.our-stations .map-location.map-location-4{
		top: 42% !important;
	}
}