/*  Laberinto a la Libertad  */

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

header,
section,
footer,
aside,
nav,
article,
figure,
figcaption,
hgroup {
    display: block;
}

body {
    text-align: center;
}

img {
    padding: 5rem;
    width: 450px;
    height: 250px;
}

h1 {
    padding-top: 2rem;
    font-size: 2rem;
    line-height: 1.3rem;
    margin-left: 10px;
}

main p {
    font-size: 14px;
    text-align: left;
    margin-left: 5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 15px auto;
}

header {
    width: 100%;
    background: #333;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

header a {
    color: yellow;
    font-size: 2rem;
    text-decoration: none;
}

.logo {
    letter-spacing: 3px;
}

.menu-icon {
    display: none;
}

section {
    margin: 20px;
    float: left;
}

.articulo {
    padding: 10px;
    margin: 15px;
    float: left
}

article p {
    font-size: 15px;
}

.articulo fotter {
    text-align: right;
}

.entrada-blog {
    margin-bottom: 2rem;
    padding-top: 6rem;
    background: white;
}

@media (min-width: 768px) {
    .entrada-blog {
        display: flex;
        justify-content: space-between;
    }
}

.entrada-blog .imagen {
    flex-basis: 40%;
    padding-top: 2rem;
}

.entrada-blog .imagen p {
    margin-left: 2rem;
}

.entrada-blog .texto-entrada {
    flex-basis: calc(60% - 3rem);
}

.entrada-blog:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .entrada-blog .imagen {
        flex-basis: 40%;
    }
    .entrada-blog .texto-entrada {
        flex-basis: calc(60% - 3rem);
    }
}

.texto-entrada {
    color: #000000;
    text-decoration: none;
}

.texto-entrada h1 {
    margin: 0;
    line-height: 1.4;
}

.texto-entrada h1::after {
    content: '';
    display: block;
    width: 15rem;
    height: .5rem;
    background-color: #71B100;
    margin-top: 1rem;
}

.texto-entrada span {
    color: #E08709;
}

.columna {
    width: 20%;
    height: 150px;
    margin: 20px 0px;
    float: left;
    padding: 20px;
    background: #CCCCCC;
}

.navigation {
    width: 100%;
    margin-top: 1rem;
}

.navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation ul li {
    display: inline-block;
}

.navigation ul li a {
    display: block;
    font-size: 1rem;
    color: white;
    line-height: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.S4s linear;
    border-radius: 5px;
}

.navigation ul li a:hover {
    background: burlywood;
}

.contenedor {
    width: 80%;
    max-width: 850px;
    /** = 1200px; **/
    margin: 0 auto;
}

.seccion {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.fw-300 {
    padding-top: 2rem;
    font-weight: 300;
}

.centrar-texto {
    text-align: center;
}

.boton-verde {
    font-size: 30px;
    background-color: #E08709;
    cursor: pointer;
}

.contacto p {
    font-size: 1.4rem;
    color: #4f4f4f;
    margin: 2rem 0 0 0;
}

legend {
    padding-top: 1rem;
    font-size: 2rem;
    color: #4f4f4f;
}

label {
    padding-top: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

input:not([type="submit"]),
textarea,
select {
    padding: 1rem;
    display: block;
    width: 85%;
    background-color: #e1e1e1;
    margin-bottom: 2rem;
    border: none;
    border-radius: 1rem;
}

input[type="radio"] {
    width: auto;
    margin: 0;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

textarea {
    height: 9rem;
}

.forma-contacto {
    max-width: 30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.audio {
    float: left;
    display: block;
    margin: 0, 0;
    padding: 0, 0;
}

.video {
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.footer {
    background: #6e3e3e;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

@media all and (max-width: 600px) {
    .logo {
        font-size: 1rem;
    }
    .navigation ul li a {
        flex-direction: column;
        height: auto;
        font-size: 8px;
    }
    .navigation ul li a:hover {
        background: #4a4a4a;
    }
}