/*
	Template Name 	: 
	Author 			: Awaiken Theme
	Author Url 		: https://awaikenthemes.com
*/

:root {
	--brand-primary: #e8943a;
	--brand-primary-dark: #c07030;
	--brand-primary-light: #f0a850;
	--brand-primary-rgb: 232, 148, 58;
	--brand-black: #111111;
	--brand-dark: #141414;
	--brand-dark-alt: #1a1a1a;
	--brand-accent: #5ec8e8;
	--brand-border: #4a3d30;
	--brand-text-muted: #5a5a5a;
}

/************************************/
/***** 	   01. General css		 ****/
/************************************/

body{
	font-size: 16px;
	font-family: 'Oswald', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin-top:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

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

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

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: var(--brand-primary);
}

::selection {
    color: #fff;
    background: var(--brand-primary);
}

.preloader{
    background: var(--brand-black);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
	text-align: center;
}

.loader{
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	border: 4px solid #Fff;
	top: 50%;
	animation: loader 2s infinite ease;
}

.loader-inner{
	vertical-align: top;
	display: inline-block;
	width: 100%;
	background-color: #fff;
	animation: loader-inner 2s infinite ease-in;
}

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

	25% {
		transform: rotate(180deg);
	}

	50% {
		transform: rotate(180deg);
	}

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

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

@keyframes loader-inner {
	0% {
		height: 0%;
	}

	25% {
		height: 0%;
	}

	50% {
		height: 100%;
	}

	75% {
		height: 100%;
	}

	100% {
		height: 0%;
	}
}

/************************************/
/***** 02. Navigation area css  *****/
/************************************/

.navbar{
	margin-bottom: 0;
}

.navbar-brand{
	height: auto;
	padding: 4px 15px;
	line-height: 0;
	display: flex;
	align-items: center;
}

.navbar-header{
	display: flex;
	align-items: center;
}

@media (min-width: 768px){
	.navbar > .container{
		display: flex;
		align-items: center;
	}

	.navbar-header{
		float: none;
	}

	.navbar-collapse{
		float: none;
		flex: 1;
		padding: 0;
	}

	.navbar-collapse .navbar-nav.navbar-right{
		float: right !important;
	}
}

.navbar-brand img{
	height: 80px;
	width: auto;
	display: block;
	transition: all 0.3s;
}

.navbar-brand h1{
	font-size: 30px;
	margin: 0;
	color: #fff;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	font-family: 'Graduate', cursive;
	text-transform: uppercase;
}

.navbar-brand h1 i{
	position: relative;
	top: 3px;
	color: var(--brand-primary);
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.navbar-default{
	background: none;
	border: none;
	border-bottom: 1px solid transparent;
	padding: 30px 0;
	border-radius: 0;
	z-index: 12;
	transition: all 1s;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
}

.navbar-default .navbar-nav>li>a:hover{
	color: var(--brand-primary);
}

.navbar-default .navbar-nav>li>a:focus{
	color: #fff;
}

.sticky-header{
	background: var(--brand-black);
	padding: 8px 0;
	border-bottom: 2px solid var(--brand-primary);
	transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

.sticky-header .navbar-brand{
	padding: 2px 15px;
}
.sticky-header .navbar-brand h1 i,
.sticky-header .navbar-brand h1{
	color: var(--brand-primary);
}

.navbar-default .navbar-nav>li>a{
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.08em;
	padding: 17px 15px 13px; 
	position: relative;
}

.active a{
	background: none !important;
	color: var(--brand-primary) !important;
}

.sticky-header .navbar-nav>li>a{
	color: #fff;
	padding: 12px 15px 10px;
}

.sticky-header .navbar-nav>li>a:hover{
	color: var(--brand-primary);
}

.sticky-header .navbar-nav>li>a:focus{
	color: #fff;
}

.sticky-header .active a{
	background: none !important;
	color: var(--brand-primary) !important;
}

.sticky-header .navbar-brand img{
	height: 56px;
}

.navbar-default .active a:after{
	transform: scale(1) !important;
	-webkit-transform: scale(1) !important;
	-moz-transform: scale(1) !important;
}

.btn-custom{
	display: inline-block;
	background: #fff;
	color: var(--brand-primary);
	text-transform: uppercase;
	font-size: 24px;
	padding: 14px 50px;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: all 0.4s;
	border-radius: 40px;
}

.btn-custom:hover{
	background: var(--brand-primary);
	color: #fff;
	box-shadow: 0 8px 24px rgba(var(--brand-primary-rgb), 0.35);
}

.navbar-default .navbar-toggle{
	border-radius: 0;
	border-color: #fff;
	padding: 0;
}

.navbar-default .navbar-toggle .icon-bar{
	background: #fff;
}

.navbar-default .navbar-toggle:hover{
	background: none;
}

/************************************/
/*****   03. Slider area css    *****/
/************************************/

.banner{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	background: url(../images/banner.jpg) no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	min-height: 100vh;
	padding: 140px 0 50px;
}

.banner:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, 0.65);
}

.banner .container{
	position: relative;
	z-index: 1;
	width: 100%;
}

.banner .row{
	position: relative;
	z-index: 1;
}


.banner-desc{
	text-align: center;
	width: 100%;
}

.banner-desc h2{
	color: #fff;
	font-size: 70px;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.banner-desc p,
.banner-tagline{
	color: var(--brand-primary);
	font-size: 64px;
	margin-bottom: 0;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.02em;
	text-transform: none;
	line-height: 1.2em;
}

.aboutus-section{
	padding: 100px 0;
	background: var(--brand-dark);
}

.about-content h2{
	color: var(--brand-primary);
	text-transform: uppercase;
	font-size: 38px;
	margin-bottom: 50px;
}

.about-content p{
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}

.about-highlight{
	color: var(--brand-primary) !important;
	font-size: 18px;
	font-weight: 500;
}

.about-highlight .fa-star{
	margin-right: 6px;
}

.about-content a{
	margin-top: 30px;
}

.about-image{
	text-align: center;
	margin-top: 60px;
}

.about-image img{
	width: 100%;
	display: block;
	object-fit: cover;
}

.about-image h3{
	display: inline-block;
	background: #fff;
	color: var(--brand-primary);
    font-size: 26px;
	padding: 18px 80px;
	max-width: 100%;
	min-width: 380px;
	transform: skewX(35deg);
}

.about-image h3 span{
	display: inline-block;
	transform: skewX(-35deg);
}

.main-title{
	text-align: center;
	font-size: 38px;
	text-transform: uppercase;
	margin-bottom: 80px;
}

.our-trainers{
	padding: 100px 0;
}

.our-trainers .main-title{
	color: var(--brand-primary);
}

.coach-row{
	margin-top: 10px;
}

.trainer-box{
	text-align: center;
	margin-bottom: 30px;
}

.trainer-img{
	position: relative;
	overflow: hidden;
}

.trainer-img img{
	width: 100%;
	height: 360px;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.trainer-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	transition: all 0.5s;
	background: rgba(var(--brand-primary-rgb), 0);
}

.trainer-social{
	width: 100%;
	padding-top: 60px;
	transition: all 0.3s;
	opacity: 0;
}

.trainer-social a{
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	margin: 0 4px;
	color: var(--brand-primary);
	font-size: 18px;
	line-height: 40px;
	padding: 0;
	transition: all 0.3s;
}

.trainer-social a:hover{
	background: var(--brand-dark);
	color: #fff;
}

.trainer-info{
	padding-top: 40px;
}

.trainer-info h2{
	font-size: 22px;
	color: var(--brand-primary);
	text-transform: uppercase;
	font-weight: 500;
}

.trainer-info p{
	color: var(--brand-text-muted);
	font-style: italic;
}

.trainer-img:hover .trainer-overlay{
	background: rgba(var(--brand-primary-rgb), 1);
}

.trainer-img:hover .trainer-overlay .trainer-social{
	opacity: 1;
	padding-top: 0;
}

.fitness-classic{
	padding: 0;
	background: none;
	position: relative;
}

.fitness-classic:before{
	display: none;
}

.we-teach-block{
	padding: 100px 0 80px;
	background: url(../images/schedule-bg.jpg) center center fixed;
	background-size: cover;
	position: relative;
}

.we-teach-block:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.82);
}

.we-teach-block .container{
	position: relative;
	z-index: 1;
}

.schedule-section{
	padding: 80px 0 100px;
	background: url(../images/schedule-bg.jpg) center center fixed;
	background-size: cover;
	position: relative;
}

.schedule-section:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.82);
}

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

.fitness-classic .main-title,
.schedule-section .main-title{
	color: #fff;
}

.we-teach-row{
	margin-bottom: 40px;
}

.we-teach-item{
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(var(--brand-primary-rgb), 0.45);
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 18px 12px;
	margin-bottom: 20px;
	transition: all 0.3s;
}

.we-teach-item:hover{
	background: rgba(var(--brand-primary-rgb), 0.2);
	border-color: var(--brand-primary);
}

.schedule-title{
	margin-top: 0;
	margin-bottom: 40px;
}

.schedule-title p{
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	font-weight: 300;
	text-transform: none;
	letter-spacing: 0.04em;
	margin-top: 12px;
}

.schedule-table-wrap{
	overflow-x: auto;
	margin-bottom: 10px;
}

.schedule-table{
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	background: rgba(0, 0, 0, 0.45);
}

.schedule-table th,
.schedule-table td{
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 14px 12px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.02em;
	vertical-align: middle;
}

.schedule-table th{
	background: rgba(var(--brand-primary-rgb), 0.25);
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.06em;
}

.schedule-table td:first-child{
	font-weight: 600;
	color: var(--brand-primary);
	text-transform: uppercase;
}

.schedule-off{
	color: rgba(255, 255, 255, 0.45);
	font-style: italic;
}

.price-body ul li span{
	font-weight: 700;
	color: var(--brand-primary);
}

.recommended .price-body ul li span{
	color: var(--brand-primary);
}

.classic-box{
	//background: url(../images/classic-box.jpg) no-repeat center center;
	background-size: cover;
	text-align: center;
	border: 16px solid var(--brand-border);
	margin-bottom: 30px;
}

.classic-inner{
	background: rgba(245, 230, 211, 0.88);
	padding: 40px 20px;
}

.classic-box h2{
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--brand-primary);
	letter-spacing: 0.02em;
	margin-bottom: 20px;
}

.classic-box p{
	color: #000;
	font-weight: 300;
	letter-spacing: 0.02em;
	line-height: 1.5em;
	margin-bottom: 1.5em;
}

.classic-box h5{
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--brand-primary);
	letter-spacing: 0.02em;
	margin-bottom: 0;
}

.testimonial-section{
	padding: 100px 0;
}

.testimonial-section .main-title{
	color: var(--brand-dark-alt);
}

.pricing{
	position: relative;
	background: url(../images/price-bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 0;
}

.pricing:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.92);
}

.pricing .main-title{
	color: #fff;
}

.pricing-intro{
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
	font-weight: 300;
	text-transform: none;
	letter-spacing: 0.03em;
	margin-top: 14px;
	line-height: 1.6em;
}

.pricing-tiers-row{
	margin-bottom: 40px;
}

.price-tier{
	background: #fff;
	text-align: center;
	padding: 32px 20px 28px;
	margin-bottom: 24px;
	position: relative;
	border: 2px solid transparent;
	transition: all 0.3s;
}

.price-tier:hover{
	border-color: var(--brand-primary);
	transform: translateY(-4px);
}

.price-tier-featured{
	border-color: var(--brand-primary);
	box-shadow: 0 12px 32px rgba(var(--brand-primary-rgb), 0.25);
}

.price-badge{
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--brand-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 5px 14px;
	border-radius: 20px;
}

.price-tier h3{
	font-size: 22px;
	text-transform: uppercase;
	color: var(--brand-dark-alt);
	margin: 0 0 12px;
	font-weight: 600;
}

.price-amount{
	font-size: 42px;
	font-weight: 700;
	color: var(--brand-primary);
	margin: 0 0 10px;
	line-height: 1.1em;
}

.price-tier-note{
	font-size: 13px;
	color: var(--brand-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

.price-unified-box{
	background: #fff;
	text-align: center;
	padding: 40px 30px 36px;
	margin-bottom: 20px;
}

.price-unified-box h3{
	font-size: 24px;
	text-transform: uppercase;
	color: var(--brand-dark-alt);
	margin: 0 0 28px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.pricing-features-row{
	margin-bottom: 10px;
}

.pricing-feature{
	background: rgba(var(--brand-primary-rgb), 0.1);
	border: 1px solid rgba(var(--brand-primary-rgb), 0.25);
	color: var(--brand-dark-alt);
	text-align: center;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 14px 10px;
	margin-bottom: 16px;
}

.pricing-note{
	color: var(--brand-text-muted);
	font-size: 15px;
	line-height: 1.6em;
	max-width: 720px;
	margin: 16px auto 28px;
	font-weight: 300;
}

.btn-buynow-lg{
	font-size: 18px;
	padding: 14px 48px;
}

.price-box{
	background: #fff;
	text-align: center;
	margin-bottom: 30px;
}

.recommended{
	background: var(--brand-black);
}

.price-header{
	
}

.price-header h2{
	font-size: 38px;
	text-transform: uppercase;
	color: var(--brand-dark-alt);
	font-weight: 500;
	padding: 28px 10px;
	margin-bottom: 0;
}

.recommended .price-header h2{
	color: #fff;
}

.price-header p{
	background: var(--brand-dark-alt);
	padding: 18px 10px;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	line-height: 1.5em;
}

.recommended .price-header p{
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.85);
}

.price-header p span{
	font-weight: 700;
}

.price-body{
	padding: 20px 10px;
}

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

.price-body ul li{
	text-transform: uppercase;
	font-size: 20px;
	color: var(--brand-dark-alt);
	padding: 12px 10px;
}

.recommended .price-body ul li{
	color: #fff;
}

.price-footer{
	padding: 0px 10px 30px;
}

.btn-buynow{
	display: inline-block;
	text-transform: uppercase;
	font-size: 20px;
	background: var(--brand-primary-dark);
	color: #fff;
	padding: 10px 50px;
	transition: all 0.3s;
}

.btn-buynow:hover{
	background: var(--brand-black);
	color: #fff;
}

.recommended .btn-buynow{
	background: var(--brand-primary);
}

.recommended .btn-buynow:hover{
	background: #fff;
	color: var(--brand-black);
}

.contactus{
	position: relative;
	padding: 100px 0;
}

.google-map{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.google-map iframe{
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
}

.contactus-box{
	background: -webkit-linear-gradient(left, #fff 0%, #fff 66.66%, var(--brand-black) 66.66%);
	position: relative;
	z-index: 1;
}

.contact-info{
	padding: 10%;
}

.contact-info h2{
	font-size: 50px;
	font-weight: 400;
	line-height: 1.3em;
	margin-bottom: 80px;
}

.contact-info h3{
	font-size: 20px;
	text-transform: uppercase;
	color: var(--brand-primary);
	font-weight: 400;
}

.contact-info p{
	color: var(--brand-dark-alt);
}

.contact-info a{
	color: var(--brand-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.contact-info a[href^="tel:"]{
	text-transform: none;
	font-size: 18px;
	letter-spacing: 0.02em;
}

.contact-info a:hover{
	color: var(--brand-primary-dark);
}

.floating-social{
	position: fixed;
	right: 20px;
	bottom: 24px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.floating-social a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	color: #fff;
	font-size: 30px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	transition: all 0.3s;
}

.floating-social a:hover{
	transform: translateY(-3px);
	color: #fff;
}

.floating-social-whatsapp{
	background: #25d366;
}

.floating-social-whatsapp:hover{
	background: #1ebe57;
}

.floating-social-instagram{
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-social-youtube{
	background: #ff0000;
}

.floating-social-youtube:hover{
	background: #cc0000;
}

.contact-form{
	padding: 40px;
	text-align: center;
}

.contact-form h2{
	font-size: 24px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 30px;
}

.contact-form .form-control{
	box-shadow: none;
	border-radius: 0;
	border: none;
	outline: 0;
	font-size: 14px;
	padding: 10px 16px;
	height: auto;
}

.btn-contact{
	border: none;
	background: var(--brand-dark-alt);
	color: #fff;
	text-transform: uppercase;
	padding: 12px 40px 10px;
	letter-spacing: 0.02em;
	transition: all 0.3s;
}

.btn-contact:hover{
	background: var(--brand-primary);
	color: #fff;
}

footer{
	background: var(--brand-dark);
	padding: 60px 0 52px;
}

.footer-siteinfo p{
	margin: 0;
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.03em;
}

.footer-siteinfo p a{
	color: var(--brand-primary);
}

.footer-social{
	text-align: right;
}

.footer-social a{
	display: inline-block;
	width: 44px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 22px;
	margin-left: 10px;
	transition: all 0.3s;
}

.footer-social a:hover{
	background: var(--brand-primary);
	color: #fff;
}

.testimonial-box{
	text-align: center;
	max-width: 768px;
	margin: 0 auto;
}

.testimonial-box h3{
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 500;
	color: var(--brand-primary);
	font-style: italic;
	margin-bottom: 40px;
}

.testimonial-box p{
	color: var(--brand-dark-alt);
	letter-spacing: 0.02em;
	line-height: 1.5em;
}

.testimonial-box h4{
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	color: var(--brand-primary);
	margin-top: 30px;
}

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

.testimonial-slider .owl-dots .owl-dot{
	display: inline-block;
}
.testimonial-slider .owl-dots .owl-dot span{
	display: block;
	background: var(--brand-dark-alt);
	margin: 0 4px;
	width: 12px;
	height: 12px;
}

.testimonial-slider .owl-dots .owl-dot.active span{
	background: var(--brand-primary);
	box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.25);
}


/************************************/
/*****     09. Media Screens    *****/
/************************************/

@media only screen and (max-width: 991px) {
	.navbar-default .navbar-nav>li>a{
		padding: 17px 4px 13px;
	}
	
	.banner-desc h2{
		font-size: 46px;
	}
	
	.banner-desc p,
	.banner-tagline{
		font-size: 42px;		
	}
	
	
	.banner{
		min-height: 85vh;
		padding: 120px 0 40px;
	}
	
	.contactus-box{
		background: none;
	}
	
	.contact-info{
		background: #fff;
	}
	
	.contact-form{
		background: var(--brand-black);
	}
	
	.footer-siteinfo{
		text-align: center;
		margin-bottom: 20px;
	}
	
	.footer-social{
		text-align: center;
	}
}

/* Mobile Layout */
@media only screen and (max-width: 767px){
	
	#responsive-menu{
		display: block;	
	}
	
	.slicknav_menu{
		margin-left: -15px;
		margin-right: -15px;
		padding: 0;
		background: none;
	}

	.slicknav_menu ul{
		background: var(--brand-black);
		position: relative;
		top: 16px;
	}
	
	.slicknav_menu li{
		padding: 0 10px;
	}

	.slicknav_menu .active a{
		color: var(--brand-primary);
	}
	
	.slicknav_menu a{
		color: #fff;
		padding-top: 6px;
		padding-bottom: 6px;
		text-transform: uppercase;
		border: 1px solid transparent;
	}

	.slicknav_menu a a{
		border: none !important;
	}
	
	.slicknav_nav .slicknav_row:hover,
	.slicknav_nav a:hover{
		color: var(--brand-primary);
	}
	
	.slicknav_menu  .active a{
		color: var(--brand-primary) !important;
	}
	
	.slicknav_btn{
		padding: 4px 4px;
		background: none;
	}
	
	.slicknav_icon-bar{
		box-shadow: none;
		border-radius: 0;
		margin: 2px 0;
	}
	
	.aboutus-section,
	.our-trainers,
	.we-teach-block,
	.schedule-section,
	.testimonial-section,
	.pricing,
	.contactus{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	
	.main-title{
		margin-bottom: 40px;
	}
	
	.main-title h2{
		font-size: 26px;
		line-height: 1.5em;
	}
	
	.about-content h2{
		font-size: 26px;
		line-height: 1.5em;
		margin-bottom: 20px;
	}
	
	.contact-info p{
		margin-bottom: 30px;
	}
}

/* Small Mobile Layout */
@media only screen and (max-width: 480px) {
	
	.banner-desc p,
	.banner-desc h2,
	.banner-tagline{
		font-size: 32px;
	}

	.banner{
		min-height: 80vh;
		padding: 110px 0 30px;
	}
	
	.about-image h3 span,
	.about-image h3{
		transform: skewX(0);
	}
	.about-image h3{
		min-width: auto;
		width: 100%;
		padding: 18px;
	}
	
	.navbar-brand img{
		height: 60px;
		width: auto;
		padding-top: 4px;
	}
	
	.contact-info h2{
		font-size: 26px;
		margin-bottom: 30px;
	}
	
	.contact-form{
		padding: 20px;
	}

	.price-amount{
		font-size: 34px;
	}

	.price-unified-box{
		padding: 28px 18px 24px;
	}

	.pricing-intro{
		font-size: 15px;
	}
}