*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,body{
  background: linear-gradient(to bottom, #429abc, #770f0f);
   min-height: 100%;
   width: 100%;
}
.hero{
  font-family: poppins;
  /* background-color: rgb(241, 235, 227); */
  min-height: 100svh;
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  align-items: center;
  justify-content: center;
}
h1 {
  color: white;
  font-size: 3vw;
}
.FAQ {
  border-radius: 15px;
  /* background-color: red; */
  align-items: center;
  border: 1.5px solid black;
  background-color: rgb(209, 235, 235);

  height: 50%;
  width: 50%;
  margin-bottom: 5px;

  /* background-color: rgb(198, 36, 36); */
}
.FAQQ {
  min-height: 14vh;
  /* border: 2px solid black; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.FAQ h2 {
  font-size: 1.8vw;
  font-weight: 500;
  margin-right: 2rem;
  margin-left: 2rem;
}
.FAQQ i {
  cursor: pointer;
  font-size: 1.8rem;
  margin-right: 2rem;
  font-weight: 600;
}

.FAQA {
  margin-right: 2rem;
  margin-left: 2rem;
  margin-bottom: 10px;
}
.FAQA h4 {
  align-items: center;
  text-align: center;

  font-size: 1.2vw;
  font-weight: 500;
  display: none;
  transition: ease-in-out;

  color: rgb(30, 30, 30);
}
@media only screen and (max-width: 500px) {
  h1{
    font-size: 6vw;
  }
  .FAQ {
    /* background-color: red; */
    min-width: 95%;
  }

  .FAQ h2 {
    font-size: 5vw;

  }

  .FAQA h4 {
    font-size: 3vw;

  }
}
