
/* faqs */
.faqs-container .content {
  padding-bottom: 70px;
  justify-content: space-between;
}

.faqs-lists {
  max-width: 1000px;
  width: 100%;
}

.faqs-lists .content p a {
  color: #dd3333;
  text-decoration: underline;
}

.faqs-lists .content h3 {
  margin: 25px 0;
}

.faqs-lists .content p {
  margin-bottom: 10px;
  line-height: 1.5;
}


.faqs-lists ul li {
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
}

.faqs-lists ul li:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.faqs-lists li .faqs-title {
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

.faqs-lists li h3 {
  font-size: 20px;
  font-family: 'Barlow-Medium';
  line-height: 1.3;
}


.faqs-lists li .close {
  display: none;
  margin-left: 20px;
  flex-shrink: 0;
}

.faqs-lists li .open {
  margin-left: 20px;
  flex-shrink: 0;
}

.faqs-lists li.active .close {
  display: block;
  margin-left: 20px;
  flex-shrink: 0;
}

.faqs-lists li.active .open {
  display: none;
  margin-left: 20px;
  flex-shrink: 0;
}

.faqs-lists .answer {
  padding-top: 25px;
  max-width: 880px;
  padding-left: 15px;
  line-height: 1.5;
  display: none;
}

.faqs-lists li.active .answer {
  display: block;
}

@media (max-width: 767px) {
  .faqs-container .content {
    padding-bottom: 40px;
  }

  .faqs-lists ul li {
    padding: 20px 0;
  }

  .faqs-lists li h3 {
    font-size: 18px;
  }

  .faqs-lists .answer {
    padding-top: 20px;
  }
  .faqs-lists li .faqs-title{
    align-items: flex-start;
  }
}


/* faqsé¡µ end */