h1,
.h1 {
  font-size: 36px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  color: #000;
  line-height: 43.2px;
}

h2,
.h2 {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}

h2.h2_mainheader {
  font-size: 36px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
}

h2:empty {
  visibility: hidden !important;
  display: none !important;
}

h3 {
  font-size: 20.8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}

h4 {
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}

h5 {
  font-size: 12.8px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}

h6 {
  font-size: 11.2px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 19.6px;
}

a {
  font-size: 16px;
  text-decoration: none;
  color: #f5f5f5;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
  color: #f5f5f5;
}

strong {
  font-weight: 700;
}

/*----------- Typography End ---------*/
.faq {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding-block: 60px;
  padding-inline: 1em;
}
.faq .wrapper > *:last-child {
  margin-bottom: 0;
}
.faq .faq__header {
  margin-bottom: 60px;
}
.faq .faq__header h1 {
  color: #790e00;
}
.faq .faq__content {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  gap: 60px;
}
.faq .faq__content .filter {
  flex: 0 0 245px;
}
.faq .faq__content .filter h3 {
  font-size: 16px;
  color: #790e00;
  margin-bottom: 30px;
  white-space: nowrap;
}
.faq .faq__content .filter .filters {
  display: grid;
  gap: 15px;
}
.faq .faq__content .filter .filters .box {
  display: flex;
  gap: 15px;
  align-items: center;
}
.faq .faq__content .filter .filters .box .image {
  flex: 0 0 35px;
  height: 35px;
}
.faq .faq__content .filter .filters .box .image img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.faq .faq__content .filter .filters .box p {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  color: #790e00;
}
.faq .faq__content .filter .filters .box:hover p {
  color: #790e00;
}
.faq .faq__content .content {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.faq .accordions {
  border-bottom: 1px solid #790e00;
  margin-top: 0px;
}
.faq .accordions h2 {
  font-size: 22px;
  color: #790e00;
  margin-bottom: 15px;
}
.faq .accordion {
  color: #422c25;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  padding: 15px 0;
  padding-right: 50px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  line-height: 19.6px;
  transition: 0.4s;
  border-top: 1px solid #790e00;
  background-color: white;
  position: relative;
}
.faq .active, .faq .accordion:hover {
  background-color: white;
}
.faq .accordion:after {
  content: "";
  color: #777;
  font-weight: bold;
  width: 15px;
  height: 7px;
  background-image: url("../images/acc_close.png");
  background-repeat: no-repeat;
  position: absolute;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
}
.faq .active:after {
  content: "";
  background-image: url("../images/acc_open.png");
}
.faq .panel {
  padding: 0;
  background-color: white;
  color: #422c25;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-right: 45px;
  padding-left: 30px;
}
.faq .panel > *:last-child {
  margin-bottom: 15px;
}
.faq .panel p {
  margin-block: 20px;
  margin-top: 10px;
  text-align: left;
  line-height: 19.6px;
}
.faq .panel ul, .faq .panel ol {
  margin: 0 0 20px;
  padding-left: 20px;
}
.faq .panel ul:first-child, .faq .panel ol:first-child {
  margin-top: 10px;
}
.faq .panel ul ul, .faq .panel ul ol, .faq .panel ol ul, .faq .panel ol ol {
  margin: 8px 0 8px 20px;
}
.faq .panel ul {
  list-style: none;
  padding-left: 28px;
}
.faq .panel ul > li {
  position: relative;
}
.faq .panel ul > li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.2em;
  width: 14px;
  height: 14px;
  background-color: #790e00;
  -webkit-mask: url(../images/svg/africa.svg) no-repeat center/contain;
  mask: url(../images/svg/africa.svg) no-repeat center/contain;
}
.faq .panel li {
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq .panel li:last-child {
  margin-bottom: 0;
}
.faq .panel a {
  color: #b59e5f;
  font-weight: 500;
}
.faq .panel a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 567px) {
  .faq .faq__content {
    flex-direction: column;
  }
  .faq .faq__content .filter {
    flex: 0 1 auto;
  }
}

/*# sourceMappingURL=faq.css.map */
