@font-face {
    font-family: 'HankenBold';
    font-style: bold;
    font-weight: 700;
    src: local('HankenGrotesk-Bold'),
        url(HankenGrotesk-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Hanken';
    font-style: normal;
    font-weight: 500;
    src: local('HankenGrotesk-Regular'),
        url(HankenGrotesk-Regular.ttf) format('truetype');
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: var(--scroll-size, 10px);
    height: var(--scroll-size, 10px);
}

::-webkit-scrollbar-track {
    background-color: var(--scroll-track, transparent);
    border-radius: var(--scroll-track-radius, var(--scroll-radius));
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color, grey);
    background-image: var(--scroll-thumb, none);
    border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
}

body {
    font-family: 'Hanken';
    background: #080808;
    color: #eee;
    margin: 0;
    font-size: 1em;
    margin-top: 1em;
}

#raya {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: -10;
    background: #94c914;
    border-radius: 55px;
    transition: .2s;
}

#modoLectura,
#detener,
#reiniciar,
#cronometro {
    display: none;
}

.floating {

    display: flex;

    justify-content: space-between;

    position: sticky;

    bottom: 0;

    max-width: 450px;

    padding: 1rem 0;

    width: 100%;

    background: linear-gradient(0deg, black, transparent);
}

.opacity {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 125px;
    background: linear-gradient(270deg, #080808, transparent);
}


.active {
    color: #648e00;
    background: #94c914;
    border-radius: 50px;
}

.active:hover {
    color: #333;
}

section h2,
section p,
.pagination {
    flex: 0 0 auto;
    width: 100%;
}

.seccion .pagination {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    background: none;
    margin-top: .5em;
    margin-left: 60px;
    width: auto;
}

#Fotos .pagination,
#Videos .pagination {
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
}

.pagination strong,
.pagination a {
    background: #666;
    padding: 5px 10px;
    border-radius: 5px;
    margin: .5em;
    color: #94c914;
}

.pagination strong {
    color: #9cc241;
    border: solid;
}

.pagination a {
    /* background: #ddd; */
}

.pagination a:last-child {
    margin-right: 1.5em;
}

.seccion {
    flex: 1 1 auto;
    position: relative;
    max-width: 1270px;
    margin: 0 auto;
    padding: 2em 0;
    background: none;
    /* display: flex; */
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
}

.scroll-container {
    position: relative;
    justify-content: flex-start;
    display: flex;
    max-width: 1270px;
    width: 100%;
}

button {
    background: #49464600;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    align-self: center;
}

button>img {
    width: 15px;
    filter: brightness(0.5);
}

.scroll-right>img {
    transform: rotate(180deg);
}

button:hover>img {
    filter: brightness(.8);
}

.seccion div.scroll-on {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 5px;
    width: 100%;
}

div.scroll-on::-webkit-scrollbar,
#cuadro_im_prod_serv::-webkit-scrollbar {
    height: 0;
    width: 10px;
}

div.scroll-on::-webkit-scrollbar-thumb,
#cuadro_im_prod_serv::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 5px;
}

div.scroll-on::-webkit-scrollbar-thumb:hover,
#cuadro_im_prod_serv::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}

div.scroll-on::-webkit-scrollbar-track,
#cuadro_im_prod_serv::-webkit-scrollbar-track {
    background: #000;
    border-radius: 5px;
}


.seccion>div>img {
    width: 35px;
}

a {
    text-decoration: none;
    text-align: center;
    color: #ddd;
}

nav {
    position: sticky;
    top: 0;
    right: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
    border-radius: 50px;
}

nav.scrolled {
    background-color: #648e00;
    margin: 0 auto;
}

section {
    max-width: 1200px;
    text-align: center;
    background: #000;
    padding: 1em;
    margin: 0 auto;
}

aside {
    padding: 2em;
    /* background: #000; */
    color: #eee;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 15px 15px 0 0;
    margin-top: 2em;
}

aside a:hover>span {
    color: #d1f087;
}

aside a:hover>img {
    transform: scale(1.1) rotate(-5deg);
    filter: none;
}

aside a>img {
    width: 25px;
    height: auto;
    filter: grayscale(1);
    transition: .1s;
}

aside a,
aside div,
nav a,
nav>div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    transition: .1s;
    position: relative;
}

aside a,
nav a {
    padding: 2px 1em;
    flex-flow: column;
}

.videos_omar,
.fotos_omar {
    filter: grayscale(0);
}

nav a {
    flex-flow: row nowrap;
    align-items: center;
}

nav a {
    padding: .1rem 1rem;
    margin: 0;
    font-size: 1.1em;
    font-weight: lighter;
    color: #94c914;
    font-weight: bold;
}

nav a:hover {
    color: #d1f087;
}

nav>a {
    color: #94c914;
    padding: 5px 10px;
    border-radius: 9px;
    /* font-family: 'Jersey'; */
    font-size: 1.2em;
    /* background: rgba(0, 0, 0, .7); */
}

nav>a>img {
    width: 35px;
    margin-right: 8px;
}

nav a.logo {
    padding: 0;
    border: 0;
    background: no-repeat;
}


a.logo:hover {
    background: none;
}

nav a.logo img {
    width: 60px;
    margin-right: 15px;
}

nav a.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d1f087;
}

aside a>span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    margin-top: .5em;
    color: #999;
}

nav>a>span {
    color: #d1f087;
}

nav>a:hover {
    background: rgba(0, 0, 0, .1);
}

header,
article {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 1.5em;
}

article {
    background: #444444;
    border: solid 2px #080808;
    border-radius: 15px;
    padding: 25px;
    color: #9cc241;
    align-items: stretch;
    justify-content: flex-start;
    max-width: 320px;
    width: 100%;
    position: relative;
    padding-bottom: 60px;
}

.link_pat {
    color: #94c914;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

.link_pat:hover {
    transform: none;
}

#lectura {
    position: fixed;
    transition: all 0.3s cubic-bezier(0, 0.79, 0.86, 1.26);
    border: solid 1px #333;
}

#lectura {
    padding: 1em;
    padding-bottom: 0;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(100px);
    border-radius: 0;
    overflow: auto;
    visibility: hidden;

    display: table-cell;
    vertical-align: bottom;
}

#lectura textarea,
#lectura input {
    border: 0;
    border-radius: 0;
    background: #000;
    color: #ccc;
    font-size: 2em;
    padding: 0;
    margin: 1rem;
    resize: none;
    border-radius: 10px;
}

#lectura>div {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    /* position: absolute; */
    /* bottom: 0; */
    height: max-content;
}

#lectura div.marcar {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
    color: #000;
}

#lectura div.marcar img {
    width: 30px;
    margin-right: 10px;
    cursor: pointer;
}

#lectura div.marcar span {
    color: #d1f087;
    font-size: 1.rem;
}

#lectura button {
    background: #d1f087;
    color: #080808;
    padding: .5em 1em;
    margin-left: 10px;
    font-size: 1.5rem;
    border: 0;
    cursor: pointer;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    transition: .1s ease;
}

#lectura button:hover {
    background: #d1f087;
    transform: rotate(-5deg);
    box-shadow: 0 0 40px 5px #94c914;
}

#lectura textarea {
    width: 100%;
    font-size: 1.5em;
    color: #ccc;
    background: none;
}

.tituloText {
    font-size: 2rem;
    margin: 1rem 0;
}

#lectura .hoja1 {
    width: 100%;
    font-size: 1.5em;
    color: #ccc;
    background: none;
}

#lectura input[type="text"] {
    width: 75%;
    margin-left: 0;
}

#lectura input[readonly] {
    width: 95px;
}

header {
    width: auto;
    /* height: 350px; */
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 50px;
    margin-top: 15px;
    background-color: #000;
}

section>h2 {
    font-family: 'HankenBold';
    font-size: 2em;
    margin: 0 .5em;
    margin-left: 80px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: normal;
    width: auto;
    color: #d1f087;
}

#Fotos article,
#Videos article {
    max-width: 320px;
    height: 480px;
    overflow: hidden;
    padding: 0;
}

#Fotos .moretext,
#Videos .moretext {
    padding: 1em;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #000000d9, transparent);
}

article img {
    height: 30px;
    transition: .1s;
    /* filter: invert(1); */
}

article>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    margin: 0;
    cursor: pointer;
}

article>img:hover {
    opacity: 1;
}

.btn-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: none;
    margin: 0;
    cursor: pointer;
}

article h2 {
    flex: 1 1 auto;
    width: auto;
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-align: left;
    color: #eee;
}

article span {
    border-radius: 3px;
    padding: 0 .5em;
}

article .acciones>span {
    font-size: .9em;
    color: #444444;
    background: #9cc241;
}

#Fotos .acciones>span,
#Videos .acciones>span {
    color: #333;
}

.acciones {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 10px 20px;
    align-items: flex-end;
}

.acciones>a {
    display: flex;
    align-items: center;
    color: #d1f087;
    border: solid 2px #94c914;
    padding: 3px 7px;
    border-radius: 3px;
}

#Videos .acciones>a,
#Fotos .acciones>a {
    /* background: #333; */
    /* color: #eee; */
}

.acciones>a:hover {
    background: #94c914;
    color: #444;
}

#Videos .acciones>a:hover,
#Fotos .acciones>a:hover {
    background: #94c914;
    color: #444;
}


#Fotos .acciones,
#Videos .acciones {
    position: static;
    display: flex;
    justify-content: space-between;
    padding: 0;
    background: none;
    margin-top: 20px;
}

.acciones>div {
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.acciones>div>span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
}

.acciones img {
    width: 30px;
    height: auto;
    margin: 0;
    margin-right: 5px;
    transition: .1s;
}

#Fotos .acciones img,
#Videos .acciones img {
    /* filter: invert(1); */
}

article p {
    margin: .5em 0;
    text-align: left;
    color: #adadad;
}

article.actual {
    color: #333;
    background: #e9e9e2;
}

article.actual h3 {
    background: #111;
    color: #e9e9e2;
}

article>div {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

header h1,
header h2 {
    padding: 0;
    font-weight: normal;
    margin: 5px 10px;
    text-shadow: 0 2px 5px BLACK;
    color: #eee;
}

header h1 {
    font-size: 4rem;
    color: #d1f087;
}

header a {
    font-size: 1.2em;
    color: #444;
    padding: .5rem 1.5rem;
    border-radius: 100px;
    margin: 1.5em 0 .5em 0;
    transition: .1s;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: solid 2px;
    background: #94c914;
    gap: 10px;
}

header a.second {
    background: #f8ffe8;
}

header a.second img {
    height: 25px;
}

header div.header-links {
    display: flex;
    gap: 20px;
}

header a:hover {
    transform: scale(1.05);
}

header a img {
    height: 30px;
    filter: brightness(0.5);
}

article>a {
    padding: .3em 1em;
    margin: 1em auto;
    border-radius: 100px;
    width: max-content;
    font-size: 1.2em;
    color: #000;
    border: solid 2px;
    margin-bottom: .5em;
    transition: .1s;
}

article>a:hover {
    transform: scale(1.1);
}

h3 {
    align-items: center;
    flex: 0 0 auto;
    font-size: 1.5em;
    margin: 0;
    background: #333;
    /* width: 1em; */
    /* height: 1em; */
    color: #ccc;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    font-weight: normal;
    padding: 5px 10px;
}

p.social img {
    width: 30px;
    vertical-align: middle;
    margin: .5em .5em 0 .5em;
}

p.social a {
    display: inline-block;
}

p.social a:hover {
    transform: scale(1.1) rotate(-5deg);
}

.active:hover {
    color: #648e00;
}

header>img {
    width: 90px;
    height: auto;
}

article:hover img:first-child {
    transform: scale(1.1);
}

footer {
    max-width: 1200px;
    margin: 2em auto;
    border-radius: 0 0 15px 15px;
    padding: 2em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1f087;
    padding-top: 0;
}

footer>div {
    display: flex;
}

footer>div img {
    width: 30px;
}

#cuadro_im_prod_serv {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1002;
    padding: 25px;
    background: rgba(0, 0, 0, .5);
    display: none;
    font-size: 1.2em;
    color: #fff;
}

#imagen_prod_serv {
    width: 100%;
    height: 100%;
    transition: all 0.1s ease-in-out;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
}

#zoom_im_prod_serv>img[alt="cerrar"] {
    width: calc(30px + 20px);
    height: auto;
    padding: 10px;
    cursor: pointer;
    background: #000;
    border-radius: 50%;
}

#zoom_im_prod_serv>img[alt="cerrar"]:hover {
    transform: scale(1.1) rotate(-5deg);
}

#zoom_im_prod_serv {
    position: sticky;
    left: 0;
    bottom: 20px;
    right: 0;
    z-index: 10;
    margin: 1em;
}

#cuadro_im_prod_serv {
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(50px);
    overflow: auto;
    padding: 0;
    position: fixed;
    text-align: center;
}

@media screen and (max-device-width:1250px),
(max-width:1250px) {

    body {
        display: block;
        width: auto;
        height: auto;
        overflow-y: auto;
    }

    aside a>span {
        flex: 1 1 auto;
        width: 100%;
        font-size: .9em;
    }

    .seccion {
        padding: 1em;
    }

    article>a {
        font-size: 1em;
    }

    header {
        margin: 0 30px;
        margin-top: 15px;
    }

}


@media screen and (max-device-width:600px),
(max-width:600px) {

    header div.header-links {
        display: block;
        width: 100%;
    }

    nav a.logo span {
        display: none;
    }

    section>h2,
    .seccion .pagination {
        margin-left: 30px;
    }

    .opacity {
        display: none;
    }

    .seccion {
        padding: 1em 0;
    }

    body {
        background-position-y: 0;
        background-position-x: center;
        background-size: 400%;
        margin-top: 0;
    }

    footer {
        width: auto;
        border-radius: 0;
    }

    header {
        margin: 0 15px;
        margin-top: 15px;
        background-position-x: 25%;
    }

    p,
    b,
    .link_activo {
        width: 100%;
        flex: 1 1 auto;
    }

    nav {
        border-radius: 0 0 33px 33px;
    }

    nav a:last-child {
        display: none;
    }

}

@media screen and (max-device-width:480px),
(max-width:480px) {

    header {
        padding: 1rem;
    }

    header a {
        width: 100%;
    }

    header span {
        width: 100%;
        text-align: center;
    }

    nav {
        border-radius: 25px;
        padding: 10px;
        margin: 5px;
    }

    nav a {
        font-size: 1em;
        padding: .1rem .7rem;
    }
}

@media screen and (max-device-width:380px),
(max-width:380px) {


    nav {
        border-radius: 25px;
        padding: 5px;
    }

    nav a {
        font-size: 1em;
        padding: .1rem .6rem;
    }
}