html {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}

header {
    margin: 3% auto;
    border-bottom: solid 2px black;
    display: table;
}

.wrap {
    max-width: 1024px;
}

a:link,
a:visited {
    color: black;
    text-decoration: none;
    cursor: auto;
}

a:link:active,
a:visited:active {
    color: black
}

.title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-between;
}

.title > img {
    display: inline-block;
    min-width: 15%;
    height: auto;
}

.title > h1 {
    display: inline-block;
    text-align: center;
    font-family: sans-serif;
}

header nav {
    display: inline-block;
    text-align: right;
    min-width: 166px;
    padding-top: 16px;
}

header ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 1rem 0;
}

header li {
    display: inline-block;
    margin-left: 5%;
    font-weight: 700;
}

header li:first-child {
    margin-left: 0;
}

header li a:hover {
    text-decoration: underline;
}

article {
    text-align: center;
    margin: 10% auto 3%;
}

.container {
    display: flex;
    margin: 3% auto 5%;
    justify-content: center;
    box-sizing: border-box;
}

.container section {
    border-right: solid 1px black; //padding: 2%;
    padding: 25px;
    cursor: pointer;
    position: relative;
}

.container section:nth-last-child(1) {
    border-right: none;
}


.image {
    max-width: 125px;
}

.overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #0A89FF;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .2s ease;
    box-sizing: border-box;
    text-align: center;
}

.container section:hover .overlay {
    height: 30%;
}

.overlay h3 {
    margin: 10px auto 0;
    font-size: 1rem;
}

.overlay p {
    margin: 0;
}

main {
    font-size: 2rem;
    margin: 0 auto;
    width: 50%;
    padding-bottom: 3em;
}

.panel{
  font-size: 2rem;
  width: 50%;
  padding-bottom: 3em;
}

main h2 {
    margin: 0;
}

main p {
    font-size: 1.2rem;
}

.organizarInfo {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

aside {
    width: 10%;
}

.redesSociales {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 20px;
    top: 4%;
}

.fixed {
    position: fixed;
    top: 40px;
}

.redesSociales img {
    margin-bottom: 10px;
    width: 30px;
}

.linkImportante {
    margin-top: 20px;
    width: 15%;
}

.linkImportante h6 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 10%;
}

.linkImportante ul {
    padding-left: 10%;
}

.linkImportante li {
    display: block;
    padding: 0;
    margin-bottom: 5px;
}

.linkImportante li:hover {
    text-decoration: underline;
    cursor: pointer;
}

footer {
    background-color: black;
    color: white;
    height: 100px;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1% 0;
}

footer > p {
    text-align: center;
    font-size: .7rem;
    margin: 0 auto;
}
