@charset "UTF-8";



.world_bg_container{
	width:100%;
	height:100%;
	position:absolute;
	top:0%;
	left:0%;
	overflow:hidden;
	
}
.world_bg{
	background:url(../images/world_brands.jpg) no-repeat;
	background-size:cover;
	width:800px;
	height:800px;
	position:absolute;
	top:260px;
	left:50%;
	margin-left:-400px;
 -webkit-animation: rotating 200s linear infinite;
  -moz-animation: rotating 200s linear infinite;
  -ms-animation: rotating 200s linear infinite;
  -o-animation: rotating 200s linear infinite;
  animation: rotating 200s linear infinite;
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.brands{
	padding-top:100px;
	padding-bottom:50px;
	height:100vh;
	display:flex;
	flex-direction:column;
}
.show_all_brands .brands{
	height:auto;
	padding-bottom:200px;
}
.brands_list{
	display:flex;
	flex-wrap: wrap;
}
.brand_list_item{
	position:relative;
	font-size:11px;
	width:20%;
	min-height:55px;
	margin-bottom:20px;
}
.brand_list_item p{
	margin-bottom:0;
}
.brand_list_item_h{
	padding-right:15px;
	min-height:130px;
}
h4.brand_name{
	font-size:15px;
	color:#d6b074!important;
	font-weight:bold;
	text-transform:none;
	margin-bottom:0px;
}
.deco_dot{
	position:absolute;
	width:10px;
	height:10px;
	border:2px solid #d6b074!important;
	border-radius:5px;
	left:-15px;
	top:3px;
	display:none;
}
.image_logo{
	background-position:left bottom;
	background-repeat:no-repeat;
	background-size:contain;
	width:100%;
	height:70px;
	margin-bottom:10px;
}
.brand_list_item.hidden_filter{
	display:none;
}



.brand_filters{
	font-size:13px;
	font-weight:500;
	text-transform:uppercase;
	font-family:"Montserrat", sans-serif;
	display:flex;
	margin:20px 0 70px;
}
.brand_filter{
	display:inline-block;
	padding:5px 0;
	cursor:pointer;
	margin-right:25px;
	transition:color .3s;
}
.brand_filter.current_filter{
	color:#d6b074;
}




.brands_list_container{
	overflow:hidden;
	position:relative;
	flex-grow:1;
	padding-left: 30px;
	margin-left: -30px;
}
.brands_list_container_fade{
	height:20vh;
	width:100%;
	position:absolute;
	left:0;
	bottom:0;
	transition:all 0.5s;
	cursor:pointer;
	background: -moz-linear-gradient(top, rgba(52,60,106,0) 0%, rgba(52,60,106,1) 80%, rgba(52,60,106,1) 100%);
	background: -webkit-linear-gradient(top, rgba(52,60,106,0) 0%,rgba(52,60,106,1) 80%,rgba(52,60,106,1) 100%);
	background: linear-gradient(to bottom, rgba(52,60,106,0) 0%,rgba(52,60,106,1) 80%,rgba(52,60,106,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00343c6a', endColorstr='#343c6a',GradientType=0 );
	
}
.brands_list_container_fade .labels{
	text-align:center;
	color:#d6b074;
	width:100%;
	display:block;
	position:absolute;
	bottom:20px;
	opacity:0;
	transition:all .5s;
	text-transform:uppercase;
	font-size:12px;
	letter-spacing:.1em;
}
.brands_list_container_fade:hover .labels{
	opacity:1;
}
.brands_list_container_fade .labels>span{
	text-align:center;

	width:100%;
	display:block;
	position:absolute;
	bottom:0;
	left:0;
	transition:all .5s;
}
.brands_list_container_fade .expand{
	opacity:1;
}
.brands_list_container_fade .shrink{
	opacity:0;
}
.show_all_brands .brands_list_container_fade .shrink{
	opacity:1;
}
.show_all_brands .brands_list_container_fade .expand{
	opacity:0;
}
.show_all_brands .brands_list_container_fade{
	/*background:rgba(52,60,106,0);*/
	height:50px;
}

@media (max-width: 1400px) {
	.brand_list_item {
		font-size: 11px;
		width:25%;
	}
	h4.brand_name{
		font-size:15px;
	}


}
@media (max-width: 1280px) {
	.brands_list_container_fade .labels{
		opacity:1;
	}


}
@media (max-width: 900px) {
	.brand_filters {
		font-size: 11px;
	}
	.brand_list_item {
		width:33.333%;
	}
	
	h4.brand_name{
		font-size:13px;
	}
}

@media (max-width: 767px) {
	.brand_filters{
		flex-wrap:wrap;
		font-size:10px;
		margin: 0;
		padding: 20px 0 40px;
		display:block;
	}
	.brand_filter{
		margin-right:15px;
	}
	.brand_list_item {
		width:50%;
	}
	
	
}

