*{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Oswald', sans-serif;
 text-decoration:none;
}

header{

  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;

}

.logo img{

  width: 395px;
  
}

.header__superior{
max-width: 1200px;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px;
position: relative;
}



.container__menu{
  width: 100%;
  height: 70px;
  background: orange;
  position: fixed;
  top: 87px;
  padding: 0px 20px;
  
}


.menu{
 max-width: 1200px;
 margin: auto;
 height: 100%;
}

nav{
 height: 100%;
}

nav > ul{

  height: 100;
  display: flex;

}

nav ul li{

  height: 100;
  list-style: none;
  position: relative;

} 

nav > ul >li:first-child>a{

  background-image: url(imagenes/home.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 40px 40px;
}

nav > ul >li:first-child:hover>a{

  background-image: url(imagenes/home.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}

nav > ul >li>a{

  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 14px;
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 300ms ease;

} 

nav > ul >li>a:hover{
  transform: scale(1.1);
  background-color: rgb(211, 157, 56); ;
  box-shadow: 0px 0px 10px 0px rgb(0,0,0,0.5);
}

nav ul li ul{

  width: 200px;
  display: flex;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 90px;
  left: -5px;
  padding: 14px 0px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 10px 0px rgb(0,0,0,0.5);
  z-index: 10;
  transition: all 300ms ease;
}

nav ul li:hover ul{
 visibility: visible;
 opacity: 1;
 top: 70px;
}

nav ul li ul:hover ul{
  visibility: visible;
  display: block;
  opacity: 1;
  top: 70px;
}

nav ul li ul:before{

  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
  position: absolute;
  top: -12px;
  left: 20px;

}

nav ul li ul li a{

  display: block;
  color: black;
  padding: 6px;
  padding-left: 14px;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 300ms ease;
}

nav ul li ul li a:hover{

  background:orange ;
  color:white;
  transform: scale(1.1);
  padding-left: 30px;
  font-size: 14px;
  box-shadow: 0px 0px 10px 0px rgb(0,0,0,0.5);
}

main{

  background: gray;
  padding: 60px 20px;
  margin: 50px;
  margin-top: 195px;
}

article{
 max-width: 1200px;
 margin: 80px ;
 margin-top: 20px;
 padding: 40px;
 

}

article p{

  margin-top: 30px;
  font-size: 18px;
  font-weight: 300;
  margin-left: 10;
  
}

.enlaces ul li{

  width: 200px;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 14px 0px;

}

.enlaces ul li a {

  display: block;
  color: black;
  padding: 6px;
  padding-left: 14px;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 300ms ease;
}

.enlaces ul li a:hover{

  background:orange ;
  color:white;
  transform: scale(1.1);
  padding-left: 30px;
  font-size: 14px;
  box-shadow: 0px 0px 10px 0px rgb(0,0,0,0.5);
}

.enlaces>li>a{

  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 14px;
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 300ms ease;

} 















