.section{
	padding: 0px 0px 100px;
}
.section .section-header{
	padding: 150px 20px;
}
.section .section-header .section-header-container{
	max-width: 500px;
}
.section .section-header .section-header-container .section-header-actions{
	display:flex;
	flex-wrap: wrap;
	margin-top:40px;
}
.section .section-header .section-header-container .section-header-actions a{
	margin-left:15px;
}
.section .section-header .section-header-container .section-header-actions a:first-child{
	margin-left:0px;
}
.section .section-content{
	padding:50px 20px 0px;
}

.section .section-others{
	background:#f7f7f7;
	padding:100px 20px;
}
.section .section-others .container{
	overflow:visible;
}
.section .section-others .section .section-others-descripcion{
	font-size:18px;
}
.section .section-others ul{
	list-style: none;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-evenly;
}
.section .section-others ul li{
	width: calc(33.33% - 20px);
	background: #fff;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
	box-sizing: border-box;
	font-size:14px;
	transition:.2s all ease-in;
}
.section .section-others ul li:hover{
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.section .section-others ul li a{
	padding: 30px;
	display:block;
}
.section .section-others ul li i{
	font-size: 80px;
    margin-bottom: 20px;
    color: var(--color-01);
    width: 80px;
    height: 80px;
    text-align: center;
	overflow: hidden;
	display: block;
}
.section .section-others ul li i img{
	width: 100%;
    height: auto;
}
.section .section-others ul li strong{
	display:block;
	position:relative;
	padding-bottom:15px;
	margin-bottom:15px;
}
.section .section-others ul li strong::before{
	content:"";
	position:absolute;
	height: 3px;
	width: 80px;
	background-color: var(--color-01);
	bottom:0;
}
.section .section-brands{
	padding:50px 20px 0px;
}
.section .section-gallery{
	padding:50px 20px 0px;
}


@media all and (max-width: 900px){
	.section .section-others ul li{
		width: 70%;
		margin:30px auto 0px;
	}
	.section .section-others ul li:first-child{
		margin-top:0px;
	}
}
@media all and (max-width: 600px){
	.section .section-others ul li{
		width: 100%;
	}
}