/* =============== LC FRONT-PAGE =============== */

.home .site-header {
    display: none;
}

.site-footer {
    background-color: #231f20;
    padding: 0.75rem 0;
    border: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 6.4rem;
}

.site-footer .title-area {
    width: 100%;
    padding: 0 !important;
}

.lc-inicio-portada .col,
.lc-inicio-portada .row {
    padding: 0 !important;
}

.lc-inicio-eventos {
    height: 92vh;
    position: relative;
    color: #fcaf16;
}

/* .lc-inicio-eventos:before,
.lc-inicio-tienda:before,
.lc-inicio-renting:before {
	content: "";
	display: block;
	height: 100px;
	width: 100px;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 2%;
	margin-top: 2%;
	border-left: solid #FCAF16 10px;
	border-top: solid #FCAF16 10px;
	z-index: 999;
}

.lc-inicio-eventos:after,
.lc-inicio-tienda:after,
.lc-inicio-renting:after {
	content: "";
	display: block;
	height: 100px;
	width: 100px;
	position: absolute;
	bottom: 0;
	right: 0;
	margin-right: 2%;
	margin-bottom: 2%;
	border-right: solid #FCAF16 10px;
	border-bottom: solid #FCAF16 10px;
	z-index: 999;
}*/

.lc-inicio-tienda {
    height: 100vh;
    position: relative;
    color: #fcaf16;
}

.lc-inicio-renting {
    height: 100vh;
    position: relative;
    color: #fcaf16;
}

.lc-inicio-renting img,
.lc-inicio-tienda img,
.lc-inicio-eventos img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    z-index: -99999999;
    object-fit: cover;
    height: 100%;
    position: absolute;
    left: 0;
    width: 100%;
}

.lc-inicio-portada a:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.lc-inicio-eventos h1,
.lc-inicio-tienda h1,
.lc-inicio-renting h1 {
    /*position: absolute;*/
    padding: 1rem 2rem 0 2rem;
    margin: 0;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    top: -3%;
    left: 7%;
    text-align: left;
    width: 100%;
    text-shadow: 0.2rem 0.2rem 0.2rem #000;
}
.lc-inicio-eventos h3,
.lc-inicio-tienda h3,
.lc-inicio-renting h3 {
    font-size: 2rem;
    text-align: left;
    padding: 0 2rem;
    margin: 0;
    text-shadow: 0.2rem 0.2rem 0.2rem #000;
}

.lc-inicio-portada a:hover h1,
.lc-inicio-tienda a:hover h1,
.lc-inicio-renting a:hover h1,
.lc-inicio-portada a:hover h2,
.lc-inicio-tienda a:hover h2,
.lc-inicio-renting a:hover h2 {
    color: #fcaf16 !important;
    text-shadow: 0.2rem 0.2rem 0.2rem #000;
}

.lc-inicio-eventos h2,
.lc-inicio-tienda h2,
.lc-inicio-renting h2 {
    /*position: absolute;*/
    display: none;
    padding: 1rem 2rem;
    margin: 0;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    bottom: 2%;
    right: 7%;
    text-align: right;
    width: 100%;
    text-shadow: 0.2rem 0.2rem 0.2rem #000;
}

.lc-inicio-interior {
    margin: 1rem;
    height: 96.5%;
    background-color: rgba(0, 0, 0, 0.4);
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;*/
}

/* .lc-inicio-interior:before {
	content: "";
	display: block;
	height: 100px;
	width: 100px;
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 2%;
	margin-top: 2%;
	border-right: solid #FCAF16 10px;
	border-top: solid #FCAF16 10px;
	z-index: 999;
}

.lc-inicio-interior:after {
	content: "";
	display: block;
	height: 100px;
	width: 100px;
	position: absolute;
	bottom: 0;
	left: 0;
	margin-left: 2%;
	margin-bottom: 2%;
	border-left: solid #FCAF16 10px;
	border-bottom: solid #FCAF16 10px;
	z-index: 999;
}*/

.lc-inicio-contacto {
    line-height: 4rem;
}
.lc-inicio-social {
    font-size: 3rem;
    right: 5%;
}

.lc-inicio-social a {
    color: #fcaf16;
}

.lc-inicio-social i {
    margin-left: 0.25rem;
}

/* =============== LC Animación =============== */
.lc-animacion-body {
    animation-duration: 3s;
    animation-name: maribel;
    animation-delay: 1s;
}

@keyframes maribel {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.lc-animacion-footer {
    transform: translate(0, 85px);
    animation: mb-footer 1.5s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

@keyframes mb-footer {
    0% {
        transform: translate(0, 85px);
    }

    100% {
        transform: translate(0, 0px);
    }
}

.lc-animacion-1 {
    transform: translate(0, -100%);
    animation: mb-1 1s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes mb-1 {
    0% {
        transform: translate(0, -100%);
    }

    100% {
        transform: translate(0, 0px);
    }
}

.lc-animacion-2 {
    transform: translate(0, -200%);
    animation: mb-2 1s;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

@keyframes mb-2 {
    0% {
        transform: translate(0, -200%);
    }

    100% {
        transform: translate(0, 0px);
    }
}

.lc-animacion-3 {
    transform: translate(0, -100%);
    animation: mb-3 1s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes mb-3 {
    0% {
        transform: translate(0, -100%);
    }

    100% {
        transform: translate(0, 0px);
    }
}

/* =============== LC PAGINA DE PRECARGA Y SPINNER  =============== */
/*
 initialize rotation key frames,  
*/
@keyframes kf_spinner {
    to {
        transform: rotate(360deg);
    }
}

/*
The page overlay DIV, you can style it as you like, 
*/
#page-overlay {
    /*
    basic styles
    */
    text-align: center;
    color: #fcaf16;
    padding-top: 10px;
    font-size: 0.7em;
    display: block;
    background-color: #fff;

    /*
    important to work properly
    */
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999999999;
    /* highest top level layer */

    /*
    required for fade-out/fade-in animation effect
    */
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5 ease-in-out;
}

/*
show our loading layer
*/
#page-overlay.loading {
    opacity: 1;
    visibility: visible;
}

/*
hide our loading layer
*/
#page-overlay.loaded,
#page-overlay > span {
    opacity: 0;
}

/*
create the animated spinner
*/
#page-overlay.loading:before {
    /*
    required to work
    */
    content: '';
    box-sizing: border-box;
    position: absolute;

    /*
    centering the spinner on the page
    */
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 3rem;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;

    /*
    create the spinner with css, no image required 🙂
    */
    border-top: 2px solid #ff6f61;
    border-right: 2px solid transparent;

    /*
    animate the spinner
    */
    animation: kf_spinner 0.8s linear infinite;
}

.mb-btn {
    color: #fcaf16;
    cursor: pointer;
    display: block;
    font-size: 1.4rem;
    line-height: 45px;
    max-width: 160px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 25%;
    font-family: 'Open Sans Condensed', sans-serif;
}

.mb-btn-1 {
    background-color: transparent;
    font-weight: 100;
}

.mb-btn-1 svg {
    height: 45px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.mb-btn-1 rect {
    fill: none;
    stroke: #fcaf16;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}

.mb-btn-1:hover {
    font-weight: 900;
    letter-spacing: 1px;
    color: #fcaf16;
}

.mb-btn-1:hover rect {
    stroke-width: 5;
    stroke-dasharray: 15, 310;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 992px) {
    .site-footer {
        position: fixed !important;
        bottom: 0;
        width: 100%;
        height: 5.9rem;
    }
    .title-area {
        text-align: left !important;
    }
    .lc-inicio-social {
        text-align: right !important;
    }
    .lc-inicio-eventos,
    .lc-inicio-tienda,
    .lc-inicio-renting {
        height: 50svh !important;
    }
    .lc-inicio-eventos h2,
    .lc-inicio-tienda h2,
    .lc-inicio-renting h2,
    .lc-inicio-eventos h1,
    .lc-inicio-tienda h1,
    .lc-inicio-renting h1 {
        font-size: 5rem;
    }
}
