*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans';
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.contenedor{
    padding: 60px 0;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

.titulo{
    color: aqua;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

/* header */

header{
    width: 100%;
    height:600px;
    background: #74ebd5;  /* fallback for old browsers */
    background: linear-gradient(to right, #acb6e5ce, #74ebd5c4), url(../img/carrusel/carrusel3.jpg);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #acb6e5ce, #74ebd5c4), url(../img/carrusel/carrusel3.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

nav{
    text-align: right;
    padding:30px 50px 0 0;
} 

nav > a {
    color: black;
    font-weight: 300;
    text-decoration: none;
    margin-right: 10px;
}

nav > a:hover {
    color: black;
    font-weight: 300;
    text-decoration: underline;
    margin-right: 10px;
}

header .textos-header{
    display: flex;
    height: 430px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.textos-header h1{
    font-size: 40px;
    color:black;
    
}

.textos-header h2{
    font-size: 25px;
    font-weight: 300;
    color:black;
    
}

.wave{
    position: absolute;
    bottom: 0;
    width: 100%;
    border: none;
}

/* acercade */
.contenedor-acercade{
    display: flex;
    justify-content:space-evenly ;
}

.imgacercade{
    width: 48%;
}

.contenido-textos{
    width: 48%;
}

.clientes-felices{
    background:white;
}

.galeria-port{
    display: flex;
    justify-content:space-evenly ;
    flex-wrap: wrap;
}

.imagen-port{
    width: 24%;
    height: 300px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgb(0, 0, 0, .5);
}

.imagen-port > img{
    width: 100%;
    height: 100%;
    object-fit: conver;
    display: block;
}

.celulares{
    background: white;
}

.cards{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card{
    width: 24%;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgb(0, 0, 0, .5);
    padding-left: 10px;
}

.card > img {
    width: 100%;
    height:60%;
    display: block;
}

.contenido-texto-card > p{ 
    font-size:11px;
}

.acerca-de-nosotros{
    margin-top: 100px;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
	margin-top:16px;
}

footer{
    padding: 1vh;
    width: 100%;
    background:cadetblue;
    color:black;
}

.container-all{
    width: 100%;
    max-width: 1200px;
    margin-left: 5px;
}

.container-body{
    display: flex;
}

.column{
    max-width: 400px;
}

.column > h1{
    font-size: 22px;
}

.row{
    margin-top: 5px;
    display: flex;
}
 .row img{
    width: 14px;
    height: 14px;
    margin-top: 3px;
 }

 .row label{
    margin-left: 5px;
    padding-top: 0px;
}

.row a{
    color: white;
    
}

.copyright{
    margin: auto;
    max-width: 250px;
}

.copyright a{
    color: black;
    text-decoration: none;
}

.column a{
    color: black;
    text-decoration: black;
    margin-left: 5px;
}


.btnconsultar{
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    background-color: #1883ba;
    border-radius: 6px;
    margin: auto;
    display: flex;
    margin-top: 10px;
  }
