@charset "utf-8";

/*layout*/
#wrap{
	width:100%;
	height:100vh;	 
	display: flex;
	flex-direction: column;	
	justify-content:space-between;
}

#fixed-header{
	top: 0;  
	width: 100%;
	height:70px;
    position:fixed;  
    z-index: 100;
    background-color: #fff;
}
.header-wrapper{	
	max-width:2000px;		
	height:100%;
	display: flex;
	justify-content:space-between;
	align-items:center;
	padding: 0 20px;
	margin:0 auto;  
	box-sizing: border-box; 
	box-shadow: 0 2px 2px rgba(0,0,0,.1);
}

#main{ 
	width: 100%;	
	flex: 1;	
	margin-top: 70px;
}
.main-wrapper{
	max-width:2000px;
	margin:0 auto;
	display:flex;	
}


#footer{
	width:100%;		
	flex:0;	 
}
.footer-wrapper{
	max-width:2000px;
	height:100%;	
	margin:0 auto;
	display: flex;
	flex-direction: column;	
}

/*index*/
.header-wrapper .online{
	position: absolute;
	left:50%;
	padding:10px;
	font-size: 20px;
	font-family: Land Rover;
	margin-left: -80px;
}

#main .index_cont{
	max-width:2000px;	
	height:100%;	
	min-height:800px;
	display: flex;
	flex-wrap: nowrap;
	margin:0 auto; 
}
#main .index_cont .cont_img {
	display: flex;
	flex:1;
	justify-content: center;
	align-items: center;
}
#main .index_cont .cont_img:nth-child(1){
	background:url(../images/Range-rover_HOB.jpg)no-repeat;
}
#main .index_cont .cont_img:nth-child(2){
	background:url(../images/Defender_HOB.jpg)no-repeat;
}
#main .index_cont .cont_img:nth-child(3){
	background:url(../images/Discovery_HOB.jpg)no-repeat;
}

#main .index_cont .cont_img .cont_info{
	display: flex;
	flex-direction: column;
	height:120px;
	justify-content: space-between;
	align-items: center;
}
#main .index_cont .cont_img .cont_info img{
	height:24px;
}
#main .index_cont .cont_img .cont_info button{
	width:120px;
}


/*header*/
.header-wrapper .navbar-items{
	display: flex;
}

.header-wrapper .logo{ 
	display: flex;
    height: 100%;
    max-height: 100%;    
    position: relative;
    align-items: center;
    justify-content: center;
}
.header-wrapper .logo a img{	
  	height:47px;
}

.header-wrapper .brand_logo{
	position: absolute;
	left:50%;
	padding:10px;
	margin-left: -86px;
}

.header-wrapper .navbar-items li{	
	padding:10px;
}
.header-wrapper .navbar-items li a{
	display: flex; 
	flex-direction: column;

}
.header-wrapper .navbar-items li span{
	font-size:10px;
	line-height: 13px;
	text-align: center;
}
.header-wrapper .navbar-items li img{
	width:22px; 
	height:22px;
}



/*main-aside*/
.aside-wrapper{ 
	display:flex;
	height: 100%; 
    box-sizing: border-box;		
    width:380px; 
    border-right:1px solid var(--gray4);    
    padding-left:40px;  
    padding-top: 23px;

}
.aside-list{	
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    align-content: flex-start;
    height: 100%; 
}	
.menu_group{
	width:100%;
	margin-bottom: 20px;
	font-family: Land Rover Web,Arial,Helvetica,sans-serif;
}	
.menu_group h4{
	font-size:16px;
	font-weight: bold;
	margin-bottom: 4px;
	color:var(--black);
}
.menu_group li{
	padding:3px 0;
	font-size:15px;
	line-height:1.2rem;
	display: flex; 
	align-items: flex-start;
	color:var(--gray1);  
}
.menu_group:first-child{
	border-right:3px solid var(--gray3);
}
.menu_group .icon_spec{
	display: flex;
	justify-content: flex-start;
}
.menu_group .icon_spec li{
	display:flex;
	justify-content: center;
	width:40%;
	margin:30px 0;
}
.menu_group .icon_spec li:first-child{
	border-right: 1px solid var(--gray3);
}
.menu_group .icon_spec li a{ 
	dispaly:flex;
	flex-direction: column;
	text-align: center;
	font-size:11px;
}
.menu_group .icon_spec li img{
	width:25px;
}
.menu_group button.btn_black{
		display:none;
	}

.color_sample ul li{  float:left; width:50px; height:50px;margin: 5px 8px 6px 0;padding:3px;border:2px solid rgba(0,0,0,0);cursor: pointer; box-sizing: border-box;  border-radius:50%;}
.color_sample ul li.on{width:50px; height:50px;margin-top:5px;border:2px solid #005a2b;padding:3px; box-sizing: border-box; border-radius:50%;}
.color_sample ul li img{width:40px; height:40px; border-radius: 50%; }

/*main-section*/
.products-wrapper{			
	flex:1;			
	display: flex;
	flex-direction: column;				
	padding:0;
}
.products-head{
	height:120px;
	background: var(--white);
	z-index: 99;
	display: flex; 
	justify-content: space-between;
	align-items: center;	
	padding:0 80px 0 20px;
	box-sizing: border-box;
}
.products-head .filter_result{
	font-size:18px;
	font-weight:bold;
	font-family: Land Rover Web,Arial,Helvetica,sans-serif;
}
.products-head .select_bar .filters{
	display: none;
}
.products-head .select_box{ 
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.products-head .select_box span{ 
	padding-right:10px;
}
.products-head .select_box .model_select{
	width:200px;
}
.products-list{				
	display:flex;
	flex-wrap: wrap;   			
	min-height: 800px;		
	padding-bottom:50px;
	box-sizing: border-box;	
}
.filter_toggleBtn{
	display: none;
}

.products{ 
	flex: 0 0 100%;
    min-width: 100%;
    padding:20px;
    box-sizing: border-box;
}
.products_box{
	width:100%;
	height:100%;
	background-color: #fff;   
    margin: 0 auto;
    box-shadow: 3px 4px 12px 0 rgba(0,0,0,.05), 0 0 1px 0 rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;   
    position: relative;
    transition: background-color .3s;
	
}
.products_box img{
	width:100%;
}
.products_box .products_cont{
	padding:20px 0 10px 25px;
}
.products_box .products_cont .title{	
	font-size:18px;	
	font-family: Land Rover Web Bold,Arial,Helvetica,sans-serif;
	line-height: 1.2rem;
	padding:5px 0;
}

.products_box .products_cont .title a { 
	width:100px;
	font-size:11px;	
	display: flex;
	flex-direction: column;	
	text-align: center;
}
.products_box .products_cont .title a img{
	width:22px;
}

.products_box .products_cont .car_price{
	display: flex;

}
.products_box .products_cont .car_price span{
	width:50%;
}
.products_box .products_cont .car_price span:first-child{
	font-weight:bold;
}
.products_box .products_cont .car_info{	
	padding:10px 0;
}
.products_box .products_cont .car_info li{
	display: flex;
	padding:3px 0;
}
.products_box .products_cont .car_info li span{
	width:50%;
}

.products_box .products_cont .car_info li span:first-child{
	font-family: Land Rover Web Bold,Arial,Helvetica,sans-serif;
	font-size:16px;
	font-weight:bold;
}
.products_box .products_cont .car_info li span:last-child{
	color:var(--gray1);
}
.products_bt{ 
	display: flex;
	justify-content: flex-end;
	padding:15px 30px;
}
.products_bt button{
	padding:15px 25px; 	
}

/*footer*/
.footer_menu, .footer_link,.footer_dealer,.footer_copy{
	width:100%;	
	padding:20px 40px;	
	box-sizing: border-box;
}
.footer_menu, .footer_link{
	display:flex;
}
.footer_dealer{

}
.footer_copy{
	flex-direction: column;
	justify-content: flex-start;
}
.footer_copy p{
	width:100%;
	padding:4px 0;
}
.footer_menu{	
	background:var(--gray1);
}
.footer_menu a{
	margin-right: 20px;
	color:var(--gray4);
}

.footer_link,.footer_dealer{		
	border-bottom:1px solid var(--gray4);
}
.footer_link a{
	margin-right: 20px;
}
.footer_dealer{width:100%; padding-bottom:20px;}
.footer_dealer h4{font-size:14px; font-weight: bold;}

table.dealer_info { width:96%; margin:0 auto;}
table.dealer_info th{font-size:12px; font-weight: bold; line-height: 30px;}
table.dealer_info td{font-size:11px; color:#777; }
table.dealer_info td,table.dealer_info th{padding:3px 8px; text-align: left; }   

.m_deal_info{display:none;}
.list_box{position: relative;}
.list_box span{position: absolute; top:-20px; right:0;width:20px;height:20px;background: #666;  font-size:14px; font-weight: 800; color:#fff;text-align: center;}
.hide{display:none;}
.show{display: block;}
.more{position:absolute; top:-20px; right:0; width:20px;  height:20px; cursor: pointer; z-index: 999;}


/*모바일-테블릿*/
@media screen and (max-width: 1024px){
	.header-wrapper .online{		
		padding:8px;
		font-size: 16px;		
		margin-left: -65px;
	}

	#main{			
		margin-top: 90px;
	}

	#main .index_cont{
		width:100%;	
		height:100%;	
		min-height:600px;
		flex-direction: column;
		}
	
	#main .index_cont .cont_img .cont_info{
		display: flex;
		flex-direction: column;
		height:100px;
		justify-content: space-between;
		align-items: center;
	}
	
	.main-wrapper{
		width:100%; 		
	}
	#fixed-header{
		height:90px;  
	}
	.header-wrapper{
		width:100%;	
		margin:0;		
		justify-content:flex-start;	
		flex-direction: column;	
		padding:0;
	}
	.header-wrapper .logo{ 		
		width:100%;	 
		height:34px;
		padding:4px 0;  	  
	    justify-content: flex-start;
	    border-bottom: 1px solid var(--gray4);
	}
	.header-wrapper .logo a img{	
	  	height:1.5pc;
	  	margin-left: 20px;
		}
	.header-wrapper .navbar-items{
		width:100%;
		height:56px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		padding-right:20px;
	}
	.header-wrapper .navbar-items li{	
		padding:0 5px; 
	}
	.aside-wrapper{
		width:100%;
		height:90%;		
		position: fixed;
		left:0;
		top:144px;
		padding:0;
		background: var(--white);
		z-index: 1000;
		display:none;
	}
	.aside-list{	
	    height: 100%; 
	    padding:30px 30px 100px 30px;
	    overflow: scroll;
	    box-sizing: border-box;
	}
	.menu_group:first-child{
		border-right:0;
	}	
	.menu_group button.btn_black{
		display:block;
		width:100%;
	}
	.products-wrapper{		
		width:100%;		
	}
	.products-head{ 
		position: relative;
		height:40px;	
		padding:0;
		margin-bottom: 50px;
		background: var(--black);
		box-sizing: border-box;			
	}
	.products-head .filter_result{ 
		width:100%;
		height:100%;
		padding-left: 20px;
		margin-top: 130px;
		align-items: center; 
		box-sizing: border-box;
		
	}
	.products-head .select_bar{ 
		position: fixed;
		left:0; 
		top:90px; 
		width:100%;
		height:54px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: var(--gray4);
		
	}
	.products-head .select_bar .select_box{
		margin-left: 20px;		
	}
	.products-head .select_box .model_select{
		width:120px;
	}
	.filter_toggleBtn{		
		display: block;		
	}
	.aside-wrapper.active{
		display:flex;
	}
	.products-head .select_bar .filters{
		height:100%;
		display:block;
		display: flex;
		align-items: center;
		margin-right: 20px;		
	}
	.products-head .select_bar .filters img{
		width:26px;
	}
	.products-head .select_bar .filters span{
		margin-left: 5px;
	}
	.dealer_info{
		display:none;
	}
	.m_deal_info{
		font-size:12px;
		display:block;
	}
	.footer-wrapper{
		width:100%;
	}	
	
	.footer_menu, .footer_link,.footer_copy{
		font-size:12px;
		display:flex;
		flex-wrap: wrap;
		line-height: 1.2rem;
		
	}
	.footer_menu, .footer_link,.footer_dealer,.footer_copy{
		padding:16px 20px;	
	}
	.footer_link{
		align-self:flex-end;
	}


	
}

@media screen and (max-width: 1400px){
	#main .index_cont .cont_img .cont_info img{
	height:12px;
	}
}
@media screen and (min-width: 740px){
	.products-wrapper{
		padding:0 20px;
	}
	.products {
	    flex: 0 0 50%;
	    min-width: 50%;
	}	
	
}

@media screen and (min-width: 1600px){
	.products-wrapper{
		padding:0 20px;
	}
	.products {
	    flex: 0 0 33.333333%;
	    min-width: 33.333333%;
	}
	
}


