/******** 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;
	filter: drop-shadow(0px 0px 20px rgba(0,0,0, 0.5));

 }

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%;
	
}

/************SECCIÓN TRABAJOS************/

#trabajosSeccion{
	height: 130vh;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

#trabajosContainer{
	height: 85%;
	width: 70%;
	display: flex;
	flex-direction: column;
}

.trabajosFila{
	height: 45%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

.trabajoIndividual{
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow:hidden;
}

.trabajoIndividual h3{
	margin-top: 10px;
	font-size: 25px;
	font-weight: 500;
	
}

.trabajoIndividual img{
	width: 350px;
}


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




footer div{
    width: 100%;
    height: 200px;
    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;
}



@media (max-width: 1550px) {
  .trabajoIndividual img {
    width: 200px;
  }
