*{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}

body {
    font-family: var(--lato);
}

:root {
  --primary:#3A82D7;
  --secondary:#94C245;
  --brdr:1px solid #b6aaaa;
  --input:  #f0f0f0;
  --box-shadow: 2px 2px 12px 2px #b6aeae;
  --bg: #ebf3fd;
  --fa:FontAwesome;
  --lato:lato;
	--success: #4CAF50;
	--info: #2196F3;
	--warning: #ffeb3b;
	--danger: #f44336;
 }

p{
	margin: 5px auto;
}
 @font-face {
    font-family: lato;
    src: url(/fonts/lato/Lato-Black.ttf) format("truetype");
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

 @font-face {
    font-family: lato;
    src: url(/fonts/lato/Lato-Bold.ttf) format("truetype");
    font-display: swap;
    font-weight: 900;
    font-style: normal;
}

 @font-face {
    font-family: lato;
    src: url(/fonts/lato/Lato-Regular.ttf) format("truetype");
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}



@font-face {
  font-family: 'FontAwesome';
  src: url("/fonts/fontawesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("/fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),
   url("/fonts/fontawesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
    url("/fonts/fontawesome/fontawesome-webfont.woff?v=4.7.0") format("woff"),
     url("/fonts/fontawesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
      url("/fonts/fontawesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }



.info, .danger, .success, .warning {
	text-align: center;
	padding: 10px;
}
.info, .danger, .success {
	color: white;
}

.info {
	background-color: var(--info);
}

.success {
	background-color: var(--success);
}
.warning {
	background-color: var(--warning);
}
.danger {
	background-color: var(--danger);
}


/*header css*/

.header-flex{
	width: 90%;
	margin: auto;
}
.header-logo{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px;
}
.header-menu {
	width: 100%;
}
.header-logo img{
	width: 40%;
}

.header-menu ul li {
	list-style: none;
	margin: 10px 0px 10px 0px;
}
.header-menu ul li a {
	text-decoration: none;
	color: #333;
	text-transform: uppercase;
}
.header-menu ul .call-nw{
	border: 1px solid var(--secondary);
	padding: 6px 12px;
	border-radius: 4px;
	width: fit-content;
}
.login, .signup{
	background-color:var(--primary);
	padding: 6px 12px;
	border-radius: 4px;
	display: none;
}
.header-menu ul .login a, .header-menu ul .signup a  {
	color: #fff;
}
.border{
	background-image:linear-gradient(to right, var(--primary) 20%, var(--secondary) 20%);
	padding: 3px;
}

.bar:after{
	content: '\f0c9';
	font-family: var(--fa);
}
.login-mobile{
	background-color: var(--primary);
	padding: 10px;
}
.login-mobile div ul {
	display: flex;
	justify-content: center;
}
.login-mobile div ul li {
	list-style: none;
	margin-right: 10px;
	margin-left: 10px;
	background-color: #fff;
	padding: 6px 12px;
	border-radius: 2px;
}
.login-mobile div ul li a{
	text-decoration: none;
	color: #333;
}
.header-menu{
	display: none;
}


.carts:after{
	content: '\f07a';
	font-family: var(--fa);
	font-size: 21px;
	color: #fff;
}
.cart{
	position: relative;
background-color: transparent !important;
}
.cart a{
	text-decoration: none;
}

.cart b {
    position: absolute;
    border-radius: 50%;
    background-color: #f13d80;
    width: 14px;
    height: 14px;
    right: -9px;
    top: -3px;
    content: "0";
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    color: #fff;
}
/*header css*/






/*form css*/

.form-row{
background-color: #fff;
    border: 1px solid var(--primary);
    width: 80%;
    margin: auto;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 111;
    margin-top: -100px;
}
.row-input input {
	width: 100%;
	padding: 8px;
	border: var(--brdr);
	border-radius: 4px;
	background-color: var(--input);
	outline: none;
	margin-top: 5px;
}
.row-select {
	display: flex;
	justify-content: space-between;
	margin: 9px auto;
}
.row-select > div{
	width: 32%;
}
.row-select > div select, .row-select > div input{
		width: 100%;
	padding: 8px;
	border: var(--brdr);
	border-radius: 4px;
	background-color: var(--input);
	outline: none;
	margin-top: 5px;
}
.form-search {
	text-align: center;
}
.form-search input {
		width: 32%;
		margin: auto;
	padding: 9px;
	border: 0px;
	border-radius: 4px;
	background-color: var(--primary);
	outline: none;
	margin-top: 5px;
	cursor: pointer;
	color: #fff;
	text-transform: uppercase;
}
.form-section{
background-color: var(--bg);
padding: 20px;
}

/*form css*/








/*car part*/
.car-part{
	background-image: url(/img/part/background.png);
	background-size: cover;
	padding: 10px;
}
.car-heading{
	text-align: center;
}
.car-heading p{
	margin: 4px auto;
}
.car-part-rw{
	display: flex;
	width: 90%;
	margin: auto;
	flex-wrap: wrap;
}
.car-row-flx{
	width: 30%;
		background-image:linear-gradient(to top, var(--secondary), var(--primary));
		padding: 1px;
		border-radius: 10px;
		margin-right: 10px;
		margin-left: 10px;
		margin-bottom: 20px;
}
.car-row-prt {
	background-color: #fff;
	border-radius: 10px;
}
.car-part-image{
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.car-part-image img{
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: contain;
}
.car-parts-fl{
	padding: 10px;
	text-align: center;
}
.car-parts-fl > div{
	margin-top: 10px;
}
.car-cart-in {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.car-cart-in .car-add-cart{
	background-color: var(--secondary);
	padding: 6px 12px;
	color: #fff;
	border-radius: 4px;
}
.car-cart-in .car-add-cart a {
	color: #fff;
	text-decoration: none;
}
.car-cart-in .car-add-cart a:before{
    content: "\f07a";
    font-family: var(--fa);
    margin-right: 7px;
}
.car-cart-in a{
	text-decoration: none;
	color: var(--primary);
}

/*car part end*/






/*we provide css*/

.we-provide {
	background-image: url(/img/home/bluebg.png);
	background-size: cover;
	padding: 20px;
}
.we-provide-flx{
	width: 90%;
	margin: auto;
	display: flex;
}
.we-provide-lft{
	width: 37%;
	color: #fff;
}
.we-provide-ryt{
	width: 70%;
}
.we-provide-lft ul {
	padding-left: 20px;
}
.we-provide-lft ul li {
	margin:4px auto;
}

.we-provide-lft h2 b {
	font-family:var(--lato);
	font-weight: normal;
}
.we-provide-lft h2 {
	margin-bottom: 10px;
}


/*slider css*/
.mobile-test-slider{
	display: none;
}
.car-auto-part{
	display: flex;
	align-items: center;
}
.car-left-arw{
	width: 5%;
}
.car-auto-cntr{
	width: 85%;

}
.car-auto-mn {
	height: 360px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.car-auto-inner:first-child {
left: 0;
}
.car-auto-inner {
	    display: flex;
    justify-content: flex-start;
    position: absolute;
    width: 100%;
    height: 90%;
    left: -100%;
    transition: left 2s;
}
.car-auto-inner a{
	text-decoration: none;
	color: #fff;
}
.car-part-name{
	text-align: center;
	margin: 6px auto;
}
.car-part-images{
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #333;
}
.car-part-images img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	object-position: center;}
.car-auto-inner > .car-auto-div{
	width: 28%;
	    margin-right: 4px;
    margin-left: 21px;
	    transform: skewX(350deg);
}
.car-left-arw span:after{
	content: '\f177';
	font-family: var(--fa);
	background-color: #fff;
	border-radius: 20px;
	padding: 9px;
	cursor: pointer;
}

.car-ryt-arw span:after{
	content: '\f178';
	font-family: var(--fa);
	background-color: #fff;
	border-radius: 20px;
	padding: 9px;
	cursor: pointer;
}

/*slider css*/
/*we provide css*/


/*car brands css*/
.mobile-brand-section{
display: none;
}
.car-brands{
	background-image: url(/img/home/logo-bg.png);
	background-size: cover;
	padding: 20px;
}
.car-brand-heading{
	text-align: center;
	margin: 7px auto;
}
.car-brand-heading h3 {
	margin: 5px auto;
}
.brand-logo{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: auto;

}
.brand-image{
	width: 20%;
	border: 1px solid #e5dede;
		background-color: #fff;
	padding: 10px;
}
.brand-image-sec img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.brand-image-sec{
	width: 100%;
	height: 100px;
}
.brnd-name{
	text-align: center;
	margin: 4px auto;
}
.brand-image  a{
	text-decoration: none;
	color: #333;
}
.all-brand{
border: 1px solid #e5dede;
    width: 100%;
    margin: auto;
    padding: 8px;
    text-align: center;
}
.brnd-sec{
	background-color: #fff;
	border-radius: 9px;
	padding: 9px;
	width: 80%;
	margin: auto;
}
.all-brand a {
	color: var(--primary);
	text-decoration: none;
}

/*car brands css*/



/*call-action*/
.call-action {
	background-image: url(/img/home/call-action.png);
	background-size: cover;
	padding:90px;
}
.call-action-head {
	text-align: center;
	color: #fff;
}
.call-action-head h2 b{
 color: var(--secondary);
}
.call-action-head h2 {
	margin: 10px auto;
	font-size: 36px;
	text-transform: uppercase;
}
.call-to-action {
	margin: 15px auto;
}
.call-to-action a {
	border: 1px solid var(--primary);
	background-color: rgba(65, 117, 255, .2);
	padding: 7px 23px;
	text-decoration: none;
	border-radius: 4px;
	color: #fff;
		text-transform: uppercase;
}

/*call-action end*/







/*testimonials css*/

.testimonials-mobile-slider{
	display: none;
}

.testimonials {
	background-color: #dae5f2;
	padding: 20px;
}
.testimonials-heading{
	text-align: center;
	width: 70%;
	margin: auto;
}
.testimonials-heading b {
	font-size: 20px;
	margin-bottom: 10px;
	display: block;
}

/*testimonials css*/
.testimonials-lft-arw span:after{
	    content: '\f177';
    font-family: var(--fa);
    background-color: #fff;
    border-radius: 20px;
    padding: 9px;
    cursor: pointer;
}


.testimonials-ryt-arw span:after{
	    content: '\f178';
    font-family: var(--fa);
    background-color: #fff;
    border-radius: 20px;
    padding: 9px;
    cursor: pointer;
}
.testimonials-slider{
	display: flex;
	align-items: center;
	width: 80%;
	margin: 20px auto;
}
.testimonials-lft-arw, .testimonials-lft-arw {
	width: 5%;
}
.testimonials-cnter{
	width: 85%;
	height: 310px;
    position: relative;
    overflow: hidden;
}

.testimonials-slide:first-child{
	    left: 0;
}
.testimonials-slide{
	    display: flex;
    justify-content: flex-start;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    transition: left 2s;
    align-items: center;
}
.testimonials-review{
	width: 32%;
	background-color: #fff;
	border-radius: 30px;
	padding: 10px;
	border: 1px solid var(--secondary);
	position: relative;
	margin: auto 10px;
}
.testimonials-img{
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 50%;
	margin: auto;
	margin-top: -45px;
}
.testimonials-img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	border: 1px solid #ddd;
	border-radius: 50%;
}
.testimonials-degi{
	text-align: center;
	margin: 5px auto;
}
.testimonials-degi p {
	margin: 3px auto;
}
.testimonials-desc {
		height: 150px;
	overflow: hidden;
		text-align: center;
margin: 4px auto;
}
.testimonials-degi b{
	color: var(--primary);
}
.quote{
	position: absolute;
	left: 10px;
	font-size: 123px;
	top: 0px;
	    line-height: 57px;
	    color: var(--secondary);
	    opacity: .5;
}

/*testimonials css end*/





/*footer css*/

footer{
	background-color: #333;
	padding: 20px;

}
.footer {
	display: flex;
	width: 80%;
	margin: auto;
	justify-content: space-between;
}
.footer-flx {
	width: 32%;
}
.footer-logo{
	background-color: #fff;
	padding: 5px;
	border-radius: 9px;
	width: 76%;
}
.footer-logo img{
	width: 100%;
}
.footer-cnter{
	width: 40%;
}
.footer-lick ul {
	display: flex;
	margin-top: 10px;
}
.footer-lick b{
	margin-left: 10px;
	color: #fff;
}
.footer-lick ul li {
	list-style: none;
	margin-left: 10px;
	margin-right: 10px;
}
.footer-lick ul li a {
	text-decoration: none;
	color: #b2aeae;
}
.fb:after{
	content: '\f082';
	font-family: var(--fa);
}

.tw:after{
	content: '\f099';
	font-family: var(--fa);
}

.linkd:after{
	content: '\f08c';
	font-family: var(--fa);
}

.insta:after{
	content: '\f16d';
	font-family: var(--fa);
}
.footer-lst{
	width: 20%;
}
.footer-lst ul {
	display: flex;
	margin-top: 10px;
}
.footer-lst ul li {
	list-style: none;
	margin-right: 20px;
}
.footer-lst ul li a{
	text-decoration: none;
	    color: #b2aeae;
}
.footer-lst b {
	color: #fff;
}

.king-flx{
	width: 80%;
	margin: 10px auto;
	display: flex;
	justify-content: space-between;
}
.king-flx > div ul {
display: flex;
}
.king-flx > div ul li{
	list-style: none;
	margin-right: 10px;
}
.king-flx > div ul li  a{
	text-decoration: none;
	color: #b2aeae;
}
.king-flx > div p{
	color: #b2aeae;
}
.hr{
	border:0px;
	background-color: #b2aeae;
	height: 1px;
	width: 80%;
		margin: 10px auto;
}

/*footer css end*/






/*step-section*/

.step-section{
	background-color: #ebf3fd;
}
.step-section-dt{
	background-image: linear-gradient(var(--bg) 44.33%, var(--primary) 43.33%, var(--primary) 59.66%, var(--bg) 59.66%);
	    padding: 12px;
}
.step-flex{
	width: 80%;
	margin: auto;
}
.step-lft{
	width: 23%;
	    background-color: var(--primary);
	    padding: 5px;
	    border-radius: 10px;
 transform: skewX(350deg);
 margin-left: 10px;
 margin-right: 10px;
}
.step-sys{
	background-color: #fff;
	border-radius: 10px;
	text-align: center;
	padding: 40px 10px;

}
.step-flex{
	display: flex;
}
.step-sys .step-img{
		 transform: skewX(12deg);
		 width: 100px;
		 height: 100px;
		 margin: auto;
}
.step-sys .step-nme{
		 transform: skewX(12deg);
}
.step-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*step-section*/


/*banner css*/

.banner-slider{
	    overflow: hidden;
    position: relative;
    height: 400px;
}
.banner-slider-img:first-child{
	left: 0;
}
.banner-slider-img{
	width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    transition: left 4s;
    left: -100%;
}
.banner-slider-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-content{
	position: absolute;
	top: 0px;
	margin: 100px auto;
	left:6%;
	z-index: 1;

}
.banner-content {
	text-transform: uppercase;
	color: #fff;
}
.banner-content h2 b{
	color: var(--secondary);
}
.banner-content h2, .banner-content h3, .banner-content h4, .banner-content h5, .banner-content h1{
	font-size: 44px;
} 
.banner-content > div{
	margin: 10px auto;
}
.banner-content > div a{
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
}
.call:after{
	content: '\f095';
	font-family: var(--fa);
	background-color: var(--primary);
	padding: 10px 12px;
	border-radius: 20px;
	color: #fff;
	margin-right: -12px;
	font-size: 20px;
}
.banner-content > div a p {
	border: 1px solid var(--primary);
	border-radius: 4px;
	padding: 6px 16px;
}
.dot{
	position: absolute;
    bottom: 100px;
    z-index: 111;
    width: 100%;
    text-align: center;
}
.dot span:first-child {
	    background-color: #fff;
    padding: 0px 10px;
    border-radius: 50%;
}

.dot span:last-child {
	background-color: #fff;
    padding: 0px 10px;
	border-radius: 50%;
	margin-left: 10px;
}
.dot span {
	cursor: pointer;
}
.banner-sec{
	position: relative;
}




















/*sell my car css*/

.Choose_US_ditalis{
    width: 100%;
    display: grid;
    background-image: url(/img/sell-my-car/bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 1em;
    position: relative;
}
.Choose_US_ditalis:after{
	    content: '';
    position: absolute;
    left: 0;
    top: 0;
    /* bottom: 0; */
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    display: inline-block;
    background: linear-gradient(180deg, rgba(9, 24, 103, 0) 0%, rgba(6, 14, 58, 0.8) 100%);
    border-radius: 13px;
}
.detalis_why_us{
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
     position: relative;
     z-index: 1;
}
.detalis_why_us h1{
font-family: var(--lato);
    padding: 1em 0;
    
}
.detalis_why_us p{
    color: #fff;
font-family: var(--lato);
    
}
.why_us_more{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
    color: #fff;
}
.qulity_part{
    width: 100%;
    display: grid;
    padding: 1em;
    grid-template-columns: 30% 70%;
    
    
    
}
.border_bottom{
    border-bottom: 1px solid #fff;
}
.border_right{
    border-right: 1px solid #fff;
    
}
.qulity_part img{
    width: 80%;
    
}
.qulity_part h3{
    display: grid;
 font-family: var(--lato);
    font-size: 1.2em;
    align-content: center;
    
}
.meet_Expert{
    width: 100%;
    display: grid;
    justify-content: center;
    text-align: center;
    background-image: url('/img/sell-my-car/backg.jpg');
    background-size: cover;
    background-position: center;
  font-family: var(--lato);
    padding: 1em;
    color: #fff;
    position: relative;
}
.meet_Expert:after{
	    content: '';
    position: absolute;
    left: 0;
    top: 0;
    /* bottom: 0; */
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    display: inline-block;
    background: linear-gradient(180deg, rgba(0, 0, 0,0.8) 0%, rgba(6, 14, 58, 0.8) 100%);
}
.green_color{
    color: #94c245;
}
.meet_Expert > div {
	position: relative;
	z-index: 1;
}
.meet_Expert h1{
    font-size: 1.5em;
 margin: 10px auto;   
 }
.meet_Expert h2{
    font-size: 2em;   
}
.button_ABoutExpert{
    display: block;
    background-color: rgba(49, 99,180, .3);
    border: 1px solid #3d75b6;
    border-radius: .5em;
    justify-self: center;
    padding: .6em 0em;
    color: #fff;
    width: 40%;
    margin: auto;
    text-decoration: none;
    margin-top: 10px;
}
button:hover{
    cursor: pointer;
}
.Car_we_Buy{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    background-image: url('/img/sell-my-car/bg2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}
.Car_we_Buy h1{
 font-family: var(--lato);
    font-size: 23px;
    padding-top: 1em;
    
}
.Types_car_buy{
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2em;
    padding:1em;
    align-content: flex-start;
}
.car_type1{
    width: 100%;
    display: grid;
    justify-self: center;
    align-content: flex-start;
    grid-template-columns: 1fr;
    border-radius: .5em;  
    box-shadow: 2px 2px 12px 2px #a09898; 
    margin-bottom: 20px;
}
.car_type1 img{
    width: 100%;
    border-top:2px solid #3d75b6;
    border-left: 2px solid #3d75b6;
    border-right: 2px solid #7cb16c;
    border-top-left-radius: .6em;
    border-top-right-radius: .6em;
    height: 250px;
    overflow: hidden;
    object-fit: cover;
}
.car_type1 h2{
    padding: 1em;
 font-family: var(--lato);
    color: #fff;
    background-color: #94c245;
    font-size: 1.3em;
    text-align: center;
    border-bottom: 2px solid #7cb16c;
     border-left: 2px solid #7cb16c;
    border-right: 2px solid #3d75b6;
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em;
    
}
.car_type1 h2:hover{
    cursor: pointer;
}
.FRQ_div_wapper{
    width: 65%;
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 1em;
    
}
.FRQ1{
    width: 100%;
    display: grid;
    padding: 1em;
    grid-template-columns: 1fr .01fr;
    border-radius: .5em;
    border-top:2px solid #3d75b6;
    border-bottom: 2px solid #7cb16c;
     border-left: 2px solid #7cb16c;
    border-right: 2px solid #3d75b6;
    background-color: #fff;
}
.FRQ1 h3{
    font-size: 1.2em;
    color: #9f9f9f;
  font-family: var(--lato);
}
.FRQ1 button{
    background-color: transparent;
    border: 0px;
}
.the_ansswer1{
    font-size: .9em;
     color: #9f9f9f;
    padding-top: 1em;
font-family: var(--lato);  
}
.the_ansswer1{
	display: none;
}



.Sell_car_form_wapper{
    width: 100%;
    background-image: url('/img/sell-my-car/banner-sellcar.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 12px;
    padding-bottom: 60px;
}
.Sell_car_form_wapper > div:first-child {
	width: 100%;
	margin-left: auto;
}

.Sell_car_form_wapper > div:nth-child(2) {
	width: 100%;
		margin-left: auto;
}
.banner_sell_Car{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.5em;
    padding-bottom: 2em;
    justify-self: flex-end;
    align-self: flex-end;
   align-items: center;
}
.info_sellCar_banner{
    width: 100%;
    display: grid;
    grid-gap: .5em;
    grid-template-columns: .1fr .9fr;
    color: #fff;
    
}
.info_sellCar_banner img{
    width: 29px;
    display: grid;
    justify-self: flex-end;
}
.info_sellCar_banner h1, .info_sellCar_banner  b{
    font-size: 19px;
    font-family: var(--rb);
}
.Banner_sell_main_form{
    background-color: #e1ecfe;
     width: 100%;
     display: grid;
    grid-template-columns: 1fr;
    padding: 1em;
    border-radius: .5em;
    border-top: 3px solid #3a82d6;
    border-bottom: 3px solid #94c245;
    border-left: 3px solid #3a82d6;
    border-right:  3px solid #94c245;
}
.form_wapper{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: .4em;
}
.form_wapper > div input, .form_wapper textarea{
    width: 100%;
    padding: .8em;
    border-radius: .5em;
    border: 1px solid #3a82d6;
     
}
.form_wapper textarea{
    resize: none;
}
.form_hading{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    margin: 8px auto;
}
.form_hading h1{
    font-size: 1.5em;
    color: #3a82d6; 
    
}
.form_hading p{
    font-size: .9em;
}
.Banner_sell_main_form button{
    border-radius: .5em;
    background-color: #94c245;
    color: #fff;
    margin-bottom: -44px;
    justify-self: center;
    align-content: center;
    border: 0px;
    padding: 1em 4em;
    margin-top: 10px;
    font-size: 19px;
}
.Banner_sell_main_form button:hover{
    cursor: pointer;
}
.Quick_Steps_wapper{
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    background-color: #e1ecfe;
    justify-items: center;
    padding:2em 1em;
    grid-gap: 3em;
}
.Quick_Steps_wapper h1{
      font-size: 23px;
    color: #3a82d6; 
    
}
.steps_info_wapper{
    width: 100%;
    grid-template-columns:  1fr 1fr 1fr;
    grid-gap: 2em;
     display: flex;
}
.Steps_1_info{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
}
.Dietalis_Step1{
       width: 100%;
    display: flex;
    align-items: flex-end;
}
.one_img {
    display: grid;
    align-self: flex-end;
    width:33%;
    
}
.info_S1{
    width: 100%;   
}
.Img_quickSteps{
    width: 20%;
    display: grid;
}
.Img_quickSteps img{
    width: 27px;
    
}
.info_S1 h3{
    font-size: 1.3em;
    color: #e6495d;
}
.Steps_1_info p{
    font-size: .9em;
    color: #79797a;
    text-align: center;
    margin-top: 10px;
}
.Quick_Steps_wapper button, .Quick_Steps_wapper a{
  padding: 9px 23px;
    color: #fff;
    background-color: #3a82d6; 
    border: 0px;
    border-radius: .5em;
    text-decoration: none;
}




/*sell my car end*/









/*about-us css*/

.frist_abouts{
    width: 100%;
    padding: 12px;
    display: grid;
    grid-template-columns: 100%;
    background-image: url('../img/about-us/bg_aboutus.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.about_usHading{
    width: 100%;  
}
.about_usHading h1{
    font-size: 3.5em;
    color: #fff;
    
    
}
.about_usHading button, .about_usHading a{
    color: #fff;
    justify-self: flex-start;
    margin-top: 3em;
    text-decoration: none;
    text-align: center;
}
.more_info_details{
    background-color: #e1ecfe;
    padding: 16px;
}
.more_info_details img{
    width: 100%;
}
.detalis_aboutUS{
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 10px;
}
.detalis_aboutUS h2, .whyUS_info_ab h2{
    font-size: 2em;
    color: #266bb9;
}
.detalis_aboutUS p, .whyUS_info_ab p{
    color: #747578;
    font-size: 1em;
}
.aboutUS_Whyus{
    width: 100%;
    background-image: url('/img/about-us/bg_whyUS.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
    grid-gap: 1em;
}
.whyUS_info_wapper{
    width: 100%;
}
.whyUS_info_Img {
    width: 100%;
    display: grid;
    align-items: flex-end;
}
.whyUS_info_Img img{
    width: 100%;
}
.whyUS_info_ab{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: .8em;
}
.whyUS_info_ab h3{
    width:70%;
    color: #ee4c5c;
    font-size: 1.5em;
}
.about_us_qualty{
    width: 100%;
    display: flex;
}
.quality1_ab{
    width: 100%;
    display: grid;
    grid-template-columns: .45fr .55fr;
   
}
.quality1_ab img{
    width: 100%;
}
.quality1_ab h2{
    display: grid;
    align-self: center;
    font-size: 1.3em;
 
    
}
.the_ansswer1{
    display: none;
}
.call-now a{
    background-color: rgba(49, 99,180, .3);
    border: 1px solid #3d75b6;
    border-radius: 0.5em;
    justify-self: center;
    padding: 0.6em 2em;
    color: #fff;
    margin: auto;
    text-decoration: none;
    margin-top: 10px;
    display: block;
    width: 30%;
    margin-left: 0px;
}
.call-now{
	margin: 20px auto;
	text-align: left;
}
/*about-us css*/





/*part details*/

.part-detials{
	background-color: var(--bg);
	padding: 10px;
}
.part-sec{
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid var(--primary);
	padding: 10px;
	width: 98%;
	margin: auto;
	box-shadow: var(--box-shadow);
	    margin-top: -37px;
}

.s-icn:after{
	content: '\f002';
	font-family: var(--fa);
}
.part-srch-input{
	display: flex;
	position: relative;
	margin: 5px auto;
}
.part-srch-input input {
	width: 100%;
	padding: 8px 12px;
	border-radius: 4px;
	background-color: var(--bg);
	border: 1px solid #ddd;
}
.part-srch-input button {
	position: absolute;
	right: 9px;
	background-color: transparent;
	border: 0px;
	color: var(--primary);
	top: 4px;
	cursor: pointer;
 font-size: 18px;
}
.part-left-side{
	margin-top: 22px;
}
.part-left{
	width: 100%;
}
.part-img{
	width: 100%;
	background-image: linear-gradient(to bottom, var(--primary), var(--secondary));
	padding: 2px;
	border-radius: 10px;
	box-shadow: var(--box-shadow);
}
.part-image{
	background-color: #fff;
		border-radius: 10px;
	padding: 5px;
	height: 250px;
	overflow: hidden;
	text-align: center;
	display: flex;
	justify-content: center;
}
.part-image img {
	width: 80%;
	height: auto;
	object-fit: contain;
}
.left-arw-w:after{
	content: '\f053';
	font-family: var(--fa);
}
.ryt-arw-w:after{
		content: '\f054';
	font-family: var(--fa);
}
.part-th-image{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px auto;
}
.part-slider{
	    width: 100%;
    /* height: 300px; */
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    align-items: center;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
}

.thumbnail{
	flex: 0 0 auto;
    object-fit: cover;
    cursor: pointer;
    margin: 5px;
    border: 1px solid var(--black);
    overflow: hidden;
    transform: scale(.95);
    transition: all .3s;
    width: 23%;
	height: 50px;
}
.thumbnail img {
	width: 100%;
	border: 1px solid #333;
	height: 100%;
	object-fit: contain;
}
.left-arw-w, .ryt-arw-w{
	background-color: var(--primary);
	border-radius: 20px;
	padding: 3px 7px;
	color: #fff;
}
.part-car-details{
	display: flex;
}
.part-dtls-lbl{
	width: 50%;
}
.part-dtls-spc{
		font-family: var(--rsb);
	font-weight: 700;
}
.cmp-det-sec{
	width: 100%;
}
.part-right{
	width: 100%;
	margin-left: auto;
}
.cmp-det-sec .part-car-details:nth-child(odd){
	background-color: #edebeb;
}
.part-car-details{
	padding: 8px;
	border-radius: 4px;
}

.part-checkout{
	background-color:#94c245;
	padding: 3px;
	width: 60%;
	text-align: center;
	border-radius: 5px;
	margin-top: 8px;
}
.part-checkout a{
	text-decoration: none;
	color: #fff;
	padding: 7px;
	display: block;
}
.part-desc{
	margin: 7px auto;
}
.part-desc p {
	margin-top: 5px;
}
.car-part-dt-heading {
	text-align: center;
}
.car-part-dt-heading h3  {
	font-size: 33px;
	color: var(--primary);
}

.faq button {
    cursor: pointer;
    width: 100%;
    padding: 10px;
    text-align: left;
    background-color: #fff;
    font-weight: 700;
    font-size: 17px;
    font-family: var(--rsb);
        border-top: 2px solid #3d75b6;
    border-bottom: 2px solid #7cb16c;
    border-left: 2px solid #7cb16c;
    border-right: 2px solid #3d75b6;
    border-radius: 4px;
}

.fq-a {
    width: 100%;
    margin: auto 0;
    padding: 0;
    line-height: 1.5em;
    max-height: 0;
    transition: max-height 0.4s;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 20px;
}
.faq-section {
	width: 98%;
	margin: auto;
}
.casd-heds{
	text-align: center;
	margin: 10px auto;
	font-size: 23px;
}
.fq-a p{
	margin: 6px;
}
.fq button:after{
     content: '\f067';
    font-family: var(--fa);
    position: absolute;
    right: 21px;
}
.faq > div {
	position:relative;
}
.fq-active button:after{
	content:'\f068';
	 font-family: var(--fa);
    position: absolute;
    right: 21px;
}
.car_part_form_wapper{
	width: 100%;
	    background-image: url(/img/part/carparts-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 1em;
    padding-bottom: 60px;
}
.car_part_form_wapper > div:first-child {
    width: 100%;
    margin-left: auto;
}

.car_part_form_wapper > div:nth-child(2) {
    width: 100%;
    margin-left: auto;
}
.car_part_form_wapper .banner_sell_Car{
	    align-self: center;
	    color: #fff;
	    font-size:23px;
}
.car_part_form_wapper .banner_sell_Car .car-part-heading h2 b{
 color: var(--secondary);
}
/*part details*/



/*contact us */
.contact-us{
	background-image: url(/img/contact-us/contact-banner.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px;
	text-align: center;
}
.contact-us-bg{
	background-color: #3a82d7;
	padding: 10px;
}
.contact-us-form{
	width: 90%;
	margin: auto;
	background-color: #fff;
    box-shadow: 2px 2px 31px -9px #686868;
	border-radius: 20px;
	border: 1px solid #3a82d7;
	padding: 20px;
	margin-top: -33px;
}
.contact-form {
	width: 100%;
}
.form-rows {
	margin: 6px auto;
}
.form-rows input {
	width: 100%;
	padding: 6px;
	border-radius: 4px;
	outline: none;
	background-color: #f0f0f0;
	border: 1px solid #c5c4c4;
	margin: 6px auto;
}

.form-rows textarea {
	width: 100%;
	padding: 6px;
	border-radius: 4px;
	outline: none;
	background-color: #f0f0f0;
	border: 1px solid #c5c4c4;
	margin: 6px auto;
}
.contact-details-sec{
	width: 100%;
	margin-top: 10px;
}

.contact-ul ul li {
	list-style: none;
	display: flex;
	align-items: flex-start;
	margin-bottom: 23px;
}
.contact-ul ul li p {
	margin-left: 10px;
	border-left: 3px solid var(--primary);
	padding-left: 5px;
	width: 60%;
}
.contact-details-sec h4{
	color: var(--primary);
	margin-bottom: 10px;
}
.contact-ul ul li  img{
	width: 27px;
}
.form-submit{
	text-align: center;
}
.form-submit input {
	background-color: var(--primary);
	color: #fff;
	padding: 8px 12px;
	width: 100%;
	border: 0px;
	cursor: pointer;
	border-radius: 4px;
	text-transform: uppercase;
}

/*contact us ccs end*/




/*used car part css*/

.used-car-part-sec {
	background-image: url(/img/part/banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 13px;
	color: #fff;
	position: relative;
}
.used-car-part-sec:after{
	    content: '';
    position: absolute;
    left: 0;
    top: 0;
    /* bottom: 0; */
    width: 100%;
    height: 100%;
    /* border-radius: 10px; */
    display: inline-block;
    background: linear-gradient(180deg, rgba(9, 24, 103, 0) 0%, rgba(6, 14, 58, 0.8) 100%);
    border-radius: 13px;
}

.used-part-section{
	background-color: var(--bg);
	padding-top: 10px;
	padding-bottom: 20px;
}
.used-part-section > .car-part-rw{
		width: 90%;
	margin: auto;
}


.used-car-part-form {
    border-radius: 6px;
margin: auto;
}

.used-car-part-form input {
    width: 100%;
    padding: 9px;
    outline: 0;
    border-radius: 6px;
    border: 0;
}

.used-car-part-form input {
    width: 100%;
    padding: 9px;
    outline: 0;
    border-radius: 6px;
    border: 0;
}
.used-car-part-form > div{
    width: 100%;
}

.used-car-part-form select {
    width: 100%;
    padding: 9px;
    outline: 0;
    border: 0;
    border-left: 1px solid #333;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
}
.search-form{
	background-image: url(/img/part/used-part.jpg);
	background-size: cover;
	padding: 10px;
	margin:10px auto;
}
.car-part-heading p {
	width: 100%;
	margin-top: 6px;
}
.car-part-heading{
	position: relative;
	z-index: 5;
}
.hed{
	text-align: center;
	margin-bottom: 10px;
}
.search-part{
	text-align: center;
}
.search-part input {
    background-color: var(--primary);
    padding: 9px 62px;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    border: 0px;
}




.pagination {
  display: inline-block;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
}

.pagination a.active {
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
}

.pagination-sec{
	text-align: center;
}
.pagination a:first-child{
	background-color: var(--secondary);
}

.pagination a:last-child{
	background-color: var(--secondary);
}


/*used car part css*/









/*login css*/
.login-page{
	background-image: url(/img/home/login-nw.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 30px;
}

.login-flex{
	display: flex;
	justify-content: space-between;
}
.login-flex > div{
	width: 100%;
}
.login-ryt img {
	width: 100%;
}

.login-form {
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin: auto;
    border-radius: 9px;
}
.logo-img {
    text-align: center;
}

.input-login input {
    width: 100%;
    padding: 5px;
    outline: 0;
}
.input-login span {
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    font-weight: 600;
}

.submit input {
    background-color: var(--primary);
    padding: 9px 23px;
    color: #fff;
    width: 100%;
    border: 0;
    cursor: pointer;
}
.logo-img img {
	width: 60%;
	margin: auto;
}
.input-login{
	margin: 10px auto;
}
.social-login {
    text-align: center;
    margin-bottom: 8px;
    margin-top: 8px;
}

.social-login .fbs {
    background-image: url(/img/home/fb.svg);
    background-repeat: no-repeat;
    background-position: -85px center;
    background-size: 80% 80%;
}

.social-login > a {
    text-decoration: none;
    color: inherit;
    font-size: 0.9em;
    display: inline-block;
    background-color: #e7e7e7;
    border: 1px solid #aab1a9;
    padding: 5px 10px;
    width: 275px;
    border-radius: 3px;
}

.social-login .linkedin {
    background-image: url(/img/home/linkedin.svg);
    background-repeat: no-repeat;
    background-position: -85px center;
    background-size: 80% 80%;
}

.pass-fg{
	margin: 8px auto; 
}
.pass-fg a {
	text-decoration: none;
	color: #333;
}

/*login css*/


/*cart-section*/
.table-crt {
	padding-top: 23px;
	padding-bottom: 23px;
}

.table-cart {
	width: 100%;
	border-collapse: collapse;
}
.table-cart th, .table-cart td{
	padding: 12px;
}
.cart-item-price {
	text-align: center;
}
.cart-item-quantity {
	width: 23%;
}

.table-cart tbody tr {
	background: #fff;
	padding: 12px;
	margin-bottom: 12px;
	padding: 12px;
	border-bottom: 1px solid #ddd;
}

.cart-ch-prcs {
	height: 100px;
}
.cart-continue-shopping a {
	border: 2px dashed var(--primary);
	padding: 7px 23px;
	color: var(--primary);
	text-decoration: none;
}
.cart-process-checkout {
	text-align: center;
}
.cart-process-checkout a {
	background-color: var(--secondary);
	padding: 8px 30px;
	color: #fff;
	text-decoration: none;
}
.cart-section{
	background-color: var(--bg);
	padding: 20px;
}
.cart-prd-img img {
	height: auto;
	max-width: 80px;
}
.cart-prd-img {
	width: 110px;
	height: 50px;
	overflow: hidden;
	margin: 5px;
	margin-left: auto;
}
.cart-prd-remove {
	vertical-align: middle;
	align-self: center;
}
.cart-prd-remove a, .cart-prd-remove button {
	color: #065ba0;
	background-color: transparent;
	border: none;
	cursor: pointer;
}


.cart-section > .table-crt{
	width: 90%;
	margin: auto;
}
.cart-prd-remove form button:after{
	content:'\f00d';
	font-family: var(--fa);
}

.table-cart tr th{
	background-color: var(--primary);
	color: #fff;
}




.table-cart thead{
	display: none;
}

.table-cart, .table-cart tbody, .table-cart tr, .table-cart td{
	display: block;
	width: 100%;
}

.table-cart td{
	text-align: right;
	position: relative;
	border-bottom: 1px solid #cdcdcd;
}
.table-cart td::before{
	content: attr(data-label);
	position: absolute;
	left:0;
	width: 50%;
	padding-left:15px;
	font-size:15px;
	font-weight: bold;
	text-align: left;
}
.cart-mob{
	display: flex !important;
	border-bottom: 0px;
}
/*cart-section*/


/*checkout*/
.checkout-section{
	background-color: var(--bg);
	padding: 20px;
}
.checkout-heading {
	background-color: var(--secondary);
	padding: 9px;
	color: #fff;
	border-radius: 2px;
}
.checkout-flex{
	margin: 20px auto;
}
.checkout-left{
	width: 100%;
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 20px;
	height: 100%;
	margin-bottom: 10px;
}
.hrs{
	border: 0px;
	background-color: #b2aeae;
	height: 1px;
	margin: 10px auto;
}
.checkout-row > div{
	width: 100%;
}
.checkout-row > div input, .checkout-row > div select, .checkout-row > div textarea {
	width: 100%;
	padding: 5px;
	outline: none;
	background-color: #ddd;
	border: 1px solid #d7cece;
	margin: 4px 0px 9px 0px;
}
.checkout-row > div label {
	font-family: var(--rsb);
	font-weight: 900;
	font-size: 14px;
}



.checkbox-custom ~ .shiping-fom {
	display: block;
}
.checkbox-custom:checked ~ .shiping-fom {
	display: none;
}

.checkbox-order-list {
	width: 100%;
	margin: auto;
	background-color: var(--bg);
	border: 1px solid #848080;
	padding: 16px;
}
.order-list {
	margin-bottom: 15px;
}
.order-list li {
	border-bottom: 1px solid #000;
	padding-bottom: 6px;
	padding-top: 6px;
	display: flex;
	justify-content: space-between;
}
.order-list li span:first-child{
	font-weight: 900;
	font-size: 14px;
}
.order-list li strong{
	font-weight: 900;
	font-size: 14px;
}
.item-total, .item-nm{
	text-transform: uppercase;
	font-weight: 900;
}

.checkbox-submits {
	margin-top: 12px;
}
.checkbox-submits input {
	width: 100%;
	background: #fec439;
	outline: none;
	padding: 8px;
	font-size: 19px;
	border: 0px;
	cursor: pointer;
}
.cart-ch-prcs, .cart-ch-prcs td, .cart-mob td {
	border-bottom: 0px !important;
}

/*checkout*/


.chk-rv{
	margin: 10px auto;
}
.chk-rv a {
	color: #000;
	text-decoration: none;
}
.login-req h2{
text-align: center;
margin: 5px auto;
}
#bbl123 {
	position: fixed;
	width: 300px;
	margin: 40vh auto;
	z-index: 10;
	padding: 10px;
	background-color: #4CAF50;
	color: white;
	font-weight: bold;
	text-align: center;
	display: none;
}
.car-brand-banner{
	background-image: url(/img/home/brand.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 50px;
	color: #fff;
}
#bbl123 {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 112;
	background-color: rgba(0,0,0,0.2);
	display: none;
}
#bbl_msg {
	width: 300px;
	margin: 40vh auto;
	text-align: center;
	padding: 10px;
	border-radius: 5px;
	background-color: #4CAF50;
	color: white;
	font-weight: bold;
}

.call-action-head p {
	margin-bottom: 10px;
}

.part-dtls-spc input {
	width: 50px;
    font-size: 1.2em;
    outline: none;
}


#atc_notification {
        width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    position: fixed;
    z-index: 5;
    display: none;
}
.atcn-bx {
	width: 90%;
	position: relative;
	margin: 123px auto;
	background-color: #fff;
	padding: 10px 0px 0px 0px;
}
.atcn-notification-bar {
	color: #000;
	padding: 10px;
}
.atcn-close {
	text-align: center;
    padding: 10px;
    margin-top: 10px;
    position: absolute;
    top: -30px;
    right: -19px;
}
.atcn-close a {
	text-decoration: none;
    background-color: red;
    padding: 4px 7px;
    border-radius: 23px;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
}
.atcn-close a:after{
	content: '\f00d';
	font-family: var(--fa);
}
.btn-cart {
	display: flex;
    justify-content: center;
    background-color: #ddd;
    padding: 15px;
}
.btn-cart a:nth-child(1) {
	background-color: #333;
	padding: 5px 13px;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	font-size: 13px;
}

.btn-cart a:nth-child(2) {
	background-color: var(--info);
	padding: 5px 13px;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	margin-left: 10px;
	font-size: 13px;
}