/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Footclub - Soccer and Football Club HTML 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				: #06351F;
	--secondary-color			: #FFFFFF1A;
	--text-color				: #999999;
	--accent-color				: #EFFF00;
	--white-color				: #FFFFFF;
	--divider-color				: #0315211A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Manrope", sans-serif;
	--accent-font				: "Bebas Neue", sans-serif;
}

/************************************/
/*** 	   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);
}

::-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.7em;
	margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin : 0;
    font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.1em;
	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;
}

.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: 18px;
	font-weight: 400;
	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;
}

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

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

.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,
.dark-section .section-title p{
	color: var(--white-color);
}

.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.main-header{
	position: absolute;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

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

img,
svg,
video,
iframe{
	max-width: 100%;
}

.club-topbar{
	background: #031f12;
	border-bottom: 1px solid rgba(239,255,0,.18);
	color: rgba(255,255,255,.72);
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.club-topbar .container,
.club-topbar div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.club-topbar a{
	color: var(--white-color);
	padding: 9px 0;
}

.club-topbar a:hover{
	color: var(--accent-color);
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
	background: rgba(6,53,31,.96);
}

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: rgba(6,53,31,.98);
	box-shadow: 0 12px 35px rgba(0,0,0,.18);
	border-bottom: 1px solid var(--dark-divider-color);
}

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

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

.navbar-brand img{
	width: 88px;
	height: 88px;
	object-fit: contain;
	border-radius: 50%;
}

@media only screen and (min-width: 992px){
	header.main-header .navbar > .container{
		position: relative;
	}

	header.main-header .navbar-brand{
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 2;
		transform: translate(-50%, -50%);
	}

	header.main-header .main-menu{
		position: static;
		width: 100%;
	}

	header.main-header .main-menu .nav-menu-wrapper{
		width: 100%;
		margin: 0;
	}

	header.main-header .main-menu .nav-menu-wrapper > ul{
		display: grid;
		grid-template-columns: repeat(3, max-content) 150px repeat(3, max-content);
		align-items: center;
		justify-content: center;
		position: relative;
		left: -30px;
	}

	header.main-header .main-menu .nav-menu-wrapper > ul > li:nth-child(4){
		grid-column: 5;
	}

	header.main-header .header-btn{
		position: absolute;
		right: 15px;
		top: 50%;
		z-index: 3;
		transform: translateY(-50%);
	}
}

@media only screen and (min-width: 1200px){
	header.main-header .main-menu .nav-menu-wrapper > ul{
		grid-template-columns: repeat(3, max-content) 190px repeat(3, max-content);
		left: -40px;
	}
}

.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: 18px;
	font-weight: 400;
	line-height: normal;
	padding: 14px !important;
	color: var(--white-color);
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.nav-item > a.active{
	color: var(--accent-color);
}

.main-menu ul li.nav-item > a.active::before{
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 5px;
	height: 2px;
	background: var(--accent-color);
}

.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(--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,
.mobile-menu-backdrop{
	display: none;
}

.mobile-menu-header{
	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(--primary-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);
}

/************************************/
/***        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;
	padding: 245px 0 140px;
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--primary-color);
    opacity: 80%;
    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;
}

/************************************/
/***   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 50s 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: 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: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

/************************************/
/*** 	 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: url('/images/section-bg-image-1.svg') no-repeat;
	background-position: left top 100px;
	background-size: 358px auto;
	padding: 100px 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;
}

.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;
	background: url('/images/section-bg-image-1.svg') no-repeat;
	background-position: top 100px left -50px;
	background-size: 250px auto;
	padding: 100px 0;
}

.why-choose-us::before{
	content: '';
	position: absolute;
	bottom: 100px;
	right: -30px;
	background: url('../images/section-bg-imgae-2.svg') no-repeat;
	background-position: top center;
	background-size: cover;
	width: 230px;
	height: 360px;
	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;
    background: url('/images/section-bg-image-1.svg') no-repeat;
    background-position: top 100px left -50px;
    background-size: 250px auto;
	padding: 100px 0;
}

.match-highlights::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: -30px;
	background: url('../images/section-bg-imgae-2.svg') no-repeat;
	background-position: top center;
	background-size: cover;
	width: 230px;
	height: 360px;
	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;
}

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

/************************************/
/*** 	 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;
    background: url('/images/section-bg-image-1.svg') no-repeat;
    background-position: top 100px left -50px;
    background-size: 250px auto;
	padding: 100px 0;
}

.our-testimonial::before{
	content: '';
	position: absolute;
	bottom: 100px;
	right: -30px;
	background: url('../images/section-bg-imgae-2.svg') no-repeat;
	background-position: top center;
	background-size: cover;
	width: 230px;
	height: 360px;
	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,
.company-supports-logo{
	text-align: center;
}

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

/************************************/
/*** 	 	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: 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;
}

/************************************/
/*** 	   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. 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: 125px;
}

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

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

.page-header{
    position: relative;
    background: url('../images/page-header-bg-v2.png') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 210px 0 105px;
    overflow: hidden;
}

.page-header::before{
   content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,31,18,.3), rgba(3,31,18,.58));
}

.page-header::after{
    display: none;
}

.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: url('/images/section-bg-image-1.svg') no-repeat;
    background-position: top 100px left -50px;
    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: url('/images/section-bg-image-1.svg') no-repeat;
    background-position: top 100px left -50px;
    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{
	position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
	padding: 9px 9px 20px;
	overflow: hidden;
	border: 1px solid rgba(133, 205, 158, .28);
	border-top-color: rgba(239, 255, 0, .58);
	border-radius: 22px;
	background:
		radial-gradient(circle at 85% 8%, rgba(239, 255, 0, .11), transparent 30%),
		linear-gradient(145deg, rgba(5, 74, 40, .96), rgba(3, 43, 25, .92));
	box-shadow: 0 20px 45px rgba(3, 43, 25, .22), inset 0 1px 0 rgba(255, 255, 255, .16);
	-webkit-backdrop-filter: blur(18px) saturate(125%);
	backdrop-filter: blur(18px) saturate(125%);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.team-item::before{
	content: '';
	position: absolute;
	right: -45px;
	bottom: -55px;
	width: 135px;
	height: 135px;
	border: 1px solid rgba(239, 255, 0, .11);
	border-radius: 50%;
	box-shadow: 0 0 0 22px rgba(239, 255, 0, .025);
	pointer-events: none;
}

.team-item:hover{
	transform: translateY(-7px);
	border-top-color: #EFFF00;
	box-shadow: 0 26px 55px rgba(3, 43, 25, .3), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.team-image{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.team-image a,
.team-image figure{
	display: block;
	cursor: none;
	border-radius: 15px;
	overflow: hidden;
}

.team-image::after{
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 32%;
	border-radius: 0 0 15px 15px;
	background: linear-gradient(transparent, rgba(3, 43, 25, .36));
	pointer-events: none;
}

.team-image img{
    width: 100%;
	aspect-ratio: 1 / 1.278;
    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{
	position: relative;
	z-index: 1;
	text-align: center;
}

.team-content h3{
	color: #fff;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	color: #EFFF00;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: capitalize;
	margin: 0;
}

.our-faqs{
	background: url('/images/section-bg-image-1.svg') no-repeat;
    background-position: top 100px left -50px;
    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: url('/images/section-bg-image-1.svg') no-repeat;
    background-position: bottom 100px left -50px;
    background-size: 250px auto;
	padding: 100px 0;
}

.page-service-single::before{
	content: '';
	position: absolute;
	top: 100px;
	right: -30px;
	background: url('../images/section-bg-imgae-2.svg') no-repeat;
	background-position: top center;
	background-size: cover;
	width: 230px;
	height: 360px;
	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: 120px 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(315deg, var(--accent-color) -3%, #0B5B33 58.57%, var(--primary-color) 91.58%);
	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;
}

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

.squad-group + .squad-group{
	margin-top: 55px;
}

.squad-group-heading{
	display: flex;
	align-items: baseline;
	gap: 14px;
	margin-bottom: 25px;
	padding-bottom: 12px;
	border-bottom: 2px solid #EFFF00;
}

.squad-group-heading span{
	color: #0B5B33;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
}

.squad-group-heading h2{
	margin: 0;
	font-size: 34px;
	text-transform: uppercase;
}

.page-team .team-card-grid{
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 24px 16px;
	margin: 0;
}

.page-team .team-card-grid > div{
	width: auto;
	max-width: none;
	padding: 0;
}

.page-team .team-card-grid .team-item{
	height: 100%;
	margin: 0;
}

.page-team .team-card-grid .team-content h3{
	font-size: 18px;
	line-height: 1.2;
}

.page-team .team-card-grid .team-content p{
	font-size: 10px;
	line-height: 1.35;
}

@media(max-width:1199px){
	.page-team .team-card-grid{
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media(max-width:991px){
	.page-team .team-card-grid{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/************************************/
/*** 	 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(315deg, var(--accent-color) -3%, #0B5B33 58.57%, var(--primary-color) 91.58%);
    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(315deg, var(--accent-color) -3%, #0B5B33 58.57%, var(--primary-color) 91.58%);
	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 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: 0;
    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;
}

/************************************/
/*** 	   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-image-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;
	background: url('../images/section-bg-imgae-2.svg') no-repeat;
	background-position: top center;
	background-size: cover;
	width: 230px;
	height: 360px;
	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(315deg, var(--accent-color) -3%, #0B5B33 58.57%, var(--primary-color) 91.58%);
	padding: 40px;
}

.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: 16px;
	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: 17px 20px;
	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%;
}

/************************************/
/***       Club Home Page css      ***/
/************************************/

.club-footer{position:relative;overflow:hidden;background:#fff;color:#06351F;text-align:center}.club-sponsor-strip{padding:30px 15px 35px;background:#f7f8f5}.club-sponsor-strip>p{margin:0 0 18px;color:#68756e;font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.club-sponsor-list{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:20px}.club-sponsor-card{display:flex;align-items:center;justify-content:center;width:220px;height:92px;padding:12px 22px;border:1px solid #dfe5e0;border-radius:10px;background:#fff;color:#06351F;overflow:hidden}.club-sponsor-card img{display:block;width:100%;height:100%;object-fit:contain;filter:none}.club-sponsor-msibi{background:#080808;border-color:#080808}.club-sponsor-msibi img{max-width:175px}.club-sponsor-time img{transform:scale(2.1) translate(13%,11%)}.club-sponsor-card:hover{border-color:#0B5B33;color:#0B5B33;transform:translateY(-2px)}.club-footer-inner{padding:55px 15px 45px}.club-footer-brand-row{position:relative;display:flex;align-items:center;justify-content:center}.club-footer-brand-row::before{content:'';position:absolute;left:50%;top:50%;width:100vw;height:5px;background:linear-gradient(90deg,#07813d 0%,#55a821 48%,#EFFF00 100%);transform:translate(-50%,-50%)}.club-footer-brand{position:relative;z-index:1;display:inline-block;padding:0 24px;background:#fff}.club-footer-brand img{width:130px;height:130px;object-fit:contain}.club-footer-motto{margin:8px 0 26px;color:#06351F;font-family:var(--accent-font);font-size:25px;line-height:1.1;text-transform:uppercase}.club-footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:16px 38px}.club-footer-nav a{color:#06351F;font-family:var(--accent-font);font-size:17px;text-transform:uppercase}.club-footer-nav a:hover{color:#0B5B33}.club-footer-copyright{margin:22px 0 0;color:#68756e;font-size:13px}.club-back-to-top{position:absolute;right:35px;bottom:35px;display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:#EFFF00;color:#06351F;box-shadow:0 8px 25px rgba(0,0,0,.18)}.club-back-to-top:hover{transform:translateY(-4px);color:#06351F}.club-back-to-top i{font-size:17px}
@media(max-width:767px){.club-footer-inner{padding:45px 20px 80px}.club-footer-brand img{width:110px;height:110px}.club-footer-motto{font-size:21px}.club-footer-nav{gap:14px 24px}.club-back-to-top{right:20px;bottom:20px;width:44px;height:44px}}

.club-home{background:#f4f1eb}.club-home .main-header{background:#06351F}.club-hero{min-height:760px;display:flex;align-items:center;position:relative;background-color:#040e1b;background-image:linear-gradient(90deg,rgba(4,14,27,.98) 0%,rgba(4,14,27,.88) 35%,rgba(4,14,27,.18) 68%,rgba(4,14,27,.02) 100%),url('/images/home-hero-v2.png');background-position:center,right center;background-size:100% 100%,auto 100%;background-repeat:no-repeat;color:#fff}.club-hero-copy{max-width:700px;padding:100px 0}.club-eyebrow,.club-section-heading>div>span{color:#EFFF00;font-size:12px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}.club-hero h1{color:#fff;font-size:clamp(62px,8vw,116px);line-height:.82;text-transform:uppercase;margin:20px 0 30px}.club-hero h1 span{color:#EFFF00}.club-hero-copy>p:not(.club-eyebrow){max-width:540px;color:#d5dbe4;font-size:19px}.club-hero-actions{display:flex;align-items:center;gap:30px;margin-top:38px}.club-text-link{color:#fff;font-weight:700}.club-text-link i{margin-left:8px;color:#EFFF00}.club-ticker{display:flex;justify-content:center;align-items:center;gap:28px;padding:17px;background:#EFFF00;color:#06351F;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;overflow:hidden;white-space:nowrap}.club-ticker i{width:6px;height:6px;background:#06351F;transform:rotate(45deg)}
.club-news-section,.club-team-section,.club-home-table{padding:100px 0}.club-section-heading{display:flex;align-items:end;justify-content:space-between;margin-bottom:38px}.club-section-heading h2{font-size:clamp(42px,5vw,70px);line-height:1;text-transform:uppercase;margin:8px 0 0}.club-section-heading>a{color:#06351F;font-weight:800;border-bottom:2px solid #EFFF00}.club-news-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr;gap:18px}.club-news-card{background:#fff}.club-news-visual{height:245px;position:relative;background:#06351F;overflow:hidden}.club-news-card.featured .club-news-visual{height:330px}.club-news-visual::after{content:'';position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(3,28,16,.08),rgba(3,28,16,.38));pointer-events:none}.club-news-visual>span{position:absolute;z-index:2;left:18px;top:10px;color:rgba(255,255,255,.32);font-size:100px;font-weight:900;line-height:1}.club-news-visual img{display:block;position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}.club-news-copy{padding:25px}.club-news-copy>p{color:#EFFF00;font-size:11px;font-weight:800;text-transform:uppercase}.club-news-copy h2,.club-news-copy h3{font-size:25px;line-height:1.15}.club-news-copy>div{color:#68707c;font-size:14px;margin-bottom:22px}.club-news-copy>a{color:#06351F;font-weight:800}.club-news-copy>a i{margin-left:7px;color:#EFFF00}
.club-match-block{padding:76px 0 80px;background:radial-gradient(circle at 50% 42%,rgba(0,151,74,.1),transparent 35%),#15191f;color:#fff;border-top:1px solid rgba(255,255,255,.04)}.club-section-heading.light h2,.club-section-heading.light>a{color:#fff}.club-match-inner{display:flex;flex-direction:column;align-items:center}.club-match-heading{text-align:center}.club-match-heading>span{display:inline-block;padding:9px 20px;border-radius:4px;background:#008844;color:#fff;font-size:10px;font-weight:800;letter-spacing:.17em;text-transform:uppercase}.club-match-heading h2{margin:20px 0 0;color:#aeb4b3;font-size:clamp(28px,3vw,42px);font-weight:500;letter-spacing:.08em;text-transform:uppercase}.club-match-countdown{display:flex;align-items:center;justify-content:center;gap:14px;margin:38px 0 48px}.club-match-countdown>div{text-align:center}.club-match-countdown strong{display:grid;place-items:center;width:108px;height:106px;border:1px solid #34403f;border-radius:11px;background:linear-gradient(145deg,#1d2929,#1c2025);box-shadow:inset 0 1px rgba(255,255,255,.04);color:#f7faf7;font-size:64px;line-height:1}.club-match-countdown small{display:block;margin-top:10px;color:#99a2aa;font-size:10px;font-weight:700;letter-spacing:.2em;text-transform:uppercase}.club-match-countdown>i{margin-top:-20px;color:#00b85a;font-size:43px;font-style:normal;font-weight:900}.club-match-card{display:grid;grid-template-columns:180px minmax(280px,1fr) 180px;align-items:center;width:min(100%,680px);min-height:190px;padding:30px 26px;border:1px solid #3a4248;border-top:3px solid #00a651;border-radius:15px;background:#22262c}.club-match-team{display:flex;flex-direction:column;align-items:center;gap:12px;text-align:center}.club-match-card img{width:72px;height:72px;object-fit:contain}.club-match-card strong{color:#fff;font-size:14px;text-transform:uppercase}.club-kickoff{text-align:center}.club-kickoff small,.club-kickoff time,.club-kickoff span{display:block}.club-kickoff small{color:#00b85a;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.club-kickoff b{display:block;margin:4px 0;color:#5f666c;font-size:43px;line-height:1}.club-kickoff time{color:#fff;font-size:18px;font-weight:700}.club-kickoff span{margin-top:8px;color:#9ba3ac;font-size:11px}.club-kickoff span i{margin-right:7px;color:#00b85a}.club-match-link{margin-top:24px;color:#fff;font-size:12px;font-weight:800;border-bottom:2px solid #00a651}.club-match-link i{margin-left:6px;color:#00b85a}
.club-team-section{background:#fff}.club-community-band{padding:80px 0;background:linear-gradient(110deg,#EFFF00,#075B2D);color:#fff}.club-community-band .container{display:flex;align-items:center;justify-content:space-between}.club-community-band span{text-transform:uppercase;font-weight:800;letter-spacing:.15em}.club-community-band h2{color:#fff;font-size:clamp(38px,5vw,68px);margin:8px 0 0}.club-home-table{background:#f4f1eb}
.club-data-error{max-width:720px;margin:20px auto;padding:48px 30px;border:1px solid #dfe5e0;background:#f7f8f5;color:#68756e;text-align:center}.club-data-error i{display:flex;align-items:center;justify-content:center;width:52px;height:52px;margin:0 auto 18px;border-radius:50%;background:#EFFF00;color:#06351F;font-size:21px}.club-data-error h3{margin-bottom:8px;color:#06351F;font-size:28px;text-transform:uppercase}.club-data-error p{margin-bottom:0}.club-data-error .btn-default{margin-top:22px}.club-data-error.compact{margin:0 auto;padding:32px}.club-data-error.compact h3{font-size:23px}
.player-profile-page{padding:90px 0;background:#f4f1eb}.player-profile-grid{display:grid;grid-template-columns:minmax(280px,370px) 1fr;gap:42px;align-items:start}.player-profile-card{position:sticky;top:120px;overflow:hidden;border-radius:12px;background:#06351F;color:#fff;box-shadow:0 22px 60px rgba(7,31,20,.16)}.player-profile-photo{position:relative;height:430px;background:linear-gradient(145deg,#102b20,#07111f)}.player-profile-photo img{width:100%;height:100%;object-fit:cover;object-position:top center}.player-profile-photo>strong{position:absolute;right:18px;bottom:-12px;color:#EFFF00;font-family:var(--accent-font);font-size:94px;line-height:1;opacity:.9}.player-profile-name{position:relative;padding:24px 25px 20px}.player-profile-name span{color:#EFFF00;font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.player-profile-name h2{margin:5px 0 0;color:#fff;font-size:34px;text-transform:uppercase}.player-performance-summary{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}.player-performance-summary div{padding:18px 8px;text-align:center;border-right:1px solid rgba(255,255,255,.12)}.player-performance-summary div:last-child{border:0}.player-performance-summary strong,.player-performance-summary span{display:block}.player-performance-summary strong{color:#fff;font-size:27px}.player-performance-summary span{color:#9db0a5;font-size:9px;letter-spacing:.12em;text-transform:uppercase}.player-card-counts{display:flex;justify-content:center;gap:25px;padding:17px;font-size:12px}.player-card-counts span{display:flex;align-items:center;gap:7px}.player-card-counts i{display:inline-block;width:11px;height:16px;border-radius:2px}.yellow-card{background:#ffd900}.red-card{background:#ec2534}.player-profile-details{overflow:hidden;border-radius:12px;background:#fff;box-shadow:0 22px 60px rgba(7,31,20,.08)}.player-profile-details>p,.player-profile-details>h2{margin-left:30px;margin-right:30px}.player-profile-details>p{margin-top:30px}.player-profile-details>h2{margin-bottom:25px;font-size:42px;text-transform:uppercase}.player-facts{margin:0}.player-facts>div{display:grid;grid-template-columns:minmax(145px,220px) 1fr;align-items:center;min-height:48px;padding:9px 30px}.player-facts>div:nth-child(odd){background:#f0f1ef}.player-facts dt{color:#0B5B33;font-weight:800;text-transform:uppercase;font-size:12px}.player-facts dd{margin:0;color:#303b35;font-weight:700}.player-biography{margin:45px 0;padding:45px;border-left:5px solid #EFFF00;background:#fff}.player-biography h2{font-size:42px;text-transform:uppercase}.player-biography>p:last-child{max-width:900px;margin:0;color:#657069;font-size:17px;line-height:1.8}.player-gallery-section{margin:50px 0}.player-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:250px;gap:15px}.player-gallery-grid figure{margin:0;overflow:hidden;background:#06351F}.player-gallery-grid figure.featured{grid-column:span 2;grid-row:span 2}.player-gallery-grid img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}.player-gallery-grid figure:hover img{transform:scale(1.04)}.player-gallery-empty{padding:55px 25px;border:1px dashed #bdc9c1;background:#fff;text-align:center;color:#718078}.player-gallery-empty i{margin-bottom:12px;color:#0B5B33;font-size:32px}.player-gallery-empty p{margin:0}.player-profile-page>.container>.btn-default{margin-top:5px}
@media(max-width:991px){.player-profile-grid{grid-template-columns:300px 1fr;gap:24px}.player-profile-photo{height:360px}.player-profile-details>h2{font-size:34px}.player-facts>div{grid-template-columns:140px 1fr;padding:9px 20px}}
@media(max-width:767px){.player-profile-page{padding:60px 0}.player-profile-grid{grid-template-columns:1fr}.player-profile-card{position:relative;top:auto;max-width:400px;width:100%;margin:0 auto}.player-profile-photo{height:430px}.player-profile-details>p,.player-profile-details>h2{margin-left:20px;margin-right:20px}.player-profile-details>h2{font-size:30px}.player-facts>div{grid-template-columns:1fr;gap:2px;padding:12px 20px}.player-biography{padding:30px 24px}.player-biography h2{font-size:32px}.player-gallery-grid{grid-template-columns:1fr;grid-auto-rows:280px}.player-gallery-grid figure.featured{grid-column:auto;grid-row:auto}}
.hero-match-note{display:flex;flex-direction:column;gap:4px;margin-top:28px;padding-left:15px;border-left:3px solid #EFFF00}.hero-match-note small,.hero-announcement span{color:#EFFF00;font-size:10px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.hero-match-note strong{color:#fff}.hero-match-note b{padding:0 7px;color:#EFFF00}.club-hero .container{position:relative}.hero-announcement{position:absolute;right:15px;bottom:45px;display:grid;grid-template-columns:1fr auto;gap:4px 25px;max-width:340px;padding:18px 20px;background:rgba(7,17,31,.88);border-left:3px solid #EFFF00;color:#fff}.hero-announcement span{grid-column:1/-1}.hero-announcement i{color:#EFFF00}
.quick-centre{background:#fff;box-shadow:0 18px 45px rgba(7,17,31,.08)}.quick-centre-grid{display:grid;grid-template-columns:repeat(4,1fr)}.quick-centre article{min-height:145px;padding:28px 24px;border-right:1px solid #e2e4e8}.quick-centre article:last-child{border:0}.quick-centre article>span{display:block;color:#EFFF00;font-size:10px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}.quick-centre article>strong{display:block;margin:11px 0 8px;font-size:16px;line-height:1.3}.quick-centre article>small{color:#7b818a}.quick-centre article strong b{color:#EFFF00}.quick-centre .position-number{font-size:45px}.countdown{display:flex;gap:16px;margin-top:14px}.countdown b{font-size:25px}.countdown b small{display:block;color:#7b818a;font-size:8px;text-transform:uppercase}
.team-pathways{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:25px}.team-pathways a{display:flex;align-items:center;gap:15px;padding:20px;background:#f4f1eb;color:#06351F}.team-pathways i{font-size:23px;color:#EFFF00}.team-pathways span,.team-pathways b{display:block}.team-pathways span{font-size:12px;color:#727985}.team-pathways b{font-size:15px;color:#06351F}
.home-fixtures-results,.featured-players-section{padding:100px 0;background:#06351F;color:#fff}.home-schedule-grid{display:grid;grid-template-columns:1fr 1fr;gap:25px}.home-schedule-grid>div{padding:30px;background:#084526}.home-schedule-grid h3{color:#fff;text-transform:uppercase}.home-schedule-grid article{display:grid;grid-template-columns:95px 1fr;padding:16px 0;border-top:1px solid #334055}.home-schedule-grid time{color:#EFFF00;font-size:11px;font-weight:800}.home-schedule-grid p{display:grid;grid-template-columns:1fr 55px 1fr;align-items:center;margin:0;color:#fff;font-size:13px}.home-schedule-grid p strong{text-align:center;color:#fff}
.home-highlights{padding:100px 0;background:#fff}.highlight-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:15px}.highlight-card{position:relative;min-height:260px;overflow:hidden;background:#06351F}.highlight-card:first-child{grid-row:span 2;min-height:535px}.highlight-card:last-child{grid-column:2/-1}.highlight-card img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;opacity:.5;transition:.4s}.highlight-card:hover img{transform:scale(1.05);opacity:.35}.highlight-card>span{position:absolute;inset:auto 22px 22px;color:#fff}.highlight-card i{display:flex;align-items:center;justify-content:center;width:42px;height:42px;margin-bottom:15px;border-radius:50%;background:#EFFF00}.highlight-card small,.highlight-card strong{display:block}.highlight-card small{color:#EFFF00;font-weight:800;text-transform:uppercase}.highlight-card strong{font-size:22px;color:#fff}
.featured-player-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.featured-player{position:relative;height:480px;overflow:hidden;background:linear-gradient(#075B2D,#06351F)}.featured-player img{width:100%;height:100%;object-fit:cover}.featured-player>span{position:absolute;left:0;right:0;bottom:0;padding:70px 24px 25px;background:linear-gradient(transparent,#06351F)}.featured-player small,.featured-player strong,.featured-player b{display:block}.featured-player small{color:#EFFF00;font-weight:800;text-transform:uppercase}.featured-player strong{color:#fff;font-size:26px}.featured-player b{color:#aeb8c6}
.club-sponsors{padding:55px 0;background:#fff;text-align:center}.club-sponsors p{margin:0 0 18px;color:#68756e;font-size:11px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.club-partners-carousel{position:relative;max-width:560px;margin:0 auto;padding:0 40px 25px}.club-partners-carousel .swiper{overflow:hidden}.club-partners-carousel .swiper-slide{display:flex;height:auto;align-items:stretch;justify-content:center}.club-partners-carousel .club-sponsor-card{width:100%;height:92px}.club-partners-prev,.club-partners-next{position:absolute;z-index:2;top:46px;display:flex;align-items:center;justify-content:center;width:32px;height:32px;padding:0;border:1px solid #dfe5e0;border-radius:50%;background:#fff;color:#06351F;transform:translateY(-50%)}.club-partners-prev{left:0}.club-partners-next{right:0}.club-partners-prev:hover,.club-partners-next:hover{border-color:#0B5B33;background:#0B5B33;color:#fff}.club-partners-pagination{position:absolute;bottom:0!important;left:0!important;width:100%!important}.club-partners-pagination .swiper-pagination-bullet{width:7px;height:7px;background:#9ba69f;opacity:.45}.club-partners-pagination .swiper-pagination-bullet-active{background:#0B5B33;opacity:1}.social-newsletter{padding:90px 0;background:#06351F;color:#fff}.social-newsletter-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px}.social-newsletter span{font-size:11px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.social-newsletter h2{color:#fff;font-size:42px}.social-links{display:flex;gap:10px}.social-links a{display:flex;align-items:center;justify-content:center;width:45px;height:45px;border:1px solid #fff;color:#fff}.social-newsletter form{display:flex}.social-newsletter input{flex:1;padding:15px;border:0}.social-newsletter button{padding:15px 20px;border:0;background:#EFFF00;color:#06351F;font-weight:800}.social-newsletter small{display:block;margin-top:10px;color:#d8e5dc}
@media(max-width:991px){.club-hero{min-height:650px;background-position:center,68% center}.club-news-grid{grid-template-columns:1fr 1fr}.club-news-card.featured{grid-column:1/-1}}
@media(max-width:767px){.club-hero{min-height:680px;background-position:center,70% center}.club-hero-copy{padding:80px 0}.club-hero h1{font-size:58px}.club-hero-actions{align-items:flex-start;flex-direction:column;gap:20px}.club-ticker{justify-content:flex-start}.club-news-section,.club-team-section,.club-home-table,.club-match-block{padding:60px 0}.club-section-heading h2{font-size:38px}.club-section-heading>a{display:none}.club-news-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.club-news-card.featured{grid-column:auto}.club-news-visual,.club-news-card.featured .club-news-visual{height:165px}.club-news-visual>span{left:10px;top:8px;font-size:54px}.club-news-copy{padding:15px 12px}.club-news-copy>p{min-height:24px;margin-bottom:8px;font-size:8px;line-height:1.4}.club-news-copy h2,.club-news-copy h3{font-size:17px;line-height:1.2}.club-news-copy>div{display:none}.club-news-copy>a{font-size:11px}.club-match-heading h2{font-size:29px}.club-match-countdown{gap:6px;margin:30px 0 38px;width:100%}.club-match-countdown strong{width:65px;height:72px;font-size:40px}.club-match-countdown>i{font-size:28px}.club-match-card{grid-template-columns:1fr 1fr;gap:22px;padding:26px 16px}.club-kickoff{grid-column:1/-1;grid-row:1}.club-match-card img{width:68px;height:68px}.club-community-band .container{align-items:flex-start;flex-direction:column;gap:30px}}
@media(max-width:767px){.team-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px 12px;margin:0}.team-card-grid>div{width:auto;max-width:none;padding:0}.team-card-grid .team-item{height:auto;margin:0}.team-card-grid .team-image{margin-bottom:12px}.team-card-grid .team-image a,.team-card-grid .team-image figure{border-radius:12px}.team-card-grid .team-content h3{font-size:17px;line-height:1.15}.team-card-grid .team-content p{font-size:12px;line-height:1.35}.team-card-grid .team-social-icon{display:none}}
@media(max-width:767px){.squad-group+.squad-group{margin-top:42px}.squad-group-heading{margin-bottom:18px}.squad-group-heading h2{font-size:26px}}
@media(max-width:991px){.quick-centre-grid{grid-template-columns:1fr 1fr}.highlight-grid{grid-template-columns:1fr 1fr}.highlight-card:first-child{grid-column:1/-1;grid-row:auto;min-height:400px}.highlight-card:last-child{grid-column:auto}.featured-player{height:400px}}
@media(max-width:767px){.club-hero{min-height:760px}.club-hero-copy{padding-bottom:180px}.hero-announcement{left:15px;right:15px;bottom:30px}.quick-centre-grid,.home-schedule-grid,.social-newsletter-grid,.team-pathways,.featured-player-grid{grid-template-columns:1fr}.quick-centre article{border-right:0;border-bottom:1px solid #e2e4e8}.home-fixtures-results,.home-highlights,.featured-players-section{padding:60px 0}.home-schedule-grid article{grid-template-columns:1fr}.highlight-grid{grid-template-columns:1fr}.highlight-card,.highlight-card:first-child,.highlight-card:last-child{grid-column:auto;min-height:290px}.featured-player{height:460px}.club-partners-carousel{max-width:310px}.social-newsletter-grid{gap:50px}.social-newsletter form{flex-direction:column}}

/************************************/
/***  Club partner logo alignment ***/
/************************************/

.club-partners-carousel .club-sponsor-time img{
	transform: scale(2.1) translate(13%, 4%);
	transform-origin: center;
}

/* Keep the neon accent on dark panels, but use an accessible shade on light ones. */
.quick-centre article>span,
.quick-centre article strong b,
.club-section-heading:not(.light)>div>span{
	color: #0B5B33;
}

.club-news-copy>p,
.club-news-copy>a i{
	color: #0B5B33;
}

/************************************/
/***       Fixtures css        ***/
/************************************/

.match-centre{background:#f5f5f3;color:#111827}
.match-centre-hero{position:relative;padding:100px 0;background:radial-gradient(circle at 50% 0,rgba(239,255,0,.2),transparent 34%),linear-gradient(135deg,#050608,#17191d);color:#fff;overflow:hidden}
.match-centre-hero::before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:35px 35px;pointer-events:none}
.match-centre-hero .container{position:relative;z-index:1}
.match-centre-kicker{text-align:center;color:#EFFF00;font-size:13px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.match-centre-hero h1{text-align:center;color:#fff;font-size:clamp(48px,7vw,92px);text-transform:uppercase;margin-bottom:55px}
.featured-scorecard{display:grid;grid-template-columns:1fr minmax(220px,320px) 1fr;align-items:center;gap:40px;max-width:950px;margin:0 auto 45px}
.match-club{text-align:center}.match-club img{width:120px;height:120px;margin-bottom:18px}.match-club h2{color:#fff;font-size:24px;margin:0}
.match-score{text-align:center}.match-status{display:inline-block;padding:6px 12px;border:1px solid #EFFF00;border-radius:30px;color:#fff;font-size:11px;text-transform:uppercase;letter-spacing:.12em}.match-score strong{display:block;font-size:72px;line-height:1.15;margin:12px 0;color:#fff}.match-score strong small{font-size:.5em;color:#EFFF00}.match-score time{display:block;font-weight:700;text-transform:uppercase}.match-score p{color:#aeb2bb;font-size:13px;margin:7px 0 0}
.match-tabs{display:flex;justify-content:center;gap:10px;margin-bottom:28px}.match-tabs a{padding:9px 20px;border:1px solid #fff;border-radius:30px;color:#fff;font-size:13px;font-weight:700}.match-tabs a:hover,.match-tabs a.active{background:#EFFF00;border-color:#EFFF00;color:#fff}
.match-stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px;max-width:1000px;margin:auto}.match-stat-card{padding:22px 25px;background:#fff;border-radius:10px;color:#111827}.match-stat-heading{display:grid;grid-template-columns:55px 1fr 55px;align-items:center;text-align:center;margin-bottom:12px}.match-stat-heading strong:first-child{text-align:left;color:#EFFF00}.match-stat-heading strong:last-child{text-align:right}.match-stat-heading span{font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.match-stat-track{height:10px;background:#15171b;border-radius:30px;overflow:hidden}.match-stat-track .home{display:block;height:100%;background:#EFFF00;border-radius:30px}
.match-list-section,.standings-section{padding:90px 0}.match-section-heading{display:flex;align-items:end;justify-content:space-between;margin-bottom:28px}.match-section-heading span{color:#EFFF00;font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.match-section-heading h2{font-size:44px;margin:5px 0 0;text-transform:uppercase}.match-section-heading>a{color:#111827;border-bottom:2px solid #EFFF00;font-weight:700}.results-heading{margin-top:65px}
.match-list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.fixture-card{background:#fff;border-top:4px solid #EFFF00;border-radius:8px;padding:25px;box-shadow:0 10px 35px rgba(17,24,39,.07)}.fixture-card time{display:block;color:#70747c;font-size:12px;font-weight:700;text-transform:uppercase;margin-bottom:20px}.fixture-card>div{display:grid;grid-template-columns:1fr 65px 1fr;align-items:center;gap:10px}.fixture-card>div span{font-weight:700}.fixture-card>div span:last-child{text-align:right}.fixture-card>div strong{text-align:center;padding:7px;background:#111827;color:#fff;border-radius:4px}.fixture-card p{text-align:center;color:#70747c;font-size:12px;margin:18px 0 0}.result-card{border-top-color:#111827}.result-card>div strong{background:#EFFF00}
.standings-section{background:#fff}.standings-scroll{overflow-x:auto}.standings-table{width:100%;min-width:760px;border-collapse:collapse}.standings-table th{padding:13px 12px;border-bottom:2px solid #111827;font-size:11px;text-align:center;text-transform:uppercase}.standings-table th:nth-child(2){text-align:left}.standings-table td{padding:13px 12px;border-bottom:1px solid #d6d8dc;text-align:center;font-size:13px}.standings-table td:nth-child(2){display:flex;align-items:center;gap:10px;text-align:left}.standings-table td img{width:34px;height:34px}.standings-table tr.is-club{background:rgba(239,255,0,.08)}.standings-table tr.is-club td:first-child{border-left:4px solid #EFFF00}

@media(max-width:991px){.featured-scorecard{grid-template-columns:1fr 180px 1fr;gap:20px}.match-list-grid{grid-template-columns:1fr}.match-stats-grid{grid-template-columns:1fr}}
@media(max-width:767px){.match-centre-hero{padding:60px 0}.match-centre-hero h1{margin-bottom:35px}.featured-scorecard{grid-template-columns:1fr 1fr}.match-score{grid-column:1/-1;grid-row:1}.match-club img{width:85px;height:85px}.match-club h2{font-size:17px}.match-score strong{font-size:54px}.match-stats-grid{gap:10px}.match-stat-card{padding:18px 15px}.match-list-section,.standings-section{padding:55px 0}.match-section-heading h2{font-size:34px}.match-section-heading>a{display:none}.fixture-card>div{grid-template-columns:1fr 55px 1fr;font-size:13px}}

/************************************/
/*** 	 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;
}

/************************************/
/*** 	  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){
	body.mobile-nav-open{
		overflow: hidden;
	}

	header.main-header,
	header.main-header .header-sticky{
		z-index: 1000;
	}

	header.main-header .header-sticky.hide{
		transform: none;
	}
    
	.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{
		width: 70px;
		height: 70px;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.navbar-toggle{
		display: block;
		position: relative;
		z-index: 1003;
		transition: opacity .2s ease;
	}

	body.mobile-nav-open .navbar-toggle{
		opacity: 0;
		pointer-events: none;
	}

	.mobile-menu-backdrop{
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1001;
		background: rgba(1, 14, 8, .68);
		backdrop-filter: blur(3px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s ease, visibility .3s ease;
	}

	.responsive-menu{
		display: flex;
		flex-direction: column;
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 1002;
		width: min(88vw, 380px);
		height: 100vh;
		height: 100dvh;
		padding: 0 0 max(24px, env(safe-area-inset-bottom));
		background: #052e1b;
		box-shadow: 20px 0 55px rgba(0, 0, 0, .3);
		transform: translate3d(-105%, 0, 0);
		visibility: hidden;
		transition: transform .36s cubic-bezier(.22, 1, .36, 1), visibility .36s;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	body.mobile-nav-open .responsive-menu{
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}

	body.mobile-nav-open .mobile-menu-backdrop{
		opacity: 1;
		visibility: visible;
	}

	.mobile-menu-header{
		display: flex;
		order: -1;
		align-items: center;
		justify-content: space-between;
		gap: 15px;
		min-height: 104px;
		padding: max(16px, env(safe-area-inset-top)) 20px 16px;
		border-bottom: 1px solid rgba(255,255,255,.12);
		background: #031f12;
	}

	.mobile-menu-header > a{
		display: flex;
		align-items: center;
		gap: 12px;
		min-width: 0;
		color: #fff;
		font-family: var(--accent-font);
		font-size: 20px;
		line-height: 1;
		text-transform: uppercase;
	}

	.mobile-menu-header img{
		flex: 0 0 auto;
		width: 58px;
		height: 58px;
		border-radius: 50%;
		object-fit: cover;
	}

	.mobile-menu-header span{
		display: block;
	}

	.mobile-menu-header small{
		display: block;
		margin-bottom: 5px;
		color: var(--accent-color);
		font-family: var(--default-font);
		font-size: 9px;
		font-weight: 800;
		letter-spacing: .14em;
	}

	.mobile-menu-close{
		flex: 0 0 auto;
		width: 40px;
		height: 40px;
		border: 1px solid rgba(255,255,255,.2);
		border-radius: 50%;
		background: rgba(255,255,255,.08);
		color: #fff;
		font-size: 18px;
	}

	.responsive-menu .slicknav_menu{
		position: relative;
		width: 100%;
		padding: 14px 0 30px;
		background: transparent;
	}

	.responsive-menu .slicknav_nav{
		display: block !important;
		margin: 0;
	}

	.responsive-menu .slicknav_nav > li{
		border-bottom: 1px solid rgba(255,255,255,.08);
	}

	.responsive-menu .slicknav_nav .slicknav_row,
	.responsive-menu .slicknav_nav li a{
		display: flex;
		align-items: center;
		min-height: 54px;
		padding: 12px 24px;
		font-size: 20px;
		letter-spacing: .04em;
		text-transform: uppercase;
	}

	.responsive-menu .slicknav_nav li a.active{
		color: var(--accent-color);
	}

	.responsive-menu .slicknav_nav ul{
		padding: 3px 0 10px;
		background: rgba(0,0,0,.14);
	}

	.responsive-menu .slicknav_nav ul li a{
		min-height: 42px;
		padding: 9px 24px 9px 38px;
		font-family: var(--default-font);
		font-size: 13px;
		font-weight: 700;
		letter-spacing: .02em;
		text-transform: none;
	}

	.responsive-menu .slicknav_arrow:after{
		right: 24px;
	}

	.standings-scroll{
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.standings-table{
		min-width: 680px;
	}

	.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{
		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: 575px){
	.club-topbar{
		display: none;
	}

	.navbar{
		padding: 10px 0;
	}

	.navbar-brand img{
		width: 60px;
		height: 60px;
	}

	.slicknav_btn{
		width: 42px;
		height: 42px;
	}

	.container{
		--bs-gutter-x: 30px;
	}

	.page-gallery-box > [class*='col-']{
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce){
	.responsive-menu,
	.mobile-menu-backdrop{
		transition-duration: .01ms !important;
	}
}

@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: 60%;
	}

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

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