section.faq {
  /* background-color: var(--background); */
}
section.faq .container {
  padding: 0 10px;
}
section.faq header {
  position: relative;
}
section.faq header h2 {
    text-align: center;
    font-size: 290%;
  color: var(--white);
  top: 30%;
  left: 0;
  right: 0;
  position: absolute;
}
section.faq header p {
    text-align: center;
    font-size: 150%;
  color: var(--white);
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
}
div.faq {
  padding: 30px 10px;
}
section.faq div.image img {
  border-radius: 0 0 10px 10px;
  width: 100%;
}
.accordion {
  max-width: 80%;
  margin: 0 auto;
  border-radius: 3px;
  /* border: 1px solid var(--copyright);
    border-radius: 10px; */
}
.heading:first-child {
  margin-top: 0;
}
.heading {
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.8px;
  padding: 15px;
  cursor: pointer;
  border: 1px solid var(--lightBlue);
  border-radius: 10px;
  margin-top: 20px;
}
/* .heading:nth-last-child(2){
    border-bottom:0; 
} */
.heading:hover {
  border-color: var(--darkBlue);
  transition: 0.3s;
}
.heading:first-child:hover {
  /* border-radius: 10px 10px 0 0; */
}
.heading:nth-last-child(2):hover {
  /* border-radius:0 0 3px 3px; */
}
.heading::before {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border-top: 7px solid var(--lightBlue);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  float: left;
  transform: rotate(0);
  transition: all 0.5s;
  margin-top: 5px;
}
.active.heading {
  border-bottom-color: var(--background);
  border-radius: 10px 10px 0 0;
}
.active.heading::before {
  transform: rotate(-180deg);
}
.not-active.heading::before {
  transform: rotate(0deg);
}
.contents {
  display: none;
  background: #fffafa;
  padding: 15px;
  color: #7f8fa4;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid var(--background);
  border-top-color: var(--background);
  border-radius: 0 0 10px 10px;
}
/*
* RESPONSIVE
*/
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 900px) {
  .accordion {
    max-width: 100%;

  }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 560px) {
  section.faq header h2 {
    font-size: 230%;
    top: 18%;
  }
  section.faq header p {
    font-size: 120%;
    top: 55%;
    padding: 0 5px;
  }
}