/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */


/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */


/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}


/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}


/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}


/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

html {
    box-sizing: border-box;
    font-size: 62.5%;
    /*Reset para REMS - 62.5% = 10px de 16px */
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    /* = 16px */
    line-height: 2;
}


/* Globales */

.contenedor {
    width: 95%;
    max-width: 120rem;
    margin: 0 auto;
}

.contenedor-sub {
    width: 95%;
    max-width: 120rem;
    margin: 0 auto;
}

.contenedor-fav {
    width: 95%;
    max-width: 150rem;
    margin: 0 auto;
    padding-bottom: .5rem;
}

.contenedor-elegibilidad {
    width: 50%;
    margin: auto;
    padding-bottom: 0.5rem;
}

@media (max-width:768px) {
    .contenedor-elegibilidad {
        width: 95%;
    }
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 3.4rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.6rem;
}


/* Utilidades */

.fw-300 {
    /*font weight */
    font-weight: 300;
}

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

.d-block {
    display: block!important;
    /*al colocar !important ignora el efecto cascada y aunque haya otro display despues, no se tomara en cuenta */
}

.contenido-centrado {
    max-width: 800px;
}

.texto-destacado {
    color: red;
    font-weight: 900;
}

.texto-ojo {
    font-size: 12px;
    text-align: justify;
}

.seccion-ojo {
    padding: 3rem;
}

.centrar-boton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.msg-error {
    color: #e41a1c;
    font-weight: bold;
}

@media (min-width:768px) {
    .tres-columnas {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 2rem;
    }
}


/* Botones */

.boton {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    /*quitamos la linea de hipertexo o enlace */
    font-size: 1.8rem;
    padding: 1rem 3rem;
    /* crea espacios hacia dentro del contenido */
    margin-top: 3rem;
    display: inline-block;
    /* te deja aplicar margin y padding sin tomar el espacio de toda la linea */
    text-align: center;
    border: none;
    /*quita el borde a los botones, a los enlaces <a> no les hace nada.*/
    display: block;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .boton {
        display: inline-block;
        flex: 0 0 auto;
    }
}

.boton:hover {
    cursor: pointer;
}

.boton-amarillo {
    background-color: #E08709;
}

.boton-verde {
    background-color: #71B100;
}

.boton-azul {
    background-color: #042331;
}

.boton-gris {
    background-color: #686868;
}

.botones-linea {
    display: flex;
    justify-content: center;
}

.boton-sub {
    color: #145174;
    font-weight: 700;
    text-decoration: none;
    /*quitamos la linea de hipertexo o enlace */
    font-size: 1.8rem;
    padding: 0rem 3rem;
    /* crea espacios hacia dentro del contenido */
    margin-top: 0;
    display: inline-block;
    /* te deja aplicar margin y padding sin tomar el espacio de toda la linea */
    text-align: center;
    border: none;
    /*quita el borde a los botones, a los enlaces <a> no les hace nada.*/
    display: block;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .boton-sub {
        display: inline-block;
        flex: 0 0 auto;
    }
}

.boton-sub:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: #145174;
    box-shadow: 0 10px 20px #333333c4 inset;
}

.boton-blanco-sub {
    background-color: #ffffff28;
}


/* Header */

.site-header {
    background-color: #93d6dd;
    padding: .5rem 0 .5rem 0;
    box-shadow: 0 10px 20px #333333c4 inset;
}

.site-header-sub {
    background-color: #ffffff;
    padding: 0 0 0 0;
    margin: 0;
}

.barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 25px!important;
    }
}

@media (max-width: 476px) {
    .logo h1 {
        font-size: 15px!important;
    }
    .inicio-sesion {
        font-size: 15px!important;
        padding: 12px 20px;
    }
}

.logo {
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.logo p {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .logo {
        font-size: 10px;
    }
}

.logo-text {
    text-align: center;
}


/* Navegacion */

.navegacion {
    text-align: center;
}

.lenguaje {
    color: #ffffff;
    margin-right: 1rem;
}

.inicio-sesion {
    background-color: #ccc;
    padding: 12px 20px;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px #333333c4;
    color: #042331;
    font-weight: 900;
}

@media (max-width: 476px) {
    .inicio-sesion {
        font-size: 10px!important;
        padding: 5px 5px;
    }
}

.navegacion a:hover {
    color: #8bcbff;
}

.navegacion a:hover:last-of-type {
    background-color: #042331!important;
    color: #ccc!important;
}

.navegacion-sub a:hover {
    color: #ffffff;
    background-color: #145174;
}

.navegacion:target {
    display: block;
}

@media (min-width: 768px) {
    .navegacion {
        display: block;
    }
}

.mobile-menu {
    display: block;
    text-align: right;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.menu-bar {
    display: none;
}

.menu-bar .bt-menu {
    display: block;
    padding: 0px 15px;
    background: #ffffff;
    color: #145174;
    text-decoration: none;
    font-weight: bold;
    font-size: 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.menu-bar i {
    margin-top: 15px;
    float: right;
    font-size: 25px;
}

@media screen and (max-width:768px) {
    .menu-bar {
        display: block;
        width: 100%;
        background: #ccc;
    }
    .navegacion2 {
        background-color: #ffffff;
        width: 100%;
        height: 100%;
        left: -100%;
        margin: 0;
        position: fixed;
    }
}


/* Sección Inicio */

.contenido-seccion.inicio {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    padding: 3rem;
}

main.inicio {
    background-image: linear-gradient( rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../img/POSLINK.png');
}

@media (max-width: 768px) {
    main.inicio {
        background-image: linear-gradient( rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../img/POSLINKM.png');
    }
}

@media (min-width: 768px) {
    .column-drop-css {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .segunda {
        grid-column: 1 / 3;
    }
}

@media (min-width: 961px) {
    .column-drop-css {
        grid-template-columns: repeat(3, 1fr);
    }
    .segunda {
        grid-column: 3 / 4;
    }
}

.contenido-seccion h1 {
    color: #111111;
    line-height: 1;
    text-align: center;
    font-weight: 900;
    font-size: 4rem;
}

.contenido-seccion p {
    color: #111111;
    line-height: 1;
    text-align: center;
    font-weight: 900;
    font-size: 2rem;
    margin: 1rem;
    margin-top: 0;
}

.contenido-seccion h3 {
    font-weight: 900;
    font-size: 3rem;
    margin: 0;
    text-align: center;
}

.contenido-seccion p:last-of-type {
    display: block;
    margin: 0;
    font-weight: 400;
}

.img-seccion {
    padding: 0px 0px;
    width: 100%;
    display: none;
}

@media (min-width: 768px) {
    .contenido-seccion h1 {
        font-weight: 900;
        font-size: 3rem;
        text-align: left;
    }
    .contenido-seccion p {
        font-weight: 900;
        font-size: 2rem;
        margin: 2rem;
        text-align: left;
        display: list-item;
    }
    .contenido-seccion h3 {
        text-align: left;
    }
    .img-seccion {
        padding: 30px 0px;
        display: block;
    }
    h2 {
        margin: 0;
    }
}

@media (min-width: 961px) {
    .contenido-seccion h1 {
        color: #111111;
        max-width: 100rem;
        line-height: 1;
        text-align: left;
        font-weight: 900;
        font-size: 5.5rem;
    }
    .contenido-seccion p {
        color: #111111;
        max-width: 100rem;
        line-height: 25%;
        text-align: left;
        font-weight: 900;
        font-size: 1.5rem;
        margin: 2rem;
        display: list-item;
    }
    .contenido-seccion .info {
        line-height: 1;
    }
    .img-seccion {
        padding: 40px 0px;
    }
}

.primera {
    display: flex;
    align-items: center;
}

.primera h1 {
    color: #ffffff;
}

.primera h3 {
    color: #ffffff;
}

.primera p {
    color: #ffffff;
}

.segunda {
    background-color: #145174;
    padding: 20px 30px;
    box-shadow: 0 10px 20px #000000fb;
    border-radius: 3rem;
    width: 100%;
    height: auto;
}

.segunda h2 {
    color: #ffffff;
    line-height: 1;
    text-align: center;
    font-size: 3rem;
    width: 100%;
}

.segunda p {
    color: #145174;
    line-height: 1;
    font-size: 12px;
    width: 100%;
}

.segunda a {
    background-color: #ffffff;
    border-radius: 20px;
    color: #145174;
    font-size: 1.5rem;
    padding: 20px 30px;
    margin-bottom: 1rem;
    text-align: center;
    align-content: center;
    display: block;
    text-decoration: none;
}

.segunda a:hover {
    background-color: #2196F3;
    color: white;
}

.segunda a:hover p {
    color: white;
}

@media (min-width: 768px) {
    .segunda p {
        text-align: center;
    }
    .segunda a {
        flex: 0 0 auto;
        text-align: center;
    }
}

@media (min-width: 961px) {
    .segunda a {
        font-size: 2rem;
    }
    .segunda h2 {
        padding-bottom: 2rem;
        padding-top: 2rem;
    }
    .segunda p {
        text-align: center;
    }
    .boton-fav {
        flex: 0 0 auto;
    }
    .segunda a {
        flex: 0 0 auto;
        text-align: center;
    }
}

.boton-fav:hover {
    cursor: pointer;
    border-color: #ffffff;
    border-style: solid;
    box-shadow: 0 10px 20px #333333c4 inset;
}


/* Formas */

.header-section {
    background-image: linear-gradient(to bottom, #1d7cb3, #145174);
    border-style: solid;
    border-color: #145174;
    border-radius: 20px 20px 0 0;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 20px #333333c4 inset;
}

.entrada-forma a {
    background-image: linear-gradient(to bottom, #e41a1c, #940306);
    color: #ffffff;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 5px 30px;
    border-radius: 2rem;
    width: 75%;
    display: inline-block;
    box-shadow: 0 10px 20px #33333334 inset;
}

.entrada-forma a:hover {
    background-image: -webkit-linear-gradient(top, #940306, #e41a1c);
}

@media (min-width: 768px) {
    .dos-columnas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

.iniciar {
    align-content: center;
    padding: 5px 30px;
    text-align: center;
    border-width: thin;
    border-style: ridge;
}

.iniciar p {
    font-size: 2rem;
    color: rgb(235, 23, 23);
}

.texto-informativo {
    align-content: center;
    padding: 20px 30px;
    text-align: center;
    border-width: thin;
    border-style: ridge;
    box-shadow: 0 10px 20px #333333cc inset;
    background-color: #ffffff;
}

.footer-tabla {
    background-image: linear-gradient(to bottom, #1d7cb3, #145174);
    border-radius: 0 0 20px 20px;
    color: #ffffff;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 20px #333333c4 inset;
}


/*Paginas internas */


/* Ciudadanía */

.ciudadania {
    background-image: linear-gradient( rgba(0, 0, 0, 0.1), rgb(0, 0, 0, 0.1)), url('../img/WP3.jpg');
    background-position: center center;
    background-size: cover;
    height: 100h;
    padding: 3rem;
}

.ciudadania h1 {
    font-size: 7rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .ciudadania h1 {
        font-size: 4rem;
    }
}

.ciudadania p {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mas-info a {
    color: white;
    font-weight: bold;
}

.mas-info h2 {
    color: #ffffff;
    font-size: 3rem;
}

.mas-info p {
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
    display: list-item;
    margin-left: 1.5rem;
    line-height: 110%;
    font-weight: 100;
}

.mas-info h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
    font-weight: 100;
}

.mas-info img {
    width: 100%;
}

@media (min-width: 768px) {
    .dos-columnas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

.contenedor-boton-inicio-app {
    width: 40%;
    max-width: 120rem;
    margin: 0 auto;
}

.boton-inicio-app a {
    background-image: linear-gradient(to bottom, #e41a1c, #940306);
    color: #ffffff;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 20px 30px;
    border-radius: 2rem;
    width: 100%;
    display: inline-block;
    box-shadow: 0 10px 20px #33333334 inset;
}

.boton-inicio-app a:hover {
    background-image: -webkit-linear-gradient(top, #940306, #e41a1c);
}

@media (max-width: 768px) {
    .boton-inicio-app a {
        font-size: 12px;
    }
}


/* Tarjeta Verde */

.contenedor-padding {
    width: 95%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 30px 30px;
}


/* Otras Formas */

.contenedor-padding h2 {
    color: #145174;
    line-height: 1;
    padding-bottom: 1rem;
}

.contenedor-padding p {
    color: #333333;
    line-height: 2;
    padding: 0;
    margin: 0;
}

article {
    padding: 2rem;
}

.contenido-banner.inicio {
    background-image: linear-gradient( rgba(0, 0, 0, 0.1), rgb(0, 0, 0, 0.1)), url('../img/WP3.jpg');
    background-position: center center;
    background-size: cover;
    height: 100h;
    padding: 3rem;
}

.contenido-banner h1 {
    text-align: center;
    font-weight: 900;
    color: #ffffff;
}

table {
    border-collapse: collapse;
    width: 100%;
    background-color: #ffffffbb;
}

th,
td {
    padding: 15px;
    text-align: left;
}

tr:hover {
    background-color: #bfc7eb;
}

td a {
    text-decoration: none;
    color: #333333;
}

td a:hover {
    text-decoration: underline;
}


/* Conctacto */

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


/*información*/

contenedor-info-contacto {
    width: 100%;
    display: block;
}

.card {
    display: block;
    background-image: linear-gradient(to bottom, #95c2c8, #88abca);
    background-color: #2196F3;
    color: white;
    padding: 20px 30px;
    border-radius: 2rem;
    margin-top: 1.5rem;
    border-style: solid;
    border-color: #4f4f4f;
}

.imagen {
    width: 50%;
    display: block;
    margin: auto;
}

.card h3 {
    font-size: 2rem;
    text-align: center;
    color: #4f4f4f;
    line-height: 1;
    padding: 20px 30px;
}

.card h4 {
    font-size: 3rem;
    text-align: center;
    color: #145174;
    padding: 0;
}

.card p {
    font-size: 2.5rem;
    text-align: center;
    color: #4f4f4f;
    line-height: 1;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .dos-columnas {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}


/* Formulario*/

article h2 {
    font-size: 2rem;
}

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

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

label {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

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

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

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

textarea {
    height: 200px;
}

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


/* Aplicacion*/

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

#check {
    display: none;
}

label #btn {
    left: 40px;
    top: 12px;
    font-size: 35px;
    color: #ffffff;
    padding: 6px 12px;
    transition: all .5s;
}

label #cancel {
    z-index: 1111;
    left: -250px;
    top: 17px;
    font-size: 30px;
    color: #ffffff;
    background: none;
    padding: 4px 9px;
    transition: all .5s ease;
}

@media (max-width: 768px) {
    label #btn,
    label #cancel {
        display: none;
    }
}

#check:checked~label #btn {
    left: 250px;
    opacity: 0;
    pointer-events: none;
}

#check:checked~label #cancel {
    left: 250px;
}

#check:checked~.app-in {
    margin-left: 300px;
}

.app-in {
    background: url(/img/destacada.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    transition: all .5s;
}

.app-header header {
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    line-height: 70px;
    background: #063146;
    user-select: none;
    padding: 0px 30px;
}

@media (max-width: 768px) {
    .app-header header {
        line-height: 30px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.elegibilidad-card {
    display: block;
    background-color: #ffffff;
    color: rgb(66, 61, 61);
    padding: 20px 30px;
    border-radius: 1rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    border-style: solid;
    border-width: thin;
    border-color: #000000;
    height: 100%;
}

.elegibilidad-card h1 {
    font-size: 8rem;
    text-align: center;
    margin: 0;
    color: #042331;
    font-weight: 900;
}

.elegibilidad-card h2 {
    font-size: 4rem;
    text-align: center;
    margin: 0;
    color: #042331;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1%;
}

.elegibilidad-card h3 {
    font-size: 2rem;
    text-align: center;
    margin: 0;
    color: #042331;
    font-weight: 500;
    line-height: 1;
}

.elegibilidad-card h4 {
    font-size: 1rem;
    text-align: center;
    margin: 0;
    color: #042331;
    font-weight: 300;
    line-height: 1;
}

.btn-group input {
    background-color: #686868;
    border: 1px solid #686868;
    color: white;
    padding: 10px 24px;
    cursor: pointer;
    float: left;
}

.btn-group input:last-child {
    background-color: #042331;
    border: 1px solid #042331;
    color: white;
    padding: 10px 24px;
    cursor: pointer;
    float: right;
}

.btn-group:after {
    content: "";
    clear: both;
    display: table;
}

.btn-group input:not(:last-child) {
    border-right: none;
}

.btn-group input:hover {
    background-color: #686868;
}


/* The container */

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* Hide the browser's default radio button */

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #063146;
    border-radius: 50%;
}


/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #88abca;
}


/* When the radio button is checked, add a blue background */

.container input:checked~.checkmark {
    background-color: #2196F3;
}


/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the indicator (dot/circle) when checked */

.container input:checked~.checkmark:after {
    display: block;
}


/* Style the indicator (dot/circle) */

.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

div.felicidades h1 {
    font-size: 10rem;
}


/* Registro de Usuario */

.registro-card {
    display: block;
    background-color: #ffffffab;
    color: rgb(66, 61, 61);
    padding: 20px 30px;
    border-radius: 1rem;
    margin-top: 10rem;
    margin-bottom: 5rem;
    border-style: solid;
    border-width: thin;
    border-color: #000000;
    height: 100%;
    width: 40%;
}

.registro-card p {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5;
    text-align: justify;
}

.registro-card input:not([type="submit"]) {
    padding: 1rem;
    display: block;
    width: 100%;
    background-color: #e1e1e1;
    margin-bottom: 1rem;
    border: none;
    border-radius: 1rem;
}

legend {
    font-size: 3rem;
    color: #042331;
    text-align: center;
}

label {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

label a {
    font-weight: 900;
    color: #145174;
}

label a:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    justify-content: center;
}

.btn {
    color: #ffffff;
    background-color: #4f4f4f;
    font-size: 15px;
    border-radius: 1rem;
    width: 10%;
    padding: 0px 10px;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.btn:focus {
    color: #ffffff;
    background-color: #1d7cb3;
}

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

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

textarea {
    height: 200px;
}

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

.fieldset a {
    font-weight: 900;
}

.iniciarsesion {
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    margin: 0;
}

.iniciarsesion p {
    font-size: 12px;
    padding: 10px;
    margin: 0;
}

.iniciarsesion a {
    font-weight: 900;
    color: #145174;
}

.iniciarsesion a:hover {
    text-decoration: underline;
}


/* Factura en linea */

.factura-card {
    display: block;
    background-color: #ffffff;
    color: rgb(66, 61, 61);
    padding: 20px 30px;
    border-radius: 1rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
    border-style: solid;
    border-width: thin;
    border-color: #000000;
    height: 100%;
    width: 40%;
}

.factura-card p {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.5;
    text-align: justify;
}

.contenedor-boton-factura {
    display: flex;
    justify-content: center;
}

.factura-card input:not([type="submit"]) {
    padding: 1rem;
    display: block;
    width: 100%;
    background-color: #e1e1e1;
    margin-bottom: 1rem;
    border: none;
    border-radius: 1rem;
}

legend {
    font-size: 3rem;
    color: #042331;
    text-align: center;
}

label {
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

label a {
    font-weight: 900;
    color: #145174;
}

label a:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    justify-content: center;
}


/* Media query for mobile viewport */

@media screen and (max-width: 400px) {
    #paypal-button-container {
        width: 100%;
    }
}


/* Media query for desktop viewport */

@media screen and (max-width: 400px) {
    #paypal-button-container {
        width: 250px;
    }
}


/* inicio sesion */

.contenido-all.inicio {
    background-position: center center;
    background-size: cover;
    height: 100%;
    padding: 8.7rem;
}


/* Plantilla de formularios */

.header-forms {
    background-color: #222;
    padding: 20px 100px;
    margin-bottom: 1rem;
}

.header-forms h1 {
    line-height: 1;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
}

.header-forms p {
    line-height: 1.5;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.contenedor-form {
    width: 80%;
    margin: auto;
}

.footer-forms {
    background-color: #222;
    padding: 10px 80px;
}

.footer-forms p {
    color: #ffffff;
    margin: 0;
}


/*izquierda*/

.formulario-izquierda h1 {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 3rem;
}

.formulario-izquierda p {
    margin-top: 0;
    line-height: 25px;
    text-align: justify;
}

.formulario-izquierda label {
    text-transform: capitalize;
    font-size: 15px;
}


/*Derecha*/

.formulario-derecha h1 {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 3rem;
}

.formulario-derecha p {
    margin-top: 0;
    line-height: 25px;
    text-align: justify;
}

.formulario-derecha label {
    text-transform: capitalize;
    font-size: 15px;
}

.formulario-derecha a {
    color: #1d7cb3;
}

.formulario-derecha a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.radiobutton-block fieldset {
    overflow: hidden;
}

.formulario-derecha fieldset {
    overflow: hidden;
}

.radiobutton-block {
    clear: none;
}

.radiobutton-block p {
    float: left;
    clear: none;
    display: block;
    padding: 0px 15px 0px 0px;
    line-height: 0px 15px 0px 0px;
}

.radiobutton-block label {
    float: left;
    clear: none;
    display: block;
    padding: 2px 2em 0px 30px;
}

.radiobutton-block input {
    float: left;
    clear: none;
    display: block;
    padding: 8px 2em 0px 30px;
}


/* footer */

.site-footer {
    background-color: #333333;
    margin: 0;
    box-shadow: 0 10px 20px #333333c4 inset;
}

.contenedor-footer {
    padding: 3rem 0;
    text-align: center;
}

@media (max-width:768px) {
    .contenedor-footer {
        padding: 10px 0;
    }
}

.texto-footer {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    line-height: 18px;
}

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

.copyright {
    margin: 0;
    color: #ffffff;
    display: block;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright {
        display: flex;
        align-items: center;
    }
}

.navegacion-footer label {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    display: block;
}

.navegacion-footer a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

@media (min-width: 768px) {
    .navegacion-footer label {
        display: inline-block;
        font-size: 12px;
        margin-right: 0;
    }
    .navegacion-footer label:last-of-type {
        margin: 0;
    }
    .navegacion-footer a {
        font-size: 12px;
    }
}

.navegacion-footer label:hover {
    color: #8bcbff;
}

.navegacion-footer a:hover {
    color: #8bcbff;
    text-decoration: none;
}


/* Ventanas Modal */

.modal {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

#btn-modal:checked~.modal {
    opacity: 1;
    visibility: visible;
}

.contenedor-modal {
    width: 60%;
    height: 90%;
    margin: auto;
    background: #fff;
    box-shadow: 1px 7px 25px rgba(0, 0, 0, 0.6);
    transition: all 500ms ease;
    position: relative;
}

#btn-modal:checked~.modal .contenedor-modal {
    transform: translateY(0%);
}

.contenedor-modal header {
    padding: 10px;
    background: #145174;
    color: #ffffff;
}

.contenedor-modal label {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

#btn-modal {
    display: none;
}

.lbl-modal {
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

div.contenido-modal {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    padding: 3rem;
    text-align: justify;
}


/*Modal 2*/

.modal2 {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal2 {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
}

#btn-modal2:checked~.modal2 {
    opacity: 1;
    visibility: visible;
}

.contenedor-modal2 {
    width: 60%;
    height: 90%;
    margin: auto;
    background: #fff;
    box-shadow: 1px 7px 25px rgba(0, 0, 0, 0.6);
    transition: all 500ms ease;
    position: relative;
}

#btn-modal2:checked~.modal .contenedor-modal2 {
    transform: translateY(0%);
}

.contenedor-modal2 header {
    padding: 10px;
    background: #145174;
    color: #ffffff;
}

.contenedor-modal2 label {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
}

#btn-modal2 {
    display: none;
}

.lbl-modal2 {
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

div.contenido-modal2 {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    padding: 3rem;
    text-align: justify;
}

.lbl-modal3 {
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}


/* JUMBOTRON */

.jumbotron {
    color: white;
    background-image: url("../img/WP3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */


/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}


/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}


/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}


/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
    visibility: hidden;
}


/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}


/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}