@import url('https://fonts.googleapis.com/css2?family=Inter&amp;family=Montserrat&amp;display=swap');

body{
    background-color: #080909;
    color:#FFF;
}

.text-gradient{
    background: linear-gradient(91deg, #F7C573 0.84%, #CE81A2 24.97%, #8757E4 66.01%, #60E7E3 102.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.monts{
    font-family: 'Montserrat', sans-serif;
}

.gradient-box {
  
    width: max-content;
    /* max-width: 22em; */
  
    position: relative;
    box-sizing: border-box;
  
    color: #FFF;
    background: #080909;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-radius: 50px;
    padding: 0.5rem 2rem 0.6rem;
     
}

.gradient-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px; /* !importanté */
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}

.backdrop-gradient {
  
    margin: auto;
    position: relative;
    box-sizing: border-box;
    color: #FFF;
    background: #080909;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-radius: 40px;
    padding: 0.5rem 2rem 0.6rem;
     
}

.backdrop-gradient::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px; /* !importanté */
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}



.gradient-box2 {
  
    width: max-content;
    margin: auto;
    /* max-width: 22em; */
  
    position: relative;
    box-sizing: border-box;
  
    color: #FFF;
    background: #080909;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 0.5rem 2rem 0.6rem;
     
}

.gradient-box2::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px; /* !importanté */
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}

.nav_item {
    position: relative;
    padding: 10px 0;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
}

.nav_item::before {
    content: '';
    position: absolute;
    bottom: -10px;
    display: block;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
    transition: bottom 0.3s ease-in-out; /* Add transition for smooth movement */
}

.nav_item:hover::before {
    bottom: 5px;
}

.nav_item:hover {
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.gradient-box3{
  
    width: max-content;
    margin: auto;
    /* max-width: 22em; */
  
    position: relative;
    box-sizing: border-box;
  
    color: #FFF;
    background: #080909;
    background-clip: padding-box; /* !importanté */
    border: solid 1px transparent; /* !importanté */
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    margin: 0 -1px;
    padding: 0.5rem 2rem 0.6rem;
     
}

.gradient-box3:before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -1px; /* !importanté */
    border-radius: inherit; /* !importanté */
    background: linear-gradient(to right, #F7C573, #CE81A2, #8757E4, #60E7E3);
}



.faq_accordion {
    background-color: 080909;
    margin: 20px 0 0;
    border-bottom: 2px solid #DCDCDC;
  }
  
  .question {
    padding: 20px 0 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  
  .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .answer {
    padding: 0 0 20px;
    line-height: 1.5rem;
  }
  
  .question.active span{
      
    background: linear-gradient(91deg, #F7C573 0.84%, #CE81A2 24.97%, #8757E4 66.01%, #60E7E3 102.72%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .question.active .arrow{
        transform:rotate(180deg);

  }
  .bottom_active {
      border-bottom: 2px solid transparent; /* Set a transparent border initially */
      border-image: linear-gradient(to right,  #F7C573, #CE81A2, #8757E4, #60E7E3) 1;
  }