body{
  font-family: Arial;
}

header.main-header{
  width:100%;
  height:65px;
  background-color:#ccc;
  background-color: #f9f9f9;
  border-top: #0288D1 3px solid;
  box-shadow: 0 1px 3px #dcdcdcbd;
}

header.main-header>.container{
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  height: 100%;
  line-height: 65px;
  align-items: center;
  justify-content: center;
}

header.main-header .logo{
  height: 100%;
  display: flex;
  align-items: center;
  vertical-align: middle;
  cursor: pointer;
}

header.main-header nav{
  max-width:60%;
  height:100%;
}

.logo img{
  height:80%;
}

header.main-header nav>ul{
  display: flex;
  list-style-type: none;
  font-size: .9em;
  padding: 0 25px;
  margin: 0;
}

header.main-header nav>ul>li{
  text-align: center;
  margin: 0;
  padding: 0 10px;
  transition: .15s all ease-in-out;
}

header.main-header nav>ul>li a{
  color:#757575;
  height: 100%;
  display: inline-block;
}

header.main-header nav>ul>li:hover{
  background-color:#dcdcdc21;
}
header.main-header nav>ul>li:hover a{
  text-decoration: none;
  color: #000;
}

header.main-header nav.user-menu{
  margin: 0 20px;
}

header.main-header nav.user-menu>ul{
  padding:0;
  margin:0;
}

header.main-header nav.user-menu>ul li{
  padding: 0 10px;
}

.search{
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}

.search input[type=text]{
    height: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 0;
    width:100%;
    border: 1px solid #c8ccd0;
    box-shadow: inset 0 0 1px rgba(145,153,161,0.2), 0 0 0 rgba(255,255,255,0);
    transition: .3s all ease-in-out;
  }
.search input[type=text]:focus{
  border-color: #0095ff;
      box-shadow: inset 0 0 4px #eff0f1, 0 0 5px rgba(0,149,255,0.5);
      outline: 0;
}

main .container{
  max-width: 1300px;
  margin: 0 auto;
}

a{
  text-decoration: none;
  color:#0288D1;
}

section.container{
      display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: space-around;
}

section.container article{
  flex: 1 0 31%; 
}

section.container article figure{
  height:80px;
  overflow: hidden;
}

section.container article img{
  width:100%;
}

section.container h2{
  margin-left: 40px;
}

.loader {
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  text-align: center;
  background-color: #79cdff33;
}

.loader-icon {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
}

.modal{
  position: fixed;
    top: 100%;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    visibility: hidden;
}

#resultado{
    width: 1300px;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    color: #0288D1;
    background-color: #ffffffbf;
    padding: 4vh;
    font-weight: bold;
    font-size: 1.3rem;
}

#resultado a{
  width: 100%;
    display: inline-block;
    padding: 10px;
    font-weight: bolder;
    font-size: 1.7rem;
}

footer a{
      width: 1300px;
    margin: 0 auto;
    display: block;
    margin-top: 5vh;
    text-align: center;
}