.brand-list{
	display: block;
    padding: 50px 0;
    background-color: #f6f6f6;
    overflow: hidden;
}
	.brand-list h2.h2{
		text-align: center;
		font-size: 1.8rem;
		margin-bottom: 35px;
	}
	.brand-list .brand-list-items{
		display: inline-flex;
		flex-direction: row;
		align-items: center;
	}
		.brand-list .brand-list-items .brand-list-item{
			margin: 0 10px;
		}
			.brand-list .brand-list-items .brand-list-item .brand-list-item-img{
				max-height: 60px;
				max-width: 200px;
			}
	.brand-nav-container{
		position: absolute;
		width: 100%;
		left: 0;
		display: none;
		cursor: pointer;
	}
	.brand-nav-container > i{
		background-color: rgba(0, 0, 0, .7);
		color: #fff;
	}
	.brand-nav-container > i:hover{
		background-color: rgba(0, 0, 0, .7);
		color: #72a03d;
	}
		.brand-nav-container > i.brand-nav-right{
			float: right;
		}
@media screen and (min-width: 768px){
	.brand-list h2.h2{
		font-size: 1.6rem;
	}
}
@media screen and (min-width: 1200px){
	.brand-list h2.h2{
		font-size: 3rem;
	}
}