.header {
	height: 80px;
	width:  100%;

    border-top: 2px solid #02b8dd; /* Bordure turquoise en haut */
    border-bottom: 2px solid #02b8dd; /* Bordure turquoise en bas */
    background: linear-gradient(to bottom right, #f9f4e2, #ead098, #c89f5d, #a8863d, #846c26, #c89f5d, #ead098, #f9f4e2); /* Dégradé de couleur dorée */
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
	position: relative;
	margin-top: 15px; 

}

.header_navbar {
	width: 95%;
	height: 80px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;


}

.header_navbar-logo-title {

color: #fff;
font-size: 25px;
text-decoration: none;
margin-left: 40px

}


.header_navbar-menu-link {
margin-left: 15px;
color: #fff;
font-size: 15px;



}
ul
{
    list-style: none;
}
a
{
    text-decoration: none;
    color: #fff;
}


a:hover
{
    text-decoration: none;
    color: #02b8dd;
}



.wrapper
{
    width: 1040px;
    margin: 2px auto;
    padding: 0 10px;
    width: 90%;

}
.clear
{
    clear: both;   
}
/* MAIN IMAGE */
#main-image {
    width: 100vw; /* Utilisation de l'unité vw pour 100% de la largeur de la fenêtre */
    height: 100vh; /* Utilisation de l'unité vh pour 100% de la hauteur de la fenêtre */
    background: url('../images/homme-dos.jpg') no-repeat center;
    background-size: cover; /* Assurez-vous que l'image couvre complètement le conteneur */
    border-bottom: 2px solid #02b8dd; /* Bordure turquoise en bas */
}



#main-image h1
{
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
    padding: 240px 0 80px 0;
    margin-bottom: 20px;
    color:  orange ;

}











/* STEPS */



#steps ul
{
    margin: 80px 0;

}
#steps ul li
{
    width: 300px;
    float:left;
    padding-top: 140px;
    text-align: center;
    margin-right: 10px;
    
}
#steps h2
{
    font-size: 16px;
    margin-bottom: 20px;
}

#steps h3
{
    font-size: 16px;
    margin-bottom: 20px;
}
#steps h4
{
    text-transform: uppercase;
    margin-bottom: 20px;
}
#steps p
{
    margin-bottom: 20px;
}


#steps h5
{
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.button-1
{
       display: block;
    width: 220px;
    height: 50px;
       background: linear-gradient(to bottom right, #f9f4e2, #ead098, #c89f5d, #a8863d, #846c26, #c89f5d, #ead098, #f9f4e2); /* Dégradé de couleur dorée */
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    line-height: 50px;
    text-align: center;
    border-radius:  3px;
    border: 2px solid #02b8dd;
}
.button-1:hover
{
     background: #02b8dd;
     color: #fff;
}


/* POSSIBILITIES */

.header_slogan {
	text-align: center;
margin-top: 30px;
}

.h_slogan_title-o {
	color: #000;
	font-size: 40px;
	font-style: italic;
}
.h_slogan_title {
	color: #000;
	font-size: 30px;
	font-style: italic;
}

#contact
{
    padding: 60px 0;
    text-align: center
}
#contact h3
{
    width: 400px;
    text-transform: uppercase;
    margin: 0 auto 20px auto;
    border-bottom:  1px solid #02b8dd;
    padding-bottom: 20px;   
}

footer
{
    border-top: 2px solid #02b8dd; /* Bordure turquoise en haut */
    height: 260px;
    background: linear-gradient(to bottom right, #f9f4e2, #ead098, #c89f5d, #a8863d, #846c26, #c89f5d, #ead098, #f9f4e2); /* Dégradé de couleur dorée */
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
}

footer h1
{
    color:#d41c56;
    text-align: center;
    padding-top: 80px;
}
footer h4
{
    font-size: 20px;
    color:#fff;
    text-align: center;
    padding-top: 80px;
}
.copyright
{
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    padding-top: 30px;
    color: #fff;
}



.header_navbar-toggle {
	width: 40px;
	height: 60px;
	display: flex;
	align-items: center;
	display: none;
	cursor: pointer;
	z-index: 999;

}
.header_navbar-toggle-icons, .header_navbar-toggle-icons:before, .header_navbar-toggle-icons:after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	position: relative;

}
.header_navbar-toggle-icons:before {top: 10px}
.header_navbar-toggle-icons:after {top: -14px}

.is-open .header_navbar-menu {
	transform: translateY(0);
}

@media only screen and (max-width: 820px){

.header_navbar-toggle {
    display: flex;
    z-index: 1000;
}
.header_navbar-menu {
    transition: all 0.5s ease-in-out;
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom right, #f9f4e2, #ead098, #c89f5d, #a8863d, #846c26, #c89f5d, #ead098, #f9f4e2); /* Dégradé de couleur dorée */
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    z-index: 999; /* Assure que le menu est au premier plan */
}

.menu-visible .header_navbar-menu {
    transform: translateX(0);
}
.header_navbar-menu-link {
    margin: 10px 0;
    font-size: 24px;
}


.header_navbar-menu-link {
	margin: 10px 0;
	font-size: 24px;
}

.header_navbar-logo-title {

color: #fff;
font-size: 20px;
text-decoration: none;
margin-left: 20px

}


#main-image
{
    height: 290px;
    
    background: url('../images/homme-dosb.jpg') no-repeat center;
    background-size: cover;

}


#main-image h1
{
    font-size: 20px;
    text-align: center;
    padding: 140px 0 60px 0;
    margin-bottom: 0px;
}

#main-image h2
{
    font-size: 20px;
    text-align: center;
    padding: 140px 0 60px 0;
    margin-bottom: 0px;
}




.header_slogan {
margin-top: 20px;
}
.h_slogan_title-o {
font-size: 30px;
}
.h_slogan_title {
font-size: 18px;
}
.wrapper
{
    width: 820px;
    margin: 2px auto;
    padding: 0 10px;
    width: 90%;
}



#steps ul li
{
    width: 180px;
    float:center;
    padding-top: 100px;
    text-align: center;
    margin-right: 10px;
    
}
#contact h3
{
    width: 250px;
}


}



    
