@charset "utf-8";
/* CSS Document */

img {
  width: 100%;
}

.hidden {
  display: none;
}

.container-faq {
  display: flex;
  justify-content: center;
  padding: 6rem 4rem;
  
}

.faq-container {
  display: flex;
}

.faq-info {
  width: 50%;
}

h1 {
  margin-bottom: 2rem;
  font-family: "Metric Black";
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;

}

p{
	
  font-family: "Metric Light";
  font-size: 19px;
  font-weight: 400px;
  line-height: 26px;
  color: #000000;
  text-align: left;


 

}

.faq-item {
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  background: var(--secondery);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

h3 {
	font-family: "Metric SemiBold";
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	color: #000000;
    
	

}

.faq-toggler {
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  cursor: pointer;
}

.faq-item-body {
  padding: 0 1rem 1rem 1rem;
  color: var(--primary);
  opacity: 0.7;
  font-family: "Metric Light";
  font-size: 19px;
  font-weight: 400px;
  line-height: 26px;
  
}

.faq-img {
  width: 60%;
}

@media screen and (max-width: 800px) {
  .faq-container {
    flex-direction: column-reverse;
  }

  .faq-img,
  .faq-info {
    width: 100%;
  }

  h1 {
    text-align: center;
  }
}