/******************************************************************
  Template Name: Gym
  Description:  Gym Fitness HTML Template
  Author: Colorlib
  Author URI: https://colorlib.com
  Version: 1.0
  Created: Colorlib
******************************************************************/

/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Service Section
6.  Class Section
7.  Price Plan Section
8.  Trainer Section
9.  Contact
10.  Footer Style

-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Muli", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Oswald", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	font-family: "Muli", sans-serif;
	color: #a9a9a9;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 45px;
	text-align: center;
}

.section-title span {
	font-size: 16px;
	color: #FFC107;
	text-transform: uppercase;
	font-weight: 700;
}

.section-title h2 {
	color: #ffffff;
	font-size: 32px;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 8px;
}

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

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 17px 30px 16px;
	color: #ffffff;
	background: #FFC107;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
}

.primary-btn.btn-normal {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.primary-btn.btn-normal:hover {
	background: #FF8F00;
	border-color: #FF8F00;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header-section {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0 15px;
	padding-top: 55px;
	z-index: 99;
}

.logo a {
	display: inline-block;
}

.nav-menu {
	text-align: center;
}

.nav-menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 32px;
	position: relative;
	z-index: 1;
}

.nav-menu ul li .dropdown {
	position: absolute;
	left: -30px;
	top: 58px;
	width: 180px;
	background: #252525;
	z-index: 99;
	text-align: left;
	padding: 13px 0 20px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-menu ul li .dropdown li {
	margin-right: 0;
	display: block;
}

.nav-menu ul li .dropdown li a {
	display: block;
	text-transform: none;
	padding: 6px 0 6px 30px;
	font-weight: 400;
}

.nav-menu ul li .dropdown li a:after {
	display: none;
}

.nav-menu ul li:last-child {
	margin-right: 0;
}

.nav-menu ul li.active>a {
	color: #FFC107;
}

.nav-menu ul li.active>a:after {
	opacity: 1;
}

.nav-menu ul li:hover>a {
	color: #FF8F00;
}

.nav-menu ul li:hover>a:after {
	opacity: 1;
}

.nav-menu ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.nav-menu ul li a {
	color: #ffffff;
	display: block;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: "Oswald", sans-serif;
	padding: 10px 0px;
	position: relative;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-menu ul li a:after {
	position: absolute;
	left: 0;
	top: 22px;
	height: 1px;
	width: 100%;
	background: #FFC107;
	content: "";
	-webkit-transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	transform: rotate(-20deg);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.top-option {
	text-align: right;
	padding: 9px 0;
}

.top-option .to-search {
	display: inline-block;
	padding-right: 20px;
	position: relative;
}

.top-option .to-search:after {
	position: absolute;
	right: 0;
	top: 5px;
	height: 15px;
	width: 1px;
	background: rgba(255, 255, 255, 0.3);
	content: "";
}

.top-option .to-search i {
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
}

.top-option .to-social {
	display: inline-block;
}

.top-option .to-social a {
	display: inline-block;
	color: #ffffff;
	font-size: 16px;
	margin-left: 15px;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas-open {
	display: none;
}

/*---------------------
  Hero Section
-----------------------*/

.hs-slider.owl-carousel .owl-item.active .hs-item .hi-text span {
	position: relative;
	top: 0;
	-webkit-transition: all 0.2s ease 0.2s;
	-o-transition: all 0.2s ease 0.2s;
	transition: all 0.2s ease 0.2s;
	opacity: 1;
}

.hs-slider.owl-carousel .owl-item.active .hs-item .hi-text h1 {
	position: relative;
	top: 0;
	-webkit-transition: all 0.4s ease 0.4s;
	-o-transition: all 0.4s ease 0.4s;
	transition: all 0.4s ease 0.4s;
	opacity: 1;
}

.hs-slider.owl-carousel .owl-item.active .hs-item .hi-text .primary-btn {
	position: relative;
	top: 0;
	-webkit-transition: all 0.6s ease 0.6s;
	-o-transition: all 0.6s ease 0.6s;
	transition: all 0.6s ease 0.6s;
	opacity: 1;
}

.hs-slider.owl-carousel .owl-nav button {
	height: 46px;
	width: 46px;
	color: #a9a9a9;
	background: rgba(255, 255, 255, 0.1);
	line-height: 46px;
	text-align: center;
	position: absolute;
	font-size: 24px;
	left: 30px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	-ms-transform: translateY(-23px);
	transform: translateY(-23px);
}

.hs-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 30px;
}

.hs-slider .hs-item {
	height: 1040px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: center;
	align-content: center;
	padding-top: 355px;
}

.hs-slider .hs-item .hi-text span {
	display: block;
	font-size: 18px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 6px;
	margin-bottom: 18px;
	position: relative;
	top: 100px;
	opacity: 0;
}

.hs-slider .hs-item .hi-text h1 {
	font-size: 80px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 90px;
	margin-bottom: 42px;
	position: relative;
	top: 100px;
	opacity: 0;
}

.hs-slider .hs-item .hi-text h1 strong {
	color: #FFC107;
}

.hs-slider .hs-item .hi-text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
}

/*---------------------
  ChoseUs Section
-----------------------*/

.choseus-section {
	background: #1A1A1A;
	padding-bottom: 70px;
}

.cs-item {
	text-align: center;
	margin-bottom: 30px;
}

.cs-item:hover span {
	background: #FF8F00;
	color: #ffffff;
}

.cs-item span {
	height: 90px;
	width: 90px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: inline-block;
	color: #FFC107;
	line-height: 90px;
	text-align: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.cs-item h4 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	margin-top: 24px;
	margin-bottom: 16px;
}

/*---------------------
  Classes Section
-----------------------*/

.classes-section {
	background: #121212;
	padding-bottom: 80px;
}

.classes-section .section-title {
	margin-bottom: 35px;
}

.class-item {
	overflow: hidden;
	margin-bottom: 30px;
}

.class-item .ci-pic img {
	min-width: 100%;
	height: 260px;
	object-fit: cover;
	object-position: center;
}

.class-item .ci-text {
	background: #1A1A1A;
	position: relative;
	padding: 10px 30px 26px 30px;
	z-index: 1;
}

.class-item .ci-text:after {
	position: absolute;
	left: -5px;
	top: -44px;
	height: 100px;
	width: 600px;
	border-top: 4px solid #464646;
	background: #1A1A1A;
	content: "";
	-webkit-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	transform: rotate(-5deg);
	z-index: -1;
}

.class-item .ci-text span {
	color: #FFC107;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 700;
}

.class-item .ci-text h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 4px;
}

.class-item .ci-text h4 {
	font-size: 26px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 4px;
}

.class-item .ci-text a {
	display: inline-block;
	width: 46px;
	height: 46px;
	background: rgba(255, 255, 255, 0.1);
	line-height: 46px;
	text-align: center;
	font-size: 24px;
	color: #ffffff;
	position: absolute;
	right: 30px;
	bottom: 26px;
}

/*---------------------
  Banner Section
-----------------------*/

.banner-section {
	height: 550px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.bs-text.service-banner .bt-tips {
	margin-bottom: 35px;
}

.bs-text h2 {
	font-size: 48px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.bs-text .bt-tips {
	font-size: 20px;
	color: #c4c4c4;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 45px;
}

.bs-text .primary-btn {
	background: transparent;
	border: 2px solid #FFC107;
}

.bs-text .play-btn {
	display: inline-block;
	height: 70px;
	width: 70px;
	background: #FFC107;
	border-radius: 50%;
	line-height: 70px;
	text-align: center;
	font-size: 36px;
	color: #ffffff;
}

/*---------------------
  Pricing Section
-----------------------*/

.pricing-section {
	background: #121212;
}

.pricing-section .section-title {
	margin-bottom: 56px;
}

.ps-item {
	text-align: center;
	padding: 40px 30px 52px;
	border: 1px solid #464646;
	-webkit-transform: skewY(-4deg);
	-ms-transform: skewY(-4deg);
	transform: skewY(-4deg);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	margin-bottom: 30px;
	position: relative;
}

.ps-item:hover {
	background: #ffffff;
	border-color: #ffffff;
}

.ps-item:hover h3 {
	color: #111111;
}

.ps-item:hover .pi-price span {
	color: #444444;
}

.ps-item:hover ul li {
	color: #111111;
	font-weight: 600;
}

.ps-item:hover .primary-btn.pricing-btn {
	background: #FFC107;
}

.ps-item:hover .thumb-icon {
	opacity: 1;
	visibility: visible;
}

.ps-item h3 {
	font-size: 28px;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 16px;
	-webkit-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	transform: skewY(4deg);
}

.ps-item .pi-price {
	margin-bottom: 30px;
	-webkit-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	transform: skewY(4deg);
}

.ps-item .pi-price h2 {
	font-size: 60px;
	color: #FFC107;
	font-weight: 600;
}

.ps-item .pi-price span {
	color: #c4c4c4;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
}

.ps-item ul {
	margin-bottom: 40px;
	-webkit-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	transform: skewY(4deg);
}

.ps-item ul li {
	font-size: 14px;
	color: #c4c4c4;
	line-height: 32px;
	list-style: none;
}

.ps-item .primary-btn.pricing-btn {
	display: block;
	background: #333333;
	-webkit-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	transform: skewY(4deg);
}

.ps-item .thumb-icon {
	font-size: 48px;
	color: #FFC107;
	position: absolute;
	left: 50px;
	bottom: 120px;
	-webkit-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	transform: skewY(4deg);
	opacity: 0;
	visibility: hidden;
}

/*---------------------
  Gallery Section
-----------------------*/

.gallery-section {
	background: #121212;
	overflow: hidden;
}

.gallery-section.gallery-page {
	padding-top: 10px;
}

.grid-sizer {
	width: calc(25% - 10px);
}

.gallery {
	margin-right: -10px;
}

.gallery .gs-item {
	height: 472px;
	width: calc(25% - 10px);
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.gallery .gs-item:hover .thumb-icon {
	opacity: 1;
	visibility: visible;
}

.gallery .gs-item .thumb-icon {
	font-size: 48px;
	color: #FFC107;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.gallery .gs-item.grid-wide {
	width: calc(50% - 10px);
}

/*---------------------
  Team Section
-----------------------*/

.team-section {
	background: #121212;
}

.team-section.team-page {
	padding-bottom: 70px;
}

.team-section.team-page .ts-item {
	margin-bottom: 30px;
}

.team-section.team-page .ts-item:hover .ts_text {
	bottom: -30px;
}

.team-section.team-page .ts-item .tt_social {
	-webkit-transform: skewY(5deg);
	-ms-transform: skewY(5deg);
	transform: skewY(5deg);
	margin-top: 13px;
}

.team-section.team-page .ts-item .tt_social a {
	font-size: 14px;
	color: #c4c4c4;
	margin-right: 10px;
}

.team-section.team-page .ts-item .tt_social a:last-child {
	margin-right: 0;
}

.team-title .section-title {
	text-align: left;
	float: left;
}

.primary-btn.appoinment-btn {
	background: transparent;
	border: 2px solid #FFC107;
	float: right;
	margin-top: 10px;
}

.ts-slider .col-lg-4 {
	max-width: 100%;
}

.ts-slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.ts-slider.owl-carousel .owl-dots button {
	height: 4px;
	width: 20px;
	background: #5c5c5c;
	margin-right: 15px;
	-webkit-transform: skewY(-5deg);
	-ms-transform: skewY(-5deg);
	transform: skewY(-5deg);
}

.ts-slider.owl-carousel .owl-dots button.active {
	background: #FFC107;
}

.ts-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.ts-item {
	height: 450px;
	position: relative;
	overflow: hidden;
}

.ts-item:hover .ts_text {
	bottom: -35px;
}

.ts-item .ts_text {
	padding: 40px 0 60px;
	text-align: center;
	background: #1A1A1A;
	border-top: 4px solid #464646;
	-webkit-transform: skewY(-5deg);
	-ms-transform: skewY(-5deg);
	transform: skewY(-5deg);
	position: absolute;
	left: 0;
	bottom: -250px;
	width: 100%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ts-item .ts_text h4 {
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 14px;
	-webkit-transform: skewY(5deg);
	-ms-transform: skewY(5deg);
	transform: skewY(5deg);
}

.ts-item .ts_text span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #aaaaaa;
	text-transform: uppercase;
	-webkit-transform: skewY(5deg);
	-ms-transform: skewY(5deg);
	transform: skewY(5deg);
}

/*---------------------
  Get Touch Section
-----------------------*/

.gettouch-section {
	background: #1A1A1A;
	padding: 30px 0 15px;
}

.gt-text {
	overflow: hidden;
	margin-bottom: 30px;
}

.gt-text i {
	font-size: 30px;
	color: #ffffff;
	display: inline-block;
	height: 65px;
	width: 65px;
	background: #FFC107;
	border-radius: 50%;
	line-height: 65px;
	text-align: center;
	float: left;
	margin-right: 20px;
}

.gt-text p {
	overflow: hidden;
	color: #ffffff;
	margin-bottom: 0;
	padding-top: 10px;
}

.gt-text ul {
	overflow: hidden;
	padding-top: 20px;
}

.gt-text ul li {
	list-style: none;
	font-size: 14px;
	color: #ffffff;
	margin-right: 25px;
	display: inline-block;
	position: relative;
}

.gt-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "|";
	color: #545454;
}

.gt-text ul li:last-child {
	margin-right: 0;
}

.gt-text ul li:last-child:after {
	display: none;
}

.gt-text.email p {
	padding-top: 20px;
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
	background: #000000;
	padding-top: 50px;
}

.fs-about {
	margin-bottom: 30px;
}

.fs-about .fa-logo {
	margin-bottom: 30px;
}

.fs-about .fa-logo a {
	display: inline-block;
}

.fs-about p {
	line-height: 26px;
	color: #c4c4c4;
}

.fs-about .fa-social a {
	font-size: 14px;
	color: #c4c4c4;
	margin-right: 10px;
}

.fs-about .fa-social a:last-child {
	margin-right: 0;
}

.fs-widget {
	margin-bottom: 30px;
}

.fs-widget h4 {
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 18px;
}

.fs-widget ul li {
	list-style: none;
}

.fs-widget ul li a {
	font-size: 14px;
	color: #c4c4c4;
	line-height: 30px;
}

.fs-widget .fw-recent {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #1a1a1a;
}

.fs-widget .fw-recent:last-child {
	padding-bottom: 0;
	border: none;
}

.fs-widget .fw-recent h6 {
	margin-bottom: 6px;
}

.fs-widget .fw-recent h6 a {
	color: #c4c4c4;
	letter-spacing: 0.5px;
}

.fs-widget .fw-recent ul li {
	font-size: 12px;
	color: #4d4d4d;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.fs-widget .fw-recent ul li:last-child:after {
	display: none;
}

.fs-widget .fw-recent ul li:after {
	position: absolute;
	right: -16px;
	top: 0;
	content: "|";
}

.copyright-text {
	font-size: 14px;
	color: #c4c4c4;
	letter-spacing: 0.5px;
	border-top: 1px solid #1a1a1a;
	padding: 25px 0;
	margin-top: 15px;
}

.copyright-text a,
.copyright-text i {
	color: #FFC107;
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb Section
-----------------------*/

.breadcrumb-section {
	height: 500px;
	padding-top: 230px;
}

.breadcrumb-text h2 {
	font-size: 60px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.breadcrumb-text .bt-option a {
	font-size: 18px;
	color: #ffffff;
	font-weight: 700;
	display: inline-block;
	position: relative;
	margin-right: 20px;
}

.breadcrumb-text .bt-option a:after {
	position: absolute;
	right: -14px;
	top: 6px;
	font-family: "FontAwesome";
	content: "";
	font-size: 13px;
	font-weight: 400;
}

.breadcrumb-text .bt-option span {
	font-size: 18px;
	color: #FFC107;
	font-weight: 700;
}

/*---------------------
  About Us Section
-----------------------*/

.about-video {
	height: 640px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.about-video .play-btn {
	display: inline-block;
	height: 70px;
	width: 70px;
	background: #FFC107;
	border-radius: 50%;
	line-height: 70px;
	text-align: center;
	font-size: 36px;
	color: #ffffff;
}

.about-text {
	background: #000000;
	height: 640px;
	padding: 120px 70px 0 70px;
}

.about-text .section-title {
	text-align: left;
	margin-bottom: 30px;
}

.about-text .at-desc {
	margin-bottom: 27px;
}

.about-text .at-desc p {
	color: #c4c4c4;
}

.about-text .about-bar .ab-item {
	margin-bottom: 34px;
}

.about-text .about-bar .ab-item p {
	color: #ffffff;
	margin-bottom: 13px;
}

.about-text .about-bar .ab-item .barfiller {
	background: #2d2d2d;
	height: 5px;
	border: none;
	margin-bottom: 0;
}

.about-text .about-bar .ab-item .barfiller .tip {
	margin-top: 0;
	padding: 0;
	font-size: 14px;
	color: #ffffff;
	background: transparent;
	position: initial !important;
	float: right;
	margin-top: -40px;
}

.about-text .about-bar .ab-item .barfiller .tip:after {
	display: none;
}

/*---------------------
  Testimonial Section
-----------------------*/

.testimonial-section {
	background: #121212;
}

.ts_slider.owl-carousel .owl-item img {
	display: inline-block;
}

.ts_slider.owl-carousel .owl-nav button {
	height: 46px;
	width: 46px;
	color: #a9a9a9;
	background: rgba(255, 255, 255, 0.1);
	line-height: 46px;
	text-align: center;
	font-size: 24px;
	position: absolute;
	left: 30px;
	top: 50%;
	-webkit-transform: translateY(-23px);
	-ms-transform: translateY(-23px);
	transform: translateY(-23px);
}

.ts_slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 30px;
}

.ts_slider .ts_item .ti_pic {
	margin-bottom: 32px;
}

.ts_slider .ts_item .ti_pic img {
	height: 200px;
	width: 200px;
	border-radius: 50%;
}

.ts_slider .ts_item .ti_text p {
	color: #fefefe;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.ts_slider .ts_item .ti_text h5 {
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.ts_slider .ts_item .ti_text .tt-rating i {
	font-size: 12px;
	color: #d49d09;
}

/*---------------------
  Services Section
-----------------------*/

.services-section {
	background: #121212;
}

.ss-pic img {
	height: 100%;
	min-width: 100%;
}

.ss-text {
	background: #252525;
	padding: 72px 30px;
	height: 293px;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ss-text:hover {
	background: #363636;
}

.ss-text:hover a {
	color: #FFC107;
}

.ss-text:hover:after {
	background: #363636;
}

.ss-text:after {
	position: absolute;
	left: -15px;
	top: 50%;
	height: 20px;
	width: 20px;
	background: #252525;
	content: "";
	-webkit-transform: rotate(45deg) translateY(-10px);
	-ms-transform: rotate(45deg) translateY(-10px);
	transform: rotate(45deg) translateY(-10px);
	z-index: -1;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.ss-text.second-row:after {
	left: auto;
	right: 0;
}

.ss-text h4 {
	font-size: 22px;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 10px;
}

.ss-text p {
	margin-bottom: 11px;
}

.ss-text a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

/*---------------------
  Class Timetable Section
-----------------------*/

.class-timetable-section {
	background: #121212;
}

.class-timetable-section.class-details-timetable {
	padding-top: 0;
}

.class-timetable-section .section-title {
	text-align: left;
}

.class-details-timetable_title {
	margin-bottom: 35px;
}

.class-details-timetable_title h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
}

.table-controls {
	text-align: right;
	margin-top: 14px;
	margin-bottom: 50px;
}

.table-controls ul {
	background: #000000;
	padding: 12px 30px 15px;
	display: inline-block;
}

.table-controls ul li {
	list-style: none;
	font-size: 14px;
	color: #aaaaaa;
	list-style: none;
	display: inline-block;
	margin-right: 35px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
	position: relative;
}

.table-controls ul li:after {
	position: absolute;
	right: -22px;
	top: 0;
	content: "/";
}

.table-controls ul li.active {
	color: #ffffff;
}

.table-controls ul li.active:after {
	color: #aaaaaa;
}

.table-controls ul li:last-child {
	margin-right: 0;
}

.table-controls ul li:last-child:after {
	display: none;
}

.class-timetable .ts-meta h5,
.class-timetable .ts-meta span {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.class-timetable.filtering .ts-meta h5,
.class-timetable.filtering .ts-meta span {
	opacity: 0;
}

.class-timetable.filtering .ts-meta.show h5,
.class-timetable.filtering .ts-meta.show span {
	opacity: 1;
}

.class-timetable.details-timetable td h5 {
	color: #ffffff1a;
}

.class-timetable.details-timetable td span {
	color: #363636;
}

.class-timetable.details-timetable td.hover-dp h5 {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.class-timetable.details-timetable td.hover-dp span {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.class-timetable.details-timetable td.hover-dp:hover h5 {
	color: #ffffff;
}

.class-timetable.details-timetable td.hover-dp:hover span {
	color: #a9a9a9;
}

.class-timetable.details-timetable td.dark-bg {
	background: #1A1A1A;
}

.class-timetable table {
	border: 1px solid #363636;
	text-align: center;
}

.class-timetable table thead {
	border-bottom: 1px solid #363636;
}

.class-timetable table thead tr th {
	font-size: 14px;
	color: #ffffff;
	background: #FFC107;
	border-right: 1px solid #363636;
	padding: 15px 0;
	font-weight: 400;
}

.class-timetable table tbody tr td {
	width: 146px;
	padding: 35px 0;
}

.class-timetable table tbody tr td.class-time {
	font-size: 12px;
	color: #FFC107;
	background: #000000;
	border: 1px solid #363636;
}

.class-timetable table tbody tr td.dark-bg {
	background: #090909;
}

.class-timetable table tbody tr td.hover-bg {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.class-timetable table tbody tr td.hover-bg:hover {
	background: #FFC107;
}

.class-timetable table tbody tr td.blank-td {
	position: relative;
	overflow: hidden;
}

.class-timetable table tbody tr td.blank-td:after {
	position: absolute;
	left: -47px;
	top: 59px;
	width: 237px;
	height: 1px;
	background: #363636;
	content: "";
	-webkit-transform: rotate(-40deg);
	-ms-transform: rotate(-40deg);
	transform: rotate(-40deg);
}

.class-timetable table tbody tr td h5 {
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.class-timetable table tbody tr td span {
	display: block;
	font-size: 12px;
	color: #a9a9a9;
}

/*---------------------
  Class Details Section
-----------------------*/

.class-details-section {
	background: #121212;
	padding-bottom: 60px;
}

.class-details-text .cd-pic {
	margin-bottom: 45px;
}

.class-details-text .cd-pic img {
	min-width: 100%;
}

.class-details-text .cd-text {
	margin-bottom: 33px;
}

.class-details-text .cd-text .cd-single-item h3 {
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.class-details-text .cd-text .cd-single-item p {
	color: #c4c4c4;
}

.class-details-text .cd-trainer .cd-trainer-pic img {
	min-width: 100%;
}

.class-details-text .cd-trainer .cd-trainer-text {
	position: relative;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-title {
	margin-bottom: 18px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-title h4 {
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 6px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-title span {
	font-size: 12px;
	color: #aaaaaa;
	text-transform: uppercase;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-social {
	position: absolute;
	right: 0;
	top: 20px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-social a {
	display: inline-block;
	font-size: 14px;
	color: #c4c4c4;
	margin-right: 9px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-social a:last-child {
	margin-right: 0;
}

.class-details-text .cd-trainer .cd-trainer-text p {
	color: #c4c4c4;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info {
	margin-top: 28px;
	margin-bottom: 26px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info li {
	font-size: 14px;
	color: #c4c4c4;
	list-style: none;
	padding-bottom: 8px;
	border-bottom: 1px solid #252525;
	margin-bottom: 10px;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.class-details-text .cd-trainer .cd-trainer-text .trainer-info li span {
	color: #ffffff;
	font-weight: 700;
	width: 150px;
	display: inline-block;
}

.sidebar-option {
	padding-left: 40px;
}

.sidebar-option .so-categories {
	margin-bottom: 40px;
}

.sidebar-option .so-categories .title {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.sidebar-option .so-categories ul li {
	list-style: none;
}

.sidebar-option .so-categories ul li:hover a {
	color: #FFC107;
}

.sidebar-option .so-categories ul li:hover a span {
	color: #ffffff;
}

.sidebar-option .so-categories ul li a {
	font-size: 14px;
	color: #c4c4c4;
	line-height: 40px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.sidebar-option .so-categories ul li a span {
	font-size: 12px;
	float: right;
}

.sidebar-option .so-latest {
	margin-bottom: 60px;
}

.sidebar-option .so-latest .title {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.sidebar-option .so-latest .latest-large {
	height: 200px;
	position: relative;
	margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-large .ll-text {
	position: absolute;
	left: 0;
	bottom: 18px;
	width: 100%;
	padding: 0 25px;
}

.sidebar-option .so-latest .latest-large .ll-text h5 a {
	color: #ffffff;
	font-weight: 600;
	line-height: 23px;
}

.sidebar-option .so-latest .latest-large .ll-text ul li {
	list-style: none;
	font-size: 12px;
	color: #888888;
	position: relative;
	display: inline-block;
	margin-right: 25px;
}

.sidebar-option .so-latest .latest-large .ll-text ul li:last-child {
	margin-right: 0;
}

.sidebar-option .so-latest .latest-large .ll-text ul li:last-child:after {
	display: none;
}

.sidebar-option .so-latest .latest-large .ll-text ul li:after {
	position: absolute;
	right: -16px;
	top: 0;
	content: "|";
}

.sidebar-option .so-latest .latest-item {
	overflow: hidden;
	margin-bottom: 30px;
}

.sidebar-option .so-latest .latest-item:last-child {
	margin-bottom: 0;
}

.sidebar-option .so-latest .latest-item .li-pic {
	float: left;
	margin-right: 20px;
}

.sidebar-option .so-latest .latest-item .li-text {
	overflow: hidden;
}

.sidebar-option .so-latest .latest-item .li-text h6 a {
	font-size: 15px;
	color: #ffffff;
	line-height: 21px;
}

.sidebar-option .so-latest .latest-item .li-text .li-time {
	display: inline-block;
	font-size: 12px;
	color: #888888;
}

.sidebar-option .so-banner {
	height: 300px;
	position: relative;
}

.sidebar-option .so-banner h5 {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	text-transform: uppercase;
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 100%;
	padding: 0 30px;
}

.sidebar-option .so-tags .title {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.sidebar-option .so-tags a {
	display: inline-block;
	font-size: 14px;
	color: #c4c4c4;
	padding: 10px 15px;
	background: #252525;
	margin-right: 5px;
	margin-bottom: 10px;
}

/*------------------------
  Bmi Calculator Section
-------------------------*/

.bmi-calculator-section {
	background: #121212;
}

.section-title.chart-title {
	text-align: left;
}

.chart-table table {
	border: 1px solid #363636;
	width: 100%;
}

.chart-table table thead {
	border-bottom: 1px solid #363636;
}

.chart-table table thead tr th {
	background: #060606;
	font-size: 14px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	border-right: 1px solid #363636;
	padding: 14px 0 11px 50px;
}

.chart-table table tbody tr:nth-child(even) {
	background: #111111;
}

.chart-table table tbody tr td {
	font-size: 14px;
	color: #c4c4c4;
	border-right: 1px solid #363636;
	padding: 17px 0 17px 50px;
}

.chart-table table tbody tr td.point {
	width: 200px;
}

.section-title.chart-calculate-title {
	text-align: left;
}

.chart-calculate-form p {
	color: #c4c4c4;
	margin-bottom: 24px;
}

.chart-calculate-form form input {
	font-size: 14px;
	color: #c4c4c4;
	width: 100%;
	height: 50px;
	border: 1px solid #363636;
	padding-left: 20px;
	padding-right: 5px;
	background: transparent;
	margin-bottom: 20px;
}

.chart-calculate-form form input::-webkit-input-placeholder {
	color: #c4c4c4;
}

.chart-calculate-form form input::-moz-placeholder {
	color: #c4c4c4;
}

.chart-calculate-form form input:-ms-input-placeholder {
	color: #c4c4c4;
}

.chart-calculate-form form input::-ms-input-placeholder {
	color: #c4c4c4;
}

.chart-calculate-form form input::placeholder {
	color: #c4c4c4;
}

.chart-calculate-form form button {
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	width: 100%;
	border: none;
	padding: 15px 0;
	background: #FFC107;
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section {
	background: #121212;
}

.blog-section .sidebar-option {
	padding-left: 70px;
}

.blog-item {
	margin-bottom: 40px;
}

.blog-item .bi-pic {
	float: left;
}

.blog-item .bi-pic img {
	width: 360px;
	height: 240px;
	min-width: 100%;
}

.blog-item .bi-text {
	border: 1px solid #363636;
	overflow: hidden;
	height: 240px;
	padding: 32px 30px 0 30px;
}

.blog-item .bi-text h5 {
	margin-bottom: 10px;
}

.blog-item .bi-text h5 a {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	line-height: 28px;
}

.blog-item .bi-text ul {
	margin-bottom: 18px;
}

.blog-item .bi-text ul li {
	font-size: 12px;
	color: #888888;
	display: inline-block;
	list-style: none;
	margin-right: 25px;
	position: relative;
}

.blog-item .bi-text ul li:after {
	position: absolute;
	right: -15px;
	top: 0;
	content: "|";
}

.blog-item .bi-text ul li:last-child {
	margin-right: 0;
}

.blog-item .bi-text ul li:last-child:after {
	display: none;
}

.blog-item .bi-text p {
	color: #c4c4c4;
	line-height: 22px;
	margin-bottom: 0;
}

.blog-pagination {
	padding-top: 10px;
}

.blog-pagination a {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	text-transform: uppercase;
	padding: 10px 20px;
	font-weight: 500;
	margin-right: 15px;
	background: #252525;
	font-family: "Oswald", sans-serif;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.blog-pagination a:last-child {
	margin-right: 0;
}

.blog-pagination a:hover {
	background: #555555;
}

/*--------------------------
  Blog Detils Hero Section
--------------------------*/

.blog-details-hero {
	height: 900px;
	padding-top: 365px;
}

.bh-text {
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	padding: 40px 50px 34px 50px;
}

.bh-text h3 {
	color: #ffffff;
	font-weight: 600;
	line-height: 39px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.bh-text ul li {
	font-size: 12px;
	color: #888888;
	display: inline-block;
	list-style: none;
	margin-right: 25px;
	position: relative;
}

.bh-text ul li:after {
	position: absolute;
	right: -15px;
	top: 0;
	content: "|";
}

.bh-text ul li:last-child {
	margin-right: 0;
}

.bh-text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details Section
-----------------------*/

.blog-details-section {
	background: #121212;
	padding-top: 80px;
	overflow: hidden;
}

.blog-details-text .blog-details-title {
	text-align: center;
	margin-bottom: 32px;
}

.blog-details-text .blog-details-title p {
	color: #c4c4c4;
}

.blog-details-text .blog-details-title p:first-child {
	margin-bottom: 25px;
}

.blog-details-text .blog-details-title h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	padding-top: 5px;
	margin-bottom: 28px;
}

.blog-details-text .blog-details-pic {
	margin-right: -10px;
	overflow: hidden;
	margin-bottom: 22px;
}

.blog-details-text .blog-details-pic .blog-details-pic-item {
	width: calc(50% - 10px);
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.blog-details-text .blog-details-pic .blog-details-pic-item img {
	min-width: 100%;
}

.blog-details-text .blog-details-desc {
	text-align: center;
	margin-bottom: 60px;
}

.blog-details-text .blog-details-desc p {
	color: #c4c4c4;
}

.blog-details-text .blog-details-quote {
	text-align: center;
	border: 2px solid #363636;
	padding: 40px 22px 25px;
	position: relative;
	margin-bottom: 30px;
}

.blog-details-text .blog-details-quote .quote-icon {
	position: absolute;
	left: 50%;
	top: -26px;
	height: 55px;
	width: 55px;
	background: #121212;
	border: 2px solid #363636;
	line-height: 47px;
	text-align: center;
	border-radius: 50%;
	-webkit-transform: translateX(-27.5px);
	-ms-transform: translateX(-27.5px);
	transform: translateX(-27.5px);
}

.blog-details-text .blog-details-quote h5 {
	font-size: 20px;
	color: #ffffff;
	line-height: 30px;
	margin-bottom: 6px;
}

.blog-details-text .blog-details-quote span {
	font-size: 15px;
	color: #888888;
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
}

.blog-details-text .blog-details-more-desc {
	text-align: center;
	margin-bottom: 40px;
}

.blog-details-text .blog-details-more-desc p {
	color: #c4c4c4;
}

.blog-details-text .blog-details-more-desc p:first-child {
	margin-bottom: 25px;
}

.blog-details-text .blog-details-tag-share {
	text-align: center;
	margin-bottom: 100px;
}

.blog-details-text .blog-details-tag-share .tags {
	margin-bottom: 25px;
}

.blog-details-text .blog-details-tag-share .tags a {
	display: inline-block;
	font-size: 14px;
	color: #c4c4c4;
	padding: 10px 15px;
	background: #252525;
	margin-right: 5px;
	margin-bottom: 10px;
}

.blog-details-text .blog-details-tag-share .tags a:last-child {
	margin-right: 0;
}

.blog-details-text .blog-details-tag-share .share span {
	font-size: 14px;
	color: #c4c4c4;
	text-transform: uppercase;
	margin-right: 30px;
}

.blog-details-text .blog-details-tag-share .share a {
	font-size: 14px;
	color: #c4c4c4;
	margin-right: 15px;
}

.blog-details-text .blog-details-tag-share .share a:last-child {
	margin-right: 0;
}

.blog-details-text .blog-details-tag-share .share a i {
	color: #ffffff;
	margin-right: 5px;
}

.blog-details-text .blog-details-author {
	text-align: center;
	background: #1A1A1A;
	position: relative;
	padding: 70px 50px 35px 50px;
	margin-bottom: 55px;
}

.blog-details-text .blog-details-author .ba-pic {
	position: absolute;
	top: -45px;
	left: 50%;
	-webkit-transform: translateX(-45px);
	-ms-transform: translateX(-45px);
	transform: translateX(-45px);
}

.blog-details-text .blog-details-author .ba-pic img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
}

.blog-details-text .blog-details-author .ba-text h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.blog-details-text .blog-details-author .ba-text p {
	color: #c4c4c4;
}

.blog-details-text .blog-details-author .ba-text .bp-social a {
	font-size: 13px;
	color: #c4c4c4;
	margin-right: 10px;
}

.blog-details-text .blog-details-author .ba-text .bp-social a:last-child {
	margin-right: 0;
}

.blog-details-text .comment-option .co-title {
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.blog-details-text .comment-option .co-widget {
	position: absolute;
	right: 0;
	top: 5px;
}

.blog-details-text .comment-option .co-widget a {
	font-size: 14px;
	color: #c4c4c4;
	margin-left: 8px;
}

.blog-details-text .comment-option .co-item {
	position: relative;
	padding-left: 30px;
	margin-bottom: 35px;
}

.blog-details-text .comment-option .co-item.reply-comment {
	margin-left: 30px;
}

.blog-details-text .comment-option .co-item:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #363636;
	content: "";
}

.blog-details-text .comment-option .co-item .co-pic {
	overflow: hidden;
	margin-bottom: 12px;
}

.blog-details-text .comment-option .co-item .co-pic img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
}

.blog-details-text .comment-option .co-item .co-pic h5 {
	color: #ffffff;
	overflow: hidden;
	line-height: 30px;
}

.blog-details-text .comment-option .co-item .co-text p {
	color: #c4c4c4;
	margin-bottom: 0;
}

.leave-comment h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.leave-comment form input {
	font-size: 13px;
	color: #c4c4c4;
	width: 100%;
	height: 46px;
	border: 1px solid #363636;
	padding-left: 20px;
	padding-right: 5px;
	background: transparent;
	margin-bottom: 20px;
}

.leave-comment form input::-webkit-input-placeholder {
	color: #c4c4c4;
}

.leave-comment form input::-moz-placeholder {
	color: #c4c4c4;
}

.leave-comment form input:-ms-input-placeholder {
	color: #c4c4c4;
}

.leave-comment form input::-ms-input-placeholder {
	color: #c4c4c4;
}

.leave-comment form input::placeholder {
	color: #c4c4c4;
}

.leave-comment form textarea {
	font-size: 13px;
	color: #c4c4c4;
	width: 100%;
	height: 100px;
	border: 1px solid #363636;
	padding-left: 20px;
	padding-top: 12px;
	padding-right: 5px;
	background: transparent;
	margin-bottom: 14px;
	resize: none;
}

.leave-comment form textarea::-webkit-input-placeholder {
	color: #c4c4c4;
}

.leave-comment form textarea::-moz-placeholder {
	color: #c4c4c4;
}

.leave-comment form textarea:-ms-input-placeholder {
	color: #c4c4c4;
}

.leave-comment form textarea::-ms-input-placeholder {
	color: #c4c4c4;
}

.leave-comment form textarea::placeholder {
	color: #c4c4c4;
}

.leave-comment form button {
	font-size: 14px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	width: 100%;
	border: none;
	padding: 14px 0 12px;
	background: #FFC107;
}

/*---------------------
  Contact Section
-----------------------*/

.contact-section {
	background: #121212;
}

.section-title.contact-title {
	text-align: left;
	margin-bottom: 35px;
}

.contact-widget .cw-text {
	overflow: hidden;
	margin-bottom: 35px;
}

.contact-widget .cw-text i {
	font-size: 30px;
	color: #FFC107;
	display: inline-block;
	height: 65px;
	width: 65px;
	background: #363636;
	border-radius: 50%;
	line-height: 65px;
	text-align: center;
	float: left;
	margin-right: 20px;
}

.contact-widget .cw-text p {
	overflow: hidden;
	color: #c4c4c4;
	margin-bottom: 0;
	padding-top: 10px;
}

.contact-widget .cw-text ul {
	overflow: hidden;
	padding-top: 20px;
}

.contact-widget .cw-text ul li {
	list-style: none;
	font-size: 14px;
	color: #c4c4c4;
	margin-right: 25px;
	display: inline-block;
	position: relative;
}

.contact-widget .cw-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "|";
	color: #545454;
}

.contact-widget .cw-text ul li:last-child {
	margin-right: 0;
}

.contact-widget .cw-text ul li:last-child:after {
	display: none;
}

.contact-widget .cw-text.email p {
	padding-top: 20px;
}

.map {
	height: 550px;
	margin-top: 35px;
}

.map iframe {
	width: 100%;
}

/*---------------------
  404 Section
-----------------------*/

.section-404 {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.9);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.text-404 {
	text-align: center;
}

.text-404 h1 {
	font-size: 200px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.text-404 h3 {
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 20px;
}

.text-404 p {
	font-size: 15px;
	color: #c4c4c4;
	margin-bottom: 43px;
}

.text-404 .search-404 {
	position: relative;
	width: 470px;
	margin: 0 auto 35px;
}

.text-404 .search-404 input {
	font-size: 15px;
	color: #ffffffb3;
	height: 46px;
	width: 100%;
	background: #FFC107;
	border: none;
	padding-left: 20px;
}

.text-404 .search-404 input::-webkit-input-placeholder {
	color: #ffffffb3;
}

.text-404 .search-404 input::-moz-placeholder {
	color: #ffffffb3;
}

.text-404 .search-404 input:-ms-input-placeholder {
	color: #ffffffb3;
}

.text-404 .search-404 input::-ms-input-placeholder {
	color: #ffffffb3;
}

.text-404 .search-404 input::placeholder {
	color: #ffffffb3;
}

.text-404 .search-404 button {
	font-size: 16px;
	color: #ffffff;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	padding: 11px 20px 11px;
}

.text-404 a {
	font-size: 15px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.text-404 a:after {
	position: absolute;
	left: 0;
	bottom: -5px;
	height: 1px;
	width: 100%;
	background: #252525;
	content: "";
}

.text-404 a i {
	color: #FFC107;
	margin-right: 5px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1650px) and (max-width: 1920px) {
	.nav-menu ul li {
		margin-right: 60px;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.nav-menu ul li {
		margin-right: 5px;
	}

	.ps-item .thumb-icon {
		left: 15px;
	}

	.blog-item .bi-pic {
		float: none;
	}

	.blog-item .bi-text {
		height: auto;
		padding: 32px 30px 30px 30px;
	}

	.blog-item .bi-pic img {
		height: auto;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.about-text {
		height: auto;
		padding: 120px 70px 60px 70px;
	}

	.blog-section .sidebar-option {
		padding-left: 0;
	}

	.blog-item .bi-pic {
		float: none;
	}

	.blog-item .bi-text {
		height: auto;
		padding: 32px 30px 30px 30px;
	}

	.class-details-text .cd-trainer .cd-trainer-text {
		padding-top: 30px;
	}

	.sidebar-option {
		padding-left: 0;
		padding-top: 30px;
	}

	.chart-table {
		margin-bottom: 30px;
	}

	.table-controls {
		text-align: left;
		margin-top: 0;
		margin-bottom: 30px;
	}

	.ss-text:after {
		display: none;
	}

	.ss-text {
		padding: 72px 60px;
		margin-bottom: 30px;
	}

	.class-item .ci-text:after {
		width: 750px;
	}

	.ts_slider.owl-carousel .owl-nav button {
		left: 0;
	}

	.ts_slider.owl-carousel .owl-nav button.owl-next {
		right: 0;
	}

	.hs-slider.owl-carousel .owl-nav button {
		left: 0;
	}

	.hs-slider.owl-carousel .owl-nav button.owl-next {
		right: 0;
	}

	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.7);
		z-index: 999;
		height: 100%;
		width: 100%;
		visibility: hidden;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.canvas-open {
		position: absolute;
		right: 40px;
		top: 61px;
		font-size: 22px;
		width: 30px;
		height: 30px;
		color: #ffffff;
		border: 1px solid #ffffff;
		border-radius: 2px;
		line-height: 29px;
		text-align: center;
		z-index: 1;
		display: block;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		z-index: 999;
		background: #ffffff;
		overflow-y: auto;
		height: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		padding: 50px 30px 30px 30px;
		display: block;
	}

	.offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
		left: 0;
		opacity: 1;
		visibility: visible;
	}

	.offcanvas-menu-wrapper .canvas-close {
		font-size: 22px;
		width: 30px;
		height: 30px;
		border: 1px solid #121212;
		border-radius: 2px;
		text-align: center;
		line-height: 27px;
		position: absolute;
		right: 20px;
		top: 20px;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper .canvas-search {
		font-size: 18px;
		text-align: center;
		margin-bottom: 20px;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper .canvas-menu {
		display: none;
	}

	.offcanvas-menu-wrapper .canvas-social {
		text-align: center;
		padding-top: 20px;
	}

	.offcanvas-menu-wrapper .canvas-social a {
		display: inline-block;
		font-size: 16px;
		color: #363636;
		margin-right: 6px;
	}

	.offcanvas-menu-wrapper .canvas-social a:last-child {
		margin-right: 0;
	}

	.offcanvas-menu-wrapper .slicknav_btn {
		display: none;
	}

	.offcanvas-menu-wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
	}

	.offcanvas-menu-wrapper .slicknav_nav {
		display: block !important;
	}

	.offcanvas-menu-wrapper .slicknav_nav ul {
		margin: 0;
	}

	.offcanvas-menu-wrapper .slicknav_nav .slicknav_row,
	.offcanvas-menu-wrapper .slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: #121212;
		border-bottom: 1px solid #121212;
		font-weight: 500;
		font-family: "Oswald", sans-serif;
		font-size: 15px;
	}

	.offcanvas-menu-wrapper .slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #FFC107;
	}

	.offcanvas-menu-wrapper .slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #FFC107;
	}

	.nav-menu {
		display: none;
	}

	.top-option {
		display: none;
	}

	.grid-sizer {
		width: calc(50% - 10px);
	}

	.gallery .gs-item {
		width: calc(50% - 10px);
		float: none;
	}

	.gallery .gs-item.grid-wide {
		width: 100%;
	}

	.blog-item .bi-pic img {
		height: auto;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0.7);
		z-index: 999;
		height: 100%;
		width: 100%;
		visibility: hidden;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
	}

	.offcanvas-menu-overlay.active {
		visibility: visible;
	}

	.canvas-open {
		position: absolute;
		right: 40px;
		top: 61px;
		font-size: 22px;
		width: 30px;
		height: 30px;
		color: #ffffff;
		border: 1px solid #ffffff;
		border-radius: 2px;
		line-height: 29px;
		text-align: center;
		z-index: 1;
		display: block;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		top: 0;
		width: 300px;
		z-index: 999;
		background: #ffffff;
		overflow-y: auto;
		height: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		padding: 50px 30px 30px 30px;
		display: block;
	}

	.offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
		left: 0;
		opacity: 1;
		visibility: visible;
	}

	.offcanvas-menu-wrapper .canvas-close {
		font-size: 22px;
		width: 30px;
		height: 30px;
		border: 1px solid #121212;
		border-radius: 2px;
		text-align: center;
		line-height: 27px;
		position: absolute;
		right: 20px;
		top: 20px;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper .canvas-search {
		font-size: 18px;
		text-align: center;
		margin-bottom: 20px;
		cursor: pointer;
	}

	.offcanvas-menu-wrapper .canvas-menu {
		display: none;
	}

	.offcanvas-menu-wrapper .canvas-social {
		text-align: center;
		padding-top: 20px;
	}

	.offcanvas-menu-wrapper .canvas-social a {
		display: inline-block;
		font-size: 16px;
		color: #363636;
		margin-right: 6px;
	}

	.offcanvas-menu-wrapper .canvas-social a:last-child {
		margin-right: 0;
	}

	.offcanvas-menu-wrapper .slicknav_btn {
		display: none;
	}

	.offcanvas-menu-wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
	}

	.offcanvas-menu-wrapper .slicknav_nav {
		display: block !important;
	}

	.offcanvas-menu-wrapper .slicknav_nav ul {
		margin: 0;
	}

	.offcanvas-menu-wrapper .slicknav_nav .slicknav_row,
	.offcanvas-menu-wrapper .slicknav_nav a {
		padding: 10px 0;
		margin: 0;
		color: #121212;
		border-bottom: 1px solid #121212;
		font-weight: 500;
		font-family: "Oswald", sans-serif;
		font-size: 15px;
	}

	.offcanvas-menu-wrapper .slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #FFC107;
	}

	.offcanvas-menu-wrapper .slicknav_nav .slicknav_row:hover a {
		color: #FFC107;
	}

	.offcanvas-menu-wrapper .slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #FFC107;
	}

	.nav-menu {
		display: none;
	}

	.top-option {
		display: none;
	}

	.gallery .gs-item {
		width: 100%;
		float: none;
	}

	.gallery .gs-item.grid-wide {
		width: 100%;
	}

	.about-text {
		height: auto;
		padding: 120px 70px 60px 70px;
	}

	.class-timetable {
		overflow-x: auto;
	}

	.chart-table {
		overflow-x: auto;
	}

	.blog-section .p-0 {
		padding: 15px !important;
	}

	.blog-section .sidebar-option {
		padding-left: 0;
	}

	.blog-item .bi-pic {
		float: none;
	}

	.blog-item .bi-text {
		height: auto;
		padding: 32px 30px 30px 30px;
	}

	.class-details-text .cd-trainer .cd-trainer-text {
		padding-top: 30px;
	}

	.sidebar-option {
		padding-left: 0;
		padding-top: 30px;
	}

	.chart-table {
		margin-bottom: 30px;
	}

	.table-controls {
		text-align: left;
		margin-top: 0;
		margin-bottom: 30px;
	}

	.ss-text:after {
		display: none;
	}

	.ss-text {
		padding: 72px 60px;
		height: auto;
	}

	.class-item .ci-text:after {
		width: 750px;
	}

	.hs-slider .hs-item {
		height: auto;
		padding: 250px 0 150px;
	}

	.hs-slider .hs-item .hi-text h1 {
		font-size: 48px;
		line-height: normal;
	}

	.ts_slider.owl-carousel .owl-nav button {
		left: 0;
	}

	.ts_slider.owl-carousel .owl-nav button.owl-next {
		right: 0;
	}

	.hs-slider.owl-carousel .owl-nav button {
		left: 0;
	}

	.hs-slider.owl-carousel .owl-nav button.owl-next {
		right: 0;
	}

	.ss-pic img {
		height: auto;
	}

	.ss-text {
		margin-bottom: 20px;
	}

	.blog-item .bi-pic img {
		height: auto;
	}

	.blog-details-hero {
		height: auto;
		padding: 160px 0 100px;
	}

	.text-404 .search-404 {
		width: 100%;
	}

	.search-model-form input {
		width: 100%;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.primary-btn.appoinment-btn {
		float: none;
		margin-top: 0;
	}

	.hs-slider .hs-item .hi-text h1 {
		font-size: 38px;
		line-height: normal;
	}

	.team-title {
		margin-bottom: 20px;
	}

	.about-text {
		padding: 70px 15px 60px;
	}

	.blog-details-section .p-0 {
		padding: 15px !important;
	}

	.text-404 h1 {
		font-size: 160px;
	}

	.breadcrumb-text h2 {
		font-size: 38px;
	}

	.text-404 h1 {
		font-size: 80px;
	}

	.blog-details-text .blog-details-author {
		padding: 70px 15px 35px;
	}

	.search-model-form input {
		font-size: 28px;
	}
}

/*---------------------
  Pricing Section Extensions
-----------------------*/
.ps-item.popular {
	border: 2px solid #FFC107;
	position: relative;
	transform: scale(1.03);
	z-index: 1;
	background: rgba(255, 255, 255, 0.04);
}

.popular-tag {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: #FFC107;
	color: #0a0a0b;
	padding: 5px 20px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	white-space: nowrap;
}

.ps-item ul li.package-info {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 10px;
	padding-top: 10px;
	list-style: none;
}

/*---------------------
  Grand Victor Brand
-----------------------*/
:root {
	--gv-bg: #0e0e0e;
	--gv-surface: #161616;
	--gv-accent: #FFC107;
	--gv-accent-deep: #E09B00;
	--gv-text: #ffffff;
	--gv-muted: #b8b8b8;
	--gv-font-display: "Oswald", sans-serif;
	--gv-font-body: "Manrope", sans-serif;
}

.gv-site {
	font-family: var(--gv-font-body);
	background: var(--gv-bg);
}

/* Circular Grand Victor preloader */
.gv-site #preloder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
}

.gv-site .loader.gv-loader {
	width: 200px;
	height: 200px;
	margin: 0;
	top: auto;
	left: auto;
	position: relative;
	border-radius: 0;
	animation: none;
	-webkit-animation: none;
	border: 0;
}

.gv-loader-pulse {
	position: absolute;
	inset: 18%;
	border-radius: 50%;
	border: 1px solid rgba(255, 193, 7, 0.35);
	animation: gv-loader-pulse 1.8s ease-in-out infinite;
}

.gv-loader-orbit {
	width: 100%;
	height: 100%;
	display: block;
	animation: gv-loader-spin 10s linear infinite;
}

.gv-loader-text {
	fill: var(--gv-accent);
	font-family: var(--gv-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.gv-loader-core {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	pointer-events: none;
}

.gv-loader-mark {
	font-family: var(--gv-font-display);
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #fff;
	animation: gv-loader-breathe 1.8s ease-in-out infinite;
}

.gv-loader-tag {
	font-family: var(--gv-font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gv-accent);
}

@keyframes gv-loader-spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes gv-loader-pulse {
	0%,
	100% {
		transform: scale(0.92);
		opacity: 0.45;
	}
	50% {
		transform: scale(1.05);
		opacity: 1;
	}
}

@keyframes gv-loader-breathe {
	0%,
	100% {
		opacity: 0.75;
		transform: scale(0.98);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-loader-orbit,
	.gv-loader-pulse,
	.gv-loader-mark {
		animation: none;
	}
}

.gv-site h1,
.gv-site h2,
.gv-site h3,
.gv-site h4,
.gv-site h5,
.gv-site h6,
.gv-site .section-title h2,
.gv-site .primary-btn,
.gv-site .nav-menu ul li a,
.gv-site .breadcrumb-text h2 {
	font-family: var(--gv-font-display);
}

.gv-site p,
.gv-site .cs-item p,
.gv-site .at-desc p,
.gv-site .leave-comment input,
.gv-site .leave-comment textarea,
.gv-site .leave-comment button {
	font-family: var(--gv-font-body);
}

.gv-logo {
	text-decoration: none;
	display: inline-block;
}

.gv-logo-mark {
	font-family: var(--gv-font-display);
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1;
}

.gv-logo-mark span {
	color: var(--gv-accent);
	margin-left: 4px;
}

.gv-site .top-option {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.gv-site .top-option .to-search {
	display: none;
}

.gv-nav-cta {
	display: inline-block;
	font-family: var(--gv-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #0a0a0b !important;
	background: var(--gv-accent);
	padding: 10px 16px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.gv-nav-cta:hover {
	background: var(--gv-accent-deep);
	transform: translateY(-1px);
	color: #0a0a0b !important;
}

/* Hero — full-bleed, brand-first */
.gv-hero .hs-slider .hs-item {
	min-height: 100vh;
	height: auto;
	padding: 160px 0 100px;
	align-items: center;
	align-content: center;
	position: relative;
}

.gv-hero .hs-slider .hs-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 48%, rgba(8, 8, 8, 0.35) 100%);
	pointer-events: none;
}

.gv-hero .hs-slider .hs-item .container {
	position: relative;
	z-index: 1;
}

.gv-hero .hi-text {
	max-width: 640px;
}

.gv-hero-copy .gv-brand-signal {
	font-family: var(--gv-font-display);
	font-size: clamp(28px, 6vw, 48px);
	font-weight: 700;
	color: var(--gv-accent);
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 0 0 14px;
	line-height: 1.1;
	opacity: 0;
	position: relative;
	top: 100px;
	transition: all 0.35s ease 0.15s;
}

.gv-hero .hs-slider.owl-carousel .owl-item.active .gv-hero-copy .gv-brand-signal {
	opacity: 1;
	top: 0;
}

.gv-hero .hs-slider .hs-item .hi-text h1 {
	font-size: clamp(36px, 7vw, 68px);
	line-height: 1.05;
	margin-bottom: 18px;
	letter-spacing: 0.5px;
}

.gv-hero-sub {
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 28px;
	max-width: 480px;
	opacity: 0;
	position: relative;
	top: 100px;
	transition: all 0.45s ease 0.4s;
}

.gv-hero .hs-slider.owl-carousel .owl-item.active .gv-hero-sub {
	opacity: 1;
	top: 0;
}

.gv-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	opacity: 0;
	position: relative;
	top: 100px;
	transition: all 0.5s ease 0.55s;
}

.gv-hero .hs-slider.owl-carousel .owl-item.active .gv-hero-ctas {
	opacity: 1;
	top: 0;
}

.gv-hero .hs-slider .hs-item .hi-text .primary-btn,
.gv-hero .hs-slider.owl-carousel .owl-item.active .hs-item .hi-text .primary-btn {
	position: static;
	opacity: 1;
	top: auto;
}

.gv-btn-ghost {
	display: inline-block;
	font-family: var(--gv-font-display);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.45);
	padding: 16px 22px;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.gv-btn-ghost:hover {
	border-color: var(--gv-accent);
	background: rgba(255, 193, 7, 0.12);
	color: #fff !important;
}

.gv-hero .hs-slider.owl-carousel .owl-nav {
	display: none;
}

/* Why */
.gv-why .section-title h2,
.gv-about .section-title h2,
.gv-process .section-title h2,
.gv-programs .section-title h2,
.gv-results .section-title h2 {
	text-transform: uppercase;
}

.gv-why-item h4 {
	text-transform: none;
	letter-spacing: 0.5px;
}

/* About section */
.gv-about {
	background: var(--gv-surface);
	padding-top: 100px;
	padding-bottom: 100px;
}

.gv-about .section-title {
	text-align: left;
	margin-bottom: 22px;
}

.gv-about .section-title.text-left {
	text-align: left;
}

.gv-about-media {
	min-height: 460px;
	width: 100%;
	background-position: center;
	background-size: cover;
}

.gv-about-copy p {
	color: var(--gv-muted);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 14px;
}

.gv-about-list {
	list-style: none;
	margin: 22px 0 28px;
	padding: 0;
}

.gv-about-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.gv-about-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: var(--gv-accent);
}

/* Process */
.gv-process {
	background: #121212;
}

.gv-step {
	text-align: left;
	padding: 10px 8px 20px;
	margin-bottom: 20px;
}

.gv-step-num {
	display: block;
	font-family: var(--gv-font-display);
	font-size: 42px;
	font-weight: 700;
	color: var(--gv-accent);
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: 2px;
}

.gv-step h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.gv-step p {
	color: var(--gv-muted);
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
}

/* Programs */
.gv-programs {
	background: #151515;
}

.gv-programs-link {
	margin-top: 20px;
}

/* Free banner */
.gv-free-banner .bs-text h2 {
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.2;
}

.gv-results {
	background: var(--gv-bg);
	padding-bottom: 0;
}

.gv-results .section-title {
	margin-bottom: 40px;
}

.gv-hero .hs-slider .hs-item {
	background-position: center top;
}

.gv-about-media {
	background-position: center top;
}

.gv-free-banner {
	position: relative;
}

.gv-free-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
	z-index: 0;
}

.gv-free-banner .container {
	position: relative;
	z-index: 1;
}

/* Professional gallery + hero + contact */
.gv-hero-pro {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 120px 0 80px;
	overflow: hidden;
	background: #070707;
}

.gv-hero-pro-bg {
	position: absolute;
	inset: -4%;
	background-size: cover;
	background-position: center 20%;
	filter: blur(10px) saturate(1.15) contrast(1.08);
	transform: scale(1.12);
	opacity: 0.48;
	animation: gv-hero-ken 18s ease-in-out infinite alternate;
}

.gv-hero-pro-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.78) 42%, rgba(7, 7, 7, 0.42) 100%),
		radial-gradient(ellipse 70% 60% at 78% 45%, rgba(255, 193, 7, 0.14), transparent 60%),
		radial-gradient(ellipse 90% 80% at 50% 100%, rgba(0, 0, 0, 0.75), transparent 55%);
}

.gv-hero-pro-glow {
	position: absolute;
	width: 42vw;
	height: 42vw;
	max-width: 520px;
	max-height: 520px;
	right: 6%;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 193, 7, 0.16) 0%, rgba(255, 193, 7, 0.04) 42%, transparent 70%);
	pointer-events: none;
	z-index: 0;
	animation: gv-hero-glow 5s ease-in-out infinite alternate;
}

@keyframes gv-hero-ken {
	from {
		transform: scale(1.12) translate3d(0, 0, 0);
	}
	to {
		transform: scale(1.2) translate3d(-1.5%, -1%, 0);
	}
}

@keyframes gv-hero-glow {
	from {
		opacity: 0.55;
		transform: translateY(-50%) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(-50%) scale(1.06);
	}
}

@media (prefers-reduced-motion: reduce) {
	.gv-hero-pro-bg,
	.gv-hero-pro-glow {
		animation: none;
	}
}

.gv-hero-pro .container {
	position: relative;
	z-index: 1;
}

.gv-hero-copy-static .gv-brand-signal {
	opacity: 1;
	top: 0;
	animation: gvFadeUp 0.7s ease both;
}

.gv-hero-copy-static h1 {
	font-family: var(--gv-font-display);
	font-size: clamp(36px, 7vw, 64px);
	line-height: 1.05;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 18px;
	animation: gvFadeUp 0.75s ease 0.08s both;
}

.gv-hero-copy-static h1 strong {
	color: var(--gv-accent);
}

.gv-hero-copy-static .gv-hero-sub,
.gv-hero-copy-static .gv-hero-ctas {
	opacity: 1;
	top: 0;
}

.gv-hero-copy-static .gv-hero-sub {
	animation: gvFadeUp 0.75s ease 0.16s both;
}

.gv-hero-copy-static .gv-hero-ctas {
	animation: gvFadeUp 0.8s ease 0.24s both;
}

.gv-hero-portrait {
	position: relative;
	max-width: 520px;
	margin-left: auto;
	animation: gvFadeUp 0.9s ease 0.2s both;
}

.gv-hero-portrait::before {
	content: "";
	position: absolute;
	inset: 18px -14px -14px 18px;
	border: 1px solid rgba(255, 193, 7, 0.35);
	z-index: 0;
}

.gv-hero-portrait img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

@keyframes gvFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}

.gv-about-frame {
	position: relative;
	max-width: 480px;
}

.gv-about-frame img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.gv-about-frame::after {
	content: "";
	position: absolute;
	left: -12px;
	top: 12px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--gv-accent);
	z-index: -1;
}

.gv-offer-card {
	display: block;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
	color: #fff !important;
}

.gv-offer-card img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.gv-offer-card:hover img {
	transform: scale(1.05);
}

.gv-offer-meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.gv-offer-meta span {
	display: block;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gv-accent);
	font-weight: 700;
	margin-bottom: 6px;
}

.gv-offer-meta h5 {
	margin: 0;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
}

.gv-gallery-section {
	background: #101010;
}

.gv-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(160px, 18vw);
	gap: 10px;
}

.gv-g-item {
	position: relative;
	display: block;
	overflow: hidden;
	background: #1a1a1a;
}

.gv-g-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.gv-g-featured {
	grid-column: span 2;
	grid-row: span 2;
}

.gv-g-wide {
	grid-column: span 2;
}

.gv-g-caption {
	position: absolute;
	left: 14px;
	bottom: 12px;
	font-family: var(--gv-font-display);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 2;
}

.gv-g-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.65));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gv-g-item:hover img {
	transform: scale(1.06);
	filter: brightness(1.05);
}

.gv-g-item:hover::after,
.gv-g-item:hover .gv-g-caption {
	opacity: 1;
}

.gv-g-item:hover .gv-g-caption {
	transform: translateY(0);
}

.gv-contact {
	background: #151515;
}

.gv-contact .section-title.contact-title,
.gv-contact .section-title.text-left {
	text-align: left;
}

.gv-contact-form-wrap {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 32px 28px;
}

.gv-contact-form label {
	display: block;
	font-family: var(--gv-font-display);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 8px;
}

.gv-contact-form input,
.gv-contact-form select,
.gv-contact-form textarea {
	width: 100%;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 14px 16px;
	margin-bottom: 18px;
	font-family: var(--gv-font-body);
	font-size: 15px;
	outline: none;
	transition: border-color 0.25s ease;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}

.gv-contact-form select {
	background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.gv-contact-form input:focus,
.gv-contact-form select:focus,
.gv-contact-form textarea:focus {
	border-color: var(--gv-accent);
}

.gv-contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.gv-contact-form .primary-btn {
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.gv-form-success {
	text-align: center;
	padding: 40px 16px;
}

.gv-form-success h4 {
	color: #fff;
	font-size: 28px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.gv-form-success p {
	color: var(--gv-muted);
	margin-bottom: 24px;
}

.gv-form-success .primary-btn {
	display: inline-block;
}

.gv-success-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 12px;
}

.gv-success-ctas .primary-btn {
	margin: 0;
}

.gv-success-ctas .ig-btn {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	border: none;
}

.gv-success-ctas .ig-btn:hover {
	background: linear-gradient(45deg, #e08322 0%, #d5572b 25%, #cb1632 50%, #bb1255 75%, #ab0777 100%);
}

.gv-success-ctas .fb-btn {
	background: #1877F2;
	border: none;
}

.gv-success-ctas .fb-btn:hover {
	background: #166FE5;
}

.gv-contact-form select option {
	background: #151515;
	color: #fff;
}

.gv-contact .contact-widget .cw-text strong,
.gv-book-lead strong {
	color: var(--gv-accent);
}

.gv-contact .contact-widget .cw-text a {
	color: #fff;
	text-decoration: none;
}

.gv-contact .contact-widget .cw-text a:hover {
	color: var(--gv-accent);
}

.gv-services-page .ss-pic {
	overflow: hidden;
	aspect-ratio: 1 / 1;
}

.gv-services-page .ss-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media only screen and (max-width: 991px) {
	.gv-hero-pro {
		padding: 110px 0 70px;
		text-align: center;
	}

	.gv-hero-portrait {
		margin: 36px auto 0;
		max-width: 380px;
	}

	.gv-hero-copy-static .gv-hero-ctas {
		justify-content: center;
	}

	.gv-about-frame {
		margin: 0 auto 36px;
	}

	.gv-about-frame::after {
		display: none;
	}

	.gv-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: minmax(140px, 42vw);
	}

	.gv-g-featured,
	.gv-g-wide {
		grid-column: span 2;
	}

	.gv-g-featured {
		grid-row: span 2;
	}

	.gv-contact .section-title.contact-title,
	.gv-contact .section-title.text-left {
		text-align: center;
	}

	.gv-contact .gv-book-lead {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.gv-contact-form-wrap {
		margin-top: 28px;
		padding: 24px 18px;
	}
}

@media only screen and (max-width: 767px) {
	.gv-hero-pro {
		padding: 100px 0 60px;
	}

	.gv-hero-portrait {
		max-width: 300px;
	}

	.gv-hero-copy-static .gv-hero-ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.gv-hero-copy-static .gv-hero-ctas .primary-btn,
	.gv-hero-copy-static .gv-hero-ctas .gv-btn-ghost {
		width: 100%;
		text-align: center;
	}

	.gv-gallery-grid {
		gap: 6px;
		grid-auto-rows: minmax(120px, 46vw);
	}
}

/* Book */
.gv-book {
	background: #151515;
}

.gv-book .section-title.contact-title,
.gv-book .section-title.text-left {
	text-align: left;
}

.gv-book-lead {
	color: var(--gv-muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 28px;
	max-width: 480px;
}

.gv-book .contact-widget .cw-text a {
	color: #fff;
}

.gv-book .contact-widget .cw-text a:hover {
	color: var(--gv-accent);
}

.gv-book .primary-btn {
	margin-top: 10px;
}

.gv-book-form {
	margin-top: 10px;
}

.gv-form-note {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 14px;
	margin-bottom: 0;
}

.gv-book-panel {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 40px 36px;
	text-align: center;
}

.gv-book-panel-label {
	font-family: var(--gv-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gv-accent);
	margin-bottom: 12px;
}

.gv-book-panel-msg {
	font-family: var(--gv-font-display);
	font-size: clamp(42px, 8vw, 64px);
	font-weight: 700;
	color: #fff;
	letter-spacing: 6px;
	margin-bottom: 16px;
	line-height: 1;
}

.gv-book-panel-hint {
	color: var(--gv-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 28px;
	max-width: 340px;
	margin-left: auto;
	margin-right: auto;
}

.gv-pricing .pi-price span {
	text-transform: none;
}

.gv-site .gettouch-section a {
	color: #fff;
}

.gv-site .gettouch-section a:hover {
	color: var(--gv-accent);
}

.gv-site .footer-section {
	background: #0a0a0a;
}

.gv-footer {
	padding-top: 70px;
}

.gv-footer .fs-widget h4 {
	position: relative;
	display: inline-block;
	font-family: var(--gv-font-display);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 28px;
	padding-bottom: 10px;
}

.gv-footer .fs-widget h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 2px;
	background: var(--gv-accent);
}

.gv-footer .fs-about p,
.gv-newsletter p {
	color: #d0d0d0;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 22px;
}

.gv-footer .fa-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-right: 8px;
	color: #fff;
	font-size: 14px;
	transition: color 0.25s ease;
}

.gv-footer .fa-social a:hover {
	color: var(--gv-accent);
}

.gv-footer-logo .gv-logo-mark {
	font-size: 28px;
}

.gv-fw-post {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	padding-bottom: 0;
	border: 0;
}

.gv-fw-thumb {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	overflow: hidden;
}

.gv-fw-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gv-fw-meta h6 {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.35;
	font-family: var(--gv-font-body);
	font-weight: 600;
}

.gv-fw-meta h6 a {
	color: #fff;
	letter-spacing: 0;
}

.gv-fw-meta h6 a:hover {
	color: var(--gv-accent);
}

.gv-fw-meta span {
	display: block;
	font-size: 12px;
	color: #8a8a8a;
}

.gv-footer-links li a {
	position: relative;
	display: inline-block;
	padding-left: 18px;
	color: #fff;
	font-size: 14px;
	line-height: 2;
	transition: color 0.25s ease;
}

.gv-footer-links li a::before {
	content: "»";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--gv-accent);
	font-weight: 700;
}

.gv-footer-links li:first-child a,
.gv-footer-links li a:hover {
	color: var(--gv-accent);
}

.gv-newsletter-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 320px;
	overflow: hidden;
	border-radius: 4px;
}

.gv-newsletter-form input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: 0;
	height: 46px;
	padding: 0 14px;
	background: #fff;
	color: #222;
	font-size: 13px;
	font-family: var(--gv-font-body);
}

.gv-newsletter-form button {
	border: 0;
	height: 46px;
	padding: 0 18px;
	background: var(--gv-accent);
	color: #111;
	font-family: var(--gv-font-display);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.25s ease;
}

.gv-newsletter-form button:hover {
	background: var(--gv-accent-deep);
	color: #fff;
}

.gv-footer .copyright-text {
	border-top-color: #1c1c1c;
	margin-top: 30px;
}

/* Quotes slider */
.gv-quotes-section {
	background: #121212;
	position: relative;
	overflow: hidden;
}

.gv-quotes-section::before {
	content: "“";
	position: absolute;
	left: 50%;
	top: 42%;
	transform: translate(-50%, -50%);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 280px;
	line-height: 1;
	color: rgba(255, 193, 7, 0.06);
	pointer-events: none;
}

.gv-quotes-slider {
	max-width: 760px;
	margin: 0 auto;
}

.gv-quote-item {
	text-align: center;
	padding: 10px 24px 28px;
}

.gv-quote-item p {
	font-family: var(--gv-font-display);
	font-size: clamp(22px, 3.4vw, 34px);
	line-height: 1.35;
	color: #fff;
	font-weight: 500;
	margin-bottom: 22px;
	text-transform: none;
	letter-spacing: 0.2px;
}

.gv-quote-item h5 {
	font-family: var(--gv-font-display);
	font-size: 16px;
	font-weight: 700;
	color: var(--gv-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
}

.gv-quote-item span {
	display: block;
	font-size: 13px;
	color: #9a9a9a;
}

.gv-quotes-slider.owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	margin: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 20px;
	line-height: 44px;
	transition: background 0.25s ease, color 0.25s ease;
}

.gv-quotes-slider.owl-carousel .owl-nav button:hover {
	background: var(--gv-accent);
	color: #111;
}

.gv-quotes-slider.owl-carousel .owl-nav .owl-prev {
	left: -8px;
}

.gv-quotes-slider.owl-carousel .owl-nav .owl-next {
	right: -8px;
}

.gv-quotes-slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 8px;
}

.gv-quotes-slider.owl-carousel .owl-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 4px;
	border-radius: 50%;
	background: #3a3a3a;
}

.gv-quotes-slider.owl-carousel .owl-dot.active {
	background: var(--gv-accent);
}

@media only screen and (max-width: 991px) {
	.gv-quotes-slider.owl-carousel .owl-nav {
		display: none;
	}
}

/* Header bar layout */
.gv-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 18px 12px;
	z-index: 1000;
	transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.gv-header.is-scrolled {
	background: rgba(10, 10, 10, 0.94);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	padding: 12px 12px;
	backdrop-filter: blur(10px);
}

.gv-header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	position: relative;
}

.gv-header .nav-menu {
	flex: 1;
	text-align: center;
}

.gv-header .top-option {
	margin-left: auto;
}

.gv-burger {
	display: none;
	position: relative !important;
	right: auto !important;
	top: auto !important;
	width: 46px !important;
	height: 46px !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	border-radius: 0 !important;
	background: rgba(255, 255, 255, 0.06);
	padding: 0;
	cursor: pointer;
	z-index: 1002;
	line-height: normal !important;
	font-size: 0 !important;
	color: transparent !important;
}

.gv-burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
	margin: 4px auto;
	transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.gv-burger.is-open span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.gv-burger.is-open span:nth-child(2) {
	opacity: 0;
}

.gv-burger.is-open span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

body.gv-menu-open {
	overflow: hidden;
}

/* Full-screen mobile panel */
.gv-mobile-panel {
	display: none;
}

.gv-mobile-cta {
	display: none;
}

/* Mobile */
@media only screen and (max-width: 991px) {
	.gv-nav-cta {
		display: none;
	}

	.gv-site .header-section.gv-header {
		padding: 12px 8px;
	}

	.gv-site .nav-menu,
	.gv-site .top-option {
		display: none !important;
	}

	.gv-burger {
		display: block !important;
	}

	.gv-site .offcanvas-menu-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.72);
		z-index: 1100;
		height: 100%;
		width: 100%;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.35s ease, visibility 0.35s ease;
	}

	.gv-site .offcanvas-menu-overlay.active {
		visibility: visible;
		opacity: 1;
	}

	.gv-site .offcanvas-menu-wrapper.gv-mobile-panel {
		display: flex !important;
		flex-direction: column;
		position: fixed;
		left: auto !important;
		right: 0;
		top: 0;
		width: min(100%, 420px);
		max-width: 100%;
		height: 100%;
		height: 100dvh;
		z-index: 1110;
		background: linear-gradient(165deg, #121212 0%, #0a0a0a 55%, #15120a 100%) !important;
		padding: 22px 24px 32px !important;
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.gv-site .offcanvas-menu-wrapper.gv-mobile-panel.show-offcanvas-menu-wrapper {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		left: auto !important;
	}

	.gv-mobile-panel-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 36px;
	}

	.gv-menu-close {
		position: relative !important;
		right: auto !important;
		top: auto !important;
		width: 46px !important;
		height: 46px !important;
		border: 1px solid rgba(255, 255, 255, 0.25) !important;
		border-radius: 0 !important;
		background: transparent;
		cursor: pointer;
		padding: 0;
		line-height: normal !important;
		font-size: 0 !important;
	}

	.gv-menu-close span {
		display: block;
		width: 18px;
		height: 2px;
		background: #fff;
		margin: 0 auto;
	}

	.gv-menu-close span:first-child {
		transform: translateY(1px) rotate(45deg);
	}

	.gv-menu-close span:last-child {
		transform: translateY(-1px) rotate(-45deg);
	}

	.gv-mobile-nav {
		flex: 1;
	}

	.gv-mobile-nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.gv-mobile-nav li {
		opacity: 0;
		transform: translateX(18px);
		transition: opacity 0.35s ease, transform 0.35s ease;
	}

	.gv-mobile-panel.show-offcanvas-menu-wrapper .gv-mobile-nav li {
		opacity: 1;
		transform: translateX(0);
	}

	.gv-mobile-panel.show-offcanvas-menu-wrapper .gv-mobile-nav li:nth-child(1) { transition-delay: 0.08s; }
	.gv-mobile-panel.show-offcanvas-menu-wrapper .gv-mobile-nav li:nth-child(2) { transition-delay: 0.12s; }
	.gv-mobile-panel.show-offcanvas-menu-wrapper .gv-mobile-nav li:nth-child(3) { transition-delay: 0.16s; }
	.gv-mobile-panel.show-offcanvas-menu-wrapper .gv-mobile-nav li:nth-child(4) { transition-delay: 0.2s; }
	.gv-mobile-panel.show-offcanvas-menu-wrapper .gv-mobile-nav li:nth-child(5) { transition-delay: 0.24s; }

	.gv-mobile-nav a {
		display: block;
		font-family: var(--gv-font-display);
		font-size: clamp(28px, 8vw, 36px);
		font-weight: 600;
		color: #fff !important;
		text-transform: uppercase;
		letter-spacing: 1px;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		transition: color 0.25s ease, padding-left 0.25s ease;
	}

	.gv-mobile-nav a:hover,
	.gv-mobile-nav a:focus {
		color: var(--gv-accent) !important;
		padding-left: 8px;
	}

	.gv-mobile-panel-foot {
		margin-top: 36px;
		padding-top: 8px;
	}

	.gv-mobile-panel-foot .primary-btn {
		display: block;
		text-align: center;
		width: 100%;
		margin-bottom: 16px;
	}

	.gv-mobile-panel-foot p {
		color: rgba(255, 255, 255, 0.55);
		font-size: 13px;
		margin-bottom: 16px;
		text-align: center;
	}

	.gv-site .gv-mobile-panel .canvas-social {
		text-align: center;
		padding-top: 0;
	}

	.gv-site .gv-mobile-panel .canvas-social a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: #fff !important;
		font-size: 16px;
		margin: 0 4px;
		transition: border-color 0.25s ease, color 0.25s ease;
	}

	.gv-site .gv-mobile-panel .canvas-social a:hover {
		border-color: var(--gv-accent);
		color: var(--gv-accent) !important;
	}

	.gv-mobile-cta {
		display: flex;
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: calc(12px + env(safe-area-inset-bottom, 0px));
		z-index: 999;
		gap: 8px;
		padding: 8px;
		background: rgba(12, 12, 12, 0.92);
		border: 1px solid rgba(255, 255, 255, 0.12);
		backdrop-filter: blur(12px);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
	}

	.gv-mobile-cta a {
		flex: 1;
		text-align: center;
		font-family: var(--gv-font-display);
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 1px;
		text-transform: uppercase;
		padding: 14px 10px;
		line-height: 1.2;
	}

	.gv-mobile-cta-secondary {
		color: #fff !important;
		border: 1px solid rgba(255, 255, 255, 0.28);
	}

	.gv-mobile-cta-primary {
		color: #0a0a0b !important;
		background: var(--gv-accent);
	}

	body.gv-menu-open .gv-mobile-cta {
		opacity: 0;
		pointer-events: none;
	}

	.gv-hero .hs-slider .hs-item {
		min-height: 100svh;
		padding: 130px 0 110px;
	}

	.gv-about-media {
		min-height: 320px;
		margin-bottom: 36px;
	}

	.gv-about .section-title,
	.gv-about .section-title.text-left {
		text-align: center;
	}

	.gv-about-copy {
		text-align: center;
	}

	.gv-about-list {
		display: inline-block;
		text-align: left;
	}

	.gv-step {
		text-align: center;
		padding: 24px 18px;
		margin-bottom: 14px;
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.06);
	}

	.gv-book .section-title.contact-title,
	.gv-book .section-title.text-left {
		text-align: center;
	}

	.gv-book-lead {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.gv-book .contact-widget {
		margin-bottom: 28px;
	}

	.gv-book .contact-widget .cw-text {
		justify-content: center;
		text-align: left;
	}

	.gv-book .primary-btn {
		display: table;
		margin: 10px auto 30px;
	}

	.gv-book-panel {
		padding: 32px 22px;
	}

	.ps-item.popular {
		transform: none;
		margin-top: 24px;
		margin-bottom: 24px;
	}

	.gv-programs .class-item {
		margin-bottom: 18px;
	}

	.gv-why .cs-item {
		padding: 8px 6px 18px;
	}

	.gv-site .section-title h2 {
		font-size: 28px;
		line-height: 1.2;
	}

	.gv-site .footer-section {
		padding-bottom: 100px;
	}

	.gv-site .gettouch-section {
		padding-bottom: 30px;
	}

	.gv-services-page .ss-text {
		padding: 40px 28px !important;
	}

	.gv-site .breadcrumb-section {
		padding-top: 140px;
	}
}

@media only screen and (max-width: 767px) {
	.gv-logo-mark {
		font-size: 20px;
	}

	.gv-hero .hs-slider .hs-item {
		padding: 118px 0 100px;
	}

	.gv-hero-copy .gv-brand-signal {
		letter-spacing: 2px;
		margin-bottom: 10px;
	}

	.gv-hero-ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.gv-hero-ctas .primary-btn,
	.gv-hero-ctas .gv-btn-ghost {
		text-align: center;
		width: 100%;
	}

	.gv-about,
	.gv-process,
	.gv-why.spad,
	.gv-programs.spad,
	.gv-book.spad,
	.gv-services-page.spad,
	.gv-pricing.spad {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.gv-about-media {
		min-height: 240px;
	}

	.gv-step-num {
		font-size: 34px;
	}

	.gv-free-banner {
		padding: 70px 0;
	}

	.gv-free-banner .bs-text h2 {
		font-size: 26px;
	}

	.gv-free-banner .bt-tips {
		margin-bottom: 22px;
	}

	.popular-tag {
		font-size: 11px;
		padding: 4px 14px;
	}

	.gv-site .gallery .gs-item {
		height: 180px;
	}

	.gv-results .section-title {
		margin-bottom: 24px;
		padding: 0 15px;
	}

	.gv-site .ps-item {
		margin-bottom: 28px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.gv-site .fs-widget {
		margin-top: 28px;
	}
}

@media only screen and (max-width: 479px) {
	.gv-hero .hs-slider .hs-item .hi-text h1 {
		font-size: 34px;
	}

	.gv-hero-sub {
		font-size: 15px;
	}

	.gv-mobile-cta a {
		font-size: 12px;
		padding: 13px 8px;
	}

	.gv-site .offcanvas-menu-wrapper.gv-mobile-panel {
		width: 100%;
	}
}
