*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
  }
  body{
    background: #000;
    color: #fff;
  }
  .header{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(images/photo1.png);
  background-size: 100% auto; /* Ajustez la largeur à 100% */
  background-repeat: no-repeat;
  background-position: center top; /* Centrez l'image verticalement en haut */
  padding: 10px 8%;
  position: relative;
  }
  nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }  
  /*--logo--------------*/
  .logo{
    color: #e70634;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 400;
    margin: 0px auto 0px 40px;
    display: flex;
    align-items: center;
    font-family: Monoton;
    letter-spacing: 1px;
    text-decoration: none;
  }
  .logo span{
    font-size: 0.7rem;
    margin-left: 5px;
    font-weight: 700;
    letter-spacing: 2px;
  }
  nav button{
    border: 0;
    outline: 0;
    background: #db0001;
    color: #fff;
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
  }
  .language-btn{
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid #fff;
    padding: 7px 10px;
  }
  .language-btn img{
    width: 10px;
    margin-left: 10px;
  }
  .header-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 100px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
  .header-content h1{
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    max-width: 650px;
  
  }
  .header-content h3{
    font-weight: 400;
    margin-bottom: 20px;
  }
  .email-signup{
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
  }
  .email-signup input{
    flex: 1;
    border: 0;
    outline: 0;
    margin-left: 20px;
  }
  .email-signup button{
    background: #db0001;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 15px 30px;
  }
  /*==scroll-progress-bar=============*/
  #progress{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 25px;
    right: 25px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    display: grid;
    place-items: center;
    z-index:105;
  }
  #progress-value{
    display: block;
    height: calc(100% - 5px);
    width: calc(100% - 5px);
    background-color: #1c1f25;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 0px;
  }
  /*=======================features=====================================*/
  .features{
    padding: 50px 12%;
    font-size: 22px;
  }
  .row{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
  }
  .text-col{
    flex-basis: 50%;
    margin-bottom: 20px;
  }
  .img-col{
    flex-basis: 50%;
    margin-bottom: 20px;
  }
  .img-col img{
    display: block;
    max-width: 100%;
    height: auto;
  }
  .features h2{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  /*=======================faq=====================================*/
  .faq{
    padding: 10px 12px;
    text-align: center;
    font-size: 18px;
  }
  .faq h2{
    font-weight: 500;
    font-size: 20px;
  }
  .accordion{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
  }
  .accordion li{
    list-style: none;
    width: 100%;
    padding: 5px;
  }
  .accordion li label{
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    background: #303030;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
  }
  label::after{
    content: '+';
    font-size: 34px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}
  input[type="radio"]{
    display: none;
  }
  .accordion .content{
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
    -webkit-transition: max-height 0.5s, padding 0.5s;
    -moz-transition: max-height 0.5s, padding 0.5s;
    -ms-transition: max-height 0.5s, padding 0.5s;
    -o-transition: max-height 0.5s, padding 0.5s;
}
  .accordion input[type="radio"]:checked + label + .content{
    max-height: 600px;
    padding: 30px 20px;
  
  }
  .accordion input[type="radio"]:checked + label::after{
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}
  .faq .email-signup{
    max-width: 600px;
    margin: 20px auto 60px;
  }
  .faq small{
    font-size: 13px;
  }
  /*=======================footer==============================*/
  
  .footer{
    padding: 50px 15% 10px;
    border-top: 6px solid #333;
    color: #777;
  
  }
  .footer h2{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  .footer .col{
    flex-basis: 25%;
    flex-grow: 1;
    margin-bottom: 20px;
  }
  .footer .col a{
    display: block;
    text-decoration: none;
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer .row{
    align-items: flex-start;
    padding: 10px 0;
  }
  .footer .language-btn{
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
  }
  .copyright-txt{
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  /*==============media-queries-for-small-screen==============*/
  
  @media only screen and (max-width: 600px){
    .logo{
        width: 100px;
    }
    nav button{
        padding: 5px 10px;
    }
    nav .language-btn{
        padding: 4px 8px;
    }
    .header-content{
        position: unset;
        transform: none;
        padding-top: 150px;
    }
    .header-content{
        font-size: 30px;
    }
    .email-signup button{
        font-size: 12px;
        padding: 10px 15px;
    }
    .text-col, .img-col{
        flex-basis: 100%;
    }
    .features h2{
        font-size: 30px;
    }
    .features p{
        font-size: 15px;
    }
    .row:nth-child(2), .row:nth-child(4){
        flex-direction: column-reverse;
    }
    .features .row{
        padding: 10px 0;
    }
    .faq h2{
        font-size: 20px;
    }
    .accordion .content{
        font-size: 14px;
    }
    .accordion li label{
        padding: 10px;
        font-size: 14px;
    }
    label::after{
        font-size: 22px;
    }
  }

/* Media query pour les écrans plus petits (600px ou moins) */
@media only screen and (max-width: 600px) {
  .header {
      background-size: 100% auto; /* Ajustez la largeur à 100% */
      background-position: center center; /* Centrez l'image horizontalement et verticalement */
      padding: 10px 4%; /* Réduisez le rembourrage pour les petits écrans */
  }
  
  .header-content h1 {
      font-size: 40px; /* Réduisez la taille de la police pour les petits écrans */
  }
  
  .header-content h3 {
      font-size: 18px; /* Réduisez la taille de la police pour les petits écrans */
  }
}