#faq{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30vh;
}

#faq .add{ /*Add is the name for the plus icon*/
	display: block;
}

#faq .remove{ /*Remove is the name for the less icon*/
	display: none;
}

#faq i{ 
	font-size: 30px;
}

/*Accordion container and each item*/
.accordion{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
	
}	

.accordion-item{
  background-color: transparent;
  border-bottom: 3px solid #6e7ff3;
  margin-bottom: 10px;
  padding: 10px;
}

/*Styles for the question*/

.accordion-title{
  display: flex;
  
  align-items: center;
  justify-content: space-between;	
  color: black;
  font-size: 18px;
  font-family: Open Sans;
  font-weight: 600;
  
  width: 100%;
  padding: 1rem 0;
  cursor: pointer;
  transition-duration: 0.5s;
}

.accordion-title:hover{
  color: #ff6666;
}

.accordion-title h2{
  width: 80%;
  color: #ffffff;
}

/*Styles for the answer*/

.accordion-content{
  max-height: 0;
  overflow: hidden;
  position: relative;
  background-color: #ff6666;
  transition: max-height 0.6s;
  font-family: Open Sans;
  font-weight: 400;
}

.accordion-content p{
  padding: 20px;
  color: white;
}

.faq-text {
font-size: 100%;
  color: #ffffff;

}

@media (max-width: 575px) {  
	.articles_title {
		font-size: 14px !important;
}
}
