/*====================================================
 HERO SIMAR PREMIUM
====================================================*/


.hero{

position:relative;

height:100vh;

min-height:750px;

display:flex;

align-items:center;

overflow:hidden;

/*background:#031b34;*/
/*background: rgb(0, 172, 232); */

color:white;

}


/*====================================================
 SLIDER
====================================================*/


.hero-slider{

position:absolute;

inset:0;

width:100%;

height:100%;

}


.hero-slide{

position:absolute;

inset:0;

opacity:0;

transition:opacity 1.5s ease;

}


.hero-slide.active{

opacity:1;

z-index:2;

}



.hero-slide img{

width:100%;

height:100%;

object-fit:cover;

animation:zoomImage 8s infinite linear;

}



@keyframes zoomImage{


from{

transform:scale(1);

}


to{

transform:scale(1.12);

}


}



/*====================================================
 OVERLAY
====================================================*/


.hero-overlay{

position:absolute;

inset:0;

z-index:3;

/*background:

linear-gradient(

90deg,

rgba(2,20,40,.95),

rgba(3,27,52,.75),

rgba(3,27,52,.35)

); */
background:rgba(0,0,0,0.35);

}



/*====================================================
 CONTENT
====================================================*/


.hero .container{

position:relative;

z-index:5;

width:min(90%,1350px);

margin:auto;

}



.hero-content{

max-width:850px;

padding-top:80px;

}



/* Badge */


.hero-badge{


display:inline-flex;

align-items:center;

gap:12px;

padding:12px 25px;

border-radius:50px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.25);

backdrop-filter:blur(15px);

font-size:15px;

margin-bottom:30px;

}



/* Title */


.hero h1{


font-size:90px;

font-weight:900;

letter-spacing:2px;

line-height:1;

margin:0;

}


.hero h1 span{


background:linear-gradient(

90deg,

#ffffff,

#00d9ff

);

-webkit-background-clip:text;

color:transparent;


}



.hero h2{


font-size:42px;

font-weight:600;

margin-top:15px;

line-height:1.2;

}



#hero-text{


margin-top:30px;

font-size:21px;

line-height:1.8;

color:#dbeafe;

max-width:800px;

min-height:100px;

}



/*====================================================
 BUTTONS
====================================================*/


.hero-buttons{


display:flex;

gap:20px;

margin-top:45px;

flex-wrap:wrap;

}



.btn-primary,


.btn-secondary{


padding:17px 40px;

border-radius:50px;

font-size:16px;

font-weight:600;

transition:.4s;

}



.btn-primary{


background:linear-gradient(

135deg,

#00c6ff,

#0072ff

);

color:white;

box-shadow:

0 15px 35px rgba(0,160,255,.35);

}



.btn-primary:hover{


transform:translateY(-5px);

}



.btn-secondary{


border:1px solid rgba(255,255,255,.5);

color:white;

backdrop-filter:blur(10px);

}



.btn-secondary:hover{


background:white;

color:#031b34;

}



/*====================================================
 STATS
====================================================*/


.hero-stats{


display:flex;

gap:60px;

margin-top:70px;

}



.stat{


display:flex;

flex-direction:column;

}



.stat strong{


font-size:45px;

font-weight:800;

}



.stat span{


font-size:14px;

color:#cbd5e1;

}



/*====================================================
 BOTTOM
====================================================*/


.hero-bottom{


position:absolute;

bottom:45px;

left:50%;

transform:translateX(-50%);

width:90%;

max-width:1350px;

z-index:10;

display:flex;

align-items:center;

gap:30px;

}



.slide-number{


font-size:18px;

font-weight:600;

}



.progress{


height:4px;

background:rgba(255,255,255,.25);

flex:1;

overflow:hidden;

}



#progressBar{


display:block;

height:100%;

width:0;

background:#00d9ff;

}



/*====================================================
 SCROLL
====================================================*/


.scroll-down{


position:absolute;

bottom:35px;

right:50px;

z-index:10;

width:35px;

height:60px;

border:2px solid white;

border-radius:30px;

display:flex;

justify-content:center;

}



.scroll-down span{


width:7px;

height:7px;

background:white;

border-radius:50%;

margin-top:12px;

animation:scrollMove 2s infinite;


}



@keyframes scrollMove{


0%{

transform:translateY(0);

opacity:1;

}


100%{

transform:translateY(25px);

opacity:0;

}


}



/*====================================================
 TABLETTE
====================================================*/


@media(max-width:992px){


.hero{


min-height:850px;

}


.hero-content{


text-align:center;

margin:auto;

}



.hero h1{


font-size:70px;

}


.hero h2{


font-size:32px;

}


#hero-text{


font-size:18px;

}


.hero-buttons{


justify-content:center;

}


.hero-stats{


justify-content:center;

gap:35px;

}


}



/*====================================================
 MOBILE
====================================================*/


@media(max-width:600px){



.hero{


min-height:900px;

}



.hero-overlay{


background:

linear-gradient(

180deg,

rgba(3,27,52,.85),

rgba(3,27,52,.75)

);

}



.hero-content{


padding-top:120px;

}



.hero h1{


font-size:52px;

}



.hero h2{


font-size:24px;

}



#hero-text{


font-size:16px;

line-height:1.7;

}



.hero-buttons{


flex-direction:column;

}



.btn-primary,

.btn-secondary{


width:100%;

text-align:center;

}



.hero-stats{


flex-direction:column;

align-items:center;

margin-top:50px;

}



.stat strong{


font-size:38px;

}



.hero-bottom{


bottom:20px;

}



.scroll-down{


display:none;

}



}


/*====================================================
 PETIT MOBILE
====================================================*/


@media(max-width:380px){


.hero h1{


font-size:45px;

}


.hero h2{


font-size:22px;

}


.hero-badge{


font-size:13px;

}



}