html,
body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

body {
	font-family: 'Work Sans', sans-serif;
}

#fader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	pointer-events: none;
	background: white;
	animation-duration: 300ms;
	animation-timing-function: ease-in-out;
}

@keyframes fade-out {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fade-in {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

#fader.fade-out {
	opacity: 0;
	animation-name: fade-out;
}

#fader.fade-in {
	opacity: 1;
	animation-name: fade-in;
}

#topHeader {
	background: #2c2c2c;
	color: #FFF;
	font-size: 12px;
}

#topHeader div.headerLink {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#topHeader div.headerLink:hover {
	background: #3e3e3e;
}

#topHeader div.headerLink a.socialMediaLink {
	display: inline-block;
	padding: 0 5px;
}

#topHeader div.headerLink a.socialMediaLink:hover {
	color: #7fff03;
}

#topHeader div.headerLink span.followLabel {
	margin-right: 10px;
}

#topHeader a {
	color: #FFF;
	display: inline-block;
	padding: 15px 0px;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#topHeader span.fas {
	margin-right: 6px;
}

#topHeader a.headerAddress {
	padding: 15px 0 15px 0;
	text-transform: uppercase;
}

#header {
	background: #000;

	box-shadow: #000 0px 3px 9px;
	z-index: 10;
}

#header div.logo {
	padding: 7px 0 7px 7px;
}

#header div.logo img {
	max-width: 280px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}


#header div.navigation a {
	color: #FFF;
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	padding: 35px 23px;
	text-decoration: none;
}

#header div.navigation a.current {

	color: #7fff03;
}

#header div.navigation a:hover {

	color: #7fff03;
}

#header a.mobileMenu {
	color: #FFF;
	display: inline-block;
}

#header span.toggleMenu {
	cursor: pointer;
	font-size: 24px;
}

#header div.navigation div.dropdownLink {
	position: relative;
	display: inline-block;
}

#header div.navigation div.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.9);
	text-align: left;
	z-index: 5;
}

#header div.navigation div.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

#header div.navigation div.dropdown-content a:hover {
	background-color: #ddd;
}

#header div.navigation div.dropdown-content a.current {
	background-color: #ddd;
}

#header div.navigation div.dropdownLink:hover .dropdown-content {
	display: block;
}

#mobileNavigation {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 11;
	top: 0;
	right: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
}

#mobileNavigation a {
	color: #FFF;
	display: block;
	font-size: 14px;
	padding: 15px 0 15px 5px;
	/*border-bottom: 0.3px solid #fff;*/
}

#mobileNavigation span.closeMenu {
	cursor: pointer;
	color: #FFF;
	float: right;
	position: relative;
	font-size: 30px;
	top: 10px;
	right: 25px;
	text-decoration: none;
	z-index: 10;
}

#mobileNavigation div.mobileNavLogo {
	margin-top: 45px;
}

#mobileNavigation div.mobileNavLogo img {
	width: 175px;
	padding-left: 15px;
}

#mobileNavigation div.links {
	margin-top: 15px;
	padding: 10px 0 0 15px;
	width: 235px;
}

.open {
	width: 250px !important;
}

#mobileNavigation span.mobileDropdown {
	color: #FFF;
	cursor: pointer;
	display: block;
	font-size: 14px;
	padding: 15px 0 15px 5px;
	/*border-bottom: 0.3px solid #fff;*/
}

#mobileNavigation span.mobileDropdown:hover {
	text-decoration: underline;
}

#mobileNavigation div.mobileDropdownLinks a {
	padding-left: 20px;
}

#footer {
	background: #000;
	padding: 55px 0;
}

#footer img.footerLogo {
	width: 200px;
}

#footer span.footerLogoSub {
	color: #CCCCCC;
	display: inline-block;
	font-size: 14px;
	margin-top: 15px;
}

#footer span.footerNavTitle {
	color: #FFF;
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
}

#footer ul.footerNav {
	list-style: none;
	margin: 5px 0 0;
	padding: 0;
}

#footer ul.footerNav li {
	color: #cccccc;
	font-size: 14px;
	padding-top: 30px;
}

#footer ul.footerNav li a {
	color: inherit;
}

#footer ul.footerNav li a:hover {
	text-decoration: underline;
}

#footer div.socialMediaBtns {
	margin-top: 35px;
}

#footer a.socialMediaBtn {
	background: #FFFFFF;
	color: #444444;
	display: inline-block;
	font-size: 14px;
	padding: 10px 15px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#footer a.socialMediaBtn:hover {
	background: #444444;
	color: #FFF;
}

#bottomFooter {
	border-top: 2px solid #656565;
	background: #545454;
	color: #c5c5c5;
	font-size: 14px;
	padding: 25px 0;
}

#bottomFooter a {
	color: inherit;
	text-decoration: none;
}

#bottomFooter a:hover {
	text-decoration: underline;
}

#bottomFooter div.footerSocialMedia {
	text-align: right;
}

#bottomFooter div.footerSocialMedia a {
	display: inline-block;
	margin: 0 5px;
}

#bottomFooter div.homepageSEO {
	font-size: 12px;
	margin-bottom: 25px;
}


.carousel-caption {
	position: absolute;
	left: 15%;
	bottom: 1.25rem;
	right: 15%;
	top: 50%;
	font-size: 44px;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	color: #fff;
	text-align: center;
}

#slide1 {
	background: url('../images/slide1BGNew.jpg') center bottom no-repeat;
	background-size: cover;
	/*overflow: auto;*/
	text-align: center;
}

#slide1 div.slideTitle {
	color: #FFF;
	font-family: 'Work Sans', sans-serif;
	text-transform: uppercase;
	font-size: 44px;
}

#slide1 div.slideTitle span.welcome {
	white-space: nowrap;
	animation: showup 1.35s;
	font-weight: bold;
}

#slide1 div.slideTitle span.reveal {
	display: block;
	white-space: nowrap;
	animation: showup2 2.2s;
	font-weight: bold;
	color: #7fff03;
	text-shadow: 0 0 10px #000, 0 0 20px #000;
}

.text-primary {
	color: #7fff03 !important;
}

.h2-big {
	font-weight: 700;
}

.services-icon {
	display: none;
}

.ui-title {
	padding-bottom: 40px;
}

.cta-bg-full {
	background: linear-gradient(0deg, rgb(0 0 0 / 53%), rgb(255 255 255 / 83%)), url(../images/aboutImg.jpg);
	background-position: center center;
	background-size: cover;
}

.btn-cust {
	--bs-btn-color: #000;
	padding: 15px 20px;
	--bs-btn-bg: #7fff03;
	--bs-btn-border-color: #7fff03;
	--bs-btn-hover-color: #000;
	--bs-btn-hover-bg: #7fff03;
	--bs-btn-hover-border-color: #7fff03;
	--bs-btn-focus-shadow-rgb: 49, 132, 253;
	--bs-btn-active-color: #000;
	--bs-btn-active-bg: #7fff03;
	--bs-btn-active-border-color: #7fff03;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #000;
	--bs-btn-disabled-bg: #7fff03;
	--bs-btn-disabled-border-color: #7fff03;
}

@keyframes showup {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes showup2 {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#slider div.slideButtons {
	margin-top: 5%;
}

#slider div.slideButton {
	display: inline;
	margin: 0 5px;
}

#slider div.slideButton a {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid #7fff03;
	border-radius: 5px;
	color: #000;
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#slider div.slideButton a:hover {
	background: rgba(230, 230, 230, 0.9);
}

#slider div.slideButton a img {}

#slide1Button {
	animation: showupButton1 2.8s;
}

@keyframes showupButton1 {
	0% {
		opacity: 0;
	}

	35% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

#slide2Button {
	animation: showupButton2 2.8s;
}

@keyframes showupButton2 {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 0;
	}

	65% {
		opacity: 1;
	}
}

#slide3Button {
	animation: showupButton3 2.8s;
}

@keyframes showupButton3 {
	0% {
		opacity: 0;
	}

	65% {
		opacity: 0;
	}

	80% {
		opacity: 1;
	}
}

#slider #srpSearch {
	margin-top: 25px;
	text-align: left;
	z-index: 10000000;
	animation: showupButton4 2.8s;
}

@keyframes showupButton4 {
	0% {
		opacity: 0;
	}

	80% {
		opacity: 0;
	}

	95% {
		opacity: 1;
	}
}

#slider #srpSearchBar input {
	background: rgba(255, 255, 255, 0.9);
	border: 2px solid #7fff03;
	border-radius: 5px;
	color: #000;
	display: block;
	padding: 30px 0 30px 20px;
	width: 100%;
}

#slider #srpSearchBar input:hover {
	background: rgba(230, 230, 230, 0.9);
}

#slider #srpSearchBar input::placeholder {
	color: #363636;
}

#slider #srpSearchBar .ajax-search {
	position: relative;
}

#slider #srpSearchBar .ajax-search ul {
	list-style-type: none;
	position: absolute;
	z-index: 10;
	padding: 0;
	width: 100%;
}

#slider #srpSearchBar .ajax-search ul.active {
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 5px 0;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 20px;
	border: #000 1px solid;
}

#slider #srpSearchBar .ajax-search ul li {
	margin: 10px 10px;
	padding: 0px 10px;
}

#slider #srpSearchBar .ajax-search ul li:hover {
	background: #f5f5f5;
}

#slider #srpSearchBar .ajax-search ul li a {
	color: #363636;
	display: inline-block;
	width: 100%;
	padding: 10px 0;
}

#slider #srpSearchBar .ajax-search ul li a:hover {
	text-decoration: none;
}

#homeAbout {
	background: #efefef;
	padding: 50px 0;
}

#homeAbout h2 {
	color: #3b4b55;
	font-family: 'Work Sans', sans-serif;
	font-weight: bold;
}

#homeAbout h2 span {
	color: #7fff03;
}

#homeAbout p.aboutSubText {
	color: #575757;
}

#homeAbout2 {}

#homeAbout2 div.homeAboutImg {
	margin: 0 !important;
	padding: 0 !important;
}

#homeAbout2 div.homeAboutImageBG {
	background: url('../images/homeAbout1New.jpg') no-repeat center center;
	background-size: cover;
}

#homeAbout2 div.homeAboutCaption {
	padding: 35px 0 0px 45px;
}

#homeAbout2 div.homeAboutCaption h3 {
	color: #444444;
	font-size: 33px;
	font-weight: 300;
}

#homeAbout2 p.homeAboutDescription {
	color: #575757;
	font-size: 16px;
	line-height: 28px;
	margin-top: 25px;
}

#homeAbout2 div.homeReviews {}

#homeAbout2 div.homeReview {
	margin: 15px 0 0px;
}

#homeAbout2 div.homeReview img.reviewSite {
	width: 207px;
}

#homeAbout2 div.homeReview img.reviewStars {
	display: block;
	margin: 0 auto;
	width: 131px;
}

#homeAbout2 div.homeReview p.dealerRating {
	color: #575757;
	font-size: 16px;
	margin-top: 10px;
}

#homeAbout2 div.homeReview a {
	color: #575757;
	text-decoration: none;
}

#homeAbout2 div.homeReview p.dealerRating span:hover {
	text-decoration: underline;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#homeAbout2 img.csaAward {
	max-width: 100%;
}

#homeAvailableMakesModels {
	background: url('../images/patternBG_home.jpg') repeat center center;
	background-size: cover;
	font-family: 'Work Sans', sans-serif;
	padding: 50px 0 0;
	text-align: center;
}

#homeAvailableMakesModels h4 {
	color: #3b4b55;
	font-size: 42px;
	font-weight: normal;
	margin: 0 auto;
	width: 800;
}

#homeAvailableMakesModels div.availableList {
	padding-top: 65px;
	width: 1200px;
	margin: 0 auto;
}

#homeAvailableMakesModels div.availableInventory {
	display: inline-block;
	width: 260px;
	height: 100px;
	text-align: center;
}

#homeAvailableMakesModels div.availableInventory a {
	text-decoration: none;
}

#homeAvailableMakesModels div.availableInventory span.availableCount {
	color: #7fff03;
	display: block;
	font-size: 80px;
	line-height: 40px;
}

#homeAvailableMakesModels div.availableInventory span.availableModel {
	color: #444444;
	display: block;
	font-size: 20px;
	padding-top: 15px;
}

#homeAvailableMakesModels div.bottomAvailableBG {
	background: url('../images/homeAboutCarsBG.png') no-repeat center bottom;
	height: 155px;
}

#homeCTA {
	background: #464646;
	border-top: 7px solid #fcfcfc;
	border-bottom: 7px solid #fcfcfc;
	color: #FFF;
	font-family: 'Work Sans', sans-serif;
	font-size: 38px;
	padding: 50px 0;
}

#homeCTA div.row {
	margin: 0 auto !important;
}

#homeCTA a {
	color: inherit;
	text-decoration: none;
}

#homeCTA span.horizLine::before,
#homeCTA span.horizLine::after {
	display: inline-block;
	content: "";
	border-top: .3rem solid #FFF;
	width: 8rem;
	margin: 0 2rem;
	transform: translateY(-0.6rem);
}

#shoppingTools {
	background: #f4f4f4;
	background-image: url("../images/shoppingToolsBG.jpg");
	background-position: center right;
	background-repeat: no-repeat;
	background-position-x: 110%;
	background-origin: content-box;
	padding: 50px 0;
	min-height: 550px;
}

#shoppingTools a {
	text-decoration: none;
}

#shoppingTools span.title {
	color: #444444;
	font-family: 'Work Sans', sans-serif;
	font-size: 36px;
}

#shoppingTools p.subTitle {
	color: #a8a8a8;
	font-size: 16px;
}

#shoppingTools div.shoppingTool {
	margin-top: 25px;
}

#shoppingTools span.toolTitle {
	color: #444444;
	display: block;
	font-family: 'Work Sans', sans-serif;
	font-size: 21px;
	margin-top: 10px;
}

#shoppingTools p.toolDesc {
	color: #626262;
	font-size: 13px;
	font-weight: 300;
	margin-top: 5px;
}


#pageHeader {
	border-bottom: 2px solid #cccccc;
	padding: 50px 0 40px;
}

#pageHeader h1 {
	color: #000;
	font-family: 'Work Sans', sans-serif;
	font-weight: bold;
}

#pageHeader h1 span {
	color: #7fff03;
}

#pageHeader #srpSearch {
	margin-top: 15px;
}

#pageHeader #srpSearchBar input {
	background: #f5f5f5;
	border: 1px solid #636363;
	border-radius: 5px;
	color: #363636;
	display: block;
	padding: 30px 0 30px 20px;
	width: 100%;
}

#pageHeader #srpSearchBar input::placeholder {
	color: #363636;
}

#pageHeader #srpSearchBar .ajax-search {
	position: relative;
}

#pageHeader #srpSearchBar .ajax-search ul {
	list-style-type: none;
	position: absolute;
	z-index: 10;
	padding: 0;
	width: 100%;
}

#pageHeader #srpSearchBar .ajax-search ul.active {
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 5px 0;
}

#pageHeader #srpSearchBar .ajax-search ul li {
	margin: 10px 10px;
	padding: 0px 10px;
}

#pageHeader #srpSearchBar .ajax-search ul li:hover {
	background: #f5f5f5;
}

#pageHeader #srpSearchBar .ajax-search ul li a {
	color: #363636;
	display: inline-block;
	width: 100%;
	padding: 10px 0;
}

#pageHeader #srpSearchBar .ajax-search ul li a:hover {
	text-decoration: none;
}

#pageBody {
	padding: 70px 0;
}

#srp {}

#filter {
	color: #3a3a3a;
	float: left;
	font-family: 'Work Sans', sans-serif;
	overflow-y: scroll;
}

.stickyFilter {
	position: fixed;
	height: 100%;
	overflow: scroll;
	top: 100px;
}

#filter div.filterBox {
	border-bottom: 1px solid #cccccc;
	font-size: 16px;
	padding: 20px 0 20px 20px;
	text-transform: uppercase;
}

#filter button.filterCollapseBtn {
	color: inherit;
	text-decoration: none;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	outline: none;
	border: 0;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	padding-left: 0px;
	font-weight: bold;
	font-size: 15px;
}

#filter div.filterSelect:hover {
	background: #f9f9f9;
	cursor: pointer;
}

#filter span.filterDropdown {
	color: #7fff03;
	display: inline-block;
	float: right;
	margin: 5px 20px 0 0;
}

#filter div.collapse,
#filter div.collapsing {
	padding-top: 20px;
}

#filter div.collapseFilters {
	padding-top: 0px;
}

#filter a.filterName {
	color: inherit;
}

#filter li.filterValue {
	cursor: pointer;
	list-style: none !important;
	padding: 15px 0 0 45px !important;
}

#srpListing {
	background: #f6f6f6;
	float: left;
	padding-top: 20px;
	padding-bottom: 70px;
	box-shadow: inset 1px -10px 10px #b4b4b4;
}

.srpAdjust {
	margin-left: 15%;
}

#srpListing .srpVehicle {
	background: #FFF;
	border: 1px solid #b7b7b7;
	border-radius: 7px;
	display: inline-block;
	font-family: 'Work Sans', sans-serif;
	margin: 15px 10px;
	overflow: hidden;
	transition: 0.3s;
}

#srpListing .srpVehicle:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	transition: 0.3s;
}

#srpListing .srpVehicle img.srpVehicleImg {
	border-radius: 7px;
	padding: 3px;
	max-width: 100%;
}

#srpListing .srpVehicle .srpVehicleContent {
	padding: 15px 20px 10px;
}

#srpListing .srpVehicle .srpVehicleContent .srpVehicleTop {
	height: 55px;
}

#srpListing .srpVehicle span.srpVehicleTitle {
	color: #3a3a3a;
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 16px;
}

#srpListing .srpVehicle span.srpVehicleTrim {
	color: #3a3a3a;
	display: block;
	font-size: 13px;
	font-style: italic;
	margin-top: 5px;
}

#likeBtn {
	font-size: 14px;
	padding: 8px;
	border-radius: 50%;
	box-shadow: #bfbebe 0px 0px 10px;
	transition: all ease 0.4s;
}

#likeBtn:hover {
	cursor: pointer;
}

#srpListing .srpVehicle .likeBtn {
	color: #d6d6d6;
	background: #FFF;
}

#srpListing .srpVehicle .liked {
	background: #7fff03;
	color: #FFF;
}

#srpListing .srpVehicle .srpPrice {
	color: #7fff03;
	background: #000;
	padding: 5px;
	border-radius: 5px;
	line-height: 10px;
	font-weight: bold;
}

#srpListing .srpVehicle div.srpKbbRetail,
#srpListing .srpVehicle div.srpKbbSavings {
	display: block;
	font-size: 12px;
	padding-top: 3px;
}

#srpListing .srpVehicle div.srpKbbRetail span {
	color: #000;
	font-weight: bold;
}

#srpListing .srpVehicle div.srpKbbSavings span {
	color: #1e7e34;
	font-weight: bold;
}

#srpListing .srpVehicle .srpMileage {
	color: #5c5c5c;
	display: inline-block;
	font-size: 13px;
	margin: 0 5px 0 2px;
}

#srpListing .srpVehicle .srpStock {
	display: inline-block;
	font-size: 11px;
	font-weight: 100;
	margin-left: 5px;
}

#srpListing .srpVehicle .srpPriceLabel,
#srpListing .srpVehicle .srpMileageLabel {
	display: block;
	font-style: italic;
	color: #6b6b6b;
	font-size: 10px;
	margin-top: -3px;
}

#srpListing .srpVehicle .srpVehicleBottom {
	color: #5c5c5c;
	font-size: 13px;
}

#srpListing .srpVehicle .srpVehicleButtons {
	border-top: #b3b3b3 1px solid;
	font-size: 14px;
	margin-top: 14px;
}

#srpListing .srpVehicle .srpVehicleButtons a {
	color: #373737;
	display: inline-block;
	padding: 15px 0;
	text-align: center;
	width: 50%;
	transition: all ease 0.4s;
}

#srpListing .srpVehicle .srpVehicleButtons a:hover {
	text-decoration: none;
}

#srpListing .srpVehicle .srpVehicleButtons a.srpUnlockPrice {
	background: rgba(187, 169, 81, 0.5);
	border-right: #b3b3b3 1px solid;
	cursor: pointer;
	float: left;
}

#srpListing .srpVehicle .srpVehicleButtons a.srpUnlockPrice:hover {
	background: #269009;
	color: #FFF;
}

#srpListing .srpVehicle .srpVehicleButtons a.srpPreApproved {
	background: #e3e3e4;
	float: right;
}

#srpListing .srpVehicle .srpVehicleButtons a.srpPreApproved:hover {
	background: #4c4c4c;
	color: #FFF;
}

#srpListing .srpVehicle .srpVehicleButtons a span {
	margin-right: 3px;
}

#srpListing .srpVehicle .srpVehicleMonroeyLabel {
	height: 38px;
}

#srpListing .srpVehicle span.monroney-labels-inv {
	width: auto !important;
	height: 40px;
}

#srpListing .srpVehicle span.monroney-labels-inv img {
	display: none !important;
}

#srpListing .srpVehicle span.monroney-labels-inv a {
	color: #fb000a;
	display: inline-block;
	font-size: 12px;
	font-style: italic;
	margin-top: 10px;
}

#srpListing .srpVehicle span.monroney-labels-inv a:after {
	content: "View Original Sticker";
}

#srpListing .srpVehicle a.invTradeBtn {
	margin-top: 10px;
}

#mobileSrpSearch {
	display: none;
	position: fixed;
	top: 61px;
	width: 100%;
	z-index: 9;
}

#mobileSrpSearch #srpSearchBar input {
	background: #f5f5f5;
	border: 1px solid #636363;
	border-radius: 0px;
	color: #363636;
	display: block;
	padding: 30px 0 30px 20px;
	width: 100%;
}

#mobileSrpSearch #srpSearchBar input::placeholder {
	color: #363636;
}

#mobileSrpSearch #srpSearchBar .ajax-search {
	position: relative;
}

#mobileSrpSearch #srpSearchBar .ajax-search ul {
	list-style-type: none;
	position: absolute;
	z-index: 10;
	padding: 0;
	width: 100%;
}

#mobileSrpSearch #srpSearchBar .ajax-search ul.active {
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 5px 0;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.9);
	border: #000 1px solid;
}

#mobileSrpSearch #srpSearchBar .ajax-search ul li {
	margin: 10px 10px;
	padding: 0px 10px;
}

#mobileSrpSearch #srpSearchBar .ajax-search ul li:hover {
	background: #f5f5f5;
}

#mobileSrpSearch #srpSearchBar .ajax-search ul li a {
	color: #363636;
	display: inline-block;
	width: 100%;
	padding: 10px 0;
}

#mobileSrpSearch #srpSearchBar .ajax-search ul li a:hover {
	text-decoration: none;
}

.scale-in-ver-top {
	animation: scale-in-ver-top .5s cubic-bezier(.25, .46, .45, .94) both;
	display: block !important;
}

@keyframes scale-in-ver-top {
	0% {
		transform: scaleY(0);
		transform-origin: 100% 0;
		opacity: 1
	}

	100% {
		transform: scaleY(1);
		transform-origin: 100% 0;
		opacity: 1
	}
}

#advancedSearchFilters {
	font-family: 'Work Sans', sans-serif;
}

#advancedSearchFilters h2 {
	font-size: 22px;
	color: #4a4a4a;
	margin-bottom: 15px;
}

#advancedSearchFilters span.filte#7fff03By {
	display: inline-block;
	font-weight: bold;
	font-size: 14px;
	padding-top: 8px;
}

#advancedSearchFilters a.filterBtnClose {
	background: #f3f3f3;
	border: 1px solid #636363;
	color: #404040;
	display: inline-block;
	font-size: 16px;
	padding: 5px 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#advancedSearchFilters a.filterBtnClose span {
	display: inline-block;
	margin-left: 9px;
}

#advancedSearchFilters a.filterBtnClose:hover {
	background: #000;
	color: #7fff03;
	text-decoration: none;
}

#advancedSearchFilters a.filterBtnReset {
	background: #000;
	border: 1px solid #7fff03;
	color: #7fff03;
	display: inline-block;
	font-size: 16px;
	padding: 5px 10px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#advancedSearchFilters a.filterBtnReset:hover {
	text-decoration: none;
}

#sortBy {
	font-family: 'Work Sans', sans-serif;
	font-size: 16px;
	color: #000;
	padding-top: 8px;
}

#sortBy select.sortInv {
	appearance: button;
	-webkit-appearance: button;
	background: none;
	border: none;
	color: #7fff03;
	padding-left: 15px;
}

#sortBy select.sortInv:hover {
	cursor: pointer;
}

#sortBy select.sortInv:focus,
#sortBy select.sortInv:active,
#sortBy select.sortInv {
	outline: none;
}

#sortBy select.sortInv option {}

#srpPagination {
	margin-top: 30px;
}

#srpPagination a.pageButtons {
	background: #000;
	border-radius: 5px;
	color: #7fff03;
	display: inline-block;
	margin: 0 6px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#srpPagination a.pageButtons:hover {
	text-decoration: none;
}

#srpPagination button.disabledBtn {
	background: #acacac;
	border-radius: 5px;
	color: #FFF;
	cursor: not-allowed;
	display: inline-block;
	margin: 0 6px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#srpPagination button.disabledBtn:hover {
	text-decoration: none;
}

#srpPagination div.totalNums {
	font-weight: bold;
}

div.aboutPage,
div.financingPage,
div.tradePage,
div.reviewsPage,
div.greenCarPage,
div.vdpTop {
	background: #f8f8f8;
}

#contactPage {
	padding-bottom: 70px;
}

#contactPage div.googlemap {
	position: relative;
	padding-bottom: 25%;
	height: 0;
	overflow: hidden;
}

#contactPage div.googlemap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

#contactPage div.contactArea {
	padding: 70px 0 0;
}

#contactPage div.contactArea div.contactRight h6 {
	font-size: 30px;
	font-family: 'Work Sans', sans-serif;
	font-weight: normal;
}

#contactPage div.contactArea div.contactRight p {
	font-size: 16px;
	margin-top: 25px;
}

#contactPage div.contactArea div.contactRight div.contactSocialMedia {
	margin-top: 25px;
}

#contactPage div.contactArea div.contactRight div.contactSocialMedia i.contactFollow {
	display: block;
	color: #838383;
	font-size: 14px;
	font-weight: 100;
	margin-bottom: 10px;
}

#contactPage div.contactArea div.contactRight div.contactSocialMedia a {
	display: inline-block;
	padding: 8px;
	color: #000;
	background: #e9e9e9;
	border-radius: 5px;
	width: 50px;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#contactPage div.contactArea div.contactRight div.contactSocialMedia a:hover {
	background: #c5c5c5;
}

#contactPage form.contactForm input {
	height: 45px;
	margin-bottom: 10px;
}

#contactPage form.contactForm textarea {
	margin-bottom: 25px;
}

div.reviewsPage {
	overflow: auto;
}

div.greenCarPage h2 {
	margin-top: 40px;
}

div.aboutPage {}

div.aboutPage div.aboutContent {}

div.aboutPage div.aboutContent img.csaAbout {
	max-width: 100%;
	margin-top: 25px;
}

div.aboutPage div.aboutContent h2 {
	color: #7fff03;
	font-family: 'Work Sans', sans-serif;
	font-size: 20px;
	font-weight: 100;
	margin-bottom: 20px;
}

div.aboutPage div.aboutContent p {
	font-size: 13px;
	font-weight: 100;
}

div.aboutPage div.aboutContent div.aboutImgHolder {
	margin-top: 40px;
}

div.aboutPage div.aboutContent div.aboutImgHolder img {
	max-width: 100%;
}

div.aboutPage div.aboutInfoMap {
	margin-top: 70px;
}

div.aboutPage div.aboutInfoMap h4 {
	color: #7fff03;
	font-family: 'Work Sans', sans-serif;
}

div.aboutPage div.aboutInfoMap p {
	font-weight: bold;
}

div.aboutPage div.aboutInfoMap div.aboutHours {
	margin-top: 40px;
}

div.aboutPage div.aboutInfoMap div.aboutHours h6 {
	color: #7fff03;
	font-family: 'Work Sans', sans-serif;
	font-weighT: bold;
}

div.aboutPage div.aboutInfoMap div.aboutHours li {
	font-weight: bold;
	list-style: none;
}

div.aboutPage div.aboutInfoMap div.aboutHours li span {
	display: inline-block;
	width: 150px;
}

div.staffPage {
	padding: 30px 0 !important;
	overflow: auto;
}

a.ePriceBtn {
	color: #FFF !important;
	cursor: pointer !important;
}

div#pageHeader a.ePriceBtn {
	margin-top: 15px;
}

div.vdpTop {
	padding: 30px 0;
}

div.vdpTop span.vdpRightName {
	display: block;
	font-family: 'Work Sans', sans-serif;
	font-size: 30px;
	line-height: 25px;
}

div.vdpTop span.vdpRightTrim {
	display: block;
	font-family: 'Work Sans', sans-serif;
	font-size: 14px;
	margin: 0 0 10px 0;
}

div.vdpTop div.vdpRightPrice {
	background: #000;
	border: 2px solid #000;
	color: #7fff03;
	display: inline-block;
	font-size: 25px;
	padding: 17px 20px;
	line-height: 15px;
	text-shadow: #444 1px 1px 1px;
}

div.vdpTop div.vdpRightPrice span {
	font-size: 10px;
	color: #EDEDED;
	text-shadow: none;
}

div.vdpTop div.vdpRightPrice span.priceDisclaimer {
	display: inline-block;
	font-size: 12px;
	padding-left: 3px;
	vertical-align: top;
}

div.vdpTop div.vdpRightMileage {}

div.vdpTop div.vdpRightMileage,
div.vdpTop div.vdpRightStock {
	display: block;
	font-size: 15px;
	padding-top: 3px;
}

div.vdpTop div.vdpRightMileage span,
div.vdpTop div.vdpRightStock span {
	color: #000;
}

div.vdpTop div.kbbRetail {
	background: #e3e3e3;
	padding-left: 5px;
}

div.vdpTop div.kbbRetail span {
	color: #000;
	text-decoration: line-through;
}

div.vdpTop div.kbbSavings {
	background: #000;
	color: #FFF;
	padding-left: 5px;
}

div.vdpTop div.kbbSavings span {
	color: #FFF;
}

div.vdpTop div.vdpPreQualifiedBanner img {
	max-width: 100%;
}


div.vdpTop a.vdpLead,
div.vdpTop a.ePriceBtn {
	margin: 5px 0;
}

div.vdpTop iframe {
	margin-top: 15px;
}

div.vdpTop a.edmundsTradeIn {
	display: block;
	margin: 10px 0;
}

div.vdpTop a.edmundsTradeIn img {
	max-width: 100%;
	width: 750px;
}

div.vdpTop div.vdpTopLeadButtons {
	display: block;
	margin-top: 20px;
	text-align: center;
}

div.vdpTop div.vdpTopLeadButtons a.vdpLead {
	background-color: #7fff03;
	border-color: #7fff03;
	color: #FFF;
	cursor: pointer;
}

div.vdpTop div.vdpTopLeadButtons a.vdpLead:hover {
	background-color: #d7030e;
	border-color: #b9030c;
}

p.vdpDisclaimer {
	font-size: 12px;
	font-style: italic;
	margin: 30px 0;
}

div.vdpTop div.vdpQuickForm {
	background: #FFF;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
	font-family: 'Work Sans', sans-serif;
	margin-top: 30px;
	margin-bottom: 30px;
	font-style: italic;
	font-size: 12px;
}

div.vdpTop div.vdpQuickForm div.vdpFormTitle {
	display: block;
	background: #000;
	color: #FFF;
	padding: 12px;
	font-size: 15px;
	font-style: normal;
	text-transform: uppercase;
}

div.vdpTop div.vdpFormBody {
	padding: 15px;
}

div.vdpTop div.vdpFormBody div.quickFormInput {
	margin-bottom: 15px;
	overflow: auto;
}

div.vdpTop div.vdpFormBody div.quickFormInput div.vdpFormText input {
	border: 1px solid #666;
	height: 40px;
	margin-left: 5px;
	padding-left: 10px;
}

div.vdpTop div.vdpFormBody input.vdpFormText {}

div.vdpTop div.vdpFormBody div.quickFormSpace {
	margin-top: 15px;
}

div.vdpTop div.vdpFormBody select {
	border: 1px solid #666;
	height: 40px;
	margin-left: 7px;
	padding: 0 10px;
	background: #FFF;
	color: darkgray;
	border-radius: 1px;
}

div.vdpTop div.vdpQuickForm input.quickFormSubmit {
	margin-top: 20px;
}

div.vdpPatternBG {
	background: url('../images/patternBG_vdp.jpg') repeat center center;
}

div.vdpDetails {
	padding: 30px 0;
}

div.vdpDetails h3 {
	color: #000;
	font-family: 'Work Sans', sans-serif;
	font-weight: normal;
}

div.vdpDetails h2 {
	color: #7fff03;
	font-family: 'Work Sans', sans-serif;
	font-weight: normal;
}

div.vdpDetails div.optionsList {
	margin-top: 30px;
}

div.vdpDetails div.optionsList ul {
	margin: 0;
	padding: 0;
}

div.vdpDetails div.optionsList ul li {
	background: #e9e9e9;
	font-weight: 100;
	margin-bottom: 6px;
	padding: 16px;
	list-style: none;
	box-shadow: #777 1px 1px 7px;
	border: 1px solid #FFF;
}

div.vdpDetails div.optionsList ul li span {
	display: inline-block;
	font-family: 'Work Sans', sans-serif;
}

div.vdpDetails div.optionsList ul li a {
	color: #7fff03;
}

div.vdpDetails div.optionsList ul li a:hover {
	color: #7fff03;
}

div.vdpDetails div.optionsList ul li a i {
	display: inline-block;
	margin-right: 10px;
}

div.vdpDetails div.optionsList span.monroney-labels-text {
	width: auto !important;
}

div.vdpDetails div.optionsList span.monroney-labels-text img {
	display: none !important;
}

div.vdpDetails div.optionsList span.monroney-labels-text a:after {
	content: "View Original Sticker";
}

div.vdpComments {
	padding: 30px 0;
}

div.vdpComments h3 {
	color: #000;
	font-family: 'Work Sans', sans-serif;
	font-weight: normal;
}

div.vdpComments span {
	color: #7fff03;
	display: block;
	margin-bottom: 10px;
}

div.vdpComments div.comments {
	background: #e9e9e9;
	font-weight: 100;
	padding: 16px;
	box-shadow: #777 1px 1px 7px;
	border: 1px solid #FFF;
	margin-top: 30px;
}

div.vdpComments div.sideComments {
	margin-top: 30px;
	text-align: right;
}

div.vdpComments span.monroney-labels-big>a {
	background: url(//labels-prod.s3.amazonaws.com/big-sticker.png);
	background-size: contain;
	display: block;
	height: 288px;
	margin: 0 auto;
	padding: 0;
	text-indent: -99999px;
	width: 252px;
}

div.vdpComments span.monroney-labels-big img {
	display: none !important;
}

div.vdpOptions {
	padding: 30px 0;
}

div.vdpOptions h3 {
	color: #000;
	font-family: 'Work Sans', sans-serif;
	font-weight: normal;
}

div.vdpOptions span {
	color: #7fff03;
	display: block;
	margin-bottom: 10px;
}

div.vdpOptions div.optionsList {
	margin-top: 30px;
}

div.vdpOptions div.optionsList li {
	font-size: 13px;
}

div.vdpRelated {
	padding: 30px 0;
}

div.vdpRelated h3 {
	color: #000;
	font-family: 'Work Sans', sans-serif;
	font-weight: normal;
}

div.vdpRelated span.related {
	color: #7fff03;
	display: block;
	margin-bottom: 10px;
}

div.vdpRelated .srpVehicle {
	background: #FFF;
	border: 1px solid #b7b7b7;
	border-radius: 7px;
	display: inline-block;
	font-family: 'Work Sans', sans-serif;
	margin: 15px;
	overflow: hidden;
	transition: 0.3s;
}

div.vdpRelated .srpVehicle:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	transition: 0.3s;
}

div.vdpRelated .srpVehicle img.srpVehicleImg {
	border-radius: 7px;
	padding: 3px;
	max-width: 100%;
}

div.vdpRelated .srpVehicle .srpVehicleContent {
	padding: 15px 20px 10px;
}

div.vdpRelated .srpVehicle .srpVehicleContent .srpVehicleTop {
	height: 55px;
}

div.vdpRelated .srpVehicle span.srpVehicleTitle {
	color: #3a3a3a;
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 16px;
}

div.vdpRelated .srpVehicle span.srpVehicleTrim {
	color: #3a3a3a;
	display: block;
	font-size: 13px;
	font-style: italic;
	margin-top: 5px;
}

div.vdpRelated .srpVehicle .likeBtn {
	color: #d6d6d6;
	background: #FFF;
}

div.vdpRelated .srpVehicle .liked {
	background: #7fff03;
	color: #FFF;
}

div.vdpRelated .srpVehicle .srpPrice {
	color: #7fff03;
	background: #000;
	padding: 5px;
	border-radius: 5px;
	line-height: 10px;
	font-weight: bold;
}

div.vdpRelated .srpVehicle div.srpKbbRetail,
div.vdpRelated .srpVehicle div.srpKbbSavings {
	display: block;
	font-size: 12px;
	padding-top: 3px;
}

div.vdpRelated .srpVehicle div.srpKbbRetail span {
	color: #000;
	font-weight: bold;
}

div.vdpRelated .srpVehicle div.srpKbbSavings span {
	color: #1e7e34;
	font-weight: bold;
}

div.vdpRelated .srpVehicle .srpMileage {
	color: #5c5c5c;
	display: inline-block;
	font-size: 13px;
	margin: 0 5px 0 2px;
}

div.vdpRelated .srpVehicle .srpStock {
	display: inline-block;
	font-size: 11px;
	font-weight: 100;
	margin-left: 5px;
}

div.vdpRelated .srpVehicle .srpPriceLabel,
div.vdpRelated .srpVehicle .srpMileageLabel {
	display: block;
	font-style: italic;
	color: #6b6b6b;
	font-size: 10px;
	margin-top: -3px;
}

div.vdpRelated .srpVehicle .srpVehicleBottom {
	color: #5c5c5c;
	font-size: 13px;
}

div.vdpRelated .srpVehicle .srpVehicleButtons {
	border-top: #b3b3b3 1px solid;
	font-size: 14px;
	margin-top: 14px;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a {
	color: #373737;
	display: inline-block;
	padding: 15px 0;
	text-align: center;
	width: 100%;
	transition: all ease 0.4s;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a:hover {
	text-decoration: none;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a.srpUnlockPrice {
	background: rgba(187, 169, 81, 0.5);
	border-right: #b3b3b3 1px solid;
	cursor: pointer;
	float: left;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a.srpUnlockPrice:hover {
	background: #269009;
	color: #FFF;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a.srpPreApproved {
	background: #e3e3e4;
	float: right;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a.srpPreApproved:hover {
	background: #4c4c4c;
	color: #FFF;
}

div.vdpRelated .srpVehicle .srpVehicleButtons a span {
	margin-right: 3px;
}

div.vdpRelated .srpVehicle a.invTradeBtn {
	margin-top: 10px;
}



#success {
	background-color: #FFFFFF;
	bottom: 0px;
	height: auto;
	left: 0;
	position: absolute;
	top: 0px;
	text-align: center;
	width: 100%;
	z-index: 100;
}

#success .fullCenter {
	color: #000000;
	height: 50px;
	margin-top: 25%;
	position: absolute;
	top: 0%;
	width: 100%;
}

#success .thankYou {
	font-size: 30px;
}

#success .ncam {
	color: #040D54;
	font-size: 24px;
}

#squeezePage {
	background: #fcfcfc;
}

#squeezePage p.why {
	font-size: 14px;
}

#squeezeForm {
	margin: 30px 0;
}

#squeezeForm div.row {
	margin-bottom: 20px;
}

#squeezeForm form.squeezeForm {
	background: #f3f3f3;
	border: 1px solid #e4e4e4;
	padding: 40px 10px;
}

#squeezeForm form.squeezeForm input {
	height: 60px;
}

#squeezeForm form.squeezeForm input[type="submit"] {
	margin-top: 20px;
}

#squeezeForm p.instructions {
	font-size: 14px;
	color: #818181;
	font-style: italic;
}

#squeezeForm span.callUs {
	font-size: 24px;
}

#squeezeForm div.squeezeAddress {
	margin-top: 10px;
}

#squeezeForm div.squeezeAddress b {
	font-size: 20px;
}

#squeezeDisclaimer {
	color: #656565;
	margin-top: 50px;
}

#squeezeDisclaimer p {
	font-size: 12px;
	font-style: italic;
}

#squeezeDisclaimer a {
	color: inherit;
	text-decoration: underline;
}

div.financePage {
	background: #f8f8f8;
}

div.financePage p.financingCTA {
	margin: 15px 0 30px;
	font-size: 20px;
}

/* Financing Dealers page pannel */
.personalinfo .panel-heading {
	background-color: #000;
	color: #7fff03;
	text-align: center;
	font-size: 25px;
	border-top-left-radius: 0.4em;
	border-top-right-radius: 0.4em;
	font-family: 'Sen', sans-serif;
	margin-bottom: 30px;
	padding: 10px 0;
}

.personalinfo .panel-default {
	border: medium none;
	margin-bottom: 50px;
}

.c#7fff03iteapp-wrap {
	padding: 40px 58px;
}

.c#7fff03iteapp-wrap p {
	color: #313131;
	font-family: 'Sen', sans-serif;
	font-size: 22px;
	margin-bottom: 25px;
	line-height: 44px;
}

.c#7fff03ite-title {
	font-size: 40px;
	color: #6791c9;
	padding: 8px 0px;
	font-family: 'Sen', sans-serif;
	;
}

.personalinfo label {
	color: #313131;
	font-family: 'Sen', sans-serif;
	font-size: 20px;
	font-weight: normal;
	margin-bottom: 5px;
	margin-top: 6px;
}

.personalinfo .form-control {
	background-color: #fff;
	background-image: none;
	border: 1px solid #adacac;
	border-radius: 5px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	color: #000;
	display: block;
	font-family: 'Sen', sans-serif;
	font-size: 16px;
	height: 47px;
	line-height: 1.42857;
	padding: 6px 12px;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
	width: 100%;
}

.personalinfo .add-co-app {
	background-color: #6791c9;
	border: 1px solid #6791c9;
	border-radius: 0;
	color: #fff;
	font-family: 'Sen', sans-serif;
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	width: 100%;
	margin-top: 30px;
	padding: 11px;
}

.personalinfo .add-co-app:hover {
	background-color: #333;
	border-color: #333;
}

.personalinfo .dropdown-toggle {
	background-color: #fff;
	border: 1px solid #adacac;
	border-radius: 0;
	color: #adacac;
	font-family: 'Sen', sans-serif;
	font-size: 17px;
	padding: 10px;
	text-align: left;
	width: 100%;
}

.personalinfo .dropdown .dropdown-menu {
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid #adacac;
	border-radius: 0;
	box-shadow: none !important;
	float: left;
	font-size: 14px;
	left: 0;
	list-style: outside none none;
	margin: 0;
	min-width: 160px;
	padding: 5px 0;
	position: absolute;
	text-align: left;
	top: 100%;
	z-index: 1000;
}

.personalinfo .dropdown-toggle:focus,
.personalinfo .dropdown-toggle:hover {
	background: #6791c9 none repeat scroll 0 0;
	border: 1px solid #6791c9;
	box-shadow: none !important;
	color: #fff;
	outline: medium none;
	outline-offset: 0;
}

.personalinfo .dropdown-toggle:focus,
.personalinfo .dropdown-toggle1 {
	background: #6791c9 none repeat scroll 0 0;
	color: #fff;
	height: 48px;
}

.personalinfo .dropdown-toggle:focus .caret,
.personalinfo .dropdown-toggle:hover .caret {
	color: #fff;
}

.personalinfo .dropdown .dropdown-menu>li>a {
	clear: both;
	color: #adacac;
	display: block;
	font-family: 'Sen', sans-serif;
	font-size: 17px;
	font-weight: normal;
	line-height: 22px;
	padding: 3px 20px;
	white-space: nowrap;
}

.personalinfo .dropdown .dropdown-menu>li>a:hover,
.personalinfo .dropdown .dropdown-menu>li>a:focus {
	color: #ffffff;
}

.personalinfo .caret {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 10px solid;
	color: #6791c9;
	display: inline-block;
	float: right;
	height: 0;
	margin-right: 7px;
	margin-top: -15px;
	vertical-align: middle;
	width: 0;
}

.personalinfo .dropdown-menu {
	width: 100%;
}

.personalinfo .submitapp {
	background-color: #6791c9;
	border-color: #6791c9;
	color: #FFF;
	font-family: 'Sen', sans-serif;
	font-size: 30px;
	line-height: 32px;
	padding: 17px 30px;
	width: 100%;
	margin-top: 29px;
	margin-bottom: 58px;
}

.personalinfo .submitapp:hover,
.personalinfo .submitapp:focus {
	background-color: #333333;
	border-color: #333333;
	color: #fff;
}


/* Custom CSS by Praful Bhuskute start here */
/* padding top and button start here*/
.ptb-100 {
	padding: 100px 0;
}

.ptb-80 {
	padding: 80px 0;
}

.ptb-60 {
	padding: 60px 0;
}

.ptb-40 {
	padding: 40px 0;
}

.ptb-20 {
	padding: 20px 0;
}

/* padding top and button end here*/

/* padding top start here*/

.pb-100 {
	padding-bottom: 100px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-20 {
	padding-bottom: 20px;
}

/* padding top end here*/

/* padding bottom start here*/

.pb-100 {
	padding-bottom: 100px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-20 {
	padding-bottom: 20px;
}

/* padding button end here*/

.bi::before {
	font-size: 70px;
}


.card-body {
	padding: 30px;
}



/* Our Services Section */
.services-section-hp-3 .services-content {
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	text-align: center;
	margin-bottom: 30px;
	padding: 37px 20px;
	cursor: pointer;
}

.services-section-hp-3 .services-content:hover {
	background: #7fff03;

	border: none;
	box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
	-ms-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.1);
}

.services-section-hp-3 .services-content:hover .services-text span a {
	color: #000;
}

.services-section-hp-3 .services-content:hover .services-text p {
	color: #000;
}

.services-section-hp-3 .services-content .services-text {
	padding-top: 15px;
}

.services-section-hp-3 .services-content .services-text span {
	color: #333;
	font-size: 22px;
	font-weight: 700;
}

.services-section-hp-3 .services-content .services-text p {
	margin-top: 6px;
}

/* End Our Services Section */

.carousel-inner>.carousel-item>img {
	height: 700px;
}


/* About Company */

.about-company-section .about-company-detail .about-company-image-view {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding-right: 0;
}

.about-company-section .about-company-detail .about-company-right {
	margin-left: 15px;
}

.about-company-section .about-company-detail .about-company-left .special-heading {
	text-align: left;
	margin-bottom: 26px;
	color: #fff;
}

.about-company-section .about-company-detail .about-company-left .special-heading:before {
	left: 0;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-o-transform: translateX(0);
	-ms-transform: translateX(0);
}

.about-company-section .about-company-detail .about-company-left .info {
	margin-bottom: 25px;
	color: #999;
}

.about-company-section .about-company-detail .about-company-left .inner {
	padding-bottom: 6px;
	color: #999;
}

.about-company-section .about-company-detail .about-company-left .inner i {
	float: left;
	font-size: 25px;
	color: #2c53d2;
}

.about-company-section .about-company-detail .about-company-left .inner .text {
	margin-left: 37px;
}

.about-company-section .about-company-detail .about-company-left .au-btn {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	margin-top: 30px;
}

.about-company-section .about-company-detail .about-company-left .btn-small {
	padding: 17px 47px;
}


.parallax {
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-transform: none;
	transform: none;
	background-size: cover;
}

.b-steps {
	position: relative;
	background-image: url("images/aboutImg.jpg");
	background-size: cover;
	text-align: center;
}

.b-steps:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: .95;
	background-color: #f1f5fa;
	content: '';
}

.b-steps__inner {
	position: relative;
	z-index: 1;
}

.b-steps-list {
	margin: 50px -13% 0;
}

.b-steps-list__item {
	position: relative;
	padding-right: 40px;
	padding-left: 40px;
}

.b-steps-list__item:not(:last-child):after {
	position: absolute;
	top: 55px;
	left: calc(100% - 83px);
	width: 167px;
	height: 2px;
	border: 2px dotted #000;
	content: '';
}

.b-steps-list__number {
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	font: 700 120px/1 Montserrat;
	color: #253241;
}

.b-steps-list__number:after {
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	border-radius: 5px;
	content: '';
}

.b-steps-list__number:before {
	position: absolute;
	top: calc(50% - 10px);
	left: calc(50% - 10px);
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 12px 8px rgba(129, 129, 129, 0.06);
	content: '';
}

.b-steps-list__title {
	margin-bottom: 15px;
	font: 700 18px Montserrat;
	color: #253241;
}


.b-steps-list__number {
	position: relative;
	display: inline-block;
	margin-bottom: 25px;
	font: 700 120px/1 Montserrat;
	color: #253241;
}

.b-steps-list__number:after {
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	border-radius: 5px;
	content: '';
	background-color: #7fff03;
}

.b-steps-list__number:before {
	position: absolute;
	top: calc(50% - 10px);
	left: calc(50% - 10px);
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 12px 8px rgba(129, 129, 129, 0.06);
	content: '';
}



@media (max-width:1600px) {
	.b-steps-list {
		margin-left: 0;
		margin-right: 0;
	}
}


@media (min-width:992px) and (max-width:1600px) {
	.b-steps-list__item:not(:last-child):after {
		width: 120px;
		left: calc(100% - 60px);
	}
}


@media (min-width:992px) and (max-width:1199px) {
	.b-goods-f:not(.b-goods-f_row) .b-goods-f__list-item {
		padding-left: 5px;
		padding-right: 5px;
	}

	.b-goods-f:not(.b-goods-f_row) .b-goods-f__title {
		font-size: 16px;
	}

	.b-steps-list__number {
		font-size: 80px;
	}

	.b-steps-list__item {
		padding-left: 10px;
		padding-right: 10px;
	}

	.b-steps-list__title {
		font-size: 16px;
	}

	.b-steps-list__item:not(:last-child):after {
		top: 40px;
	}

	.b-goods-f_row .b-goods-f__media {
		width: 170px;
	}

	.b-filter__item+.b-filter__item {
		margin-top: 15px;
	}

	.b-filter .btn:not(.ui-select) {
		padding-left: 5px;
		padding-right: 5px;
	}

	.widget-title .ic {
		display: none;
	}

	.widget-title {
		padding-right: 10px;
	}

	.post-widget__media {
		float: none;
	}

	.post-widget__inner {
		padding-left: 0;
		margin-top: 10px;
	}
}

@media (max-width:991px) {



	.l-sidebar_last {
		margin-top: 70px;
	}

	.section-about {
		padding-bottom: 70px;
	}

	.b-goods-f:not(.b-goods-f_row) {
		margin: 0 auto 30px;
	}

	.b-title-page__wrap {
		width: auto;
	}

	.btns-switch,
	.b-filter-goods_sm .btns-switch {
		display: none;
	}

	.footer-section_subscribe {
		padding-right: 0;
	}

	.footer-list {
		margin-bottom: 30px;
	}

	.section-goods-vip {
		display: block;
	}

	.b-goods-vip {
		margin: 0 auto 20px;
		width: 100%;
	}

	.b-find__main {
		padding-right: 0;
	}

	.b-find__btn {
		position: relative;
		margin-bottom: 20px;
	}

	.b-services-nav {
		margin-bottom: 50px;
	}

	.b-steps-list__item:not(:last-child):after {
		display: none;
	}

	.b-steps-list__item {
		margin-bottom: 40px;
	}

	.section-reviews-2 {
		padding-top: 100px;
	}

	.b-contacts {
		margin-bottom: 20px;
	}
}

/* end 991px */


/* end 992px-1199px */
/* Slider start here */


.main-slider__wrap {
	display: inline-block;
	height: 700px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 9vw;
	padding: 170px 245px 218px 189px;
	font-family: Montserrat;
	color: #fff;
	background-color: rgba(18, 24, 32, 0.9);
	-webkit-clip-path: polygon(0 0%, 68% 0, 100% 100%, 32% 100%);
	clip-path: polygon(0 0%, 68% 0, 100% 100%, 32% 100%);
}

.main-slider__slogan {
	margin-bottom: 2px;
	font-size: 16px;
	text-transform: uppercase;
}

.main-slider__title {
	margin-bottom: 20px;
	font-size: 68px;
	font-weight: 700;
	line-height: .9;
}

.main-slider__title_lg {
	display: block;
	padding-left: 100px;
	font-size: 82px;
}

.main-slider__price {
	margin-bottom: 38px;
	font-size: 60px;
	line-height: 1;
	text-transform: uppercase;
}

.main-slider__price_up {
	font-size: 30px;
	vertical-align: super;
}

.main-slider__price_down {
	font-size: 30px;
	vertical-align: middle;
}

.main-slider__price_info {
	display: block;
	font-size: 16px;
	text-transform: uppercase;
}

.main-slider__link {
	font-family: Montserrat;
	font-size: 16px;
	color: #fff;
	-webkit-transition: all .3s;
	transition: all .3s;
	text-transform: uppercase;
}

.main-slider__link:before {
	display: inline-block;
	width: 100px;
	height: 5px;
	margin-right: 15px;
	content: '';
	vertical-align: middle;
}

.main-slider__link:hover {
	color: #fff;
	text-decoration: none;
}

.main-slider__figure-1,
.main-slider__figure-2 {
	position: absolute;
}

.main-slider__figure-1 {
	bottom: 120px;
	left: 14%;
	width: 21.5%;
}

.main-slider__figure-2 {
	bottom: 54px;
	left: 980px;
	width: 37%;
}

.main-slider__slide-2 .main-slider__wrap {
	margin-left: 17vw;
	padding: 173px 275px 218px 189px;
	-webkit-clip-path: polygon(0 0%, 71% 0, 100% 100%, 29% 100%);
	clip-path: polygon(0 0%, 71% 0, 100% 100%, 29% 100%);
}

.main-slider__slide-2 .main-slider__title {
	margin-bottom: 42px;
	font-size: 60px;
	line-height: 1;
}

.main-slider__slide-2 .main-slider__slogan {
	margin-bottom: 15px;
}

.b-bnr-2 {
	color: #fff;
}

.b-bnr-2__img {
	position: relative;
	z-index: 1;
}

.b-bnr-2__figure {
	margin-bottom: -127px;
	text-align: center;

}

.b-bnr-2 {
	color: #fff;
}

.b-bnr-2__img {
	position: relative;
	z-index: 1;
	max-width: 450px;
}

.services-text a {
	color: #269009;
}


.b-bnr-2__section {
	position: relative;
	padding: 180px 0 55px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
	text-align: center;
}

.b-bnr-2__section:after {
	position: absolute;
	border-width: 17px;
	border-style: solid;
	content: '';
}

.b-bnr-2__section_first {
	background-image: url("../images/buy-sell-section-1.jpg");
}

.b-bnr-2__section_first:after {
	bottom: 0;
	left: 0;
	border-color: transparent transparent #fff #fff;
}

.b-bnr-2__section_second {
	background-image: url("../images/buy-sell-section-2.jpg");
}

.b-bnr-2__section_second:after {
	top: 0;
	right: 0;
	border-color: #fff #fff transparent transparent;
}

.b-bnr-2__title {
	margin-bottom: 20px;
	font: 700 24px/1.2 Montserrat;
	text-transform: uppercase;
}

.b-bnr-2__link {
	font-size: 16px;
	color: #fff !important;
	text-decoration: none !important;
	border-bottom: 1px dotted #fff;
}

.b-bnr-2__link:hover {
	border-bottom: 0;
}


.b-services__main {
	margin-left: 10px;
}

.b-services-nav {
	margin-right: 30px;
}

.b-services-nav__link {
	position: relative;
	display: block;
	padding: 30px;
	font-family: Montserrat;
	font-size: 18px;
}

.b-services-nav__link .ic {
	font-size: 60px;
	color: #253241;
}

.b-services-nav__link:after {
	position: absolute;
	top: 5px;
	right: 5px;
	border-width: 7px;
	border-style: solid;
}

.b-services-nav__number {
	position: absolute;
	top: 15px;
	left: 25px;
	font-weight: 700;
	color: #ccc;
}

.b-services-nav__info {
	display: block;
	color: #253241;
}

.b-services-nav__item {
	padding-right: 0;
	padding-left: 0;
	background-color: #fff;
	box-shadow: 0 0 12px 8px rgba(129, 129, 129, 0.06);
	-webkit-transition: all .3s;
	transition: all .3s;
	text-align: right;
	flex: 0 0 50%;
	max-width: 50%;
}

.b-services-nav__link.active .ic {
	color: #fff;
}

.b-services-nav__link.active .b-services-nav__number {
	font-size: 36px;
	opacity: .35;
	color: #fff;
}

.b-services-nav__link.active .b-services-nav__info {
	font-weight: 700;
	color: #fff;
}

.b-services-nav .b-services-nav__link.active:after {
	border-color: #fff #fff transparent transparent;
	content: '';
}

.b-services-content {
	margin-top: 25px;
}

.b-services-content__title {
	margin-top: 30px;
}

.tab-content>.tab-pane {
	display: none;
}

.tab-content>.active {
	display: block;
}



@media (max-width:991px) and (min-width:768px) {
	.main-slider__title {
		font-size: 50px;
	}

	.main-slider__title_lg {
		font-size: 55px;
	}

	.b-progress-list__name {
		font-size: 13px;
	}

	.b-progress-list__percent {
		font-size: 26px;
	}
}

@media (max-width:767px) {

	.main-slider__wrap,
	.main-slider__slide-2 .main-slider__wrap {
		clip-path: none;
		padding: 65px 10px 0;
		width: 100%;
		margin-left: 0;
		text-align: center;
	}

	.main-slider__title,
	.main-slider__slide-2 .main-slider__title {
		font-size: 30px;
	}

	.main-slider__title_lg {
		font-size: 25px;
		display: inline-block;
		padding-left: 5px;
	}

	.main-slider__price {
		font-size: 30px;
	}

	.main-slider__price_up,
	.main-slider__price_down {
		font-size: 20px;
	}

	.main-slider__link {
		font-size: 14px;
		display: none;
	}

	.main-slider__link:before {
		width: 70px;
		height: 3px;
	}

	.main-slider__slogan {
		font-size: 14px;
	}

	.main-slider__slide,
	.sp-mask,
	.sp-image-container,
	.main-slider__wrap {
		height: 300px !important;
	}

	.b-bnr-2__figure {
		display: none;
	}

	.b-bnr-2__section {
		margin-bottom: 20px;
		padding: 54px 20px 55px;
	}

}

@media (max-width:468px) {

	html .b-title-page {
		font-size: 20px;
		line-height: 1.4;
	}

	html .breadcrumb {
		padding: 0.75rem 0;
	}

	.main-slider__figure-1.img-fluid {
		display: none !important;
	}

	html .b-services-nav__item {
		text-align: left;
		flex: 0 0 100%;
		max-width: 100%;
	}


	.b-services-nav__number {
		display: none;
	}

}

/* end 991px-768px */

/* Slider End here */

/* video CSS start here */
.header {
	z-index: 999 !important;
}

/* video CSS End here */
.card-bg-black {
	background: black;
}

.card-white {
	color: white;
}

.card-white i.bi {
	color: white;
}

.card-title {
	font-size: 24px;
	padding: 20px 0;
}

.img-side-text {
	display: contents;
}

.text-right {
	text-align: right !important;
}

.text-dec-none {
	text-decoration: none;
	color: black;
}

.over-section {
	margin-top: -100px;
}

.video-content {
	text-align: center;
	bottom: 50%;
	position: absolute;
	color: #f1f1f1;
	width: 100%;
	margin-top: -10%;
}

.video-content-w {
	max-width: 1000px;
	margin: auto;
	background: #000000cc;
	padding: 20px;
}

.video-content-w h1 {
	font-size: 52px;
}

.video-content-w p {
	font-size: 20px;
}

@media (max-width:768px) {
	.img-side-text {
		display: block;
	}

	.over-section {
		margin-top: 0px;
	}

	.video-content {
		bottom: 50%;
		position: initial;
		color: #f1f1f1;
		width: 100%;
		margin-top: -50%;
	}

	.video-content-w {
		max-width: 600px;
		margin: auto;
		background: #000000a3;
		padding: 0px;
	}

	.video-content-w h1 {
		font-size: 32px;
	}

}





/* Custom CSS by Praful Bhuskute end here */