/*
Theme Name: Kmads Theme
Theme URI: 
Author: Mediaengine
Author URI: http://www.mediaengine.com.au
Description: 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:

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

/* GRID LAYOUT */

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  /* Removes padding behaviour on widths */
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
 
/* Attribute selector */
[class*='col-'] {
  float: left;
}
 
/* Floats last ".bit-" to the right */
[class*='col-']:last-of-type {
  float: right;
}

/* Large Devices, Wide Screens */


/* Clearfix */
.container:after,
.containerSlider:after {
  content: "";
  display: table;
  clear: both;
}

/* Main Widths */
.col-1  {width: 100%;}
.col-2  {width: 50%;}
.col-3  {width: 33.33%;}
.col-4  {width: 25%;}
.col-5  {width: 20%;}
.col-6  {width: 16.6666666667%;}
.col-7  {width: 14.2857142857%;}
.col-8  {width: 12.5%;}
.col-9  {width: 11.1111111111%;}
.col-10 {width: 10%;}
.col-11 {width: 9.09090909091%;}
.col-12 {width: 8.33%;}
.col-70 {width: 70%;}
.col-30 {width: 30%;}

.col-70.marg-right {
	padding-right: 30px;
}

@media only screen and (min-width : 1200px) {
.container,
.containerSlider {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) and (max-width: 1199px) {
.container,
.containerSlider {
	padding: 0 20px;
}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) and (max-width: 991px) {
.col-2,
.col-3,
.col-4 {
	width: 50%;
}

.container,
.containerSlider {
	max-width: 991px;
	padding: 0 20px;
}
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) and (max-width: 767px) {
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	width: 100%;
}

.col-70 {width: 100%;}
.col-30 {width: 100%;}

.container {
	max-width: 767px;
	padding: 0 20px;
}

.containerSlider {
	max-width: 767px;
	padding:0;
}
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) and (max-width: 479px) {
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	width: 100%;
}
	
.col-70 {width: 100%;}
.col-30 {width: 100%;}

	
.container {
	padding: 0 20px;
}     
}

/*  GLOBAL STYLES  */
body {
	font-family: 'robotolight_italic';
	margin-top: 85px;
}

h1 { 
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h3 { 
    display: block;
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h4 { 
    display: block;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h5 { 
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h6 { 
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

p {
	margin-bottom: 10px;
}


/*  NAVIGATION STYLES  */

/* MOBILE MENU STYLES */

.hamburglerContainer:before {
  content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 10px;
    top: 0;
    left: -10px;
    border-top: 35px solid transparent;
    border-right: 7px solid #ea861e;
    transition: border-right 0.3s ease;
}

.hamburglerContainer:after {
  	content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 10px;
    top: 0;
    right: -10px;
    border-bottom: 35px solid transparent;
    border-left: 7px solid #ea861e;
    transition: border-right 0.3s ease;
}

.hamburglerContainer,
.hamburglerContainer {
  display:none;
}

@media (max-width: 880px) {
	.hamburglerContainer {
		display: block;
		position: fixed;
		background: #ea861e;
		top: 23px;
		right: 25px;
		height: 35px;
		width: 35px;
		cursor: pointer;
		z-index: 1000;
		padding-left: 4px;
	}
	
	.hamburgler-icon-wrapper {
		display: block;
		position: absolute;
		top: 3px;
		left: 4px;
		height: 25px;
		width: 25px;
		cursor: pointer;
	}
}

.hamburgler-icon,
.hamburgler-icon:before,
.hamburgler-icon:after {
  content: '';
  position: absolute;
  height: 4px;
  width: 26px;
  background: #283438;
  transition: all 0.2s ease
}

.hamburgler-icon {
  top: 0.75em
}

.hamburgler-icon:before {
  top: -0.45em
}

.hamburgler-icon:after {
  top: 0.45em
}

.hamburgler-active .hamburgler-icon {
  background: transparent;
  transform: rotate(-135deg)
}

.hamburgler-active .hamburgler-icon:before,
.hamburgler-active .hamburgler-icon:after {
  top: 0
}

.hamburgler-active .hamburgler-icon:before {
  transform: rotate(90deg)
}

.hamburgler-active .hamburgler-icon,
.hamburgler-active .hamburgler-icon:before,
.hamburgler-active .hamburgler-icon:after {
  background: white
}

.hamburgler-menu {
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(40, 52, 56, 0.98);
  text-align: center
}

.hamburgler-active .hamburgler-menu {
  opacity: 1;
  pointer-events: initial;
  z-index: 110;
}

.hamburgler-menu-list {
  display: block;
  transition: all 0.4s ease;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2)
}

.hamburgler-active .hamburgler-menu-list {
  transform: translate(-50%, -50%) scale(1)
}

.hamburgler-menu-list li {
	font-family: 'evogriaitalic';
	text-decoration: none;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	display: block;
	padding: 0;
	position: relative;
	margin: 10px 20px;
	margin-bottom: 0px;
	transition: .3s ease;
}

.hamburgler-menu-list li a{
	color: #ea861e;
	text-decoration: none;
}

.hamburgler-menu .socialIcons {
	display: block;
    position: absolute;
    padding-top: 18px;
    font-size: 0;
    bottom: 15px;
    left: 50%;
    margin-left: -58px;
}

.hamburgler-menu .socialIcons a.icons {
    background: #ea861e;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: .3s ease;
    margin-left: 8px;
    padding-top: 2px;
}

.hamburgler-menu .socialIcons a:hover.icons {
    background: #fff;
    color: #ea861e;
}


.nav-container {
 float: right;
 z-index: 100;
}

@media only screen and (max-width: 880px) {
nav {
	display:none;
}
}


/* Standard Navigation */
.navBg {
	background: #283438;
	height: 85px;
}

nav {
	position: relative;
}
	
nav #standard-menu {
	display:block;
	position: absolute;
	right: 0;
	top: 30px;
}
	
nav #standard-menu ul.menu {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'evogriaitalic';
}
	
nav #standard-menu ul.menu > li {
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0;
}
	
nav #standard-menu ul.menu > li > a {
	color:#ea861e;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 1px;
	display: block;
	padding: 0;
	position: relative;
	margin: 0 20px;
	margin-bottom: 0px;
	transition: .3s ease;
}

@media only screen and (max-width: 1000px) {
nav #standard-menu ul.menu > li > a {
	font-size: 15px;
	margin: 0 8px;
}
}
	
nav #standard-menu ul.menu > li.current_page_item > a {
	color:#fff;
	border-bottom: 2px solid #fff;
}
	
nav #standard-menu ul.menu > li:hover > a {
	color:#fff;
	border-bottom: 2px solid #fff;
}
	
nav #standard-menu ul.menu > li.menu-item-has-children > a {
	padding-right: 20px;
}
	
nav #standard-menu ul.menu > li.menu-item-has-children > a:before {
	content: "\f078";
	font-family: fontAwesome;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	  
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	   
	display: block;
	position: absolute;
	top:5px;
	right: 0;
	font-size: 12px;
}
	
nav #standard-menu ul.menu > li > ul {
	font-family: 'robotolight';
	background-color: #FFF;
	display: block;
	list-style: none;
	line-height: 1.2em;
	width: 200px;
	margin: 0;
	padding: 0;
	z-index: 1200; 
	position: absolute;
	opacity: 0;
	top: -10000px;
	transition: .2s opacity;
	margin-left: 10px;
}
	
nav #standard-menu ul.menu > li:hover > ul {
	opacity: 1;
	top: 100%;
}
	
nav #standard-menu ul.menu > ul li {
	position: relative;
}
	
nav #standard-menu ul.menu > li > ul > li > a {
	color:#414042;
	text-decoration: none;
	font-size: 14px;
	display: block;
	padding: 10px 15px;
	background-color: #FFF;
	border-bottom: 1px solid #CCC;
	
	transition: .2s background-color;
}
	
nav #standard-menu ul.menu > li > ul > li:hover > a {
	background-color: #EEE;
}
	
nav #standard-menu ul.menu > li > ul > li:last-child > a {
	border-bottom: 0 none;
}


/*  HEADER STYLES */
header {
	display: block;
	position: fixed;
	width: 100%;
	top:0;
	z-index: 100;
}

header .logo {
    display: block;
    position: relative;
    float: left;
    height: 32px;
    width: 275px;
    margin-top: 25px;
}

@media only screen and (max-width: 1000px) {
	header .logo {
	    height: 32px;
	    width: 200px;
	    margin-top: 30px;
	}
}

header .logo img{
    width: 100%;
    height: auto;
}


/* SLIDER */
#slider {
	background-color: #000000;
	display: block;
	width:100%;
	position: relative;
	z-index: 5;
	height: 500px;
}

@media (max-width:767px){
	#slider {
	height: 300px;
}
}

#slider .slide {
	height:100%;
	width:100%;
	display:block;
	background-position: center center;
	background-repeat: no-repeat;
	background-size:cover;
}

#slider .slide .slide-content-container {
	display: table;
	position: relative;
	width:80%;
	margin: 0 auto;
	height: 100%;
}

#slider .slide .slide-content-container .slide-content {
	display:table-row;
}

#slider .slide .slide-content-container .slide-content .slide-box {
	display:table-cell;
	font-weight: 700;
	line-height: 1.1em;
	vertical-align:middle;
}

#slider .slide .slide-content-container .slide-content .slide-box .slider-heading {
	font-family: 'evogriaitalic';
	font-size:60px;
	line-height: 60px;
	color: #fff;
	width: 600px;
	padding-top: 50px;
	padding-bottom: 20px;
}	

#slider .slide .slide-content-container .slide-content .slide-box span {
	font-family: 'robotolight_italic';
	font-size:20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height:24px;
	display: inline-block;
	color: #fff;
	width: auto;
	background: #283438;
    padding:10px 20px;
    position: relative;
}

#slider .slide .slide-content-container .slide-content .slide-box span:before {
	content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 10px;
    top: 0;
    left: -10px;
    border-top: 42px solid transparent;
    border-right: 10px solid #283438;
    transition: border-right 0.3s ease;
}

#slider .slide .slide-content-container .slide-content .slide-box span:after {
	content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 10px;
    top: 0;
    right: -10px;
    border-bottom: 42px solid transparent;
    border-left: 10px solid #283438;
    transition: border-right 0.3s ease;
}

@media (max-width: 767px) {
#slider .slide .slide-content-container {
	display: none;
}
	
	
#slider .slide .slide-content-container .slide-content .slide-box .slider-heading {
	font-family: 'Michroma', sans-serif;
	font-size:20px;
	line-height: 25px;
	color: #fff;
	margin: 0;
	margin-bottom: 0;
	border-bottom: 0;
	width: 60%;
	padding-bottom: 0;
}

#slider .slide .slide-content-container .slide-content .slide-box span {
	display:none;
}
}

.slider-arrow {
	cursor: pointer;
	background-color: transparent;
	display: block;
	position: absolute;
	height: 100%;
	width: 8%;
	z-index: 10;
	top:0;
	transition:.2s width;
}

.slider-arrow:hover {
	width: 10%;
}

#slider-prev {
	left:0;
	background: url( '/wp-content/uploads/2016/07/left-arrow.png' ) no-repeat center center;
}

#slider-next {
	right:0;
	background: url( '/wp-content/uploads/2016/07/right-arrow.png' ) no-repeat center center;
}

@media ( max-width:767px ){
#slider-prev {
	left:0;
	background: url( '/wp-content/uploads/2016/07/left-arrow-50px.png' ) no-repeat center center;
}

#slider-next {
	right:0;
	background: url( '/wp-content/uploads/2016/07/right-arrow-50px.png' ) no-repeat center center;
}
}

.slider-navigation {
	display: none;
	width:100%;
	text-align: center;
}

.slider-navigation span {
	cursor: pointer;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	border: 2px solid #F49C0E;
	width: 24px;
	height: 24px;
	margin: 0 5px;
	text-indent: -10000px;
	overflow: hidden;
	position: relative;
}

.slider-navigation span:after {
	content: "";
	display: block;
	position: absolute;
	background-color: rgba(255,255,255,1);
	width:14px;
	height:14px;
	left: 3px;
	top: 3px;
	transition: .2s background-color;
}

.slider-navigation span.cycle-pager-active:after {
	background-color: rgba(255,255,255,1);
}

.slider-container {
	display: block;
	position: relative;
}


/*  HOME PAGE STYLES  */
.homeCallOut {
	font-family: 'evogriaitalic';
	font-size: 30px;
	line-height: 35px;
	color: #283438;
	margin-top: 120px;
	margin-bottom: 120px!important;
	padding: 0 200px;
	text-align: center;	
}

@media only screen and (max-width: 1000px) {
	.homeCallOut {
		padding: 0 100px;
}
}

@media only screen and (max-width: 767px) {
	.homeCallOut {
		padding: 0px;
}
}

.lightGreyBG {
	background: #e5e5e5;
	padding: 100px 0;
}

.lightGreyBG-lessons {
	background: #e5e5e5;
	padding: 100px 0;
	border-bottom: 1px solid #d5d5d5;
}

.lightGreyBG .wpb_content_element {
	margin-bottom: 0;
}

.lightGreyBG h1 {
	font-family: 'evogriaitalic';
	margin-top: 0;
	margin-bottom: 0;
}

.contactBG {
	background: #283438;
	padding: 70px 0;
	-moz-box-shadow:    inset 0 12px 15px -7px rgba(0,0,0,0.7), 
                        inset 0 -12px 15px -7px rgba(0,0,0,0.7);
    -webkit-box-shadow: inset 0 12px 15px -7px rgba(0,0,0,0.7), 
                        inset 0 -12px 15px -7px rgba(0,0,0,0.7);
     box-shadow:        inset 0 12px 15px -7px rgba(0,0,0,0.7), 
                        inset 0 -12px 15px -7px rgba(0,0,0,0.7);
    border-top: 1px solid #ea861e;
    border-bottom: 1px solid #ea861e;
}

.contactBG h1 {
	font-family: 'evogriaitalic';
	color: #ea861e;
	margin: 0;
	padding-bottom: 20px;
	letter-spacing: 1px;
	
}

.vehicleBG {
	background-image: linear-gradient(to bottom, #e5e5e5, #e5e5e5 50%, #ea861e 50%, #ea861e);
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 0!important;
}

.vehicleBG h1 {
	margin-top: 0;
	margin-bottom: 0;
}

.vehicleBG .wpb_content_element {
	margin-bottom: 0;
}

.vehicleContainer { 
	display: block;
	width: 100%;
}

.vehicleContainer .vehicleImage {
	display: inline-block;
	position: relative;	
	width: 49%;
	vertical-align: bottom;
}

.vehicleContainer .vehicleImage img {
	width: 100%;
	height: auto;
}

.vehicleContainer .vehicleText {
	display: inline-block;
	position: relative;
	width: 50%;
	padding-bottom: 25px;
}

.vehicleContainer .vehicleText h1 {
	font-family: 'robotolight_italic';
	letter-spacing: 1px;
	font-size: 2em;
}

.vehicleContainer .vehicleText h1 b{
	font-family: 'robotobold_italic';
}

@media only screen and (max-width: 1000px) {
	.vehicleBG {
		background-image: linear-gradient(to bottom, #e5e5e5, #e5e5e5 10%, #ea861e 0%, #ea861e);
	}
	
	.vehicleContainer .vehicleText {
		width: 65%;
	}
	.vehicleContainer .vehicleImage {
		width: 34%;
	}
}

@media only screen and (max-width: 767px) {
	.vehicleBG {
		background-image: linear-gradient(to bottom, #e5e5e5, #e5e5e5 50%, #ea861e 0%, #ea861e);
	}
	
	.vehicleContainer .vehicleText {
		width: 100%;
	}
	.vehicleContainer .vehicleImage {
		width: 100%;
	}
}

@media only screen and (max-width: 450px) {
	.vehicleBG {
		background-image: linear-gradient(to bottom, #e5e5e5, #e5e5e5 30%, #ea861e 0%, #ea861e);
	}
}


.providesBG {
	background: #283438;
	padding: 40px 0;
	-moz-box-shadow:    inset 0 12px 15px -7px rgba(0,0,0,0.7), 
                        inset 0 -12px 15px -7px rgba(0,0,0,0.7);
    -webkit-box-shadow: inset 0 12px 15px -7px rgba(0,0,0,0.7), 
                        inset 0 -12px 15px -7px rgba(0,0,0,0.7);
     box-shadow:        inset 0 12px 15px -7px rgba(0,0,0,0.7), 
                        inset 0 -12px 15px -7px rgba(0,0,0,0.7);
    border-top: 1px solid #ea861e;
    border-bottom: 1px solid #ea861e;
}

.providesBG h1{
	font-family: 'evogriaitalic';
	color: #ea861e;
	margin: 0;
	padding-bottom: 20px;
	letter-spacing: 1px;
}

.providesBG .providesIconsCont {
	border: 1px solid #ea861e;
	overflow: hidden;
}

.providesBG .providesIcons4 {
	display: block;
	float: left;
	width: 25%;
	text-align: center;
	font-size: 0;
	padding: 30px 0;
}

@media only screen and (max-width: 768px) {
	.providesBG .provides{
		margin-bottom: 30px;
	}
	
	
	.providesBG .providesIcons4 {
		width: 50%;
	}
}

.providesBG .providesIcons {
	border: 1px solid #ea861e;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	padding:10px;
	margin: 0 auto;
	margin-bottom: 5px;
}

.providesBG .providesIcons img{
	width:100%;
	height: auto;
}

.providesBG .providesIcons4 .title{
	font-size: 18px;
	font-family: 'robotobold_italic';
	color: #ea861e;
}

.providesBG .providesIcons4 p{
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
}

.providesBG .bring {
	display: block;
	background: #ea861e;
	padding: 28px;
}

.providesBG .bring p{
	color: #fff;
	margin-bottom: 0;
}

.providesBG .bring p b {
	font-family: 'robotobold_italic';
	letter-spacing: .5px;
}

.vc_column-inner {
	padding-top: 0!important;
}

.lessonsBike {
	background: #fff;
	padding: 20px;
	display: block;
	position: relative;
	font-size: 0;
}

.lessonsBike .iconPrice {
	display:inline-block;
	position: relative;
	width: 60%;
	font-size: 45px;
	padding-left: 70px;
}

.lessonsBike .iconPrice b {
	font-family: 'robotobold_italic';
	letter-spacing: .5px;
	color: #ea861e;
}

.lessonsBike .iconPrice:before {
	display: block;
	position:absolute;
	content: '';
	background-image: url('/wp-content/uploads/2016/07/lesson-motorbike.png');
	background-size: 45px 60px;
	background-repeat: no-repeat;
	width: 45px;
	height: 60px;
	left: 0;
}

.lessonsBike .lessonText {
	display:inline-block;
	width: 40%;
	font-size: 14px;
}

.lessonsBike .lessonText b {
	font-family: 'robotobold_italic';
	letter-spacing: .5px;
	color: #ea861e;
}

.lessonsCar {
	background: #fff;
	padding: 20px;
	display: block;
	position: relative;
	font-size: 0;
}

.lessonsCar .iconPrice {
	display:inline-block;
	position: relative;
	width: 60%;
	font-size: 45px;
	padding-left: 70px;
}

.lessonsCar .iconPrice b {
	font-family: 'robotobold_italic';
	letter-spacing: .5px;
	color: #ea861e;
}

.lessonsCar .iconPrice:before {
	display: block;
	position:absolute;
	content: '';
	background-image: url('/wp-content/uploads/2016/07/lesson-car.png');
	background-size: 60px 44px;
	background-repeat: no-repeat;
	width: 60px;
	height: 44px;
	left: 0;
	top: 8px;
}

.lessonsCar .lessonText {
	display:inline-block;
	width: 40%;
	font-size: 14px;
}

.lessonsCar .lessonText b {
	font-family: 'robotobold_italic';
	letter-spacing: .5px;
	color: #ea861e;
}

@media only screen and (max-width: 768px) {
	.lessonsBike {
		margin-bottom: 50px;
	}
	
	.lessonsBike .iconPrice {
		width: 100%;
		font-size: 45px;
		padding-top: 70px;
		padding-left: 0;
		text-align: center;
	}
	
	.lessonsBike .iconPrice:before {
		display: block;
		position:absolute;
		content: '';
		background-image: url('/wp-content/uploads/2016/07/lesson-motorbike.png');
		background-size: 45px 60px;
		background-repeat: no-repeat;
		width: 45px;
		height: 60px;
		top: 0;
		left: 50%;
		margin-left: -22px;
	}
	
	.lessonsCar .iconPrice {
		width: 100%;
		font-size: 45px;
		padding-top: 70px;
		padding-left: 0;
		text-align: center;
	}
	
	.lessonsCar .iconPrice:before {
		display: block;
		position:absolute;
		content: '';
		background-image: url('/wp-content/uploads/2016/07/lesson-car.png');
		background-size: 60px 44px;
		background-repeat: no-repeat;
		width: 60px;
		height: 44px;
		left: 0;
		top: 8px;
		left: 50%;
		margin-left: -22px;
	}
	
	.lessonsBike .lessonText,
	.lessonsCar .lessonText {
		width: 100%;
		text-align: center;
	}
}


/*  VECHILES STYLES  */
.vechilesBg {
	background: #e5e5e5;
	margin-top: 50px;
	
}

/*  MOTORBIKE STYLES  */
.motorbikeTitle{
	background: rgba(234,134,30,1);
	background: -moz-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(234,134,30,1)), color-stop(50%, rgba(238,170,105,1)), color-stop(100%, rgba(234,134,30,1)));
	background: -webkit-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: -o-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: -ms-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: linear-gradient(to right, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea861e', endColorstr='#ea861e', GradientType=1 );
	margin-bottom: 0!important;
}

.motorbikeTitle h2{
	margin: 0;
	padding: 15px 0;
}

.motorbikeText {
	margin-top: 10px;
}

@media only screen and (max-width: 768px) {
	.motorbikeText {
		margin-bottom: 20px!important;
	}	
}

.motorbikeTitle h2 strong {
	font-family: 'robotobold_italic';
	margin: 0;
	padding: 15px 0;
}

.imgBG{
	background: #283438;
	margin-bottom: 0;
	box-shadow: inset 0 12px 15px -7px rgba(0,0,0,0.7);
	-webkit-box-shadow: inset 0 12px 15px -7px rgba(0,0,0,0.7);
	-moz-box-shadow: inset 0 12px 15px -7px rgba(0,0,0,0.7);
}

.imgBG h2{
	margin: 0;
}

/*  FOOTER STYLES  */
.footerBg {
	background: #283438;
	min-height: 70px;
	display: block;
	width: 100%;
}

.footerBg .footerLeft {
	font-size: 14px;
	text-align: left;
	color: #ea861e;
	display: table-cell;
	height: 70px;
	vertical-align: middle;
}

.footerBg .footerLeft b{
	font-family: 'robotobold';
}

.footerBg .footerRight {
	text-align: right;
}

.footerBg .footerRight .socialIcons {
	display: block;
    position: relative;
    padding-top: 18px;
    font-size: 0;
}

.footerBg .footerRight .socialIcons a.icons {
    background: #ea861e;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: .3s ease;
    margin-left: 8px;
    padding-top: 2px;
}

.footerBg .footerRight .socialIcons a:hover.icons {
    background: #fff;
    color: #ea861e;
}

@media only screen and (max-width: 768px) {
	.footerBg .footerLeft {
		text-align: center;
		display: block;
		margin-top: 20px;
	}
	
	.footerBg .footerRight {
		text-align: center;
		margin-bottom: 20px;
	}
}

/* RIDE ORANGE SECTION STYLES */

.rideSection {
	background: rgba(234,134,30,1);
	background: -moz-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(234,134,30,1)), color-stop(50%, rgba(238,170,105,1)), color-stop(100%, rgba(234,134,30,1)));
	background: -webkit-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: -o-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: -ms-linear-gradient(left, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	background: linear-gradient(to right, rgba(234,134,30,1) 0%, rgba(238,170,105,1) 50%, rgba(234,134,30,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea861e', endColorstr='#ea861e', GradientType=1 );
	font-size: 0;
	padding: 30px 0 25px 0;
}

.rideSection .title {
	display: inline-block;
	width: 33%;
	font-family: 'evogriaitalic';
	font-size: 30px;
}

.rideSection .phone {
	display: inline-block;
	position: relative;
	width: 33%;
	font-size: 25px;
	padding-left: 60px;
}

.rideSection .phone:before {
	content:'';
	display: block;
	position: absolute;
	left:0;
	top: -12px;
	width: 50px;
	height: 50px;
	background: #283438;
	border-radius: 50%;
}

.rideSection .phone:after {
	content:'\f095';
	font-family: fontAwesome;
	font-size: 30px;
	color: #ea861e;
	display: block;
	position: absolute;
	text-align: center;
	left:13px;
	top: 0px;
}

.rideSection .email {
	display: inline-block;
	position: relative;
	width: 33%;
	font-size: 25px;
	padding-left: 60px;
}

.rideSection .email:before {
	content:'';
	display: block;
	position: absolute;
	left:0;
	top: -12px;
	width: 50px;
	height: 50px;
	background: #283438;
	border-radius: 50%;
}

.rideSection .email:after {
	content:'\f0e0';
	font-family: fontAwesome;
	font-size: 25px;
	color: #ea861e;
	display: block;
	position: absolute;
	text-align: center;
	left:12px;
	top: 0px;
}

@media only screen and (max-width: 768px) {
	.rideSection .title {
		width: 100%;
		font-size: 30px;
		margin-bottom: 20px;
	}
	
	.rideSection .phone {
		width: 100%;
		font-size: 20px;
		padding-left: 35px;
		margin-bottom: 20px;
	}
	
	.rideSection .phone:before {
		content:'';
		display: block;
		position: absolute;
		left:0;
		top: 0px;
		width: 30px;
		height: 30px;
		background: #283438;
		border-radius: 50%;
	}
	
	.rideSection .phone:after {
		content:'\f095';
		font-family: fontAwesome;
		font-size: 18px;
		color: #ea861e;
		display: block;
		position: absolute;
		text-align: center;
		left:8px;
		top: 7px;
	}
	
	.rideSection .email {
		width: 100%;
		font-size: 20px;
		padding-left: 35px;
		margin-bottom: 20px;
	}
	
	.rideSection .email:before {
		content:'';
		display: block;
		position: absolute;
		left:0;
		top:0;
		width: 30px;
		height: 30px;
		background: #283438;
		border-radius: 50%;
	}
	
	.rideSection .email:after {
		content:'\f0e0';
		font-family: fontAwesome;
		font-size: 16px;
		color: #ea861e;
		display: block;
		position: absolute;
		text-align: center;
		left:8px;
		top: 6px;
	}
}

/* CONTACT STYLES */
.col-2 .message {
	padding-right: 10px;
}

.col-2 .fields {
	padding-left: 10px;
}

.wpcf7 textarea,
.wpcf7 input {
	width: 100%;
	border-width: 0px;
	border-bottom: 1px solid #283438;
	font-family: 'robotobold_italic';
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ea861e;
}

.wpcf7 input:-webkit-input-placeholder,
.wpcf7 input:-moz-placeholder,
.wpcf7 input:-moz-placeholder,
.wpcf7 input:-ms-input-placeholder {
	color: #ea861e;
}

.wpcf7 textarea {
	padding: 15px 0 0 15px;
	height:162px;
}

.wpcf7 input {
	padding: 17px;
}

.wpcf7 input.wpcf7-submit{
	font-family: 'robotobold_italic';
	font-size: 14px;
	display: inline-block;
	width: auto;
	margin-top: 10px;
	float: right;
	border: 0;
	background: #ea861e;
	letter-spacing: 1px;
	padding: 10px 18px;
	color: #283438;
	transition: .3s ease;
	cursor: pointer;
}

.wpcf7 input.wpcf7-submit:hover{
	background: #fff;
	color: #283438;
}

.wpcf7 p {
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	.col-2 .message {
		padding-right: 0px;
	}
	
	.col-2 .fields {
		padding-left: 0px;
	}
	}

/*  TESTIMONIAL STYLES  */

.testimonialPad {
	padding: 100px 0;
}

.testimonialPad h1{
	font-family: 'evogriaitalic';
	color: #283438;
}

.testimonial_rotator_description {
	display: block;
	position: relative;
}

.testimonial_rotator_description .testInfo{
	display: inline-block;
	width: 20%;
	vertical-align: top;
}

.testimonial_rotator_description .testContent{
	display: inline-block;
	width: 75%;
	vertical-align: top;
}

.testimonial_rotator.template-default .testimonial_rotator_author_info {
    font-style: italic;
    line-height: 1.2em;
    padding: 0;
    border-left: 0;
    margin: 0;
}

.testimonial_rotator.template-default .testimonial_rotator_author_info p {
	font-size: 15px;
}

.testimonial_rotator_stars {
    padding: 0;
    padding-top: 10px;
}

.testimonial_rotator_star {
    margin: 0 3px 0 0;
    float: left;
    width: 20px;
    height: 20px;
    color: #ea861e;
    font-size: 20px;
    line-height: 20px;
}

.testimonial_rotator .testimonial_rotator_slide_title {
	font-family: 'robotobold_italic';
	color: #ea861e;
    margin: 0;
}

@media only screen and (max-width: 768px) {
		.testimonial_rotator_description .testInfo{
		width: 100%;
		margin-bottom: 20px;
	}
	
	.testimonial_rotator_description .testContent{
		width: 100%;
	}
}


/*  TESTIMONIAL STYLES  */
.galleryTitle {
	padding-bottom: 50px;
}

/* RETURN TO TOP */
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(234, 134, 30, 0.6);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background-color: rgba(234, 134, 30, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 8px;
}