/* ----------------------------------------------------------------------------------------
* Author        : Bizbrolly
* Template Name : SSPL Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Our Services css
08. What We Do css
09. Our Features css
10. Why Choose Us css
11. Our Schedule css
12. Match Highlights css
13. Club Success css
14. Our Testimonial css
15. CTA Box css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Services Page css
20. Service Single css
21. Blog Archive css
22. Blog Single css 
23. Team Page css 
24. Team Single css 
25. Testimonials Page css 
26. Image Gallery css 
27. Video Gallery css 
28. FAQs Page css 
29. Contact Us Page css 
30. 404 Error Page css 
31. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #050d42;
	--secondary-color: #FFFFFF1A;
	--text-color: #999999;
	--accent-color: #c04991;
	--gradient-second-color: #5a4c97;
	--white-color: #FFFFFF;
	--divider-color: #0315211A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Poppins", sans-serif;
	--accent-font: "Bebas Neue", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1em;
	color: var(--primary-color);
	background-color: var(--white-color);
}

::-webkit-scrollbar-track {
	background-color: var(--white-color);
	border-left: 1px solid var(--white-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.25em;
	font-size: .9rem;
}

.small,
small {
	font-size: .755em;
}

.fs-9 {
	font-size: 9px !important;
}

.fs-10 {
	font-size: 10px !important;
}

.fs-11 {
	font-size: 11px !important;
}

.fs-12 {
	font-size: 12px !important;
}

.fs-13 {
	font-size: 13px !important;
}

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

.fs-15 {
	font-size: 15px !important;
}

.fs-16 {
	font-size: 16px !important;
}

.fs-18 {
	font-size: 18px !important;
}

.fs-20 {
	font-size: 20px !important;
}

.fs-21 {
	font-size: 21px !important;
}

h1,
h2,
h3 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.1em;
	color: var(--primary-color);
}

h4,
h5,
h6 {
	margin: 0;

	font-weight: 400;
	line-height: 1.6em;
	color: var(--primary-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

/*.container{
	max-width: 1300px;
}*/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .1);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.form-select {
	font-size: .85rem;
}

/*.row{
    margin-right: -15px;
    margin-left: -15px;
}
*/
/*.row > *{
	padding-right: 15px;
	padding-left: 15px;
}*/

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	/* font-family: var(--accent-font); */
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	text-transform: uppercase;
	background: var(--primary-color);
	color: var(--white-color);
	border: none;
	border-radius: 100px;
	padding: 17px 56px 17px 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 6px;
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.phoneheader-top.btn-default::before {
	background-image: url('../images/icons8-user-50.png');
	background-size: 23px;
}

.btn-default:hover::before {
	background-color: var(--primary-color);
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted {
	background: var(--white-color);
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default.btn-transparent {
	color: var(--white-color);
	background: var(--secondary-color);
}

.readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--accent-color);
	text-transform: capitalize;
	display: none;
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	filter: brightness(0) invert(0);
	transform: rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-title.section-title-center {
	width: 100%;
	max-width: 640px;
	text-align: center;
	margin: 0 auto;
}

.section-title {
	position: relative;
	margin-bottom: 25px;
	padding-top: 30px;
}

.section-bg-title {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.section-bg-title span {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 60px;
	line-height: 1em;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white-color);
	background: linear-gradient(360deg, rgba(34, 34, 34, 0) 15.5%, rgba(34, 34, 34, 0.2) 100%);
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
}

.section-title h3 {

	position: relative;
	display: inline-block;
	font-size: 19px;
	line-height: 1.5em;
	letter-spacing: 0.1px;
	text-transform: uppercase;
	color: var(--primary-color);
	/* background: url(../images/icon-sub-heading.svg) no-repeat; */
	/* background-position: left top 2px; */
	/* background-size: 20px auto; */
	/* padding-left: 30px; */
	margin-bottom: 10px;
	font-family: var(--default-font);
}

.section-title h1 {
	font-size: 74px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 54px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

/* Disable Custom Cursor - Hide the inverted color cursor */
.cb-cursor {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

/* Ensure normal cursor on all elements */
* {
	cursor: auto !important;
}

/* Founder Image Styling */
.founder-img {
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(237, 237, 237, 0.14);
	margin-bottom: 20px;
	max-width: 100%;
	height: auto;
}

/* Founder Figcaption Styling */
.founder-image-wrapper {
	text-align: center;
	margin-top: 15px;
}

.founder-name {
	font-family: var(--accent-font);
	font-size: 28px;
	font-weight: 400;
	color: var(--white-color);
	margin: 0 0 8px 0;
	line-height: 1.2;
}

.founder-designation {
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--accent-color);
	margin: 0;
	padding-bottom: 0.5rem;
}

/* Team Behind SSPL CTA Button */
.btn-team-behind {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	color: var(--white-color);
	border: none;
	border-radius: 100px;
	padding: 18px 40px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	margin-bottom: 1rem;
}

.btn-team-behind::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #c04991 0%, #5a4c97 100%);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.btn-team-behind:hover::before {
	opacity: 1;
}

.btn-team-behind:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(192, 73, 145, 0.4);
}

.btn-team-behind i {
	font-size: 14px;
	transition: transform 0.3s ease-in-out;
}

.btn-team-behind:hover i {
	transform: translateX(5px);
}

/* Teams Grid Section Styles */
.teams-grid-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.teams-grid-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.team-card-item {
	background: #ffffff;
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease-in-out;
	text-align: center;
}

.team-card-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card-header {
	margin-bottom: 20px;
}

.team-card-header .team-logo {
	width: 100px;
	height: 100px;
	margin: 0 auto 15px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-radius: 50%;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-card-header .team-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.team-card-header .team-name {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 400;
	color: var(--primary-color);
	margin: 0;
}

.team-players-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}

.team-player-thumb {
	position: relative;
	text-align: center;
}

.team-player-thumb img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--accent-color);
	margin-bottom: 5px;
}

.team-player-thumb .player-name {
	display: block;
	font-size: 11px;
	color: var(--text-color);
	font-weight: 500;
}

.team-view-more {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-color);
	padding: 10px 25px;
	border: 2px solid var(--accent-color);
	border-radius: 100px;
	transition: all 0.3s ease-in-out;
}

.team-view-more:hover {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	color: var(--white-color);
	border-color: transparent;
}

/* Tablet - 3 columns */
@media (max-width: 1199px) {
	.teams-grid-wrapper {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
}

/* Small Tablet - 2 columns */
@media (max-width: 991px) {
	.teams-grid-wrapper {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.team-card-header .team-name {
		font-size: 20px;
	}

	.team-player-thumb img {
		width: 50px;
		height: 50px;
	}
}

/* Mobile - 1 column */
@media (max-width: 575px) {
	.teams-grid-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.team-card-item {
		padding: 20px;
	}

	.team-card-header .team-logo {
		width: 80px;
		height: 80px;
		padding: 12px;
	}

	.team-card-header .team-name {
		font-size: 18px;
	}

	.team-players-grid {
		gap: 8px;
	}

	.team-player-thumb img {
		width: 45px;
		height: 45px;
		border-width: 2px;
	}

	.team-player-thumb .player-name {
		font-size: 10px;
	}
}

/* Team Showcase Section */
.team-showcase-section {
	padding: 0px 0px 40px;
	background: var(--white-color);
	border-bottom: 2px solid var(--gradient-second-color);
}

/* Section Underline */
.section-underline {
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	margin: 20px auto 0;
	border-radius: 2px;
}

/* Leader Cards */
.leader-card {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.leader-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-image {
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 15px;
}

.leader-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	object-position: center top;
	transition: all 0.4s ease-in-out;
}

.leader-card:hover .leader-image img {
	transform: scale(1.05);
}

.prominent-card {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border: none;
}

.prominent-card .leader-name,
.prominent-card .leader-designation {
	color: var(--white-color);
}


.leader-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-grow: 1;
	justify-content: center;
}

.leader-name {
	font-family: var(--accent-font);
	font-size: 32px;
	font-weight: 400;
	color: var(--primary-color);
	margin: 0;
}

.leader-designation {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.accent-text {
	color: var(--accent-color);
}

.secondary-text {
	color: var(--text-color);
}

.muted-text {
	color: #888;
	font-style: italic;
}

/* Management Section */
.management-header {
	text-align: center;
	margin-bottom: 40px;
}

.management-title {
	font-family: var(--accent-font);
	font-size: 28px;
	font-weight: 400;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.horizontal-separator {
	width: 100%;
	height: 1px;
	background: var(--divider-color);
	max-width: 400px;
	margin: 0 auto;
}

/* Management Grid */
.management-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.management-card {
	background: var(--white-color);
	border: 2px solid var(--accent-color);
	border-radius: 15px;
	padding: 15px 10px;
	text-align: center;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.management-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	border-color: var(--accent-color);
}

.management-name {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.management-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Leader Cards - Tablet - 3 columns */
	.leader-card {
		padding: 15px;
	}

	.leader-image img {
		height: 200px;
	}
}

@media (max-width: 767px) {
	.team-showcase-section {
		padding: 0px 0px 30px;
	}

	.leader-card {
		padding: 20px;
	}

	.leader-name {
		font-size: 26px;
	}

	.management-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.management-card {
		padding: 20px 15px;
	}

	.management-name {
		font-size: 14px;
	}

	/* Leader Cards - Mobile - 1 column */
	.leader-card {
		margin-bottom: 20px;
	}

	.leader-image img {
		height: 280px;
	}
}

@media (max-width: 480px) {
	.management-grid {
		grid-template-columns: 1fr;
	}

	.btn-team-behind {
		font-size: 16px;
		padding: 15px 30px;
	}

	/* Leader Cards - Small Mobile */
	.leader-image img {
		height: 250px;
	}

	.leader-name {
		font-size: 24px;
	}

	.leader-designation {
		font-size: 14px;
	}
}

/* Mobile override for hero slider text - must come after base rules */
@media (max-width: 768px) {

	.section-title h1,
	.section-title h1.hero-title {
		font-size: 1.3rem !important;
		line-height: 1.35em !important;
	}

	.section-title h1 span {
		font-size: 1.3rem !important;
	}

	.section-title h2 {
		font-size: 1.5rem !important;
	}

	.section-title p {
		font-size: 0.85rem !important;
		margin-top: 10px;
	}
}

.section-title-content p {
	margin: 0;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	text-align: left;
	margin-top: 30px;
}

.dark-section {
	background-color: var(--primary-color);
}

.dark-section .section-bg-title span {
	color: var(--primary-color);
	background: linear-gradient(360deg, rgba(255, 255, 255, 0) 29.01%, rgba(255, 255, 255, 0.2) 100%);
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
}

.dark-section .section-title-content p,
.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title h2 span {
color: var(--white-color);
}

.dark-section .section-title p {
	display: none;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/
.header-btn {
	display: flex;
	align-items: center;
}

header.main-header {
	position: absolute;
	top: 27px;
	width: 100%;
	/* border-bottom: 1px solid var(--dark-divider-color); */
	z-index: 100;
	background: #5a4c97;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);

}

header.main-header .navbar-brand img {
	width: 141px;

	position: absolute;
	top: -25px;
	transition: .3s ease-in-out;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;

}

.phoneheader-top {
	display: block;
}

header.main-header .header-sticky.active .phoneheader-top {
	display: block;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.6s ease-in-out;
}

.our-scrolling-ticker .bg-back-tras:before {
	background: red;
	transform: skew(-31deg, 0deg);
	width: 92px;
	background: #050d42;
	content: "";
	position: absolute;
	left: -10px;
	z-index: -1;
	height: 28px;
	top: -1px;
}

.our-scrolling-ticker span.spotlight {
	position: absolute;
	z-index: 1;
	color: #fff;
	top: 0px;
	margin-left: -26px;
	padding: 5px;
	text-transform: capitalize;
	font-size: 13px;
	font-weight: 500;
}

.top-link-info {
	position: absolute;
	top: 0px;
	color: #fff;
	background: var(--primary-color);
	right: 0px;
	padding: 7px 20px 7px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.schedule-section {
	position: relative;
	overflow: hidden;
}



/* Responsive adjustments for top-link-info on smaller screens */
@media (max-width: 1199px) {
	.top-link-info {
		padding: 6px 15px;
		font-size: 12px;
	}

	.top-link-info span a {
		font-size: 11px;
	}

	.top-link-info .footer-social-links ul li a {
		width: 22px;
		height: 22px;
	}

	.top-link-info .footer-social-links ul li a i {
		font-size: 14px;
	}

	.top-link-info svg {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 991px) {
	.top-link-info {
		position: relative;
		top: auto;
		right: auto;
		padding: 8px 15px;
		font-size: 12px;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.top-link-info span {
		width: 100%;
		text-align: center;
		margin-bottom: 5px;
	}

	.top-link-info .footer-social-links {
		margin-left: 0;
	}
}

@media (max-width: 767px) {
	.top-link-info {
		padding: 6px 10px;
		font-size: 11px;
	}

	.top-link-info span a {
		font-size: 10px;
	}

	.top-link-info .footer-social-links ul li a {
		width: 20px;
		height: 20px;
	}

	.top-link-info .footer-social-links ul li a i {
		font-size: 12px;
	}
}

.top-link-info span a {
	color: #fff;
	font-size: 12px;
}

.top-link-info .footer-social-links {
	margin-left: 22px;
}

.top-link-info .footer-social-links ul li a {
	width: 23px;
	height: 23px;
}

.top-link-info .footer-social-links ul li a i {
	font-size: 16px;
	color: #fff;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-bottom: 1px solid var(--dark-divider-color);
	box-shadow: 0px 1px 3px 0px rgba(18, 20, 32, 0.14);
	animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	-webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
	backdrop-filter: blur(10px);
}

@keyframes headerSlideDown {
	0% {
		margin-top: -150px;
	}

	100% {
		margin-top: 0;
	}
}

.navbar {
	padding: 5px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: right;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}

.main-menu ul li.nav-item a {
	font-family: var(--Manrope);
	font-size: 13px;
	font-weight: 500;
	line-height: normal;
	padding: 9px !important;
	color: var(--white-color);
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 3px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--primary-color);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item a {
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 8px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--primary-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--accent-color);
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-color);
}

.bg-layer-top {
	background: #101010;
	position: relative;
	z-index: 9;
	width: 100%;
	height: 100%;
}

nav.navbar.navbar-expand-lg:after {
	position: absolute;
	left: -24px;
	content: "";
	top: 0px;
	background: #fff;
	z-index: -1;
	width: 24%;
	height: 100%;
	transform: skew(-21deg, 0deg);
}

@media (max-width: 767px) {
	nav.navbar.navbar-expand-lg:after {
		width: 180px;
	}
}

.bg-layer-top {
	background: #ffffff;
	position: relative;
	z-index: 9;
	width: 100%;
	height: 100%;
	transform: skew(-20deg, 0deg);
	left: -6px;
}

header.main-header .header-sticky.active .navbar-brand img {
	width: 80px;
	position: absolute;
	top: 4px;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background-image: url('../images/hero-bg.svg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	/*padding: 195px 0 90px;*/
}

.hero::before {
	content: '';
	position: absolute;
	top: 110px;
	right: 10px;
	background: url('../images/hero-bg-shape-1.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 160px;
	height: 160px;
}

.hero::after {
	content: '';
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: url('../images/hero-bg-shape-2.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 160px;
	height: 160px;
}

.hero.hero-bg-image .carousel-item {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover !important;

	height: 100%;

	/*height: 100vh;
    display: flex
;
    align-items: center;*/
}

.hero.hero-bg-image .carousel-inner {

	height: 95vh;
	display: flex;
	align-items: center;
}

.hero.hero-bg-image::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(to top, #000, transparent);
	/*background: var(--primary-color);*/
	opacity: 20%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image::after {
	display: none;
}

.hero.hero-bg-image.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero.hero-bg-image .hero-content {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	text-align: left;
	/*padding-top: 155px;*/
	height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

}

.hero.hero-bg-image .hero-content .hero-content-body {
	/*margin: 9px auto 0;*/
}

.hero.hero-bg-image .hero-content .hero-btn,
.hero.hero-bg-image .hero-content .hero-content-list ul {
	justify-content: center;
}

.hero-content .section-title {
	padding: 1rem;
}

.hero-content-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 60px;
}

.hero-content-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 30px;
}

.hero-content-list ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.hero-content-body {
	width: 100%;
	max-width: 80%;
	margin-top: 40px;
}

.hero-content-body p {
	color: var(--white-color);
	margin-bottom: 0;
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.hero-image {
	margin-left: 30px;
}

.hero-image figure {
	display: block;
}

.hero-image img {
	width: 100%;
	aspect-ratio: 1 / 1.14;
	object-fit: cover;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	padding: 14px;
	background: #c04991;
}

.hero .carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-size: 18px;
	background-position: center center;
	background-repeat: no-repeat;
}

.hero .carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
	background-size: 18px;
	background-position: center center;
	background-repeat: no-repeat;
}

.hero .carousel-control-next,
.hero .carousel-control-prev {

	top: unset;
	bottom: 20px;
	justify-content: end;
	width: 20px;
}

.carousel-control-prev {
	right: 6.5%;
}

.hero .carousel-control-next {
	right: 4%;
}

.hero .carousel-control-prev {
	left: unset;
}

/************************************/
/***   04. Counter css   ***/
/************************************/

.bg-position {
	background-position: 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.z-index-1 {
	z-index: 1;
}

.td-countdown-3-wrap {
	background: var(--accent-color);
	box-shadow: 0 12px 50px 0 rgba(0, 0, 0, .15);
	border-radius: 20px;
	padding: 30px 60px 20px 50px;
	/*margin-top: -90px;*/
}

.td-countdown-3-shape {
	position: absolute;
	right: 28%;
	top: 0;
	z-index: -1;
}

.td-countdown-3-shape-2 {
	position: absolute;
	left: 28%;
	bottom: 0;
	z-index: -1;
}

.td-countdown-2-title .title {
	font-weight: 700;
	font-size: 36px;
	letter-spacing: 1.5px;

}

.td-countdown-2-title .subtitle {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;

}

.td-countdown-3-wrap .td-hero-countdown {
	margin-left: -38px;
}

.td-hero-countdown ul {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	padding-left: 0px;
	justify-content: center;
}


.td-countdown-3-wrap .td-hero-countdown ul li {
	color: var(--td-common-black);
	background: var(--white-color);
	border-radius: 18px;
	width: 90px;
	height: 90px;
	font-weight: 600;
	/* line-height: 16px; */
	font-size: 39px;
	padding-top: 25px;
}

.list-inline-item:not(:last-child) {
	margin-right: .5rem;
}

.td-hero-countdown ul li {
	font-weight: 600;
	font-size: 30px;
	text-transform: uppercase;
	color: var(--white-color);
	text-align: center;
	width: 98px;
	height: 98px;
	border: 3px solid var(--white-color);
	;
	border-radius: 30px;
	padding-top: 22px;
	margin: 0 !important;
}

/*.td-countdown-3-wrap .td-hero-countdown ul li span {
    font-size: 12px;
    margin-top: 0;
}*/

.td-hero-countdown ul li span {
	font-size: 14px;
	display: block;
	margin-top: 10px;
}

.td-countdown-3-wrap .td-countdown-2-location {
	background: none;
	display: inline-block;
	padding: 0;
	border-radius: 0;
	-webkit-clip-path: none;
	clip-path: none;
	display: flex;
	align-items: center;
}

.td-countdown-3-wrap .td-countdown-2-location-icon {
	position: inherit;
	z-index: 1;
	top: inherit;
	left: inherit;
	margin-right: 15px;
}

.td-countdown-3-location {
	font-size: 18px;
	line-height: 24px;
	text-transform: capitalize;
	text-decoration: underline;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	display: inline-block;
	color: var(--white-color);
}

.td-countdown-area.bg-position {
	padding: 59px 0px;
	background: #02111e;
}

/************************************/
/***   05. fixture css   ***/
/************************************/

.menu-swiper {
	width: 100vw;
	position: relative;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.6s ease;
	overflow-x: hidden;
}

.menu-swiper.swiper-initialized {
	visibility: visible;
	opacity: 1;
}

.menu-swiper .swiper-slide {
	/* opacity: 0.5; REMOVED */
	/* transform: scale(0.8); REMOVED */
	transition: all 0.3s ease;
	cursor: grab;
	/* margin-right: -30px !important; REMOVED to fix visibility */
}

.menu-swiper .swiper-slide.swiper-slide-active {
	/* opacity: 0.95; */
	/* transform: scale(1); */
	cursor: pointer;
}

.menu-swiper .swiper-slide:not(.swiper-slide-active) a {
	pointer-events: none;
}

.menu-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.menu-swiper .swiper-controls-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	margin: 30px auto 0;
	font-size: 18px;
	font-weight: bold;
	color: white;
	max-width: 300px;
}

.menu-swiper .swiper-pagination {
	position: static;
	font-size: 16px;
	color: white;
	margin: 0;
}

.sports-fixture-league {
	padding: 39px 0px 31px;
	background: #ffffff;
}

.league-inner-area:hover {
	background: #c04991;
	transition: .3s ease-in;
	border-bottom: none;
}

.menu-swiper .swiper-slide.swiper-slide-active .league-inner-area {
	background: #050d42;
	transition: .3s ease-in;
	border-bottom: none;
}

/*.featured-section {width:90%;max-width:1400px;margin:0 auto;padding-top:10vh;padding-bottom:10vh;}*/

.standing-btn {
	width: 129px;
	height: 39px;
	rotate: 0deg;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	position: fixed;
	top: 41%;
	right: -45px;
	background-color: #c04991;
	border-top-left-radius: .5rem;
	border-top-right-radius: .5rem;
	z-index: 99;
	transform: rotate(270deg);
	color: #fff;
	border: 1px solid #c04991;
	text-transform: capitalize;
}

.standing-btn:after {
	rotate: -90deg;
	transition: 500ms ease-in;

	font-family: FontAwesome;

	content: "\f100";
	font-size: .875rem;
	line-height: 1;
	color: hsl(0, 0%, 100%);
	margin-left: 5px;
}

/* Container that holds both button and table */
.standing-table-area {
	position: fixed;
	top: 106px;
	right: -504px;
	/* width: 420px; */
	/* height: 100%; */
	/* background: #fff; */
	/* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2); */
	transition: right 0.5s ease-in-out;
	z-index: 1000;
	padding: 0;
}

/* When active, slide in */
.standing-table-area.active {
	right: 0;
}

.standing-btn {
	padding: 10px 20px;
	position: absolute;
	left: -84px;
	top: 253px;
	transition: left 0.5s ease-in-out;
	width: 129px;
	height: 39px;
	rotate: 0deg;
	background-color: #c04991;
	border-top-left-radius: .5rem;
	border-top-right-radius: .5rem;
	z-index: 9;
	transform: rotate(270deg);
	color: #fff;
	border: 1px solid #c04991;
	text-transform: capitalize;
}

/* Move button when panel is open */
.standing-table-area.active .standing-btn {
	left: -84px;
}

.standing-table-area-mobile {
	padding: 10px;
	background: var(--primary-color);
}

/* Show and center on mobile/tablet (below 769px) */
@media (max-width: 768px) {
	.standing-table-area-mobile {
		display: block !important;
		width: 100%;
		padding: 15px;
	}

	.standing-table-area-mobile-inner {
		text-align: center;
		width: 100%;
		margin: 0 auto;
		display: block;
	}

	.standing-table-area-mobile-inner .scheme_default {
		margin: 0 auto;
		float: none;
	}
}

/* Hide on desktop (769px and above) */
@media (min-width: 769px) {
	.standing-table-area-mobile {
		display: none !important;
	}
}

.scheme_default {
	margin-top: 54px;
	overflow: auto;
	/* max-height: calc(100% - 332px); */
	background: #fff;
	max-height: 461px;
	height: auto;
	width: 504px;
	border-radius: 12px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.scheme_default_mobile {
	overflow: auto;
	/* max-height: calc(100% - 332px); */
	background: #fff;
	max-height: 461px;
	height: auto;
	width: 100%;
	max-width: 100%;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.scheme_default {
		width: calc(100vw - 84px) !important;
		max-width: calc(100vw - 84px) !important;
	}

	.scheme_default .table-bx {
		overflow-x: auto;
		display: block;
	}

	.scheme_default_mobile .table-bx {
		display: table;
		width: 100%;
		min-width: 100%;
	}

	.scheme_default .table-bx table {
		min-width: 500px;
	}

	.scheme_default_mobile .table-bx th:nth-child(8),
	.scheme_default_mobile .table-bx td:nth-child(8) {
		display: none !important;
	}

	.scheme_default_mobile {
		width: 100% !important;
		border-radius: 12px !important;
	}

	.standing-btn,
	.standing-table-area,
	.standing-table-area.active,
	.standing-table-area.active .standing-btn {
		display: none !important;
	}
}

.matches {
	padding-left: 0px;
	margin-bottom: 0px;
	width: 107px;

}

.matches li {
	display: inline;

	border-right: 1px solid #ccc;
	padding-right: 5px;
}

.matches li:last-child {
	border-right: none;
}

/* main container */
.quicklink-accordion {
	position: fixed;
	width: 253px;
	max-width: 700px;
	z-index: 11111;
	bottom: 39px;
	left: 24%;
}

/* your fixed position container */
.quicklink-accordion {
	position: fixed;
	width: 100%;
	max-width: calc(100% - 103px);
	z-index: 11111;
	bottom: -6px;
	left: 121px;
	transition: transform 0.4s ease;
}

/* button */
.lookingfor-btn {

	border: none;
	background: #c04991;
	color: #fff;
	font-weight: bold;
	width: 297px;
	padding: 14px;
	cursor: pointer;
	transition: all 0.4s ease;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}

/* hidden panel */
.looking-body {
	background: #fff;
	/* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15); */
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.4s ease;
	width: calc(100% - 100px);
	display: flex;
	/* padding: 15px; */
	align-items: center;
}

/* when active */
.quicklink-accordion.active .looking-body {
	max-height: fit-content;
	opacity: 1;
}

/* slide up animation for whole box */
.quicklink-accordion.active {
	transform: translateY(-4px);
	/* same value as .looking-body height */
}

/* inside content */
.accordion-title {
	margin: 0;
	padding: 0px 32px;
	/* border-bottom: 1px solid #ddd; */
	font-weight: 700;
	color: #1b1b3a;
	margin-right: 27px;
	letter-spacing: .5px;
}

.quicklink-list {
	display: flex;
	/* flex-direction: column; */
	/* padding: 12px 16px; */
	gap: 0px;
	justify-content: space-between;
	width: calc(100% - 338px);
}

.looking-body .quicklink-list .quicklink-item:nth-child(odd) {
	background: #a9a6a6;
}

.quicklink-item {
	text-decoration: none;
	color: #0b1a56;
	font-weight: 600;
	padding: 20px 31px;
	background: #ccc;
	width: 100%;
	text-align: center;
}

/*.match-highlights.photos-sections .swiper-slide {
    margin-right: 20px !important;
}*/
.match-highlights.photos-sections .swiper-slide.swiper-slide-next {
	transform: scaleY(1.1);
}

.photos-sections .service-item:before {
	content: "";
	z-index: 1;
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, #000000 100%);
}

.photos-sections .service-image img {
	border-radius: 13px;
	height: 450px;

}

.photos-sections .match-highlight-btn {

	top: -95px;

	right: 150px;

}

/* Remove extra space/border on last slide */
.photos-sections .swiper-slide:last-child .service-item {
	border-right: none;
	margin-right: 0;
}

.photos-sections .swiper-wrapper {
	padding-right: 0;
}

.image-count {
	display: flex;
	position: absolute;
	background: #12344e;
	padding: 8px 9px;
	z-index: 99;
	border-bottom-right-radius: 10px;
	align-items: center;
}

.image-count span {
	color: #fff;
	font-size: 15px;
	padding-right: 6px;
}

.image-count span svg {
	width: 15px;
	height: 15px;
}

.clock {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.clock .time-block {
	background: #ffffff;
	color: #000000;
	display: flex;
	flex-direction: column;
	width: 99px;
	text-align: center;
	margin: 0px;
	padding: 13px;
	border-radius: 15px;
}

.clock .time-block .time,
.clock .time-block .label {
	margin-bottom: 5px;
}

.clock .time-block .time {
	padding: 0.2em 0;
	font-size: 2.0rem;
	font-weight: 600;
}

/************************************/
/***   05. Team section css   ***/
/************************************/
.team-supports-section {
	padding: 50px 0px;
	background: #efefef;
}

.waf-team .team-wrapper {
	/* display: grid; */
	/* grid-template-columns: repeat(4, 1fr); */
	/* gap: 5px; */
}

.team-card {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: background-image 2s ease;
	padding: 19px;
	text-align: center;
	border-radius: 8px;
	position: relative;
	transition: .3s ease-in-out;
	cursor: pointer;
	overflow: visible;
	/* Glassmorphism effect - semi-transparent white background */
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	aspect-ratio: 3/4;
	max-width: 200px;
	margin: 0 auto;
	/* Glass border effect */
	border: 1px solid rgba(255, 255, 255, 0.5);
	/* Subtle shadow for depth */
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.15);
}

.team-card.team-34 {
	background-image: none;
	background-size: 63%;
}

.team-card.team-34 {
	/*background-color: hsl(343, 90%, 37%);*/
	background-color: transparent;
}

.team-card.team-34::before {
	content: "";
	/*background: linear-gradient(180deg, #ad0937 0%, #470417 100%);
    opacity: 0;*/
	background: transparent;
	opacity: 0;
	transition: opacity .4s ease;

	z-index: 1;
}

.team-card.team-32 {
	background-image: none;
	background-size: 63%;
	/*background-image: url('https://www.rugbypremierleague.in/static-assets/images/teams/32.svg?v=1.31');*/
}

.team-card.team-32 {
	/*background-color: hsl(248, 66%, 17%);*/
	background-color: transparent;
}

.team-card.team-32::before {
	content: "";
	/*background: linear-gradient(180deg, #170F4A 0%, #F7A21D 100%);
    opacity: 0;*/
	background: transparent;
	opacity: 0;
	transition: opacity .4s ease;

	z-index: 1;

}

.team-card.team-33 {
	/*background-color: hsl(0, 0%, 0%);*/
	background-color: transparent;
}

.team-card.team-33::before {
	content: "";
	/*background: linear-gradient(180deg, #FAAA3D 0%, #010101 100%);
    opacity: 0;*/
	background: transparent;
	opacity: 0;
	transition: opacity .4s ease;
}

.team-card.team-31 {
	/*background-color: hsl(210, 89%, 28%);*/
	background-color: transparent;
}

.team-card.team-31::before {
	content: "";
	/*background: linear-gradient(180deg, #FCDA21 0%, #084887 100%);
    opacity: 0;*/
	background: transparent;
	opacity: 0;
	transition: opacity .4s ease;
}

.team-card.team-35 {
	/*background-color: hsl(212, 90%, 33%);*/
	background-color: transparent;
}

.team-card.team-35::before {
	content: "";
	/*background: linear-gradient(180deg, #084E9E 0%, #DF1F26 100%);
    opacity: 0;*/
	background: transparent;
	opacity: 0;
	transition: opacity .4s ease;
}

.team-card.team-30 {
	/*background-color: hsl(19, 89%, 58%);*/
	background-color: transparent;
}

.team-card.team-30::before {
	content: "";
	/* background: linear-gradient(180deg, #F37135 0%, #010101 100%);
    opacity: 0;*/
	background: transparent;
	opacity: 0;
	transition: opacity .4s ease;
}

.waf-team .team-card:hover::before {
	opacity: 1;
}

.team-card.team-34::before,
.team-card.team-32::before,
.team-card.team-33::before,
.team-card.team-31::before,
.team-card.team-35::before,
.team-card.team-30::before {
	position: absolute;
	inset: 0;
}

.waf-team .team-logo {
	width: calc(160 * .0625rem);
	height: calc(160 * .0625rem);
	margin: 0 auto 0 auto;
	padding: 0.5rem;
	background-color: transparent;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 1s ease;
	z-index: 2;
	position: relative;
}

.waf-team .team-logo img {
	margin-bottom: 0px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.waf-team .team-name {
	display: flex;
	flex-direction: column;
	text-align: center;
	text-transform: capitalize;
	font-size: 27px;
	line-height: 1.2;
	/*color: hsl(0, 0%, 100%);*/
	color: var(--white-color);
	z-index: 2;
	position: relative;
	margin-top: -5px;
	padding-bottom: 5px;
}

.waf-team .team-card:hover .team-logo {
	transform: scale(1.1);
}


/************************************/
/***   05. champions-area css   ***/
/************************************/


.champions-area {
	padding: 50px 0px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
}


/************************************/
/***   Olympic Countdown Section  ***/
/************************************/
.olympic-countdown-section {
	background: #ffffff;
	padding: 30px 0;
	border-top: 4px solid;
	border-bottom: 4px solid;
	border-image: linear-gradient(135deg, #5a4c97 0%, #c04991 100%) 1;
}

.olympic-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.olympic-details h3 {
	color: #050d42;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
}

.olympic-details p {
	color: #666;
	font-size: 16px;
	margin-bottom: 0;
}

.countdown-timer {
	display: flex;
	align-items: center;
	gap: 10px;
}

.countdown-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	padding: 15px 20px;
	border-radius: 10px;
	min-width: 80px;
}

.countdown-number {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.countdown-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 5px;
}

.countdown-separator {
	color: #5a4c97;
	font-size: 36px;
	font-weight: 700;
}

.olympic-tagline p {
	color: #050d42;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 0;
	max-width: 250px;
	text-align: right;
}

/* Responsive - Stack on mobile */
@media (max-width: 991px) {
	.olympic-info {
		flex-direction: column;
		text-align: center;
	}

	.olympic-details {
		order: 1;
	}

	.countdown-timer {
		order: 2;
		flex-wrap: wrap;
		justify-content: center;
	}

	.olympic-tagline {
		order: 3;
	}

	.olympic-tagline p {
		text-align: center;
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.countdown-item {
		padding: 10px 15px;
		min-width: 60px;
	}

	.countdown-number {
		font-size: 24px;
	}

	.countdown-separator {
		font-size: 24px;
	}
}

/* Extra small devices (below 433px) */
@media (max-width: 433px) {
	.olympic-countdown-section {
		padding: 20px 0;
	}

	.olympic-details h3 {
		font-size: 18px;
	}

	.olympic-details p {
		font-size: 13px;
	}

	.countdown-timer {
		gap: 5px;
	}

	.countdown-item {
		padding: 8px 10px;
		min-width: 45px;
		border-radius: 8px;
	}

	.countdown-number {
		font-size: 18px;
	}

	.countdown-label {
		font-size: 9px;
		margin-top: 3px;
	}

	.countdown-separator {
		font-size: 18px;
	}

	.olympic-tagline p {
		font-size: 14px;
	}
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
	position: relative;
	background: var(--primary-color);
	/*padding: 7px 0;*/
	/*z-index: 999;*/
	overflow: hidden;
	white-space: nowrap;
}

.scrolling-ticker-box {
	display: flex;
	width: 200%;
	--gap: 30px;
	position: relative;
	display: flex;
	padding: 7px 0;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 90s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content span {

	font-size: 12px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
}

/*.scrolling-content span img{
	width: 100%;
	max-width: 40px;
	margin-right: 30px;
	animation: infiniterotate 10s infinite linear;
}*/
/* Pause on hover */
.our-scrolling-ticker:hover .scrolling-content {
	animation-play-state: paused;
	cursor: pointer;
}

.scrolling-content span:after {
	position: absolute;
	width: 7px;
	height: 7px;
	background: #ffffff;
	content: "";
	border-radius: 100px;
	top: 5px;
	/* left: 10px; */
	margin-left: 13px;
}

/************************************/
/***    	06. About Us css      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.about-us-list {
	width: calc(100% - 170px);
}

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

.about-us-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.about-us-list ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.contact-us-circle {
	align-content: center;
}

.contact-us-circle a,
.contact-us-circle figure {
	position: relative;
	display: block;
	border-radius: 50%;
}

.contact-us-circle figure img {
	width: 100%;
	max-width: 110px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.contact-us-circle a:hover figure img {
	animation-play-state: paused;
}

.contact-circle-counter {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.contact-circle-counter h2 {
	font-size: 40px;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-image-box {
	position: relative;
}

.about-image-box {
	margin-left: 15px;
}

.about-us-images figure {
	display: block;
	border-radius: 20px;
}

.about-us-images img {
	width: 100%;
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
	border-radius: 20px;
}

.about-coach-box {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 100%;
	max-width: 220px;
	background: var(--secondary-color);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 10px;
	padding: 20px;
}

.about-coach-images {
	display: inline-flex;
	margin-bottom: 20px;
}

.coach-image {
	margin-left: -10px;
}

.coach-image:first-child {
	margin: 0;
}

.coach-image figure {
	display: block;
	border-radius: 50%;
}

.coach-image img {
	width: 100%;
	max-width: 40px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.about-coach-content h3 {
	font-size: 39px;
	line-height: 1.4em;

	color: var(--white-color);
}


/************************************/
/*** 	 07. Our Sponsor css	  ***/
/************************************/

button.btn-close {
	position: absolute;
	top: -28px;
	right: -22px;
	color: #fff;
	border: 2px solid #000000;
	z-index: 1;
	opacity: 1;
	padding: 7px;
	border-radius: 100%;
	filter: invert(1);
	font-size: 11px;
}

.new-sponsor-panel {
	width: 100%;
	height: auto;

	/*background-color: #081e40;*/
	display: flex;
	justify-content: space-between;
	gap: 0rem;
	flex-wrap: wrap;
}

.new-sponsor-panel>div {

	/*border-right: 2px solid #fef9c4;*/
	padding: 16px 15px;

	grid-template-columns: repeat(auto-fill, minmax(207px, 1fr));
	gap: 1rem;
	align-items: self-start;
}

@media(max-width: 1390px) {
	.new-sponsor-panel>div {
		grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
	}

	.new-sponsor-panel>div {

		padding: 7px 7px;

		gap: .7rem;

	}

	img.new-sponsor-panel__logo {
		width: 70px;
	}
}

/* About SSPL Section - Full width on PC with extra bottom padding */

.about-sspl-bx .row.mb-4>.col-lg-9 {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
	padding-bottom: 40px;
}

/* Mobile styles for mobile-main-div to show one in row with center alignment */
@media (max-width: 768px) {
	.mobile-main-div {
		width: 100% !important;
		flex: 0 0 100% !important;
		max-width: 100% !important;
		text-align: center !important;
		margin-bottom: 20px !important;
	}

	.mobile-main-div:last-child {
		margin-bottom: 0 !important;
	}

	.new-sponsor-panel {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	.new-sponsor-panel>div {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: 100% !important;
	}

	.new-sponsor-panel__logo--wrap--1 {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		flex-wrap: wrap !important;
		gap: 10px !important;
	}
}

/*.mobile-main-div {
    width: 14%;
}*/
img.new-sponsor-panel__logo {
	width: 83px;
}

@media screen and (max-width: 1366px) {

	.avg-bottom .fr-name,
	.new-sponsor-panel__font {
		font-size: 15px;
	}
}

.new-sponsor-panel__font {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
	height: 36px;
	color: #13456d;
	letter-spacing: .5px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 1100px) {
	.new-sponsor-panel__start img {
		width: 85px !important;
	}
}

.new-sponsor-panel__jio img,
.new-sponsor-panel__start img {
	width: 105px;
	height: auto;
}

.new-sponsor-panel__logo--wrap,
.new-sponsor-panel__tata {
	width: 100%;
}

@media screen and (max-width: 1366px) {

	.avg-bottom .fr-name,
	.new-sponsor-panel__font {
		font-size: 11px;
	}
}

.title-text-height {
	height: 25px;
	display: block;
}

.new-sponsor-panel__logo--wrap--1 {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	height: 120px;
}

@media screen and (max-width: 1024px) {
	.new-sponsor-panel__tata img {
		width: 110px;
		height: auto;
	}
}

@media only screen and (max-width: 1100px) {
	.new-sponsor-panel__tata img {
		width: 90px !important;
		height: auto;
	}
}

@media screen and (max-width: 1366px) {
	.new-sponsor-panel__tata img {
		width: 120px;
		height: auto;
	}
}

/************************************/
/*** 	 07. Our Sponsor css end  ***/
/************************************/

.broadcast-partners {
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.broadcast-partners .sponsor-link {
	display: flex;
	align-items: center;
	justify-content: center;
}

.broadcast-partners img.new-sponsor-panel__logo {
	width: auto !important;
	height: auto !important;
	max-height: 60px;
	max-width: 120px;
	object-fit: contain;
}

@media (max-width: 768px) {
	.broadcast-partners img.new-sponsor-panel__logo {
		max-height: 45px;
		max-width: 95px;
		margin: 5px 0;
	}
}



/************************************/
/*** 	 07. For Enquiries css Start  ***/
/************************************/


.for-enquires {
	padding: 50px 0px;
	background: #f0f0f0;
}

.enquires-box-area {
	background: #071f30;
	border-radius: 13px;
	color: #fff;
	padding: 43px;
	overflow: hidden;

}

.equiry-content small {
	font-size: 15px;
}

.enquires-box-area img {
	width: 77px;
}

.equiry-content h2 {
	color: #fff;
	font-size: 41px;
}

.equiry-content {
	margin-left: 22px;
}

.enquiry-data h5 {
	color: #ffffff;
	text-align: center;
	font-size: 23px;
}

.enquiry-data {
	z-index: 1;
	position: relative;
}

.enquiry-data::before {
	width: 449px;
	height: auto;
	aspect-ratio: 1;
	top: 50%;
	translate: -50% -50%;
	z-index: -1;
	background-color: #c04991;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	content: "";
	/* right: 0px; */
}

/************************************/
/*** 	 07. For Enquiries css Start  ***/
/************************************/



/************************************/
/*** 	 07. Our Services css	  ***/
/************************************/

.our-services .container-fluid {
	padding: 0;
}

.service-item {
	position: relative;
	border-right: 1px solid var(--dark-divider-color);
	overflow: hidden;
}

.our-services .col-lg-3.col-md-6:nth-child(4n + 4) .service-item,
.our-services .col-lg-3.col-md-6:last-child .service-item {
	border-right: none;
}

.our-services .col-lg-3.col-md-6:nth-child(n + 5) {
	border-top: 1px solid var(--dark-divider-color);
}

.service-image a,
.service-image a figure {
	display: block;
	cursor: none;
}

.service-image img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-image img,
.service-item:hover .service-image img {
	transform: scale(1.1);
	filter: brightness(70%);
}

.service-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transform: translateY(62%);
	background: var(--secondary-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 2.083vw;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item.active .service-body,
.service-item:hover .service-body {
	transform: translateY(0);
}

.service-body-title h3 {
	font-size: 24px;
	color: var(--white-color);
}

.service-body-title h3 a {
	color: inherit;
}

.service-content-box {
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}

.service-item.active .service-content-box,
.service-item:hover .service-content-box {
	opacity: 1;
	visibility: visible;
	margin-top: 15px;
}

.service-content {
	margin-bottom: 40px;
}

.service-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.service-readmore-btn a img {
	width: 100%;
	max-width: 14px;
	transition: all 0.3s ease-in-out;
}

.service-readmore-btn a:hover img {
	filter: brightness(0) invert(1);
	transform: rotate(45deg);
}

/************************************/
/*** 	 08. What We Do css		  ***/
/************************************/

.what-we-do {
	position: relative;
	background-size: 358px auto;
	padding: 100px 0;
}

.what-we-do::before {
	content: '';
	position: absolute;
	bottom: 17%;
	right: 0;
	background-size: cover;
	width: 332px;
	height: 518px;
	z-index: 0;
}

.what-we-do .container {
	position: relative;
	z-index: 1;
}

.what-we-do-images {
	position: relative;
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 25px 15px 25px;
}

.what-do-image-2 {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 415px;
	z-index: 1;
}

.what-do-image-1 {
	transform: rotate(-10deg);
	transition: all 0.4s ease-in-out;
}

.what-we-do-images:hover .what-do-image-1 {
	transform: rotate(-14deg);
}

.what-do-image-3 {
	transform: rotate(10deg);
	transition: all 0.4s ease-in-out;
}

.what-we-do-images:hover .what-do-image-3 {
	transform: rotate(14deg);
}

.what-do-image-1,
.what-do-image-3 {
	width: 100%;
	max-width: 398px;
}

.what-do-image-1 figure,
.what-do-image-2 figure,
.what-do-image-3 figure {
	display: block;
	border-radius: 100px;
}

.what-do-image-1 img,
.what-do-image-2 img,
.what-do-image-3 img {
	width: 100%;
	object-fit: cover;
	border-radius: 100px;
}

.what-do-image-1 img,
.what-do-image-3 img {
	aspect-ratio: 1 / 1.31;
}

.what-do-image-2 img {
	aspect-ratio: 1 / 1.389;
}

.what-we-do-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1100px;
	gap: 30px 60px;
	margin: 60px auto 0;
}

.what-do-list-item {
	width: calc(33.33% - 40px);
}

.what-do-list-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-bottom: 20px;
}

.what-do-list-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.what-do-list-item:hover .icon-box::before {
	transform: scale(1);
}

.what-do-list-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.what-do-item-content h3 {
	font-size: 22px;
	margin-bottom: 20px;
}

.what-do-item-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-do-item-content ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.what-do-item-content ul li:last-child {
	margin-bottom: 0;
}

.what-do-item-content ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

/************************************/
/*** 	 09. Our Features css	  ***/
/************************************/

.our-features {
	position: relative;
	background: var(--primary-color);
}

.our-features .container-fluid {
	padding: 0;
}

.feature-image-content {
	position: relative;
	background: url('../images/feature-bg-image.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100%;
	align-content: center;
	padding-top: 30px;
	padding-right: 10.8vw;
	padding-bottom: 30px;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
}

.feature-image-content::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.feature-image-content .section-title,
.feature-image-content .feature-btn {
	position: relative;
	z-index: 1;
}

.feature-image-content .section-title {
	padding: 0;
}

.feature-list {
	background: url('../images/features-bg-image.svg') no-repeat;
	background-position: right 40px center;
	background-size: auto;
	height: 100%;
	align-content: center;
	padding-top: 100px;
	padding-right: calc(((100vw - 1300px) / 2) + 15px);
	padding-bottom: 100px;
	padding-left: 5.208vw;
}

.feature-list-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.feature-list-item:last-child {
	margin-bottom: 0;
}

.feature-list-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.feature-list-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.feature-list-item:hover .icon-box::before {
	transform: scale(1);
}

.feature-list-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.feature-list-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.feature-item-content {
	width: calc(100% - 70px);
}

.feature-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.feature-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/*** 	10. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
	position: relative;
	padding: 21px 0;
}

.why-choose-us::before {
	content: '';
	position: absolute;
	bottom: 100px;
	right: -30px;
	z-index: 0;
}

.why-choose-us .container {
	position: relative;
	z-index: 1;
}

.why-choose-image {
	margin: 0 55px 0 25px;
}

.why-choose-image figure {
	display: block;
}

.why-choose-image img {
	width: 100%;
	aspect-ratio: 1 / 1.332;
	object-fit: cover;
}

.why-choose-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.why-choose-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content {
	width: calc(100% - 70px);
}

.why-choose-item-content h3 {
	font-size: 22px;
}

.why-choose-list-circle {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	border-top: 1px solid var(--divider-color);
	margin-top: 35px;
	padding-top: 35px;
}

.why-choose-list {
	width: calc(100% - 170px);
}

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

.why-choose-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.why-choose-list ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.offer-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.offer-box-item {
	position: relative;
	width: calc(50% - 15px);
	border-radius: 10px;
	overflow: hidden;
}

.offer-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
}

.offer-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(3, 21, 33, 0) 0%, rgba(3, 21, 33, 0.9) 49.92%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.offer-image figure {
	display: block;
	height: 100%;
}

.offer-image img {
	width: 100%;
	height: 100%;
}

.offer-item-content {
	position: relative;
	padding: 60px 7.66vw 60px 60px;
	z-index: 1;
}

.offer-item-content h2 {
	font-size: 44px;
	color: var(--white-color);
	margin-bottom: 40px;
}

.offer-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

/************************************/
/*** 	 11. Our Schedule css	  ***/
/************************************/

.our-schedule {
	background: url('../images/our-schedule-bg.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	padding: 100px 0;
}

.our-schedule::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.our-schedule .container {
	position: relative;
	z-index: 1;
}

.our-schedule-content {
	position: sticky;
	top: 60px;
	margin-right: 20px;
}

.our-schedule-content .section-title {
	padding: 0;
}

.match-schedule-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	background: var(--secondary-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 40px;
	margin-bottom: 30px;
}

.match-schedule-item:last-child {
	margin-bottom: 0;
}

.match-schedule-item .icon-box img {
	width: 100%;
	max-width: 60px;
}

.match-schedule-item-content {
	width: calc(100% - 180px);
}

.match-content-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.match-content-info p {
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 0;
}

.match-content-info img {
	width: 100%;
	max-width: 20px;
}

.match-content-location {
	display: flex;
	align-items: center;
	justify-content: center;
}

.match-content-location img {
	width: 100%;
	max-width: 20px;
	margin-right: 15px;
}

.match-content-location h3 {
	font-size: 22px;
	color: var(--white-color);
}

/************************************/
/***   12. Match Highlights css   ***/
/************************************/

.match-highlights {
	position: relative;
	padding: 60px 0;

}

.match-highlights.photos-sections {
	background-color: #c04991 !important;
}

.photos-sections .swiper-slide {

	margin-right: 0px !important;
}

.match-highlights::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: -30px;
	z-index: 0;
}

.match-highlights .container {
	position: relative;
	z-index: 1;
}

.match-highlight-slider .swiper {
	overflow-y: visible;
}

.match-highlight-item-image {
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
}

.match-highlight-item-image figure {
	display: block;
}

.match-highlight-item-image img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.match-highlight-item:hover .match-highlight-item-image img {
	transform: scale(1.1);
}

.match-highlight-item-content {
	margin-bottom: 20px;
}

.match-highlight-item-content h3 {
	font-size: 22px;
	line-height: 1.3em;
}

.match-highlight-video-btn {
	display: flex;
	align-items: center;
}

.match-highlight-video-btn a {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-color);
	border: 1px solid var(--text-color);
	border-radius: 50%;
	margin-right: 10px;
	cursor: none;
}

.match-highlight-video-btn a i {
	font-size: 12px;
	margin-left: 2px;
}

.match-highlight-video-btn p {
	font-weight: 500;
	margin-bottom: 0;
}

.match-highlight-btn {
	position: absolute;
	top: -80px;
	transform: translateY(-100%);
	display: flex;
	right: 0;
	z-index: 1;
}

/************************************/
/***   Latest News Grid CSS       ***/
/************************************/
.latest-news-grid {
	padding: 80px 0;
}

.news-box {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.news-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-box .image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.news-box .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-box:hover .image img {
	transform: scale(1.05);
}

.news-box .image .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}

.news-box .content-box {
	padding: 15px;
}

.news-box .news-meta {
	margin-bottom: 10px;
}

.news-box .news-date {
	color: #c04991;
	font-size: 13px;
	font-weight: 600;
}

.news-box .share-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	transition: transform 0.3s ease;
}

.news-box .share-btn:hover {
	transform: scale(1.1);
}

.news-box .share-btn i {
	font-size: 18px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.news-box .news-title {
	font-size: 16px;
	font-weight: 600;
	color: #050d42;
	line-height: 1.4;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-box .news-title:hover {
	color: #c04991;
}

.news-box .news-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 10px;
}

.news-box .read-more-link {
	color: #c04991;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-box .read-more-link:hover {
	color: #5a4c97;
}

/* News Slider Styles */
.news-slider-container {
	position: relative;
	padding: 0 50px;
}

.news-swiper {
	overflow: hidden;
	padding-bottom: 40px;
}

.news-swiper .swiper-slide {
	height: auto;
}

.news-swiper .swiper-slide .news-box {
	height: 100%;
}

.news-nav-buttons {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.news-btn-prev,
.news-btn-next {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-btn-prev:hover,
.news-btn-next:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.news-btn-prev i,
.news-btn-next i {
	font-size: 14px;
}

.news-pagination {
	text-align: center;
	margin-top: 20px;
}

.news-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ddd;
	opacity: 1;
	margin: 0 5px;
}

.news-pagination .swiper-pagination-bullet-active {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
	.news-slider-container {
		padding: 0 15px;
	}

	.news-nav-buttons {
		display: none;
	}

	.news-swiper {
		padding-bottom: 50px;
	}
}

.match-highlight-btn-prev,
.match-highlight-btn-next {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--white-color);
	border: 1px solid var(--text-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.match-highlight-btn-prev:hover,
.match-highlight-btn-next:hover {
	border-color: var(--accent-color);
	background-color: var(--accent-color);
}

.match-highlight-btn-next {
	margin-left: 20px;
}

.match-highlight-btn-prev::before,
.match-highlight-btn-next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url('../images/arrow-text.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 16px;
	height: 16px;
	transition: all 0.4s ease-in-out;
}

.match-highlight-btn-prev:hover::before,
.match-highlight-btn-next:hover::before {
	filter: brightness(0) invert(1);
}

.match-highlight-btn .match-highlight-btn-prev::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

/************************************/
/*** 	  Team Slider CSS 	  ***/
/************************************/
.team-slider-container {
	position: relative;
	padding: 0 50px;
}

.team-swiper {
	overflow: hidden;
	padding-bottom: 40px;
}

.team-swiper .swiper-slide {
	display: flex;
	justify-content: center;
}

.team-swiper .swiper-slide .team-card {
	height: 100%;
	max-width: 200px;
	width: 100%;
}

.team-nav-buttons {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.team-btn-prev,
.team-btn-next {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-btn-prev:hover,
.team-btn-next:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.team-btn-prev i,
.team-btn-next i {
	font-size: 14px;
}

.team-pagination {
	text-align: center;
	margin-top: 20px;
}

.team-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--primary-color);
	margin: 0 5px;
}

.team-pagination .swiper-pagination-bullet-active {
	background: #fff;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
	.team-slider-container {
		padding: 0 15px;
	}

	.team-nav-buttons {
		display: none;
	}

	.team-swiper {
		padding-bottom: 50px;
	}
}

.photos-highlight-slider .service-body {

	transform: translateY(0%);

	padding: 11px;
	background: unset;
	backdrop-filter: unset;
}

/************************************/
/*** 	 13. Club Success css	  ***/
/************************************/

.club-success {
	background-image: url('../images/club-success-bg-circle.svg');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
}

.club-success-image {
	position: relative;
	height: 100%;
	padding: 100px 0;
}

.club-success-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: url('../images/club-success-image-bg.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.club-success-image figure {
	position: relative;
	display: block;
	z-index: 1;
}

.club-success-image img {
	width: 100%;
	aspect-ratio: 1 / 1.239;
	object-fit: cover;
}

.club-success-content {
	height: 100%;
	align-content: center;
	margin-left: 20px;
}

.club-success-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.club-success-item {
	width: calc(50% - 15px);
}

.club-success-item .icon-box {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.club-success-item .icon-box img {
	width: 100%;
	max-width: 20px;
}

.club-success-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.club-success-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/*** 	14. Our Testimonial css	  ***/
/************************************/

.our-testimonial {
	position: relative;
	padding: 100px 0;
}

.our-testimonial::before {
	content: '';
	position: absolute;
	bottom: 100px;
	right: -30px;
	z-index: 0;
}

.our-testimonial .container {
	position: relative;
	z-index: 1;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	color: var(--accent-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin: 0;
}

.testimonial-content {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.testimonial-content p {
	margin-bottom: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	margin-right: 15px;
}

.author-image figure {
	display: block;
	border-radius: 50%;
}

.author-image img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.author-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p {
	margin-bottom: 0;
}

.testimonial-pagination {
	position: absolute;
	right: 0;
	display: flex;
	bottom: 0;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-pagination .swiper-pagination-bullet {
	height: 10px;
	width: 10px;
	background: var(--divider-color);
	border-radius: 100px;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 24px;
	border-radius: 100px;
}

.testimonial-image-box {
	position: relative;
	padding-left: 145px;
	margin-left: 30px;
	overflow: hidden;
}

.testimonial-image figure {
	display: block;
	border-radius: 10px;
}

.testimonial-image img {
	width: 100%;
	aspect-ratio: 1 / 1.35;
	object-fit: cover;
	border-radius: 10px;
}

.testimonial-counter-boxes {
	position: absolute;
	left: 0;
	bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.testimonial-counter-item {
	background: var(--accent-color);
	border-radius: 10px;
	padding: 30px;
}

.testimonial-counter-item:nth-child(even) {
	background: var(--primary-color);
}

.testimonial-counter-item h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.testimonial-counter-item h2 {
	font-size: 44px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.testimonial-counter-item p {
	color: var(--white-color);
	margin-bottom: 0;
}

.company-supports-slider {
	border-top: 1px solid var(--divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.company-supports-slider-title {
	text-align: center;
}

.company-supports-logo {
	text-align: left;
}

.company-supports-slider-title {
	margin-bottom: 40px;
}

.company-supports-slider-title h3 {
	font-size: 22px;
}

.company-supports-slider .company-logo img {
	width: 100%;
	max-width: 151px;
	max-height: 36px;
}

.company-supports-logo img {
	margin-right: 5px;
}

/************************************/
/*** 	 	15. CTA Box css		  ***/
/************************************/

.cta-box {
	background-image: url('../images/cta-box-bg-image.svg');
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top left;
	padding: 100px 0;
}

.cta-box-content {
	height: 100%;
	align-content: center;
}

.cta-box-form {
	width: 100%;
	max-width: 95%;
}

.cta-box-form .form-group {
	display: flex;
	background: var(--white-color);
	border-radius: 100px;
	padding: 6px;
}

.cta-box-form .form-group .form-control {
	width: 66%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: transparent;
	border: none;
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.cta-box-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.cta-box-form .form-group .btn-default {
	width: 39%;
}

.cta-box-list {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--dark-divider-color);
}

.cta-box-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cta-box-list ul li {
	position: relative;
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
	color: var(--white-color);
	line-height: 1.43em;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 9px 24px 9px 50px;
}

.cta-box-list ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 24px;
	top: 9px;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.cta-box-image {
	height: 100%;
	align-content: end;
	margin-left: 20px;
}

.cta-box-image figure {
	display: block;
}

.cta-box-image img {
	width: 100%;
	aspect-ratio: 1 / 0.89;
	object-fit: cover;
	margin-bottom: -100px;
}

/************************************/
/*** 	   16. Our Blog css 	  ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 25px;
}

.post-item-content h2 {
	font-size: 22px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}



/************************************/
/*** 	 	17. Start League Tracker		  ***/
/************************************/

.latest-news-section {
	width: 100%;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	padding: 82px 0px;
}

.stat-box-tm {
	padding: 10px;
	margin-bottom: 20px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100px;
}

.stat-box-tm .stat-number {
	font-weight: 700;
	display: block;
	font-size: 31px;
	color: #c04991;
	line-height: 1.6;
}

.stat-box-tm .stat-title {
	font-weight: 500;
	font-size: 17px;
	color: #141313;
}

.stat-box-tm-big {
	padding: 10px;
	height: 220px;
}

.stat-box-tm,
.stat-box-tm-big {
	background: #fff;
	border-radius: 10px;
}

.stat-box-tm-big .table-div {
	width: 100%;
}

.table-div {
	display: table;
}

.stat-box-tm-big .table-div>div {
	width: 33.33%;
	text-align: center;
}

.table-div>div {
	display: table-cell;
}

.stat-box-tm-big .table-div>div label {
	display: block;
	color: #383838;
	margin-bottom: 24px;
}

.stat-box-tm-big .table-div>div .number {
	font-weight: 600;
	display: block;
	font-size: 29px;
	color: #3f6ba6;
}

.stat-box-tm,
.stat-box-tm-big {
	background: #fff;
	border-radius: 10px;
}

/************************************/
/*** 	 	17. Footer css		  ***/
/************************************/

.footer-box {
	padding: 50px 0 0;

}

.footer-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title {
	width: calc(50% - 15px);
	margin-bottom: 0;
	padding: 0;
}

.footer-header .section-title p {
	margin-top: 10px;
}

.footer-newsletter-form {
	width: calc(50% - 15px);
	padding-left: 4.688vw;
}

.footer-newsletter-form .form-group {
	display: flex;
	border: 1px solid var(--white-color);
	border-radius: 999px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
	width: 72%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form .form-group .btn-default {
	width: 49%;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 100%;
	max-width: 155px;
}

.about-footer-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-social-links {
	padding-top: 0;
	margin-top: -5px;
}

.footer-social-links h3 {
	font-size: 24px;
	color: var(--white-color);
	margin-bottom: 8px;
}

.footer-social-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex !important;
	flex-wrap: nowrap !important;
	justify-content: flex-start !important;
	gap: 12px !important;
}

.footer-social-links ul li {
	margin-right: 0 !important;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	width: 40px;
	height: 40px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a i {
	font-size: 25px;
	color: #c04991;
}

.footer-links {
	margin-left: 1.6vw;
	margin-bottom: 25px;
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
	margin-top: 25px;
}

.footer-links h3:first-child {
	margin-top: 0;
}

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

.footer-links ul li {
	background: url('../images/arrow-white.svg') no-repeat;
	background-position: left center;
	background-size: 8px auto;
	color: var(--white-color);
	line-height: normal;
	margin-bottom: 8px;
	padding-left: 15px;
	font-size: 14px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-links.footer-contact-details {
	margin-left: 0;
}

.footer-contact-item {
	display: flex;
	margin-bottom: 20px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.footer-contact-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.footer-contact-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.footer-contact-item-content {
	width: calc(100% - 55px);
}

.footer-contact-item-content h3 {
	font-size: 24px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-contact-item-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	padding: 7px 0;
	margin-top: 25px;
}

.footer-copyright-text ul li {
	color: #fff;
	display: inline;
	padding-left: 8px;
	padding-right: 8px;
	font-size: 12px;
}

.footer-copyright-text ul li:first-child {
	padding-left: 0px;
}

.footer-copyright-text ul li a {
	color: #fff;
}

.footer-copyright-text ul {
	padding-left: 0px;
	margin-bottom: 0px;
	margin-top: 5px;
}

span.footer-label a {
	color: #fff;
}

.footer-copyright-text ul li:not(:last-child) {
	border-right: 1px solid #ccc;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links ul li a {
	width: 35px;
	height: 35px;
}

.footer-social-links ul li {
	background-image: none;
	padding: 0px;
	margin: 0px;
}

.footer-copyright-bottom {
	background: var(--primary-color);
}

.footer-copyright-bottom p {
	font-size: 11px;
	line-height: 1.4;
}

.footer-privacy-policy {
	text-align: right;
}

.footer-privacy-policy ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li {
	display: inline-block;
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	border-right: 1px solid var(--dark-divider-color);
	padding-right: 10px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
	color: var(--accent-color);
}

.footer-privacy-policy ul li:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.footer-privacy-policy ul li:last-child::before {
	display: none;
}

.footer-privacy-policy ul li a {
	color: inherit;
	font-size: 14px;
}

/************************************/
/*** 	 18. About Us Page css	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 210px 0 105px;
	overflow: hidden;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
}

.page-header::before {
	content: '';
	position: absolute;
	top: 110px;
	right: 10px;
	background: url(../images/hero-bg-shape-1.svg) no-repeat;
	background-size: cover;
	background-position: center center;
	width: 160px;
	height: 160px;
}

.page-header::after {
	content: '';
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: url(../images/hero-bg-shape-2.svg) no-repeat;
	background-size: cover;
	background-position: center center;
	width: 160px;
	height: 160px;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 74px;
	color: var(--white-color);
	cursor: none;
	margin-bottom: 5px;
}

.page-header-box h1 span {
	color: var(--accent-color);
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach .container-fluid {
	padding: 0;
}

.our-approach-image {
	position: relative;
	height: 100%;
}

.our-approach-image figure {
	position: relative;
	display: block;
	height: 100%;
}

.our-approach-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
}

.our-approach-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.51;
	object-fit: cover;
}

.our-approach-image .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a {
	position: relative;
	background: var(--accent-color);
	border-radius: 100%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button:hover a {
	background-position: right center;
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--dark-divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--dark-divider-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 40px;
	color: var(--white-color);
}

.our-approach-content {
	height: 100%;
	padding: 100px 5.208vw;
}

.approach-item-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.approach-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px 25px;
	overflow: hidden;
}

.approach-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.approach-item.active::before,
.approach-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.approach-item-header,
.approach-item-content {
	position: relative;
	z-index: 1;
}

.approach-item-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.approach-item-header .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.approach-item-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--white-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.approach-item.active .approach-item-header .icon-box::before,
.approach-item:hover .approach-item-header .icon-box::before {
	transform: scale(1);
}

.approach-item-header .icon-box img {
	position: relative;
	max-width: 20px;
	transition: 0.4s ease-in-out;
	z-index: 1;
}

.approach-item.active .approach-item-header .icon-box img,
.approach-item:hover .approach-item-header .icon-box img {
	filter: brightness(0) invert(0);
}

.approach-item-title {
	width: calc(100% - 55px);
}

.approach-item-title h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.approach-item-content p {
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.approach-item-content ul {
	border-top: 1px solid var(--divider-color);
	padding: 20px 0 0 0;
	margin: 20px 0 0 0;
	list-style: none;
}

.approach-item-content ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	transition: all 0.4s ease-in-out;
}

.approach-item-content ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
	transition: all 0.4s ease-in-out;
}

.approach-item.active .approach-item-content ul,
.approach-item:hover .approach-item-content ul {
	border-color: var(--dark-divider-color);
}

.approach-item.active .approach-item-title h3,
.approach-item:hover .approach-item-title h3,
.approach-item.active .approach-item-content p,
.approach-item:hover .approach-item-content p,
.approach-item.active .approach-item-content ul li,
.approach-item:hover .approach-item-content ul li,
.approach-item.active .approach-item-content ul li::before,
.approach-item:hover .approach-item-content ul li::before {
	color: var(--white-color);
}

.our-talent {
	background-size: 250px auto;
	padding: 100px 0;
}

.our-talent .container {
	position: relative;
	z-index: 1;
}

.our-talent-content {
	position: sticky;
	top: 60px;
	margin-right: 20px;
}

.our-talent-content .section-title {
	margin-bottom: 0;
}

.talent-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.talent-item {
	width: calc(50% - 15px);
}

.talent-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-bottom: 40px;
}

.talent-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.talent-item:hover .icon-box::before {
	transform: scale(1);
}

.talent-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.talent-item-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.talent-item-content p {
	margin-bottom: 0;
}

.our-experience {
	background-size: 250px auto;
	padding: 100px 0;
}

.experience-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
}

.experience-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.experience-item:hover .icon-box::before {
	transform: scale(1);
}

.experience-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.experience-item-content {
	border-top: 1px solid var(--divider-color);
	margin: 30px 0 40px;
	padding-top: 30px;
}

.experience-item-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.experience-item-content p {
	margin-bottom: 0;
}

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

.experience-item-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.experience-item-list ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.experience-image {
	margin: 0 3.385vw;
}

.experience-image figure {
	display: block;
}

.experience-image img {
	width: 100%;
	aspect-ratio: 1 / 1.75;
	object-fit: cover;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-image a,
.team-image figure {
	display: block;
	cursor: none;
	border-radius: 20px;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.team-social-icon ul li a {
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-content {
	text-align: center;
}

.team-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-faqs {
	background-size: 250px auto;
	padding: 100px 0;
}

.faqs-images {
	margin-right: 15px;
}

.faqs-images,
.faqs-image-box-1,
.faqs-image-box-2 {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.faqs-image-box-1,
.faqs-image-box-2 {
	width: calc(50% - 15px);
}

.faq-contact-box {
	position: relative;
	display: flex;
	background: var(--accent-color);
	border-radius: 20px;
	width: 100%;
	padding: 30px 35px;
	overflow: hidden;
}

.faq-contact-box::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	border-radius: 999px 999px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.faq-contact-box:hover::before {
	height: 100%;
	border-radius: 0;
}

.faq-contact-box .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50%;
	margin-right: 15px;
	z-index: 1;
}

.faq-contact-box-content {
	position: relative;
	width: calc(100% - 55px);
	z-index: 1;
}

.faq-contact-box-content h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.faq-contact-box-content p {
	line-height: normal;
	margin-bottom: 0;
}

.faq-contact-box-content p a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-contact-box-content p a:hover {
	color: var(--accent-color);
}

.faqs-img {
	width: 100%;
}

.faqs-img figure {
	display: block;
	border-radius: 20px;
}

.faqs-img img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	border-radius: 20px;
	object-fit: cover;
}

.faqs-image-box-2 .faqs-img figure,
.faqs-image-box-2 .faqs-img img {
	height: 100%;
}

.faq-accordion .accordion-item {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	margin-bottom: 30px;
	padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.273em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 16px 45px 16px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	background: var(--accent-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item {
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.page-services .service-item .service-image figure {
	border-radius: 20px;
	overflow: hidden;
}

.page-services .service-item .service-image img {
	height: auto;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
}

.page-services .service-item .service-body {
	padding: 30px 25px;
	transform: translateY(60%);
}

.page-services .service-item.active .service-body,
.page-services .service-item:hover .service-body {
	transform: translateY(0);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
	position: relative;
	background-size: 250px auto;
	padding: 100px 0;
}

.page-service-single::before {
	content: '';
	position: absolute;
	top: 100px;
	right: -30px;
	z-index: 0;
}

.page-service-single .container {
	position: relative;
	z-index: 1;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.page-category-list {
	background: var(--primary-color);
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 60px;
}

.page-category-list h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 30px;
}

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

.page-category-list ul li {
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	margin: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 17px 50px 17px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-category-list ul li:hover a {
	color: var(--primary-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 14px;
	height: 14px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(0);
}

.page-category-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--white-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-category-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 12px;
	padding: 79px 30px 30px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
}

.sidebar-cta-logo {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 155px;
}

.sidebar-cta-contact {
	position: relative;
	border: 1px solid var(--dark-divider-color);
	background: var(--secondary-color);
	backdrop-filter: blur(14px);
	--webkit-backdrop-filter: blur(14px);
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
}

.sidebar-cta-contact-item {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.sidebar-cta-contact-item p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.sidebar-cta-contact-item h3 {
	font-size: 24px;
	color: var(--white-color);
}

.sidebar-cta-contact-item h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item h3 a:hover {
	color: var(--accent-color);
}

.page-single-image {
	margin-bottom: 40px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.574;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 54px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

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

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

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.service-performance-box,
.empowering-player-box,
.fueling-passion-box {
	margin-top: 60px;
}

.service-performance-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px;
}

.performance-image {
	width: calc(37% - 15px);
}

.performance-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.performance-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

.performance-content {
	width: calc(63% - 15px);
}

.performance-content ul {
	margin-top: 30px;
}

.empowering-player-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

.empowering-player-item {
	position: relative;
	width: calc(33.33% - 13.33px);
	border-radius: 20px;
	overflow: hidden;
}

.empowering-player-image figure {
	display: block;
}

.empowering-player-image img {
	width: 100%;
	aspect-ratio: 1 / 1.191;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.empowering-player-item:hover .empowering-player-image img {
	transform: scale(1.1);
}

.empowering-player-content {
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	background-color: var(--secondary-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	text-align: center;
	padding: 20px;
	z-index: 1;
}

.empowering-player-content h3 {
	font-size: 24px;
	color: var(--white-color);
}

.fueling-passion-content-box {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-radius: 20px;
	padding: 40px;
	margin-top: 40px;
}

.fueling-passion-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fueling-passion-item-list .talent-item {
	width: calc(33.33% - 20px);
}

.fueling-passion-item-list .talent-item .icon-box::before {
	background: var(--white-color);
}

.fueling-passion-item-list .talent-item .icon-box img {
	transition: all 0.4s ease-in-out;
}

.fueling-passion-item-list .talent-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.fueling-passion-item-list .talent-item .talent-item-content h3,
.fueling-passion-item-list .talent-item .talent-item-content p {
	color: var(--white-color);
}

.fueling-passion-list {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.fueling-passion-list ul li {
	color: var(--white-color);
}

.page-single-faqs .section-title {
	padding-top: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
	display: none;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--divider-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 400;
	line-height: 1.1em;
	margin: 0 0 0.371em;
}

.post-entry h1 {
	font-size: 74px;
}

.post-entry h2 {
	font-size: 54px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

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

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 12px 30px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	   23. Team Page css	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 24. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-image {
	margin-bottom: 60px;
}

.team-single-image figure {
	display: block;
	border-radius: 20px;
}

.team-single-image img {
	width: 100%;
	aspect-ratio: 1 / 1.485;
	object-fit: cover;
	border-radius: 20px;
}

.team-sidebar-category-box {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-radius: 20px;
}

.team-sidebar-category-list h3 {
	font-size: 30px;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 30px;
}

.team-sidebar-category-list ul {
	margin: 0;
	padding: 30px;
	list-style: none;
}

.team-sidebar-category-list ul li {
	font-family: var(--accent-font);
	font-size: 22px;
	color: var(--white-color);
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
	line-height: 1.3em;
	margin-bottom: 30px;
}

.team-sidebar-category-list ul li:last-child {
	margin-bottom: 0;
}

.team-sidebar-category-list ul li span {
	font-family: var(--default-font);
	font-size: 16px;
	width: 68%;
}

.team-sidebar-social-link {
	display: flex;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	padding: 30px;
}

.team-sidebar-social-link h3 {
	font-size: 22px;
	color: var(--white-color);
}

.team-sidebar-social-link ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-social-link ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.team-sidebar-social-link ul li:last-child {
	margin-right: 0;
}

.team-sidebar-social-link ul li a {
	border: 1px solid var(--dark-divider-color);
	background: var(--secondary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-social-link ul li:hover a {
	background-color: var(--white-color);
}

.team-sidebar-social-link ul li a i {
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-social-link ul li:hover a i {
	color: var(--primary-color);
}

.team-single-content .section-title {
	padding-top: 0;
}

.team-member-about,
.team-member-info,
.team-member-expertise,
.team-skills-box {
	margin-bottom: 60px;
}

.team-about-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-about-item {
	width: calc(50% - 15px);
	background: var(--primary-color);
	border-radius: 20px;
	padding: 30px;
}

.team-about-item:nth-child(4n - 3),
.team-about-item:nth-child(4n) {
	background: var(--accent-color);
}

.team-about-item h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.team-about-item p {
	color: var(--white-color);
	margin-bottom: 0;
}

.member-expertise-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-expertise-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.member-expertise-list ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.team-skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.team-skills-list .skills-progress-bar {
	width: calc(50% - 15px);
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.team-contact-form {
	border-radius: 20px;
}

/************************************/
/***   25. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 35px;
	overflow: hidden;
}

.page-testimonials .testimonial-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item.active::before,
.page-testimonials .testimonial-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.page-testimonials .testimonial-item .testimonial-rating,
.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-author {
	position: relative;
	z-index: 1;
}

.page-testimonials .testimonial-item .testimonial-rating i,
.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .author-content h3,
.page-testimonials .testimonial-item .author-content p {
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item.active .testimonial-rating i,
.page-testimonials .testimonial-item:hover .testimonial-rating i,
.page-testimonials .testimonial-item.active .testimonial-content p,
.page-testimonials .testimonial-item:hover .testimonial-content p,
.page-testimonials .testimonial-item.active .author-content h3,
.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item.active .author-content p,
.page-testimonials .testimonial-item:hover .author-content p {
	color: var(--white-color);
}

.page-testimonials .testimonial-item.active .testimonial-content,
.page-testimonials .testimonial-item:hover .testimonial-content {
	border-color: var(--dark-divider-color);
}

/************************************/
/*** 	 26. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/*.page-gallery-box .photo-gallery a{
	cursor: none;
}*/

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 27. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	/*cursor: none;*/
}

.video-gallery-image iframe {
	border-radius: 20px;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}


.photo-gallery .match-highlight-item-body .match-highlight-item-content {
	margin-bottom: 10px;
}

.photo-gallery .match-highlight-item-body .match-highlight-item-content h3 {
	color: #fff;
}

.photo-gallery .match-highlight-item-body {
	padding: 17px;
	position: absolute;
	bottom: 0px;
	background: #000000b5;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	color: #fff;
}

.photos-count span {
	font-size: 14px;
	color: #000000;
}

.photos-count svg {
	fill: #000;
	margin-right: 7px;
}

.photos-count {
	position: absolute;
	top: 7px;
	left: 8px;
	background: #ffffffcf;
	padding: 8px 15px;
	border-radius: 27px;
}

/************************************/
/*** 	   28. FAQs Page css	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-single-faqs {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child {
	margin-bottom: 0px;
}

/************************************/
/*** 	29. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	position: relative;
	background: url('../images/section-bg-imgae-1.svg') no-repeat;
	background-position: top 100px left -50px;
	background-size: 250px auto;
	padding: 100px 0;
}

.page-contact-us::before {
	content: '';
	position: absolute;
	bottom: 100px;
	right: -30px;
	z-index: 0;
}

.contact-us-image {
	margin-right: 15px;
}

.contact-us-image figure {
	display: block;
	border-radius: 20px;
}

.contact-us-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 20px;
}

.contact-info-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.contact-info-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-info-item .icon-box {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
}

.contact-info-content {
	width: calc(100% - 55px);
}

.contact-info-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.contact-info-content p {
	position: relative;
	display: inline-block;
	margin: 0 0 0 10px;
	padding: 0 0 0 20px;
}

.contact-info-content p::before {
	content: '/';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	color: inherit;
}

.contact-info-content p:nth-of-type(1) {
	padding: 0;
	margin: 0;
}

.contact-info-content p:nth-of-type(1)::before {
	display: none;
}

.contact-info-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover {
	color: var(--accent-color);
}

.conatct-us-form {
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	margin-top: 100px;
	overflow: hidden;
}

.contact-form {
	position: relative;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	padding: 40px;
	border-radius: 24px;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: url('../images/hero-bg-shape-1.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 160px;
	height: 160px;
}

.contact-form::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	background: url('../images/hero-bg-shape-2.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 160px;
	height: 160px;
}

.contact-form .section-title {
	padding-top: 0;
}

.contact-form .form-control {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background-color: var(--secondary-color);
	border: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 10px;
	padding: 15px 13px;
	box-shadow: none;
	outline: none;

}

.contact-form .form-control::placeholder {
	color: var(--white-color);
}

.contact-form .btn-default.btn-highlighted {
	width: 100%;
	padding: 17px;
}

.contact-form .btn-default.btn-highlighted::before {
	display: none;
}

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

.google-map iframe {
	height: 100%;
	width: 100%;
}

/************************************/
/*** 	 30. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	padding: 0;
}

.error-page-content .section-title,
.error-page-content-body p {
	margin-bottom: 20px;
}


/*=================================
Sports spress
=================================
*/
a.ft-external-logo img {
	width: 63px;
}

.sportsspress {
	background: #f5f5f5;
	padding-top: 44px;
	padding-bottom: 47px;
}

.league-inner-area {
	padding: 17px;
	border-radius: 0px;
	background: #050d42;
	border-bottom: 3px solid #019BF5;
}

.league-top-title {
	border-bottom: 1px solid #ccc;
}

.league-top-title h4 {
	font-size: 18px;
	color: #fff;
	/* padding: 10px; */
	font-weight: 600;
}

.league-top-title p {
	color: #fff;
	margin: 10px;
}

.sp-event-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	border-radius: 10px;
}

.team-logo p {
	color: #ffffff;
	font-size: 15px;
	margin-top: 5px;
	margin-bottom: 0;
}

.team-logo {
	text-align: center;
}

.sp-event-block span.team-logo img {
	width: 70px;
	height: auto;
	max-height: 70px;
	object-fit: contain;
}

.sp-event-detail-block {
	text-align: center;
}

.sp-event-detail-block time.sp-event-date a {
	font-size: 16px;
	margin-bottom: 12px;
	display: block;
	color: #ffffff;
	font-weight: 500;
	margin-top: 12px;
}

.sp-event-detail-block .sp-event-results a {
	font-size: 42px;
	line-height: 50px;
	color: #ffffff;
	font-family: var(--accent-font);
}

.sp-event-detail-block .sp-event-results {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp-event-league {
	font-size: 14px;
	color: #fafafa;
}

/************************************/
/*** 	  31. Premier League	  ***/
/************************************/
.premier-league-section {
	padding: 70px 0px;
}

.scheme_default .table-bx {
	width: 100%;
	background: #000000;
	border: none;
	border-radius: 12px;
	position: relative;
}

.scheme_default .table-bx th {
	color: #ffffff;
	background: #c04991;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 1.2px;
	padding: 11px 11px;
	text-align: center;
	font-family: var(--accent-font);
	border: 1px solid #c04991;
}

.scheme_default .table-bx td {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4em;
	border: none;
	padding: 7px 11px;
	text-align: center;
	background: #000000;
	color: #ffffff;
}

.scheme_default .table-bx tr {


	border: none;
	border-bottom: 1px solid #bdbdbd57;
}

table.table-bx tr td:nth-child(2),
table.table-bx tr th:nth-child(2) {
	text-align: left;
}

.scheme_default .table-bx .school-name {
	color: #ffffff;
	font-size: 11px;
}

.scheme_default_mobile .table-bx {
	width: 100%;
	background: #000000;
	border: none;
	border-radius: 12px;
	position: relative;
}

.scheme_default_mobile .table-bx th {
	color: #ffffff;
	background: #c04991;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 1.2px;
	padding: 11px 11px;
	text-align: center;
	font-family: var(--accent-font);
	border: 1px solid #c04991;
}

.scheme_default_mobile .table-bx td {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4em;
	border: none;
	padding: 7px 11px;
	text-align: center;
	background: var(--gradient-second-color);
	color: #ffffff;
}

.scheme_default_mobile .table-bx tr {


	border: none;
	border-bottom: 1px solid #bdbdbd57;
}

table.table-bx tr td:nth-child(2),
table.table-bx tr th:nth-child(2) {
	text-align: left;
}

.scheme_default_mobile .table-bx .school-name {
	color: #ffffff;
	font-size: 11px;
}

/************************************/
/*** 	  31. Registration css	  ***/
/************************************/
.login-org-area {
	padding-top: 128px;
}

.otpdiv input:first-child {
	margin-left: 0px;
}

.otpdiv input:first-child {
	margin-left: 0px;
}

.otpdiv input {
	display: inline-block;
	width: 56px !important;
	height: 50px;
	font-weight: 600;
	font-size: 17px;
	border-radius: 11px;
	border: 2px solid #c8c8c8;
	/* margin: auto; */
	margin-left: 15px;
	background: #ffffff;
	color: black;
	text-align: center;
}

.fxt-content .fxt-form p {
	margin-bottom: 15px;
	font-size: 17px;
	color: #535353;
	/* text-align: center; */
	font-weight: 300;
	line-height: 1.4;
	/* padding: 0 1rem; */
	margin-top: 3px;
}

.fxt-content .fxt-form p.codesend a {
	font-weight: 500;
	color: var(--text-dark);
}

.email-verification-area input {
	border-radius: 100px;
	border: 2px solid #c4c4c4;
}

.email-verification-area h4 {
	font-size: 19px;
	padding-left: 10px;
	font-weight: 500;
	text-transform: capitalize;
}

.email-section-logo img {
	width: 191px;
	margin-bottom: 27px;
}

span.user-img img {
	width: 29px;
	height: 29px;
	border-radius: 35px;
	margin-right: 9px;
}

.login-main-area {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	height: 100vh;
}

.login-main-area .container {
	height: 100%;
}

.login-main-area .row {
	height: 100%;
}







/*===============user dashboard =============*/
.user-dashboard-section {
	padding: 131px 0px 0px;
}

.user-profile-box {
	display: flex;
	align-items: center;
	margin-right: 23px;
}

.user-profile-box img {
	width: 51px;
	height: 51px;
	border-radius: 100px;
	margin-right: 9px;
}

.user-deatil-box h4 {
	font-size: 16px;
	font-weight: 600;
}

.league-box h6 {
	font-size: 14px;
	font-weight: 600;
	color: #141314;
	margin-top: 12px !important;
}

.info-payment-deatil h6 {
	font-size: 14px;
	font-weight: 600;
}

.info-payment-deatil span {
	font-size: 14px;
	margin-left: 7px;
	color: #000000;
}

.info-payment-deatil {
	background: #edfbea;
	padding: 10px;
	border-radius: 8px;
}

.user-deatil-box h4.user-name span a svg {
	margin-left: 8px;
	width: 21px;
	height: 21px;
	color: #b51d7f;
}

.user-deatil-box p {
	margin-bottom: 0px;
	color: #959595;
	font-size: 12px;
}

.user-list-view li {
	list-style: none;
	margin-bottom: 10px;

	padding: 6px 0px;
}

.user-list-view li:not(:last-child) {
	border-bottom: 1px dashed #ccc;
}

.user-list-view {
	padding-left: 0px;
	margin-bottom: 0px;
}

a.icon-bx svg {
	color: var(--primary-color);
}

.top-user-info {
	display: flex;

}

.form-group {
	margin-bottom: 1rem;
}

.lt-user-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lt-user-area .progress {
	width: 210px;
}

.bs-stepper-content button.btn-default {
	padding: 13px 33px;
}

.bs-stepper-content button.btn-default::before {
	display: none;
}

.btn-default.btn-pink {
	background: var(--accent-color);
	color: var(--white-color);
}

.progress-bar {
	background-color: var(--accent-color);
}


.registration-form {
	padding: 21px 0px 61px;

}

.bs-stepper .bs-stepper-header .step.active .bs-stepper-circle {
	background-color: var(--accent-color);
	box-shadow: 0 .125rem .25rem 0 rgba(var(--bs-primary-rgb), 0.4);
	color: var(--white-color);
}

.bs-stepper .bs-stepper-header .step.active .step-trigger .bs-stepper-label .bs-stepper-title {
	color: var(--accent-color);
}

.bs-stepper .bs-stepper-header .step.crossed .step-trigger .bs-stepper-circle {
	background-color: #defdd8;
	color: #1f8808;
}

.bs-stepper .bs-stepper-header .step.crossed .step-trigger .bs-stepper-label .bs-stepper-title {
	color: #1f8808;
}

.help-block.with-errors ul li {
	font-size: 12px;
}

.help-block.with-errors {
	margin-top: 3px;
}

.form-control {

	padding: .695rem .75rem;
	font-size: .8rem;
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
	color: #9c9a9a;
	font-weight: 300;

}

.form-control::placeholder {
	color: #9c9a9a;
	font-weight: 300;
}

.form-label {
	margin-bottom: .5rem;
	font-size: 15px;
	font-weight: 500;
}

.registration-bx-form {
	background: #f6f6f6;
	padding: 35px;
	border-radius: 10px;
	border: 1px solid #ccc;
}

.registration-top-page-header {
	padding: 119px 0 49px;
}

.icon-section-bg {
	position: relative;
}

.Registered-view-user {
	padding: 130px 0px 24px;
}

.registre-head-area {
	background: #ae1e7c;
	text-align: center;
	color: #fff;
}

.registre-head-area h6 {
	font-size: 25px;
	color: #fff;
	margin-bottom: 4px;
}

.priview-form .heading-title h5 {
	font-size: 16px;
	/* background: #f7f7f7; */
	padding: 9px;
	border-radius: 10px;
	border-bottom: 1px solid #ae1e7c;
	border-radius: 0px;
	color: #ae1e7c;
}

.priview-form .user-list-view {
	padding-left: 13px;
	padding-right: 13px;
	margin-bottom: 39px;

}

.user-list-view.declaration li {
	border-bottom: 0px;
}

.birth-date-area {
	background: #fafafa;
	/* border: 2px dashed #bababa; */
	/* padding: 12px 17px; */
	/* border-radius: 10px; */
	margin-bottom: 19px;
}

.birth-date-area h4 {
	font-size: 16px;
	color: #3e3d3e;
	font-weight: 600;
	background: #ffffff;
	padding: 7px 0px;
	border-bottom: 2px dashed #656364;
	text-transform: uppercase;
}

.declaration-text.content-detail p {
	padding-left: 7px;
	margin-bottom: 12px;
}

.icon-section-bg::before {
	position: absolute;
	left: 0px;
	content: "";
	background-image: url('../images/shooting-icon.png');
	background-size: 204px auto;
	width: 229px;
	height: 218px;
	top: 0px;
	opacity: .1;
	background-repeat: no-repeat;
}

.icon-section-bg::after {
	position: absolute;
	right: 0px;
	content: "";
	background-image: url('../images/shooting-icon.png');
	background-size: 204px auto;
	width: 229px;
	height: 218px;
	bottom: 0px;
	opacity: .1;
	background-repeat: no-repeat;
}

.full-information-form {
	background: #ffffff;
}

.full-information-form .bs-stepper:not(.wizard-modern) {
	display: flex;
}

.full-information-form .bs-stepper .bs-stepper-header {
	border-block-end: unset;
	padding-inline: 18px;
	background: #f9f9f9;
	width: 303px;
	flex-direction: column;
	text-align: start;
	align-items: self-start;
}

.full-information-form .bs-stepper .bs-stepper-content {

	background: #fff;
	border-radius: 11px;
	width: calc(100% - 303px);
}

.full-information-form .bs-stepper .bs-stepper-content {
	padding-block: 1.5rem;
	padding-inline: 2.5rem;
}

.show-age-calculation {
	display: flex;

	gap: 11px;
}

@media (min-width: 992px) {
	.bs-stepper:not(.vertical):not(.wizard-icons) .bs-stepper-header {
		gap: .9rem;
	}
}

.photo-gallery {
	position: relative;
}

.photo-gallery .video-play-bx {
	position: absolute;
	z-index: 2;
	top: 33%;
	transform: translateY(-50%);
	text-decoration: none;
	width: 100%;
	/* background: #0003; */
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-bx::before {
	content: "\f144";
	font: normal normal normal 14px/1;
	font-family: 'Font Awesome\ 5 Free';
	font-weight: 900;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #e8002a;
	background: #fff;
	border-radius: 12px;
	padding: 7px;
	font-size: 38px;
	width: 60px;
	line-height: 47px;
	text-align: center;
}

.video-testimonial-content {
	padding: 11px;
}

.user-view-area {
	background-color: #fff;
	border: 1px solid #ebebeb;
	border-radius: 10px;
	margin-bottom: 19px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.bg-gray {
	background: #f7f7f7;
}

.user-view-area .lt-user-area {
	padding: 15px;
}

.other-user-deatil {
	padding: 11px 0px 11px;
	border-top: 1px solid #ccc;
}

.other-user-deatil ul {
	padding-left: 8px;
	margin-bottom: 0px;
}

.other-user-deatil ul li {
	display: inline-block;
	/* margin-right: 14px; */
	border-right: 1px solid #b4b2b2;
	padding: 7px 9px;
}

.user-view-full.paymet-area {
	font-size: 13px;
}

.user-view-full.paymet-area h6 {
	margin-right: 6px;
	font-weight: 600;
	font-size: 13px;
}

.other-user-deatil ul li:last-child {
	border-right: 0px;
}

.card {
	background: #ffff;
	background-color: #fff;
	border: 1px solid #ebebeb;
	border-radius: 10px;
	margin-bottom: 19px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-header {
	background: #fff;
	border-top-left-radius: 11px !important;
	border-top-right-radius: 11px !important;
}

.card-header .card-title {
	margin-bottom: 0px;
	font-size: 15px;
	font-weight: 700;
	padding: 7px 0px;
	text-transform: uppercase;
}

.heading-title h5 {
	font-size: 14px;
	;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}

.user-content-info__item svg {
	width: 15px;
	height: 15px;
	margin-right: 4px;

}

.user-content-info__item {
	font-size: 12px;
	display: flex;
	align-items: center;
}

.user-content-info {
	margin-bottom: 33px;
}

.what-do-item-content.list-date {
	z-index: 1;
	position: relative;

}

.what-do-item-content.list-date ul li {
	color: #fff;
}


/*==============blog detail area==========*/
.td-blog-date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.td-blog-date span {

	font-weight: 500;
	font-size: 16px;
	text-transform: capitalize;
	color: #444;
	margin-right: 20px;
}

.td-blog-date span.date svg {
	transform: translateY(-2px);
}

.td-postbox-item .td-blog-date svg {
	margin-left: 0;
}

.td-blog-date span i,
.td-blog-date span svg {
	margin-right: 6px;
}

.td-blog-sidebar-wrapper {
	margin-left: 8px;
	border-left: 1px solid #dfdfdf;
	padding-left: 37px;
}

.td-blog-sidebar-search {
	margin-bottom: 31px;
}

.td-product-left-title-wrap {
	margin-bottom: 15px;
}

.td-product-left-title {
	font-weight: 300;
	font-size: 23px;
	text-transform: capitalize;
	margin-bottom: 0;
}

.td-product-left-border {
	width: 35px;
	height: 6px;
	border-radius: 6px;
	display: inline-block;
	background: var(--accent-color);
}

.td-blog-sidebar-search form {
	position: relative;
}

.td-blog-sidebar-search input {
	border: 1px solid #c2c2c2;
	border-radius: 6px;
	width: 100%;
	height: 50px;

	font-size: 14px;
	color: var(--td-grey-1);
	padding: 5px 50px 5px 20px;
}

.td-blog-sidebar-search button {
	font-size: 20px;
	color: var(--primary-color);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 17px;
	line-height: 1;
}

.td-product-categories-list ul li {
	margin-bottom: 10px;
}

.td-product-categories-list ul li a {

	font-weight: 500;
	font-size: 17px;
	text-transform: capitalize;
	color: #414040;
	display: flex;
	align-items: center;
}

.td-blog-post-thumb {
	flex: 0 0 auto;
	margin-right: 17px;
}

.td-blog-post-thumb img {
	border-radius: 10px;
	width: 80px;
	height: 80px;
}

.td-blog-post-title a {
	font-weight: 600;
	font-size: 15px;
	line-height: 13px;
	text-transform: capitalize;
	color: #292828;
}

.td-product-categories-list ul li a {
	color: #414040;
}

.td-product-categories-list ul li {
	list-style: none;
	margin-bottom: 20px;
}

.td-product-categories-list ul {
	padding-left: 13px;
	margin-bottom: 35px;
}

.td-blog-post.d-flex.mb-25 {
	margin-bottom: 17px;
}

.td-blog-post-date {

	font-weight: 500;
	font-size: 15px;
	text-transform: capitalize;
	color: var(--td-grey-1);
}

.rightside.policy-area ul {
	list-style: disc;
	padding-left: 35px;
	color: #222;
	font-size: .95rem;
	line-height: 1.9;
	font-weight: 400;
	margin-bottom: 20px;
}

.rightside.policy-area ul li {
	font-size: .95rem;
	line-height: 1.9;
	margin-bottom: 7px;
}

.rightside.policy-area h2 {
	font-weight: 500;
	font-size: 29px;
	margin-bottom: 19px;
}

.rightside.policy-area p {
	font-size: 15px;
	line-height: 1.9;
}

.page-category-list.term-condition ul li a::before {

	width: 10px;
	height: 10px;

}

.page-category-list.term-condition ul li {
	margin-bottom: 9px;
}

.page-category-list.term-condition ul li a {

	padding: 9px 50px 11px 20px;

}

/************************************/
/*** 	  31. seprator css	  ***/
/************************************/
.seprator {
	margin-top: 45px;
	margin-bottom: 53px;
}

.seprator-bx .footer-header {

	padding: 49px;
	border-radius: 25px;
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
}

.seprator-bx .footer-header .section-title p {
	color: #fff;
	margin-bottom: 0px;
}

.seprator-bx .footer-header .section-title h3 {
	font-size: 29px;
	color: #fff;
	font-weight: 600;
	line-height: 32px;
}

.club-success-bx .club-success-image::before {
	background: unset;
}

.club-success-bx .club-success-image img {
	width: 100%;
	aspect-ratio: 1 / .9;
	object-fit: unset;
}

.club-success-bx .club-success-image {

	padding: 0px 0 61px;
}

.club-success-bx .club-success-item .icon-box {
	border-bottom: 1px solid #b5b1b161;
	margin-bottom: 5px;
	padding-bottom: 17px;
}

.sspl-info-bx .nav.nav-pills {
	margin-bottom: 53px;
}

.sspl-info-bx .nav-pills .nav-link {

	margin-bottom: 13px;
}

.sspl-info-bx .nav.nav-pills .feature-item-content h3 {
	color: #333333;
	margin-bottom: 0px;
}

.sspl-info-bx .nav-pills .nav-link.active {

	background-color: var(--accent-color);
}

.sspl-info-bx .nav-pills .nav-link.active .feature-item-content h3 {
	color: #fff;
}

.sspl-info-bx .feature-list-item .icon-box {

	width: 35px;
	height: 35px;

	margin-right: 14px;
}

.sspl-info-bx .feature-list-item .icon-box img {

	max-width: 17px;

}

.sspl-info-bx .feature-item-content h3 {
	font-size: 20px;

	margin-bottom: 0px;
}

.background-dark {
	background: #071f30;
}

.inspirational-quote {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-left: 5px solid var(--accent-color);
	padding: 25px 30px;
	margin: 30px 0;
	border-radius: 10px;
	position: relative;
}

.inspirational-quote::before {
	content: '"';
	position: absolute;
	top: 31px;
	left: 4px;
	font-size: 4.5rem;
	color: var(--accent-color);
	opacity: 0.3;
	font-family: serif;
}

.inspirational-quote p {
	color: #666;
	font-size: 17px;
	margin-bottom: 0px;
}

.team-about-item ul li {
	color: #fff;
	margin-bottom: 7px;
	line-height: 20px;
	font-size: 13px;
}

.about-sspl-content .highlight-text {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--accent-color);
	margin-bottom: 25px;
	font-weight: 600;
}

.about-sspl-content .lead-text {
	font-size: 1.2rem;
	line-height: 1.7;
	color: #333;
	margin-bottom: 25px;
	font-weight: 500;
}

.director-message {
	margin-bottom: 30px;
	padding: 20px 0;
	border-bottom: 2px solid #f0f0f0;
}

.message-text {
	font-size: 1rem;
	line-height: 1.7;

	color: #333;
	margin-bottom: 20px;
	text-align: justify;
}

.authority-signature {
	text-align: right;
	margin-top: 20px;
}

.authorities-section:first-child .authority-name {
	font-size: 1.5rem;
	margin-bottom: 1px;
}

.authority-signature .authority-name {
	color: #283457;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.authority-position {
	font-size: 1.2rem;
	color: #283457;
	font-weight: 700;
	margin-top: 4px;
}

.authority-signature .authority-organization {
	color: #666;
	font-size: 0.95rem;
	font-weight: 500;
	margin: 0;
}

.contact-info {
	background: #f0f8ff;
	border-radius: 10px;
	padding: 25px;
	margin-top: 30px;
	border: 2px solid #e6f3ff;
}

.contact-info h3 {
	color: #5a4c97;
	margin-top: 0;
}




/************************************/
/*** 	  31. Top Performance css	  ***/
/************************************/
.performace-content h5 {
	font-size: 12px;
	border: 1px solid #203545;
	text-align: center;
	display: inline-block;
	padding: 2px 8px;
	border-radius: 7px;
	font-weight: 600;
	color: #fff;
	background: #142a3b;
}

.socres-area {
	margin-top: 19px;
}

span.numbers {
	color: #203545;
	font-weight: 400;
	font-family: "Work Sans", sans-serif;
	font-size: 106px;
	line-height: 93px;
	margin-right: 0px;
}

.rt-text-performance h6 {
	font-size: 15px;
}

.tp-ply__name {
	font-size: 41px;
	line-height: 40px;
	flex-direction: column;
	margin-block-end: 8px;
	/* font-family: "Work Sans", sans-serif; */
	font-weight: 700;
}

.tp-ply__numbers.ng-binding {
	font-size: 27px;
	line-height: 38px;
	color: #dc5034;
	font-weight: 700;
	margin-block-end: 15px;
}

.tp-ply-nu__title {
	font-size: 13px;
	/* line-height: 52px; */
	color: #7e7978;
	font-weight: 400;
	/* margin-block-start: 15px; */
	padding-left: 4px;
}

.tp-ply__others {
	padding: 5px 7px;
	border: 1px solid rgba(218, 218, 218, .25);
	display: flex;
	margin-bottom: 11px;

}

.tp-ply__others .tp-ply-ots:not(:last-child) {
	margin-inline-end: 11px;
}

.tp-ply__others .tp-ply-ots {

	font-size: 10px;
	line-height: 14px;
	text-align: center;
	font-weight: 400;
	color: rgb(11 11 11 / 60%);
}

.tp-ply__others .tp-ply-ots span {
	color: #142a3b;
	display: block;
	font-size: 11px;
	margin-block-end: 3px;
	text-transform: capitalize;
	/* font-family: "Work Sans", sans-serif; */
	font-weight: 700;
}

.top-performance-league .menu-swiper .swiper-slide {
	margin-right: 81px !important;
	margin-left: -52px;
	transform: scale(1);

}

.top-performance-league .menu-swiper .swiper-slide.swiper-slide-active {

	transform: scale(1.3);

}

.top-performance-league .menu-swiper {

	padding: 57px 0px;
}

.performance-block .col-lg-7 {
	display: none;
}

.top-performance-league .menu-swiper .swiper-slide.swiper-slide-active .performance-block .col-lg-7 {
	display: block;
	margin-top: 1rem;
}

/* Override for new performance-swiper: show content on all slides */
.performance-swiper .swiper-slide .performance-block .col-lg-7 {
	display: block !important;
	margin-top: 0;
}

.top-performance-league {
	padding: 30px 4px;
}

/************************************/
/*** 	  31. Team css	  ***/
/************************************/
.team-section-area {
	padding-top: 37px;
	padding-bottom: 48px;
}

.player-wrapper {
	display: flex;
	flex-direction: column;
}

@media (min-width: 992px) {
	.player-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: calc(16 * .0625rem);
	}

	.player-wrapper>* {
		width: calc((100% - 2 * 16 * .0625rem) / 3);
	}
}

.player-wrapper .name {
	display: block;
}

@media (min-width: 768px) {
	.player-wrapper {
		flex-direction: row;
		display: flex;
		flex-wrap: wrap;
		gap: calc(16 * .0625rem);
	}
}

.player-card {
	background: linear-gradient(135deg, #5a4c97 0%, #c04991 100%);
	margin-bottom: 2rem;
	padding-inline: 1.75rem;
	padding-block: 1.5rem;
	border-radius: .5rem;
	position: relative;
}

.player-info {
	width: 50%;
}

.player-role,
.player-number {
	color: hsl(220, 4%, 85%);
}

.player-card,
.player-name,
:where(h1, h2, h3, h4, h5, h6) {
	margin-bottom: .9rem;
}

.player-name {
	color: hsl(240, 3%, 94%);
	font-weight: 500;
	line-height: 1.3;
}

.player-thumbnail {
	top: calc(-23 * .0625rem);
	right: 0;
	bottom: 0;
	position: absolute;
}

.player-thumbnail {
	overflow: hidden;
	width: 50%;
}

.player-thumbnail img {
	-o-object-fit: contain;
	object-fit: contain;
}

.player-more {
	position: absolute;
	inset: 0;
	font-size: 0;
}

@media (min-width: 768px) {
	.player-thumbnail {
		top: calc(-42 * .0625rem);
		height: unset;
		min-width: calc(220 * .0625rem);
	}
}

.player-card:hover {
	background-color: var(--accent-color);
}


/************************************/
/*** 	  31. stats css	  ***/
/************************************/
.stats-area table.table-bx {
	width: 100%;
}

.stats-area table.table-bx thead tr th {
	padding: 13px 14px;
	background: #102e46;
	color: #fff;
}

.stats-area table.table-bx tbody tr {
	border-bottom: 1px solid #e2e2e2;
}

.stats-area table.table-bx tbody tr td {
	padding: 13px 14px;
}

.stats-area table.table-bx thead tr th:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.stats-area table.table-bx thead tr th:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.search {
	width: 100%;
	position: relative;
	display: flex;
}

.searchTerm {
	width: 100%;
	border: 1px solid #e1e1e1;
	border-right: none;
	padding: 7px;
	height: 37px;
	border-radius: 5px 0 0 5px;
	outline: none;
	color: #1f1f1f;
	font-size: 13px;
}

.searchTerm:focus {
	color: #00B4CC;
}

.searchButton {
	width: 43px;
	height: 37px;
	border: 1px solid #db3c27;
	background: #dd3d27;
	text-align: center;
	color: #fff;
	border-radius: 0 7px 7px 0;
	cursor: pointer;
	font-size: 15px;
}

.filters-area {
	padding: 25px;
	background: #f1f1f1;
	margin-bottom: 13px;
	border-radius: 10px;
}

.team-img img {
	width: 42px;
}

.team-img span {
	color: #000;
	font-weight: 600;
}


/********************************
      About us
**********************************/

.format-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	gap: 1rem;
}

.format-item {
	position: relative;
}

@media (min-width: 992px) {
	.format-list {
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: repeat(2, 1fr);
	}
}


.format-item.teams {
	grid-area: 1 / 1 / 2 / 2;
	background: url(/images/SSPL-About-Us-Team-Section-BG.jpeg) top / cover no-repeat;
}

@media (min-width: 992px) {
	.format-item.teams {
		grid-area: 1 / 1 / 2 / 2;
	}
}

.format-number {
	font-size: 3rem;
	line-height: 1;
	letter-spacing: -0.1rem;
	margin-bottom: 0rem;
}

.format-label {
	font-size: 1rem;
	padding-left: 0.3rem; 
}

.format-item {
	height: calc(165 * .0625rem);
	border-bottom: calc(8 * .0625rem) solid #c04991;
}

@media (min-width: 1200px) {
	.format-item {
		height: calc(221 * .0625rem);
	}

	.format-number {
		font-size: calc(128 * .0625rem);
		line-height: .9;
		letter-spacing: -0.5rem;
	}

	.format-label {
		font-size: calc(22 * .0625rem);
		padding-left: .6rem;
	}
}

.format-data, .format-info {
	position: absolute;
	top: 0;
	height: 100%;
	width: 50%;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem;
	z-index: 2;
	color: hsl(240, 3%, 94%);
}

.format-data {
	left: 0;
	text-align: left;
}

.format-info {
	right: 0;
	text-align: right;
}

.format-item>* {
	letter-spacing: -0.05rem;
}

/* Removed redundant overrides */

.format-item.venue {
	grid-area: 1 / 2 / 2 / 3;
	background: url(/images/1-Venue-bg.jpeg) top / cover no-repeat;
}

.format-item.match-days {
	grid-area: 2 / 1 / 3 / 2;
	background: url(/images/SSPL-About-Us-Match-BG.jpeg) top / cover no-repeat;
}

.format-item.match-format {
	grid-area: 2 / 2 / 3 / 3;
	background: url(/images/31-Matches-bg.jpeg) top / cover no-repeat;
}

.format-item.match-time {
	grid-area: 3 / 1 / 4 / 3;
	background: url(https://www.rugbypremierleague.in/static-assets/images/about-us/rpl-format-match-time.png) top / cover no-repeat;
}

.format-item.match-info {
	grid-area: 4 / 1 / 5 / 3;
	background: url(/images/Weekends-bg.jpeg) top / cover no-repeat;
}

.format-item {
	height: calc(165 * .0625rem);
	border-bottom: calc(8 * .0625rem) solid #c04991;
}

.format-item.match-time .sub-title {
	font: 400 0.85rem / 1 aneklatin;
	letter-spacing: 0rem;
	margin-bottom: .25rem;
}

.format-item.match-time .text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	color: hsl(240, 3%, 94%);
}

/* Removed old format-info layout */.format-item.match-info .title {
	font-size: 20px;
	letter-spacing: 0rem;
	margin-bottom: 0px;
}

.format-item.match-info .sub-title {
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 0rem;
}

@media (min-width: 1200px) {
	.format-item {
		height: calc(221 * .0625rem);
	}

    .format-item.match-time .text {
	    font-size: 1.4rem;
	    line-height: 1.4;
    }

/* Desktop overlays default to the 50% mask */

	.format-item.match-info .title {
		font-size: 27px;
	}

	.format-item.match-info .sub-title {
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	.format-item.venue {
		grid-area: 1 / 2 / 2 / 3;
	}

	.format-item.match-days {
		grid-area: 1 / 3 / 2 / 4;
	}

	.format-item.match-time {
		grid-area: 2 / 1 / 3 / 3;
	}

	.format-item.match-format {
		grid-area: 1 / 4 / 2 / 6;
	}

	.format-item.match-info {
		grid-area: 2 / 3 / 3 / 6;
	}

	.format-item.match-time {
		grid-area: 2 / 1 / 3 / 3;
	}

	.format-item.match-info {
		grid-area: 2 / 3 / 3 / 6;
	}




	.venue-wrapper {
		position: relative;
	}

	.venu-bx-section {
		padding: 60px 0px;
	}

	.overlay-wrapper {
		width: calc(150 * .0625rem);
		left: calc(60 * .0625rem);
		background-color: #c04991;
		position: absolute;
		height: 100%;
	}

	.overlay-text {
		font-size: calc(100 * .0625rem);
	}

	.overlay-text {
		writing-mode: vertical-lr;
		transform: rotate(180deg);
		right: 0;
		line-height: .8;
		opacity: .2;
		font-size: 5.7rem;
		text-transform: uppercase;
		position: absolute;
		display: block;
		font-weight: 600;
	}

	.img-venue-block img {
		height: 380px;
		overflow: hidden;
		object-fit: cover;
	}

	/*===========================
schedule section
=========================*/

	.schedule-date-content {
		padding-left: 2rem;
		position: relative;
	}

	.schedule-date-content::before {
		content: "";
		width: .4rem;
		background-color: hsl(0, 0%, 100%);
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	.schedule-title {
		font-size: 2rem;
		margin-bottom: 0rem;
		color: hsl(240, 3%, 94%);
		font-weight: 700;
	}

	.schedule-wrap {
		gap: 3.5rem;
	}

	.schedule-datetime {
		font-size: 1.7rem;
		letter-spacing: 0rem;
		margin-bottom: 0px;
		color: hsl(240, 3%, 94%);
		line-height: 1.3;
		font-weight: 500;
	}

	.schedule-sub-title {
		font-size: calc(22 * .0625rem);
		color: hsl(240, 3%, 94%);
	}

	.schedule-time {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.schedule-section {
		position: relative;
		padding: 39px 0px;
	}



	.schedule-time {
		padding-right: 2rem;
		margin-bottom: 2.5rem;
		margin-top: 2.5rem;
		gap: .75rem;
		position: relative;
	}

	.schedule-detail {
		text-align: right;
	}

	.schedule-time::after {
		width: .4rem;
		content: "";
		background-color: hsl(0, 0%, 100%);
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		content: "";
	}

	.schedule-channel {
		padding-left: 2rem;
		position: relative;
	}

	.schedule-channel::before {
		width: .4rem;
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		background-color: hsl(0, 0%, 100%);
	}

	.channel-list {
		display: flex;
		flex-wrap: wrap;
		gap: 3.75rem;
	}

	.channel-item {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: .75rem;
		position: relative;
	}

	.channel-logos {
		justify-content: center;
		gap: 1rem;
		display: flex;
		align-items: flex-start;
	}

	.channel-text {
		color: hsl(240, 3%, 94%);
		text-transform: uppercase;
		text-align: center;
	}

	.channel-image {
		height: calc(87 * .0625rem);
		width: auto;
	}

	.channel-image.starsportz {
		height: calc(80 * .0625rem);
	}

	.about-sspl-bx {
		padding: 60px 0px;
		background: #071f30;
		color: #fff;
	}

	/************************************/
	/*** 	  31. Responsive css	  ***/
	/************************************/

	@media only screen and (max-width: 1390px) {

		.feature-image-content,
		.feature-list {
			padding-right: 30px;
			padding-left: 30px;
		}

		.section-title h1 {
			font-size: 49px;

		}

		.main-menu ul li.nav-item a {

			font-size: 11px;

			padding: 5px !important;

		}

		.btn-default {

			font-size: 11px;



			padding: 12px 54px 12px 21px;

		}

		a.navbar-brand img {
			width: 100px !important;
		}

		header.main-header .header-sticky.active .navbar-brand img {
			width: 80px !important;
		}

		.phoneheader-top.btn-default::before {

			background-size: 12px;
		}

		.btn-default::before {

			width: 27px;
			height: 27px;
			background-size: 7px auto;
		}

		.footer-newsletter-form .form-group .form-control {

			font-size: 13px;

			line-height: 1.3em;

			padding: 7px 20px;
		}


		.hero.hero-bg-image .hero-content {


			padding-top: 99px;
		}

		.section-title h2 {
			font-size: 35px;

		}

		.section-title h3 {

			font-size: 14px;

			margin-bottom: 5px;

		}

		.section-title {

			margin-bottom: 10px;

		}

		.hero.hero-bg-image .hero-content .hero-content-body {
			margin: 0px auto 0;
		}

		p {
			line-height: 1.4em;

			font-size: .75rem;
		}

		.td-countdown-2-title .title {

			font-size: 31px;

		}

		.td-countdown-2-title .subtitle {

			font-size: 16px;

		}


		.td-countdown-3-wrap .td-hero-countdown ul li {

			width: 74px;
			height: 74px;

			font-size: 30px;
			padding-top: 20px;
		}

		.td-hero-countdown ul {
			margin-bottom: 0px;
			gap: 7px;

		}

		.td-hero-countdown ul li span {
			font-size: 12px;

			margin-top: 8px;
		}

		.td-countdown-3-wrap .td-hero-countdown {
			margin-left: 0px;
		}

		.td-countdown-2-location p {
			font-size: 15px !important;
			margin-bottom: 0px;
		}


		.company-supports-logo h3 {
			font-size: 19px;
		}

		.why-choose-list ul li {

			line-height: 1.3em;
			padding-left: 26px;
			margin-bottom: 13px;
			font-size: 12px;
		}

		.why-choose-item .icon-box {

			width: 39px;
			height: 39px;

			margin-right: 10px;
		}

		.why-choose-item .icon-box img {


			max-width: 19px;

		}

		.why-choose-item-content h3 {
			font-size: 17px;
		}

		.why-choose-item-list {

			gap: 17px;
		}

		.why-choose-list-circle {

			gap: 15px 33px;

			margin-top: 20px;
			padding-top: 17px;
		}

		.about-us-list ul li {

			line-height: 1.3em;
			padding-left: 30px;
			margin-bottom: 13px;
			font-size: 12px;
		}

		.section-title p {
			margin-top: 15px;

		}

		.service-body-title h3 {
			font-size: 18px;
			color: var(--white-color);
		}

		.service-body {

			padding: 1.53vw;

		}

		.service-readmore-btn a img {

			max-width: 10px;

		}

		.what-do-item-content ul li {
			position: relative;
			line-height: 1.5em;
			padding-left: 30px;
			margin-bottom: 15px;
			font-size: 13px;
		}

		.offer-item-content h2 {
			font-size: 33px;

			margin-bottom: 0px;
		}

		.match-content-info {

			gap: 20px;

			margin-bottom: 30px;
			padding-bottom: 0px;
		}

		.match-content-info p {
			font-size: 17px;

			margin-bottom: 0;
		}

		.match-schedule-item .icon-box img {
			max-width: 43px;
		}

		.our-schedule {

			padding: 55px 0;
		}

		.match-schedule-item {

			gap: 18px;

			padding: 16px;
			margin-bottom: 24px;
		}

		.post-item-content h2 {
			font-size: 17px;

		}

		.readmore-btn {

			font-size: 13px;

			padding-right: 22px;

		}

		.readmore-btn::before {

			top: 3px;

			width: 9px;
			height: 10px;

		}

		.footer-links ul li {

			font-size: 12px;
		}

		.footer-logo img {
			width: 100%;
			max-width: 81px;
		}

		.footer-logo {
			margin-bottom: 9px;
		}

		.footer-social-links h3 {
			font-size: 19px;

			margin-bottom: 8px;
		}

		.footer-copyright {

			padding: 14px 0;
			margin-top: 27px;
		}

		.footer-copyright-text ul li {

			padding-left: 5px;
			padding-right: 5px;
			font-size: 10px;
		}

		.footer-contact-item-content h3 {
			font-size: 16px;
		}

		.footer-privacy-policy ul li {



			padding-right: 11px;
			margin-right: 11px;

			font-size: 11px;
		}

		.footer-box {
			padding: 41px 0 0;
		}

		.footer-header {

			gap: 9px 15px;

			margin-bottom: 31px;
			padding-bottom: 21px;
		}
	}

	@media only screen and (max-width: 991px) {

		.btn-default {
			font-size: 16px;
			padding: 14px 46px 14px 20px;
		}

		.btn-default::before {
			width: 30px;
			height: 30px;
			background-size: 10px auto;
		}

		.navbar {
			padding: 15px 0;
		}

		.navbar-brand img {
			max-width: 180px;
		}

		.main-menu ul li.highlighted-menu {
			display: block;
		}

		.slicknav_nav li,
		.slicknav_nav ul {
			display: block;
		}

		.responsive-menu,
		.navbar-toggle {
			display: block;
		}

		.header-btn {
			display: none;
		}

		.section-row {
			margin-bottom: 40px;
		}

		.section-title {
			padding-top: 25px;
			margin-bottom: 30px;
		}

		.section-bg-title span {
			font-size: 50px;
		}

		.section-title h3 {
			font-size: 16px;
			background-size: 18px auto;
			padding-left: 25px;
		}

		.section-title h1 {
			font-size: 52px;
		}

		.section-title h2 {
			font-size: 40px;
		}

		.section-title p {
			margin-top: 10px;
		}

		.section-title-content {
			margin-top: 10px;
		}

		.section-btn {
			text-align: left;
			margin-top: 15px;
		}

		.hero {
			padding: 155px 0 50px;
		}

		.hero::before,
		.hero::after {
			width: 100px;
			height: 100px;
		}

		.hero.hero-bg-image {
			padding: 175px 0 70px;
		}

		.hero.hero-bg-image .hero-content .hero-content-body {
			margin: 30px auto 0;
		}

		.hero-content {
			margin-bottom: 30px;
		}

		.hero-content-body,
		.hero-btn {
			margin-top: 30px;
		}

		.hero-image {
			width: 100%;
			max-width: 65%;
			margin: 0 auto;
		}

		.our-scrolling-ticker {
			padding: 15px 0;
		}

		.scrolling-ticker-box {
			--gap: 20px;
		}

		.scrolling-content span {
			font-size: 30px;
		}

		.scrolling-content span img {
			max-width: 30px;
			margin-right: 20px;
		}

		.about-us {
			padding: 50px 0;
		}

		.about-us-content {
			margin-bottom: 30px;
		}

		.about-us-list ul li {
			padding-left: 25px;
			margin-bottom: 10px;
		}

		.about-us-list ul li::before {
			font-size: 16px;
		}

		.contact-circle-counter h2 {
			font-size: 36px;
		}

		.about-image-box {
			margin-left: 0;
		}

		.about-us-images img {
			aspect-ratio: 1 / 0.56;
		}

		.about-coach-box {
			position: absolute;
			padding: 15px;
		}

		.our-services .col-lg-3.col-md-6:nth-child(2n + 2) .service-item,
		.our-services .col-lg-3.col-md-6:last-child .service-item {
			border-right: none;
		}

		.our-services .col-lg-3.col-md-6:nth-child(n + 3) .service-item {
			border-top: 1px solid var(--dark-divider-color);
		}

		.service-image img {
			height: 450px;
		}

		.service-body {
			transform: translateY(70%);
			padding: 20px;
		}

		.service-body-title h3 {
			font-size: 22px;
		}

		.service-content {
			margin-bottom: 20px;
		}

		.service-content p {
			font-size: 14px;
		}

		.what-we-do {
			background-size: 190px auto;
			padding: 50px 0;
		}

		.what-we-do::before {
			bottom: 5%;
			width: 180px;
			height: 280px;
		}

		.what-we-do-images {
			max-width: 95%;
		}

		.what-do-image-1,
		.what-do-image-3 {
			max-width: 320px;
		}

		.what-do-image-2 {
			max-width: 340px;
		}

		.what-do-image-1 figure,
		.what-do-image-1 figure img,
		.what-do-image-2 figure,
		.what-do-image-2 figure img,
		.what-do-image-3 figure,
		.what-do-image-3 figure img {
			border-radius: 50px;
		}

		.what-we-do-list {
			gap: 30px;
			max-width: 100%;
			margin-top: 40px;
		}

		.what-do-list-item {
			width: calc(50% - 15px);
		}

		.what-do-item-content h3 {
			font-size: 20px;
			margin-bottom: 15px;
		}

		.what-do-item-content ul li {
			padding-left: 25px;
			margin-bottom: 10px;
		}

		.what-do-item-content ul li::before {
			font-size: 16px;
		}

		.feature-image-content,
		.feature-list {
			height: auto;
			padding: 50px 15px;
		}

		.feature-list {
			background-size: 50% auto;
		}

		.feature-list-item {
			margin-bottom: 30px;
		}

		.feature-item-content h3 {
			font-size: 20px;
			margin-bottom: 5px;
		}

		.why-choose-us {
			background-position: top 50px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.why-choose-us::before {
			bottom: 50px;
			right: -10px;
			width: 170px;
			height: 270px;
		}

		.why-choose-image {
			width: 100%;
			max-width: 60%;
			margin: 0 auto 30px;
		}

		.why-choose-item-content h3 {
			font-size: 20px;
		}

		.why-choose-list-circle {
			margin-top: 25px;
			padding-top: 25px;
		}

		.why-choose-list ul li {
			padding-left: 25px;
			margin-bottom: 10px;
		}

		.why-choose-list ul li::before {
			font-size: 16px;
		}

		.offer-boxes {
			margin-top: 40px;
			padding-top: 40px;
		}

		.offer-item-content {
			padding: 30px 50px 30px 30px;
		}

		.offer-item-content h2 {
			font-size: 34px;
			margin-bottom: 30px;
		}

		.offer-item-content h3 {
			font-size: 20px;
		}

		.our-schedule {
			padding: 50px 0;
		}

		.our-schedule-content {
			position: initial;
			margin: 0 0 30px;
		}

		.match-schedule-item {
			padding: 30px;
		}

		.match-schedule-item .icon-box img {
			max-width: 50px;
		}

		.match-schedule-item-content {
			width: calc(100% - 160px);
		}

		.match-content-info {
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

		.match-content-info p {
			font-size: 22px;
		}

		.match-content-location h3 {
			font-size: 20px;
		}

		.match-highlights {
			background-position: top 100px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.match-highlights::before {
			right: -10px;
			width: 170px;
			height: 270px;
		}

		.match-highlight-item-image,
		.match-highlight-item-content {
			margin-bottom: 15px;
		}

		.match-highlight-item-content h3 {
			font-size: 20px;
		}

		.match-highlight-btn {
			top: -40px;
		}

		.match-highlight-btn-next {
			margin-left: 10px;
		}

		.club-success {
			padding: 50px 0;
		}

		.club-success-image {
			width: 100%;
			max-width: 70%;
			height: auto;
			padding: 0 0;
			margin: 0 auto 30px;
		}

		.club-success-image::before {
			top: -50px;
			height: calc(100% + 50px);
		}

		.club-success-content {
			height: auto;
			margin: 0;
		}

		.club-success-list {
			gap: 30px;
		}

		.club-success-item .icon-box {
			margin-bottom: 15px;
			padding-bottom: 15px;
		}

		.club-success-item-content h3 {
			font-size: 20px;
		}

		.our-testimonial {
			background-position: top 100px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.our-testimonial::before {
			bottom: 50px;
			right: -10px;
			width: 170px;
			height: 270px;
		}

		.our-testimonials-content {
			margin-bottom: 30px;
		}

		.testimonial-rating {
			margin-bottom: 15px;
		}

		.testimonial-content {
			margin-bottom: 30px;
			padding-bottom: 30px;
		}

		.author-content h3 {
			font-size: 20px;
		}

		.testimonial-image-box {
			margin: 0;
		}

		.testimonial-image img {
			aspect-ratio: 1 / 0.95;
		}

		.testimonial-counter-boxes {
			bottom: 30px;
		}

		.testimonial-counter-item {
			padding: 20px;
		}

		.testimonial-counter-item h3 {
			font-size: 20px;
			margin-bottom: 15px;
		}

		.testimonial-counter-item h2 {
			font-size: 34px;
		}

		.company-supports-slider {
			margin-top: 40px;
			padding-top: 40px;
		}

		.company-supports-slider-title {
			margin-bottom: 30px;
		}

		.company-supports-slider-title h3 {
			font-size: 20px;
		}

		.cta-box {
			padding: 50px 0;
		}

		.cta-box-content {
			height: auto;
			margin-bottom: 30px;
		}

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

		.cta-box-form .form-group {
			padding: 4px;
		}

		.cta-box-form .form-group .form-control {
			width: 80%;
			padding: 7px 15px;
		}

		.cta-box-form .form-group .btn-default {
			width: 20%;
		}

		.cta-box-list {
			margin-top: 30px;
			padding-top: 30px;
		}

		.cta-box-list ul {
			gap: 15px 20px;
		}

		.cta-box-list ul li {
			padding: 7px 16px 7px 40px;
		}

		.cta-box-list ul li::before {
			left: 16px;
			top: 7px;
			font-size: 16px;
		}

		.cta-box-image {
			height: auto;
			margin: 0;
		}

		.cta-box-image {
			width: 100%;
			max-width: 75%;
			margin: 0 auto;
		}

		.cta-box-image img {
			margin-bottom: -50px;
		}

		.our-blog {
			padding: 50px 0 20px;
		}

		.post-featured-image,
		.post-item-content {
			margin-bottom: 15px;
		}

		.post-item-content h2 {
			font-size: 20px;
		}

		.footer-box {
			padding: 50px 0 0;
		}

		.footer-newsletter-form {
			padding-left: 0;
		}

		.footer-header {
			margin-bottom: 30px;
			padding-bottom: 30px;
		}

		.footer-newsletter-form,
		.footer-header .section-title {
			width: 100%;
		}

		.footer-newsletter-form .form-group .form-control {
			padding: 10px 15px;
		}

		.about-footer {
			margin-bottom: 30px;
		}

		.footer-logo {
			margin-bottom: 15px;
		}

		.footer-social-links h3 {
			font-size: 22px;
			margin-bottom: 15px;
		}

		.footer-links {
			margin-left: 0;
		}

		.footer-links h3 {
			font-size: 22px;
			margin-bottom: 15px;
		}

		.footer-links ul li {
			margin-bottom: 15px;
		}

		.footer-contact-item-content h3 {
			margin-bottom: 5px;
		}

		.footer-copyright {
			padding: 30px 0;
			margin-top: 30px;
		}

		.footer-privacy-policy ul li {
			margin-right: 10px;
			padding-right: 10px;
		}

		.page-header {
			padding: 150px 0 70px;
		}

		.page-header::before {
			width: 100px;
			height: 100px;
		}

		.page-header::after {
			width: 100px;
			height: 100px;
		}

		.page-header-box h1 {
			font-size: 52px;
		}

		.our-approach-image,
		.our-approach-image figure,
		.our-approach-image img {
			height: auto;
		}

		.video-play-button a {
			width: 80px;
			height: 80px;
		}

		.video-play-button a i {
			font-size: 32px;
		}

		.our-approach-content {
			height: auto;
			padding: 50px 15px;
		}

		.approach-item {
			padding: 20px;
		}

		.approach-item-title h3 {
			font-size: 20px;
		}

		.approach-item-content ul {
			padding: 15px 0 0 0;
			margin: 15px 0 0 0;
		}

		.approach-item-content ul li {
			padding-left: 25px;
		}

		.approach-item-content ul li::before {
			font-size: 16px;
		}

		.our-talent {
			background-position: top 100px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.our-talent-content {
			position: initial;
			margin: 0 0 30px;
		}

		.talent-item .icon-box {
			margin-bottom: 30px;
		}

		.talent-item-content h3 {
			font-size: 20px;
		}

		.our-experience {
			background-position: top 50px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.experience-item .icon-box {
			width: 50px;
			height: 50px;
		}

		.experience-item .icon-box img {
			max-width: 24px;
		}

		.experience-item-content {
			margin: 20px 0 20px;
			padding-top: 20px;
		}

		.experience-item-content h3 {
			font-size: 20px;
		}

		.experience-item-list ul li {
			padding-left: 25px;
			margin-bottom: 10px;
		}

		.experience-item-list ul li::before {
			font-size: 16px;
		}

		.experience-image {
			width: 100%;
			max-width: 55%;
			margin: 30px auto 0px;
		}

		.our-team {
			padding: 50px 0 20px;
		}

		.team-image {
			margin-bottom: 15px;
		}

		.team-image img {
			aspect-ratio: 1 / 1.01;
		}

		.our-faqs {
			background-position: top 50px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.faqs-images {
			margin: 0 0 30px;
		}

		.faq-contact-box {
			padding: 20px;
		}

		.faq-contact-box-content h3 {
			font-size: 20px;
		}

		.faq-accordion .accordion-item {
			margin-bottom: 20px;
		}

		.faq-accordion .accordion-header .accordion-button {
			padding: 12px 40px 12px 15px;
		}

		.faq-accordion .accordion-item .accordion-button::after,
		.faq-accordion .accordion-item .accordion-button.collapsed::after {
			font-size: 16px;
			right: 15px;
		}

		.faq-accordion .accordion-item .accordion-body {
			padding: 15px;
		}

		.page-services {
			padding: 50px 0 20px;
		}

		.page-services .service-item .service-body {
			padding: 20px;
			transform: translateY(60%);
		}

		.page-service-single {
			background-position: bottom 0px left -20px;
			background-size: 200px auto;
			padding: 50px 0;
		}

		.page-service-single::before {
			top: 38%;
			right: -10px;
			width: 170px;
			height: 270px;
		}

		.page-single-sidebar {
			position: initial;
			margin: 0 0 30px;
		}

		.page-category-list {
			padding: 20px;
			margin-bottom: 30px;
		}

		.page-category-list h3 {
			font-size: 20px;
			margin-bottom: 20px;
		}

		.page-category-list ul li a {
			padding: 12px 40px 12px 15px;
		}

		.page-category-list ul li a::before {
			right: 15px;
			width: 12px;
			height: 12px;
		}

		.sidebar-cta-box {
			padding: 60px 20px 20px;
		}

		.sidebar-cta-logo {
			margin-bottom: 20px;
		}

		.sidebar-cta-contact-item {
			padding-bottom: 15px;
			margin-bottom: 15px;
		}

		.sidebar-cta-contact-item h3 {
			font-size: 22px;
		}

		.page-single-image {
			margin-bottom: 30px;
		}

		.service-entry {
			margin-bottom: 40px;
		}

		.service-entry p {
			margin-bottom: 15px;
		}

		.service-entry h2 {
			font-size: 40px;
			margin-bottom: 15px;
		}

		.service-entry ul li {
			padding-left: 25px;
			margin-bottom: 10px;
		}

		.service-entry ul li::before {
			font-size: 16px;
		}

		.service-performance-box,
		.empowering-player-box,
		.fueling-passion-box {
			margin-top: 40px;
		}

		.service-performance-box {
			padding: 30px;
		}

		.performance-content ul {
			margin-top: 20px
		}

		.empowering-player-list {
			margin-top: 30px;
		}

		.empowering-player-content {
			padding: 15px;
		}

		.empowering-player-content h3 {
			font-size: 22px;
		}

		.fueling-passion-content-box {
			padding: 30px;
			margin-top: 30px;
		}

		.fueling-passion-list {
			margin-top: 30px;
			padding-top: 30px;
		}

		.page-blog {
			padding: 50px 0;
		}

		.page-pagination {
			margin-top: 10px;
		}

		.page-single-post {
			padding: 50px 0;
		}

		.post-image {
			margin-bottom: 20px;
		}

		.post-entry h1,
		.post-entry h2,
		.post-entry h3,
		.post-entry h4,
		.post-entry h5,
		.post-entry h6 {
			margin: 0 0 0.375em;
		}

		.post-entry h2 {
			font-size: 40px;
		}

		.post-entry p {
			margin-bottom: 15px;
		}

		.post-entry ol li,
		.post-entry ul li {
			margin-bottom: 10px;
		}

		.post-entry blockquote {
			background-position: 20px 20px;
			background-size: 40px;
			padding: 20px 20px 20px 70px;
			margin-bottom: 20px;
		}

		.post-entry blockquote p {
			font-size: 20px;
		}

		.post-tags {
			margin-bottom: 20px;
		}

		.tag-links {
			font-size: 20px;
		}

		.post-tags .tag-links a {
			padding: 10px 15px;
		}

		.post-social-sharing ul {
			text-align: left;
		}

		.page-team {
			padding: 50px 0 20px;
		}

		.page-team-single {
			padding: 50px 0;
		}

		.team-single-image {
			margin-bottom: 30px;
		}

		.team-single-image img {
			aspect-ratio: 1 / 0.8;
		}

		.team-sidebar-category-list h3 {
			font-size: 20px;
			padding: 20px;
		}

		.team-sidebar-category-list ul,
		.team-sidebar-social-link {
			padding: 20px;
		}

		.team-sidebar-category-list ul li {
			font-size: 20px;
			margin-bottom: 20px;
		}

		.team-sidebar-social-link h3 {
			font-size: 20px;
		}

		.team-member-about,
		.team-member-info,
		.team-member-expertise,
		.team-skills-box {
			margin-bottom: 40px;
		}

		.team-about-list {
			gap: 20px;
		}

		.team-about-item {
			width: calc(50% - 10px);
			padding: 20px;
		}

		.team-about-item h3 {
			font-size: 20px;
		}

		.member-expertise-list ul {
			gap: 10px 30px;
		}

		.member-expertise-list ul li {
			padding-left: 25px;
		}

		.member-expertise-list ul li::before {
			font-size: 16px;
		}

		.team-skills-list {
			gap: 30px;
		}

		.page-testimonials {
			padding: 50px 0 20px;
		}

		.page-testimonials .testimonial-item {
			padding: 20px;
		}

		.page-gallery {
			padding: 50px 0 20px;
		}

		.page-video-gallery {
			padding: 50px 0 20px;
		}

		.page-faqs {
			padding: 50px 0;
		}

		.page-faqs-catagery .page-single-faqs {
			margin-bottom: 40px;
		}

		.page-contact-us {
			background-position: top 50px left -30px;
			background-size: 170px auto;
			padding: 50px 0;
		}

		.page-contact-us::before {
			bottom: 50px;
			right: -10px;
			width: 170px;
			height: 270px;
		}

		.contact-us-image {
			margin: 0 0 30px;
		}

		.contact-info-item {
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

		.contact-info-content h3 {
			font-size: 20px;
		}

		.conatct-us-form {
			margin-top: 50px;
		}

		.conatct-us-form .contact-form,
		.google-map {
			width: 100%;
		}

		.contact-form {
			padding: 30px;
		}

		.contact-form::before,
		.contact-form::after {
			width: 100px;
			height: 100px;
		}

		.contact-form .form-control {
			padding: 12px 15px;
		}

		.contact-form .btn-default.btn-highlighted {
			padding: 14px;
		}

		.google-map iframe {
			height: 450px;
		}

		.error-page {
			padding: 50px 0;
		}

		.error-page-image {
			margin-bottom: 20px;
		}

		.error-page-image img {
			max-width: 80%;
		}

		.error-page-content .section-title,
		.error-page-content-body p {
			margin-bottom: 15px;
		}
	}



	@media(max-width: 991px) {
		.hero-content .section-title {

			text-align: center;
		}

		.hero.hero-bg-image .carousel-inner {
			height: 100%;

		}

		.hero.hero-bg-image {
			padding: 145px 19px 84px;
		}

		.hero-content-body p {

			text-align: center;
		}

		.carousel-control-next,
		.carousel-control-prev {

			display: none;
		}

		.hero.hero-bg-image .hero-content {

			padding-top: 0;
		}


		.footer-newsletter-form .form-group {
			display: flex;
			border: none;
			flex-direction: column;

		}

		.td-countdown-2-title {
			text-align: center;
			margin-bottom: 15px;
		}

		.td-countdown-3-wrap .td-hero-countdown {
			margin-left: 0px;
		}

		.td-hero-countdown ul {

			justify-content: center;
		}

		.footer-newsletter-form .form-group .form-control {
			width: 100%;
			border: 1px solid var(--white-color);
			border-radius: 999px;
			padding: 13px;

			margin-bottom: 12px;
		}

		.footer-newsletter-form .form-group .btn-default {
			width: 100%;
		}

		.hero.hero-bg-image .hero-content .hero-content-body {
			margin: 0px auto 0;
		}

		.footer-newsletter-form,
		.footer-header .section-title {

			padding: 0px 29px;
		}

		.td-countdown-3-wrap {
			padding: 19px 19px 19px 19px;
			margin-top: -84px;
		}

		.td-countdown-2-title .title {

			font-size: 29px;
		}

		.td-countdown-2-title .subtitle {

			font-size: 19px;
			line-height: 1.2;
		}

		.td-hero-countdown ul {

			gap: 9px;

		}


		.td-countdown-3-wrap .td-hero-countdown ul li {

			width: 79px;
			height: 79px;

			font-size: 31px;
			padding-top: 21px;
		}


		.td-hero-countdown ul li span {
			font-size: 13px;

			margin-top: 10px;
		}

		.td-countdown-2-location p {
			text-align: center;
			font-size: 17px !important;
			margin-bottom: 0px;
		}

		.what-do-image-1,
		.what-do-image-3 {
			max-width: 295px;
		}

		.what-do-image-2 {
			max-width: 295px;
		}

		.new-sponsor-panel>div {
			grid-template-columns: repeat(auto-fill, minmax(143px, 1fr));
			border-right: 0px;
		}
	}





	@media only screen and (max-width: 767px) {

		.section-title {
			padding-top: 20px;
		}

		.section-bg-title span {
			font-size: 40px;
		}

		.section-title h1 {
			font-size: 30px;
		}

		.section-title h2 {
			font-size: 28px;
		}

		.hero::before {
			top: 80px;
			right: 5px;
			width: 90px;
			height: 90px;
		}

		.hero::after {
			bottom: 10px;
			left: 5px;
			width: 90px;
			height: 90px;
		}

		.hero.hero-bg-image .hero-content {
			max-width: 100%;
			text-align: left;
		}

		.hero.hero-bg-image .hero-content .hero-btn,
		.hero.hero-bg-image .hero-content .hero-content-list ul {
			justify-content: left;
		}

		.hero-content-list ul {
			gap: 10px;
		}

		.hero-content-list ul li {
			width: 100%;
			padding-left: 25px;
		}

		.hero-content-list ul li::before {
			font-size: 16px;
		}

		.hero-content-body {
			max-width: 100%;
			margin-top: 20px;
		}

		.hero-image {
			max-width: 100%;
		}

		.scrolling-ticker-box {
			--gap: 15px;
		}

		.scrolling-content span {
			font-size: 26px;
		}

		.scrolling-content span img {
			max-width: 26px;
			margin-right: 15px;
		}

		.about-us-body {
			gap: 20px;
		}

		.about-us-list {
			width: 100%;
		}

		.about-us-images img {
			aspect-ratio: 1 / 0.95;
		}

		.about-coach-box {
			max-width: 190px;
		}

		.about-coach-images {
			margin-bottom: 15px;
		}

		.about-coach-content h3 {
			font-size: 18px;
		}

		.our-services .col-lg-3.col-md-6:nth-child(n + 3) .service-item {
			border-top: none;
		}

		.service-item {
			border-bottom: 1px solid var(--dark-divider-color);
			border-right: none;
		}

		.our-services .col-lg-3.col-md-6:last-child .service-item {
			border-bottom: none;
		}

		.service-image img {
			height: 400px;
		}

		.service-body {
			padding: 20px;
		}

		.service-body-title h3 {
			font-size: 20px;
		}

		.service-item.active .service-content-box,
		.service-item:hover .service-content-box {
			margin-top: 10px;
		}

		.service-content {
			margin-bottom: 20px;
		}

		.what-we-do {
			background-size: 140px auto;
		}

		.what-we-do::before {
			bottom: 30px;
			width: 130px;
			height: 205px;
		}

		.what-we-do-images {
			padding: 25px 10px 6px;
		}

		.what-do-image-1,
		.what-do-image-3 {
			max-width: 150px;
		}

		.what-do-image-2 {
			max-width: 165px;
		}

		.what-do-image-1 figure,
		.what-do-image-1 figure img,
		.what-do-image-2 figure,
		.what-do-image-2 figure img,
		.what-do-image-3 figure,
		.what-do-image-3 figure img {
			border-radius: 30px;
		}

		.what-do-list-item {
			width: 100%;
		}

		.feature-item-content p {
			font-size: 14px;
		}

		.why-choose-image {
			max-width: 100%;
		}

		.why-choose-item-list {
			gap: 20px;
		}

		.why-choose-item {
			width: 100%;
		}

		.why-choose-list-circle {
			gap: 20px;
			margin-top: 15px;
			padding-top: 15px;
		}

		.why-choose-list {
			width: 100%;
		}

		.offer-boxes {
			gap: 20px;
			margin-top: 30px;
			padding-top: 30px;
		}

		.offer-box-item {
			width: 100%;
		}

		.offer-item-content h2 {
			font-size: 24px;
			margin-bottom: 20px;
		}

		.match-schedule-item {
			padding: 20px;
			gap: 20px;
		}

		.match-schedule-item-content {
			width: 100%;
		}

		.match-content-info {
			gap: 10px;
		}

		.match-schedule-item .icon-box img {
			max-width: 40px;
		}

		.match-content-info p {
			font-size: 16px;
		}

		.match-content-info img {
			max-width: 16px;
		}

		.match-highlight-btn {
			position: initial;
			justify-content: center;
			transform: translateY(0);
			margin-top: 15px;
		}

		.club-success {
			background-size: 50% auto;
		}

		.club-success-image {
			max-width: 100%;
		}

		.club-success-item {
			width: 100%;
		}

		.testimonial-content {
			margin-bottom: 20px;
			padding-bottom: 20px;
		}

		.testimonial-pagination {
			position: initial;
			margin-top: 20px;
			justify-content: center;
		}

		.testimonial-image-box {
			padding-left: 0px;
		}

		.testimonial-image img {
			aspect-ratio: 1 / 1.09;
		}

		.testimonial-counter-boxes {
			position: initial;
			gap: 20px;
			margin-top: 20px;
		}

		.testimonial-counter-item {
			width: calc(50% - 10px);
			padding: 15px;
		}

		.testimonial-counter-item h2 {
			font-size: 24px;
		}

		.testimonial-counter-item p {
			font-size: 14px;
		}

		.company-supports-slider {
			margin-top: 30px;
			padding-top: 30px;
		}

		.company-supports-slider-title {
			margin-bottom: 20px;
		}

		.cta-box-form .form-group .form-control {
			width: 59%;
		}

		.cta-box-form .form-group .btn-default {
			width: 41%;
		}

		.cta-box-list {
			margin-top: 20px;
			padding-top: 20px;
		}

		.cta-box-list ul {
			gap: 10px;
		}

		.cta-box-image {
			max-width: 100%;
		}

		.footer-newsletter-form .form-group .form-control {
			width: 100%;
		}

		.footer-newsletter-form .form-group .btn-default {
			width: 100%;
		}

		.footer-links {
			margin-bottom: 30px;
		}

		.footer-links h3,
		.footer-social-links h3 {
			font-size: 20px;
		}

		.footer-links ul li {
			margin-bottom: 12px;
		}

		.footer-copyright {
			padding: 15px 0;
			margin-top: 0px;
		}

		.footer-copyright-text {
			text-align: center;
		}

		.footer-privacy-policy {
			text-align: center;
			margin-top: 10px;
		}

		.page-header::after,
		.page-header::before {
			width: 60px;
			height: 60px;
		}

		.page-header-box h1 {
			font-size: 30px;
		}

		.page-header-box ol li.breadcrumb-item {
			font-size: 14px;
		}

		.our-approach-image img {
			aspect-ratio: 1 / 0.8;
		}

		.video-play-button a {
			width: 60px;
			height: 60px;
		}

		.video-play-button a::before,
		.video-play-button a::after {
			top: -33%;
			left: -33%;
		}

		.video-play-button a i {
			font-size: 22px;
		}

		.approach-item-box {
			gap: 20px;
		}

		.approach-item {
			width: 100%;
		}

		.talent-item {
			width: 100%;
		}

		.talent-item .icon-box {
			margin-bottom: 20px;
		}

		.experience-image {
			max-width: 80%;
			margin: 30px auto 30px;
		}

		.faqs-images,
		.faqs-image-box-1,
		.faqs-image-box-2 {
			gap: 20px;
		}

		.faqs-image-box-1,
		.faqs-image-box-2 {
			width: calc(50% - 10px);
		}

		.faq-contact-box {
			display: block;
			padding: 12px;
		}

		.faq-contact-box .icon-box {
			margin: 0 0 10px;
		}

		.faq-contact-box-content {
			width: 100%;
		}

		.faq-contact-box-content h3 {
			margin-bottom: 5px;
		}

		.faq-accordion .accordion-header .accordion-button {
			font-size: 20px;
		}

		.page-service-single::before {
			top: 28%;
		}

		.sidebar-cta-contact {
			padding: 15px;
		}

		.sidebar-cta-contact-item h3 {
			font-size: 20px;
		}

		.page-single-image {
			margin-bottom: 20px;
		}

		.page-single-image img {
			aspect-ratio: 1 / 0.7;
		}

		.service-entry h2 {
			font-size: 28px;
		}

		.service-performance-box {
			padding: 20px 15px;
		}

		.performance-image,
		.performance-content {
			width: 100%;
		}

		.performance-image figure,
		.performance-image img {
			height: auto;
		}

		.performance-image img {
			aspect-ratio: 1 / 0.99;
		}

		.empowering-player-item {
			width: 100%;
		}

		.empowering-player-image img {
			aspect-ratio: 1 / 0.91;
		}

		.fueling-passion-content-box {
			padding: 20px;
		}

		.fueling-passion-item-list {
			gap: 20px;
		}

		.fueling-passion-item-list .talent-item {
			width: 100%;
		}

		.fueling-passion-list {
			margin-top: 20px;
			padding-top: 20px;
		}

		.post-single-meta {
			margin-top: 5px;
		}

		.post-single-meta ol li {
			font-size: 16px;
		}

		.post-single-meta ol li i {
			font-size: 16px;
		}

		.post-image img {
			aspect-ratio: 1 / 0.7;
		}

		.post-entry blockquote {
			background-position: 15px 15px;
			padding: 60px 15px 15px 15px;
		}

		.post-entry blockquote p {
			font-size: 18px;
		}

		.post-entry h2 {
			font-size: 28px;
		}

		.team-single-image img {
			aspect-ratio: 1 / 1.02;
		}

		.team-about-item {
			width: 100%;
			background: var(--accent-color);
		}

		.team-about-item:nth-child(even) {
			background: var(--primary-color);
		}

		.member-expertise-list ul li {
			width: 100%;
		}

		.team-skills-list {
			gap: 20px;
		}

		.team-skills-list .skills-progress-bar {
			width: 100%;
		}

		.skills-progress-bar .skill-data {
			margin-bottom: 15px;
		}

		.contact-info-content h3 {
			margin-bottom: 5px;
		}

		.contact-info-content p {
			display: block;
			padding: 0;
			margin: 0;
		}

		.contact-info-content p::before {
			display: none;
		}

		.contact-form {
			padding: 20px;
		}

		.google-map iframe {
			height: 350px;
		}

		.td-countdown-3-wrap {
			margin-top: 21px;
		}

		.td-countdown-2-location p {

			width: 100%;
		}


	}

	@media(max-width: 580px) {
		.section-bg-title {

			text-align: center;
		}

		.section-title h3 {

			padding-left: 0px;
			display: block;
			text-align: center;
		}

		.section-title h2 {

			text-align: center;
		}

		.section-title p {
			margin-top: 10px;
			text-align: center;
		}

		.contact-us-circle {

			margin: 0 auto;
		}

		.what-do-list-item {

			text-align: center;
		}

		.what-do-list-item .icon-box {

			margin: 0 auto 20px;
		}

		content .feature-btn {

			text-align: center;
		}

		.club-success-item {

			text-align: center;
		}

		.testimonial-slider .swiper-wrapper {

			text-align: center;
		}

		.testimonial-author {

			justify-content: center;
		}

		.match-highlight-item-content h3 {

			text-align: center;
		}

		.match-highlight-video-btn {

			justify-content: center;
		}

		.offer-item-content {

			text-align: center;
		}

		.testimonial-counter-item {

			text-align: center;
		}

		.post-item-content h2 {

			text-align: center;
		}

		.post-item-btn {
			text-align: center;
		}

		.footer-logo {

			text-align: center;
		}

		.about-footer-content p {

			text-align: center;
		}

		.footer-social-links {

			text-align: center;
		}

		.footer-links {

			text-align: center;
		}

		.new-sponsor-panel>div {
			grid-template-columns: repeat(auto-fill, minmax(371px, 1fr));
			border-right: 0px;
			margin-bottom: 35px;
		}

		.new-sponsor-panel__tata {
			width: 100%;
			text-align: center;
		}

		.new-sponsor-panel__font {
			font-size: 15px;
			height: auto;

		}

		.new-sponsor-panel {
			padding-top: 27px;
			padding-bottom: 27px;
			height: auto;

		}

		.title-text-height {
			height: auto;

			margin-bottom: 10px;
		}

		.new-sponsor-panel__logo--wrap--1 {

			height: auto;
		}

		.new-sponsor-panel__logo--wrap,
		.new-sponsor-panel__tata {

			text-align: center;
		}

		.service-body {
			transform: translateY(59%);

		}

		.td-countdown-3-wrap {

			margin-top: 15px;
		}

		.td-countdown-3-wrap .td-hero-countdown ul li {
			width: 68px;
			height: 68px;
			font-size: 29px;
			padding-top: 16px;
		}

		.btn-default {
			font-size: 12px;
			padding: 15px 50px 15px 21px;
		}

		.about-us-body {
			gap: 15px;
		}

		.about-us-body {

			align-items: center;
		}
	}

	@media (max-width: 767px) {
		.main-footer .row>div[class*="col-"] {
			margin-bottom: 35px !important;
			display: block !important;
			width: 100% !important;
			flex: 0 0 100% !important;
			max-width: 100% !important;
		}

		.main-footer .footer-links h3 {
			margin-top: 30px !important;
			padding-top: 20px !important;
			margin-bottom: 20px !important;
			display: block !important;
		}

		.main-footer .footer-links ul {
			margin-bottom: 15px !important;
			display: block !important;
		}

		.main-footer .footer-links a[href^="mailto"] {
			text-transform: none !important;
			font-variant: normal !important;
		}
	}

	/* Schedule Section - Brand Gradient Overlay */
	.schedule-section {
		position: relative;
		padding: 39px 0px;
		background: #071f30;
		overflow: hidden;
	}



	.schedule-section:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		background: linear-gradient(135deg, rgba(5, 13, 66, 0.85) 0%, rgba(192, 73, 145, 0.85) 100%);
		z-index: 2;
	}

	.schedule-section .container {
		position: relative;
		z-index: 3;
	}
}

/* ======================================== */
/* Mobile Hero Slider Text Sizing          */
/* ======================================== */

/* Hero Title - Simple CSS animation (replaces resource-heavy text-anime-style-2) */
.hero-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--white-color);
	line-height: 1.2em;
	text-transform: uppercase;
	animation: fadeInUp 0.8s ease-out;
}

.hero-title span {
	color: var(--accent-color);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 1.4rem !important;
		line-height: 1.3em !important;
	}

	.hero-title span {
		font-size: 1.4rem !important;
	}

	.hero .section-title h1,
	.hero-section .section-title h1,
	.carousel-item .section-title h1 {
		font-size: 1.9rem !important;
		line-height: 1.3em !important;
	}

	.hero .section-title h1 span,
	.hero-section .section-title h1 span,
	.carousel-item .section-title h1 span {
		font-size: 1.9rem !important;
	}

	.hero .section-title p,
	.hero-section .section-title p,
	.carousel-item .section-title p {
		font-size: 0.85rem !important;
		line-height: 1.4em !important;
		margin-top: 10px;
	}

	.hero-content {
		padding: 15px !important;
	}
}

@media only screen and (max-width: 767px) {

	/* Schedule Section Alignment Fixes */
	.schedule-date-content {
		text-align: left;
		align-items: flex-start;
	}

	.schedule-time {
		text-align: right;
		align-items: flex-end;
	}

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

	.channel-list {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 20px;
	}

	.channel-item {
		width: auto;
		flex: 0 0 auto;
	}

	.channel-logos {
		justify-content: flex-start;
	}

	.channel-image {
		max-width: 60px;
		height: auto;
	}

	/* Fix missing gradient on mobile */
	.schedule-section:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		background: linear-gradient(135deg, rgba(5, 13, 66, 0.85) 0%, rgba(192, 73, 145, 0.85) 100%) !important;
		z-index: 0;
	}

	.schedule-section .container {
		position: relative;
		z-index: 2;
	}

	/* Fix About SSPL background on mobile */
	.about-sspl-bx {
		background: #071f30 !important;
		color: #fff !important;
	}
}

/* Global Fix for Schedule Section Text Color */
.schedule-section,
.schedule-section h2,
.schedule-section p,
.schedule-section .schedule-title,
.schedule-section .schedule-datetime,
.schedule-section .channel-text,
.schedule-section span,
.schedule-section div {
	color: #ffffff !important;
}

/* ======================================== */
/* TEAM SPECIFIC BACKGROUND COLORS          */
/* ======================================== */

/* Mumbai Titans: #c51623 */
.team-card.team-mumbai,
.team-card-header .team-logo.team-logo-mumbai {
	background: #c51623 !important;
}

/* Haryana Defenders: #0f172c */
.team-card.team-haryana,
.team-card-header .team-logo.team-logo-haryana {
	background: #0f172c !important;
}

/* UP Legends: #022255 */
.team-card.team-up,
.team-card-header .team-logo.team-logo-up {
	background: #022255 !important;
}

/* Delhi Heroes: #1a0025 */
.team-card.team-delhi,
.team-card-header .team-logo.team-logo-delhi {
	background: #1a0025 !important;
}

/* Bengaluru Bullseyes: #540b1f */
.team-card.team-bengaluru,
.team-card-header .team-logo.team-logo-bengaluru {
	background: #540b1f !important;
}

/* Bengal Knights: #1a0d39 */
.team-card.team-bengal,
.team-card-header .team-logo.team-logo-bengal {
	background: #1a0d39 !important;
}

/* Odisha Hawks: #3fcfc5 */
.team-card.team-odisha,
.team-card-header .team-logo.team-logo-odisha {
	background: #3fcfc5 !important;
}

/* Jaipur Royals: #9f35d3 */
.team-card.team-jaipur,
.team-card-header .team-logo.team-logo-jaipur {
	background: #9f35d3 !important;
}

/* ================================= */
/* Performance Slider Styles         */
/* ================================= */

.performance-swiper-container {
	position: relative;
	padding: 0 40px;
}

.performance-block {
	background: var(--white-color);
	border-radius: 15px;
	position: relative;
	transition: all 0.4s ease-in-out;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Force the two columns to sit side-by-side inside narrow swiper slides */
.performance-block .row {
	flex-wrap: nowrap !important;
	justify-content: flex-start !important;
	align-items: stretch !important;
}

.performance-block .col-lg-5 {
	flex: 0 0 40% !important;
	max-width: 40% !important;
	width: 40% !important;
}

.performance-block .col-lg-5 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.performance-block .col-lg-7 {
	flex: 0 0 60% !important;
	max-width: 60% !important;
	width: 60% !important;
	overflow: visible !important;
}

/* Scale down content to fit within narrow swiper slides */
.performance-swiper-container .performace-content {
	padding: 10px 8px;
}

.performance-swiper-container .performace-content h5 {
	font-size: 10px;
	padding: 2px 6px;
	margin-bottom: 5px;
}

.performance-swiper-container span.numbers {
	font-size: 40px;
	line-height: 40px;
	margin-right: 5px;
}

.performance-swiper-container .tp-ply__name {
	font-size: 18px;
	line-height: 20px;
	margin-block-end: 4px;
}

.performance-swiper-container .rt-text-performance h6 {
	font-size: 12px;
	margin-bottom: 2px;
}

.performance-swiper-container .tp-ply__others {
	margin-bottom: 5px;
}

.performance-swiper-container .tp-ply__others .tp-ply-ots {
	font-size: 9px;
	line-height: 12px;
}

.performance-swiper-container .tp-ply__others .tp-ply-ots span {
	font-size: 9px;
}

/* Gradient border using pseudo-element */
.performance-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	padding: 2px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--primary-color));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}

/* Hover animation like management-card */
.performance-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(192, 73, 145, 0.18);
}

/* Navigation Arrows */
.performance-nav-buttons {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	transform: translateY(-50%);
}

.performance-btn-prev,
.performance-btn-next {
	width: 35px;
	height: 35px;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s ease;
	font-size: 14px;
}

.performance-btn-prev:hover,
.performance-btn-next:hover {
	background: var(--accent-color);
}

/* Pagination */
.performance-pagination {
	text-align: center;
	margin-top: 15px;
}

.performance-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--primary-color);
	opacity: 0.3;
}

.performance-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--accent-color);
}

/* Responsive: hide nav arrows on mobile */
@media (max-width: 767px) {
	.performance-swiper-container {
		padding: 0 10px;
	}

	.performance-nav-buttons {
		display: none;
	}
}

.leader-achievement {
	color: var(--white-color);
}