@charset "utf-8";

/***************************************************************************
*
* INDEX STYLE
*
***************************************************************************/
#header .headerTop .mainMenu {
    min-height: 5vw;
}

#header .headerTop .social{
	margin-top: 60px;
}

#content .wrapContent .pageTitle{
	margin-right: 13px;
}

.dealersContent{
	background: #d0d2c6;
}
.dealersContent li{
	width: calc(100% / 2 - 13px);
	float: left;
	margin-right: 13px;
	margin-bottom: 13px;
}
.dealersContent li:nth-child(2n){
	margin-right: 0;
}
.dealersContent li a{
	position: relative;
	display: block;

}
.dealersContent li a:after{
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, 0);
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transition: all 0.3s;

}
.dealersContent li a:hover:after{
	background: rgba(255, 255, 255,.4);
}

@media(max-width: 768px){
	#content .wrapContent .pageTitle{
		margin-right: 0;
	}
	#header .headerTop .social li{
		width: 30px;
	}
	#header .headerTop .social{
		width: 88px;
	}
	#header .headerTop .mainMenuSmall{
		margin-left: 0;
	}
	#content .mainContent{
		width: 100%;
		transform: none;
	}
	.dealersContent li{
		width: 100%;
		margin-right: 3%;
		margin-bottom: 3%;
	}
}