/* ==========================
   360 CARRUSEL
========================== */

.c360-slider{
    position:relative;
    width:100%;
    overflow:hidden;
}

.swiper{
    width:100%;
}

/* ==========================
   SLIDE
========================== */

.c360-slide{

    display:flex !important;

    flex-direction:row !important;

    align-items:stretch;

    min-height:720px;
}

/* ==========================
   IMAGENES
========================== */

.c360-images{

    width:52%;

    display:flex;

    align-items:stretch;

    min-height:100%;
}

.c360-image{

    width:50%;

    position:relative;

    overflow:hidden;

    display:flex;
}

.c360-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

    display:block;
}

/* ==========================
   CONTENIDO
========================== */

.c360-content{
    width:48%;
    padding:80px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#ffffff;
    box-sizing:border-box;
}

.c360-subtitle{
    color:#f4b000;
    font-size:16px;
    letter-spacing:4px;
    margin-bottom:20px;
    display:block;
}

.c360-title{
    font-size:45px;
    line-height:1.1;
    margin:0 0 35px;
    color:#ffffff;
    font-weight:300;
}

.c360-description{
    font-size:16px;
    line-height:1.5;
    margin-bottom:40px;
    max-width:700px;
}

/* ==========================
   BOTON
========================== */

.c360-button{
    display:inline-flex;
    align-self:flex-start;

    align-items:center;
    justify-content:center;

    padding:18px 40px;

    background:#f4b000;
    color:#ffffff !important;

    text-decoration:none;

    font-size:16px;
    letter-spacing:1px;

    transition:.3s ease;
}

.c360-button:hover{
    background:#000000;
}

/* ==========================
   FLECHAS
========================== */

.swiper-button-prev,
.swiper-button-next{

    width:72px !important;
    height:72px !important;

    border:1px solid rgba(255,255,255,.8);
    border-radius:50%;

    color:#ffffff !important;
    background:transparent;
}

.swiper-button-prev:after,
.swiper-button-next:after{
    font-size:24px !important;
}

.swiper-button-prev{
    left:30px !important;
}

.swiper-button-next{
    right:30px !important;
}

/* ==========================
   ELIMINAR BULLETS
========================== */

.swiper-pagination{
    display:none !important;
}


/* ==========================
   PARALLAX CINEMATICO
========================== */

.c360-image{
    overflow:hidden;
}

.c360-image img{

    width:100%;
    height:auto;

    display:block;

    transform:scale(1.15);

    will-change:transform;

    opacity:1;
}

/* Animación Imagen Izquierda */

.swiper-slide-active .c360-image:first-child img{

    animation:
        c360ParallaxLeft 3s cubic-bezier(.22,.61,.36,1) forwards;
}

/* Animación Imagen Derecha */

.swiper-slide-active .c360-image:last-child img{

    animation:
        c360ParallaxRight 3s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes c360ParallaxLeft{

    from{

        transform:
            translateX(-250px)
            scale(1.25);
    }

    to{

        transform:
            translateX(0)
            scale(1.05);
    }
}

@keyframes c360ParallaxRight{

    from{

        transform:
            translateX(250px)
            scale(1.25);
    }

    to{

        transform:
            translateX(0)
            scale(1.05);
    }
}

/* ==========================
   ENTRADA CONTENIDO
========================== */

.c360-content > *{

    opacity:0;

    transform:translateX(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.swiper-slide-active .c360-content > *{

    opacity:1;

    transform:translateX(0);
}

.swiper-slide-active .c360-subtitle{

    transition-delay:.15s;
}

.swiper-slide-active .c360-title{

    transition-delay:.30s;
}

.swiper-slide-active .c360-description{

    transition-delay:.45s;
}

.swiper-slide-active .c360-button{

    transition-delay:.60s;
}
/* ==========================
   LAPTOP
========================== */

@media(max-width:1400px){

    .c360-slide{

        min-height:650px;
    }
}
/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .c360-content{
        padding:60px 50px;
    }

    .c360-title{
        font-size:46px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .c360-slide{
        flex-direction:column !important;
        min-height:auto;
    }

    .c360-images{
        width:100%;
        height:auto;
    }

.c360-image{

    width:50%;

    height:420px;
}

    .c360-content{
        width:100%;
        padding:40px 25px;
    }

    .c360-title{
        font-size:34px;
    }

    .c360-description{
        font-size:16px;
    }

    .swiper-button-prev,
    .swiper-button-next{
        width:50px !important;
        height:50px !important;
    }
}


@media(max-width:768px){
.c360-button{
    display: none;
}
    }