/* Réinitialise les marges et le padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}

body {

    line-height: 1.6; /* Espacement des lignes */
    padding: 0px; /* Espace autour du contenu du body */
font-size: 20px;
    color: #fff; /* Couleur de texte par défaut */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background:#1e1e1e;
}
.container{
    width:1300px;
    max-width: 100%;
    margin: auto;

}
h1 {
    margin-bottom: 0px; /* Espace en dessous des titres */
    color: #fff; /* Couleur des titres */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 1;

}
h2 {
    margin-bottom: 20px; /* Espace en dessous des titres */
    color: #fff; /* Couleur des titres */
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;

}
.cta{
    text-decoration: none;
    padding: 5px 25px;
    border-radius: 8px;
    transition: ease background-color 0.3s;
    margin: auto;
    text-align: center;
    width: 400px;
    display: block;
	max-width:100%;
}
.cta:hover{
    background-color: rgb(217, 190, 25)!important;
    transition: ease background-color 0.3s;
}
.imgCtr{
    max-width: 50%;
    margin: auto;
}
header{
    background: #091419;
}
footer{
    margin: 0;
    padding: 0;
}
header,main{
    margin: 0;
    padding: 2% 10%;
}
b{
    font-weight: 700;
}
p {
    margin-bottom: 10px; /* Espace en dessous des paragraphes */
}
.dflex{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.fifty{
    width: 50%;
    position:relative ;
    padding: 15px;
}
/* Ajoutez d'autres styles ici selon vos besoins */
@media (max-width: 800px) {
    .dflex{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .fifty{
        width: 100%;
        position:relative ;
        padding: 0px;
    }

}
@media (max-width: 768px) {

}
@media (max-width: 600px) {

}