/*
Theme Name: Agile Dogs V2
Theme URI: http://tradesignaus.com.au
Author: Tradesign
Author URI: http://tradesignaus.com.au
Description: The Theme is the clean wordpress theme.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: twentysixteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

/* root */
:root {
	--main-font: 'filson-pro';
	--primary-color: #1e2130;
	--secondary-color: #6f97dc;
	--alt-color: #29365c;
	--text-color: #61636e;
	--backdrop-color: #f0f0f2;
	--gray-color: #969aa6;
	--gray-bg: #f4f4f4;
	--white-bg: #fff;
	--shadow: 0 0 60px 0 rgba(40, 40, 52, 0.05);
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

img{
	max-width: 100%;
	height: auto;
}


/* Text meant only for screen readers */
.says,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	/* many screen reader and browser combinations announce broken words as they would appear visually */
	word-wrap: normal !important;
}

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 14px;
	font-weight: 700;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
	font-family: "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}


/**
 * 8.0 - Alignments
 */

.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

.alignright {
  float: right;
  margin: 0.375em 0 1.75em 10px;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}






/* Tag Cloud widget */
.tagcloud a {
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	display: inline-block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	line-height: 1;
	margin: 0 0.1875em 0.4375em 0;
	padding: 0.5625em 0.4375em 0.5em;
}

.tagcloud a:hover,
.tagcloud a:focus {
	border-color: #007acc;
	color: #007acc;
	outline: 0;
}


/*--------------------------------------------------------------
6.0 Forms
--------------------------------------------------------------*/

label {
	color: #fff;
	display: block;
	font-weight: 400;
	margin-bottom: 0.5em;
}

fieldset {
	margin-bottom: 1em;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #51647c;
	background: #fff;
	border: 1px solid #eeedef;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	display: block;
	padding: 15px 20px;
	width: 100%;
	font-size: 14px;
	outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: var(--primary-color);
	outline: none;
}

select {
	border: 1px solid #bbb;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	height: 3em;
	max-width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 0.5em;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: 400;
}

input[type="button"],
input[type="submit"] {
	background-color: var(--alt-color) !important;
	border: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding: 1em 2em;
	text-shadow: none;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
	width: 100%;
	max-width: 230px;
}

input + button,
input + input[type="button"],
input + input[type="submit"] {
	padding: 0.75em 2em;
}

button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
	background-color: #ddd;
	color: #222;
}

input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--secondary-color) !important;
	color: #fff;
}

button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
	background: #bbb;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #51647c;
}

:-moz-placeholder {
	color: #51647c;
}

::-moz-placeholder {
	color: #51647c;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

:-ms-input-placeholder {
	color: #51647c;
}


/**
 * 11.4 - Comments
 */

.comments-area {
	margin: 0 7.6923% 3.5em;
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
	padding-top: 1.75em;
}

.comments-title,
.comment-reply-title {
	border-top: 4px solid #1a1a1a;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 23px;
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.3125;
	padding-top: 1.217391304em;
}

.comments-title {
	margin-bottom: 1.217391304em;
}

.comment-list {
	list-style: none;
	margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px solid #d1d1d1;
	padding: 1.75em 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children > li {
	padding-left: 0.875em;
}

.comment-author {
	color: #1a1a1a;
	margin-bottom: 0.4375em;
}

.comment-author .avatar {
	float: left;
	height: 28px;
	margin-right: 0.875em;
	position: relative;
	width: 28px;
}

.bypostauthor > article .fn:after {
	content: "\f304";
	left: 3px;
	position: relative;
	top: 5px;
}

.comment-metadata,
.pingback .edit-link {
	color: #686868;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.6153846154;
}

.comment-metadata {
	margin-bottom: 2.1538461538em;
}

.comment-metadata a,
.pingback .comment-edit-link {
	color: #686868;
}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .comment-edit-link:hover,
.pingback .comment-edit-link:focus {
	color: #007acc;
}

.comment-metadata .edit-link,
.pingback .edit-link {
	display: inline-block;
}

.comment-metadata .edit-link:before,
.pingback .edit-link:before {
	content: "\002f";
	display: inline-block;
	opacity: 0.7;
	padding: 0 0.538461538em;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 1.5em 1.25em;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-reply-link {
	border: 1px solid #d1d1d1;
	border-radius: 2px;
	color: #007acc;
	display: inline-block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1;
	margin-top: 2.1538461538em;
	padding: 0.5384615385em 0.5384615385em 0.4615384615em;
}

.comment-reply-link:hover,
.comment-reply-link:focus {
	border-color: currentColor;
	color: #007acc;
	outline: 0;
}

.comment-form {
	padding-top: 1.75em;
}

.comment-form label {
	color: #686868;
	display: block;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-size: 13px;
	font-size: 0.8125rem;
	letter-spacing: 0.076923077em;
	line-height: 1.6153846154;
	margin-bottom: 0.5384615385em;
	text-transform: uppercase;
}

.comment-list .comment-form {
	padding-bottom: 1.75em;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
	color: #686868;
	font-size: 13px;
	font-size: 0.8125rem;
	line-height: 1.6153846154;
	margin-bottom: 2.1538461538em;
}

.no-comments {
	border-top: 1px solid #d1d1d1;
	font-family: Montserrat, "Helvetica Neue", sans-serif;
	font-weight: 700;
	margin: 0;
	padding-top: 1.75em;
}

.comment-navigation + .no-comments {
	border-top: 0;
	padding-top: 0;
}

.form-allowed-tags code {
	font-family: Inconsolata, monospace;
}

.form-submit {
	margin-bottom: 0;
}

.required {
	color: #007acc;
}

.comment-reply-title small {
	font-size: 100%;
}

.comment-reply-title small a {
	border: 0;
	float: right;
	height: 32px;
	overflow: hidden;
	width: 26px;
}

.comment-reply-title small a:hover,
.comment-reply-title small a:focus {
	color: #1a1a1a;
}

.comment-reply-title small a:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: -5px;
}




:focus, button:focus {
	outline: none;
}
a, a:hover, a:focus{
	text-decoration: none;
	outline: none;
}
a:hover, a {
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
h1, h2, h3, h4, h5, h6{
	color: var(--primary-color);
	margin: 0;
	font-weight: 700;
	line-height: 1.05;
}
h1 {
	font-size: 50px;
	line-height: 1.16;
}

h2 {
	font-size: 48px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
	line-height: 1.15;
}
h5 {
	font-size: 18px;
}
p {
	margin-bottom: 25px;
}
p:last-child, p:last-of-type {
	margin-bottom: 0;
}




/* Custom CSS */

body{
	font-family: var(--main-font);
	font-size: 18px;
	font-weight: 400;
	color: var(--text-color);
	background: var(--gray-bg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
}

/* Menu */
#main-wrap {
	overflow: hidden;
}

/* Header */
.admin-bar .header {
	top: 32px;
}
.header {
	transition: .4s all ease;
	padding: 25px 0 5px;
}
.header .container-fluid {
	max-width: 1600px;
}

.sticky-active {
	box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	background: var(--primary-color);
	padding: 10px 0;
}
body:not(.home) .header {
}

.logo {
	margin-right: 10px;
	max-width: 230px;
	transition: .4s all ease;
}
.sticky-active .logo {
	max-width: 220px;
	transition: .4s all ease;
}

.menu-with-info {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}
.main-menu {
	flex: 1;
	text-align: center;
}
.main-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.main-menu ul li {
	display: inline-block;
	position: relative;
}
.main-menu ul li a {
	color: var(--white);
	font-size: 15px;
	padding: 5px 8px;
	font-weight: 700;
	text-transform: none;
	display: block;
}

.main-menu ul li:hover > a {
	color: var(--secondary-color);
}

.main-menu ul li ul {
	position: absolute;
	width: 230px;
	background: var(--primary-color);
	text-align: left;
	left: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .4s all ease;
	padding: 10px 0;
	box-shadow: 0 0 30px rgba(0, 0, 0, .3);
}
.main-menu ul li ul li {
	display: block;
}
.main-menu ul li.menu-item-has-children {
	padding-right: 5px;
}
.main-menu > ul > li.menu-item-has-children::before {
	font-family: 'FontAwesome';
	content: '\f107';
	position: absolute;
	right: -3px;
	top: 50%;
	color: var(--white);
	font-weight: 700;
	transform: translateY(-50%);
}
.main-menu ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.main-menu ul li ul li a {
	display: block;
	padding: 8px 15px;
	font-size: 14px;
}

.main-menu ul li ul li ul {
	left: 100%;
	top: 0;
}
.main-menu > ul > li ul li.menu-item-has-children::before {
	font-family: 'FontAwesome';
	content: '\f105';
	position: absolute;
	right: 10px;
	top: 8px;
	color: var(--secondary-color);
	font-weight: 700;
}

.main-menu ul li a:hover, .main-menu ul > li.current_page_item > a {
	color: var(--secondary-color);
}
.main-menu ul li ul li a:hover{
	color: var(--secondary-color);
}
.main-menu ul.sub-menu > li.current_page_item > a {
	color: var(--secondary-color);
}
.right-phone {
	position: relative;
	display: flex;
}
.btn {
	background-color: var(--secondary-color);
	border: 0;
	color: var(--white);
	border-radius: 5px;
	padding: 12px 40px;
	font-size: 17px;
	transition: .4s all ease;
	font-weight: 700;
	text-transform: none;
}
.btn-white {
	background: var(--white-bg);
	color: var(--primary-color);
}

.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}
.btn:hover {
	background: var(--primary-color);
	color: var(--white);
	transition: .4s all ease;
	box-shadow: 0 0 15px rgba(111, 151, 220, .2);
}
.btn-alt {
	background: var(--alt-color);
}
.btn-alt:hover {
	background: var(--secondary-color);
}
.btn-loc {
	background: var(--primary-color);
}
.btn-loc:hover {
	background: var(--secondary-color);
}

.btn-lg {
	padding-right: 140px;
}

.white-btn {
	
}
.white-btn i {
	font-size: 35px;
}
.white-btn:hover {
	background: var(--primary-color);
	color: var(--white);
}



/* Modal */
.modal-dialog {
	max-width: 800px;
}
.modal-body input[type="submit"] {
	background: var(--secondary-color);
	color: var(--white);
	text-transform: uppercase;
	max-width: 200px;
}
.modal-body input[type="submit"]:hover {
	background: var(--primary-color);
}
.modal-body {
	padding: 0 30px 20px;
}
.modal-header h2 {
	font-size: 20px;
}
.modal-content {
	border-radius: 0;
	background: var(--white-bg);
}
.modal-header {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	flex-wrap: wrap;
	justify-content: center;
	border-bottom: none;
	text-align: center;
	flex-direction: column;
	align-items: center;
}

.pop-logo img {
	max-width: 200px;
}
.modal-header .close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: .4;
}
.popup-quote-form {
	margin-left: -5px;
	margin-right: -5px;
}
.popup-quote-form [class*="col-"] {
	margin-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
}
.modal-header p a {
	color: var(--secondary-color);
}

/* Section title */
.section-title {
	margin-bottom: 60px;
}
.section-title p {
	margin-top: 25px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.section-title h2 {
	position: relative;
}
.section-title h3 {
	color: var(--secondary-color);
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size:18px;
}




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

/* Banner */
.banner-area {
	padding: 250px 0;
	position: relative;
}
.banner-area::before {
	content: "";
	background: rgb(30,33,48);
	background: linear-gradient(90deg, rgba(30,33,48,1) 35%, rgba(30,33,48,0.1) 84%);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.banner-content {
	max-width: 700px;
	position: relative;
	z-index: 1;
	color: var(--white);
}
.banner-content h1 {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	color: var(--secondary-color);
}
.banner-content h2 {
	font-size: 50px;
	color: var(--white);
	margin-bottom: 15px;
}

.banner-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.banner-content ul li {
	position: relative;
	padding-left: 22px;
	font-size: 20px;
	margin-bottom: 5px;
}
.banner-content ul li::before {
	content: '\f105';
	font-family: 'FontAwesome';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 22px;
}



















/* Intro */
.intro-area {
	padding-bottom: 70px;
}
.intro-content {
	background: var(--white-bg);
	border-radius: 40px;
	margin-top: -70px;
	padding: 50px 50px 80px;
}
.intro-text {
	max-width: 700px;
	margin: 0 auto;
}
.intro-text h2 {
	font-size: 40px;
	margin-bottom: 20px;
}
.badge-img {
	position: absolute;
	top: -50px;
	right: -80px;
}
.badge-img img {
	max-width: 260px;
}





/* Why Choose */
.why-choose-area {
	padding: 50px 0 300px;
}
.single-choose {
	background: var(--white-bg);
	padding: 40px 25px;
	border-radius: 20px;
	transition: .4s all ease;
}
.single-choose:hover {
	box-shadow: 0 0 30px 0 rgba(40, 40, 52, 0.4);
	transition: .4s all ease;
}
.single-choose span {
	display: block;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--secondary-color);
}



/* Services */
.services-area {
	padding: 100px 0;
}
.card-box {
	margin: 0 10px;
}
.card-box a {
	display: block;
}
.card-box a:hover {
	opacity: .9;
}
.card-box-item, .card-box-img {
	position: relative;
}
.card-box-img::before {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 20px;
}
.card-box-img img {
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
}
.card-box-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	padding: 0 20px;
}
.card-box-content h3 {
	color: var(--white);
	font-size: 24px;
	line-height: 1.3;
}

/* Process */
.process-area {
	background: var(--gray-bg);
	padding-top: 100px;
}
.single-process {
	height: 100%;
	background: var(--white-bg);
	border-radius: 20px;
	padding: 40px 20px;
}
.process-img {
	margin-bottom: 25px;
}
.process-img img {
	height: 90px;
}
.process-content h4 {
	margin-bottom: 15px;
}
.process-content p {
	font-size: 16px;
	color: #61636e;
}

/* slick */
.slick-arrow {
	background: none;
	border: none;
	padding: 0;
	font-size: 40px;
	position: absolute;
	font-weight: 700;
	top: 50%;
	transform: translateY(-50%);
	left: -30px;
	cursor: pointer;
	color: var(--primary-color);
	z-index: 9;
}
.slick-arrow.slick-next {
	left: auto;
	right: -30px;
}
.slick-arrow:hover {
	color: var(--primary-color);
}
.slick-dots {
	margin-top: 50px;
	padding: 0;
	list-style: none;
	text-align: center;
	margin-bottom: 0;
}

.slick-dots li {
	display: inline;
	margin-left: 10px;
}
.slick-dots li button {
	outline: none;
	font-size: 0;
	border: none;
	padding: 0;
	width: 12px;
	height: 12px;
	background: #e6e6e6;
	cursor: pointer;
}
.slick-dots li.slick-active button {
	background: var(--secondary-color);
}


/* Testimonials */
.testimonial-area {
	padding: 100px 0;
}
.tt-content p {
	font-weight: 500;
	font-style: italic;
	font-size: 17px;
}
.tt-content {
	margin-bottom: 5px;
	margin-top: 10px;
}

.testimonial-all {
	background: #fff;
	border-radius: 30px;
	padding: 50px;
}
.testimonial-bg-color {
	max-width: 800px;
	margin: 0 auto;
}
.testimonial-all .slick-list {
	margin-top: -110px;
}

.tt-img {
	width: 150px;
	height: 150px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	background: #fff;
	padding: 5px;
}
.tt-img img {
	border-radius: 50%;
}

.testimonial-info h4 {
	font-size: 18px;
	color: #29365c;
}
.testimonial-all .slick-dots {
	margin-top: 10px;
}
.testimonial-all {
	padding-bottom: 25px;
}

/* Footer Top */

/* Cta */
.footer-loc-cta {
	margin-bottom: 70px;
}
.cta-gallery {
	background: #29365c;
	border-radius: 20px;
	padding-left: 30px;
	padding-right: 30px;
}
.cta-gal-content {
	display: flex;
	align-items: center;
}
.cta-gal-content img {
	max-width: 310px;
	margin-top: -25px;
}
.cta-gal-content h3 {
	text-align: right;
	font-size: 40px;
}
.cta-gal-content h3 a {
	color: var(--white);
}


.cta-locations {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
}
.cta-strip-content .btn {
	margin-top: 80px;
}




/* Gallery */
.footer-gallery-area {

}
.footer-gallery-lists {
	display: flex;
	align-items: flex-end;
	margin-left: -5px;
	margin-right: -5px;
}
.f-gallery-item {

}
.f-gallery-item a {
	display: block;
	overflow: hidden;
}
.f-gallery-item a img {
	transition: .4s all ease;
}
.f-gallery-item a:hover img{
	transform: scale(1.05);
	transition: .4s all ease;
	opacity: .9;
}


/* Footer */
.footer {
	background: var(--primary-color);
	padding: 70px 0 50px;
}
.footer-1 {
	padding-bottom: 50px;
}
.footer-logo img {
	max-width: 250px;
}
.footer-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-nav ul li {
	display: inline;
}
.footer-nav ul li:not(:last-child) {
	margin-right: 15px;
}
.footer-nav ul li a {
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	display: inline-block;
	text-transform: none;
}
.footer-2 {
	padding-bottom: 50px;
}
.phone-btn {
	font-weight: 700;
	color: var(--white);
	display: flex;
	align-items: center;
}
.phone-btn i {
	color: var(--secondary-color);
	font-size: 35px;
	margin-right: 10px;
}
.phone-btn:hover {
	color: var(--secondary-color);
}

.footer-3 p {
	font-size: 14px;
	color: #808494;
	font-weight: 500;
}
.footer-3 p a {
	color: #808494;
}
.website-by p a {

}
.footer-3 p a:hover, .footer-nav ul li a:hover {
	color: var(--secondary-color);
	opacity: 1;
}


/* Inner Page */
.inner-page-banner {
	padding: 320px 0 220px;
	position: relative;
}
.parent-pageid-68 .inner-page-banner {
	padding: 200px 0 100px;
}



.inner-page-banner::before {
	content: "";
	background: rgb(30,33,48);
	background: linear-gradient(90deg, rgba(30,33,48,1) 35%, rgba(30,33,48,0.1) 84%);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.inner-banner-content {
	position: relative;
	z-index: 1;
}
.inner-banner-content h1 {
	margin-bottom: 10px;
	color: var(--white);
}
.inner-banner-content p {
	font-size: 20px;
	color: var(--white);
	max-width: 500px;
}
.p-100 {
	padding: 80px 0;
}

/* Contact us */
.locations-page-area {
	background-position: bottom center;
}
.get-in-touch-content {
	margin-bottom: 50px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.get-in-touch-content h3 {
	margin-bottom: 20px;
}
.contact-page-content p {
}

.contact-us-page-form h2 {
	font-size: 40px;
}
.contact-us-form {
	margin-right: -9px;
	margin-left: -9px;
}
.contact-us-form [class*="col-"] {
	margin-bottom: 16px;
	padding-left: 9px;
	padding-right: 9px;
}
.contact-us-page-form {
	margin-top: 50px;
	background: var(--white-bg);
	padding: 50px 50px 30px;
	border-radius: 10px;
}
.contact-us-form input, .contact-us-form textarea {
	background: var(--white-bg);
}
.contact-title h3, .contact-title h3 a {
	color: var(--secondary-color);
}
.contact-title h3 a:hover {
	opacity: .7;
}
textarea {
	height: 160px;
}
.contact-info-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-left: 40px;
	padding-right: 40px;
}
.single-contact-info {
	text-align: center;
	width: calc(100%/4 - 20px);
	margin: 0 10px;
	padding: 50px 20px;
	background: var(--secondary-color);
	box-shadow: var(--shadow);
	border-radius: 10px;
}
.info-icon {
	margin-bottom: 15px;
}
.info-icon i {
	font-size: 50px;
	color: var(--primary-color);
}
.info-content a, .info-content p {
	color: var(--white);
}
.info-content a:hover {
	color: var(--secondary-color);
}
.info-content h3 {
	color: var(--white);
	font-size: 24px;
}

.enquiry-area {
	padding: 100px 0;
}


/* Gallery */
.grid:after {
	content: '';
	display: block;
	clear: both;
}
.grid-item {
	width: calc(100%/4);
	float: left;
	padding: 10px;
}
.grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}
.grid-sizing {
	width: calc(100%/4);
}
.gallery-grid {
	margin-left: -10px;
	margin-right: -10px;
}
.filters-button-group {
	margin-bottom: 40px;
}
.filters-button-group .button {
	background: #e6e6e6;
	border: 0 solid;
	color: var(--primary-color);
	font-size: 15px;
	font-weight: 700;
	padding: 10px 15px;
	margin: 0 5px;
	cursor: pointer;
	border-radius: 5px;
}
.filters-button-group .button.active, .filters-button-group .button:hover {
	color: var(--white);
	background: var(--secondary-color);
}
.single-gallery a {
	display: block;
	transition: .4s all ease;
	height: 270px;
}
.single-gallery a:hover {
	opacity: .8;
}


/* Locations */
.f-40 {
	font-size: 40px;
}
.single-location {
	display: flex;
	align-items: center;
	background: #fff;
	flex-wrap: wrap;
	padding: 30px 50px;
	border-radius: 30px;
}
.single-location:not(:last-child) {
	margin-bottom: 30px;
}
.location-left {
	width: 50%;
}
.location-right {
	width: 50%;
}
.location-left-content h2 {
	margin-bottom: 15px;
}
.location-left-content p {
	padding-bottom: 20px;
}
.location-right iframe {
	border-radius: 10px;
}



/* Classes */
.class-img img {
	max-width: 500px;
}
.tab-title {
	margin-bottom: 60px;
}

.nav-pills .nav-link {
	border-radius: 10px;
	background: #fff;
	padding: 15px 40px;
	margin: 0 10px;
	color: var(--primary-color);
	font-weight: 700;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: var(--white);
	background-color: var(--alt-color);
}

.single-cl {
	height: 100%;
	background: #fff;
	padding: 40px 30px;
	border-radius: 20px;
}
.level {
	color: var(--secondary-color);
	font-weight: 700;
	margin-bottom: 15px;
}
.cl-item-content h3 {
	margin-bottom: 5px;
}
.week {
	font-weight: 500;
	color: #999999;
}

.color-bar {
	width: 100%;
	height: 30px;
	border-radius: 5px;
	box-shadow: 0 0 1px #222;
	margin-bottom: 25px;
}
.time {
	color: var(--primary-color);
	font-weight: 700;
	padding-bottom: 30px;
}
.price  {
	font-size: 30px;
}
.price span {
	display: block;
	font-size: 16px;
	color: #999999;
	font-weight: 500;
	margin-top: 5px;
}




/* Services */
.services-parent-lists .col-lg-4 {
	margin-bottom: 50px;
}
.service-image {
	margin-bottom: 30px;
}
.service-image a {
	display: block;
}
.service-image img {
	height: 230px;
	border-radius: 30px;
	object-fit: cover;
}
.service-content h4 {
	margin-bottom: 15px;
}



/* Services Child */
.service-banner-content {
	max-width: 600px;
}
.service-banner-content h1 {
	color: var(--secondary-color);
	text-transform: uppercase;
	margin-bottom: 15px;
	font-size: 18px;
}
.service-banner-content h2 {
	color: var(--white);
	margin-bottom: 25px;
}
.service-banner-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.service-banner-content ul li {
	color: var(--white);
	padding-left: 35px;
	position: relative;
	margin-bottom: 8px;
}
.service-banner-content ul li::before {
	content: "";
	background-image: url('img/check.png');
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
}

.service-child-intro-content h2 {
	font-size: 35px;
	margin-bottom: 20px;
}

.s-class-item {
	height: 100%;
	background: var(--white-bg);
	padding: 40px;
	border-radius: 20px;
}
.s-class-text p {
	font-size: 16px;
}
.s-class-img {
	margin-bottom: 25px;
}
.s-class-img img {
	height: 80px;
	object-fit: contain;
}
.s-class-text h4 {
	margin-bottom: 15px;
}


.training-levels-title h2 {
	color: var(--white);
}
.training-levels-title p {
	color: #a4a8ba;
}
.single-cl.tl-item {
	padding: 30px 20px;
}
.tl-item .cl-item-content {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
}
.cl-cnt .btn {
	padding-left: 5px;
	padding-right: 5px;
	width: 100%;
}
.cl-text-title .level {
	color: #999;
	margin-bottom: 10px;
}
.cl-text-title h3 {
	margin-bottom: 25px;
}
.cl-text-title .time {
	display: block;
	padding-bottom: 10px;
	color: var(--secondary-color);
}
.cl-text-title p {
	font-size: 16px;
}
.cl-cnt {
	margin-top: 30px;
}
.cl-text-title h3 {
	margin-bottom: 25px;
}




/* About Us */
.white-bg {
	background: var(--white);
}
.about-page-content {
	padding-bottom: 50px;
}
.about-page-content h3 {
	margin-bottom: 20px;
}

.single-value {
	background: var(--white-bg);
	padding: 30px 15px;
	border-radius: 20px;
}
.single-value p {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 16px;
}


.brands-carousel {
	display: flex;
	align-items: center;
	justify-content: center;
}
.brand-img {
	padding: 0 20px;
}
.brand-img img {
	height: 60px;
	object-fit: contain;
}



/* New Add */
.about-page-content {
	padding-bottom: 0;
	margin-bottom: 40px;
}
.services-classes-area ul {
    list-style-position: inside;
}
.scroll-text {
	columns: 2 auto;
	text-align: left;
}
.long-content {
	display: none;
}
.tt-content {
	min-height: 150px;
}
.portfolio-area {
	padding-top: 50px;
	padding-bottom: 50px;
}

.portfolio-img img {
	height: 200px;
	width: 100%;
	object-fit: cover;
}

.agility-gallery .slick-arrow {
	color: #fff;
	left: 15px;
}
.agility-gallery .slick-arrow.slick-next {
	color: #fff;
	left: auto;
	right: 15px;
}
.sn-gl-item img {
	height: 300px;
	width: 100%;
	object-fit: cover;
}
.coming-soon-area span {
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 50%;
	color: #fff;
	position: ;
	margin: -75px auto 0;
	position: relative;
	font-weight: 700;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.abp-img img {
	max-width: 350px;
}
.s-class-text ul, .section-title ul {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	text-align: center;
	font-size: 16px;
	max-width: 200px;
}
.s-class-text ul li, .section-title ul li {
	position: relative;
	padding-left: 15px;
}
.s-class-text ul li::before, .section-title ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary-color);
	position: absolute;
	left: 0;
	top: 7px;
}

.s-class-btn-bottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.single-service {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.section-title ul {
	max-width: 660px;
	font-size: inherit;
}

.single-faq {
	background: var(--primary-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 25px;
}
.faq-acc-content {
	display: none;
	margin-top: 25px;
}
.single-faq h3 {
	font-weight: 600;
	position: relative;
	padding-left: 40px;
	cursor: pointer;
	color: var(--white);
}
.single-faq h3::before {
	position: absolute;
	color: var(--white);
	content: "\f0fe";
	left: 0;
	top: 0;
	font-family: "FontAwesome";
}
.single-faq.active h3::before {
	content: "\f146";
}
.faq-acc-content p {
	color: var(--white);
}
.single-cl {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.single-portfolio-item {
	margin-bottom: 30px;
}
.why-choose-area::before {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #1e2130;
	opacity: .6;
	content: "";
	top: 0;
	left: 0;
}
.why-choose-area {
	position: relative;
}

.single-p-s {
	background: #fff;
	height: 100%;
	border-radius: 15px;
}
.single-p-s h4 {
	margin-bottom: 20px;
}
.pricing-service-area .col-lg-3 {
	margin-bottom: 30px;
}
.single-p-s p {
	line-height: 1.2;
}
.single-p-s strong {
	color: var(--primary-color);
	font-size: 30px;
}
.single-p-s h3 {
	font-size: 24px;
}

.ps-head-item {
	background: var(--primary-color);
	border-radius: 15px 15px 0 0;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
}
.ps-p-text {
	padding: 30px 10px;
}



.faq-area {
	display: none;
}
.ps-p-text {
	display: flex;
	justify-content: space-evenly;
}
.ps-p-text p {
	font-size: 16px;
	margin: 0;
}
.s-class-text h4 {
	font-size: 22px;
}


/* Live edit */
.abt-new-content ul {
	text-align: left;
}
.abt-new-content b {
	display: block;
	margin-bottom: 20px;
}
.abt-new-content .col-lg-12 p {
	max-width: 620px;
	margin: 0 auto;
}
.abt-exp-ul ul {
	columns: 2 auto;
	column-gap: 40px;
}
.g-caption {
	background: rgba(0, 0, 0, .4);
	position: absolute;
	bottom: 10px;
	color: #fff;
	font-size: 14px;
	width: calc(100% - 20px);
	left: 10px;
	padding: 15px;
	border-radius: 0 0 20px 20px;
	text-align: center;
	line-height: 1.3;
}




/* Thank you */
.thankyou-area {
	padding: 100px 0;
}
.thankyou-content h2 {
	font-size: 24px;
}


/* 404 */
.error-404 {
	padding: 100px 0;
}
.error-404 h1 {
	font-size: 200px;
}
.error-404 h2 {

}
.wpcf7 form .wpcf7-response-output {
	margin: 10px;
	text-align: center;
	font-size: 14px;
}
.wpcf7 .ajax-loader {
	position: absolute;
	margin: 0;
}
.wpcf7-spinner {
	position: absolute;
}
.wpcf7-form small {
	display: block;
	margin-top: 15px;
}
.wpcf7-not-valid-tip {
	font-size: 14px;
	text-align: left;
}

/*-------- Blog Post grid for home--------- */
.rp-section {
	padding: 80px 0 90px;
	background: #f7f8fb;
	font-family: 'filson-pro', 'Helvetica Neue', Arial, sans-serif;
}
 
/* ── Section Header ── */
.rp-section-header {
	text-align: center;
	margin-bottom: 52px;
}
 
.rp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #26365F;
	font-family: 'filson-pro', sans-serif;
	margin-bottom: 14px;
}
 
.rp-eyebrow::before,
.rp-eyebrow::after {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: #26365F;
	opacity: 0.35;
	border-radius: 2px;
}
 
.rp-section-title {
	font-family: 'filson-pro', 'Helvetica Neue', Arial, sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: #26365F;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
 
.rp-section-subtitle {
	font-size: 16px;
	color: #61636E;
	line-height: 1.65;
	max-width: 480px;
	margin: 0 auto;
	font-family: 'filson-pro', sans-serif;
}
 
/* ── Grid ── */
.rp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 52px;
}
 
/* ── Card ── */
.rp-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(38, 54, 95, 0.07);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform 0.28s cubic-bezier(.22,.68,0,1.2),
	            box-shadow 0.28s ease,
	            border-color 0.22s ease;
	position: relative;
}
 
.rp-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(38, 54, 95, 0.13);
	border-color: #dde3f0;
	text-decoration: none;
}
 
/* ── Card Thumbnail ── */
.rp-card-thumb {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #dde3f0;
	position: relative;
	flex-shrink: 0;
}
 
.rp-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
 
.rp-card:hover .rp-card-thumb img {
	transform: scale(1.06);
}
 
/* No image fallback */
.rp-card-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #26365F 0%, #3a4f8a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
 
.rp-card-thumb-placeholder svg {
	width: 44px;
	height: 44px;
	opacity: 0.25;
}
 
/* Category pill on top of image */
.rp-card-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #26365F;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 12px;
	border-radius: 100px;
	font-family: 'filson-pro', sans-serif;
	z-index: 2;
}
 
/* ── Card Body ── */
.rp-card-body {
	padding: 26px 26px 0;
	flex: 1;
	display: flex;
	flex-direction: column;
}
 
.rp-card-title {
	font-family: 'filson-pro', 'Helvetica Neue', Arial, sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: #26365F;
	line-height: 1.3;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: opacity 0.2s;
}
 
.rp-card:hover .rp-card-title {
	opacity: 0.8;
}
 
.rp-card-excerpt {
	font-size: 14px;
	line-height: 1.7;
	color: #61636E;
	font-family: 'filson-pro', sans-serif;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}
 
/* ── Card Footer ── */
.rp-card-footer {
	padding: 18px 26px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #f0f2f8;
	margin-top: 20px;
}
 
.rp-card-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #9a9caa;
	font-family: 'filson-pro', sans-serif;
}
 
.rp-card-meta svg {
	width: 13px;
	height: 13px;
	stroke: #b0b3c0;
	flex-shrink: 0;
}
 
.rp-card-read-more {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 700;
	color: #26365F;
	font-family: 'filson-pro', sans-serif;
	letter-spacing: 0.02em;
	transition: gap 0.2s;
	opacity: 0;
	transition: opacity 0.22s, gap 0.2s;
}
 
.rp-card:hover .rp-card-read-more {
	opacity: 1;
	gap: 8px;
}
 
.rp-card-read-more svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
}
 
/* ── CTA Button ── */
.rp-cta-wrap {
	text-align: center;
}
 
.rp-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 40px;
	background: #26365F;
	color: #ffffff;
	font-family: 'filson-pro', 'Helvetica Neue', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	border-radius: 100px;
	text-decoration: none;
	letter-spacing: 0.025em;
	box-shadow: 0 6px 24px rgba(38, 54, 95, 0.22);
	transition: transform 0.22s cubic-bezier(.22,.68,0,1.2),
	            box-shadow 0.22s ease,
	            background 0.2s;
}
 
.rp-cta-btn:hover {
	background: #1e2c50;
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(38, 54, 95, 0.28);
	color: #ffffff;
	text-decoration: none;
}
 
.rp-cta-btn:active {
	transform: translateY(0);
}
 
.rp-cta-btn svg {
	width: 17px;
	height: 17px;
	stroke: currentColor;
	transition: transform 0.2s;
}
 
.rp-cta-btn:hover svg {
	transform: translateX(3px);
}
 
/* ── No Posts State ── */
.rp-no-posts {
	text-align: center;
	padding: 60px 20px;
	color: #9a9caa;
	font-family: 'filson-pro', sans-serif;
	font-size: 15px;
	grid-column: 1 / -1;
}
 
/* ── Responsive ── */
@media (max-width: 900px) {
	.rp-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
 
@media (max-width: 580px) {
	.rp-section {
		padding: 56px 0 68px;
	}
 
	.rp-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
 
	.rp-section-header {
		margin-bottom: 36px;
	}
 
	.rp-cta-btn {
		padding: 14px 30px;
		font-size: 14px;
	}
}

/* Responsive */
@media (min-width: 768px) {
	.testimonial-carousel .slick-list {
		height: auto !important;
	}	
}
@media (max-width: 1600px) {

	.sn-gl-item img {
		height: 210px;
	}
	
}

@media (max-width: 1366px) {

}

@media (max-width: 1250px) {
	.main-menu ul li a {
		font-size: 14px;
		padding: 5px 10px;
	}
}


/*
 * Large devices (desktops, less than 1200px)
 */

@media (max-width: 1199.98px) {
	.main-menu ul li a {
		font-size: 12px;
		padding: 5px 5px;
	}
	.head-contact-text .btn {
		font-size: 14px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.phone-btn {
		font-size: 15px;
	}
	.info-content a, .info-content h3 {
		font-size: 15px;
	}
	.badge-img img {
		max-width: 200px;
	}
	.card-box-img img {
		height: 330px;
	}
	.cta-gal-content img {
		max-width: 240px;
	}
	.cta-gal-content h3 {
		font-size: 30px;
	}
	.cta-strip-content h2 {
		font-size: 40px;
	}
	.single-value {
		padding: 50px 20px 80px;
	}
	.cl-item-content h3 {
		font-size: 24px;
	}
	.cl-cnt .btn {
		font-size: 14px;
	}
	.week {
		font-size: 14px;
	}
	.time {
		font-size: 14px;
	}
	.filters-button-group .button {
		font-size: 13px;
		padding: 10px 10px;
		margin: 0 2px;
	}
	.single-gallery a {
		height: 217px;
	}
.values-lists .col-6 {
	margin-bottom: 30px;
}








}

/*
 * Medium devices (tablets, less than 992px)
 */

@media (max-width: 991.98px) {
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		display: block;
	}
	.slicknav_menu {
		background: transparent;
		margin-right: -15px;
		margin-left: -15px;
		padding: 0;
	}
	.slicknav_nav {
		background: rgba(0, 0, 0, 0);
		padding: 15px 0 0;
		text-align: left;
	}
	.slicknav_btn {
		margin: 5px 5px 6px;
		text-decoration: none;
		text-shadow: none;
		border-radius: 0;
		background-color: #eee;
		position: absolute;
		right: 10px;
		top: 5px;
	}
	.slicknav_menu .slicknav_icon-bar {
		background-color: #222;
	}
	.slicknav_nav .slicknav_row, .slicknav_nav a {
		text-transform: none;
		font-weight: 700;
		color: var(--white);
		font-size: 16px;
	}
	.slicknav_nav a:hover {
		background: transparent;
		color: var(--secondary-color);
	}
	.slicknav_nav .slicknav_row:hover {
		background: transparent;
		color: var(--secondary-color);
	}
	.slicknav_nav {
		margin-left: -15px;
	}
	.right-phone {
		margin-left: 0;
		flex: 1;
		justify-content: flex-end;
		align-items: center;
	}
	.new-menu-open {
		font-size: 26px;
		margin-left: 10px;
		color: var(--secondary-color);
		line-height: 1;
		cursor: pointer;
	}
	.mobile-menu {
		padding: 0 15px;
	}
	.main-menu ul li a {
		font-size: 13px;
		padding: 0 5px;
	}
	.mobile-head-bg {
		background: var(--primary-color);
	}
	.p-100 {
		padding: 50px 0;
	}
	.logo {
		max-width: 220px;
	}
	.sticky-active .logo {
		max-width: 180px;
	}
	.header {
		padding: 10px 0;
	}
	body {
		font-size: 17px;
	}

	.footer-logo img {
		max-width: 100%;
	}
	.footer-1 h3 {
		font-size: 18px;
	}
	h1 {
		font-size: 40px;
	}
	.info-content a {
		font-size: 14px;
	}
	.single-contact-info {
		padding: 40px 10px;
	}
	.intro-title {
		margin-bottom: 20px;
	}
	.footer-cta-content h2 {
		font-size: 32px;
	}
	.footer-nav ul li a {
		font-size: 12px;
	}
	.footer-nav ul li:not(:last-child) {
		margin-right: 5px;
	}
	.footer-1 h4 {
		font-size: 16px;
	}
	.grid-item, .grid-sizing {
		width: calc(100%/3);
	}

	.banner-area {
		padding: 150px 0;
	}
	.banner-content {
		max-width: 450px;
	}
	.banner-content h2 {
		font-size: 34px;
	}
	.intro-text h2 {
		font-size: 34px;
	}
	.badge-img img {
		max-width: 140px;
	}
	.badge-img {
		top: -35px;
		right: -60px;
	}
	h2 {
		font-size: 34px;
		line-height: 1.2;
	}
	.why-choose-lists .col-lg-3, .process-lists .col-lg-3, .values-lists .col-lg-3, .trainning-list-row .col-lg-3, .about-class-lists .col-lg-3 {
		margin-bottom: 30px;
	}
	.cta-strip-content h2 {
		font-size: 26px;
	}
	.cta-strip-content {
		padding: 20px 0;
	}
	.cta-gal-content {
		align-items: flex-end;
		height: 100%;
	}
	.cta-gal-content h3 {
		font-size: 20px;
		margin-bottom: 50px;
	}
	.cta-gal-content img {
		max-width: 170px;
	}
	.phone-btn {
		font-size: 14px;
	}
	.footer-phone .btn {
		font-size: 14px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.service-child-intro-content h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 24px;
	}
	.location-left {
		width: 100%;
		text-align: center;
		margin-bottom: 25px;
	}
	.location-right {
		width: 100%;
	}
	.filters-button-group .button {
		width: calc(100%/4 - 4px);
		margin-bottom: 5px;
	}
	.filters-button-group {
		flex-wrap: wrap;
	}
	.single-contact-info {
		width: calc(100%/3 - 20px);
	}



}


@media (max-width: 782px) {
	.admin-bar .header {
		top: 46px;
	}
}

/*
 * Small devices (landscape phones, less than 768px)
 */
@media (max-width: 767.98px) {
	.header .container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
	.menu-with-info {
		flex: inherit;
	}
	.footer {
		padding: 40px 0 30px;
	}
	.footer-2 {
		display: none;
	}
	.footer-1 {
		padding-bottom: 15px;
	}
	.footer-1 h3 {
		font-size: 20px;
	}
	.mp-50 {
		padding: 50px 0;
	}
	.modal-body {
		padding: 30px 15px 15px;
	}
	.logo {
		max-width: 130px;
		margin-right: 0;
	}
	.sticky-active .logo {
		max-width: 110px;
	}

	h1 {
		font-size: 26px;
	}

	.slick-arrow {
		left: -14px;
	}
	.slick-arrow.slick-next {
		right: -14px;
	}

	.our-clients-area {
		padding: 0 0 50px;
	}
	.all-clients .slick-arrow {
		display: none !important;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 20px;
	}
	.footer-cta-content h2 {
		font-size: 22px;
	}
	.footer-logo img {
		max-width: 200px;
	}
	.banner-content {
		text-align: center;
		margin: 0 auto;
	}	
	.banner-content p {
		font-size: 15px;
	}
	.inner-page-banner {
		padding: 100px 0 50px;
	}

	.inner-banner-content {
		text-align: center;
	}

	.contact-us-page-form h2 {
		font-size: 25px;
	}
	.section-title {
		margin-bottom: 30px;
	}
	.banner-content ul {
		text-align: left;
		max-width: 290px;
		margin-left: auto;
		margin-right: auto;
	}
	.banner-content ul li {
		padding-left: 16px;
		font-size: 16px;
	}

	.banner-area {
		padding: 100px 0 150px;
		background-position: 80%;
	}
	.banner-area::before {
		background: rgba(43,55,92,.7);
	}
	.slick-arrow {
		font-size: 50px;
	}

	.filters-button-group {
		flex-wrap: wrap;
	}
	.grid-item, .grid-sizing {
		width: calc(100%/2);
	}
	.single-contact-info {
		margin-left: 5px;
		margin-right: 5px;
	}
	.modal-title {
		font-size: 30px;
	}
	.btn {
		padding: 12px 25px;
		font-size: 14px;
	}
	.intro-content {
		padding: 50px 25px 50px;
	}
	.badge-img {
		top: -25px;
		right: -22px;
	}
	.badge-img img {
		max-width: 100px;
	}
	.intro-area {
		padding-bottom: 20px;
	}
	.why-choose-area {
		padding: 50px 0 0;
	}	
	.single-choose {
		padding: 30px 15px 30px;
	}
	.services-area {
		padding: 50px 0;
	}
	.card-box-img img {
		height: 260px;
	}
	.process-area {
		padding-top: 50px;
	}
	.cta-locations {
		margin-top: 30px;
	}
	.footer-loc-cta {
		margin-bottom: 115px;
	}
	.inner-banner-content h1 {
		font-size: 30px;
	}
	.inner-banner-content p {
		font-size: 16px;
	}
	.about-page-content {
		text-align: center;
	}
	.brands-carousel {
		flex-wrap: wrap;
	}
	.single-brand {
		width: calc(100%/3);
	}
	.service-banner-content ul {
		text-align: left;
		max-width: 340px;
		margin-left: auto;
		margin-right: auto;
	}
	.service-child-intro-content {
		text-align: center;
	}
	.scl-img {
		padding-top: 30px;
	}
	.scl-img img {
		max-width: 250px;
	}
	.s-classes-lists .col-lg-4:not(:last-child) {
		margin-bottom: 30px;
	}
	.class-img img {
		max-width: 500px;
		width: 100%;
	}
	.nav-pills .nav-link {
		padding: 15px;
		margin: 0 5px;
		font-size: 11px;
	}
	.testimonial-area {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.f-40 {
		font-size: 30px;
	}
	.single-location {
		padding: 30px 15px;
	}
	.get-in-touch-content h3 {
		font-size: 30px;
	}
	.filters-button-group .button {
		width: calc(100%/3 - 4px);
	}
	.contact-info-list {
		padding-left: 0;
		padding-right: 0;
		margin-left: -10px;
		margin-right: -10px;
	}
	.single-contact-info {
		width: calc(100%/3 - 10px);
	}
	.enquiry-area {
		padding: 50px 0;
	}
	.coming-soon-area span {
		width: 100px;
		height: 100px;
		margin: -50px auto 0;
		text-align: center;
	}
	.service-banner-content ul {
		max-width: 240px;
	}	
	.single-faq h3 {
		padding-left: 25px;
	}	
	
	.scroll-text {
		columns: 1 auto;
		text-align: left;
	}	
	.single-p-s {
		max-width: 260px;
		margin: 0 auto;
	}	
	.single-p-s h3 {
		font-size: 24px;
	}
	.inner-page-banner::before {
		background: rgb(30, 33, 48, .6) !important;
	}
	
	.parent-pageid-68 .inner-page-banner {
		padding: 100px 0 50px;
	}	
	.service-banner-content h1 {
		font-size: 18px !important;
	}
	
	.abt-exp-ul ul {
		columns: 1 auto;
	}	
	
	
}


@media (max-width: 600px) {
	.admin-bar .header.sticky-active {
		top: 0;
	}
}

/*
 * Extra small devices (portrait phones, less than 576px)
 */

@media (max-width: 575.98px) {
	/* 404 */
	.error-404 {
		padding: 50px 0;
	}
	.error-404 h1 {
		font-size: 100px;
	}
	.modal-body {
		padding: 0 15px 15px;
	}
	.logo {
		margin-right: 10px;
		flex: 1;
	}
	.head-contact-text {
		align-items: center;
	}

	.phone-btn i {
		display: none;
	}
	.head-contact-text .btn {
		font-size: 11px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.phone-btn {
		font-size: 12px;
		padding: 12px 10px;
		background: var(--secondary-color);
		margin-right: 0 !important;
		border-radius: 5px;
	}
	.filters-button-group .button {
		width: calc(100%/2 - 4px);
	}
	.single-gallery a {
		height: 162px;
	}
	.card-box-content h3 {
		font-size: 16px;
	}

	.inner-page-banner {
		min-height: 350px;
		display: flex;
		align-items: center;
		justify-content: center;
	}	
	
}










