﻿
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

.navbar {
    background-image: linear-gradient(to top, transparent, #000);
}

.navbar-brand img {
    height: 150px;
    width: auto;
    display: block;
    filter: brightness(80%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

    .navbar-toggler:active,
    .navbar-toggler:focus {
        outline: none;
    }

.nav-link {
    color: #212121 !important;
    font-weight: 500;
    transition: all 200ms linear;
    text-decoration: none;
    float: right;
}

.nav-item:hover .nav-link {
    color: #8167a9 !important;
}

.nav-item.active .nav-link {
    color: #777 !important;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #8167a9;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

    /* #Primary style
================================================== */


    .nav-item .dropdown-menu {
        transform: translate3d(0, 10px, 0);
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        display: block;
        padding: 0;
        margin: 0;
        transition: all 200ms linear;
    }

    .nav-item.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 999px;
        transform: translate3d(0, 0px, 0);
    }

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fcfaff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all 200ms linear;
}

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: #fff;
        background-color: rgba(129,103,169,.6);
    }



/* #Media
================================================== */

@media (max-width: 767px) {
    h1 {
        font-size: 38px;
    }

    .nav-item:after {
        display: none;
    }

    .nav-item::before {
        position: absolute;
        display: none;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
    }

    .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    body.dark .nav-item::before {
        background-color: #fff;
    }

    body.dark .dropdown-toggle::after {
        background-color: #fff;
    }

    body.dark .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
    }
}




body {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 30px;
    margin: 0;
    background: #eee;
    overflow-x: hidden;
}




body, div {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
/* ============ Full Page Slider ================= */
.creative-fullpage--slider {
    background-color: #ffffff;
    z-index: 2;
    width: 100%;
    position: relative;
    flex-direction: column;
    height: 100vh;
    font-size: 16px;
    display: flex;
    clip-path: none !important;
}

    .creative-fullpage--slider .slider-inner {
        height: 100vh;
        position: relative;
    }

    .creative-fullpage--slider .swiper-slide {
        position: relative;
        display: flex;
        justify-content: center;
        text-align: left;
        flex-direction: column;
        overflow: hidden;
    }

.slider-inner {
    position: relative; /* necesario para que el overlay se posicione dentro */
    overflow: hidden;
}

    .slider-inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient( to right, #000000 20%, #000000c1 50%, transparent 100% );
        z-index: 1; /* debajo del contenido */
    }

    .slider-inner img {
        width: 100%;
        height: auto;
        display: block;
    }

    .slider-inner .swiper-content {
        position: relative;
        z-index: 2; /* encima del overlay */
        color: #fff; /* texto visible sobre el degradado */
    }

/* Ajuste para alturas en móviles */
.slider-inner, .creative-fullpage--slider {
    min-height: 100vh;
    height: 100%;
}


/* Ajuste de fuentes dinámicas */
.swiper-slide .slider-inner .swiper-content p.disc {
    font-size: clamp(14px, 2.5vw, 38px);
    line-height: 1.5;
    margin: 20px auto;
    width: 95%;
    color: #ffffffb0;
}


.swiper-slide .slider-inner .swiper-content .title-area .title {
    font-size: clamp(20px, 2vw, 36px);
    font-weight: 800;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    position: absolute;
    top: 22%;
    left: 50px;
    z-index: 1;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background-color: transparent;
    background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}

.swiper-slide .slider-inner .swiper-content .title-area .tag {
    color: #B9BC16c1;
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 40px;
    margin-top: 0px;
}

.adc {
    color: #ff3333c1;
    font-weight: bold;
    font-size: 80px;
    margin-top: 20px;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
    margin-top: 50px;
    color: #fff;
    font-size: 1.2vw;
    font-family: "Inter", sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: -2px;
    text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
    font-size: 38px;
    width: 100%;
    margin-top: 15px;
    margin: 20px 0px 40px 0px;
    font-weight: 400;
    line-height: 50px;
    color: #FFFFFFB0;
}

.creative-btn--wrap .creative-slide--btn {
    color: #ffffff;
    margin-left: 18px;
    font-size: 1.4em;
    transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
    font-weight: 400;
    display: inline-flex;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
    outline-color: transparent;
    box-shadow: none;
    will-change: transform;
    backface-visibility: hidden;
}

.creative-btn--circle .circle {
    position: absolute;
    right: calc(100% - 10px);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    clip-path: circle(25% at 50% 50%);
    transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

    .creative-btn--circle .circle .circle-fill {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 100%;
        background-color: #ffffff;
        will-change: transform;
        transform: scale(0);
        z-index: 1;
        transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
    }

.creative-btn--circle .circle-icon {
    transform: translate(-100%, 0%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 2;
    transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

    .creative-btn--circle .circle-icon .icon-arrow {
        width: 20px;
        height: 20px;
        stroke: none;
        fill: #000;
    }

.creative-btn--circle .circle-outline {
    fill: transparent;
    width: 10px;
    stroke: #ffffff;
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
    margin-left: 4pt;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
    position: absolute;
    left: 4pt;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
    transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
    transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
    margin-left: 38px !important;
}

    .creative-btn--wrap .creative-slide--btn:hover .circle {
        clip-path: circle(50% at 50% 50%);
    }

    .creative-btn--wrap .creative-slide--btn:hover .circle-fill {
        transform: scale(1, 1);
    }

    .creative-btn--wrap .creative-slide--btn:hover .circle-icon {
        transform: translate(0%, 0%);
        opacity: 1;
    }

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    bottom: 5%;
    top: unset;
    transform: scale(1);
    transition: all 0.4s;
    background-color: #FFFFFF00;
    backdrop-filter: blur(20px);
    height: 85px;
    width: 85px;
    line-height: 85px;
    border-radius: 50%;
    transition: all 0.4s;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
    right: 50px;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: 50px;
}

.swiper-container-h .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

    .swiper-container-h .slider-pagination-area .slide-range {
        font-size: 16px;
        font-weight: 500;
        margin: 0 15px;
        color: #ffffff;
        line-height: 0;
        position: absolute;
        font-size: 20px;
    }

        .swiper-container-h .slider-pagination-area .slide-range.one {
            left: -50px;
        }

        .swiper-container-h .slider-pagination-area .slide-range.three {
            right: -50px;
        }

    .swiper-container-h .slider-pagination-area .swiper-pagination {
        bottom: 0 !important;
        width: 500px !important;
    }

        .swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
            background: #ffffff;
        }

.swiper-container-h .swiper-button-next::after {
    content: "\f061";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 60px;
}

.swiper-container-h .swiper-button-prev::after {
    content: "\f060";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 60px;
}

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
    background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
    .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
        width: 100%;
        text-align: center;
        left: 0;
    }

    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        height: 50px;
        width: 50px;
        line-height: 50px;
    }

    .swiper-container-h .slider-pagination-area {
        width: 200px !important;
    }

    .swiper-container-h .swiper-button-next::after,
    .swiper-container-h .swiper-button-prev::after {
        font-size: 30px;
    }

    .creative-fullpage--slider .swiper-container-h .swiper-button-next,
    .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
        background: #ffffff3b;
    }

    .swiper-container-h .slider-pagination-area .swiper-pagination {
        bottom: 0 !important;
        width: 200px !important;
    }
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
    .swiper-slide .slider-inner .swiper-content .title-area .title {
        font-size: 24px;
    }

    .swiper-slide .slider-inner .swiper-content .title-area .tag {
        font-size: 42px;
        margin-bottom: 0px;
    }

    .logo {
        width: 50px !important;
        height: 50px !important;
    }

    .adc {
        font-size: 36px;
    }

    .p-cnt-v {
        width: 150px !important;
        height: 120px !important;
        left: calc(100% - 150px) !important;
        top: 0 !important;
        border-radius: 8px;
        overflow: hidden;
        max-width: 480px;
    }

    .video-overlay {
        top: 0 !important;
    }

    .swiper-slide .slider-inner .swiper-content p.disc {
        margin: 20px auto 20px auto;
        font-size: 14px;
        width: 95%;
    }

    .swiper-container-h .slider-pagination-area {
        display: none;
    }

    .swiper-slide .slider-inner .swiper-content p.disc br {
        display: none;
    }

    li:active {
        color: darkred !important;
    }
}
/* ====================== parte de los videos =============================== */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4);
    cursor: pointer;
    transition: opacity 0.3s;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    clip-path: polygon(30% 20%, 80% 50%, 30% 80%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.pause-btn {
    position: absolute;
    top: 45%;
    left: 45%;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.p-cnt-v:hover .pause-btn {
    opacity: 1;
}

.custom-play-btn,
.custom-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 2;
}

.custom-play-btn {
    opacity: 1;
}

.custom-pause-btn {
    opacity: 0;
}

/* Mostrar el botón pausa al hacer hover */
.video-wrapper:hover .custom-pause-btn {
    opacity: 1;
}

/* ====================== parte de la animacion imagen =============================== */
.slider-inner {
    width: 100%;
    height: 100vh; /* pantalla completa */
    overflow: hidden; /* para que no se vean bordes */
    position: relative;
}

.ani {
    width: 110%; /* un poco más grande para que no se corte */
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 10s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.5);
    }
}
/* ====================== parte de los option =============================== */

{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    font-family: "Roboto", sans-serif;
    transition: 0.25s;
}

body.dark {
    background: #232223;
    color: white;
}

@media (prefers-color-scheme: dark) {
    body:not(.light) {
        background: #232223;
        color: white;
    }
}

.options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    min-width: 600px;
    max-width: 900px;
    width: calc(100% - 100px);
    height: 400px;
}

@media screen and (max-width: 718px) {
    .option {
        width: 50px !important;
        flex-grow: 0 !important;
    }

    .options .option.active {
        width: 200px !important;
        flex-grow: 0 !important;
    }
}

@media screen and (max-width: 638px) {
    .option {
        width: 50px !important;
        flex-grow: 0 !important;
    }

    .options .option.active {
        width: 200px !important;
        flex-grow: 0 !important;
    }
}

@media screen and (max-width: 558px) {
    .option {
        width: 50px !important;
        flex-grow: 0 !important;
    }

    .options .option.active {
        width: 200px !important;
        flex-grow: 0 !important;
    }
}

@media screen and (max-width: 478px) {
    .option {
        width: 50px !important;
        flex-grow: 0 !important;
    }

    .options .option.active {
        width: 200px !important;
        flex-grow: 0 !important;
    }
}

.options .option {
    position: relative;
    overflow: hidden;
    min-width: 60px;
    margin: 10px;
    /*background: var(--optionBackground, var(--defaultBackground, #E6E9ED));*/
    background-image: var(--optionbackground);
    background-size: auto 120%;
    background-position: center;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

}

    .options .option:nth-child(1) {
        --defaultBackground: #ED5565;
    }

    .options .option:nth-child(2) {
        --defaultBackground: #FC6E51;
    }

    .options .option:nth-child(3) {
        --defaultBackground: #FFCE54;
    }

    .options .option:nth-child(4) {
        --defaultBackground: #2ECC71;
    }

    .options .option:nth-child(5) {
        --defaultBackground: #5D9CEC;
    }

    .options .option:nth-child(6) {
        --defaultBackground: #AC92EC;
    }

    .options .option.active {
        flex-grow: 10000;
        transform: scale(1);
        max-width: 600px;
        margin: 0px;
        border-radius: 40px;
        background-size: auto 100%;
        /*&:active {
     transform:scale(0.9);
  }*/
    }

        .options .option.active .shadow {
            box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
        }

        .options .option.active .label {
            bottom: 20px;
            left: 20px;
        }

            .options .option.active .label .info > div {
                left: 0px;
                opacity: 1;
            }

    .options .option:not(.active) {
        flex-grow: 1;
        border-radius: 30px;
    }

        .options .option:not(.active) .shadow {
            bottom: -40px;
            box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
        }

        .options .option:not(.active) .label {
            bottom: 10px;
            left: 10px;
        }

            .options .option:not(.active) .label .info > div {
                left: 20px;
                opacity: 0;
            }

    .options .option .shadow {
        position: absolute;
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 120px;
        transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

    .options .option .label {
        display: flex;
        position: absolute;
        right: 0px;
        height: 40px;
        transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    }

        .options .option .label .icon {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            min-width: 40px;
            max-width: 40px;
            height: 40px;
            border-radius: 100%;
            background-color: white;
            color: var(--defaultBackground);
        }

        .options .option .label .info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: 10px;
            color: white;
            white-space: pre;
        }

            .options .option .label .info > div {
                position: relative;
                transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
            }

            .options .option .label .info .main {
                font-weight: bold;
                font-size: 1.2rem;
            }

            .options .option .label .info .sub {
                transition-delay: 0.1s;
            }
/* ====================== parte del track =============================== */
.frame {
    position: relative;
    width: 80vh;
    height: 50vh;
    z-index: 1;
}



.card {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #000000c1;
    border-radius: 10px;
    user-select: none;
    cursor: pointer;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    touch-action: none;
}

    .card .bottom {
        width: 100%;
        height: 25%;
        background: linear-gradient(to top, #00000080, #00000000);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 7%;
        font-weight: 400;
    }

        .card .bottom .title > span:nth-child(1) {
            font-size: 2em;
            font-weight: 700;
            margin-right: 0.2em;
        }

        .card .bottom .title > span:nth-child(2) {
            font-size: clamp(13px, 1.5em, 25px);
        }

            .card .bottom .title > span:nth-child(2) > b {
                font-size: 0.6em;
                margin-right: 0.2em;
            }

        .card .bottom .info {
            margin: 3% 0 0 2%;
            font-size: clamp(10px, 1.1em, 20px);
        }
@media screen and (max-width: 718px) {
    .frame {
        width: 45vh;
        height: 50vh;
        font-size: 13px;
    }
    .card-info .dpto {
        display: none;
    }
}
@media screen and (max-height: 540px) {
    .frame {
        width: 45vh;
        height: 50vh;
        font-size: 13px;
    }
}

@media screen and (max-height: 440px) {
    .frame {
        font-size: 8px;
    }
}


.card-content {
    display: flex;
    height: 100%;
}

.card-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #f8f8f8; /* fondo para que no se vea vacío */
}

    .card-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.card-info {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .card-info .tname {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        color: #333;
    }

    .card-info .dpto {
        color: #d07268;
    }

    .card-info .info {
        font-size: 14px;
        color: #666;
    }

    .tag{display:none;}
/* ====================== parte del las expands =============================== */
.strips {
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    color: white;
}

.strips__strip {
    will-change: width, left, z-index, height;
    position: absolute;
    width: 16.66%;
    min-height: 100vh;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

    .strips__strip:nth-child(1) {
        left: 0;
    }

    .strips__strip:nth-child(2) {
        left: 16.66vw;
    }

    .strips__strip:nth-child(3) {
        left: 33.32vw;
    }

    .strips__strip:nth-child(4) {
        left: 49.98vw;
    }

    .strips__strip:nth-child(5) {
        left: 66.64vw;
    }
    .strips__strip:nth-child(6) {
        left: 83.3vw;
    }

    .strips__strip:nth-child(1) .strip__content {
        background: #296;
        transform: translate3d(-100%, 0, 0);
        -webkit-animation-name: strip1;
        animation-name: strip1;
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .strips__strip:nth-child(2) .strip__content {
        background: #f63;
        transform: translate3d(0, 100%, 0);
        -webkit-animation-name: strip2;
        animation-name: strip2;
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .strips__strip:nth-child(3) .strip__content {
        background: #26a;
        transform: translate3d(0, -100%, 0);
        -webkit-animation-name: strip3;
        animation-name: strip3;
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .strips__strip:nth-child(4) .strip__content {
        background: #aaa;
        transform: translate3d(0, 100%, 0);
        -webkit-animation-name: strip4;
        animation-name: strip4;
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .strips__strip:nth-child(5) .strip__content {
        background: #F8BB44;
        transform: translate3d(100%, 0, 0);
        -webkit-animation-name: strip5;
        animation-name: strip5;
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
    }
    .strips__strip:nth-child(6) .strip__content {
        background: #922;
        transform: translate3d(100%, 0, 0);
        -webkit-animation-name: strip5;
        animation-name: strip5;
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
    }

@media screen and (max-width: 760px) {
    .strips__strip {
        min-height: 100vh !important;
    }

        .strips__strip:nth-child(1) {
            left: 0;
        }

        .strips__strip:nth-child(2) {
            left: 16.66vw;
        }

        .strips__strip:nth-child(3) {
            left: 33.32vw;
        }

        .strips__strip:nth-child(4) {
            left: 49.98vw;
        }

        .strips__strip:nth-child(5) {
            left: 66.64vw;
        }

        .strips__strip:nth-child(6) {
            left: 83.3vw;
        }
}

.strips .strip__content {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

    .strips .strip__content:hover:before {
        transform: skew(-30deg) scale(3) translate(0, 0);
        opacity: 0.1;
    }

    .strips .strip__content:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        opacity: 0.05;
        transform-origin: center center;
        transform: skew(-30deg) scaleY(1) translate(0, 0);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

.strips .strip__inner-text {
    will-change: transform, opacity;
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strips__strip--expanded {
    width: 100%;
    top: 0 !important;
    left: 0 !important;
    z-index: 3;
    cursor: default;
}

@media screen and (max-width: 760px) {
    .strips__strip--expanded {
        min-height: 100vh;
    }
}

.strips__strip--expanded .strip__content:hover:before {
    transform: skew(-30deg) scale(1) translate(0, 0);
    opacity: 0.05;
}

.strips__strip--expanded .strip__title {
    opacity: 0;
}

.strips__strip--expanded .strip__inner-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.strip__title {
    display: block;
    margin: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    font-size: 2.5vw;
    color: white;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 760px) {
    .strip__title {
        font-size: 28px;
    }
}

.strip__close {
    position: absolute;
    right: 49%;
    top: 80%;
    opacity: 0;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    transition-delay: 0.5s;
    font-size:50px;
}

.strip__close--show {
    opacity: 1;
}

@-webkit-keyframes strip1 {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip1 {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip2 {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip2 {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip3 {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip3 {
    0% {
        transform: translate3d(0, -100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip4 {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip4 {
    0% {
        transform: translate3d(0, 100%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes strip5 {
    0% {
        transform: translate3d(100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes strip5 {
    0% {
        transform: translate3d(100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* ====================== parte del las expands =============================== */
.container-fluid {
    height: 100vh;
    background-color: #131417;
    margin: 0;
    padding: 0;
    width: 100% !important;
    /*background: url("http://almacenesdc.com/img/info/ini.jpg") center center no-repeat;
    background-size: cover;*/
}

.box {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 80%;

    /*box-shadow: 0 0 50px 0 rgba(75, 27, 27, 0.7);*/
    z-index: 1;
    overflow: hidden;
}

.box__row-cell {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 24%;
    height: 29%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateZ(0);
    transition: all 400ms 600ms, width 300ms 300ms, background-color 300ms 600ms;
    cursor: pointer;
    overflow: hidden;
    z-index: 2;
}

    .box__row-cell:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: 500ms;
    }

    .box__row-cell:before {
        content: "";
        position: absolute;
        top: -5%;
        left: -5%;
        width: 110%;
        height: 110%;
        background-color: rgba(0, 0, 0, 0);
        opacity: 1;
        transition: 300ms;
        z-index: -3;
    }

    .box__row-cell:hover:before {
        background-color: #F25555;
    }

.box__row-cell-info {
    margin-left: 20px;
    width: 200px;
    color: #fff;
    transition: 400ms 850ms;
}

.box__row-cell-info-ep {
    margin-top: 25px;
    font-size: 10px;
}

    .box__row-cell-info-ep span {
        padding-left: 10px;
    }

@media screen and (max-height: 915px) {
    .box__row-cell-info-ep {
        margin-top: 10px;
    }
    .box__title-heading {
        line-height: 28px;
        font-size: 32px;
    }
}

@media screen and (max-height: 800px) {
    .box__row-cell-info-sign {
        margin-top: 10px;
    }

    .box__title-heading {
        line-height: 24px;
        font-size: 28px;
    }
}

@media screen and (max-height: 692px) {
    .box__row-cell-info-title {
        margin-top: 8px;
        font-size: 18px;
    }
    .box__title-heading {
        font-size: 10px;
        line-height: 24px;
    }
}


@media screen and (max-height: 650px) {
    .box__row-cell-info--time {
        right: 20px;
        text-align: right;
    }
    .box__title-heading {
        font-size: 18px;
        line-height: 22px;
    }

}
.box__row-cell-info--time {
    position: absolute;
    bottom: 18px;
    font-size: 10px;
}
.box__row-cell-info-title {
    letter-spacing: 2px;
    margin-top: 15px;
    font-size: 20px;
}
.box__row-cell-info-sign {
    margin: 15px 0 0 2px;
    height: 3px;
    width: 20px;
    background-color: #fff;
    border-radius: 1px;
    transition: 200ms;
    z-index: 10;
}
.box__row-cell-info--full {
    transform: translateX(-50px);
    opacity: 0;
    margin: 30px 0 0 60px;
    transition: 300ms;
}

.box__row-cell-info--full-heading {
    line-height: 60px;
    width: 90%;
    color: #131313;
    font-size: 60px;
    font-weight: 900;
}

.box__row-cell-info--full-par {
    padding-top: 50px;
    color: #fff;
}

.box__row-cell:nth-child(2) {
    left: 75%;
}

.box__row-cell:nth-child(3) {
    left: 100%;
}

.box__row:nth-child(2) .box__row-cell {
    top: 67.5%;
}

.box__row:nth-child(3) .box__row-cell {
    top: 100%;
}

.box__content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #1C1E22;
    transform: translateZ(0);
    opacity: 0;
    z-index: -10;
    transition: all 400ms 600ms, z-index 0ms 0ms;
}

.box__content-wrapper {
    position: relative;
    margin-left: auto;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.box__content-inner {
    position: absolute;
    left: 18px;
    transform: translateX(50px);
    width: 100%;
    height: 100%;
    overflow: auto;
    opacity: 0;
    transition: 400ms, opacity 200ms;
}

.box__content-text {
    padding: 20px 0 30px 8px;
    width: 400px;
    max-width: 100%;
    color: #ababab;
}

.box__content-text-heading {
    position: relative;
    margin: 50px 0 20px 0;
    color: #f5f5f5;
    font-size: 16px;
}

    .box__content-text-heading:after {
        content: "";
        position: absolute;
        top: -15px;
        left: 0;
        width: 20px;
        height: 2px;
        background-color: #a73c3c;
        box-shadow: 0 0 1px 0 #a73c3c;
    }

.box__content-text-par {
    line-height: 22px;
    padding-bottom: 10px;
    font-size: 14px;
}

.box__content-text-list {
    list-style-type: none;
}

.box__content-text-item {
    padding-bottom: 3px;
    font-size: 14px;
}

.box__content-text-link {
    text-decoration: none;
    color: #ababab;
    font-size: 14px;
}

    .box__content-text-link:hover {
        text-decoration: underline;
    }

.box__close {
    position: absolute;
    top: 50px;
    left: 100px;
    height: 20px;
    width: 20px;
    font-size: 0;
    cursor: pointer;
    z-index: 9999;
}

    .box__close:after, .box__close:before {
        content: "";
        position: absolute;
        top: 9px;
        left: -14px;
        transform: rotate(45deg);
        width: 35px;
        height: 2px;
        background-color: #fff;
        opacity: 0;
        transition: 500ms;
    }

    .box__close:before {
        transform: rotate(-45deg);
    }

    .box__close span {
        position: relative;
        display: inline-block;
        margin: 1px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #fff;
        transition: 400ms 500ms;
    }

        .box__close span:nth-child(6) {
            right: 6px;
        }

        .box__close span:nth-child(7) {
            right: 6px;
        }

        .box__close span:nth-child(8) {
            right: 6px;
        }

        .box__close span:nth-child(9) {
            right: 6px;
        }

        .box__close span:nth-child(10) {
            right: 6px;
        }


.box__smokebg {
    position: absolute;
    top: -10%;
    left: -10%;
    transform: translate3d(0, 0, 0) rotate(0.01deg);
    width: 120%;
    height: 120%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/537051/smoke-min.png") center center no-repeat;
    background-size: cover;
    z-index: -10;
    opacity: 0.8;
    -webkit-animation: smokebg 60s infinite alternate;
    animation: smokebg 60s infinite alternate;
}

@-webkit-keyframes smokebg {
    25% {
        transform: translate3d(100px, 0, 0) rotate(0.01deg);
    }

    50% {
        transform: translate3d(75px, -25px, 0) rotate(0.01deg);
    }

    75% {
        transform: translate3d(45px, 30px, 0) rotate(0.01deg);
    }

    100% {
        transform: translate3d(25px, -15px, 0) rotate(0.01deg);
    }
}

@keyframes smokebg {
    25% {
        transform: translate3d(100px, 0, 0) rotate(0.01deg);
    }

    50% {
        transform: translate3d(75px, -25px, 0) rotate(0.01deg);
    }

    75% {
        transform: translate3d(45px, 30px, 0) rotate(0.01deg);
    }

    100% {
        transform: translate3d(25px, -15px, 0) rotate(0.01deg);
    }
}

.box__title {
    position: absolute;
    top: 25%;
    left: 9%;
}

.box__title-heading {
    position: relative;
    color: #7b2222;
    letter-spacing: 3px;
    line-height: 65px;
    font-size: 65px;
}


    .box__title-heading span {
        letter-spacing: 6px;
        color: #fff;
    }

.box__title-par {
    text-transform: uppercase;
    margin-top: 35%;
    color: #7b2222;
    font-size: 13px;
    font-weight: bold;
}

.active {
    left: 0 !important;
    top: 0 !important;
    height: 100%;
    width: 50%;
    background-color: #F25555;
    z-index: 5;
    transition: all 400ms 400ms, width 300ms 800ms;
    cursor: default;
    opacity: 1 !important;
}

    .active .box__row-cell-info:nth-child(1) {
        transform: translateX(50px);
        opacity: 0;
        transition: 300ms 0ms ease-in, opacity 375ms 0ms;
    }

    .active .box__row-cell-info:nth-child(2) {
        transform: translateX(50px);
        opacity: 0;
        transition: 300ms 50ms ease-in, opacity 375ms 50ms;
    }

    .active .box__row-cell-info:nth-child(3) {
        transform: translateX(50px);
        opacity: 0;
        transition: 300ms 100ms ease-in, opacity 375ms 100ms;
    }

    .active .box__row-cell-info:nth-child(4) {
        transform: translateX(50px);
        opacity: 0;
        transition: 300ms 150ms ease-in, opacity 375ms 150ms;
    }

    .active .box__row-cell-info--full {
        transform: translateX(0);
        opacity: 1;
        transition: 300ms 900ms;
    }

.cell-fade {
    opacity: 0;
    transition: all 400ms 400ms, width 300ms 800ms, opacity 200ms 300ms;
}

.hover-cell:after {
    opacity: 1;
}

.show-content {
    opacity: 1;
    z-index: 2;
    transition: all 300ms 400ms, z-index 0ms 0ms;
}

    .show-content .box__content-inner {
        transform: translateX(0);
        opacity: 1;
        transition: 300ms 1100ms;
    }

.box-close-active:after, .box-close-active:before {
    opacity: 1;
    transform: rotate(135deg);
    transition: 500ms 800ms;
}

.box-close-active:before {
    transform: rotate(45deg);
}

.box-close-active span {
    opacity: 0;
    transition: 0ms 800ms;
}