

h1{
	text-align: center;
	font-weight: bold;
	color: #000;
	line-height: 1.5em;
	font-size: 30px;
	padding-top: 60px;
	margin-bottom: 1em;
}

.brand-list{
	width: calc(345px * 3);
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
.brand-list--two {
    justify-content: center;
}
.brand-item{
	position: relative;
	width: 345px;
	margin-bottom: 35px;
	
}

.brand-item-product{
	border-right: 1px solid #bdbdbd;
	height: 220px;
	padding-top: 24px;
}
.brand-item:nth-child(3n) .brand-item-product,.brand-item:last-child .brand-item-product{
	border-right: none;
}
.brand-item-product-name{
	position: relative;
	font-size: 16px;
	color: #000;
	width: fit-content;
	margin: 0 auto;
	text-align: center;
	line-height: 1em;
	margin-bottom: 1em;
}
.brand-item-product-name:before{
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	background: url('../images/brands/arrow.svg') center center no-repeat;
	background-size: contain;
	left: 0;
	top: 50%;
	transform: translate(-150%,-50%);

}
.brand-item-product-img{
	width: 150px;
	margin: 0 auto;
}
.brand-item-product-img img{
	width: 100%;
	height: auto;
}
.brand-item .btns{
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.brand-item .btns a{
	width: 166px;
	height: 42px;
	border: 1px solid #f00301;
	border-radius: 21px;
	line-height: 40px;
	text-align: center;
	color: #f00301;
	margin-bottom: 10px;
	transition: all 0.3s ease-out;
}

.brand-item .btns a:hover{
	background: #f00301;
	color: #fff;
}

@media (max-width: 1100px) {
	.brand-list{
		width: 100%;
	}
	.brand-item{
		width: 33.33333%;
	}
}



@media (max-width: 800px) {
	#main{
		padding-bottom: 28vw;
	}
	.brand-list{
		padding: 0 5.333vw;
	}.brand-item{
		width: 50%;
		margin-bottom: 10vw;
	}
	.brand-item-product,.brand-item:nth-child(3n){
		border-right: 1px solid #bdbdbd;
		height: 33.6vw;
		padding-top: 0px;
	}
	.brand-item:nth-child(2n) .brand-item-product,.brand-item:last-child .brand-item-product{
		border-right: none;
	}
	
	
	.brand-item-product-name{
		font-size: 3.46667vw;
		margin-bottom: .5em;
	}

	.brand-item-product-name:before{
		width: 3.1vw;
		height: 3.1vw;
	}
	.brand-item-product-img{
		width: 26.4vw;
	}
	.brand-item .btns a{
		width: 28.933vw;
		height: 7.2vw;
		border: 1px solid #f00301;
		border-radius: 3.6vw;
		line-height: 7.2vw;
		color: #f00301;
		margin-bottom: 1.6vw;
		font-size: 3.2vw;
	}

	.brand-item:last-child{
		border-right: none;
	}
}