/******** GENERAL *******/

*{
    margin: 0px;
    padding: 0px;
}


html{
 
    box-sizing: border-box;
    font-family: Raleway, sans-serif;
}

a{
	color: inherit;
	text-decoration: inherit;
}

/******** NAVEGACIÓN ********/

nav{
	width: 100%;
	height: 80px;
	display: flex;
	position:fixed;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
    position: absolute;
    z-index: 2;
	color: white;
	 text-shadow: 0px 0px 15px rgba(0,0,0, 0.9);
}

nav h1{
	margin-left: 8%;
	font-size: 35px;
	font-weight: 400;
	text-shadow: 0px 0px 15px rgba(0,0,0, 0.1);
}

ul{
	display:flex;  
  	list-style:none;
	margin-right: 8%;
	height: 100%;
}

nav li{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	width: 110px;
	height: 100%;
	font-size: 22px;
	font-weight: 400;
	cursor: pointer;

	
}

.trabaj{
	transition: 0.2s background-color;

}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  /*background-color: #f9f9f9;*/
  min-width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  margin-left: 20px;
  z-index: 1;
}

.dropdown li{
	cursor: pointer;
}

.dropdown-content p {
  color: white;
  padding: 20px 16px;
  text-decoration: none;
  display: block;
}


.dropdown:hover .dropdown-content {
  display: block;

}

.dropdown-content p:hover {background-color: rgba(55,150,170,0.75)}

.dropdown:hover .trabaj  {
	background-color:rgba(55,150,170,0.4);
	color:#ADDAE4;
}

nav ul li a:hover {
	color: #ADDAE4;
}

  /********* CABECERA *********/

header{
    /*background-color: black;*/
    position: relative;
    height: 30vh;
    overflow: hidden;

 }

header #bg{
    position: absolute;
    height: 100%;
	width: 100%;
    background-image: url("../img/fondomain.png");
    background-size:cover;
    background-repeat: no-repeat;
    background-position: 50%;
    overflow: hidden;
    background-attachment: fixed;
	
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;

    
}


header h1{
	font-weight: 700;
	color: White;
	font-family: Raleway;
	font-size: 75px;
	text-shadow: 0px 0px 15px rgba(0,0,0, 0.7);
	text-align: end;
	padding-right: 8%;
	
}


/**********SECCION CLIENTES***********/


#clientes{
    width: 100%;
    height: 550px;
    background-color: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}


#clienteContainer{
    width: 85%;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.filaClientes {
 
    display: flex;
    justify-content: space-between;
    
    
}




.clienteInd h1{
    margin-bottom: 10px;
    font-size: 22px;
}

.clienteInd h2{
    font-size: 25px;

    margin-top: 10px;
}




.clienteInd p{
    font-size:13px;
    font-weight: 100;
}

.clienteInd em{
    font-style: normal;
    color: #ed1e27;
    font-weight:800;
}

.clienteInd del{
    opacity: 0.3;
}

.clienteInd{
  
    width: 31%;
    color: white;
    display: flex;
    align-items: center;
    transition: 0.5s;
	
     
}

.imagenCliente{
    margin-right: 20px;
   filter: grayscale(100);
    transition: 0.5s;
    border-radius: 2px;
	width: 180px;
}

.clienteInd:hover{

   transform: scale(1.1);
}

.clienteInd:hover > .imagenCliente {
    filter: none;
}





/************FOOTER************/




footer div{
    width: 100%;
    height: 180px;
    background-color:#0c0c0c;
    display:flex;
    justify-content: center;
    align-items:flex-end;
  
}

footer i{
    color: white;
    font-size: 35px;
    margin: 20px;
    margin-bottom: 30px;
    opacity: 0.7;
    transition:  opacity 0.2s, font-size 0.5s, color 0.2s;
    
}

footer i:hover{
    opacity: 1;
    font-size: 40px;
    color: #3796AA;
}

