:root {
    --normal-font: "Scope One", serif;
    --terminal-font: "Victor Mono", inconsolata, consolas, monospace;
    --header-font: "Montserrat", "Times New Roman", fantasy;
    --cursive-font: "Bellota", "Scope One", serif;
    --wrapper-width: 1024px;
    --font-size: 21px;
    --font-weight: 400;
    --desktop-limit: 1200px;
    --nav-sidebar-menu: 60px;
    --nav-topic-width: 100px;
    --nav-double-sidebar: calc(var(--nav-sidebar-width) + var(--nav-sidebar-menu));
    --nav-sidebar-width: calc(100vw - var(--nav-sidebar-menu));
    --theme-item: rgba(228, 79, 38, 0.85);
    --theme-gradient: #f26626 linear-gradient(#f26626 50%, #e54e21 0);
    --theme-color: #e54e21;
}

* {
    box-sizing: border-box;
    font-family: sans-serif;
    padding: 0px;
}

body {
    background-image: linear-gradient(to right, #ECF0F1, #A3E4D7);
    /*si lo habilito el cuerpo no cubre el total de la página*/
    /*display: flex;*/
    min-height: 100vh;
    flex-wrap: wrap;
}

header {
    background-image: linear-gradient(to left, #EC7063, #3498DB);
    width: 100%;
    height: 100%;
    text-align: center;
    margin: -08px;
    position: absolute;
}

h1 {
    text-align: center;
    align-items: center;
    /*height: 70%*/
    ;
    /*top: 30px;*/
    /*border-top: 20%;*/
    font-family: 'Otomanopee One', sans-serif;
}

.titulo-inform {
    height: 90px;
    width: 90%;
    left: 20px;
    padding: 2px 2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.titulo-cont {
    text-align: center;
    padding: 2px 5px;
    position: relative;
    right: -50px;
    font-family: cursive;
    font-size: 22px;
}

.card-header {
    width: 100%;
    height: 100px;
    text-align: right;
    padding: 17px;
    /*position: fixed;*/
    top: 0px;
    border: 2px black;
}

.card-header li {
    list-style: none;
    /*quita las viñetas que se ponen por default*/
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-family: sans-serif;
    /*cambia el cursos por una manita cuando el mouse pasa por encima*/
    cursor: pointer;
}

.card-header li a {
    text-decoration: none;
    color: #2f4c6b;
    cursor: pointer;
    text-align: right;
    position: relative;
    width: 100%;
    height: 100px;
    /*padding: 10px;*/
    /*position: fixed;*/
    top: -80px;
    border: black 2px;
}

.bienvenida {
    text-align: initial;
    height: 50%;
    width: 55%;
    font-size: 30px;
    background: none;
    font-family: 'Otomanopee One', sans-serif;
    text-align: center;
    align-items: center;
    position: relative;
    margin-right: 0px;
    top: -18px;
}

.Nav-menu-visible {
    text-align: right;
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px;
    /*position: fixed;*/
    top: 0px;
    border: black 2px;
}

.header-navigation h2 ul {
    border-radius: rgb(10, 9, 9) 1.5px;
    text-align: left;
    height: 50%;
    width: 60%;
    font-size: 30px;
    background: none;
    font-family: 'Otomanopee One', sans-serif;
    text-align: center;
    align-items: center;
    position: relative;
    margin-right: 0px;
}

.menu-link {
    border-radius: rgb(20, 20, 20) 1.5px;
}


/**************   REDES   *************/

.redes-bar {
    width: 100%;
    max-width: 55px;
    position: fixed;
    left: 0;
    top: 25%
}

.redes-activas {
    text-align: center;
    font-size: 12px;
}

.redes-bar a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 17px;
    position: relative;
    transition: all 500ms ease;
    color: #fff;
}

.redes-bar a:hover {
    background: #1c1c1c;
}

.redes-bar .icon-instagram {
    background: #3f729b;
    border-radius: 0px 5px 0px 0px;
}

.redes-bar #title {
    position: fixed;
    background: #1c1c1c;
    padding: 6px;
    border-radius: 3px;
    font-size: 15px;
    margin-top: -2px;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    /*para ocultar*/
}

.redes-bar a:hover #title {
    /*letrero cuando pasa el mouse*/
    opacity: 1;
    visibility: visible;
    margin-left: 35px;
}

.redes-bar #title:after {
    position: absolute;
    content: '';
    border-left: 7px solid transparent;
    border-right: 6px solid #1c1c1c;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    right: 100%;
    top: 8px
}

#btn-social {
    display: none;
}

.icon-play-1 {
    cursor: pointer;
    transition: all 0.4s;
    font-size: 12px;
    margin-bottom: 8px;
    display: inline-block;
    transform: rotate(180deg);
    color: #49b0e6;
}

#btn-social:checked~.icon-play-1 {
    transform: rotate(180deg);
}

.icon-social {
    transition: all 0.4s;
    transform: translateX(0%);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.9);
    width: 65px;
}

#btn-social:checked~.icon-play-1 {
    transform: translateX(100%);
}


/***************************    Contenidos    **************************/

.container {
    height: 100%;
    width: 150vh;
    /*border-radius: 5px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    /*mueve de posisión las cajas*/
    margin-top: 0px;
}

.caja {
    width: 400px;
    height: 420px;
    position: relative;
    /*para ocultar las dimensiones de lo que sobra*/
    overflow: hidden;
    /*separa una caja de la otra*/
    margin: 20px;
    /*asigna anchor estilo y color */
    border: 3px solid #fff;
}

.caja img {
    width: 100%;
    height: 100%;
}

.capa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* genera fondo transparente*/
    /*centra el texto contenido en las cajas*/
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: scale(0);
    /*Para que se oculte*/
    transition: .3s ease;
}

.caja:hover .capa {
    transform: scale(1);
}


/****************************   Section Maps********      ************************/

.location-form {
    background: rgba(228, 79, 38, 0.85);
    padding: 10px 15px;
    width: 700px;
    height: 450px;
}

.billingStreet {
    padding: 30px 60px;
    text-align: center;
}


/*********************************************************************************/


/****************************   Footer o Pie de página   *************************/

footer {
    /**** hace que siempre esté al final del contenido ****/
    align-self: flex-end;
    background: #111;
    color: #eee;
    /*font-family: var(--normal-font);*/
    line-height: 150%;
    text-align: center;
    position: relative;
    transition: left .25s, width .25s;
    /*width: 100%;*/
    /*max-width: 100%;*/
    height: 11%;
    padding: 25px;
    margin: -8px;
}

.copyright {
    font-size: 12px;
    text-align: right;
    margin-top: -22px;
    line-height: 150%;
    font-family: sans-serif;
    margin-top: 08px;
}

.textfooter {
    font-size: 12px;
    text-align: left;
    font-family: sans-serif;
    top: 30px;
    padding: inherit;
    text-align: left;
    margin-top: -45px;
}

.leyenda {
    text-align: center;
}

.icon-footer {
    width: 200px;
    margin-top: -80px;
    padding: inherit;
    height: 100%;
    border-end-end-radius: 0;
}