/********************************************cmn css*************/

body {
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 20px;
	/*font-family: 'Titillium Web', sans-serif;*/
	overflow-x: hidden;
}

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

input,
button,
select,
optgroup,
textarea,
a {
	outline: none;
}

*,
*::before,
*::after {
	outline: none;
}

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

iframe {
	border: 0;
}

a {
	color: #ffff33;
	cursor: pointer;
	outline: 0 !important;
}

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

p {
	margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000000;
	padding: 0px;
	margin: 0px;
	line-height: 1;
}

h1 {
	font-size: 90px;
	/*font-family: 'Racing Sans One', cursive;*/
}

h2 {
	font-size: 43px;
}

h3 {
	font-size: 36px;
	font-weight: 500;
}

h4 {
	font-size: 27px;
}

h5 {
	font-size: 22px;
	font-weight: 500;
}

h6 {
	font-size: 18px;
}

.CmnBtn {
/* 	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	background: #f20000;
	font-size: 27px;
	color: #fff;
	font-weight: 500;
	padding: 3px 15px;
	min-width: 128px;
	text-align: center;
	text-transform: uppercase; */
	
	display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background: #f20000;
    /*font-size: 27px;*/
   	 font-size: 20px;
    color: #fff;
    font-weight: 500;
    padding: 3px 15px;
    min-width: 128px;
    text-align: center;
    text-transform: uppercase;
    border: 0;
	cursor:pointer;
}

.CmnBtn:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffff33;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.CmnBtn:hover {
	color: #000;
}

.CmnBtn.login:before {
	background: #f20000;
}

.CmnBtn:hover:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}


/***********************menu only*****************/

@media only screen and (min-width: 1200px) {
	/*=== Append and Prepend ===*/
	.desk-hide {
		display: none;
	}
	/*=== Append and prepend ====*/
	/*==== Menu ====*/
	.main-nav {
		text-transform: uppercase;
	}
	.main-nav>ul {
		margin: 0;
		padding: 0;
	}
	.main-nav>ul>li {
		display: inline-block;
		position: relative;
	}
	.main-nav>ul>li:last-child {
		margin: 0;
	}
	.main-nav>ul>li>a {
		color: #ff3;
		display: block;
		padding: 7px 10px !important;
		text-decoration: none;
		font-size: .75em;
		font-weight: 500;
		transition: all .4s ease;
	}
	.main-nav>ul>li ul:before {
		position: absolute;
		content: "";
		border: 12px solid red;
		top: -23px;
		left: 19%;
		border-color: transparent transparent #ff3 transparent;
	}
	.main-nav>ul>li>a:last-child {
		padding-right: 0;
	}
	.main-nav>ul>li:hover>a {
		color: #fff;
	}
	.main-nav>ul>li:hover>ul {
		visibility: visible;
		opacity: 1;
	}
	.main-nav>ul>li ul {
		position: absolute;
		margin: 0;
		padding: 0;
		background: #ffff33;
		width: 300px;
		visibility: hidden;
		opacity: 0;
		z-index: 8;
		display: block !important;
		padding: 10px 0px;
		top: 200%;
		transition: all .4s ease;
	}
	.main-nav>ul>li:hover ul {
		top: 100%;
	}
	.main-nav>ul ul ul {
		background: #6b6969;
	}
	.main-nav>ul>li ul li {
		display: block;
		position: relative;
	}
	.main-nav>ul>li ul li:last-child {
		border: 0;
	}
	.main-nav>ul>li ul li a {
		padding: 8px 20px;
		display: block;
		text-decoration: none;
		/*font-size: 20px;*/
		font-size:.75em;
		color: #000;
		font-weight: 500;
		transition: all .4s ease;
	}
	.main-nav>ul>li ul li:hover>ul {
		visibility: visible;
		opacity: 1;
		left: 100%;
		top: 0;
	}
	.main-nav>ul>li ul li:hover>a {
		background: #000;
		color: #fff;
	}
	.main-nav>ul>li ul li.submenu::after {
		content: "";
		position: absolute;
		height: 0;
		width: 0;
		border-bottom: 3px solid transparent;
		border-left: 6px solid #fff;
		border-top: 3px solid transparent;
		right: 5px;
		top: 13px;
		pointer-events: none;
	}
	.mob-btn {
		display: none;
	}
	
	.kyle_sidebarPaddingTop {
		padding-top: 2.3em;
	}
	/*==== Menu End ====*/
	
	.contact-wrapper {
		margin-top: 2.85em;
/* 		margin-top:0; */
	}
}

@media only screen and (max-width: 1199px) {
	.imgholder {
	padding-top:4em;
}
	/*==== Menu ====*/
	.main-nav ul {
		width: 100%;
	}
	.main-nav {
		background: #000;
		-webkit-transition: all ease 0.2s;
		transition: all ease 0.2s;
		z-index: 1005;
		box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.7);
		width: 100%;
		left: 0;
	}
	.menu-right {
		display: none;
	}
	.main-nav ul {
		margin: 0;
		padding: 0;
		display: block;
		margin-top: 0px;
	}
	.main-nav ul.mnav {
		margin-bottom: 30px;
	}
	.main-nav ul li {
		display: block;
		border-bottom: 1px solid #ffff33;
		position: relative;
		text-transform: capitalize;
		font-size: 13px;
		width: 100%;
	}
	.main-nav ul li span {
		display: none;
	}
	.main-nav ul li a {
		color: #ff3;
		text-decoration: none;
		font-size: 16px;
		display: block;
		padding: 10px 20px;
		padding-right: 40px;
		font-weight: 500;
		text-transform: uppercase;
	}
	.main-nav ul li a:hover {
		background: #2D2D2D;
	}
	.main-nav ul li.submenu i {
		position: absolute;
/* 		width: 43px; */
		height: 44px;
		top: 0;
		right: 0;
		cursor: pointer;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
		width:100%;
	}
	.main-nav ul li.submenu i:after {
		content: "";
		height: 0;
		width: 0;
		border-left: 7px solid transparent;
		border-right: 7px solid transparent;
		border-top: 10px solid #ffff33;
		position: absolute;
		right: 17px;
		top: 18px;
		z-index: 10;
	}
	.main-nav ul ul {
		margin: 0;
		display: none;
	}
	.main-nav ul ul li:last-child {
		border-bottom: 0;
	}
	.main-nav ul ul li:first-child {
		border-top: 1px solid #ffff33;
	}
	.main-nav ul ul li a {
		padding-left: 40px;
	}
	.main-nav ul ul li ul a {
		padding-left: 30px;
	}
	.show-menu .main-nav {
		right: 0;
	}
	.show-menu .overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		z-index: 1001;
	}
	.mob-btn {
		position: absolute;
		float: right;
		padding: 5px 7px;
		margin: 0px;
		background-color: transparent;
		cursor: pointer;
		right: 15px;
		top: 7px;
		z-index: 9999;
	}
	
	.mob-btn span {
		display: block;
		width: 37px;
		height: 4px;
		border-radius: 1px;
		background: #ffff33;
	}
	.mob-btn span+span {
		margin-top: 5px;
	}
	/*==== Menu End ====*/
	/*=== Append and Prepend ===*/
	.extra-link {
		display: none;
	}
	/*==== Append and Prepend End ====*/
	.outer-block {
		float: left !important;
		width: 100%;
		margin-top: 20px;
	}
	.main-nav ul li:last-child {
		border-bottom: 0;
	}
	.menu-block {
		width: 100%;
	}
	.logo {
/* 		\: 15px; */
	}
	.main-nav ul li a:hover {
		background: #f20000;
	}
	.contact-wrapper{
		padding-top: 5em !important;
	}
}

* {
	margin: 0;
	padding: 0;
}

.menu-wrp {
	background: #464646;
	/*  margin-bottom: 60px;
*/
}

.extra-link {
	padding: 20px 0;
}

.extra-link ul li {
	list-style: none;
	float: left;
	margin-right: 15px;
}

.extra-link ul li a {
	color: #000;
	text-decoration: none;
}

.extra-link ul li a:hover {
	color: #464646;
}


/********************ends menu*************************/


/**************************header start here**************/

header {
	position: fixed;
	width: 100%;
	left: 0;
	z-index: 9;
}

header.sticky {
	-webkit-animation: slide-down 0.7s;
	-moz-animation: slide-down 0.7s;
	animation: slide-down 0.7s;
	z-index: 999;
}

@-webkit-keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-moz-keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slide-down {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*.container {
	max-width: 1065px;
}*/

.social-icons {
	position: fixed;
	right: -130px;
	top: 35%;
	width: 210px;
	z-index: 1100;
	padding: 0px;
	margin: 0px;
}

.header-wrap .container {
	/* max-width: 1000px; */
}

.outer-block {
	float: right;
}

.menu-block {
	display: inline-block;
	vertical-align: middle;
}

.right-login {
	display: inline-block;
	vertical-align: middle;
}

.right-login ul li {
	display: inline-block;
	margin-left: 15px;
}
.CmnBtn.voucher {
    background: #fff;
    color: #f20000;
}

.CmnBtn.voucher:before {
    background: #f20000;
}

.CmnBtn.voucher:hover {
    color: #fff;
}
.login {
	background: #ffff33;
	color: #000;
}

.right-login .login:hover:before {
	background: #f20000;
}

.login:hover {
	color: #fff;
}

.logo img {
	max-width: 210px;
}

.header-wrap {
	background: rgba(0, 0, 0, .5);
}

.social-icons ul li {
	display: block;
	margin-bottom: 3px;
}

.social-icons ul li a {
	display: block;
	height: 44px;
	background: #ffff33;
	color: #000;
	font-size: 20px;
	line-height: 44px;
	margin: 0px 0px 1px 0px;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	-o-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	padding: 0;
	overflow: hidden;
}

.social-icons ul li a p {
	font-weight: 500;
	vertical-align: middle;
	display: inline-block;
}

.social-icons ul li a:hover {
	margin-left: -230px;
}

.social-icons ul li a i {
	float: left;
	margin: 12px 11px;
	margin-right: 12px;
	font-size: 20px;
}

.social-icons ul {
	padding-left: 40px;
}

.main-banner h1 {
	color: #fff;
	margin-bottom: 20px;
}

.main-banner h1 span {
	color: #ff3;
}

.main-banner h3 {
	color: #fff;
	line-height: 42px;
	margin-bottom: 20px;
}

.link-area a {
	margin-right: 15px;
}

.video-wrpa {
	position: relative;
	position: relative;
}

#player iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	margin-top: -100px;
}

.main-banner {
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
}

.video-wrpa .video-outer .container {
	position: relative;
	height: 100%;
}

#player {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
	height: 0;
	overflow: hidden;
}

#player:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: transparent;
}


/*************************states and facts************************/

.cmn-head {
	background: #ffff33;
	height: 48px;
	overflow: hidden;
}

.header-cmn h3 {
	text-transform: uppercase;
	/*font-family: 'Racing Sans One', cursive;*/
	display: inline-block;
	padding: 6px 30px;
	position: relative;
	-webkit-transform: skew(0deg);
	-moz-transform: skew(0deg);
	transform: skew(0deg);
}

.starts-wrapper {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	padding: 25px 0px 35px;
	margin-top: -100px;
}

.header-cmn {
	display: inline-block;
	margin-left: 15px;
}

.header-cmn h3:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	left: 0;
	background: white;
	-moz-transform: skew(-30deg);
	transform: skew(-30deg);
	z-index: -1;
	top: 0;
}

.counter-area a {
	color: #000;
}

.row.metres-wrap {
	margin: 0;
	padding: 30px 15px 0px;
}

.counter-block h4 {
	font-weight: 500;
	text-transform: uppercase;
}

span.counter span {
	font-size: 60px;
	font-weight: 500;
	line-height: 71px;
}

.counter-block {
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	width: 52%;
}

.couter-img {
	display: inline-block;
	padding-left: 10px;
	vertical-align: middle;
	width: 48%;
	margin-left: -5px;
}

.counter-up {
	margin: 20px 0px 20px;
}

.counter-box:hover .couter-img img {
	transform: scale(1.3, 1.3);
}

.couter-img img {
	transform: scale(1);
	transition: all .4s ease;
	width: auto !important;
	max-width: 100%;
}

.counter-box {
	cursor: pointer;
	padding-right: 30px;
	padding-top: 30px;
}

.states-fac-rad {
	margin-top: 40px;
}


/*********************race types*******************/

.race-outer {
	padding: 40px 0px 0px;
}

.race-type-wrap {
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.race-inner img {
	width: 100%;
	margin-bottom: 5px;
}

.head-race {
	background: #ffff33;
	position: relative;
	height: 30px;
}

.head-race h5 {
	display: inline-block;
	color: #000;
	padding: 4px 10px;
	text-transform: uppercase;
	position: relative;
	-webkit-transform: skew(0deg);
	-moz-transform: skew(0deg);
	transform: skew(0deg);
}

.head-race h5:after {
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
	right: -11px;
	background: white;
	-moz-transform: skew(-30deg);
	transform: skew(-30deg);
	top: 0;
	z-index: -1;
}

.head-race:before {
	position: absolute;
	content: "";
	height: 100%;
	width: 25px;
	background: #fff;
}

.race-inner {
	margin-top: 13px;
}

.race-inner p {
	font-size: 20px;
}

.read-race .right-btn.CmnBtn {
	float: right;
	margin-top: 2px;
}

.outer-race {
	margin-bottom: 50px;
}


/********************mailing area start here*********************/

.mailing-wrapper {
	padding: 25px 0px 25px;
	float: left;
	width: 100%;
	clear: both;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.outer-checkbox h5 {
	font-size: 20px;
	line-height: 29px;
	margin-top: 20px;
	margin-bottom: 15px;
	max-width: 769px;
}

.form-fild {
    float: left;
    width: 100%;
    padding: 0 18px 0 0;
    margin-bottom: 18px;
}

.form-fild.width-fld {
	width: 50%;
	float: left;
}
.form-fild .form-cn {
    width: 100%;
    padding: 4px 15px;
    font-size: 20px;
    color: #010101;
    border: 1px solid #989898;
}
.form-fild .enter-field {
	font-size: 20px;
	display: block;
	margin-bottom: 25px;
}

.check-wrap {
	font-size: 20px;
}

.check-wrap {
	display: inline-block;
}
.check-wrap .result {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    padding: 0;
    border: 1px solid #989898;
    background: #fff;
}

.check-wrap.inform-check {
	margin-left: 30px;
}

span.informBox {
    position: relative;
    width: 45px;
    height: 45px;
    text-align: center;
    padding: 0;
    line-height: 50px;
    border: 1px solid #989898;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    margin-left: 8px;
}

span.informBox input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.form-fild input[type=checkbox] {
	margin-left: 0px;
}

span.informBox input[type=checkbox]:checked+span.informChkTick {
	opacity: 1;
}

.informChkTick {
	opacity: 0;
	background-image: url(../images/tick.png);
	background-repeat: no-repeat;
	background-position-x: 6px;
	width: 57px;
	height: 70px;
	display: inline-block;
	top: -5px;
	left: 3px;
	position: relative;
}


/***************************circuit area start here**************/

.circute-wrap {
	clear: both;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	padding: 25px 0px 35px;
}

.circute-slider {
	margin: 50px 0px 20px;
}

.cir-outer h4 {
	font-weight: 500;
	margin-bottom: 20px;
}

.circute-slider .owl-nav {
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}

.circute-slider .owl-prev {
	position: absolute;
	left: -50px;
	background: url(../images/angle-left.png);
}

.circute-slider .owl-next {
	position: absolute;
	right: -50px;
	background: url(../images/angle-right.png);
}

.circute-slider .owl-prev,
.circute-slider .owl-next {
	width: 45px;
	font-size: 0;
	height: 45px;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}


/*****************share b****************/

.share-main {
	padding: 0px 10px;
}

.share-block {
	/*margin: 50px 0px 60px;*/
	margin-top:2em;
}

.pop-instagm .pop-box img {
	height: 250px;
	margin: 0 auto;
	display: block;
	object-fit: cover;
	object-position: top center;
}

.pop-instagm {
	max-width: 450px;
	padding: 50px;
	text-align: center;
}

.pop-instagm .pop-box p {
	margin-top: 10px;
	margin-bottom: 0;
}

.pop-instagm .pop-box p a {
	display: block;
	margin-top: 10px;
	color: #f20000;
}

.pop-instagm .pop-box p a:hover {
	color: #f20000;
}


/***********************contact area start here****************/

.form-fild textarea.form-cn {
	min-height: 204px;
	resize: vertical;
}

.row.contact-form iframe {
	width: 100%;
	height: 225px;
	padding-right: 26px;
	margin-bottom: 25px;
}

.contact-wrapper {
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.contact-outer {
	padding: 25px 0px;
}

.contact-adrs h6 {
	font-weight: 500;
	font-size: 20px;
}


/*******************footer start here****************/

.right-login ul li a {
	font-size: 20px;
	padding: 4px 15px;
}

.footer-wrap ul li a:hover, .footer-wrap ul li a:focus {
	color: #f20000 !important;
}

.footer-wrap ul li a {
	transition: all .4s ease;
}

.footer-wrap {
	background: #000;
	padding: 10px 0px;
}

.footer-wrap ul {
	text-align: center;
}

.footer-wrap ul li {
	display: inline-block;
	color: #ff3;
	font-weight: normal;
	margin-right: 10px;
	padding-right: 10px;
	position: relative;
}

.footer-wrap ul li:after {
	position: absolute;
	content: "/";
	right: -7px;
	top: 0;
}

.footer-wrap ul li:last-child:after {
	content: "";
}


/********************************************team building*************************/

.team-wrapper {
	padding: 280px 0px;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	clear: both;
	background-position:top center !important;
}

.team-b-e {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	padding: 25px 0px;
	margin-top:-.5em;
}

.top-e-t {
	padding: 25px 0px 40px;
}

.top-e-t p {
	font-size: 18px;
	margin-bottom: 25px;
}

.team-read .CmnBtn {
	margin-right: 20px;
}

.te-block {
	margin-bottom: 60px;
}

.te-right h4 {
	font-weight: 500;
	margin-bottom: 15px;
}

.te-right p {
	font-size: 18px;
}

.read-ter {
	margin-top: 25px;
}

.read-ter .CmnBtn {
	margin-right: 20px;
}

.oter-et .row.te-block:nth-child(even) .te-left {
	order: 2;
	margin-left: -30px;
}

.oter-et .row.te-block:nth-child(even) .te-right {
	padding-right: 30px;
}

.inner-cl img {
	width: auto !important;
	margin: 0 auto;
}

.client-main.owl-carousel .owl-stage {
	display: flex;
	align-items: center;
}

.client-main .owl-nav {
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}

.client-main .owl-prev {
	position: absolute;
	left: -50px;
	background: url(../images/clint-left.jpg);
}

.client-main .owl-next {
	position: absolute;
	right: -50px;
	background: url(../images/client-right.jpg);
}

.client-main .owl-prev,
.client-main .owl-next {
	width: 45px;
	font-size: 0;
	height: 45px;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.clients-slider {
	padding: 40px 0px 60px;
}

.ts-wrapper {
	background-repeat: no-repeat !important;
	background-size: cover !important;
	padding: 40px 0px 60px;
}

.ts-slider {
	margin-top: 40px;
}

.ts-c-item {
	padding: 0px 30px;
	font-weight: 500;
	font-style: italic;
}

.ts-c-item p {
	font-weight: 500;
}

.item.ts-c-item p {
	font-style: normal;
	font-weight: 500;
	margin-top: 15px;
}

.ts-wrapper .owl-nav {
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}

.ts-wrapper .owl-prev {
	position: absolute;
	left: -50px;
	background: url(../images/angle-left.png);
}

.ts-wrapper .owl-next {
	position: absolute;
	right: -50px;
	background: url(../images/angle-right.png);
}

.ts-wrapper .owl-prev,
.ts-wrapper .owl-next {
	width: 45px;
	font-size: 0;
	height: 45px;
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.desk-racer.race-outer .col-md-6 {
	padding-right: 25px;
	padding-left: 25px;
}

.desk-racer.race-outer .row {
	margin-left: -25px;
	margin-right: -35px;
}

.right-head {
	float: right;
	margin-top: 8px;
}

.right-head h4 {
	font-weight: 500;
}

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #000;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #000;
}

:-ms-input-placeholder {
	/* IE 10+ */
	color: #000;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #000;
}
/******************track area css*****************/
.header-wrap.track-header {
    background: #000;
}

.track-nwrap {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 95px 0px 50px;
}

.track-nouter {
    padding-top: 15px;
}

.track-ninner p {
    font-size: 18px;
}

.track-ninner img {
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 50px;
    display: block;
}

.track-list ul li {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    padding: 0px 13px 0px 0px;
    min-width: 120px;
}

.track-list ul li h2 {
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 15px;
}

.track-list ul li h3 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 21px;
}

.track-btns ul li {
    display: inline-block;
    margin-right: 20px;
}

.track-list {
    margin-bottom: 50px;
}

.back-trck {
    margin-top: 28px;
}

.back-trck .CmnBtn {
    min-width: 192px;
}
.track-btns ul li .CmnBtn {
    min-width: 192px;
}
.share-wrap {
    clear: both;
    padding-top: 25px;
	padding-bottom:3em;
}
.share-wrap.space-share {
    padding-top: 25px;
}
.video-pop {
    box-shadow: inherit;
    height: 418px;
    text-align: center;
    max-width: 689px;
    padding: 0;
    overflow: hidden;
}

.video-pop iframe {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 27px;
    background: #000;
}

.video-pop a.close-modal {
    color: #fff;
}
.angle-top {
    position: relative;
    width: 49px;
    text-align: center;
    background: #ffff33;
    padding: 1px 0px;
}
.angle-top {
    display: none;
}
.img-top img {
    max-height: 22px;
    margin-left: -6px;
}
.booking-popup .container {
    padding: 0px 30px;
}

.booking-popup .mail-outer {
    margin-top: 12px;
}

.booking-popup .form-fild {
    padding: 0px 5px;
    margin-bottom: 12px;
}

.booking-popup .CmnBtn.dwnlBtn {
    margin-top: 10px;
}
.booking-popup .form-fild textarea.form-cn {
    min-height: 145px;
}

.booking-popup .form-fild .enter-field {
    margin-bottom: 10px;
}
.selectarea {
    -webkit-appearance: none;
    background: url(../images/select-arrow.jpg) no-repeat;
    background-position: 97% center;
    background-size: 20px;
}
.outer-checkbox .form-fild p a {
    color: #000;
    font-weight: 500;
}
.outer-checkbox .form-fild p {
    margin-bottom: 0;
}
.states-fac-rad .CmnBtn {
    color: #fff;
}

.states-fac-rad .CmnBtn:hover {
    color: #000;
}
@media(min-width:768px) {
	.states-fac-rad.mob-state {
    display: none;
}
	
	#player iframe {
	width: 100%;
}
	.mob-racer {
		display: none;
	}
	.hide-head {
		display: none;
	}
	.mob-et {
		display: none;
	}
	.mob-vie-slider {
    display: none;
	}
}
@media(min-width:1200px){
	.main-nav ul li a.hide {
		display: none;
	}
	.social-icons-mob {
		display: none;
	}
	.starts-wrapper .cmn-head {
    overflow: inherit;
}


.top-text {
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    margin-top: 0px;
    padding-right: 6px;
}

#myVideo {
    width: 100%;
}
	}
@media(max-width:1199px){
	.angle-top {
    display: none !important;
}
	.social-icons {
		display: none;
	}
	.social-icons-mob ul li {
		border: oldlace;
		display: inline-block !important;
		width: auto;
		margin-right: 13px;
	}
	.social-icons-mob ul li a {
		padding: 0;
		font-size: 20px;
	}
	
	.control_btns {
		right:.5em !important;
	}
	.social-icons-mob {
		padding: 10px 20px;
	}
	.social-icons-mob ul li a i {
		font-size: 21px;
	}
	.social-icons-mob ul li a:hover {
		background: transparent;
		color: #f20000;
	}
	.row.contact-form iframe {
    display: none;
	}
	.track-list {
    display: none;
}
	}
@media(min-width:768px) and (max-width:1199px){
/* 	.video-wrpa,
	.team-wrappervideo{
		padding-top: 4em;	
	} */
	
	.video-wrpa,
	.team-wrappervideo{
		padding-top:0em;	
	}
	#player video,
	#playerinner video{
		width:100%;
	}
	
	.track-btns ul li .CmnBtn {
    min-width: 152px;
}

.back-trck .CmnBtn {
    min-width: 152px;
}

.track-btns ul li {
    margin-right: 10px;
}
	.share-wrap .owl-next {
		position: absolute;
		right: -42px;
		background: url(../images/arrow-right.png);
		top: 50%;
		transform: translateY(-50%);
	}
	.row.contact-form {
    margin-right: -40px;
}
.team-wrapper {
    padding: 200px 0px;
}

.ts-wrapper .owl-prev {
    left: -25px;
}

.ts-wrapper .owl-next {
    right: -25px;
}
.client-main .owl-prev {
    left: -25px;
}

.client-main .owl-next {
    right: -25px;
}
	.share-wrap .owl-prev,
	.share-wrap .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}
	.share-wrap .owl-prev {
    position: absolute;
    left: -42px;
    background: url(../images/arrow.png);
    top: 50%;
    transform: translateY(-50%);
}
	
	.circute-slider .owl-prev {
    left: -10px;
}

.circute-slider .owl-next {
    right: -10px;
}
	.desk-racer.race-outer .row {
    margin-left: -25px;
    margin-right: -25px;
}
	.CmnBtn {
    font-size: 22px;
    padding: 3px 10px;
}
.read-race .right-btn.CmnBtn {
    margin-top: 0px;
}
	.main-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.main-banner h3 {
    font-size: 20px;
    line-height: 23px;
    font-weight: 500;
}

#player iframe {
    margin-top: 0;
}

.main-banner {
    padding: 0px 30px;
        bottom: 125px;
}
.starts-wrapper {
    margin-top: 0;
}

#player {
    padding-bottom: 0;
    height: 438px;
}
	.container {
    max-width: 740px;
    padding: 0px 30px;
}
.counter-up .owl-prev {
		position: absolute;
		left: -30px;
		background: url(../images/arrow.png);
	}
	.counter-up .owl-next {
		position: absolute;
		right: -30px;
		background: url(../images/arrow-right.png);
	}
	.counter-up .owl-prev,
	.counter-up .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
		top: 55%;
	}
.header-wrap {
    background: #000;
    padding: 14px 0px;
}

.mob-btn {
    top: 8px;
}
.header-wrap .container {
    position: relative;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.logo {
    text-align: left;
    position: relative;
   /* max-width: 740px;*/
    margin: 0 auto;
    padding-left: 6px;
}
.logo-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.menu-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.right-login {
    display: none;
}
}
@media(max-width:1199px) {
	/*.race-type-wrap {
		padding-top: 60px;
	}*/
}
@media(max-width:767px) {
	.states-fac-rad.desk-state {
    display: none;
}
	.booking-popup .form-fild {
    padding: 0;
}
	.video-pop {
    height: auto;
    background: transparent;
}

.video-pop iframe {
    position: static;
}
	/*.race-type-wrap {
    padding-top: 25px;
}*/
.client-wrap {
    padding-top: 25px;
}

.ts-wrapper {
    padding-top: 25px;
}
	.mob-vie-slider.et-content {
		background: url(../images/races-types-bg.jpg) no-repeat;
		background-size: cover !important;
		background-repeat: no-repeat !important;
		padding: 25px 0px 0px;
		text-align: center;
	}
	.client-main .owl-prev {
		left: 0;
		background: url(../images/arrow.png);
	}
	.client-main .owl-next {
		right: 0;
		background: url(../images/arrow-right.png);
	}
	.item.ts-c-item {
		font-size: 16px;
	}
	.ts-c-item {
		text-align: center;
	}
	.item.ts-c-item p {
		font-size: 16px;
	}
	.ts-wrapper .owl-prev {
		left: 0;
		background: url(../images/arrow.png);
	}
	.ts-wrapper .owl-next {
		right: 0;
		background: url(../images/arrow-right.png);
	}
	.te-left h4 {
		display: inline-block;
		color: #000;
		padding: 4px 10px;
		text-transform: uppercase;
		font-size: 16px;
		font-weight: 500;
	}
	.item.row.te-block {
		padding: 0px 30px;
		margin-bottom: 25px;
	}
	.ts-c-item {
		padding: 0px 40px;
		text-align: center;
	}
	.te-right p {
		font-size: 16px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.read-ter {
		margin-top: 0;
	}
	.read-ter .CmnBtn {
		min-width: 120px;
		margin: 5px 10px;
	}
	.mob-vie-slider.et-content .owl-prev {
		position: absolute;
		left: -15px;
		background: url(../images/arrow.png);
		top: 20%;
	}
	.mob-vie-slider.et-content .owl-next {
		position: absolute;
		right: -15px;
		background: url(../images/arrow-right.png);
		top: 20%;
	}
	.mob-vie-slider.et-content .owl-prev,
	.mob-vie-slider.et-content .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}
	.team-b-e {
		background: url(../images/mob-team-bg.jpg) no-repeat !important;
		background-size: cover !important;
		padding-bottom: 0;
	}
	.desk-et {
		display: none;
	}
	.team-read:nth-child(2) .CmnBtn {
		min-width: 75px;
	}
	.team-wrapper {
		padding: 160px 0px;
		position: relative;
	}
	.team-wrapper:before {
		position: absolute;
		content: "";
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, .4);
		top: 0;
	}
	.top-e-t {
		text-align: center;
	}
	.top-e-t p {
		font-size: 16px;
	}
	.team-read .CmnBtn {
		margin: 5px 35px;
	}
	.team-read {
		text-align: center;
	}
	.form-fild .CmnBtn {
		min-width: 150px;
		margin-top: 20px;
	}
	.logo {
    text-align: center;
    position: relative;
    left: 0;
    float: left;
    padding-left: 20px;
}
	.outer-checkbox h5 {
		font-size: 16px;
		font-weight: 500;
	}
	.form-fild .form-cn {
		font-size: 16px;
	}
	.form-fild .enter-field {
		font-size: 16px;
	}
	.check-wrap {
		font-size: 16px;
	}
	.cir-outer p {
		font-size: 16px;
	}
	.circute-wrap {
		padding-bottom: 5px;
	}
	.share-wrap {
		padding-top: 25px;
	}
	.race-inner {
		padding-left: 15px;
		padding-right: 15px;
		margin-top: 3px;
	}
	.counter-box {
    padding-left: 0;
    display: flex;
    padding-right: 0;
    flex-wrap: wrap;
}
	.header-wrap {
		background: #000;
		padding: 14px 0px;
	}
	.right-login {
		display: none;
	}
	
	.main-banner h1 {
		font-size: 29px;
		margin-bottom: 10px;
	}
	.video-wrpa {
		padding-top: 77px;
		background: #000;
	}
	.main-banner h3 {
		font-size: 16px;
		line-height: 23px;
		font-weight: 500;
	}
	.main-banner {
		text-align: center;
		padding: 0px 10px;
		bottom: 40px;
	}
	.link-area a {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.CmnBtn {
		font-size: 16px;
		min-width: 100px;
		padding-left: 12px;
		padding-right: 12px;
	}
	#player {
		padding-bottom: 0;
		height: 55vh !important;
	}
		
	.header-cmn h3 {
		font-size: 22px;
		padding: 6px 19px;
		white-space: nowrap;
	}
	.header-cmn {
		margin-left: 0px;
	}
	.cmn-head {
		height: 33px;
	}
	.cmn-head .container {
		text-align: center;
	}
	.couter-img {
    width: 100%;
}
.couter-img img {
    transform: inherit;
    margin: 0 auto;
    position: relative;
	    max-width: 100px;
    left: 25px;
}
.counter-box:hover .couter-img img {
    transform: inherit;
}

	.counter-block {
    display: block;
    width: 100%;
    order: 2;
}
	.counter-up .owl-prev {
		position: absolute;
		left: 0;
		background: url(../images/arrow.png);
	}
	.counter-up .owl-next {
		position: absolute;
		right: 0;
		background: url(../images/arrow-right.png);
	}
	.counter-up .owl-prev,
	.counter-up .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
		top: 55%;
	}
	.counter-up .states-fac-rad {
		text-align: center;
	}
	#player iframe {
    margin-top: -40px;
    width: 1000px;
    min-height: 400px;
}
	.starts-wrapper {
		margin-top: 0;
	}
	.desk-racer {
		display: none;
	}
	.race-outer .owl-prev {
		position: absolute;
		left: -12px;
		background: url(../images/arrow.png);
		top: 20%;
	}
	.read-race .right-btn.CmnBtn {
		float: none;
		margin: 10px 20px 0px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.race-outer .owl-next {
		position: absolute;
		right: -12px;
		background: url(../images/arrow-right.png);
		top: 20%;
	}
	.race-outer .owl-prev,
	.race-outer .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}
	.outer-race {
		padding: 0px 17px;
	}
	.head-race h5 {
		font-size: 16px;
	}
	.head-race:before {
		display: none;
	}
	.head-race h5:after {
		display: none;
	}
	.head-race {
		text-align: center;
		background: transparent;
	}
	.race-inner p {
		text-align: center;
		font-size: 16px;
		margin-bottom: 8px;
	}
	.read-race {
		text-align: center;
		clear: both;
	}
	.outer-checkbox {
		text-align: center;
	}
	.form-fild.width-fld {
		width: 100%;
		padding-right: 0;
	}
	.check-wrap.inform-check {
		margin-left: -27px;
		margin-top: 15px;
		display: block;
	}
	.left-circut {
		order: 2;
		margin-top: 26px;
	}
	.circute-slider {
		text-align: center;
	}
	.right-circute {
		order: 1;
	}
	.cir-outer h4 {
		display: none;
	}
	.hide-head h4 {
		font-weight: 500;
		margin-bottom: 20px;
		font-size: 16px;
	}
	.circute-wrap .owl-next {
		position: absolute;
		right: -0px;
		background: url(../images/arrow-right.png);
		top: -60px;
	}
	.circute-wrap .owl-prev,
	.circute-wrap .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}
	.circute-wrap .owl-prev {
		position: absolute;
		left: 0px;
		background: url(../images/arrow.png);
		top: -60px;
	}
	.circuite-img img {
		padding: 0px 35px;
	}
	.share-wrap .owl-next {
		position: absolute;
		right: -0px;
		background: url(../images/arrow-right.png);
		top: 35%;
	}
	.share-wrap .owl-prev,
	.share-wrap .owl-next {
		width: 45px;
		font-size: 0;
		height: 45px;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}
	.share-wrap .owl-prev {
		position: absolute;
		left: 0px;
		background: url(../images/arrow.png);
		top: 35%;
	}
	.share-main {
		padding: 0px 60px;
	}
	.row.contactdeatis {
		text-align: center;
	}
	.form-fild {
		padding-right: 0;
		margin-bottom: 10px;
	}
	.row.contact-form {
		margin-left: 0;
		margin-right: 0;
	}
	.row.contact-form iframe {
		padding-right: 0;
	}
	.footer-wrap ul li {
		font-size: 16px;
		font-weight: 400;
		margin-right: 7px;
		padding-right: 6px;
	}
	.contact-adrs h6 {
		font-size: 16px;
	}
	.contact-adrs p {
		font-size: 16px;
	}
	.contact-adrs {
		font-size: 16px;
	}
	ul.copy-right li {
		padding-right: 0;
		margin-right: 0;
	}
	ul.copy-right li:after {
		display: none;
	}
	.mtres-content {
		text-align: center;
		margin-top: 10px;
	}
	.container {
		max-width: 320px;
	}
	.contact-wrapper {
		padding-top: 25px;
	}
	.modal {
		width: 100%;
	}
	.blocker {
		padding-left: 0;
		padding-right: 0;
	}
	.metres-wrap {
		max-width: 400px;
		margin: 0 auto !important;
	}
	.pop-box {
		max-width: 400px;
		margin: 0 auto;
	}
	.pop-instagm .pop-box p {
		font-size: 16px;
	}
	.mtres-content p {
		font-size: 16px;
	}
	.mtres-content h5 {
		margin-bottom: 5px;
	}
	.form-fild textarea.form-cn {
		min-height: 131px;
	}
	.header-wrap .container {
		position: relative;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.track-btns ul li {
    display: block;
    text-align: center;
    margin: 0px 0px 10px;
}

.back-trck {
    margin-top: 0;
}

.track-btns ul li .CmnBtn {
    min-width: 125px;
}

.back-trck {
    text-align: center;
}

.back-trck .CmnBtn {
    min-width: 125px;
}
.outer-checkbox .form-fild p {
    font-size: 16px;
}
}

/***********************404 and site map start*****************/
.search-frn h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

.top-e-t.search-frn {
    text-align: center;
    padding: 40px 0px 20px;
}

.top-e-t.search-frn h2 {
    font-size: 20px;
    margin-bottom: 20px;
}


.search-field {
    border: 1px solid #000;
    padding: 6px 14px;
    font-size: 16px;
    vertical-align: middle;
}

form.search-form label {
    font-size: 17px;
}

button.search-submit {
    background: #f20000;
    color: #fff;
    font-weight: 500;
    padding: 4px 15px;
    border: 0;
    vertical-align: middle;
    cursor: pointer;
}
.top-e-t.sitemap ul li {
    list-style: none;
    margin-bottom: 3px;
}

.top-e-t.sitemap ul li ul li {
    padding-left: 20px;
    font-size: 22px;
}

.top-e-t.sitemap ul li a {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}
.team-wrapper.frf-page {
/*     padding: 200px 0px; */
	height:50vh;
}
@media(max-width:767px){
	.search-frn h1 {
    font-size: 20px;
}

.top-e-t.search-frn h2 {
    font-size: 16px;
    line-height: 24px;
}

button.search-submit {
    margin-top: 13px;
    min-width: 125px;
}
.top-e-t.sitemap ul li ul li a {
    font-size: 16px;
}

.top-e-t.sitemap ul li ul li {
    padding-left: 0;
}
}
/*****************ends************************************/

iframe.video_iframe_in {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#playerinner {
    position: relative;
    padding-top: 0;
    overflow: hidden;
   /* padding-bottom: 56.25%;*/
}

@media(min-width:1200px){
 .team-wrappervideo {
/*     height: 500px; */
	 height: 100vh;
    overflow: hidden;
}
iframe.video_iframe_in {
   
    margin-top: -100px;
}}

/* New Styles */
.track-popup{
	max-width: 1100px;
	background-image: url(../images/track-bg-banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0;
}
.track-popup .cmn-head{
	margin-top: 30px;
}
.track-popup .container {
	max-width: 100%;
	padding: 0;
}

.track-popup .container .top-section{
	padding: 1em 2em;
}
.track-popup .container .bottom-section{
	padding-left: 2em;
}
.track-popup .outer-checkbox{
	display: flex;
	position: relative;
}
.track-popup .outer-checkbox .logo-popup{
	position: absolute;
	right: 1em;
	bottom: 1em;
	width: auto;
}
.track-popup .form-fild{
	padding: 0;
	margin:  0;
}
.track-popup h5 {
	font-size: 1.25em;
	font-weight: bold;
	margin: .5em 0;
}
.track-popup h4 {
/* 	font-family: 'Racing Sans One', cursive; */
	font-size: 1.25em;
	font-weight: 500;
	margin: .5em 0;
}

.track-popup .track-turn-img-container {
	height: 35vw;
	max-height: 22em;
}
.track-turn-img{
	width: auto !important;
	position: absolute;
	bottom: 0;
	left: 0;
	height: calc(100% - 2.5em);
}
.popup-video{
	width: 20vw;
	height: calc(20vw / 1.77);
	min-width: 16em;
	min-height: 9em;
}

.track-web{
	display: block !important;
}

.track-mobile{
	display: none !important;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1023.98px){ 
	  .popup-video {
    width: 60vw;
height: calc(60vw / 1.77);
min-width: auto;
    min-height: auto;
    margin-top: 1em;
  }
  .track-turn-img{
    width: 100% ;
    position: relative;
    height: auto;
  }
  .track-popup .track-turn-img-container {
    height: auto;
    max-height: auto;
    padding-bottom: 5em;
  }
  .bottom-section{
    padding: 1em 2em;
  }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 767.98px) and (orientation : portrait){ 	
	.track-turn-img{
		width: 100% ;
		position: relative;
		height: auto;
	}

	.track-popup .track-turn-img-container {
		height: auto;
		max-height: auto;
		padding-bottom: 5em;
	}

	.popup-video {
    width: 80vw;
    height: calc(80vw / 1.77);
    min-width: auto;
		min-height: auto;
		margin-top: 1em;
	}

	.track-web{
		display: none !important;
	}

	.track-mobile{
		display: block !important;
	}
}

@media only screen and (min-device-width: 320px) and (max-device-width: 767.98px) and (orientation : landscape){ 	
	.popup-video {
    width:44vw;
    height: calc(44vw / 1.77);
	}
	
}

@media (max-width: 767px) and (orientation : landscape) {
    
	#player video {
		width:100% !important;
		height:100% !important;
	}		
}

.kyle_singlePageContent a {
	color:red;
}

.right-circute {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* --- New Styles --- */



img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}



.track-list ul li h2 {
    font-size: 25px !important;
}

.track-list ul li h3 {
    font-size: 13px !important;
}

.social-icons {
    right: 0px;
    width: 40px;
}

.social-icons ul {
    padding: 0px !important;
}

.social-icons ul li {
    display: block;
    margin-bottom: 3px;
    width: 2.5em;
}

.social-icons ul li a p {
    vertical-align: middle;
    display: inline-block;
    font-size: .9em;
}

span.counter span {
    font-size: 28px !important;
}

h4 {
    font-size: 17px !important;
}

.couter-img {
    width: 47% !important;
}

@media (max-width: 767px) {
    .kyle_trackpageHead {
        font-size: 12px !important;
        padding: 0 15px !important;
        line-height: 34px !important;
    }
    .header-cmn h3 {
        font-size: 17px;
        padding: 0 15px !important;
        line-height: 33px;
    }
    .kyle_textRaceTypeHead {
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .kyle_unsetContainer {
        margin: 0 !important;
        padding: 0 !important;
    }
    .kyle_trackpageHead {
        font-size: 12px !important;
        padding: 0 15px !important;
        line-height: 34px !important;
    }
    .couter-img {
        text-align: center;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 768px) {
    .kyle_trackpageHead,
    .header-cmn h3 {
        font-size: 20px !important;
        line-height: 36px !important;
        padding: 8px 15px !important;
    }
    .kyle_siglePage_MainContent {
        padding: 0 1em;
    }
}

@media (max-width: 1199px) {
    .kyle_SinglePageSection,
    .kyle_SinglePageSection .container,
    .kyle_SinglePageSection .container ul {
        padding-bottom: 0;
    }
    /*.race-type-wrap {
        padding-top: 4em !important;
    }*/
    .outer-race>.head-race {
        height: 35px !important;
        overflow: hidden !important;
    }
    .outer-race>.head-race>h5 {
        padding: 0 10px !important;
        line-height: 36px !important;
        font-size: 13px !important;
    }
}

p {
    font-size: .8em !important;
}

.outer-checkbox h5,
.form-fild .enter-field,
.check-wrap,
.form-fild .form-cn,
.footer-wrap {
    font-size: 17px !important;
    font-weight: 300 !important;
}

.contactdeatis .kyle_contactDiscription {
    font-size: 17px;
    margin-bottom: 1em;
}

.contactdeatis .contact-adrs p,
.contactdeatis .contact-adrs h6 {
    margin-bottom: .5em;
}
/*
@media only screen and (max-width: 1199.98px) {
    #playerinner {
        padding: 0 !important;
    }
}
*/
@media only screen and (max-width: 1199.98px) and (min-width: 768px) {
    .track-btns ul li {
        width: 100% !important;
        float: unset;
        display: block;
    }
    .back-trck,
    .track-btns ul {
        text-align: center;
    }
}

@media only screen and (max-width: 767.98px) {
    .right-head .kyle_hideTabAndMobile {
        display: none;
    }
    .CmnBtn {
        font-size: 14px !important;
        padding: 10px 10px !important;
    }
}

@media only screen and (min-width: 768px) {
    .kyle_headerCM_hide {
        display: none;
    }
    .CmnBtn {
        font-size: 18px !important;
        padding: 6px 15px !important;
        line-height: 1.5em;
    }
}

.kyle_headerCM_hide {
    margin-top: 1em;
    text-align: center;
}

.kyle_headerCM_Padding {
    margin: 0px !important;
}

.kyle_headerCM_Padding>.kyle_hideTabAndMobile {
    line-height: 50px !important;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) and (min-device-width: 768px) and (max-device-width: 1199.98px) {
    /* IE10+ CSS styles go here */
    .track-ninner {
        height: calc(100vw / 1.77);
        max-height: 680px;
    }
    svg.img-fluid {
        margin-top: -3em;
    }
}

.control_btns {
	z-index: 2 !important;
}
.form-fild .form-cn
{
	border-radius: 0;
}

.re-open-btn{
  font-size: 15px !important;
  color: #000 !important;
}
/* menu width fix - june 2014 */
@media screen and (min-width: 1350px) {
	.header-wrap .container {
		max-width:1366px !important;
	}
}

