/* ===================================
1. General
==================================== */

body{
	background-color: gray;
	margin:0px 0px;
}

.contenedor-1{
	background-color: white;
	display: inline-block;
	height: 100%;
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 49.8%;
}

.contenedor-2{
	background-color: white;
	display: inline-block;
	height: 100%;
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 50%;
	float: right;
}

.contenedor-ppal{
	background-color: #fff;
	display: inline-block;
	padding: 0px;
	width: 100%;
	height: 100%;
}

.contenedor-submarcas{
	background-color: #fff;
	border-bottom: solid 1px #CFCFCF;
	border-left: solid 1px #CFCFCF;
	display: inline-block;
	float: right;
	height: 33.3%;
	width: 99%;
}

.contenedor-submarcas:last-child{
	border-bottom: solid 0px #CFCFCF;
}


.logos{
	filter:  alpha(opacity=0);
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	position: relative;
	top: 20%;
	vertical-align: middle;
}

.logos-2{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 35%;
	vertical-align: middle;
	display: inline-block;
}

.logos-2 img{
	transition: width 0.5s, height 0.5s, transform 0.5s;
    -moz-transition: width 0.5s, height 0.5s, -moz-transform 0.5s;
    -webkit-transition: width 0.5s, height 0.5s, -webkit-transform 0.5s;
    -o-transition: width 0.5s, height 0.5s,-o-transform 0.5s;
}

.logos-2 img:hover{
	transform : scale(0.9);
    -moz-transform : scale(0.9);      /* Firefox */
    -webkit-transform : scale(0.9);   /* Chrome - Safari */
    -o-transform : scale(0.9);        /* Opera */
}
    
.logos-2 > span{
	display: block;
	margin-top: 20px;
}

.logos-2 > span a{
	border: solid 1px #fff;
	color: #fff;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 14px;
	padding: 8px 15px;
	text-decoration: none;
}

.logos-2 > span a:hover{
	background-color: #003A6D;
	border: solid 3px #fff;
	font-size: 14px;
}

.logos-3{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 28%;
	vertical-align: middle;
	display: inline-block;
}

.titulo-logos{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 37%;
	vertical-align: middle;
}


h1{
	color: gray;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 18px;
	position: relative;
}

h2{
	color: white;
	font-family: "Open Sans",Arial,sans-serif;
	font-size: 14px;
	position: relative;
}
	
/* =============================
21. Media queries 
============================= */

/* @media (max-width: 1100px)*/
@media (max-width: 1100px) {

	.logos > img{
		width: 80%;
	}

	.logos-2 img{
		width: 80%;
	}
}


/* @media (max-width: 760px)*/
@media (max-width: 760px) {

	.contenedor{
		background-color: white;
		display: block;
		height: 50%;
		position: relative;
		text-align: center;
		width: 100%;
	}
	
	.contenedor-submarcas{
		width: 100%;
	}
	
	.contenedor-submarcas-2{
		border-left: 0px solid rgb(250, 250, 250);
		width: 100%;
	}
	
	.contenedor-1{
		height: 40%;
		width: 100%;
	}

	.contenedor-2{
		height: 60%;
		width: 100%;
	}
	
	.logos{
		height: 50%;
		width: 50%;
	}

	.logos-2{
		top: 26%;
	}

	.logos-2 img{
		width: 65%;
	}
	
	.titulo-logos{
		display: none;
	}
}


/* @media (max-width: 665px)*/
@media (max-width: 665px) {
	.logos > img {
	    width: 100%;
	}

	.logos{
		top: 26%;
	    width: 60%;
	}
}