﻿/*===================== 
	Color information
	
	- white
	- black
	- red - #ce1515
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	animation keyframes 
=======================*/
@-webkit-keyframes tracking-in-expand{0%{letter-spacing:-.5em;opacity:0}40%{opacity:.6}100%{opacity:1}}@keyframes tracking-in-expand{0%{letter-spacing:-.5em;opacity:0}40%{opacity:.6}100%{opacity:1}}

/*===================== 
	animations 
=======================*/
.tracking-in-expand{-webkit-animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both;animation:tracking-in-expand .7s cubic-bezier(.215,.61,.355,1.000) both}

/*===================== 
	base styles 
=======================*/

html {
    font-family: 'Oswald', sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	}

body {
    margin: 0;
	font-family: 'Oswald', sans-serif;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
/* clear floats */ 
.group:before,
.group:after {content: ""; display: table;} 
.group:after {clear: both;}
.group {zoom: 1;}	
.clear { clear: both;}
	
/*image replacement*/
.hide-text {
	text-indent:  100%;
	white-space:  nowrap;
	overflow:  hidden;
	}	

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
	border-style: solid;
    height: 0;
	} 

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {font-size: 2em;}

p {
	margin: 0;
	font-size: 16px;
	}

	
h1 {
	font-size: 36px;
}
		

h2 {
	font-size: 30px;
}

	
h3 {
	font-size: 26px;
}


h4 {
	font-size: 24px;
}


h5 {
	font-size: 20px;
}


h6 {
	font-size: 18px;
}

.caps {
	text-transform: uppercase;
}

.bold {
	font-weight: 700;
}

.semibold {
	font-weight: 500;
}

.thin {
	font-weight: 300;
}

.tracking {
	letter-spacing: 1.5px;
}

.lg_tracking {
	letter-spacing: 45px;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.white {
	color: #fff;
}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/
	}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: #aaa; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

/*===================== 
	header styles 
=======================*/
header {
	margin: 0 auto;
	width: 100%;
	}
	
.header_wrapper {
	padding: 0;
	background: #ce1515;
}

.header_contain {
	width: 90%;
	margin: 0 5%;
	padding: 20px 0;
	display: inline-block;
	box-sizing: border-box;
}

.lt_nav {
	text-align: right;
	box-sizing: border-box;
}

.rt_nav {
	box-sizing: border-box;
}

.logo_wrapper {
	box-sizing: border-box;
}

.logo_contain {
	box-sizing: border-box;
}

.logo {
	box-sizing: border-box;
	margin: auto;
}

/*===================== 
	nav styles 
=======================*/
.nav_contain {
	box-sizing: border-box;
}

nav.primary {
	padding:0;
	display:block;
	margin:0 auto;
	position:relative;
	text-align: right;
	box-sizing: border-box;
	}
	
nav.primary_rt {
	padding: 0;
    margin: 0 auto;
    position: relative;
    text-align: left;
    box-sizing: border-box;
    width: fit-content;
    float: left;
    display: flex;
	}

nav ul {
	padding:0;
	margin:0;
	box-sizing: border-box;
}

nav ul li {

}

nav > ul > li {
	display:inline-block;
	list-style-type:none; 
	text-align: center;
	padding: 60px 15px 10px;
	box-sizing: border-box;
}

nav ul li a {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff!important;
	display: block;
	transition: .3s ease;
	letter-spacing: 1px;
}	

nav ul li a:after {
	content: '';
  position: relative;
  left: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid;
  opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

nav ul li a:hover:after {
  opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* Appearance of the sub-level links */

nav.primary ul li li a { 
	line-height: ;
	color: ;
	text-align:;
	font-size: ;
	font-weight:;
	transition: .3s ease;
	box-sizing: border-box;
	}
	
nav.primary ul li li a:hover { 
	color: ;
	text-align: ;
	font-size:  ;
	font-weight: ;
	transition: .3s ease;
	}
	
nav.primary ul li li:hover { 
	transition: .3s ease;
	}
	
	
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too much */
nav.primary ul ul {
	display: none;
    position: absolute; 
	max-width: 235px;
	background: ;
	/*margin-top: 21px;*/
	box-sizing: border-box;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
	transition: .3s ease;
	box-sizing: border-box;
}
nav.primary ul li:hover > ul {  

    display: block;
    line-height: 30px;
    z-index: 2000 !important;
    transition: .3s ease;
    padding: 10px 20px;
    text-align: left;
    background: #000;
    width: 200px;
    margin-top: 10px;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
	display:block;
    margin:0;
	width:100%;
	padding-left: ;
	padding-right: ;
	box-sizing: border-box;
}

.dropdown_arrow {
	display: inline-block !important;
}

.dropdown_style {
	font-size: ;
	font-weight: ;
}


/******** End of primary Nav ***************/


/*===================== 
	mobile nav
=======================*/

#menu-button{ /* initially will need to be hidden */
	display: none;
	font-size: 32px;
	width:100%;
	position: relative;
	z-index: 400;/* needs to be lower than nav.mobile, adjust as needed */
	padding-bottom: 5px;
	background: #000;
	text-align: center;
	min-height: 0 !important;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	box-sizing: border-box;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 text-align: center !important;
		 box-sizing: border-box;
	  }

nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #000;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
	box-sizing: border-box;
}
nav.mobile h3 { /* Menu header styles */
	position: relative;
	padding: 12px 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	border-bottom: 4px solid #222;
	box-sizing: border-box;
}
nav.mobile .menu-toggle { /* Menu close button */
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	line-height: 1;
	background: #222;
	color: #999;
	text-decoration: none;
	vertical-align: top;
	box-sizing: border-box;
}
.menu-toggle {
	text-align: right;
	font-size: 28px;
	color: #000;
	transition: .3s ease;
	box-sizing: border-box;
}

.menu-toggle a:hover {
	color: #000 !important;
	transition: .3s ease;
}

.close_mobile {
	font-size: 26px !important;
	font-weight: 900;
	text-align: right;
	transition: .3s ease;
	box-sizing: border-box;
}

nav.mobile .menu-toggle:hover { /* Menu close button on hover */
	color: #fff;
	transition: .3s ease;
}
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
	box-sizing: border-box;
}
nav.mobile ul li {
	padding: 8px 0 6px 0 !important;
}
nav.mobile ul li a {
	position: relative;
	display: block;
	padding-left: 14px;
	color: #999;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
	transition: .3s ease;
	box-sizing: border-box;
}
nav.mobile ul li a:hover {
	background:;
	color: #2b2b2b;
	transition: .3s ease;
}


nav.mobile ul li li a { /* appearance of the sub-level links */
	position: relative;
	display: block;
	padding: 0px 10px 0px 15px;
	color: #000;
	text-decoration: none;
	font-weight: 300;
	box-sizing: border-box;
}
nav.mobile ul li li li a { /* appearance of third level sub-level links if needed */
	background: #666;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #000;
	text-decoration: none;
	box-sizing: border-box;
}
nav.mobile ul li {/* dropdown menu idicator arrow be sure to include this image with your image files */ 
    position: relative;
}
nav.mobile ul {/* dropdown menu idicator arrow be sure to include this image with your image files */ 
    padding-top: 10px;
}
nav.mobile .click + i.fas{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
    position: absolute;
    right: 10px;
    top: 11px;
    color: #ccc;
}
nav.mobile .click:hover + i.fas{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
    color: #fff;
}


/*===================== 
	Inventory styles 
=======================*/


.banner-btn{
	letter-spacing: 6px;
	position: relative;
	margin: 5% auto 20px;
	display: block;
	max-width: 1124px;
	width: 100%;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	color: #fff !important;
	text-align: center;
	font-size: 48px;
	transition: ease-in-out all 0.2s !important;
	padding: 0 20px;
	line-height: 90px;
	
	background: #222;
	
	-moz-background-size: 100% auto;
	-o-background-size:  100% auto;
	-webkit-background-size:  100% auto;
	background-size:  100% auto;
	box-sizing: border-box;
	border-bottom: 12px solid #ce1515;
}
.banner-btn span{
	position: relative;
	z-index: 100;
}
.banner-btn i{
	padding-left: 0;
	transition: ease-in-out padding 0.2s !important;
}
.banner-btn:hover i{
	padding-left: 10px;
}

.banner-btn .overlay{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 100%;
	background: #ce1515;
	transition: ease all 0.3s;
	border-bottom: 1px #fff solid;
}
.banner-btn:hover .overlay{
    top: 0;
}




.container {margin-top: 20px !important;}
.info {color: #000 !important;}
.faceted-search-content .selected-facets-container .selected-facet {background: #000 !important;}
.button {background-color: #000 !important;}
.button:hover {background-color:#a8a8a8 !important;}
.body-wrapper {font-family: 'Oswald', sans-serif;}
.body-content {padding: 50px 0!important;}

/*-----FONTS-----*/
.list-content .list-title .list-title-text {font-family: 'Oswald', sans-serif!important; font-size: 25px; text-transform: uppercase;}
.list-content .listing-portion-title {font-family: 'Oswald', sans-serif; font-size: 20px;}
.list-content .list-title .list-listings-count {color: #a8a8a8!important;}
.list-listing-title {font-family: 'Oswald', sans-serif!important;}
.listing-portion-title {font-family: 'Oswald', sans-serif!important;}
.list-content .list-main-section .list-container .list-listing .listing-top-right .listing-dealer-info .dealer-name {font-family: 'Oswald', sans-serif;}
.list-content .list-main-section .list-container .list-listing .listing-top .listing-top-left .listing-main-stats .price {color: #000!important; font-family: 'Oswald', sans-serif;}
.list-content .list-top-section .listing-option-bar .list-listings-count {color: #a8a8a8!important;}
.faceted-search-content .faceted-section-head h5 {font-family: 'Oswald', sans-serif;border-radius: 0px!important;}
.listing-portion-title.description-title {font-family: 'Oswald', sans-serif;}
.faceted-search-content .faceted-section-box .faceted-search {border-radius: 0px!important;}
.faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn {border-radius: 0px!important;}
.detail-content .detail-main-body .main-detail-data .detail-price {color: #000!important; font-family: 'Oswald', sans-serif;}
.detail-content .detail-main-body .main-detail-data .detail-title {font-family: 'Oswald', sans-serif!important; font-size: 25px; text-transform: uppercase; color: #000; font-weight: 800;}
.detail-content .dealer-info h3 {font-family: 'Oswald', sans-serif; font-size: 20px;}
.contact-information {font-family: 'Oswald', sans-serif!important;}
.breadcrumbs {font-family: 'Oswald', sans-serif!important;}
.listing-widgets {font-family: 'Oswald', sans-serif!important;}
.detail-additional-data {font-family: 'Oswald', sans-serif!important;}
.detail-additional-data h4 {font-family: 'Oswald', sans-serif!important;}
.detail-content .search-results{color: #000!important;}
.legal-text-content {font-family: 'Oswald', sans-serif!important; font-size: 12px; font-style: italic;}

/*-----BUTTONS-----*/
.view-listing-details-link {background: #000!important; color: #fff!important; font-family: 'Oswald', sans-serif; border-radius: 0px!important;}
.view-listing-details-link:hover {background: #a8a8a8!important;}
.email-seller-link {border-radius: 0px!important;}
.faceted-search-content .selected-facets-container .selected-facet{background: #000!important; font-family: 'Oswald', sans-serif; border-radius: 0px!important;}
.noUi-connect {background: #000!important; color: #fff!important;}
.noUi-handle  {background: #000!important; color: #fff!important;}
.list-content .listing-bottom .listing-widgets a {border-radius: 0px!important; font-family: 'Oswald', sans-serif!important;}
.detail-content .print-this, .detail-content .email-this {border-radius: 0px!important; font-family: 'Oswald', sans-serif;}
.offer-btn {border-radius: 0px!important; font-family: 'Oswald', sans-serif; background-color: #000!important;color:#fff !important;}
.offer-btn:hover {background-color: #a8a8a8!important;}
.send-email-btn {font-family: 'Oswald', sans-serif!important; border-radius: 0px!important; border-color: #000!important; color: #000!important;}
.detail-content .detail-additional-data .data-row .data-label {background: #000!important;}
.print-this, .email-this {font-family: 'Oswald', sans-serif!important; border-radius: 0px!important;}
.detail-content .detail-main-body .main-detail-data .addthis_inline_share_toolbox .at-share-btn-elements {display: inline-block!important;}
.detail-content .detail-main-body .main-detail-data .addthis_inline_share_toolbox .at-share-btn-elements {width: auto!important;}
.paging-container .page-navs .list-page-nav {background: #000!important; font-family: 'Oswald', sans-serif;color:#fff !important;}
.list-container-flexrow .buy-now-link, .list-container-flexrow .check-availability-link, .list-container-flexrow .email-seller-link, .list-container-flexrow .dealer-phone-call {border-radius: 0px!important;}
.detail-content-mobile .accordion-container .form-bottom .captcha-and-submit .mobile-close {color: #000 !important; border-color: #000 !important;}

/*-----Mobile Styles-----*/
.price {color: #000!important; font-family: 'Oswald', sans-serif;}
.list-content .list-listing-mobile .dealer-phone-container .dealer-phone-call, .list-content .list-listing-mobile .dealer-phone-container .dealer-phone-text {color:#000!important; border-color: #000!important; border-radius: 0px!important;}
.specs-container {font-family: 'Oswald', sans-serif!important;}
.spec-container {font-family: 'Oswald', sans-serif!important;}
.mobile-breadcrumb {background-color: #a8a8a8!important;}
.detail-title {font-family: 'Oswald', sans-serif!important;}
.detail-content-mobile .detail-main-body .main-detail-data .detail-price {color: #000!important;}
.detail-content-mobile .dealer-info h3 {font-family: 'Oswald', sans-serif!important;}
.field-value {font-family: 'Oswald', sans-serif;}
.contact {font-family: 'Oswald', sans-serif;}

.detail-content-mobile .detail-main-body .main-detail-data .dealer-phone-mobile-container .dealer-phone-mobile {background-color: #000!important; color: #fff!important; font-family: 'Oswald', sans-serif!important; border-radius: 0px!important;}
.detail-content-mobile .detail-main-body .main-detail-data .send-email-btn-mobile, .detail-content-mobile .detail-main-body .main-detail-data .send-wholesale-email-btn-mobile {background-color: #000!important; color: #fff!important; font-family: 'Oswald', sans-serif!important; border-radius: 0px!important; border: none!important;}
.detail-content-mobile .detail-contact-bar .contact-bar-btn {background-color: #000!important; color: #fff!important; font-family: 'Oswald', sans-serif!important; border-radius: 0px!important;}
.data-label {background-color: #000!important;}
.faceted-search-content .mobile-done-button-container .mobile-done-button {background-color: #000!important; color: #fff!important; border-radius: 0px; font-family: 'Oswald', sans-serif;}
.faceted-search-content .mobile-done-button-container .mobile-done-button:hover {background-color: #a8a8a8!important; border-radius: 0px; font-family: 'Oswald', sans-serif;}
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile {background-color: #000 !important;}
.detail-content-mobile .detail-main-body .main-detail-data .offer-btn-mobile:hover {background-color: #a8a8a8 !important;}
.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile {background-color: #000 !important;}
.detail-content-mobile .detail-main-body .main-detail-data .fin-calc-btn-mobile:hover {background-color: #a8a8a8 !important;}


/*===================== 
	content styles 
=======================*/
.wrapper {
	padding: 0;
}

.blk_wrapper {
	background: #ce1515;
	padding: 0;
}

.contain {
	width: 90%;
	margin: 0 5%;
	padding: 50px 0;
	display: inline-block;
}

a.effect-underline:after {
	content: '';
	position: absolute;
	left: 0;
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}

a.effect-underline:hover:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.btn {
  color: #000!important;
  cursor: pointer;
  display: block;
  position: relative;
  text-transform: uppercase;
  padding: 10px 20px;
  width: fit-content;
  text-align: center;
  margin: auto;
}
  
.btn:hover { 
	text-decoration: none; 
}

.btn-1 {
  background: #fff;
  font-weight: 300;
  font-size: 16px;
  display: block;
  transition: .3s ease;
}
  
svg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0; 
    width: 100%; 
  }
  
rect {
    fill: none;
    stroke: #000;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
  }

.btn-1:hover {
	font-weight: 500;
	letter-spacing: 1px;
	transition: .3s ease;
 
}

.links {
	color: #000 !important;
	transition: .3s ease;
	padding: 5px 0;
    display: inline-block;
}

.links:hover {
	color: #999 !important;
	transition: .3s ease;
}

.transportimg {
	width: 100%;
}


/*---home---*/
.welcome_lg {
	font-size: 72px;
	border-bottom: 1px solid #fff;
	padding: 10px 0;
}

.quicklink_wrapper {
    margin: 10px 0;
	display: inline-block;
}

.quicklink_img {
	width: 75%;
	margin: auto;
}

.construction_btn {
	background-image: url(/siteart/excavator_overlay.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 250px;
	width: 100%;
}

.farming_btn {
	background-image: url(/siteart/kubotatractor_overlay.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 250px;
	width: 100%;
}

.outdoor_btn {
	background-image: url(/siteart/landscape_overlay.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 250px;
	width: 100%;
}

.trailer_btn {
	background-image: url(/siteart/bridge.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 250px;
	width: 100%;
}

.transport_btn {
	background-image: url(/siteart/lgtranst_overlay.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 250px;
	width: 100%;
}

/*---bridge hover effect---*/
div.quicklink {
	display: block;
    width: 35%;
    margin: 0 auto;
}

div.quicklink a {
	position: absolute;
    top: 41%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff !important;
    display: block;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

div.quicklink a:hover:before {
    clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
	-webkit-clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
    transition: all 0.3s;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

div.quicklink a:before {
    box-shadow: inset 0px 0px 0px 6px #ffffff;
	-webkit-box-shadow: inset 0px 0px 0px 6px #ffffff;
	clip-path: polygon(0 0, 0 80px, 0% 80px, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 80px, 0% 80px, 0% 0);
    transition: all 0.4s 0.25s;
	-webkit-transition: all 0.4s 0.25s;
    -o-transition: all 0.4s 0.25s;
}

div.quicklink a:before, div.quicklink a:after {
    content: '';
    border-radius: 50%;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -125px;
    margin-top: -125px;
}

div.quicklink a:hover:after {
    clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
	-webkit-clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
    transition: all 0.5s 0.2s;
	-webkit-transition: all 0.5s 0.2s;
    -o-transition: all 0.5s 0.2s;
}

div.quicklink a:after {
    background-image: url(/siteart/bridge_hover.png);
    background-size: cover;
    background-position: center center;
	clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    transition: all 0.2s;
	-webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}

div.quicklink a:before, div.quicklink a:after {
    content: '';
    border-radius: 50%;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -125px;
    margin-top: -125px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
div.quicklink a:after {
    background-image: none;
    background-size: cover;
    background-position: center center;
	clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    transition: all 0.2s;
	-webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}
}

/*--lg bridge effect--*/
div.lg_quicklink {
	display: block;
    width: 27%;
    margin: 0 auto;
}

div.lg_quicklink a {
	position: absolute;
    top: 41%;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff !important;
    display: block;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

div.lg_quicklink a:hover:before {
    clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
	-webkit-clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
    transition: all 0.3s;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
}

div.lg_quicklink a:before {
    box-shadow: inset 0px 0px 0px 6px #ffffff;
	-webkit-box-shadow: inset 0px 0px 0px 6px #ffffff;
	clip-path: polygon(0 0, 0 80px, 0% 80px, 0% 0);
    -webkit-clip-path: polygon(0 0, 0 80px, 0% 80px, 0% 0);
    transition: all 0.4s 0.25s;
	-webkit-transition: all 0.4s 0.25s;
    -o-transition: all 0.4s 0.25s;
}

div.lg_quicklink a:before, div.lg_quicklink a:after {
    content: '';
    border-radius: 50%;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -125px;
    margin-top: -125px;
}

div.lg_quicklink a:hover:after {
    clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
	-webkit-clip-path: polygon(0 0, 0 80px, 100% 80px, 100% 0);
    transition: all 0.5s 0.2s;
	-webkit-transition: all 0.5s 0.2s;
    -o-transition: all 0.5s 0.2s;
}

div.lg_quicklink a:after {
    background-image: url(/siteart/bridge_hover.png);
    background-size: cover;
    background-position: center center;
	clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    transition: all 0.2s;
	-webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}

div.lg_quicklink a:before, div.lg_quicklink a:after {
    content: '';
    border-radius: 50%;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -125px;
    margin-top: -125px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
div.lg_quicklink a:after {
    background-image: none;
    background-size: cover;
    background-position: center center;
	clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    -webkit-clip-path: polygon(0 0, 0 0px, 100% 0px, 100% 0);
    transition: all 0.2s;
	-webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
}
}



/*===================== 
	form styles 
=======================*/

.form- {
    padding: 0px;
}

.contact-text {
    margin-top: 30px;
    margin-bottom: 0px;
}

.contact_form {
    margin: 15px auto;
    padding: 15px;
    border: 1px solid #000;
    width: 100%;
}

.contact-p {
    font-size: 14px;
}

.interested_in {
	font-weight: normal;
	padding-right: 10px;
}

.submit-button {
	background: #fff;
    color: #000;
    padding: 10px 20px; 
    border: 1px solid #000;
	border-radius: 0;
    margin: 10px auto 0;
	font-weight: 300;
	font-size: 16px;
	display: block;
	transition: .3s ease;
}

.submit-button:hover{
	font-weight: 700;
	letter-spacing: 1px;
	transition: .3s ease;
}

/*===================== 
	captcha styles 
=======================*/

/*control the Captcha */
.CaptchaPanel {
    margin:0 0 0 0 !important;
    padding:0 0 0 0 !important;
    text-align: center;
    line-height:normal !important;
    }

.CaptchaImagePanel {
    margin:0 0 0 0;
    padding:0 0 0 0;
    }

.CaptchaMessagePanel {
    padding:0 0 0 0 !important;
    margin:0 0 0 0 !important;
    font-weight:normal !important;
    font-size:12px;
    line-height:14px;
    }

.CaptchaAnswerPanel {
    margin:0 0 0 0;
    padding:2px 0px 2px 0px !important;
    }

.CaptchaWhatsThisPanel {
        line-height:0;
        margin:0 0 0 0;
        padding:8px 0 8px 0 !important;
    }
.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:none;} 
	

	
/*===================== 
	slideshow styles 
=======================*/
.slideshow-container {
	max-width: 100%;
	width: 100%;
	position: relative;
	margin: auto;
	display: inline-block;
}
.mySlides {
	display: none;
}

.text {
	padding: 40px;
	position: absolute;
	bottom: 32%;
	right: 0%;
	margin-left: 10%;
	margin-right: 5%;
	text-shadow: 2px 2px 10px #000;
}

.hero-header {
	font-size: 48px;
}


/*===================== 
	footer styles 
=======================*/
footer {
	margin: 0;
	width: 100%;
	font-family: 'Oswald', sans-serif;
	}
	
.footer_wrapper {
	padding: 0;
	background: url(/siteart/bridge.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.footer_contain {
	width: 90%;
	margin: 0 5%;
	padding: 50px 0;
	display: inline-block;
	box-sizing: border-box;
}

.mainfoot {
    padding: 10px 0;
}

.btmfooter_wrapper {
	background: #ce1515;
	box-sizing: border-box;
}

.btmfooter_contain {
	width: 90%;
	margin: 0 5%;
	padding: 20px 0;
	display: inline-block;
	box-sizing: border-box;
}

.rtbtmfooter {
	float: right;
	display: contents;
}

.footlogo {
	margin: auto;
    width: 130px;
}

.foot_para {
	font-size: 12px;
}

.foot_link {
	color: #fff !important;
	transition: .3s ease;
}

.foot_link:hover {
	color: #a8a8a8 !important;
	transition: .3s ease;
}
	
a.footerlink:link,
a.footerlink:visited, 
a.footerlink:active {
	text-decoration: none; 
	font-size:13px;
	color: #222;
	transition: .3s ease;
	}
	a.footerlink:hover {
		text-decoration:none; 
		font-size:13px;
		color: #fff;
		transition: .3s ease;
		}

.footertext {
	font-size:13px; 
	color:#666;
	}

.smallfootertext {
	font-size:10px; 
	color:#666;
	}

.divfooter {
	max-width:1200px; 
	text-align:center; 
	margin:0 auto;
	box-sizing: border-box;
	}
	
	
/*========================= 
	 Responsive styles 
===========================*/

/*==========  Non-Mobile First Method  ==========*/
@media only screen and (max-width : 1500px) {
	.text {width: 50%; bottom: 28%;}
	.quicklink_img {width: 85%;}
	div.quicklink {width: 43%;}
	div.lg_quicklink {width: 32%;}
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	nav > ul > li {padding: 60px 10px 10px;}
	.text {width: 70%; bottom: 21%;}
	.quicklink_img {width: 100%;}
	div.quicklink {width: 47%;}
}

@media only screen and (max-width : 1085px) {
	div.quicklink {width: 58%;}
	div.lg_quicklink {width: 45%;}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	#menu-button{display: block;}
	.logo {margin: auto;}
	.lg_tracking {letter-spacing: 25px;}
	.welcome_lg {font-size: 55px;}
	.quicklink_img {width: auto;}
	div.quicklink {width: 45%;}
}


/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.btmfooter_wrapper {text-align: center;}
	.right {text-align: center;}
	.lg_tracking {letter-spacing: 15px;}
	.welcome_lg {font-size: 48px;}
	.rtbtmfooter {float: none; display: block;}
	div.quicklink {width: 55%;}
	div.lg_quicklink {width: 55%;}
	
	
	.banner-btn{font-size: 18px; line-height: 30px; padding: 20px 0;}
}

@media only screen and (max-width : 768px) {
	div.quicklink {width: 30%;}
	div.lg_quicklink {width: 30%;}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.lg_tracking {letter-spacing: 10px;}
	div.quicklink {width: 50%;}
	div.lg_quicklink {width: 50%;}
}

@media only screen and (max-width : 400px) {
	.lg_tracking {letter-spacing: 3px;}
	div.quicklink {width: 55%;}
	div.lg_quicklink {width: 55%;}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	.lg_tracking {letter-spacing:1px;}
	div.quicklink {width: 70%;}
	div.lg_quicklink {width: 70%;}
}

