*{
    margin: 0;
    padding: 0;
    font-family: "Poppins" , "sans-serif";
    text-decoration: none;
    border: none;
    box-sizing: border-box;
    transition: all.2s linear;
    
}
html{

    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7em;
    scroll-behavior: smooth;

}
body{
    position: relative;
    
}
nav{
    
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8%;
    height: 50px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2) ;

}
nav .logo{

    color: rgb(233, 33, 33);
    font-size: 30px;
    font-weight: 500;

}
nav .logo span {

    color:#000;
    font-weight: 500;
    font-size: 25px;
    
}



/* bg-gradiant secteur0 */ 



#secteur0 .bg-gradiant {
   width: 100%;
   height: 30svh;
   background-image: linear-gradient(black, rgb(233, 33, 33));

}


#secteur0 .bg-gradiant  h1 {
    
    margin: 50px;
    padding: 50px;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    
}



/* secteur */



#secteur {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#secteur a {
font-size: 20px;
}

 

/* secteur1 */


#secteur1 {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 8%;
    align-items: center;
    justify-content: center;
    position: relative;
}

#secteur1 .first h1 {
    font-weight: 700;
}

#secteur1 .first p {
    font-weight: 500;
    font-size: 16px; 
    color: #000000;
    text-align: justify;

}
#secteur1 .first span {
    color: rgb(233, 33, 33) ;
} 




/* first */


.container{
    background-image: url(img/wepik-export.png);
    border-top-left-radius: 50%;
}

.container img , h1 p {
    padding: 10px;
}

.container h1 {
    font-weight: 700;
    margin-bottom: 15px;
}
.container p {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    text-align: justify;

}
.container img {
    max-width: 250px;
    margin-top: 10px;
}
.container span {
    color:rgb(233, 33, 33) ;
}
.container a  {
    text-decoration: none;
    padding: 10px;
    
}

/* mise en commentaire pour un test */

/* .mt-6{
    margin-top: 60px;
}

.row .h-body {
    box-shadow:  0 0 20px rgb(0,0,0,0.3); 
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
} */

/* rotation d'icons */

@keyframes rotate-clockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-container {
    position: relative;
    
}

.rotate-image {
    animation: rotate-clockwise 20s linear infinite; /* Changez la durée et le type d'animation selon vos préférences */
}


/* rotation d'icons-1 */

@keyframes rotate-counterclockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.rotate-container {
    position: relative;

}

.rotate-image-1 {
    animation: rotate-counterclockwise 20s linear infinite; /* Changez la durée et le type d'animation selon vos préférences */
}





 /*menu responsive*/



nav menu-button {
    display: none;
    position: absolute;
    right: 25px;    
}
nav{
    display: flex;
}
nav ul{
    list-style: none;
    display: flex;
    align-items: center;

}
nav ul a {
    font-size: 14px;
    color: #000;
    font-weight: 300px;
    transition: 0.2s;
    padding: 0 15px;
    text-decoration: none;

    
}
nav ul a:hover {
    color:rgb(233, 33, 33);
}

.menu-button{
    display:none;
}


@media (max-width:610px) {
   
    .container .row{
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
         
    }

    .container img {
        padding: 20px;
    }

    nav{
        padding: 0 10px;
    }
    nav ul{
        position: absolute;
        top: 50px;
        width: 100%;
        height: 50px;
        left: 0;
        z-index: 2;
        align-items:center;
        background-color: #fff;
        overflow: hidden;
        justify-content: center;
        border-top: 1px solid #e7e7e7;
        transition: 1s;
        
    }
   
    nav ul li {
        padding: 8px;
    }

    .menu-button {
        display: block;
    }

    #menulist{
        transition: all 0.2s;
    }

}

/* accordion test 2 */

.accordion {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
}

.accordion-item {
    background-color: #fff;
    color: #000;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0,25);
}

.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.accordion-item-header::after {
    content: "\002B" ;
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    transition: transform 0.2s ease-in-out;
}

.accordion-item-header.active::after {
    content: "\2212";
}

.accordion-item-body {
   max-height: 0;
   font-weight: 400;
   font-size: 14px;
   overflow: hidden;
   text-align: justify;
   transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
    padding: 1rem ;
    line-height: 1.5rem;
    border-top: 2px solid #b4b2b2;
    border-image: linear-gradient(to right, transparent, rgb(233, 33, 33), #01010a, transparent ) 1;
}
.accordion-item-body p {
    text-align: justify;
    font-weight:400;
    font-size: 14px;
}

/* .accordion-item-header.active + .accordion-item-body {
    max-height:1000px;
} */


footer{
    background-color:rgb(233, 33, 33) ;
    text-align: center;
    padding: 5px 0;
    color: #fff;
    font-size: 12px;
}

html::-webkit-scrollbar {
    width: 6px;
    background-color:  transparent;
}
html::-webkit-scrollbar-thumb {
    background-color:rgb(233, 33, 33) ;
}