@import "../util/util.css";
.faqSection {
  background-color: var(--secondary--background);
  box-sizing: border-box;
  color: var(--white-color);
  position: relative;
  z-index: 0;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.faqSection:before,
.faqSection:after {
  background: inherit;
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
.faqSection:before {
  top: 0;
  transform: skewY(-1.7deg);
  transform-origin: 0 0;
}
.faqSection:after {
  bottom: 0;
  transform: skewY(1.5deg);
  transform-origin: 0 0;
}

.gallery img {
  float: left;
  padding: 10px 30px;
}

.gallerySection__heading {
  text-align: center;
  font-weight: 600;
  font-size: var(--font-sm);
  text-transform: uppercase;
}
.gallerySection__center__hr {
  text-align: center;
  color: var(--primary--element);
  width: 60px;
  height: var(--height-xxs);
  background-color: var(--primary--element);
  margin: 0 auto;
}





.accordion {
  background-color: var(--secondary--background);
  color: #D4D4D4;
  cursor: pointer;
  padding: 0.rem;
  width: 100%;
  border: none !important;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
  
}

.active, .accordion:hover {
  outline:none !important;
}

.accordion:after {
  outline:none !important;
  font-family: FontAwesome;
  content: '\f078';
  color: rgba(255, 255, 255, 0.315);
  font-weight: bold;
  float: right;
  margin-left: 5px;
  border: none;
  
}

button:focus { outline:0 !important; }

.accordion .active:after {
  
  content: "\f077";
  outline:none !important;
}

.panel {
  padding: 0.6rem 18px 0rem;
  background-color: var(--secondary--background);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: rgba(255, 255, 255, 0.575);
  outline:none !important;
}

.faq_hr{
  background-color: #878787;
}
