@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	/* Colors */
	--primary-color: #EAB308;
	--secondary-color: #FEF9C3;
	--accent-text-color: #ffffff;
	--dark-color: #000000;
	--white-color: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--secondary-heading-color);
	text-align: left;
	font-size: 15px;
	font-weight: 400;
}

p {
	font-size: 15px;
	columns: var(--accent-text-color);
	margin-bottom: 0;
	font-weight: 400;
}

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

ul,
ol {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--secondary-heading-color);
}

a:hover {
	color: var(--secondary-heading-color);
}

/* hero_banner_section css start */
/* .hero_banner_section {
padding: 40px 0;
} */

.hero_banner {
	height: 504px;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	padding: 20px ;
}

.hero_banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #161718ab;
	border-radius: 0px;
	z-index: -1;
}

.hero_banner_content {
	text-align: center;
	color: var(--white-color);
	z-index: 1;
}

.hero_banner_content h1 {
	font-weight: 600;
	font-size: 55px;
	font-family: 'Changa' ;
}

.hero_banner_content p {
	font-weight: 16px;
	font-size: 20px;
	font-family: 'Changa' ;
}

.hero_banner_content a {
	font-family: 'Changa' ;
	padding: 15px 40px;
	background: var(--primary-color);
	display: inline-block;
	margin-top: 10px;
	border-radius: 50px;
	color: #fff;
	transition: 0.3s ease-in-out ;
}
.hero_banner_content a:hover{
	color: var(--primary-color);
	background-color: #fff;
}

.mySwiperBanner .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	justify-content: center;
}
.mySwiperBanner .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #cba36b;
}
.mySwiperBanner .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 35px !important;
	border-radius: 12px;
}

.most_popular {
	padding: 40px 0;
}

.section_title {
	position: relative;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 26px;
}

.section_title::before{
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 150px;
	height: 4px;
	background: #cba36b;
}

.section_title h2 {
	font-weight: 600;
	font-size: 36px;
	color: #19191A;

}
.term_conditions{
	padding: 40px 0;
}
.privacy-policy{
	padding: 40px 0;
}
.section_title p {
	font-weight: 400;
	font-size: 12px;
	color: #19191ABF;
}

.event_card {
	background-color: #fff;
	box-shadow: 0px 7px 14px 0px #D3DAE2;
	border-radius: 11px;
	padding: 6px;
	border: 1px solid #dcdcdc;
}

.event_card_img{
	position: relative;
	border-radius: 11px;
	margin-bottom: 6px;
	height: 200px;
	width: 100%;
	overflow: hidden;
}

.event_card_img img {
	height: 100%;
	width: 100%;
	/* 	border-top-left-radius: 11px;
	border-top-right-radius: 11px; */
	object-fit: cover ;
	transition: .4s all;
}

.event_card:hover .event_card_img img{
	transform: rotate(-3deg) scale(1.2);
}

.event_card_content {
	padding: 10px;
	background-color: #f7f7f7;
	/* border-bottom-right-radius: 11px; */
	border-radius: 11px;
	border: 1px solid #dcdcdc;
}

.event_card_content h6 {
	font-weight: 500;
	font-size: 16px;
	color: #19191A;
	transition: .4s all;
}

.event_card:hover .event_card_content h6{
	color: #cba36b;
}

.mySwiperRecently {
	padding: 20px 0;
}
.event_card_content p {
	font-weight: 400;
	font-size: 12px;
	color: #19191ABF;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.event_card_content .date_time {
	margin-bottom: 10px;
}
.event_card_content .date_time i{
	font-size: 14px ;
}
/* testimonial_Sec css start */
.testimonial_Sec {
	padding: 40px 0;
	background-color: rgb(247 247 247);
	margin-top: 40px;
}

.testimonial_Sec .contentbox h2{
	font-weight: 600;
	font-size: 36px;
	color: #19191A;
	margin-bottom: 0px;
}

.testimonial_Sec .contentbox h2 span{
	color: #cba36b;
}

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

.testimonial_Sec .title {
	text-align: center;
}

.testimonial_Sec .title span {
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--white-color);
}

.testimonial_Sec .mySwiperTestimonials {
	padding-top: 22px;
}

.testimonial_card {
	position: relative;
	background: #ffffff;
	padding: 22px;
	border-radius: 12px;
	border: 1px solid #dcdcdc;
	margin: 6px;
}

.cleint_profile_img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #cba36b;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}
.cleint_profile_img h6{
	margin-bottom: 0;
	font-family: 'Changa';
	font-size: 22px;
	color: #19191A;
	font-weight: 500;
}
.cleint_profile {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cleint_profile_content h4{
	color: #19191A;
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 4px;
}

.cleint_profile_content h6 {
	font-weight: 400;
	font-size: 14px;
	color: #c1c1c1;
	margin-bottom: 0;
}

.cleint_profile_content p {
	font-weight: 400;
	font-size: 14px;
}

.quote_img img {
	width: 50px;
	margin-bottom: 20px;
}

.testimonial_content {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	height: 100%;
	margin-bottom: 22px;
}

.testimonial_content h3 {
	font-weight: 600;
	font-size: 20px;
	color: #19191A;
	margin-bottom: 4px;
}
.testimonial_content p{
	font-size: 16px;
	color: #19191A;
	margin-bottom: 4px;
}
.testimonial_content h4{
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}

.show_parent_left{
	position: sticky;
	top: 0;
}

/* upcoming_events css start */
.upcoming_events {
	padding: 40px 0;
	background-color: rgb(21, 19, 18);
}

.upcoming_events_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.upcoming_events_top .section_title h2 {
	color: #fff;
}
.mySwiperUpcomingsec {
	padding: 20px 10px;
}
.upcoming_events_top .section_title p {
	color: #fff;
}

.upcoming_events_btn {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
}

.upcoming_events_btn button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out;
	position: relative;
	top: inherit;
	left: inherit;
}

.upcoming_events .upcoming_events_top .swiper-button-next::after {
	display: none;
}

.upcoming_events .upcoming_events_top .swiper-button-prev::after {
	display: none;
}

.upcoming_events_btn button:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.upcoming_events_btn button:hover i {
	color: #fff;
}

.upcoming_event_card {
	padding: 15px;
	background-color: #fff;
	border-radius: 8px;
}

.upcoming_event_card_left {
	display: flex;
	gap: 15px;

}

.upcoming_event_card_img img {
	height: 204px;
	width: 204px;
	border-radius: 8px;
}

.upcoming_event_card_left_content {
	padding-top: 14px;
}

.upcoming_event_card_left_content h6 {
	font-weight: 600;
	font-size: 16px;
	color: #19191A;
}

.upcoming_event_card_left_content p {
	font-weight: 400;
	font-size: 12px;
	color: #19191ABF;
	margin-bottom: 25px;
}

.upcoming_event_card_left_content span {
	font-weight: 400;
	font-size: 12px;
	color: #19191ABF;
	display: block;
	margin-bottom: 6px;
}

.upcoming_event_card_right {
	width: 100%;
	height: 204px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--primary-color);
	border-radius: 8px;
	padding: 16px;
}

.upcoming_event_card_right ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.upcoming_event_card_right ul li img {
	width: 20px;
}

.upcoming_event_card_right ul li span {
	font-weight: 400;
	font-size: 12px;
	color: var(--white-color);
}

.from_price {
	font-weight: 500;
	font-size: 12px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.from_price b {
	font-size: 14px;
}

.more_info {
	display: inline-block;
	width: 100%;
	height: 40px;
	background-color: #ED6E28;
	color: #fff;
	border: none;
	border-radius: 100px;
	font-weight: 500;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}



/* subscribe_banner_sec csss  */

.subscribe_banner_sec {
	padding: 40px 0px 60px;
}

.subscirbe_banner {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.subscirbe_banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color:#0000003d;
}

.subscirbe_banner_content {
	padding: 20px 50px 20px 70px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.subscirbe_banner_content h2 {
	font-family: 'Changa';
	font-weight: 600;
	font-size: 33px;
	text-transform: uppercase;
	color: var(--white-color);
}

.subscirbe_banner_img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.subscirbe_banner_img img {
	width: 220px;
	height: auto;
}

.subscirbe_banner_form {
	width: 100%;
	height: 65px;
	border: 1px solid #FFFFFF;
	position: relative;
	border-radius: 50px;
}

.subscirbe_banner_form button {
	position: absolute;
	top: 4px;
	right: 4px;
	height: 55px;
	width: 215px;
	border: none;
	background-color: var(--secondary-color);
	font-family: 'Changa';
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	border-radius: 50px;
}

.subscirbe_banner_form input {
	width: 100%;
	height: 100%;
	border: none;
	background-color: transparent;
	padding: 20px;
	color: #fff;
}

.subscirbe_banner_form input:focus {
	outline: none;
}

/* footerStyling Start */
footer {
	position: relative;
	width: 100%;
	background: #121212;
	padding: 150px 0px 40px;
}

.footerLogo a {
	text-decoration: none;
}

.footerLogo a img{
	max-width: 220px;
	height: auto;
	filter: invert(1) brightness(100);
}

.footerLogo a h1 {
	color: #ffffff;
	font-weight: 600;
	font-size: 32px;
	margin-bottom: 0;
}

.footerCopyright {
	position: relative;
	width: 100%;
	background: #ffffff;
	border-radius: 10px;
	padding: 8px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 32px;
	background: #3d3d3d66;
	border: 3px solid #3D3D3D;
}

.footerCopyright p {
	margin-bottom: 0;
	color: #ffffff;
	font-weight: 600;
	font-size: 16px;
}

.footerQuickLinks ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 25px;
}

.footerQuickLinks ul li a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	transition: .4s all;
}

.footerQuickLinks ul li a:hover {
	text-decoration: underline;
}

.FooterPaymentMethods ul {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.FooterPaymentMethods ul li a img {
	width: 45px;
	height: auto;
}
.newsLetterSec {
	padding: 30px 0px;
}
.newsletter-wrapper{
	position: relative;
}
.newsLetterSec-img{
	border-radius: 20px;
	overflow: hidden;
}
.newsLetterSec-img img{
	width: 100%;
}
.newsLetterSecContent {
	/* bottom: -100px; */
	/* position: absolute; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 30px;
	/* z-index: 1; */
	/* left: 50%; */
	/* transform: translateX(-50%); */
	background: #fff;
	border-radius: 20px;
	/* box-shadow: 2px 3px 5px 0px #dcdcdc; */
	margin-bottom: -120px;
	z-index: 1;
	position: relative;
	border: 1px solid #dcdcdc;
}

.newsLetterSecContent h3 {
	margin-bottom: 28px;
	color: #121212;
	font-size: 42px;
	font-weight: 700;
	text-align: center;
}

.newsLetterSecContent p {
	margin-bottom: 22px;
	color: #000;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
}

.newsLetterSecForm {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.newsLetterSecForm input {
	position: relative;
	display: block;
	width: 100%;
	background: #f2f2f2;
	border: none;
	outline: none;
	border-radius: 10px;
	padding: 14px;
}
.newsLetterSecForm button {
	display: block;
	max-width: max-content;
	background-color: #121212;
	padding: 13px 22px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	border: none;
	outline: none;
	width: 192px;
}
.ourConcertsSec{
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background-color: #ffffff;
}

.ourConcertsSec .headContent {
	position: relative;
	text-align: center;
}

.ourConcertsSec .headContent::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background: #181733;
}

.ourConcertsSec .headContent h3 {
	position: relative;
	color: #181733;
	font-weight: 600;
	font-size: 32px;
	max-width: max-content;
	margin: 0 auto;
	background: #ffffff;
	padding: 0 15px;
	z-index: 2;
}

.ourConcertsContenbtBox{
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
	margin-top: 24px;
}

.ourConcertsContenbtBox a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(24, 23, 51, 0) 0, rgba(24, 23, 51, .3) 0%, #18173382 100%);
	z-index: 1;
}

.ourConcertsContenbtBox a img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ourConcertsContenbtBox a h3{
	display: block;
	width: calc(100% - 20px);
	background-image: linear-gradient(90deg, #154284, #181733);
	padding: 13px 22px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
	border: none;
	outline: none;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
/* ourConcertsSecStyling End */


/* ourClothingSec Start */
.ourClothingSec {
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background-color: #eff5ff;
	display: none;
}
.ourClothingSec .headContent h3 {
	color: #181733;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 0;
	text-transform: uppercase;
}
.ourClothingProductCard {
	position: relative;
	background-color: #ffffff;
	padding: 12px;
	border-radius: 20px;
	margin-top: 52px;
	transition: .4s all;
	scale: 1;
}

.ourClothingProductCard:hover {
	scale: 1;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.08);
}

.ourClothingProductCard a {
	text-decoration: none;
}

.ourClothingProductCard .imgWrap {
	position: relative;
	background: #eff5ff;
	border-radius: 20px;
	text-align: center;
	margin: 0px auto 15px;
	padding: 12px;
}

.ourClothingProductCard .imgWrap img {
	width: 100%;
	height: auto;
	object-fit: contain;
	/* aspect-ratio: 1/1; */
	margin-top: 0px;
	transition: 0.3s ease-in-out;
	border-radius: 12px;
	/* overflow: hidden; */
}

.ourClothingProductCard:hover .imgWrap img {
	transform: scale(1.1);
	margin-top: -45px;
}

.ourClothingProductCard h3 {
	margin-bottom: 4px;
	color: #181733;
	font-weight: 600;
	font-size: 22px;
	text-align: center;
}

.ourClothingProductCard p {
	margin-bottom: 8px;
	color: #adadad;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.ourClothingProductCard .primarybtn-btn button{
	display: block;
	max-width: max-content;
	margin: 0 auto;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04);
	padding: 8px 32px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	border: none;
	outline: none;
}
/* ourClothingSec Start */


/* footballTicketSec Start */
.footballProductsec {
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background-color: #eff5ff;
}
.footballProductsec .headContent h3 {
	color: #181733;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

/* .about-us_Sec start */
.about-us_Sec{
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background-color: #ffffff;
	overflow: hidden;
}
.about-us_SecContent{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.about-us_SecContent h3{
	margin-bottom: 0px;
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 600;
	line-height: 26px;
}
.about-us_SecContent h2{
	margin-bottom: 16px;
	color: #181733;
	font-size: 32px;
	font-weight: 600;
	line-height: 38px;
}
.about-us_SecContent a{
	max-width: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	line-height: 1;
	padding: 18px 30px;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #fff;
	border-radius: 50px;
	margin-top: 0px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	transition: .4s all;
}
.about-us_SecContent a:hover{
	background: linear-gradient(90deg, #f4c636, #ebaa21);
}
.about-us_SecList ul li{
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0px;
	border-radius: 0px;
	overflow: hidden;
}
.about-us_SecList ul li:last-child{
	border-top: none;
}
.about-us_SecList ul li .ticket_informationHead .ticket_infoTitle{
	font-size: 24px;
	font-weight: 600;
	color: #181733;
	text-transform: capitalize;
	letter-spacing: 0.5px;
}
/* .about-us_Sec end */

/* testimonialsSec Start */
.testimonialsSec {
	position: relative;
	padding: 60px 0px;
	background-color: #f8f8f8;
}

.testimonialsSec .headContent {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* .testimonialsSec .headContent::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background: #181733;
} */

.testimonialsSec .headContent h3 {
    position: relative;
    color: #181733;
    font-weight: 600;
    font-size: 32px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 12px;
}

.testimonialsSec .headContent p{
    margin-bottom: 0;
    text-align: center;
    color: #181733;
    font-weight: 400;
    font-size: 14px;
}

.testimonialsSecSlider {
	position: relative !important;
	width: 100%;
	overflow: hidden !important;
	margin-top: 24px;
}

.testimonialsSecSlider .swiper-pagination {
	position: absolute;
	bottom: 15px !important;
	left: 50% !important;
	transform: translateX(-50%);
	z-index: 1;
}

.testimonialsSecSlider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}

.testimonialsSecSlider .swiper-pagination .swiper-pagination-bullet-active {
	background-image: linear-gradient(90deg, #154284, #181733);
}

.testimonialsSecSlider .swiper-slide{
	width: 450px;
}

.testimonialsSecSlider .contentBox {
	position: relative;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	box-shadow: 0px 0px 12px 2px #dcdcdc;
	padding: 22px !important;
	border-radius: 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.testimonialsSecSlider .contentBox p {
	margin-bottom: 0;
	text-align: center;
	color: #181733;
	font-weight: 400;
	font-size: 14px;
}

.testimonialsSecSlider .contentBox p strong{
	color: #cd8d05;
}

.testimonialsSecSlider .contentBox .clientDetails {
    margin: 12px 0px 0px;
    padding-top: 12px;
    border-top: 1px solid #dcdcdc;
    width: 100%;
    text-align: right;
}

.testimonialsSecSlider .contentBox .clientDetails img {
	width: 85px;
	height: 85px;
	border-radius: 50%;
}

.testimonialsSecSlider .contentBox .clientDetails span {
	display: block;
	color: #181733;
	font-weight: 500;
	font-size: 16px;
	text-align: right;
}

/* testimonialsSec Start */


/* matchesScheduleSec Start */
.matchesScheduleSec{
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background-color: #eff5ff;
}

.matchesScheduleSec .headContent {
	position: relative;
	text-align: center;
}

.matchesScheduleSec .headContent::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background: #181733;
}

.matchesScheduleSec .headContent h3 {
	position: relative;
	color: #181733;
	font-weight: 600;
	font-size: 32px;
	max-width: max-content;
	margin: 0 auto;
	background: #eff5ff;
	padding: 0 15px;
	z-index: 2;
}

.matchesScheduleList{
	position: relative;
}

.matchesScheduleList ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.matchesScheduleList ul li a{
	position: relative;
	margin-top: 32px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: #ffffff;
	border: 1px dashed #181733;
	border-radius: 20px;
	padding: 15px;
	cursor: pointer;
	transition: .4s all;
}

.matchesScheduleList ul li a:hover{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.08);
}

.matchesScheduleList ul li .imgWrap{
	position: relative;
	border-right: 1px dashed #181733;
	margin-right: 15px;
	padding-right: 15px;
	flex: 0 0 120px;
	max-width: 120px;
}

.matchesScheduleList ul li .imgWrap img{
	width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
}

.matchesScheduleList ul li .content{
	flex: 1;
}

.matchesScheduleList ul li .content h2{
	position: relative;
	max-width: max-content;
	background-image: linear-gradient(90deg, #154284, #181733);
	padding: 6px 12px;
	border-radius: 10px;
	margin-bottom: 8px;
	color: #ffffff;
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
}

.matchesScheduleList ul li .content h3{
	color: #181733;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 6px;
}

.matchesScheduleList ul li .content p{
	display: block;
	max-width: max-content;
	background-image: linear-gradient(90deg, #154284, #181733);
	padding: 2px 15px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 0px;
}
/* matchesScheduleSec End */
/* footballTeamSec Start */
.footballTeamSec {
	position: relative;
	width: 100%;
	padding: 40px 0px;
	background-color: #ffffff;
	overflow: hidden;
	display: none;
}
.footballTeamSec .headContent h3 {
	color: #181733;
	font-weight: 600;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.show_parent_sec {
	padding: 60px 0;
	overflow: hidden;
}
.show_parent_sec .secTitle h3{
	color: #181733;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
/* sub categroy  */
.top-reviews {
	padding: 15px 0px;
	background: #EAB308;
}
.reviews_line {
	display: flex;
	align-items: center;
	gap: 10px;
}
.reviews_line span {
	font-weight: 600;
	font-size: 13px;
	color: #19191A;
}
.reviews_line img {
	width: 20px;
	filter: invert(1) brightness(100);
}
.reviews_line h6 {
	font-size: 15px;
	font-weight: 600;
	color: #000;
	margin-top: 3px;
	margin-bottom: 0;
}
.truspilot {
	display: flex;
	align-items: center;
	gap: 10px;
}
.review_list {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center ;
}
.review_list img {
	width: 20px;
	filter: invert(1) brightness(100);
}
.review_list span {
	font-weight: 400;
	font-size: 14px;
	color: #ffffff;
}
.show_ticketsBoxWrap{
	position: relative;
	margin-bottom: 40px;
}
.tickets_card_mian{
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 15px;
	width: 100%;
	overflow-y: hidden;
	overflow-x: scroll;
	margin-bottom: 0px;
}
.ticket_card {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #eee;
	box-shadow: 0 10px 15px -3px #dcdcdc, 0 4px 6px -4px #dcdcdc;
	cursor: pointer;
	display: block;
	margin-bottom: 15px;
	padding: 15px;
	flex: 0 0  40%;
	max-width: 40%;
	gap: 32px;
}
.ticket_card .left-content {
	flex: 1;
	height: 100%;
}
.ticket_card .right-content {
	max-width: 100%;
	height: 100%;
}
.ticket_card_titleWrap {
	margin-bottom: 10px;
	text-align: left;
	background: #f8f8fc;
	padding: 18px 8px 18px 15px;
	border-radius: 10px;
	border-left: 3px solid #EAB308;
	overflow: hidden !important;
}
.e_ticket_wrapper {
	display: flex;
	align-items: center;
	gap: 4px;
}
.e_ticket_wrapper img {
	width: 16px;
}
.e_ticket_wrapper span {
	font-size: 12px;
}
.ticket_card_titleWrap img {
	width: 20px;
	height: auto;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
}
.ticket_card_titleWrap h6{
	font-weight: 700;
	font-size: 16px;
	color: #000000;
	margin-bottom: 6px;
	line-height: 20px;
}
.ticket_card_content ul {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 0;
	margin: 0;
}
.ticket_card_content ul li {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	font-weight: 500;
}
.ticket_card_content ul li:last-child{
	margin-bottom: 0;
}
.ticket_card_content ul li img {
	width: 22px;
	height: auto;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
}
.ticket_card_content ul li h6 {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 0;
}
.ticket_card_buy_area{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	gap: 12px;
	width: 100%;
}
.ticket_card_buy_area_subcontent{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
}
.ticket_card_buy_area_subcontent p{
	margin-bottom: 0;
}
.ticket_card_buy_area .price span {
	font-weight: 600;
	font-size: 16px;
	color: #000000;
}
.ticket_card_buy_area span {
	font-size: 12px;
	color: #000000;
}
.ticket_card_buy_area .cart {
	display: flex	;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}
.show_tickets_Sec {
	padding: 40px 0 80px;
}
.show_tickets_Sec .container {
	box-shadow: 0px 7px 14px 0px #D3DAE2;
	padding: 20px;
	border-radius: 11px;
}

.show_tickets_Sec .title {
	margin-bottom: 22px;
}

.show_tickets_Sec .title h6 {
	font-weight: 600;
	font-size: 24px;
	color: #19191A;
	text-transform: capitalize;
}

.show_tickets_Sec .title p {
	font-weight: 400;
	font-size: 14px;
	color: #19191ABF;
}

.mob_StadiumImage{
    padding: 8px;
    position: relative;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
	margin-bottom: 40px;
	display: none;
}
.mob_StadiumImage img{
	width: 100%;
	height: auto;
}

.ticket_sec_img {
	padding: 8px;
	position: sticky;
	top: 0;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
}
.stadium-info {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 20px 24px;
	margin: 20px 0 0;
	background-color: #f9f9f9;
	border-radius: 6px;
	display: none !important;
}
.stadium-info p{
	font-size: 18px;
	color: #000;
}

.stadium_img img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.stadium_img_text {
	font-size: 14px;
	color: #19191ABF;
	border-top: 1px solid #7A7A7A80;
	padding-top: 15px;
}

/* contact page css start */
.contact_us {
	padding: 60px 0;
}

.contact_content {
	padding-right: 100px;
}

.contact_content .title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.contact_content .title .title_img {
	width: 35px;
	height: 35px;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_content .title .title_img img {
	width: 20px;
}

.contact_content .title span {
	font-weight: 600;
	font-size: 22px;
	line-height: 21px;
	color: #181733;
}

.contact_content h2 {
	font-weight: 600;
	font-size: 28px;
	line-height: 32px;
	color: #181733;
}

.contact_content h2 span {
	font-size: 35px;
}

.contact_content p {
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
	color: #767C8C;
}

.contact_list ul {
	margin-bottom: 0;
	list-style-type: none;
	padding: 20px 0;
	border-top: 1px solid #F0F3FD;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact_list ul li {
	display: flex;
	align-items: start;
	gap: 15px;
}

.contact_list_icon {
	width: 45px;
	height: 45px;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_list_icon i {
	color: #fff;
	font-size: 20px;
}

.contact_list_content h6 {
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 0;
	color: var(--text-color);
}

.contact_list_content p {
	font-weight: 300;
	font-size: 14px;
	line-height: 21px;
	color: #767C8C;
	margin-bottom: 0;
}

.contact_list_content p a {
	color: #767C8C;
	transition: 0.3s ease-in-out;
}

.contact_list_content p a:hover {
	color: var(--primary-color);
}

.contact_social_links {
	padding: 15px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact_social_links a {
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04) !important;
	transition: 0.3s ease-in-out;
}

.contact_social_links a:hover {
	color: var(--primary-color);
}

.contact_form {
	padding: 35px;
	border-radius: 12px;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04);
}

.contact_form h2 {
	font-weight: 500;
	font-size: 28px;
	line-height: 40px;
	color:#ffffff ;
	margin-bottom: 20px;
}

.contact_field {
	width: 100%;
	position: relative;
}

.contact_field input {
	width: 100%;
	padding: 9px 10px 9px 45px;
	font-weight: 300;
	font-size: 14px;
	color: #767C8C80;
	border-radius: 8px;
	border: none;
}

.contact_field input::placeholder {
	color: #767C8C80;
}

.contact_field select {
	width: 100%;
	padding: 10px 10px 10px 13px;
	font-weight: 300;
	font-size: 14px;
	color: #767C8C80;
	border-radius: 8px;
	border: none;
}

.contact_field textarea {
	width: 100%;
	height: 165px;
	padding: 15px;
	font-weight: 300;
	font-size: 14px;
	color: #767C8C80;
	border-radius: 8px;
	border: none;
	transition: 0.3 ease-in-out;
}

.contact_field textarea:focus {
	outline-color: var(--primary-color);
}

.contact_field input:focus {
	outline-color: var(--primary-color);
}

.contact_field select:focus {
	outline-color: var(--primary-color);
}

.contact_field textarea::placeholder {
	color: #767C8C80;
}

.contact_field_icon {
	position: absolute;
	left: 20px;
	top: 9px;
}

.contact_field_icon i {
	color: #EAB308;
	font-size: 16px;
}

.contact_submit_btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 170px;
	height: 40px;
	position: relative;
	background-color: #ffffff;
	border-radius: 8px;
}

.contact_submit_btn input {
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-size: 14px;
	line-height: 12px;
	border: none;
	padding-left: 30px;
	text-align: left;
	background: transparent ;
	transition: 0.3s ease-in-out;
	color: #EAB308;
}

.contact_submit_icon {
	position: absolute;
	right: 30px;
	top: 9px;
}
.contact_submit_icon i{
	color: #EAB308;
}
.contact_map {
	padding: 10px 0 80px 0;
}
.custom-quantity {
	display: flex;
	align-items: center;
	border-radius: 5px;
	width: 120px;
	overflow: hidden;
	border-radius: 10px;
	justify-content: space-between;
	background: #ffffff;
}
.custom-quantity button {
	background-image: linear-gradient(90deg, #EAB308, #CA8A04);
	border: none;
	padding: 4px 12px;
	cursor: pointer;
	font-size: 18px;
	color: #fff;
}
.custom-quantity input {
	width: 50px;
	text-align: center;
	border: none;
	font-size: 16px;
	padding-left: 11px;
	background: #ffffff;
}
.custom-quantity input:focus{
	outline: none;
}
.custom-quantity .minus { border-right: 1px solid #ddd; }
.custom-quantity .plus { border-left: 1px solid #ddd; }{
	width: 100%;
	height: 38px;
	padding: 0 22px;
	background-color: var(--secondary-color);
	color: #fff;
	border: none;
	border-radius: 50px;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
}

.ticket_buy_now_btn{
	position: relative;
	width: 100%;
}

.ticket_buy_now_btn button{
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04) !important;
	padding: 8px 30px !important;
	border-radius: 10px !important;
	text-decoration: none !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #ffffff !important;
	border: none !important;
	outline: none !important;
	line-height: inherit !important;
}

.ajax_add_to_cart{
	display: block !important;
	max-width: 100% !important;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04) !important;
	padding: 12px 0px !important;
	border-radius: 10px !important;
	text-decoration: none !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #ffffff !important;
	border: none !important;
	outline: none !important;
}

.mob_menuOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 99999;
	display: none;
}

.mob_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    background-color: #ffffff;
    z-index: 9999999999;
    padding: 20px 12px;
    overflow: auto;
    box-shadow: 0px 0px 15px 1px #00000094;
}
.mob_menu.active {
	visibility: visible;
	opacity: 1;
	left: 0;
}

.mob_btn {
	padding: 0px;
	background-image: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #fff;
	border-radius: 50px;
	font-size: 15px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: none;
	align-items: center;
	justify-content: center;
}
.close_bar {
    position: relative;
    background-color: #EAB308;
    cursor: pointer;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
}

.close_bar i {
	color: #ffffff;
	font-size: 22px;
}
.mob_menuLogo a img{
    max-width: 200px;
    height: auto;
}
.mob_nav_links ul {
	padding-left: 0;
	padding-top: 20px;
	list-style-type: none;
}
.mob_nav_links ul li {
    margin: 4px 0 8px;
    width: 100%;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 8px;
}
.mob_nav_links ul li a {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}
.wpcf7-response-output{
	color: #fff !important;
}
.limited-box {
	text-transform: uppercase;
	font-size: 12px;
	padding: 4px;
	border: 1px solid #000;
	max-width: fit-content;
	line-height: 1;
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
	border-radius: 4px ;

}
.limited-box:before{
	content: '';
	display: inline-block;
	width: 10px;
	height: 4px;
	border-radius: 50px;
	background: red;
}
/* faqs */
.accordion .accordion-item {
	border: none;
	margin-bottom: 0px;
	background-color: #fff;
	box-shadow: none;
	border-radius: 0px;
	padding: 22px;
	border-top: 1px solid #ECECFC;
}
.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 0px !important;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border: none;
	background: none;
	outline: none;
}
.accordion button:hover,
.accordion button:focus {
	cursor: pointer;
	color: #0566FF;
	background-color: transparent !important ;
}
.accordion button:hover::after,
.accordion button:focus::after {
	cursor: pointer;
	color: #0566FF;
	border: 1px solid #03b5d2;
}
.accordion button .accordion-title {
	white-space: pre-wrap ;
}
.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 18px;
	right: 12px;
	width: 22px;
	height: 22px;
	transition: 0.3s ease-in-out ;
}
.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 0px;
	left: 0px;
	width: 20px;
	height: 20px;
	background-image: url('https://myseats.co.uk/wp-content/uploads/2025/03/svgviewer-png-output-11.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: 0.3s ease-in-out ;
}
.accordion .accordion-item button[aria-expanded='true'] span.icon::before {
	rotate: 180deg;
}
.accordion button[aria-expanded='true'] {
	color: #eab308;
}
.accordion button[aria-expanded='true'] .icon::after {
	width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
	opacity: 1;
	max-height: 100%;
	transition: all 200ms linear;
	will-change: opacity, max-height;
	margin-top: 22px;
}
.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}
.accordion .accordion-content p {
	font-size: 13px;
	font-weight: 300;
	/* 	margin: 1em; */
}
.faqs{
	position: relative;
	padding-bottom: 30px;
	background: #fff;
	z-index: 23;
	padding: 32px 20px;
	border-radius: 24px;
	border: 1px solid #ECECFC;
}
.faqs .title{
	position: relative;
	text-align: center;
	margin-bottom: 22px;
}
.faqs .title::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background: #181733;
	display: none;
}
.faqs .title h2{
	position: relative;
	color: #181733;
	font-weight: 600;
	font-size: 32px;
	max-width: max-content;
	margin: 0 auto;
	background: #ffffff;
	padding: 0 15px;
	z-index: 2;
}
.accordion-item button:hover{
	background-color: transparent !important;
	border-radius: 0 ;
	color: #eab308;
}
.ticket_msg{
	padding: 10px 20px;
}
.page-content h1{
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1;
}
.page-content h2{
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1;
}
.page-content ul{
	margin-bottom: 14px;
}
.page-content ul li{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 4px;
}
.page-content p{
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 14px;
}

/* ourProductsSection */
.ourProductsSection{
	position: relative;
	padding: 40px 0px;
}



/* eventGlobe Css Start */

/* headerStyling Start */
.headerLogo a {
	text-decoration: none;
}
.headerLogo a img{
	max-width: 100%;
	height: auto;
}
.headerLogo a h1 {
	color: #154284;
	font-weight: 900;
	font-size: 26px;
	margin-bottom: 0px;
	line-height: 1;
}
.headerContactDetails .contentWrap {
	position: relative;
	border-left: 1px solid #44444433;
	padding-left: 15px;
}

.headerContactDetails .contentWrap .iconBox {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	width: 37px;
	height: 37px;
	border-radius: 8.81px;
}

.headerContactDetails .contentWrap .iconBox i {
	color: #ffffff;
}

.headerContactDetails .contentWrap .textWrap span {
	color: #444444;
	font-size: 12px;
	font-weight: 400;
}

.headerContactDetails .contentWrap .textWrap p {
	margin-bottom: 0;
	color: #444444;
	font-size: 16px;
	font-weight: 400;
	display: block !important;
}
.headerContentWrapper .menus{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background: #ffffff;
	border: 1px solid #ECECFC;
	padding: 6px 6px;
	border-radius: 50px;
	max-width: max-content;
}
.headerContentWrapper .menus li{
	position: relative;
	background: #ffffff;
	padding: 10px 15px;
	border: 1px solid #ECECFC;
	border-radius: 50px;
}
.pick-club-menu{
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 250px;
	padding: 15px;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	backdrop-filter: blur(1.5px);
	border-radius: 8px;
	z-index: 999;
	transition: 0.3s ease-in-out;
}
.headerContentWrapper .menus li:hover .pick-club-menu{
	display: flex;
}
.headerContentWrapper .menus li a{
	display: flex;
	align-items: center;
	gap: 5px;
}
.headerContentWrapper .menus li.has_sub_item a:after{
	content: '\f107';
	font-family: "FontAwesome";
}
.menu li,
.menu ul {
	overflow: visible !important;
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li{
	position: relative;
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li{
	display: flex;
	align-items: center;
	gap: 12px !important;
	padding: 6px 8px;
	border-radius: 8px;
	background: transparent;
	border: none;
	transition: background 0.2s ease;
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li:after{
	display: none;
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li:hover{
	background: rgba(255,255,255,0.1);
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li img{
	width: 35px;
	height: 35px;
	aspect-ratio: 1;
	object-fit: contain;
	border-radius: 50%;
	flex-shrink: 0;
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li a::after{
	display: none;
}
.headerContentWrapper .menus li.has_sub_item > ul.pick-club-menu li span{
	color: #FFFFFF;
	font-weight: 400;
	font-size: 14px;
	display: block;
}
header{
	padding: 10px 0;
	position: relative;
	width: 100%;
	background: #fafafa;
}
.header_IconMenuWrapper{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 8px;
	max-width: max-content;
	background: #ffffff;
	border-radius: 50px;
	padding: 6px 6px;
	border: 1px solid #ECECFC;
	margin-left: auto;
}
.header_IconBox{
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f7f7;
	border-radius: 50px;
}
/* headerStyling End */
.banner-box {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 90vh;
	margin-top: 15px;
}
.banner-box:before{
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.5;
	z-index: 1;
}
.banner-img{
	width: 100%;
	height: 100%;
}
.banner-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	width: 100%;
	max-width: 640px;
}
.banner-content .banner-tag{
	color: #eab308;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 3px;
	display: block;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.banner-content h1{
	font-size: 60px;
	font-weight: 700;
	margin: 0;
	color: #fff;
}
.banner-content p {
	font-size: 20px;
	margin-top: 10px;
	color: #fff;
}
.banner-search{
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 15px;
}
.banner-search input{
	width: 100%;
	border: none;
	outline: none;
	font-size: 14px;
	color: #000;
	padding: 10px 20px;
	height: 42px;
	border-radius: 25px;
}
.banner-search-btn{
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 15px 10px 9px;
	border-radius: 25px;
	color: #fff;
	text-transform: uppercase;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
}
.footballProductsec.two{
	background: #ffffff;
}
.footballProductsCard{
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 24px;
	height: 370px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-end;
	border-radius: 15px;
	border: 1px solid #dc262633;
	transition: .4s all;
	margin-bottom: 24px;
}
.footballProductsCard:hover{
	box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(220 38 38 / .2), 0 8px 10px -6px rgb(220 38 38 / .2);
}
.footballProductsCard::before{
	content: "";
	width: 100%;
	height: 100%;
	background-color: hsl(220 25% 6% / .5);
	position: absolute;
	top: 0;
	transition: .4s all;
	left: 0;
}
.footballProductsCard:hover:before{
	background-color: hsl(220 25% 6% / .7);
}
.football-bg{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}
.footballProductsCard:hover .football-bg img{
	transform: scale(1.1);
}
.football-bg img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: .4s all;
}
.football-card-top,
.view-matches{
	position: relative;
	color: #ffffff;
	z-index: 1;
}
.football-card-top p{
	font-size: 13px;
	margin-top: 10px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.football-logo-wrap{
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 35px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1;
}
.football-logo{
	height: 56px;
	width: 56px;
	padding: 10px;
	background: #fff;
	border-radius: 50%;
}
.football-logo img{
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.view-matches{
	max-width: max-content;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	line-height: 1;
	padding: 18px 30px;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #fff;
	border-radius: 50px;
	margin-top: 0px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 20px;
	transition: .4s all;
}
.footballProductsCard:hover .view-matches{
	background: linear-gradient(90deg, #f4c636, #ebaa21);
}
.footballTeamDetails{
	padding: 8px;
	position: relative;
	display: flex;
	align-items: center;
	background: #f7f7f7;
	position: relative;
	margin-bottom: 24px;
	border-radius: 10px;
	transition: 0.4s;
}
/* .footballTeamDetails:hover{
background-color: #fffeef;
border-color: #eab308;
transform: scale(1.02);
}
.footballTeamDetails:before{
content: '';
height: 30px;
width: 30px;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #fff;
left: -15px;
box-shadow: 2px 0px 1px 0px #dcdcdc;
transition: 0.4s;
}
.footballTeamDetails:hover::before{
box-shadow: 2px 0px 1px 0px #eab308;
}
.footballTeamDetails:after{
content: '';
height: 30px;
width: 30px;
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
background: #fff;
right: -15px;
box-shadow: -1px 0px 0px 0px #dcdcdc;
transition: 0.4s;
}
.footballTeamDetails:hover::after{
box-shadow: -1px 0px 0px 0px #eab308;
} */
.footballTeamDetails_Left{
	flex-basis: 70%;
	display: flex;
	align-items: center;
	gap: 15px;
}
.footballTeamDetails_Right{
	flex-basis: 30%;
}
.flagImagesWrap{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	justify-content: center;
	flex-basis: 25%;
	background: #ffffff;
	border-radius: 10px;
	max-height: 200px;
	padding: 18px;
}
.flagImagesWrap img{
	width:100%;
}
.imgOne , .imgTwo{
	height: 50px;
	width: 60px;
	overflow: hidden;
}
.imgOne img, .imgTwo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footballTeamDetails_Content{
	flex-basis: 75%;
}
.footballTeamDetails h3{
	font-size: 22px;
	font-weight: 600;
	text-align: left;
	margin: 12px 0px;
}
.footballTeamDetails-info{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	margin-top: 15px;
}
.football-date{
	padding: 5px 10px;
	background: #ffffff;
	color: #333333;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: max-content;
	border-radius: 50px;
}
.football-date i{
	height: 22px;
	width: 23px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	background: #f7f7f7;
	color: #333333;
	font-size: 12px;
}
.footballtime{
	padding: 5px 10px;
	background: #ffffff;
	color: #333333;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: max-content;
	border-radius: 50px;
}
.footballtime i{
	height: 22px;
	width: 23px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	background: #f7f7f7;
	color: #333333;
	font-size: 12px;
}
.football-stadium{
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	font-weight: 500;
	letter-spacing: 0.5px;
	/*     border-bottom: 1px dashed #EAB308;
	padding-bottom: 12px; */
}
.football-stadium i{
	height: 22px;
	width: 23px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	background: #ffffff;
	color: #333333;
	font-size: 12px;
}
.footballTeamDetails-btn{
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	line-height: 1;
	padding: 18px 30px;
	background: #121212;
	color: #fff;
	border-radius: 50px;
	margin-top: 0px;
	max-width: max-content;
	transition: .4s all;
}
.footballTeamDetails.soldout-card {
	pointer-events: none;
	cursor: default;
}
.footballTeamDetails-btn.soldout-btn {
	background: red;
}
.footballTeamDetails:hover .footballTeamDetails-btn{
	background: #525252;
	color: #ffffff;
}
.club-info-wrapper{
	padding: 24px;
	border-radius: 20px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	height: 380px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.club-info-wrapper:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.5;
	z-index: -1;
}
.club-logo{
	height: 120px;
	width: 120px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.club-logo img{
	height: 100%;
	width: 60%;
	object-fit: contain;
}
.club-info{
	width: 50%;
}
.club-info-wrapper h1{
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 0;
	color: #fff;
}
.club-info p{
	font-size: 14px;
	margin-bottom: 10px;
}
.club-matches{
	display: flex;
	align-items: center;
	gap: 10px;
}
.club-matches-num{
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #fff;
	font-weight: 600;
}
.club-season {
	padding: 5px 15px;
	border-radius: 25px;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #fff;
	max-width: max-content;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
}
.club-breadcrumb{
	padding-top: 15px;
}
.subcategory-info-banner{
    padding: 24px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    z-index: 1;
}
.subcategory-info-banner:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000b5;
    /* opacity: 0.4; */
    z-index: -1;
    /* background: linear-gradient(90deg, #eab308, #ca8a04b8); */
    border: 1px solid #ca8c04;
    border-radius: 20px;
}
.subcategory-info{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.subcategory-info-banner h6{
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #fff;
}
.subcategory-img{
	display: flex;
	align-items: center;
	gap: 15px;
}
.subcategory-img-one , .subcategory-img-two{
	height: 80px;
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
}
.subcategory-img-one img, .subcategory-img-two img{
	height: 100%;
	width: 60%;
	object-fit: contain;
}
.subcategory_ticket_location{
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.subcategory_ticket-wrapper{
	display: flex;
	align-items: center;
	flex-flow: wrap;
	gap: 20px;
	width: 100%;
	max-width: 365px;
}
.subcategory_ticket_date{
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 500;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	padding: 7px 14px;
	border-radius: 25px;
	max-width: max-content;
	color: #fff;
}
.subcategory_list ul{
	display: flex;
	flex-flow: column;
	gap: 10px;
}
.subcategory_list ul li{
	display: flex;
	align-items: center;
	gap: 7px;
}
.subcategory_list ul li img{
	width: 20px;
}
.subcategory_banner_Section.subCategoryBannerBoxMain {
	padding-top: 25px;
}
.swiper-container {
	width: 750px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.swiper-slide{
	width: 300px;
}
.subcategory_banner_Section.subcategory-design {
	padding: 15px 0;
	background: #EAB308;
}
.breadcrumbs{
	padding: 15px 0;
	background: #000;
	color: #fff;
}
.tabs-nav{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
}
.tabs-nav li{
	background: #FEF9C3;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 20px 5px 10px;
	border-radius: 25px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.tabs-nav li.active{
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #ffffff;
}
.tabs-nav li .tab-img{
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
}
.tabs-nav li .tab-img img{
	width: 60%;
	height: 100%;
	object-fit: contain;
}
.tab-content{
	display: none;
}
.tab-content.active{
	display: block;
}
.tickets-sec{
	padding: 60px 0 30px;
	overflow: hidden;
}
.checkout-sec{
	padding: 40px 0 20px;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	padding: 15px;
	width: 100%;
	margin-top: 10px;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	color: #fff;
}
button.wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained {
	background: #000;
	border: none;
	color: #fff;
}
.woocommerce-checkout-review-order-table .product-name , .woocommerce-checkout-review-order-table .product-name .checkout-product-wrap{
	display: flex;
	align-items: center;
	gap: 5px;
}
.chat_widget{
	position: fixed;
	bottom: 24px;
	left: 24px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background-color: var(--primary-color);
	z-index: 100 ;
	box-shadow: rgba(8, 15, 26, 0.08) 0px 2px 8px 0px, rgba(8, 15, 26, 0.12) 0px 2px 2px 0px;
	transition: 0.3s ease-in-out ;
	cursor: pointer ;
}
.chat_img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease-in-out ;
}
.chat_widget:hover {
	transform: scale(1.1);
}
.chat_widget img{
	width: 24px ;
}
.chat_form{
	position: fixed ;
	bottom: 85px ;
	left: 24px ;
	background: #fff ;
	border-radius : 16px ;
	box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 18px 0px;
	z-index: 100;
	visibility: hidden;
	opacity: 0 ;
	width: 100% ;
	height: auto ;
	max-width: 340px ;
	transition: 0.3s ease-in-out ;
	padding: 15px ;
}
.chat_form.active{
	visibility: visible ;
	opacity: 1 ;
}
.chat_form_top{
	display: flex ;
	align-content: center ;
	justify-content:space-between ;
}
.chat_form_profile{
	display: flex ;
	align-items: center;
	gap: 10px ;
}
.chat_form_profile .profile_img{
	width: 24px ;
	height: 24px ;
	border-radius: 50% ;
}
.chat_form_profile h6 img{
	width: 20px ;
} 
.chat_form_profile h6{
	font-size: 16px ;
	font-weight: 400 ;
	color: rgb(8, 15, 26) ;
	margin-bottom: 0 ;
	margin-top: 2px ;
} 
.close_form_chat i{
	font-size: 20px ;
	color: rgb(100, 116, 149);
	cursor: pointer ;
}
.chat_form_fields {
	padding-top: 15px;
}
.chat_field{
	margin-bottom:10px;
}
.chat_field input{
	width: 100%;
	padding: 7px 10px;
	font-size: 14px ;
	color: rgb(8, 15, 26) ;
	border-radius: 4px ;
	border: 1px solid #2125294d;
	transition: 0.3s ease-in-out ;
}
.chat_field input:focus{
	outline-color: #328e6e ;
}
.chat_field textarea{
	width: 100%;
	padding: 7px 10px;
	font-size: 14px ;
	color: rgb(8, 15, 26) ;
	border-radius: 4px ;
	border: 1px solid #2125294d;
	height: 100px ;
	transition: 0.3s ease-in-out ;
}
.chat_field textarea:focus{
	outline-color: #328e6e ;
}
.chat_field_submit input{
	width: 100% ;
	height: 40px ;
	background: var(--primary-color) ;
	font-size:16px ;
	font-weight: 500 ;
	color: #fff ;
	border-radius: 4px ;
	transition: 0.3s ease-in-out ;
	border: none ;
	margin-bottom: 0;
	margin-top: 10px;
}
.wpcf7-response-output {
	margin: 0 !important;
	color: #000 !important;
	text-align: center;
	border: 2px solid #328e6e !important;
	border-radius: 4px;
}
.wpcf7-form-control-wrap{
	display: block;
}
.customer-info-sec{
	padding: 40px 0 16px;
}
.customer-info-box{
	border: 1px solid #f1f1f1;
	border-radius: 24px;
	padding: 30px;
	display: flex;
	flex-flow: column;
	align-items: center;
	text-align: center;
	margin-bottom: 24px;
}
.customer-info-box h3{
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}
.customer-info-box p{
	font-size: 16px;
	color: #121212;
}
.customer-img{
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #EAB308, #CA8A04);
	border-radius: 8px;
	margin-bottom: 26px;
}
.customer-img img{
	max-width 100%;
}

/* more_info section css */
/* Main Container */
.ticket_informationBox {
	background: #fff;
	z-index: 23;
	padding: 20px;
	border-radius: 24px;
	border: 1px solid #ECECFC;
}

.ticket_informationBox h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #333;
}

/* Accordion List */
.ticket_informationBox ul {
	margin: 0;
	padding: 0;
}

.ticket_informationBox ul li {
	border-top: 1px solid #e0e0e0;
	margin-bottom: 0px;
	border-radius: 0px;
	overflow: hidden;
}

/* Accordion Header */
.ticket_informationHead {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0px;
	background-color: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
}

.ticket_infoTitle {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ticket_informationHead.active .ticket_infoTitle{
	color: #cb8b04;
}

/* Icon Wrapper */
.iconWrap {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.ticket_infoPlus,
.ticket_infoMinus {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	font-weight: 400;
	color: #666;
	line-height: 1;
	transition: all 0.2s ease;
}

.ticket_infoMinus {
	display: none;
}

.ticket_informationHead.active .ticket_infoMinus{
	color: #cb8b04;
}

/* Accordion Body */
.ticket_informationBody {
	padding: 0px 0px 15px;
	background-color: #fff;
	display: none;
	color: #555;
	line-height: 1.7;
}

.ticket_informationBody h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 20px;
	color: #333;
}

.ticket_informationBody h5:first-child {
	margin-top: 0;
}

.ticket_informationBody h6 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #333;
}

.ticket_informationBody span {
	display: block;
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 8px;
	color: #333;
}

.ticket_informationBody p {
	margin-bottom: 15px;
	font-size: 15px;
	color: #555;
}

.ticket_informationBody p:last-child {
	margin-bottom: 0;
}

/* Inner Listing */
.ticket_infoInner_Listing {
	margin-bottom: 20px;
}

.ticket_infoInner_Listing:last-child {
	margin-bottom: 0;
}

.ticket_infoInner_Listing ul {
	margin: 0;
	padding: 0;
	border: none;
}

.ticket_infoInner_Listing ul li {
	padding: 0;
	margin: 0;
	border: none;
	font-size: 15px;
	color: #555;
	line-height: 1.6;
}

/* Links */
.ticket_informationBody a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ticket_informationBody a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Strong text */
.ticket_informationBody strong {
	font-weight: 600;
	color: #333;
}


/* category_GallerySliderSec start */
.category_GallerySliderSec{
	position: relative;
	padding: 40px 0px 0px;
}
.category_GallerySlider{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.category_GallerySlider .swiper-button-prev,
.category_GallerySlider .swiper-button-next{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(255 255 255 / 55%);
	border-radius: 50px;
}
.category_GallerySlider .swiper-button-prev::after,
.category_GallerySlider .swiper-button-next::after{
	font-size: 14px;
	font-weight: 600;
	color: #333;
}
.category_GalleryImgBox{
	position: relative;
	cursor: pointer;
}
.category_GalleryImgBox img{ 
	width: 100%;
	height: 450px;
	object-fit: cover;
	object-position: center;
	border-radius: 24px;
}
/* category_GallerySliderSec end */

/* premierLeague_Sec start */
.premierLeague_Sec {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 40px 0px 0px;
}

.premierLeague_Sec h3{
	color: #181733;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.premierLeague_slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.premierLeague_contentBox {
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #ECECFC;
	border-radius: 10px;
	overflow: hidden;
	transition: .4s all;
}

.premierLeague_contentBox .featured-match-badge{
    top: 25px !important;
    right: 15px !important;
}

.premierLeague_contentBox .imgWrap {
	position: relative;
	display: flex;
	align-items: stretch;
	width: 100%;
	border-radius: 10px;
	padding: 10px;
	background-color: transparent;
}

.premierLeague_contentBox .imgWrap img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	transition: .4s all;
}

.premierLeague_contentBox:hover .imgWrap img {
	transform: scale(1.1);
}

.premierLeague_contentBox .content {
	position: relative;
	border-top: 1px solid #ECECFC;
	padding: 20px;
}

.premierLeague_contentBox:hover .content {
	background-color: #cb8b04;
}

.premierLeague_contentBox .content .matchSchedule {
	padding: 6px 15px;
	background: #fff;
	border-radius: 50px;
	text-align: center;
	width: 100%;
	max-width: max-content;
	margin: -30px auto 15px;
	position: relative;
	border: 1px solid #ECECFC;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.premierLeague_contentBox .content .matchSchedule .date {
	color: #121212;
	font-size: 14px;
	font-weight: 400;
}

.premierLeague_contentBox .content .matchSchedule span {
	color: #121212;
	font-size: 14px;
	font-weight: 400;
}

.premierLeague_contentBox .content .matchSchedule .time {
	color: #121212;
	font-size: 14px;
	font-weight: 400;
	margin-left: 4px;
}

.premierLeague_contentBox .content .content_inner {
	position: relative;
	background: transparent;
	padding: 17px 13px;
	margin-top: 30px;
	border-radius: 10px;
}

.premierLeague_contentBox:hover .content .content_inner {
	background-color: #ffffff;
}

.premierLeague_contentBox .content h3 {
	margin-bottom: 0px;
	color: #121212;
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
}

.premierLeague_contentBox .content .details_Bar {
	display: flex;
	align-items: center;
	gap: 4px;
}

.premierLeague_contentBox .content .details_Bar .category,
.premierLeague_contentBox .content .details_Bar span,
.premierLeague_contentBox .content .details_Bar .league {
	color: #121212;
	font-size: 14px;
	font-weight: 400;
}

.premierLeague_contentBox .content .product_Price {
	max-width: max-content;
	border-radius: 40px;
	display: flex;
	height: 45px;
	justify-content: center;
	align-items: center;
	column-gap: 5px;
	background: transparent;
	border: 1.5px solid #F2F2F9;
	color: #121212;
	padding: 0 2rem;
	cursor: pointer;
	margin-top: 12px;
	transition: .4s all;
}

.premierLeague_contentBox:hover .content .product_Price {
    background-color: #cb8b04;
    border-color: #cb8b04;
    color: #ffffff !important;
}

.premierLeague_slider .swiper-scrollbar {
	height: 16px;
	border: 1px solid #EBEBEB;
	background: unset;
	padding: 3px 20px;
	position: unset;
	margin-top: 32px;
}

.premierLeague_slider .swiper-scrollbar-drag {
	background: #edecec;
}
.ebook-card{
	border: 1px solid #eaeaea;
	padding: 15px;
	border-radius: 12px;
	background: #fff;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}
.ebook-img{
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 15px;
}
.ebook-img img{
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}
.ebook-card h3{
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.4;
	min-height: 45px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ebook-card .ebook-price{
	font-size: 22px;
	font-weight: 700;
	color: #eab308;
	margin-bottom: 15px;
}
.ebook-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	border-color: #eab308;
}
.ebook-card:hover .ebook-image img{
	transform: scale(1.05);
}
.ebook-btn button{
	width: 100%;
	padding: 10px;
	border: none;
	outline: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 25px;
	background: linear-gradient(90deg, #f4c636, #ebaa21);
	color: #fff;
}
.ebook-sec .headContent h3{
	color: #181733;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.ebook-sec{
	padding: 40px 0;
}
/* premierLeague_Sec end */

/* Responsive Design */
@media (max-width: 768px) {
	.ticket_informationBox h3 {
		font-size: 20px;
	}

	.ticket_informationHead {
		padding: 15px;
	}

	.ticket_infoTitle {
		font-size: 14px;
	}

	.ticket_informationBody {
		padding: 20px 15px;
	}

	.ticket_informationBody h5 {
		font-size: 16px;
	}

	.ticket_informationBody h6 {
		font-size: 15px;
	}
}
/* more_info section css */


@media (max-width: 991px) {
	.mob_StadiumImage{
		display: block;
	}
	.headerLogo{
		text-align: center;
	}
	.header_IconMenuWrapper > *:nth-child(2) {
		display: none;
	}
	.footballTeamDetails{
		display: block;
	}
	.footballTeamDetails_Left{
		margin-bottom: 22px;
		align-items: flex-start;
	}
	.footballTeamDetails-info{
		gap: 8px;
	}
	.football-date,
	.footballtime{
		padding: 5px 6px;
		gap: 6px;
		font-size: 12px;
	}
	.footballTeamDetails-btn{
		max-width: 100%;
	}
	header .row > div:nth-child(1){
		order: 2;
	}
	header .row > div:nth-child(2){
		order: 1;
	}
	header .row > div:nth-child(3){
		order: 3;
	}
	.ticket_card{
		flex: 0 0 60%;
		max-width: 60%;
	}
	.subcategory-img , .subcategory_ticket_date, .subcategory_list ul li{
		justify-content: center;
	}
	.headerContentWrapper .menus{
		display: none;
	}
	.contact_content {
		padding-right: 15px;
	}
	.nav_links{
		display:none ;
	}
	.mob_btn {
		display: flex;
	}
	.header_CartMenuBox .fkcart-shortcode-container .fkcart-shortcode-price{
		display: none;
	}
	.subscirbe_banner .row{
		flex-direction: column-reverse ;
	}
	.subscirbe_banner_img img {
		margin-top: 0;
		padding-left: 0px;
		width: 60%;
		height: auto;
		object-fit: cover;
	}
	.subscirbe_banner_form button{
		position: relative;
		top: inherit;
		right: inherit;
		margin-top: 15px;
		width: 100%;
	}
	.subscirbe_banner_content {
		padding: 20px 50px 20px 50px;
	}
	.reviews_line{
		justify-content: center ;
	}
	.search_con{
		max-width: 576px ;
	}
	.show_parent_sec .row.direct_set{
		flex-direction: column-reverse ;
	}
	.subscirbe_banner_form{
		height: 100%;
		border:none;
		display: flex;
		flex-direction: column;
		gap: 5px ;
	}
	.subscirbe_banner_form input{
		border: 1px solid #FFFFFF;
	}
	.subscirbe_banner_img{
		display: none ;
	}
	.subcategory_list ul {
		border-left: none ;
	}
	.show_tickets_Sec .row.ulat{
		flex-direction: column-reverse ;
	}
	.payment_img {
		text-align: center;
		padding: 0px 0px 22px 0px;
		display: flex	;
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}
	.payment_img svg:nth-child(1){
		width: 65px !important;
	}
	.payment_img svg:nth-child(2){
		width: 65px !important;
	}
	.payment_img svg:nth-child(3){
		width: 65px !important;
	}
	.payment_img svg:nth-child(4){
		width: 65px !important;
	}
	.ticket_sec_img{
		margin-bottom: 22px;
		display: none !important;
	}
	.footerLogo{
		text-align: center;
		margin-bottom: 32px;
	}
	.footerQuickLinks ul{
		flex-flow: wrap;
		justify-content: center;
	}
	.footerCopyright{
		display: block;
	}
	.footerCopyright p{
		text-align: center;
		margin-bottom: 8px;
	}
	.footerQuickLinks{
		margin-bottom: 22px;	
	}
	.FooterPaymentMethods ul{
		justify-content: center;
	}
	.menuListing{
		display: none;
	}
	.club-info h1{
		font-size: 26px;
	}
	.club-info p{
		font-size: 12px;
	}
	.club-info {
		width: 65%;
	}
}
@media (max-width: 768px) {
	.bannerSliderContentBox .innerContent{
		width: 100%;
	}
	.headerContactDetails{
		gap: 0.5rem !important;
	}
	.newsLetterSecContent{
		width: 100%;
	}
}
@media (max-width: 767px) {
	.about-us_SecContent{
		margin-bottom: 32px;
	}
	.subcategory_banner_Section {
		padding: 25px 0;
	}
	.show_tickets_Sec {
		padding: 10px 0 20px;
	}
	.banner-content h1 {
		font-size: 30px;
	}
	.banner-content p {
		font-size: 12px;
	}
	.most_popular {
		padding: 24px 0;
	}
	.testimonial_content{
		padding-right: 0px ;
		align-items: center ;
	}
	.testimonial_content p {
		font-size: 14px;
	}
	.upcoming_events_top .section_title h2 {
		font-size: 20px;
	}
	.upcoming_events_top .section_title p {
		font-size: 10px;
	}
	.testimonial_Sec .img-wrap{
		justify-content: flex-start !important;
		margin-top: 15px;
	}
	.testimonial_Sec .img-wrap img{
		max-width: 150px;
		height: auto;
	}
	.banner-content h1{
		font-size: 42px;
	}
	.banner-content p{
		font-size: 16px;
	}
	.newsLetterSecContent h3{
		font-size: 24px;
		margin-bottom: 15px;
	}
	.newsLetterSecContent p{
		margin-bottom: 15px;
	}
	.newsLetterSecContent p , .newsLetterSecForm button{
		font-size: 13px;
	}
	.club-info {
		width: 100%;
	}
}
@media (max-width: 576px) {
	.headerLogo a h1{
		font-size: 24px;
	}
	.ticket_card_content ul li span{
		font-size: 12px ;
	}
	.ticket_card_buy_area_subcontent{
		margin-bottom: 15px;
	}
	.ticket_card_content ul{
		flex-flow: wrap;
	}
	.ticket_card_content ul li h6{
		font-size: 12px ;
	}
	.ticket_card_buy_area {
		padding: 0;
		display: block;
	}
	.custom-quantity {
		margin: 0;
		flex: 1;
	}
	.ticket_buy_now_btn{
		flex: 1;
	}
	.custom-quantity button{
		padding: 6px 14px;
	}
	.custom-quantity input{
		padding-left: 0 ;
	}
	.ticket_buy_now_btn button{
		font-size: 12px;
	}
	.subscirbe_banner_content {
		padding: 20px;
	}
	.banner-box{
		height: 312px ;
	}
	button.search_btn span {
		display: none;
	}
	.search_btn{
		padding: 10px 12px;
		border-radius: 50%;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
	}
	.search_icon {
		display: none;
	}
	.search_con{
		height: 69px;
		width: 90%
	}
	.search_con input{
		padding: 20px 38px 20px 20px;
	}
	.section_title h2 {
		font-size: 20px;
	}
	.testimonial_Sec .contentbox h2{
		font-size: 20px;
	}
	.testimonial_Sec .contentbox h2 br{
		display: none;
	}
	.event_card_img img{
		height: 230px;
	}
	.event_card_content .date_time span{
		font-size: 11px ;
	}
	.upcoming_event_card_img img {
		height: 116px;
		width: 116px;
	}
	.upcoming_event_card_left_content p{
		margin-bottom:5px ;
	}
	.upcoming_event_card_left_content h6 {
		font-size: 14px;
	}
	.upcoming_event_card_left_content span{
		margin-bottom: 0px ;
		font-size: 10px ;
	}
	.bannerSliderContentBox .innerContent h1{
		font-size: 32px;
		margin-bottom: 15px;
	}
	.bannerSliderContentBox .innerContent p{
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
	.matchesScheduleList ul li .content h3{
		font-size: 23px;
	}
	.matchesScheduleList ul li .imgWrap img{
		width: 80px;
		height: 80px;
	}
}
@media (max-width: 575px){
	.about-us_SecContent h3{
		font-size: 20px;
	}
	.about-us_SecContent h2{
		font-size: 24px;
	}
	.testimonialsSecSlider .swiper-slide{
		width: 100%;	
	}
	.ticket_card{
		flex: 0 0 90%;
		max-width: 90%;
	}
	.subcategory_ticket_date, .subcategory_ticket_location , .subcategory_list ul li{
		font-size: 12px;
	}
	.subcategory_ticket_date i, .subcategory_ticket_location i {
		height: 25px;
		width: 25px;
		line-height: 25px;
	}
	.subcategory_list ul li img {
		width: 17px;
	}
	.primarybtn-btn a{
		margin-left: unset !important;
	}
	.soldout-btn{
		margin-left: unset !important;
	}
	.newsLetterSecContent h3{
		font-size: 32px;
	}
	.matchesScheduleList ul li .imgWrap{
		margin-right: 0px !important;
		padding-right: 0px !important;
		flex: 0 0 85px !important;
		max-width: 85px !important;
	}
	.matchesScheduleList ul li .content h3{
		font-size: 18px;
		margin-bottom: 0px;
	}
	.matchesScheduleList ul li .content h2{
		font-weight: 500 !important;
		font-size: 14px !important;
	}
	.testimonialsSecSlider .contentBox p{
		text-align: justify;
	}
	.ticket_card_buy_area .cart{
		flex-direction: row !important;
		align-items: center;
	}
	.soldout-btn span{
		font-size: 13px;
	}
	.headerLogo a img{
		max-width: 100%;
	}
	.newsLetterSecContent h3{
		font-size: 24px;
	}
	.newsLetterSecContent p , .newsLetterSecForm button{
		font-size: 13px;
	}
	.banner-content{
		width: 93%;
	}
	.banner-content h1 {
		font-size: 32px;
	}
	.banner-box{
		height: 70vh;
	}
	.banner-content p {
		font-size: 14px;
	}
	.newsLetterSec{
		padding: 30px 0;
	}
	.newsLetterSec-img{
		display: none;
	}
	.newsLetterSecForm{
		flex-direction: column;
	}
	/* 	.newsLetterSecContent{
	position: unset;
	transform: unset;
} */
	#fkcart-floating-toggler{
		right: 12px;
	}
	.chat_form , .chat_widget{
		left: 12px;
	}
}