@font-face {

	font-family: 'Helvetica Neue';

	src: url('HelveticaNeue-Light.woff2') format('woff2'),

		url('HelveticaNeue-Light.woff') format('woff');

	font-weight: 300;

	font-style: normal;

	font-display: swap;

}



@font-face {

	font-family: 'Helvetica Neue';

	src: url('HelveticaNeue-Medium.woff2') format('woff2'),

		url('HelveticaNeue-Medium.woff') format('woff');

	font-weight: 500;

	font-style: normal;

	font-display: swap;

}



@font-face {

	font-family: 'Helvetica Neue';

	src: url('HelveticaNeue-Bold.woff2') format('woff2'),

		url('HelveticaNeue-Bold.woff') format('woff');

	font-weight: bold;

	font-style: normal;

	font-display: swap;

}



@font-face {

	font-family: 'Helvetica Neue';

	src: url('HelveticaNeue-Thin.woff2') format('woff2'),

		url('HelveticaNeue-Thin.woff') format('woff');

	font-weight: 100;

	font-style: normal;

	font-display: swap;

}



@font-face {

	font-family: 'Helvetica Neue';

	src: url('HelveticaNeue-Roman.woff2') format('woff2'),

		url('HelveticaNeue-Roman.woff') format('woff');

	font-weight: normal;

	font-style: normal;

	font-display: swap;

}





@font-face {

	font-family: 'Futura';

	src: url('FuturaBT-MediumCondensed.woff2') format('woff2'),

		url('FuturaBT-MediumCondensed.woff') format('woff');

	font-weight: 500;

	font-style: normal;

	font-display: swap;

}



:root {

	--primary-color: #031521;

	--secondary-color: #FFFFFF1A;

	--text-color: #1e1e1e;

	--accent-color: #4a148c;

	--white-color: #FFFFFF;

	--divider-color: #0315211A;

	--dark-divider-color: #FFFFFF1A;

	--error-color: rgb(230, 87, 87);

	--default-font: 'Helvetica Neue';

	--accent-font: 'Futura';

}



/************************************/

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

/************************************/



body {

	font-family: var(--default-font);

	font-size: 16px;

	font-weight: 400;

	line-height: 1em;

	color: var(--text-color);

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

	letter-spacing: 0.5px;

}



::-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);

}

/* a:visited {
    color: #fff;
} */

p {

	line-height: 1.7em;

	margin-bottom: 1.25em;

}



h1,

h2,

h3,

h4,

h5,

h6 {

	margin: 0;

	font-family: var(--accent-font);

	font-weight: 700;

	line-height: 1.3em;

	color: var(--primary-color);

}



figure {

	margin: 0;

}



img {

	max-width: 100%;

}



a {

	text-decoration: none;

}



a:hover {

	text-decoration: none;

	outline: 0;

}


.our-team#sponsors img {border-radius: 0px;}
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;

}



.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: 22px;

	font-weight: 400;

	line-height: 1em;

	text-transform: uppercase;

	background: #000;

	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: #d2222a;

	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;

}



.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: inline-block;

	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);

}



.section-row {

	margin-bottom: 80px;

}



.section-row .section-title {

	margin-bottom: 0;

}



.section-title.section-title-center {

	width: 100%;

	max-width: 750px;

	text-align: center;

	margin: 0 auto;

}



.section-title {

	position: relative;

	margin-bottom: 40px;

	padding-top: 30px;

}



/* ======= Center Stage Subhead ======= */

.center-stage-subhead {

	text-align: center;

	padding: 30px 20px 10px;

}



.center-stage-text {

	font-family: var(--accent-font);

	font-size: 2.4rem;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 2px;

	color: var(--primary-color);

	margin: 0;

}



/* ======= Section Divider ======= */

.section-divider {

	border: none;

	border-top: 1px solid #d0d0d0;

	margin: 0;

}



/* ======= Transport Section ======= */

.transport-section {

	background: #d2222a !important;

	background-image: none !important;

	padding: 60px 0;

}



.transport-section::before {

	display: none !important;

}



.transport-section .section-title-center {

	max-width: 860px;

}



.transport-section .text-anime-style-2,

.transport-section h2 {

	color: #fff;

}



.transport-section .lead,

.transport-section p {

	color: rgba(255, 255, 255, 0.9);

}



.transport-section .what-we-do-images {

	padding: 20px 25px 10px;

}



.transport-section .what-do-image-2 {

	max-width: 340px;

}



.transport-section .what-do-image-2 img {

	border-radius: 20px;

	object-fit: cover;

}



/* Prevent word-break in transport h2 (incl. JS-split char/word spans) */

.transport-section h2,

.transport-section .text-anime-style-2 {

	word-break: keep-all;

	overflow-wrap: normal;



}



.transport-section .text-anime-style-2 .word {

	white-space: nowrap;

	display: inline !important;

}



@media (max-width: 900px) {



	.transport-section h2,

	.transport-section .text-anime-style-2 {

		font-size: 1.5rem !important;

	}

}



/* Reduce whitespace after See Event Schedule button */

.what-we-do .btn-default {

	margin-top: 1.5rem !important;

}



.what-we-do {

	padding-bottom: 40px;

}



.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: 18px;

	line-height: 1.5em;

	letter-spacing: 0.1em;

	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;

}



.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;

}



.section-title-content p {

	margin: 0;

}



.section-btn {

	text-align: right;

}



.section-content-btn .section-btn {

	text-align: left;

	margin-top: 30px;

}



/************************************/

/**** 	   03. Header css		 ****/

/************************************/



header.main-header {
	position: absolute;
	top: 0;
	width: 100%;
	/*  border-bottom: 1px solid var(--dark-divider-color); */
	z-index: 100;
}

.main-header .container {
	gap: 50px;
}

.header-btn {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-ilny {
	margin-left: 10px;
	flex-shrink: 0;
	z-index: 1000;
}

.header-ilny img {
	height: 35px;
	width: auto;
	display: block;
}

@media (max-width: 991px) {
	.header-ilny {
		position: absolute !important;
		right: 90px !important;
		top: 20px !important;
		margin: 0 !important;
	}

	.header-ilny img {
		height: 24px !important;
	}
}

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



header.main-header .header-sticky.hide {

	transform: translateY(-100%);

	transition: transform 0.4s ease-in-out;

}



header.main-header .header-sticky.active {

	position: fixed;

	top: 0;

	left: 0;

	right: 0;

	border-radius: 0;

	transform: translateY(0);

	background: linear-gradient(315deg, var(--accent-color) -3%, #153752 58.57%, var(--primary-color) 91.58%);

	border-bottom: 1px solid var(--dark-divider-color);

}



.navbar {

	padding: 4px 0;

	align-items: center;

}



.navbar-brand {

	padding: 0;

	margin: 0;

}



a.navbar-brand img {
	height: 120px;
	margin-top: 15px;
}



.main-menu .nav-menu-wrapper {

	flex: 1;

	text-align: center;

	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(--accent-font);

	font-size: 17px;

	font-weight: 400;

	line-height: normal;

	padding: 8px 12px !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: #edbe20;

}



.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(--secondary-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);

}



.social-icon {

	position: relative;

	margin-left: 10px;

	font-size: 16px;

	color: #fff;

	background: rgba(255, 255, 255, 0.15);

	backdrop-filter: blur(5px);

	width: 40px;

	height: 40px;

	display: inline-flex;

	align-items: center;

	justify-content: center;

	border-radius: 50%;

	overflow: hidden;

}



/* Shine layer */

.social-icon::before {

	content: "";

	position: absolute;

	top: 0;

	left: -75%;

	width: 50%;

	height: 100%;

	background: linear-gradient(120deg,

			rgba(255, 255, 255, 0) 0%,

			rgba(255, 255, 255, 0.6) 50%,

			rgba(255, 255, 255, 0) 100%);

	transform: skewX(-25deg);

}



/* Hover animation */

.social-icon:hover::before {

	left: 125%;

	transition: 0.6s;

}



.slicknav_menu {

	position: absolute;

	width: 100%;

	padding: 0;

	background: var(--primary-color);

}



.slicknav_menu ul {
	margin: 30px 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);

}



/************************************/

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

/************************************/



.hero {

	position: relative;

	background-image: url('../images/hero-bg.png');

	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 {

	position: relative;

	background: url('../images/hero_bg.jpg') no-repeat;

	background-position: center center;

	background-size: cover;



}



.hero.hero-bg-image::before {

	content: '';

	display: block;

	position: absolute;

	top: 0;

	bottom: 0;

	left: 0;

	right: 0;

	background: var(--primary-color);

	opacity: 30%;

	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: 840px;

	margin: 0 auto;

	text-align: center;

}



.hero.hero-bg-image .hero-content .hero-content-body {

	margin: 40px 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-top: 0;

}



.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 Section */

.hero {

	height: 100vh;

	width: 100%;

	position: relative;

	overflow: hidden;

	background: #fff;

}



.hero-layer {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	display: flex;

	justify-content: center;

	align-items: center;

	will-change: transform;

	pointer-events: none;

	padding-top: 100px;

}



/* Background */

.bg-layer {

	background: url('assets/hero_bg.jpg') center/cover no-repeat;

	z-index: 1;

	transform: scale(1.1);

	/* To hide edges on parallax */

}



/* Text Layers */

.stacked-text {

	display: flex;

	flex-direction: column;

	align-items: center;

	/* Natural centering creates the correct stagger */

	justify-content: center;

	text-align: center;

	width: 100%;

}



.hero-line {

	font-family: 'Futura';

	text-transform: uppercase;

	font-weight: 900;

	line-height: 1.2;

	/* Increased line height as requested */

	font-size: 6.5vw;

	/* Mid-range font size to perfectly emulate the reference */

	letter-spacing: 0;

	white-space: nowrap;

	opacity: 0;

	animation: slideUpFade 2s ease-out forwards;

	/* Smoothest default easing */

}



/* Premium Entrance Animations */

@keyframes slideUpFade {

	0% {

		opacity: 0;

		transform: translateY(20px);

		/* Reduced movement for softer entrance */

	}



	100% {

		opacity: 1;

		transform: translateY(0);

	}

}



@keyframes goalieLeap {

	0% {

		opacity: 0;

		transform: translateX(-5vw) translateY(4vh) scale(0.98);

		filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));

	}



	100% {

		opacity: 1;

		transform: translateX(-4vw) translateY(3vh) scale(1);

		filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));

	}

}



.show {

	color: #fff;

	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

}



.hide {

	color: transparent;

	text-shadow: none;

	user-select: none;

}



/* Positioning adjustments & Staggered Animations */

.line-1 {

	margin-left: 0;

	animation-delay: 0.1s;

}



.line-2 {

	margin-left: 2vw;

	font-size: 6.5vw;

	animation-delay: 0.25s;

}



.line-3 {

	margin-left: 0;

	animation-delay: 0.4s;

}



/* Goalie Layer */

/* Back text is index 2, goalie is index 3, Front text is index 4 */

.text-layer:nth-of-type(2) {

	z-index: 2;

}



.goalie-layer {

	z-index: 3;

}



.text-layer:nth-of-type(4) {

	z-index: 4;

}



.goalie-img {

	height: 90vh;

	/* Large goalie relative to text */

	margin-top: 10vh;

	opacity: 0;

	transform: translateX(-4vw) translateY(3vh);

	/* Final state kept for fallback */

	animation: goalieLeap 2s ease-out forwards;

	animation-delay: 0.3s;

	/* Wait briefly for text */

}



/* Banner */

.hero-banner-bottom {

	position: absolute;

	bottom: 0;

	left: 0;

	width: 100%;

	background: var(--primary-purple);

	color: #fff;

	padding: 25px 0;

	text-align: center;

	font-weight: 900;

	letter-spacing: 5px;

	font-size: 1.4rem;

	z-index: 10;

}



/************************************/

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

/************************************/



.our-scrolling-ticker {

	background: var(--accent-color);

	padding: 24px 0;

}



.scrolling-ticker-box {

	--gap: 30px;

	position: relative;

	display: flex;

	overflow: hidden;

	user-select: none;

	gap: var(--gap);

	align-items: center;

}



.scrolling-content {

	flex-shrink: 0;

	display: flex;

	gap: var(--gap);

	min-width: 100%;

	animation: scroll 100s linear infinite;

}



@keyframes scroll {

	from {

		transform: translateX(0);

	}



	to {

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

	}

}



.scrolling-content span {

	font-family: var(--accent-font);

	font-size: 34px;

	font-weight: 400;

	line-height: 1em;

	color: var(--white-color);

}



.scrolling-content span img {

	width: 100%;

	max-width: 40px;

	margin-right: 30px;

	animation: infiniterotate 10s infinite linear;

}



/************************************/

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

/************************************/



.about-us {

	padding: 60px 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: 20px;

	line-height: 1.4em;

	color: var(--white-color);

}



.feature-wrapper {

	flex: 1 1 450px;

	gap: 30px;

}



.feature-item {

	display: flex;

}



.feature-icon {

	/* background: #4a148c; */

	width: 50px;

	height: 50px;

	min-width: 50px;

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	color: #d2222a;

	font-size: 1.8rem;

	/* box-shadow: 0 10px 20px rgb(199 182 219 / 56%); */

}



.feature-title {



	/* color: var(--primary-purple); */

	font-weight: 500;

	margin-bottom: 8px;

	line-height: 1.2;

	text-transform: capitalize;

	letter-spacing: 0.5px;

}



.feature-text {

	color: #444;

	line-height: 1.7;

	font-size: 1.05rem;

	margin: 0;

}



.feature-list {

	list-style: none;

	padding: 0;

	margin: 0;

	color: #444;

	font-size: 1.05rem;

}



.feature-list li {

	margin-top: 10px;

}



.feature-list i {

	color: #ca2128;

	font-size: 0.9rem;

	margin-right: 8px;

}



/************************************/

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

/************************************/



.what-we-do {

	position: relative;

	background: url('../images/section-bg-imgae-1.svg') no-repeat;

	background-position: left top 100px;

	background-size: 358px auto;

	padding: 60px 0;

}



.what-we-do::before {

	content: '';

	position: absolute;

	bottom: 17%;

	right: 0;

	background: url('../images/section-bg-imgae-2.svg') no-repeat;

	background-position: top center;

	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;

	justify-content: center;

}



.what-do-image-2 {









	width: 100%;

	max-width: 500px;

	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 {



	max-width: 398px;

}



.what-do-image-1 figure,

.what-do-image-2 figure,

.what-do-image-3 figure {

	display: block;



}



.what-do-image-1 img,

.what-do-image-2 img,

.what-do-image-3 img {

	width: 100%;

	object-fit: cover;

	border-radius: 100px;

}









.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;

}





/************************************/

/*** 	 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: 60px 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);

}



/************************************/

/*** 	 	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: 60px 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: 34%;

}



.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;

}



/************************************/

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

/************************************/



.footer-box {

	padding: 100px 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(--dark-divider-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: 28%;

}



.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 {

	border-top: 1px solid var(--dark-divider-color);

	padding-top: 30px;

	margin-top: 30px;

}



.footer-social-links h3 {

	font-size: 24px;

	color: var(--white-color);

	margin-bottom: 20px;

}



.footer-social-links ul {

	margin: 0;

	padding: 0;

	list-style: none;

}



.footer-social-links ul li {

	display: inline-block;

	margin-right: 12px;

}



.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: 18px;

	color: inherit;

}



.footer-links {

	margin-left: 2.604vw;

}



.footer-links h3 {

	font-size: 20px;

	text-transform: capitalize;

	color: var(--white-color);

	margin-bottom: 25px;

}



.footer-links ul {

	list-style: none;

	margin: 0;

	padding: 0;

}



.footer-links ul li {

	background: url('../images/icon-sub-heading.svg') no-repeat;

	background-position: left center;

	background-size: 14px auto;

	text-transform: capitalize;

	color: var(--white-color);

	line-height: normal;

	margin-bottom: 20px;

	padding-left: 24px;

}



.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: 40px 0;

	margin-top: 60px;

}



.footer-copyright-text p {

	color: var(--white-color);

	margin-bottom: 0;

}



.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: 20px;

	margin-right: 20px;

	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;

}



/************************************/

/*** 	  31. Responsive css	  ***/

/************************************/



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



	.feature-image-content,

	.feature-list {

		padding-right: 30px;

		padding-left: 30px;

	}

}



@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: 5px 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;
		margin-bottom:30px;

	}



	.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 {

		margin-top: 20px;

		padding-top: 20px;

	}



	.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 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: 20px;

	}



	.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%;

	}



}



.our-team {

	background: #f9f9f9;

	padding: 100px 70px;

}



.our-team img {

	border-radius: 15px;

}



.lead {

	font-size: 1.25rem;

	font-weight: 400;

}



.our-team .h3,

.our-team h3 {

	font-size: calc(1.3rem + .6vw);

	font-weight: 400 !important;

	/* margin-bottom: 0 !important; */

	font-size: 24px !important;

}



footer {

	background: var(--accent-color);

}



.footer-row {

	display: flex;

	justify-content: space-between;

	align-items: center;

	padding: 60px 0px;

}



.f-log img {

	border-radius: 50%;

	width: 120px;

	background: #fff;

	padding: 10px;

}



.f-center img {

	width: 150px;

}



a.f-link {

	color: #fff;

	font-weight: 400;

	margin-left: 20px;

}



.copy-right {

	text-align: center;

	background: #fff;

	padding: 20px;

	font-weight: 400;

	font-size: 14px;

}


@media only screen and (max-width: 767px) {
	    .hero{height: 500px;}

    .goalie-img {
        height: unset;        
        margin-top: 0;       
    }
	.hero-layer{padding-top: 0px;}

	a.f-link{margin-left: 6px;}
}

@media (max-width: 650px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
/* Mobile (450px ) */
@media (max-width: 450px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
   .footer-row .f-log {
        order: 1;                  
        text-align: center;
    }
    
    .footer-row .f-right {
        order: 3;
        text-align: center;
        width: 100%;
    }
    
    .footer-row .f-right a {
        margin: 8px 6px;
    }
}

@media (max-width: 320px) {
	.moblie_section_heading {
		    max-width: 100%;
    		margin: 0 auto;
	}	
}

/* .text-anime-style-2 span div{
  color: #000;
} */
/* .text-anime-style-2 span:last-of-type div {
  color: #fff;
}
 */
/* .text-anime-style-2:last-of-type span div {
  color: #fff;
} */
/* .transport-section .text-anime-style-2 span div {
  color: #fff !important;
} */

.citywide_soccer span div,
.center_stage span div,
.savor_the_fest span div,
.our_sponsors span div {
  color: #000;
}

.game_plan span div {
  color: #fff;
}


.schedule_page_sponsors span div {
  color: #000;
}
