@font-face {
    font-family: "Platypi-ExtraBold";
    src: url("/work/models/memorica/recursos/Type/Platypi-ExtraBold.ttf");
}

@font-face {
    font-family: "Platypi-ExtraBoldItalic";
    src: url("/work/models/memorica/recursos/Type/Platypi-ExtraBoldItalic.ttf");
}

@font-face {
    font-family: "Platypi-SemiBold";
    src: url("/work/models/memorica/recursos/Type/Platypi-SemiBold.ttf");
}

@font-face {
    font-family: "Platypi-SemiBoldItalic";
    src: url("/work/models/memorica/recursos/Type/Platypi-SemiBoldItalic.ttf");
}

@font-face {
    font-family: "Platypi-Regular";
    src: url("/work/models/memorica/recursos/Type/Platypi-Regular.ttf");
}

@font-face {
    font-family: "JetBrainsMono-Bold";
    src: url("/work/models/memorica/recursos/Type/JetBrainsMono-Bold.ttf");
}

@font-face {
    font-family: "JetBrainsMono-MediumItalic";
    src: url("/work/models/memorica/recursos/Type/JetBrainsMono-MediumItalic.ttf");
}

@font-face {
    font-family: "JetBrainsMono-Regular";
    src: url("/work/models/memorica/recursos/Type/JetBrainsMono-Regular.ttf");
}

@font-face {
    font-family: "Caveat-Bold";
    src: url("/work/models/memorica/recursos/Type/Caveat-Bold.ttf");
}


:root {
    --black: #000;
    --white: #FFFFFF;
    --red-light: #F22816;
    --red-brick: #A60303;
    --red-brick-light: #BF0413;
    --brown-light: #590202;
    --brown-dark: #260101;

}


/* barra de navegacion */
#mainNav {
    background-color: var(--red-brick);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    opacity: .98;
    transition: background-color 0.2s ease;
    z-index: 100;
}

#mainNav .navbar-brand {
    color: var(--white);
}


svg.btnShare>path,
svg.btnShare>rect {
    fill: var(--white);
}

svg.btnShare:hover>path,
svg.btnShare>rect {
    fill: #c5c9ce;
    transition: .35s;
}

svg.btnDescarga:hover>path {
    fill: #c5c9ce;
    transition: .35s;
}


/* ----------------------- MENU ----------------------- */
.mini {
    width: 5.3%;
}

.modal-header h5 {
    color: var(--white);
    font-family: "Platypi-SemiBold", sans-serif;
    font-size: 1.5rem;
}

.button-facebook,
.button-twitter {
    color: var(--red-brick);
    font-family: "JetBrainsMono-Regular", serif;
    font-size: 1.3rem;
}

svg.button-facebook>path,
svg.button-twitter path {
    fill: var(--red-brick);
}

.button-container {
    position: relative;
    width: 35px;
    height: 27px;
    cursor: pointer;
    transition: opacity .25s ease;
    z-index: 1;
}

.button-container:hover span {
    /* opacity: .7; */
    background: var(--white);

}

.button-container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: var(--white);
}

.button-container.active .middle {
    opacity: 0;
    background: var(--white);
}

.button-container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: var(--white);
}

.button-container span {
    background: var(--white);
    border: none;
    height: 5px;
    width: 35px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

.button-container span:nth-of-type(2) {
    top: 11px;
}

.button-container span:nth-of-type(3) {
    top: 22px;
}


/* LOADER */

#loader {
    z-index: 5;
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--gray);
    margin: 0;
}

.loader {
    color: #ffffff;
    font-size: 20px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

#loader h1 {
    color: #FFF;
}


.overlay {
    z-index: 10;
    position: fixed;
    background: var(--red-light);
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    z-index: 1;
}


.overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.overlay.open li {
    animation: fadeInRight .5s ease forwards;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    animation-delay: .5s;
}

.overlay.open li:nth-of-type(5) {
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    animation-delay: .6s;
}

.overlay.open li:nth-of-type(7) {
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    animation-delay: .7s;
}


.overlay nav {
    position: relative;
    height: 50%;
    top: 40%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: 450;
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    display: flex;
    /* height: 7%; */
    /* min-height: 50px; */
    position: relative;
    opacity: 0;
    justify-content: center;
}

.overlay ul li a {
    font-family: "Platypi-Regular", sans-serif;
    font-size: 1.25rem;
    text-align: left;
    display: block;
    position: relative;
    color: var(--white);
    text-decoration: none;
    overflow: hidden;
    line-height: 1;
    padding: 1.5rem 1rem;
    transition: 1S;
}

.overlay ul li:hover {
    background-color: var(--white);
    width: 100%;
    margin: 0 auto;
}

.overlay ul li:last-child{
     background-color: var(--red-light);;
}

.overlay ul li a:hover {
    color: var(--black);
}


.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

.overlay-menu {
    z-index: 2;
}

a:hover {
    text-decoration: none;
}

.close {
    float: right;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    opacity: 1;
    border: 0;
    background: none;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}


a.btnMenu:hover,
a.btnMenu_activo {
    color: var(--white);
    transition: .35s;
}

a {
    text-decoration: none;
    color: var(--black);
}

.menu-list span {
    color: var(--rey-blue);
}

.menu-list {
    transition: 1s;
}

.menu-list:hover {
    transform: scale(1.02);
    transition: 1s;
}

a.share:focus {
    outline: none;

}

.banner-collapse {
    transition: .5s ease-out 10ms;
    -webkit-transition: .5s ease-out 10ms;
    -moz-transition: .5s ease-out 10ms;
    -o-transition: .5s ease-out 10ms;
    cursor: pointer;
}

.banner-collapse-footer {
    padding: 1rem 0;
    background-color: var(--dark-purple);
    transition: .5s ease-out 10ms;
    -webkit-transition: .5s ease-out 10ms;
    -moz-transition: .5s ease-out 10ms;
    -o-transition: .5s ease-out 10ms;
    cursor: pointer;

}

.banner-collapse:hover {
    transform: scale(1.02);
    /* -webkit-box-shadow: 5px 5px 20px 0px rgba(157, 171, 173);
    -moz-box-shadow: 5px 5px 20px 0px rgba(157, 171, 173);
    box-shadow: 5px 5px 20px 0px rgba(157, 171, 173); */
}

h1 {
    font-family: "Oswald-Medium", sans-serif;
    color: var(--white);
}

h2 {
    font-family: "JetBrainsMono-Regular", serif;
    font-weight: bold;
    color: var(--red-brick-light);
}

h3 {
    font-family: "JetBrainsMono-Regular", serif;
    font-weight: bold;
    color: var(--brown-light);
}

p {
    font-family: "JetBrainsMono-Regular", serif;
    font-size: 1.2rem;
    text-align: left;
    color: var(--brown-light);
    /* line-height: normal; */
}

p.cita {
    font-family: "Caveat-Bold", sans-serif;
    font-size: 2rem;
    color: var(--brown-dark);
}

.pie-foto {
    font-family: "Optima-Bold";
    font-size: 1rem;

}

.white {
    color: var(--white);
}


.efecto-hover:hover {
    transform: scale(1.050);
    -webkit-transform: scale(1.050);
    -moz-transform: scale(1.050);
    -ms-transform: scale(1.050);
    -o-transform: scale(1.050);
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    cursor: pointer;
}

.efecto-hover {
    transition: 1s;
}

.efectoboton {
    transform: scale(1);
    transition: 300ms;
}

.efectoboton:hover {
    transform: scale(1.1);
    transition: 300ms;
}


:focus {
    outline: none;
}

a.input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

*:focus {
    outline: none;
}


/* ==================================== Galeria ================================= */
/* ============================================================================== */


.tz-gallery .lightbox img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    transition: 0.2s ease-in-out;
    /* filter: drop-shadow(3px 1px 6px rgba(0, 0, 0, 0.5)); */
}

.tz-gallery .lightbox img:hover {
    transform: scale(1.02);
    /* box-shadow: 0 8px 15px rgba(0,0,0,0.3); */
}

.grid-gallery {
    display: grid;
    grid-auto-rows: auto;
    gap: 1.5rem;
    grid-auto-flow: row dense;
    grid-template-columns: repeat(1, 1fr);
}

.grid-gallery__image {
    object-fit: contain;
}

@media all and (min-width: 438px) {
    .grid-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media all and (min-width: 768px) {
    .grid-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (min-width: 1024px) {
    .grid-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: auto;
    }

}

.grid-gallery__item {
    grid-row: span 1;
}

/**/
#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: #222;
    background-color: rgba(0, 0, 0, .8);
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease
}

#baguetteBox-overlay.visible {
    opacity: 1
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: var(--brown-dark);
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%
}

#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: 100%;
    /* height: 100%; */
    height: 85%;
    max-height: auto;
    max-width: auto;
    vertical-align: middle;
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: 0 0 8px rgba(0, 0, 0, .65);
    object-fit: cover;
}

p.txt-carrusel {
    color: var(--red-light);
    font-size: 1rem;
}

@media all and (min-width: 438px) {
    #baguetteBox-overlay .full-image img {
        width: auto;
        height: auto;
        max-height: 85%;
        /* max-height: 100%; */
        max-width: 100%;
    }
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: left;
    line-height: 1.4;
    white-space: normal;
    color: var(--white);
    background-color: var(--brown-dark);
    padding: 1rem 10vw 1.5rem;
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 48%;
    /* width: 1px;
    margin-right: -1px */
}

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease
}

#baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight .4s ease-out;
    animation: bounceFromRight .4s ease-out
}

#baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft .4s ease-out;
    animation: bounceFromLeft .4s ease-out
}

@-webkit-keyframes bounceFromRight {

    0%,
    100% {
        margin-left: 0
    }

    50% {
        margin-left: -30px
    }
}

@keyframes bounceFromRight {

    0%,
    100% {
        margin-left: 0
    }

    50% {
        margin-left: -30px
    }
}

@-webkit-keyframes bounceFromLeft {

    0%,
    100% {
        margin-left: 0
    }

    50% {
        margin-left: 30px
    }
}

@keyframes bounceFromLeft {

    0%,
    100% {
        margin-left: 0
    }

    50% {
        margin-left: 30px
    }
}

.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
    height: 60px
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    -moz-border-radius: 15%;
    border-radius: 15%;
    background-color: transparent;
    /* color: #C49955; */
    font: 1.6em sans-serif;
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, .4)
}

.baguetteBox-button#next-button {
    right: 2%
}

.baguetteBox-button#previous-button {
    left: 2%
}

.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: calc(2% + 6px);
    width: 30px;
    height: 30px
}

/*color custom botton cerrar*/
.baguetteBox-button#close-button svg g {
    stroke: var(--red-light);
}

.baguetteBox-button#next-button svg polyline,
.baguetteBox-button#previous-button svg polyline {
    stroke: var(--red-light);
}

/**/

.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0
}

.baguetteBox-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
    width: 100%;
    height: 100%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out
}

.baguetteBox-double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1)
    }
}

.ObjetoDigital {
    display: grid;
    justify-items: center;
    cursor: pointer;
    font-family: "JetBrainsMono-Bold", sans-serif;
    font-size: 1.2rem;
    padding: .5rem 1.5rem;
    text-decoration: none;
    float: right;
    background-color: var(--red-light);
    transition: all 0.2s ease-in-out;
}

.ObjetoDigital a {
    color: var(--white);
}

.ObjetoDigital:hover {
    background-color: var(--red-brick);
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

.ObjetoDigital:active {
    position: relative;
    top: 1px;
}

.pie-foto-box {
    width: 80%;
}

.box-txt-carrusel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* .banner-collapse img{
   
    transition: transform 1s ease;
}

.banner-collapse:hover img{
    transform: translateX(-50%);
}
 */

.img-portada, .img-banner{
    width: 100%;
}


/*media queries*/

@media(max-width:320px) {
    .overlay ul li {
        height: auto;
    }

    .overlay ul li a {
        padding: .65rem 1rem;
        font-size: 1rem;
    }

    .overlay-menu {
        margin: 0rem 2.5rem;
    }

    .box-txt-carrusel {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

}

@media (min-width:320.98px) and (max-width: 576.98px) {

    .overlay ul li {
        height: auto;
    }

    .overlay ul li a {
        padding: .65rem 1rem;
        font-size: 1rem;
    }

    a.inicio {
        font-size: 2rem !important;
    }

   

    .overlay-menu {
        margin: 0rem 2.5rem;
    }

    .box-txt-carrusel {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }



}

@media (min-width: 577px) and (max-width: 767.98px) {

    .overlay ul li a {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .overlay ul {
        margin: 0 1rem;
    }

    .overlay ul li {
        height: auto;
    }



    .overlay-menu {
        margin: 0rem 3rem;
    }

    .box-txt-carrusel {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

}



@media (min-width: 768px) and (max-width: 992.98px) {

    .overlay ul li a {
        font-size: 1.7rem;
        padding: 1rem;
    }

    .overlay ul {
        margin: 0 1rem;
    }

    .overlay ul li:hover {
        width: 80%;

    }

    .overlay-menu {
        margin: 0rem 3.5rem;
    }

    .masthead{
        background-image: "/work/models/memorica/recursos/exposiciones/lucero_hellmer/img/portada-lucero-hellmer.jpg";
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        
    }


}


@media (min-width: 993px) and (max-width:1199.98px) {

    .overlay ul li a {
        font-size: 1.7rem;
        padding: 1rem;
    }

    .overlay-menu {
        margin: 0rem 6rem;
    }

    .overlay ul li:hover {
        width: 70%;

    }

}



@media (min-width: 1200px) and (max-width:1919px) {

    .overlay ul li a {
        font-size: 2rem;
        padding: 1rem;
    }

    .page-section {
        padding: 1.5rem 0;
    }

    .overlay ul li:hover {
        width: 50%;

    }

    .overlay-menu {
        margin: 0rem 8rem;
    }



}



@media (min-width: 1920px) {
    .overlay ul li a {
        font-size: 2.2rem;
        padding: 1.5rem;
    }



    .overlay-menu {
        margin: 0rem 10rem;
    }

    .overlay ul li:hover {
        width: 50%;

    }

}