/* CSS
Author: GILLAN E SOLUTIONS
Created:03-05-2019
*/
/*
--------------------------------------------------------------
BROWSER SPECIFICATION STYLES
--------------------------------------------------------------
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: inherit;
}
a:hover {
	text-decoration: underline;
	transition: all 0.4s ease-in-out;
}
table {
	margin-bottom: 15px;
}
h1 {
	font-family: 'NexaBold';
	font-size: 50px;
	color: #ff6a00;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 40px;
}
h1 span {
	display: block;
	font-size: 30px;
	color: #999999;
	line-height: normal;
	font-weight: 600;
}
h2 {
	font-family: 'NexaBold';
	font-size: 35px;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 20px;
	color: #ff6a00;
}
h3 {
	font-family: 'NexaBold';
	font-size: 32px;
	font-weight: 500;
	color: #212529;
	line-height: normal;
	margin-bottom: 10px;
}
h4 {
	font-family: 'NexaBold';
	font-size: 28px;
	font-weight: 500;
	color: #212529;
	line-height: 30px;
	margin-bottom: 10px;
}
h5 {
	font-family: 'NexaBold';
	font-size: 23px;
	font-weight: 500;
	color: #212529;
	line-height: normal;
	margin-bottom: 10px;
}
h6 {
	font-family: 'NexaBold';
	font-size: 18px;
	color: #212529;
	line-height: normal;
	margin-bottom: 10px;
}
.margin-bottom50 {
	margin-bottom: 50px;
}
.text-align-left {
	text-align: left !important;
}
.padding-top0 {
	padding-top: 0 !important;
}
.desktop-hide {
	display: none;
}

/*=== Trigger  ===*/
.animate-custom {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*=== Animations start here  ===*/

/*=== FADE IN LEFT ===*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*
--------------------------------------------------------------
GLOBAL STYLES
--------------------------------------------------------------
*/
.red-text-btn {
	background: #fff;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	color: #ed1c24;
	transition: all 0.5s;
}
.red-text-btn:hover, .red-text-btn:focus {
	background: #374149;
	color: #fff;
	text-decoration: none;
}
.read-more {
	position: relative;
	font-family: 'NexaBold';
	font-size: 22px;
	color: #ed1c24;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	padding-left: 60px;
}
.read-more:before {
	position: absolute;
	content: url(../images/right-n-arrow.png);
	left: 15px;
	top: 0px;
	bottom: 0;
	margin: auto 0;
	z-index: 10;
}
.read-more:after {
	position: absolute;
	background: #ed1c24;
	content: "";
	width: 30px;
	height: 100%;
	left: 0;
	top: 4px;
	bottom: 0;
	margin: auto 0;
}
.read-more:hover, .read-more:focus {
	color: #fff;
}
.read-more.black:before {
	content: url(../images/right-b-arrow.png);
}
.read-more.black:hover, .read-more.black:focus {
	color: #383838;
}
.black-bdr-btn {
	background: none;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #999999;
	color: #999999;
	transition: all 0.5s;
}
.black-bdr-btn:hover, .black-bdr-btn:focus {
	background: #999999;
	color: #fff;
	text-decoration: none;
}
.black-btn {
	background: #ff6a00;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #ff6a00;
	color: #212529;
	transition: all 0.5s;
}
.black-btn:hover, .black-btn:focus {
	background: none;
	color: #999999;
	text-decoration: none;
}
.yellow-bdr-btn {
	background: none;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #ff6a00;
	color: #999999;
	transition: all 0.5s;
}
.yellow-bdr-btn:hover, .yellow-bdr-btn:focus {
	background: #ff6a00;
	color: #999999;
	text-decoration: none;
}
.yellow-btn {
	background: #ff6a00;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #ff6a00;
	color: #212529;
	transition: all 0.5s;
}
.yellow-btn:hover, .yellow-btn:focus {
	background: none;
	color: #999999;
	text-decoration: none;
}
.wht-bdr-btn {
	background: none;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #fff;
	color: #fff;
	transition: all 0.5s;
}
.wht-bdr-btn:hover, .black-bdr-btn:focus, .black-bdr-btn.active {
	background: #fff;
	color: #999999;
	text-decoration: none;
}
.grey-bdr-btn {
	background: none;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 6px 15px;
	font-family: 'NexaBold';
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #a8a8a8;
	color: #a8a8a8;
	transition: all 0.5s;
}
.grey-bdr-btn:hover, .grey-bdr-btn:focus {
	background: #a8a8a8;
	color: #fff;
	text-decoration: none;
}
.submit-btn {
	background: none;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 10px 30px;
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 600;
	line-height: normal;
	border: 2px solid #999999;
	color: #999999;
	transition: all 0.5s;
}
.submit-btn:hover, .submit-btn:focus {
	background: #999999;
	color: #fff;
}
.alignleft {
	float: left;
	margin: 0px 15px 15px 0px;
}
.alignright {
	float: right;
	margin: 0px 0px 15px 15px;
}
/*Header*/
.header {
	background: #fff;
	float: left;
	width: 100%;
	transition: all 0.4s ease;
	border-bottom: 2px solid #ccc;
}
header.header.sticky {
	position: fixed;
	top: 0;
	transition: all 0.4s ease;
	width: 100%;
	z-index: 99999;
}
.logo {
	float: left;
	width: 200px;
	margin-top: 9px;
	transition: all 0.5s;
}
header.header.sticky .logo {
	width: 150px;
	margin-top: 15px;
	transition: all 0.5s;
}
.logo img {
	display: inline-block;
}
.social-media h2 {
	text-transform: uppercase;
	color: #999;
	font-size: 20px;
}
.social-media h2 span {
	color: #ff6a00;
}
.social-media {
	float: left;
	width: 100%;
	text-align: center;
	padding-top: 50px;
}
.social-media a .fa-facebook-f:before {
	content: "\f39e";
}
.social-media a {
	display: inline-block;
	background: none;
	color: #999999;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	border: 2px solid #999999;
	padding-top: 4px;
	margin: 0 5px;
}
.social-media a:hover, .social-media a:focus {
	background: #999999;
	color: #fff;
}
.main-nav {
	float: right;
	margin-bottom: -2px;
}
.main-nav .main-menu-more {
	display: none;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item {
	margin-left: 50px;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:first-child,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item:first-child {
	margin-left: 0px;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link {
	font-family: 'Oswald', sans-serif;
	font-weight: 600;
	border-bottom: 2px solid transparent;
	transition-duration: 0.4s;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:hover,  .main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:focus,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link:hover,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link:focus {
	border-bottom: 2px solid #ff6a00;
	font-weight: 600;
}
/*Banner-area*/
.banner-area {
	position: relative;
	float: left;
	width: 100%;
	padding: 0px 0 0;
	border-bottom: 10px solid #ff6a00;
	margin-bottom: -10px;
}
.banner-area img {
	width:100%;
}
.banner-content {
	/*padding: 0 100px;*/
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    color: #999999;
}
/*Img TAb*/
.img-tab {
	float: left;
	width: 100%;
	text-align: center;
}
.img-tab img {
	display: inline-block;
}
/*Welcome-area*/
.welcome-area {
	float: left;
	width: 100%;
	padding: 80px 0;
}
.welcome-left {
	float: right;
    width: 50%;
    font-size: 20px;
    margin-top:0;
    position: relative;
    overflow: hidden;
}
.welcome-left ul {
	list-style:none;
	margin-bottom:0;
}
.welcome-left ul li {
    display: block;
    background: url(../images/orange-bullet.png) no-repeat 0px 12px;
    padding: 0 0 6px 15px;
}
.welcome-left ul li a {
	color:#ff6a00;
}
.welcome-left ul li a:hover,
.welcome-left ul li a:focus {
	color:#000;
	text-decoration:none;
}
.welcome-right {
	float: left;
	width: 40%;
	text-align: center;
}
.welcome-right img {
	display: inline-block;
}
.welcome-area h1 {
	color: #ff6a00;
	margin-bottom: 15px;
	font-family: 'NexaBold';
	font-size: 45px;
	line-height: 65px;
	text-transform: uppercase;
}
.welcome-area h1 span {
	display: block;
	font-size: 25px;
	color: #999999;
	line-height: normal;
	font-weight: 600;
}
.red-layer {
	position: relative;
}
.red-layer .container {
	position: relative;
}
.red-layer:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(237, 28, 36, 0.9);
	opacity: 0.8;
}
/*Middle-area*/
.middle-area {
	background: url(../images/driver-bg1.png) no-repeat top left, url(../images/driver-bg2.png) no-repeat bottom right;
	float: left;
	width: 100%;
	padding: 60px 0;
}
.middle-area .container {
	position: relative;
}
.read-more-div {
	position: absolute;
	top: 40px;
	right: 35px;
}
.middle-tab-area {
	float: left;
	width: 100%;
	padding: 0 150px;
}
.middle-tab {
	position: relative;
	float: left;
	text-align: center;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.5);
	margin: 0 20px;
}
.middle-tab a {
	display: block;
	z-index: 100;
}
.middle-tab a:hover .middle-tab-content, .middle-tab a:focus .middle-tab-content {
	background: #374149;
}
.middle-tab-image {
	overflow: hidden;
}
.middle-tab-image img {
	height: 300px;
	object-fit: cover;
	position: relative;
	width: 100%;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
}
.middle-tab a:hover .middle-tab-image img, .middle-tab a:focus .middle-tab-image img {
	-webkit-filter: grayscale(100%);
	transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-webkit-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-moz-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-o-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-ms-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	cursor: pointer;
}
.middle-text-tab {
	display: block;
	background: #999999;
	color: #fff;
	text-align: left;
	font-size: 18px;
	transition: all 0.5s;
	padding: 30px;
}
.middle-text-tab h5 {
	display: inline-block;
	font-family: 'NexaBold';
	margin-bottom: 15px;
	font-size: 25px;
	color: #fff;
	text-transform: uppercase;
}
#owl-carousel1 .owl-prev {
	left: -55px;
}
#owl-carousel1 .owl-next {
	right: -55px;
}
.process-area {
	background-size: cover;
	float: left;
	width: 100%;
	position:relative;
	overflow:hidden;
	padding: 60px 0;
}
.process-area .container {
	position: relative;
}
.heading-div {
	text-align: left;
	margin: 0 auto;
	margin-bottom: 50px;
}
.heading-div h2 {
	font-family: 'NexaBold';
	font-size: 50px;
	font-weight: 500;
	line-height: 60px;
	color: #ff6a00;
	text-transform: uppercase;
	margin-bottom: 0;
}
.heading-div h2 span {
	display: block;
	font-size: 25px;
	color: #999999;
	line-height: normal;
	font-weight: 600;
}
.porcess-tab-area {
	position: relative;
}
.multi-layer {
	position: relative;
}
.banner-area.multi-layer:before {
	z-index: 10;
}
.banner-caption img {
	width: 100%;
	display: inline-block;
}
.banner-caption-tab {
	float: right;
	width: 43%;
	font-size: 22px;
	line-height: normal;
	margin-top: 8%;
}
.banner-caption-tab p {
	margin: 0 0 30px;
}
.profile-img {
	float: right;
	width: 50%;
}
.banner-caption-tab big {
	display: block;
	color: #fff;
	font-family: 'NexaBold';
	font-size: 70px;
	line-height: 80px;
	text-transform: uppercase;
	margin-bottom:0px;
}
.banner-caption-tab big span {
	display: block;
	color: #ff6a00;
}
.multi-layer:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(49, 20, 115);
	background: -moz-linear-gradient(43deg, rgb(49, 20, 115) 41%, rgb(237, 28, 26) 100%);
	background: -webkit-linear-gradient(43deg, rgb(49, 20, 115) 41%, rgb(237, 28, 26) 100%);
	background: -o-linear-gradient(43deg, rgb(49, 20, 115) 41%, rgb(237, 28, 26) 100%);
	background: -ms-linear-gradient(43deg, rgb(49, 20, 115) 41%, rgb(237, 28, 26) 100%);
	background: linear-gradient(133deg, rgb(49, 20, 115) 41%, rgb(237, 28, 26) 100%);
	opacity: 0.8;
}
.multi-layer .container {
	position: relative;
}
.process-area .heading-div h2 {
}
.process-area .heading-div h2 span {
}
.schedule-tab {
	margin: 0 15px;
	margin-bottom: 15px;
}
.schedule-tab a {
	display: block;
	color: #000;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	min-height: 450px;
}
.schedule-tab a:hover, .schedule-tab a:focus {
	color: #000;
}
.schedule-tab-image {
	background: #ccc;
	text-align: center;
	display: block;
	vertical-align: middle;
	margin-bottom: 15px;
}
.schedule-tab-image span {
	position: relative;
	display: inline-block;
	width: 49%;
	height: 80px;
	vertical-align: middle;
	padding: 0 15px;
}
.schedule-tab-image span img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 80%;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.schedule-tab-text {
	vertical-align: middle;
	font-size: 17px;
	padding-left: 20px;
}
.schedule-tab-text h5 {
	font-family: 'NexaBold';
	font-size: 20px;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.schedule-tab-text h5 span {
	display: block;
	font-size: 14px;
	color: #000;
}
.schedule-tab-text ul {
	margin-bottom: 20px;
}
.schedule-tab-text .black-bdr-btn {
	padding: 5px 20px;
}
.schedule-tab.inner-schedule-tab {
	margin-bottom: 60px;
	display: block;
    color: #000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	height:400px;
}
.news-area {
	float: left;
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.news-area .container {
	position: relative;
}
.news-tab {
	position: relative;
	color: #a8a8a8;
	font-size: 16px;
	line-height: 24px;
	margin: 0 15px 15px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.news-tab-img {
	overflow: hidden;
}
.news-tab-img img {
	position: relative;
	width: 100%;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
}
.news-tab a:hover img {
	-webkit-filter: grayscale(100%);
	transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-webkit-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-moz-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-o-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-ms-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	cursor: pointer;
}
.news-tab h5 {
	font-family: 'NexaBold';
	font-size: 17px;
	font-weight: 500;
	line-height: normal;
	color: #212529;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.news-tab a {
	background: #fff;
	color: #212529;
	display: block;
	transition: all 0.5s;
	position: relative;
	/* border: 2px solid #ff6a00; */
	z-index: 1000;
}
.news-tab a:hover, .news-tab a:focus {
	color: #fff;
	background: #ff6a00;
}
.news-tab a:hover h5, .news-tab a:focus h5 {
	color: #fff;
}
.new-tab-contant {
	position: relative;
	z-index: 10;
	padding: 20px;
}
.auther-date {
	font-family: Muli, Arial, Helvetica, sans-serif;
	display: block;
	font-size: 16px;
	line-height: 25px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: initial;
}
.auther-date ul {
	margin-bottom: 0;
	padding-left: 0px !important;
}
.auther-date ul li {
	position: relative;
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	color: #a8a8a8;
	margin-right: 5px;
	padding-right: 15px;
}
.auther-date ul li:after {
	position: absolute;
	content: "/";
	right: 0;
	top: 0;
}
.auther-date ul li:last-child:after {
	display: none;
}
.news-tab.inner-news-tab {
	margin-bottom: 50px;
}
/*
-------------------------------------------------------------- 
OWL-AREA STYLE
-------------------------------------------------------------- 
*/
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	position: relative;
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 0;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
	transition: all 0.4s ease-in-out;
	padding: 0 7px;
}
.distinguish-tab .owl-carousel .owl-item {
	padding: 0px;
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
	cursor: pointer;
	z-index: 9999;
}
.owl-controls.clickable {
	display: inline-block;
}
.owl-buttons {
	font-size: 0px;
	text-indent: -999px;
}
.owl-prev {
	background: #dcdcdc url(../images/left-arrow-hover.png) no-repeat center;
	position: absolute;
	left: -35px;
	top: 40%;
	width: 38px;
	height: 38px;
	text-align: center;
	opacity: 0.6;
	z-index: 100;
	border-radius: 50%;
}
.owl-prev:hover {
	background: #000 url(../images/left-arrow.png) no-repeat center;
	opacity: 1;
}
.owl-next {
	background: #dcdcdc url(../images/right-arrow-hover.png) no-repeat center;
	position: absolute;
	right: -35px;
	top: 40%;
	width: 38px;
	height: 38px;
	opacity: 0.6;
	z-index: 100;
	border-radius: 50%;
}
.owl-next:hover {
	background: #000 url(../images/right-arrow.png) no-repeat center;
	opacity: 1;
}
.owl-buttons div:hover {
	transition: all 0.4s ease-in-out;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
 *display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 26px;
	height: 4px;
	margin: 10px 6px 22px;
	filter: Alpha(Opacity=50);
	background: #e7e7e7;
}
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);/*IE7 fix*/
	background: #1d74b2;
}
.sponsors-area {
	float: left;
	width: 100%;
	text-align: center;
	padding: 30px 0;
}
/* Gallery area*/
.gallery-area {
	float: left;
	width: 100%;
}
.gallery-area .heading-div {
	text-align: center;
}
.gallery-tab-area .row.filters-div {
	margin: 0px auto;
}
.gallery-tab-area {
	text-align: center;
	padding: 0px 15px;
}
.gallery-tab-area ul.simplefilter {
	margin-bottom: 40px;
}
.gallery-tab-area .simplefilter li {
	font-size: 20px;
	font-family: 'Oswald', sans-serif;
	background: #ff6a00 !important;
	color: #212529 !important;
	padding: 10px 15px;
	text-transform: uppercase;
}
.gallery-tab-area .simplefilter li.active,  .gallery-tab-area .simplefilter li:hover {
	background: #999999 !important;
	color: #fff !important;
}
.gallery-tab-area .filters-div .thumbnail {
	padding: 0;
	border-radius: 0;
}
.gallery-tab-area .tab-nav {
	margin-bottom: 50px;
}
.gallery-tab-area .nav-tabs {
	border-bottom: 0;
}
.gallery-tab-area .nav-tabs>li {
	float: none;
	text-transform: uppercase;
	display: inline-block;
}
.gallery-tab-area .nav-tabs>li>a {
	font-family: 'Oswald', sans-serif;
	background: #ff6a00;
	margin-right: 0;
	line-height: normal;
	color: #212529;
	border: 0;
	border-radius: 0;
}
.gallery-tab-area .nav>li>a:hover,  .gallery-tab-area .nav>li>a:focus {
	text-decoration: none;
	background-color: #999999;
	color: #fff;
}
.gallery-tab-area .nav-tabs>li.active>a,  .gallery-tab-area .nav-tabs>li.active>a:hover,  .gallery-tab-area .nav-tabs>li.active>a:focus {
	background: #999999;
	color: #fff;
	cursor: default;
	border: none;
	border-bottom-color: transparent;
}
.gallery-tab {
	float: left;
	width: 20%;
	padding: 1px;
}
.gallery-tab img {
	height: 250px;
	width: 100%;
	object-fit: cover;
}
.gallery-tab a {
	position: relative;
	display: block;
	transition: all 0.5s;
}
.gallery-tab a:before {
	display: none;
	position: absolute;
	content: "";
	background: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.gallery-tab a:hover:before {
	opacity: 0;
	transition: all 0.5s;
}
/* Sponsors area*/
.sponsors-area {
	background: #fff;
	float: left;
	width: 100%;
	text-align: center;
	padding: 30px 0;
}
.sponsors-area .sponsors-tab {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 0 15px;
	-webkit-filter: grayscale(100%);
}
.sponsors-area .sponsors-tab:hover, .sponsors-area .sponsors-tab:focus {
	-webkit-filter: none;
	transition: all;
}
.footer {
	background: #383838;
	float: left;
	width: 100%;
	text-align: left;
	font-size: 15px;
	color: #fff;
	padding: 20px 0;
}
.footer-top {
	position: relative;
	float: left;
	width: 100%;
	background: #ed1c24;
	margin-top: -60px;
	padding: 35px;
	margin-bottom: 40px;
}
.footer-subscribe h5 {
	float: left;
	font-family: 'NexaBold';
	font-size: 30px;
	font-weight: 500;
	line-height: 50px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 0;
}
.subscribe-form {
	float: right;
	width: 50%;
}
.subscribe-form input {
	display: inline-block;
	height: 50px;
	padding: 15px;
	color: #212529;
}
.subscribe-form input[type="text"] {
	width: 73%;
	background: #fff;
}
.subscribe-form input[type="submit"] {
	float: right;
	background: #212529 !important;
	font-family: 'NexaBold';
	font-size: 20px;
	color: #fff;
	border: 0 none;
	border-radius: 0;
	display: block;
	line-height: normal;
	padding: 10px 25px;
	text-transform: uppercase;
}
.footer-bottom {
	float: left;
	width: 100%;
}
.f-logo {
	float: left;
}
.footer-social {
	float: right;
}
.footer-social a .fa-facebook-f:before {
	content: "\f39e";
}
.footer-social a {
	display: inline-block;
	background: #484848;
	color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	border: 2px solid transparent;
	padding-top: 4px;
	margin-left: 10px;
}
.footer-social a:hover, .footer-social a:focus {
	background: #ff6a00;
	border: 2px solid #ff6a00;
	color: #fff;
}
.copyright {
	margin-top: 12px;
}
.short-links {
	float: left;
}
.short-links a {
	position: relative;
	color: #717070;
	padding-right: 20px;
	margin-right: 15px;
}
.short-links a:hover, .short-links a:focus {
	color: #fff;
}
.short-links a:before {
	position: absolute;
	content: "/";
	right: 0;
}
.short-links a:last-child:before {
	display: none;
}
/*Inner Banner*/
.inner-banner-area {
	position: relative;
	float: left;
	width: 100%;
}
.inner-banner-area img {
	width: 100%;
}
.inner-banner-caption {
	position: absolute;
	top: 50%;
	width: 100%;
	right: 80px;
	transform: translateY(-50%);
	text-align: right;
	z-index: 100;
}
/*Content Div*/
.content-div {
	float: left;
	width: 100%;
	min-height: 500px;
	padding: 80px 0;
}
.content-div ul {
	padding-left: 15px;
}
.content-div ul li {
	list-style: disc;
}
/*Contact us*/
.contact-us-info {
	margin-bottom: 100px;
}
.contact-us-info .info-box {
	padding: 80px 48px;
	border: 2px solid #ced4da;
	text-align: center;
	width: 100%;
	margin-top: 30px;
}
.contact-us-info .info-box img {
	margin-bottom: 15px;
}
.contact-us-info .info-box h4 {
	font-size: 30px;
	color: #212529;
	margin-bottom: 5px;
	font-family: 'NexaBold';
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.contact-us-info .info-box a {
	color: #212529;
}
.contact-us-info .info-box a:hover, .contact-us-info .info-box a:focus {
	color: #ed1c24;
}
.contact-us-form {
	margin: 0 auto;
	width: 80%;
	text-align: center;
	margin-bottom: 30px;
}
/*About us*/
.bg-secondary, .progress .progress-bar {
	background-color: #e43935 !important;
}
.about-us-tab-text {
	float: left;
	width: 50%;
	padding: 30px;
}
.about-us-tab-img {
	float: right;
	width: 50%;
}
.about-us-tab-img img {
	object-fit: cover;
}
.content-div .about-us-tab:nth-child(even) {
	float: left;
	width: 100%;
	display: -webkit-flex;
	-webkit-flex-direction: row-reverse;
	display: flex;
	flex-direction: row-reverse;
}
.content-div .middle-tab {
	margin: 0;
	margin-bottom: 30px;
}
/*Media*/
.media-listing .news-tab {
	margin: 0;
	margin-bottom: 30px;
}
.media-listing a {
	background: none;
	padding: 0;
	color: #000;
}
.media-listing a:hover, .media-listing a:focus {
	background: none;
	color: #000;
}
.media-listing .news-tab .new-tab-contant {
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, .125)
}
.media-listing .news-tab h5 {
	color: #000;
	margin-bottom: 0;
}
.media-listing .news-tab a:hover h5, .media-listing .news-tab a:focus h5 {
	color: #ed1c24;
	transition: all 0.5s;
}
.main-tab-img img {
	position: relative;
	width: 100%;
	transition: All 1s ease;
	-webkit-transition: All 1s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
}
.main-tab-img:hover img {
	-webkit-filter: grayscale(100%);
	transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-webkit-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-moz-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-o-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	-ms-transform: rotate(0deg) scale(1.2) skew(1deg) translate(0px);
	cursor: pointer;
}
.page-pagination {
	text-align: center;
}
.sidebar-tab {
	float: left;
	width: 100%;
	margin-bottom: 30px;
}
.sidebar-post {
	float: left;
	width: 100%;
	border-bottom: 1px solid #dfdfdf;
	padding: 10px 0;
}
.sidebar-post:last-child {
	border: 0;
}
.sidebar-post-img {
	float: left;
	width: 25%;
}
.sidebar-post-img img {
	height: 60px;
	object-fit: cover;
}
.sidebar-post-text {
	float: right;
	width: 70%;
}
.sidebar-post-text h6 {
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 0;
}
.sidebar-post a:hover .sidebar-post-text h6, .sidebar-post a:focus .sidebar-post-text h6 {
	color: #ef1c24;
}
.time-div {
	font-size: 12px;
	font-weight: 800;
}
.media-detial-img {
	margin-bottom: 15px;
}
.media-detial-img img {
	width: 100%;
}
.media-detial-text h3.media-title {
	text-transform: uppercase;
	font-size: 28px;
	margin-bottom: 0;
}
/*Driver-Detail-area*/
.driver-detial-area {
	background: url(../images/driver-detail-img.jpg) no-repeat bottom center;
	background-size: 100%;
	position: relative;
}
.driver-detial-tab {
	float: left;
	background: #fff;
	font-size: 16px;
	width: 30%;
	margin-right: 15px;
	padding: 15px;
}
.profile-text {
}
.driver-detial-left h2 {
	display: inline-block;
	margin-bottom: 10px;
	background: #fff;
	padding: 5px 15px 5px 5px;
	width: auto;
	line-height: normal;
}
.driver-detial-tab h3 {
	text-transform: uppercase;
	font-size: 22px;
	margin-bottom: 8px;
}
.driver-detial-tab strong {
	font-size: 20px;
}
.content-div ul.snapshot {
	padding-left: 0;
}
.content-div ul.snapshot li {
	list-style: none;
}
.brands-logos {
	background: #fff;
	position: absolute;
	right: 5%;
	top: 0;
	width: 250px;
	text-align: center;
	padding: 40px 20px;
}
.brands-logos img {
	display: inline-block;
	margin-bottom: 30px;
}
.detail-bottom-logo {
	position: absolute;
	bottom: 4%;
	right: 5%;
}
.map-area, .map-area iframe {
	float: left;
	width: 100%;
}
@media (max-width:1024px) {
h2 {
	font-size: 32px;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item, .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item {
	margin-left: 37px;
}
.banner-content {
/*	padding: 0 30px;*/
}
.owl-next {
	right: -25px;
}
.owl-prev {
	left: -25px;
}
.banner-caption-tab {
	/*padding: 20px;*/
	margin-top:6%;
}
.welcome-area h1 {
	font-size: 40px;
}
.middle-tab-area {
	padding: 0 100px;
}
.footer-subscribe h5 {
	font-size: 25px;
}
.subscribe-form {
	width: 55%;
}
.subscribe-form input[type="submit"] {
	font-size: 16px;
}
.short-links a::before {
	top: -5px;
}
.schedule-tab.inner-schedule-tab {
	margin-left: 0;
	margin-right: 0;
}
.news-tab.inner-news-tab {
	margin-left: 0;
	margin-right: 0;
}
}
@media (max-width:991px) {
h1 {
	font-size: 38px;
}
h1 span {
	font-size: 22px;
}
h2 {
	font-size: 29px;
}
.main-nav {
	margin-top: -1px;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item, .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item {
	margin-left: 24px;
}
.banner-caption-tab {
	margin-top: 9px;
	width: 48%;
}
.banner-content {
	padding: 0;
}
.banner-caption-tab big {
	font-size: 56px;
	line-height: 63px;
	margin-bottom: 10px;
}
.banner-caption big span {
	font-size: 25px;
}
.welcome-area h1 {
	line-height: 55px;
	font-size: 40px;
}
.middle-area {
	padding: 40px 0;
}
.middle-tab {
	margin: 0;
}
.middle-tab-area {
	padding: 0 60px;
}
.middle-text-tab {
	font-size: 16px;
	padding: 15px;
}
.middle-text-tab h5 {
	margin-bottom: 10px;
	font-size: 20px;
}
.porcess-tab-area::after {
	display: none;
}
.heading-div h2 {
	font-size: 40px;
}
.process-tab {
	margin-bottom: 40px;
}
.process-area {
	padding: 40px 0;
}
.schedule-tab-image {
	width: 100%;
}
element {
}
.schedule-tab-image span {
	display: inline-block;
}
.schedule-tab-image span {
	min-height: auto;
}
.schedule-tab-text {
	width: 100%;
	font-size: 17px;
	padding: 0px 15px 20px;
}
.owl-prev {
	left: -15px;
}
.owl-next {
	right: -15px;
}
.footer-subscribe {
	text-align: center;
}
.footer-subscribe h5 {
	float: none;
	margin-bottom: 30px;
}
.f-logo {
	width: 250px;
}
.footer-social a {
	width: 40px;
	height: 40px;
	font-size: 18px;
	padding-top: 4px;
	margin-left: 5px;
}
.map-area iframe {
	height: 300px;
}
.news-area {
	padding: 40px 0;
}
.welcome-right {
	width: 45%;
}
.welcome-left {
	margin-top: 0;
}
}
@media (max-width:767px) {
h1 {
	font-size: 35px;

}
h1 span {
	font-size: 18px;
}
h2 {
	font-size: 26px;
}
.header {
	position: relative;
	padding: 3px 0px;
	min-height: 86px;
}
.logo {
	position: absolute;
	left: 15px;
	z-index: 100;
}
.social-media {
	margin-left: 0px;
	margin-top: 16px;
}
.main-nav {
	float: right;
	width: 100%;
	margin-top: 20px;
}
.main-nav #mega-menu-wrap-menu-1 .mega-menu-toggle.mega-menu-open + #mega-menu-menu-1,  .main-nav #mega-menu-wrap-new-menu .mega-menu-toggle.mega-menu-open + #mega-menu-new-menu {
	margin-top: 20px;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link, .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link {
	color: #999999;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item, .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item {
	margin-left: 0px;
}
.main-nav .navbar-inverse .navbar-nav > li > a {
	background: #fff;
	color: #ed1c24;
	border: 0;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link, .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link {
	color: #999999;
	border-bottom: 1px solid #d8d8d8;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:last-child > a.mega-menu-link, .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom: 0;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:last-child > a.mega-menu-link:hover,  .main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:last-child > a.mega-menu-link:focus,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item:last-child > a.mega-menu-link:hover,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item:last-child > a.mega-menu-link:focus {
	border-bottom: 0;
}
.main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:hover,  .main-nav #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:focus,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link:hover,  .main-nav #mega-menu-wrap-new-menu #mega-menu-new-menu > li.mega-menu-item > a.mega-menu-link:focus {
	border-bottom: 1px solid #ff6a00;
	color: #ff6a00;
}
.main-nav #mega-menu-wrap-menu-1 .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label,  .main-nav #mega-menu-wrap-new-menu .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
	font-weight: bold;
}
.main-nav .navbar-inverse .navbar-nav > .active > a::before {
	display: none;
}
.banner-caption-tab big {
	font-size: 40px;
	line-height: 48px;
}
.banner-caption-tab {
	font-size: 20px;
	padding: 20px 0px 0 0;
}
.banner-area img {
	min-height: 350px;
	object-fit: cover;
}
.banner-caption big {
	font-size: 30px;
}
.welcome-area {
	padding: 50px 0 40px;
}
.welcome-left {
	width: 100%;
	padding-right: 0;
}
.welcome-right {
	float: left;
	width: 100%;
	margin-top: 20px;
}
.welcome-area h1 {
	line-height: 45px;
	font-size: 35px;
}
.middle-tab-area {
	padding: 0 20px;
}
#owl-carousel1 .owl-prev {
	left: -15px;
}
#owl-carousel1 .owl-next {
	right: -15px;
}
.owl-prev {
	left: -5px;
}
.owl-next {
	right: -5px;
}
.heading-div h2 {
	font-size: 35px;
}
.footer-bottom {
	text-align: center;
}
.f-logo {
	float: none;
	display: inline-block;
	margin-bottom: 15px;
}
.footer-social {
	width: 100%;
	text-align: center;
	margin-bottom: 6px;
}
.copyright {
	width: 100%;
	text-align: center;
}
.short-links {
	float: none;
	display: block;
	text-align: center;
}
.short-links a {
	margin: 0 6px;
}
.footer-top {
	margin-bottom: 25px;
	padding: 25px;
	padding-bottom: 15px;
}
.middle-tab-image img {
	height: auto;
}
.gallery-tab-area .simplefilter li {
	font-size: 18px;
}
.gallery-tab-area ul.simplefilter {
	margin-bottom: 30px;
}
}
@media (max-width:600px) {
.banner-caption-tab {
    margin-top: 5%;
}
.schedule-tab {
	margin: 0 40px;
}
.news-tab {
	margin: 0 40px 15px;
}
.alignleft,  .alignright {
	float: none;
	display: block;
	margin: 0px auto 23px;
}
}
@media (max-width:480px) {
h2 {
	font-size: 24px;
}
.header {
	padding: 4px 0px 3px;
}
.logo {
	width: 187px;
}
.banner-area img {
    min-height: 250px;
}
.banner-content {
	top:15%;
}
.banner-caption-tab {
    width: 58%;
	margin:0;
}
.profile-img {
	float: right;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}
.profile-img img {
	display: inline-block;
	width: 80%;
	min-height: auto;
}
.banner-area {
/*	padding: 30px 0 0;*/
}
.banner-caption-tab big {
	font-size: 35px;
	line-height: 43px;
}
.banner-caption big span {
	font-size: 15px;
}
.heading-div h2 span {
	font-size: 18px;
}
.heading-div h2 span br {
	display: none;
}
.welcome-area h1 {
	font-size: 28px;
}
.welcome-area h1 span {
	font-size: 18px;
	line-height: normal;
}
.welcome-left, body {
	font-size: 18px !important;
}
.read-more {
	font-size: 20px;
}
.middle-area {
	padding: 50px 0 50px;
}
.heading-div {
	margin-bottom: 50px;
}
.read-more-div {
	top: 15px;
	right: 18px;
}
.read-mover-div {
	position: relative;
	right: 0;
	top: 0;
	text-align: center;
}
.middle-tab {
	width: 100%;
}
.process-area {
	padding: 50px 0 30px;
}
.news-tab-area {
	margin-bottom: 20px;
}
.footer-subscribe h5 {
	line-height: normal;
}
.subscribe-form input[type="text"] {
	width: 100%;
	margin-bottom: 15px;
}
.subscribe-form input[type="submit"] {
	width: 100%;
}
.wht-bdr-btn {
	padding: 5px 20px;
}
.footer-social {
	float: none;
}
.footer-top {
	text-align: center;
}
.gallery-tab-area .simplefilter li {
	padding: 6px 14px;
}
.inner-banner-area img {
	min-height: 150px;
	object-fit: cover;
}
.heading-div h2 {
	font-size: 26px;
	line-height: 47px;
}
.copyright {
	line-height: normal;
}
.content-div {
	padding: 50px 0px;
}
}
@media (max-width:380px) {
h1 {
	font-size: 30px;
}
h1 span {
	font-size: 19px;
}
.header {
	min-height: 67px;
}
.logo {
	width: 150px;
	margin-top: 3px;
}
.banner-content {
    position: inherit;
    background: #000;
    float: left;
    width: 100%;
}
.banner-caption-tab {
	width:100%;
}
.banner-area img {
    min-height: 150px;
}
.main-nav {
	margin-top: 10px;
}
.main-nav #mega-menu-wrap-menu-1 .mega-menu-toggle.mega-menu-open + #mega-menu-menu-1, .main-nav #mega-menu-wrap-new-menu .mega-menu-toggle.mega-menu-open + #mega-menu-new-menu {
	margin-top: 7px;
}
.banner-caption-tab big {
	font-size: 29px;
	line-height: 37px;
}
.welcome-area {
	padding: 30px 0 0;
}
.read-more-div {
	position: relative;
	right: inherit;
	text-align: center;
	top: inherit;
}
.schedule-tab {
	margin: 0 15px;
}
.news-tab {
	margin: 0 15px 15px;
}
.heading-div {
	margin-bottom: 30px;
	text-align: center;
}
.social-media a {
	width: 34px;
	height: 34px;
	font-size: 15px;
	padding-top: 1px;
	margin-left: 5px;
}
.gallery-area {
	padding-top: 20px;
}
header.header.sticky .logo {
	width: 140px;
	margin-top: 5px;
}
}