/* .................faq..........*/


.faq {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    padding-left: 5%;
    /* background-color: black; */
  }
  
  .faqtitle {
    width: 100%;
    height: 15vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* padding-left: 5%; */
    font-family: "Lato", serif;
    font-size: 26px;
    /* color: white; */
  }
  
  details {
    width: 80%;
    background-color:black;
    border-radius: 10px;
    cursor: pointer;
    padding: 20px 30px;
    margin-block: 20px;
    color:white;
    animation: appear  linear;
    animation-timeline: view();
    animation-range: entry 3%;
  }
  
  summary,
  p {
    text-align: left;
    font-family: "Poppins", serif;
    font-size: 20px;
  }
  
  summary {
    margin-inline-start: 1rem;
    list-style-position: outside;
  }
  
  summary::marker {
    color: white;
    font-size: 18px;
  }
  
  
  
  .banner-icons{
    width: 60px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    /* background-color:rgb(68, 67, 67); */
    background: rgba(0, 0, 0, 0.6);
    border-radius: 35px;
    position: fixed;
    top: 55%;
    right: 1%;
    z-index: 1;
    animation: appear  linear;
    animation-timeline: view();
    animation-range: entry 3%;
}
