/* creative style sheet */
@import url(normalize.css);
@import url(herramientas.css);
@import url(tipografias.css);
/*@import url(animate.css);*/
*, *::before, *::after {
    padding: 0; margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    min-height: 100%;
    height: 100%;
}
html {
    font-size: 10px;
}
body {
    font-family: 'AsapRegular';
    font-size: 18pt;
}
h1, h2, h3, strong, b {
    font-family: 'AsapBold';
    font-weight: normal;
}
h2 {
    font-size: 32pt;
    margin-bottom: 3.6rem;
}
i, em {
    font-family: 'AsapItalic';
    font-style: normal;
}
.icono::before {
    content: none;
    display: inline-block;
    font-family: 'FrontendIcons';
    line-height: 100%;
}
.icono.facebook::before { content: '\0f301'; }
.icono.twitter::before { content: '\0f309'; }
.icono.linkedin::before { content: '\0f312'; }
.icono.whatsapp::before { content: '\0f232'; }
.icono.email::before { content: '\0f2b7'; }
.icono.avion::before { content: '\0e800'; }
.boton {
    display: inline-block;
    -webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
    border: 0.2rem solid currentColor;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14pt;
    padding: 1rem 2.4rem;
    cursor: pointer;
    -webkit-transition-property: background, color;
    transition-property: background, color;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}
.boton:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
@-webkit-keyframes entranimacion {
    0% { opacity: 0.01; -webkit-transform: translateY(100px); }
}
@keyframes entranimacion {
    0% { opacity: 0.01; transform: translateY(100px); }
}
.entranimacion {
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-animation-name: entranimacion;
    animation-name: entranimacion;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
.contenedor {
    max-width: 102.4rem;
    width: 100%; 
    padding: 3rem;
    margin: 0 auto;
    position: relative;
}
header {
    pointer-events: none;
    display: block;
    color: #ffffff;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
header .contenedor {
    min-height: 100%;
    height: 100%;
}
header img {
    display: inline-block;
    vertical-align: middle;
}
header h1 {
    display: inline-block;
    vertical-align: middle;
    font-family: 'AsapSemiBold';
    font-size: 25pt;
    line-height: 100%;
    max-width: 37.5%;
    padding: 0 0 0 2.9296875%;
    margin: 0;
}
header nav {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 37.5%;
    width: 100%;
    position: absolute;
    top: 6.4rem; right: 3rem;
}
header nav a {
    pointer-events: all;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
    font-size: 14pt;
    line-height: 99%;
    text-decoration: none;
    padding-bottom: 0.4rem;
    border-bottom: 0.2rem dashed transparent;
    -webkit-transition: border 0.25s ease;
    transition: border 0.25s ease;
}
header nav a:hover {
    border-bottom-color: #ffd23f;
    font-family: 'AsapBold';
}
@-webkit-keyframes entrarriba {
    0% { opacity: 0.01; -webkit-transform: translateY(100px); }
}
@keyframes entrarriba {
    0% { opacity: 0.01; transform: translateY(100px); }
}
#redes {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 12.5%;
    width: inherit;
    position: absolute;
    bottom: 3.2rem; right: 3rem;
    -webkit-animation: entrarriba 1s ease-out 0.2s;
    animation: entrarriba 1s ease-out 0.2s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
#redes a {
    pointer-events: all;
    display: inline-block;
    color: transparent;
    width: 2.4rem; height: 2.4rem;
    overflow: hidden;
    font-size: 0;
    word-spacing: 0;
    letter-spacing: 0;
    white-space: nowrap;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
#redes a:hover {
    -webkit-transform: scale(2);
    transform: scale(2);
}
#redes a::before {
    color: #ffffff;
    font-size: 20pt;
}
#home {
    background: url(../pics/fondo_home.jpeg) center center no-repeat;
    background-size: cover;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
#home .contenedor {
    min-height: 100%;
    height: 100%;
}
#home p {
    width: 37.5%;
    position: absolute;
    right: 3rem;
}
#home p:nth-child(1) {
    font-size: 21pt;
    text-shadow: 
        -1px -1px 0 rgba(255,255,255,0.65),  
         1px -1px 0 rgba(255,255,255,0.65),
        -1px  1px 0 rgba(255,255,255,0.65),
         1px  1px 0 rgba(255,255,255,0.65);
    bottom: 50%;
}
#home p:nth-child(2) {
    color: #ffffff;
    font-size: 16pt;
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.45),  
         1px -1px 0 rgba(0,0,0,0.45),
        -1px  1px 0 rgba(0,0,0,0.45),
         1px  1px 0 rgba(0,0,0,0.45);
    top: 61%;
}
#home .boton {
    color: #ffffff;
    background: transparent;
    min-width: 19.140625%;
    position: absolute;
    bottom: 7.8rem; right: 3rem;
}
#home .boton:hover {
    color: #1a1a1a;
    background: #ffd23f;
}
#nosotros {
    background: 
        url(../pics/fondo_nosotros.png) center center no-repeat,
        -webkit-linear-gradient(45deg, #0f7173, #44bba4);
    background: 
        url(../pics/fondo_nosotros.png) center center no-repeat,
        linear-gradient(45deg, #0f7173, #44bba4);
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
}
#nosotros .contenedor {
    display: table;
    padding: 8.9rem 3rem;
}
#nosotros .contenedor > * {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}
#nosotros .contenedor > :nth-child(1) {
    text-align: right;
    padding-left: 12.5%;
}
#nosotros .contenedor > :nth-child(2) {
    text-align: left;
    padding-left: 3.90625%;
}
#nosotros img {
    display: inline-block;
    border: 0.1rem solid #ffffff;
    max-width: 100%;
    height: auto;
}
#cita {
    color: #ffffff;
    background: #1a1a1a;
}
#cita .contenedor {
    width: 55%;
    padding: 5.2rem 3rem;
}
#cita blockquote {
    /*color: #ffd23f;*/
    font-size: 22pt;
    font-family: 'AsapItalic';
    font-style: normal;
    text-align: center;
}
#cita blockquote::before, #cita blockquote::after {
    display: inline-block;
    font-size: 36pt;
    line-height: 22pt;
    width: 0;
    overflow: visible;
}
#cita blockquote::before {
    content: '\0201C';
    -webkit-transform: translate(-14pt, 14pt);
    transform: translate(-14pt, 14pt);
}
#cita blockquote::after {
    content: '\0201D';
    -webkit-transform: translateY(14pt);
    transform: translateY(14pt);
}
#productos {
    background: -webkit-linear-gradient(45deg, #d3d0cb, #e7e5df);
    background: linear-gradient(45deg, #d3d0cb, #e7e5df);
}
#productos .contenedor {
    padding: 8rem 3rem 0;    
}
#productos .contenedor > div {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 8rem;
}
#productos .contenedor > :nth-child(1) {
    width: 49%;
}
#productos .contenedor > :nth-child(2) {
    width: 36.5%;
    margin-left: 12.5%;
}
#productos .contenedor > :nth-child(3) {
    text-align: center;
    width: 24%;
}
#productos .contenedor > :nth-child(4) {
    text-align: center;
    width: 74%;
}
#productos table {
    width: 100%;
}
#productos tr > * {
    text-align: left;
    padding: 0.6rem 1.2rem;
}
#productos th {
    color: #ffffff;
    background: #29335c;
    font-size: 14pt;
}
#productos td {
    font-size: 16pt;
}
#productos tr:nth-child(odd) {
    background: #ecebe7;
}
#productos tr:hover {
    background: #ffd23f;
}
#productos img {
    max-width: 80%;
    height: auto;
}
#servicios {
    background: 
        url(../pics/fondo_servicios.png) center center no-repeat,
        linear-gradient(45deg, #ffd23f, #e7bb41);
    background-size: cover;
    background-attachment: fixed;
}
#servicios .contenedor {
    padding: 8rem 3rem;
}
#servicios .contenedor > div {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
    margin-bottom: 8rem;
}
#servicios .contenedor > :nth-child(1), 
#servicios .contenedor > :nth-child(5) {
    padding-right: 12.5%;
}
#servicios .contenedor > :nth-child(4) {
    padding-left: 12.5%;
}
#servicios .contenedor > :nth-child(2) img {
    display: inline-block;
    vertical-align: top;
    border: 0.1rem solid #ffffff;
    width: -webkit-calc(50% - 1.5rem);
    width: calc(49% - 1.5rem);
    height: auto;
}
#servicios .contenedor > :nth-child(2) img:nth-child(odd) {
    margin: 0 1.5rem 3rem 0;
}
#servicios .contenedor > :nth-child(2) img:nth-child(even) {
    margin: 0 0 3rem 1.5rem;
}
#servicios p:not(:last-child) {
    margin-bottom: 2rem;
}
#servicios .fxGaleria {
    border: 0.1rem solid #ffffff;
    background: #d3d0cb;
    max-height: -webkit-calc(100% - 16rem);
    max-height: calc(100% - 16rem);
    overflow: visible;
}
#servicios .fxGaleria img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
}
#servicios .fAnterior, #servicios .fSiguiente {
    display: block;
    color: rgba(26,26,26,0.45);
    font-size: 48pt;
    height: 4.8rem;
    margin: auto 0;
    position: absolute;
    top: 0; bottom: 0;
}
#servicios .fAnterior:hover, #servicios .fSiguiente:hover {
    color: #1a1a1a;
}
#servicios .fAnterior {  left: 0; }
#servicios .fSiguiente {  right: 0; }
#contacto {
    background: -webkit-linear-gradient(45deg, #d3d0cb, #e7e5df);
    background: linear-gradient(45deg, #d3d0cb, #e7e5df);
}
#contacto .contenedor {
    padding: 8rem 3rem;
}
#contacto .contenedor::before {
    content: '\000A0';
    border-right: 0.1rem solid rgba(0,0,0,0.15);
    width: 0.1rem;
    position: absolute;
    top: 23.4rem; left: 56.25%; bottom: 8rem;
}
#contacto .contenedor > div {
    display: inline-block;
    vertical-align: top;
    position: relative;
}
#contacto .contenedor > :nth-child(1) {
    display: block;
    width: 37.5%;
    margin-bottom: 3rem;
}
#contacto .contenedor > :nth-child(2) {
    width: 50%;
}
#contacto .contenedor > :nth-child(3) {
    width: 37%;
    margin-left: 12%;
}
#contacto h2 {
    color: #ffffff;
}
#contacto strong {
    font-size: 20pt;
}
#contacto p {
    margin-bottom: 3rem;
}
#contacto .icono::before {
    margin-right: 1rem;
}
#contacto [href] {
    color: currentColor;
    text-decoration: none;
}
#contacto [href^='mailto:']::after {
    content: attr(data-correo) '@emulsionesasfalticas.com.mx';
}
#contacto label {
    display: inline-block;
    font-size: 14pt;
    width: 100%;
    padding: 0 0 1rem;
}
#contacto [name] {
    display: block;
    border: 0.1rem solid #9a9a9a;
    background: none;
    width: 100%;
    padding: 0.6rem 1.2rem;
    margin-top: 0.6rem;
}
#contacto [type='submit'] {
    border: 0.1rem solid rgba(128,128,128,0.1);
    background: #ffd23f;
    font-family: 'AsapSemiBold';
}
#contacto [type='submit']:hover {
    background: #1a1a1a;
    color: #ffd23f;
}
#contacto .mapa {
    -webkit-box-shadow: 0 0 0 0.1rem #9a9a9a;
    box-shadow: 0 0 0 0.1rem #9a9a9a;
    background: rgba(0,0,0,0.25);
    width: 100%;
    height: 18rem;
    margin-bottom: 3rem;
}
#contacto iframe {
    display: block;
    border: 0;
    min-height: 100%;
    width: 100%;
    height: 100%;
}
#contacto form.enviando {
    opacity: 0.1;
    pointer-events: none;
}
#contacto form.enviando + div {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@-webkit-keyframes gravitacion {
    25% { -webkit-transform: translateY(-1%) rotate(1.8deg); }
    50% { -webkit-transform: translateY(0%) rotate(0deg); }
    75% { -webkit-transform: translateY(1%) rotate(-1.8deg); }
}
@keyframes gravitacion {
    25% { transform: translateY(-1%) rotate(1.8deg); }
    50% { transform: translateY(0%) rotate(0deg); }
    75% { transform: translateY(1%) rotate(-1.8deg); }
}
#contacto .avion {
    font-size: 6.4rem;
    line-height: 12.8rem;
    display: inline-block;
    -webkit-animation: gravitacion 1s linear infinite;
    animation: gravitacion 1s linear infinite;
}
footer {
    color: #ffffff;
    background: #0b2921;
    text-align: center;
    font-size: 14pt;
    position: relative;
    z-index: 1;
}
footer p {
    width: 50%;
    padding: 5.6rem 0;
    margin: 0 auto;
}
footer strong {
    font-size: 16pt;
}
footer em {
    color: #ffd23f;
    font-style: normal;
}
/*
    fxGalería
*/
.indice {
    display: block;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: -webkit-calc(100% + 1.6rem);
    top: calc(100% + 1.6rem);
    left: 0;
    right: 0;
    z-index: 2;
}
.indice > * {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    background: rgba(255,255,255,0.15);
    background: -webkit-radial-gradient(circle, rgba(255,255,255,0.65) 40%, transparent 45%);
    background: radial-gradient(circle, rgba(255,255,255,0.65) 40%, transparent 45%);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    position: relative;
}
.indice > .activo {
    background: #1a1a1a;
    background: -webkit-radial-gradient(circle, #1a1a1a 45%, transparent 50%);
    background: radial-gradient(circle, #1a1a1a 45%, transparent 50%);
}
.fAnterior, .fSiguiente {
    cursor: pointer;
    color: currentColor;
    font-family: monospace;
    font-size: 3.2rem;
    line-height: 100%;
    /* evitar linea punteada de enfocado */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    outline: 0;
    /* evitar drag and drop */
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fAnterior:active, 
.fSiguiente:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}
.fAnterior::before {
    content: '\02039';
}
.fSiguiente::before {
    content: '\0203A';
}
.fxGaleria {
    overflow: hidden;
    position: relative;
}
.fxGaleria > *:not(.indice):not(.fSiguiente):not(.fAnterior) {
    pointer-events: none;
    opacity: 0;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}
.fxGaleria > *:not(.indice):not(.fSiguiente):not(.fAnterior).activo {
    pointer-events: all;
    opacity: 1;
    position: relative !important;
}
/*
    _|º>º|_
*/
@media (max-width: 900px) {
    h2 {
        font-size: 28pt;
    }
    header h1 {
        font-size: 21pt;
    }
    header nav a {
        font-size: 12pt;
    }
    #home p:nth-child(1) {
        font-size: 19pt;
    }
    #home p:nth-child(2) {
        font-size: 14pt;
    }
    #contacto [href^='mailto:'] {
        font-size: 16pt;
    }
    footer strong {
        display: block;
    }
}
@media (max-width: 800px) {
    body {
        font-size: 16pt;
    }
    h2 {
        font-size: 24pt;
    }
    header nav a {
    }
    #home p:nth-child(1) {
        font-size: 18pt;
    }
    #cita .contenedor {
        width: 87.5%;
    }
    #cita blockquote {
        font-size: 20pt;
    }
    #productos .contenedor > :nth-child(1) {
        width: 36.5%;
        margin-right: 12.5%;
    }
    #productos .contenedor > :nth-child(2) {
        width: 49%;
        margin-left: 0;
    }
    #contacto .contenedor > :nth-child(1) {
        width: 50%;
    }
    #contacto [href^='mailto:'] {
        font-size: 14pt;
    }
    footer p {
        width: 100%;
    }
}
@media (max-width: 768px) {
    header h1 {
        max-width: -webkit-calc(87.5% - 20.5rem);
        max-width: calc(87.5% - 20.5rem);
    }
    header nav {
        pointer-events: all;
        display: inline-block;
        -webkit-flex-flow: none;
        flex-flow: none;
        -webkit-justify-content: none;
        justify-content: none;
        text-align: right;
        width: auto;
        z-index: 1;
    }
    header nav a {
        -webkit-flex: none;
        flex: none;
        display: none;
        border: none;
        padding: 0.9rem 1.8rem;
        margin: 0;
    }
    header nav a:hover {
        background: linear-gradient(45deg, #ffd23f 20%, #e7bb41 20%, #e7bb41 40%, #ffd23f 40%, #ffd23f 60%, #e7bb41 60%, #e7bb41 80%, #ffd23f 80%);
        background-size: 20%;
        color: #1a1a1a;
    }
    header .menu {
        display: inline-block;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background: linear-gradient(90deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%), linear-gradient(0deg, transparent 25%, #1a1a1a 25%, #1a1a1a 35%, transparent 35%, transparent 45%, #1a1a1a 45%, #1a1a1a 55%, transparent 55%, transparent 65%, #1a1a1a 65%, #1a1a1a 75%, transparent 75%), #fff;
        width: 2.4rem;
        height: 2.4rem;
        padding: 0;
        margin: 0;
        position: relative;
        font-size: 0;
        line-height: 0;
        word-spacing: 0;
        letter-spacing: 0;
        cursor: pointer;
        -webkit-transition: transform 0.35s ease;
        transition: transform 0.35s ease;
    }
    header nav.activo::before {
        content: '\000A0';
        border: 0.5rem solid transparent;
        border-bottom-color: #1a1a1a;
        width: 0; height: 0;
        position: absolute;
        top: 3.4rem; right: 0.95rem;
    }
    header nav.activo::after {
        content: '\000A0';
        -webkit-box-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.35);
        box-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.35);
        -webkit-border-radius: 0.3rem;
        border-radius: 0.3rem;
        background: #1a1a1a;
        position: absolute;
        top: 4.4rem; left: 0; right: 0; bottom: 0;
        z-index: -1;
    }
    header nav.activo .menu {
        background: linear-gradient(0deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%), linear-gradient(90deg, #fff 25%, transparent 25%, transparent 45%, #1a1a1a 45%, #1a1a1a 55%, transparent 55%, transparent 75%, #fff 75%), linear-gradient(0deg, transparent 45%, #1a1a1a 45%, #1a1a1a 55%, transparent 55%), #fff;
        margin-bottom: 2rem;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    header nav.activo .menu ~ * {
        display: block;
    }
    #nosotros .contenedor > :nth-child(1) {
        padding-left: 0;
    }
    #nosotros .contenedor > :nth-child(2) {
        padding-left: 3rem;
    }
}
@media (max-width: 680px) {
    header h1 {
        font-size: 20pt;
    }
    #redes {
        max-width: 16%;
    }
    #cita blockquote {
        font-size: 18pt;
    }
    #productos .contenedor > :nth-child(1) {
        text-align: center;
        width: 100%;
        margin: 0;
    }
    #productos .contenedor > :nth-child(2) {
        width: 75%;
        margin: 0 12.5%;
    }
    #servicios .contenedor > div {
        text-align: center;
        width: 100%;
    }
    #servicios .contenedor > :nth-child(1), 
    #servicios .contenedor > :nth-child(5) {
        padding-right: 0;
    }
    #servicios .contenedor > :nth-child(4) {
        padding-left: 0;
        margin-bottom: 2rem;
    }
    #contacto .contenedor::before {
        content: none;
    }
    #contacto .contenedor > :nth-child(2) {
        width: 100%;
        padding-bottom: 2rem;
        border-bottom: 0.1rem solid rgba(0,0,0,0.15);
        margin-bottom: 4rem;
    }
    #contacto .contenedor > :nth-child(3) {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 600px) {
    #nosotros .contenedor {
        display: table;
    }
    #nosotros .contenedor > * {
        display: table-row;
        vertical-align: top;
        width: 100%;
    }
    #nosotros .contenedor > :nth-child(1) {
        text-align: center;
        padding-left: 0;
    }
    #nosotros .contenedor > :nth-child(2) {
        text-align: center;
        padding-left: 0;
    }
    #nosotros img {
        margin-top: 2rem;
    }
    #contacto .contenedor > :nth-child(1) {
        width: 100%;
    }
}
@media (max-width: 540px) {
    #redes {
        max-width: 25%;
    }
}
@media (max-width: 500px) {
    body {
        font-size: 14pt;
    }
    #home p:nth-child(1) {
        text-align: center;
        width: auto;
        left: 3rem;
    }
    #productos .contenedor > :nth-child(2) {
        width: 100%;
        margin: 0;
    }
    #productos th {
        font-size: 12pt;
    }
    #productos td {
        font-size: 14pt;
    }
    footer b:first-of-type {
        display: block;
    }
    footer em {
        display: block;
        font-size: 12pt;
        margin-top: 2rem;
    }
}
@media (max-width: 420px) {
    header img {
        max-width: 9rem;
    }
    header h1 {
        max-width: -webkit-calc(100% - 14.4rem);
        max-width: calc(100% - 14.4rem);
    }
    header nav {
        top: 0.6rem;
    }
    #redes {
        max-width: 9.6rem;
    }
    #productos .contenedor > :nth-child(3) {
        width: 50%;
        margin: 0 25%;
    }
    #productos .contenedor > :nth-child(4) {
        width: 100%;
    }
    #contacto strong {
        font-size: 19pt;
    }
    #contacto [href^='mailto:'] {
        font-size: 10pt;
    }
}
@media (max-width: 380px) {
    #home p:nth-child(1) {
        font-size: 17pt;
        line-height: 100%;
    }
    #home p:nth-child(1) br:first-of-type {
        display: none;
    }
    #home .boton {
        font-size: 13pt;
    }
}
@media (orientation: portrait) and (max-height: 768px) {
    #home {
        background-size: auto -webkit-calc(100% + 19rem);
        background-size: auto calc(100% + 19rem);
        background-position: center top;
    }
    #home p:nth-child(1) {
        top: -webkit-calc(50% - 4.5rem);
        top: calc(50% - 4.5rem);
        bottom: inherit;
    }
    #home p:nth-child(2) {
        display: none;
    }
}
@media (orientation: landscape) and (max-height: 640px) {
    #home {
        min-height: 64rem;
    }
    #redes {
        top: 58.6rem;
        bottom: inherit;
    }
}
/* animación de portada */
body:not(.listo) header img, body:not(.listo) header h1, body:not(.listo) header nav, body:not(.listo) #redes, body:not(.listo) #home p:nth-child(1), body:not(.listo) #home p:nth-child(2), body:not(.listo) #home .boton {
    display: none;
}
@-webkit-keyframes entraizquierda {
    0% { opacity: 0.01; -webkit-transform: translateX(-100px); }
}
@keyframes entraizquierda {
    0% { opacity: 0.01; transform: translateX(-100px); }
}
header img, header h1 {
    -webkit-animation: entraizquierda 0.75s ease-out 0s;
    animation: entraizquierda 0.75s ease-out 0s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
@-webkit-keyframes entrabajo {
    0% { opacity: 0.01; -webkit-transform: translateY(-100px); }
}
@keyframes entrabajo {
    0% { opacity: 0.01; transform: translateY(-100px); }
}
header nav {
    -webkit-animation: entrabajo 0.75s ease-out 0.1s;
    animation: entrabajo 0.75s ease-out 0.1s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
@-webkit-keyframes entraderecha {
    0% { opacity: 0.01; -webkit-transform: translateX(100px); }
}
@keyframes entraderecha {
    0% { opacity: 0.01; transform: translateX(100px); }
}
#home p:nth-child(1) {
    -webkit-animation: entraderecha 0.75s ease-out 0.2s;
    animation: entraderecha 0.75s ease-out 0.2s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
#home p:nth-child(2) {
    -webkit-animation: entraderecha 0.75s ease-out 0.3s;
    animation: entraderecha 0.75s ease-out 0.3s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
#home .boton {
    -webkit-animation: entraderecha 0.75s ease-out 0.3s;
    animation: entraderecha 0.75s ease-out 0.3s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
