/*************************************************************************/
/************************ HERO DURASUN ***********************************/
/*************************************************************************/

.hero-durasun{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#0b1d35 0%,#12365d 45%,#0d2745 100%);

    color:#fff;

    padding:90px 0;

}

/********************************************************************/
/********************* FORMES D'ARRIÈRE PLAN ************************/
/********************************************************************/

.hero-durasun::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(25,135,84,.12);

    top:-220px;

    right:-180px;

    filter:blur(10px);

}

.hero-durasun::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(13,110,253,.08);

    bottom:-180px;

    left:-150px;

}


/********************************************************************/
/*************************** OVERLAY ********************************/
/********************************************************************/

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,.10),

        rgba(0,0,0,.25)

    );

}


/********************************************************************/
/*************************** CONTENU ********************************/
/********************************************************************/

.hero-durasun .container{

    position:relative;

    z-index:2;

}

.min-vh-75{

    min-height:75vh;

}


/********************************************************************/
/*************************** BADGE **********************************/
/********************************************************************/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    font-size:14px;

    font-weight:600;

}

.hero-badge i{

    color:#29d17c;

}


/********************************************************************/
/*************************** TITRES *********************************/
/********************************************************************/

.hero-title{

    font-size:64px;

    font-weight:800;

    margin-bottom:15px;

    letter-spacing:1px;

}

.hero-title span{

    color:#29d17c;

}

.hero-subtitle{

    font-weight:300;

    margin-bottom:25px;

    color:#dce7f4;

}

.hero-text{

    color:#d0d9e7;

    line-height:1.9;

    font-size:17px;

}


/********************************************************************/
/*************************** FEATURES *******************************/
/********************************************************************/

.hero-features{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

}

.hero-features i{

    color:#29d17c;

    font-size:20px;

}


/********************************************************************/
/*************************** BOUTONS ********************************/
/********************************************************************/

.hero-buttons .btn{

    padding:14px 34px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.hero-buttons .btn-success{

    background:#198754;

    border:none;

}

.hero-buttons .btn-success:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(25,135,84,.35);

}

.hero-buttons .btn-outline-light:hover{

    transform:translateY(-4px);

}


/********************************************************************/
/*************************** IMAGE **********************************/
/********************************************************************/

.hero-image{

    position:relative;

    padding:15px;

}

.hero-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 35px 70px rgba(0,0,0,.35);

    transition:.6s;

    animation:heroFloat 5s ease-in-out infinite;

}

.hero-image:hover img{

    transform:scale(1.03);

}


/********************************************************************/
/************************ ANIMATION *********************************/
/********************************************************************/

@keyframes heroFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}


/********************************************************************/
/************************ SCROLL ************************************/
/********************************************************************/

.hero-scroll{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    text-align:center;

    z-index:3;

    color:#fff;

    animation:bounceHero 2s infinite;

}

.hero-scroll span{

    display:block;

    font-size:14px;

    opacity:.8;

}

.hero-scroll i{

    font-size:26px;

    color:#29d17c;

}

@keyframes bounceHero{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,8px);

    }

}


/********************************************************************/
/************************ RESPONSIVE ********************************/
/********************************************************************/

@media(max-width:991px){

.hero-title{

    font-size:46px;

}

.hero-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.hero-buttons .btn{

    margin:0 !important;

}

.hero-image{

    margin-top:60px;

}

}

@media(max-width:576px){

.hero-title{

    font-size:36px;

}

.hero-text{

    font-size:16px;

}

.hero-subtitle{

    font-size:22px;

}

}

/********************************************************************/
/********************** DURASUN GALLERY ******************************/
/********************************************************************/

.durasun-gallery{

    width:100%;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.durasunSwiper{

    width:100%;

    height:580px;

}

.durasunSwiper .swiper-wrapper{

    width:100%;

    height:100%;

}

.durasunSwiper .swiper-slide{

    width:100% !important;

    height:100%;

}

.durasunSwiper .swiper-slide img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:8s;

}

.swiper-slide-active img{

    transform:scale(1.08);

}

@media(max-width:992px){

.durasunSwiper{

    height:420px;

}

}

@media(max-width:768px){

.durasunSwiper{

    height:300px;

}

}


/*** VIDEO ***/

/*****************************************************
VIDEO IMMERSIVE
*****************************************************/

.video-box{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.18);

    background:#000;

    transition:.45s;

}

.video-box:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

}

/*****************************************************
VIDEO
*****************************************************/

.video-box video{

    display:block;

    width:100%;

    height:600px;

    object-fit:cover;

}

/*****************************************************
LÉGER DÉGRADÉ EN BAS
*****************************************************/

.video-box::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:140px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,0)
    );

    pointer-events:none;

}

/*****************************************************
CARTES
*****************************************************/

.video-feature{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    border:1px solid #edf1f6;

}

.video-feature:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*****************************************************
ICÔNES
*****************************************************/

.video-feature i{

    font-size:42px;

    color:#198754;

    display:block;

    margin-bottom:20px;

    transition:.35s;

}

.video-feature:hover i{

    transform:scale(1.15) rotate(-8deg);

}

/*****************************************************
TITRE
*****************************************************/

.video-feature h5{

    font-weight:700;

    color:#003163;

    margin-bottom:12px;

}

/*****************************************************
DESCRIPTION
*****************************************************/

.video-feature p{

    color:#6c757d;

    line-height:1.7;

    margin:0;

}

/*****************************************************
RESPONSIVE
*****************************************************/

@media(max-width:992px){

.video-box video{

    height:420px;

}

}

@media(max-width:768px){

.video-box video{

    height:280px;

}

.video-feature{

    margin-bottom:25px;

}

}