@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins, sans serif';
font-family: 'Poppins', sans-serif;
}

html, body {
height: 100%;
width: 100%;
background-color: #FAEEFF;
}


header{
    width: 100%;
    height: 320px;
    z-index: 1;
}
img{
    width: 100%;

}
.parent{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: centers;
}
.container{
    width: 90%;
    height: fit-content;
    max-width: 550px;
    background-color: white;
    box-shadow: 0px 0px 3px black;
    position: absolute;
    z-index: 2;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    margin-top: -12%;
    
   
}

.header{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header h1{
    font-weight: bolder;
    font-size: 3rem;
}
.container img{
    width: 30px;
}
.accordian-item .question{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;

}
.accordian-item .question h1{
    font-size: 18px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 18px;
   
}

.answer{
    opacity: 0.7;
      font-size: 14px;
      max-width: 88%;
      display: none;
      transition: display 2s ease-in;
    /* overflow: hidden; */
  
      
  }
 
 
.active{
    display: block;
}


@media only screen and (max-width: 950px) {
    .container {
           margin-top: -250px;
    }
  }