.site-content {
  margin-top: 0 !important;
  padding-top: var(--navbar-new__height) !important;
  background: url(imgs/background.svg) no-repeat;
  background-position: left top;
  background-size: 85%;
}


@keyframes loader-animation {
  0% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #000;
  }
  33% {
    box-shadow: 20px 0 #000, -20px 0 #0002;
    background: #0002;
  }
  66% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #0002;
  }
  100% {
    box-shadow: 20px 0 #0002, -20px 0 #000;
    background: #000;
  }
}

.ui-widget.ui-widget-content {
  border: none !important;
  box-shadow: 8px 12px 32px 0px rgba(34, 34, 34, 0.12);
  border-radius: 16px;
  padding: 22px 20px;
  width: 294px;
  box-sizing: content-box;
}
.ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
  text-align: center;
  background: none !important;
  border: none !important;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  line-height: 40px !important;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  color: #000 !important;
  background: #dcdcdc !important;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  color: #FFF !important;
  background: #000 !important;
}

.afc_loader {
  position: relative;
}
.afc_loader:before {
  content: '';
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, .2);
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
}
.afc_loader:after {
  content: '';
  display: block;
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: loader-animation 1s infinite linear alternate;
  position: absolute;
  top: min(30vh, 50%);
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.afc_hero-block {
  margin: 0 0 120px;
}
.afc_hero {
  max-width: 1090px;
  margin: 0 auto;
}
.afc_hero:after {
  content: '';
  clear: both;
  display: block;
}
.afc_hero-info-block {
  width: calc(50% - 20px);
  float: left;
}
.afc_hero-title {
  line-height: 48px;
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 24px;
}
.afc_hero-info {
  line-height: 32px;
  font-size: 24px;
  font-weight: 500;
}
.afc_hero-form-block {
  width: calc(50% - 20px);
  float: right;
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, .6);
  border: 1px solid #FFF;
  border-radius: 16px;
  padding: 26px 36px;
  box-sizing: border-box;
}
.afc_hero-form-info {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
.afc_hero-file-block {
  margin-bottom: 30px;
}
.afc_hero-file-box {
  display: block;
  position: relative;
  cursor: pointer;
}
.afc_hero-file-box:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20
}
.afc_hero-file-input {
  display: none;
}
.afc_hero-file {
  height: 176px;
  border: 2px dashed #B5B5B5;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: .2s all ease-in-out;
}
.afc_hero-file-box.drop .afc_hero-file {
  background: rgba(255, 255, 255, .6);
}
.afc_hero-file-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  position: absolute;
  padding-top: 30px;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.afc_hero-file-title:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 25px;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: url(imgs/download.svg) no-repeat center / contain;
}
.afc_hero-input-block {
  margin-top: 20px;
}
.afc_hero-input-box {
  padding-top: 14px;
  position: relative;
  display: block;
}
.afc_hero-input {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #222;
  line-height: 40px;
  padding: 0;
  width: 100%;
  margin: 0;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  outline: none;
}
.afc_hero-input-label {
  color: #727272;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  position: absolute;
  top: 23px;
  line-height: 20px;
  user-select: none;
  transform: scale(1);
  transform-origin: left;
  cursor: text;
  transition: .2s all ease-in-out;
}
.afc_hero-input.not-empty + .afc_hero-input-label,
.afc_hero-input:focus + .afc_hero-input-label {
  top: 0;
  transform: scale(.8);
}
.afc_hero-submit-box {
  margin-top: 25px;
}
.afc_hero-submit {
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  line-height: 26px;
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #FFF;
  border: none;
  padding: 15px 48px;
  opacity: 1;
  border-radius: 40px;
  transition: .2s all ease-in-out;
}
.afc_hero-submit:hover {
  opacity: .8;
}
.afc_hero-submit:disabled {
  user-select: none;
  pointer-events: none;
  opacity: .6;
}

.afc_modal-block {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: -100%;
  background: rgba(0, 0, 0, .6);
  z-index: 9999999;
  transition: .4s opacity ease-in-out, 0s left ease-in-out .4s;
}
.afc_modal-block.open {
  left: 0;
  opacity: 1;
  transition: .4s opacity ease-in-out;
}
.afc_modal-box {
  max-width: 640px;
  margin: 0 auto;
  height: 100%;
}
.afc_modal {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  background: #FFF;
  padding: 32px 50px;
  border-radius: 18px;
}
.afc_modal-icon-box {
  line-height: 80px;
  text-align: center;
  margin-bottom: 25px;
}
.afc_modal-icon {
  max-width: 80px;
  max-height: 80px;
  vertical-align: middle;
}
.afc_modal-info-box {
  text-align: center;
}
.afc_modal-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 5px;
}
.afc_modal-info {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.afc_modal-close-box {
  margin-top: 40px;
  text-align: center;
}
.afc_modal-close {
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  line-height: 26px;
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #FFF;
  border: none;
  padding: 15px 48px;
  opacity: 1;
  border-radius: 40px;
  transition: .2s all ease-in-out;
}
.afc_modal-close:hover {
  opacity: .8;
}

.afc_hdocuments-block {
  margin: 120px 0 60px;
}
.afc_hdocuments {
  max-width: 1090px;
  margin: 0 auto;
}
.afc_hdocuments-title-box {
  margin: 0 0 30px;
}
.afc_hdocuments-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
}
.afc_hdocuments-form-box {
  background: #FFF;
  border-radius: 30px;
  padding: 30px 35px 20px;
}
.afc_hdocuments-form {}
.afc_hdocuments-form-row {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.afc_hdocuments-form-row:last-child {
  margin: 0;
}
.afc_hdocuments-form-sname {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 45%;
  width: 45%;
}
.afc_hdocuments-form-input-box {
  padding-top: 14px;
  position: relative;
  display: block;
}
.afc_hdocuments-form-input {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #222;
  line-height: 40px;
  padding: 0;
  width: 100%;
  margin: 0;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  outline: none;
}
.afc_hdocuments-form-input.afc_datepicker {
  background: url(imgs/calendar.svg) no-repeat right;
}
.afc_hdocuments-form-input-label {
  color: #727272;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  position: absolute;
  top: 23px;
  line-height: 20px;
  user-select: none;
  transform: scale(1);
  transform-origin: left;
  cursor: text;
  transition: .2s all ease-in-out;
}
.afc_hdocuments-form-input.not-empty + .afc_hdocuments-form-input-label,
.afc_hdocuments-form-input:focus + .afc_hdocuments-form-input-label {
  top: 0;
  transform: scale(.8);
}
.afc_hdocuments-form-sdate {
  width: 100%;
}
.afc_hdocuments-form-checboxes {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 20px;
}
.afc_hdocuments-form-checbox-block {
  color: #86868B;
  transition: .2s all ease-in-out;
}
.afc_hdocuments-form-checbox-box {
  width: 22px;
  height: 22px;
  position: relative;
  float: left;
}
.afc_hdocuments-form-checbox-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.afc_hdocuments-form-checbox {
  width: 22px;
  height: 22px;
  position: relative;
  border: 2px solid #86868B;
  border-radius: 5px;
  background: #FFF;
  transition: .2s all ease-in-out;
}
.afc_hdocuments-form-checbox-input:checked + .afc_hdocuments-form-checbox {
  background: #222;
  border-color: #222;
}
.afc_hdocuments-form-checbox-block:hover .afc_hdocuments-form-checbox {
  border-color: #222;
}
.afc_hdocuments-form-checbox-block:hover .afc_hdocuments-form-checbox-input:checked + .afc_hdocuments-form-checbox {
  background: #222;
}
.afc_hdocuments-form-checbox:before {
  content: '';
  background: #FFF;
  width: 6px;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  top: 11px;
  left: 3px;
  transform: rotate(45deg);
}
.afc_hdocuments-form-checbox:after {
  content: '';
  background: #FFF;
  width: 12px;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  top: 9px;
  left: 5px;
  transform: rotate(-45deg);
}
.afc_hdocuments-form-checbox-label {
  font-size: 17px;
  color: #86868B;
  font-family: Nunito;
  font-style: normal;
  font-weight: 600;
  transition: .2s all ease-in-out;
  margin-left: 40px;
  line-height: 22px;
  user-select: none;
}
.afc_hdocuments-form-checbox-block:hover .afc_hdocuments-form-checbox-label {
  color: #222;
}
.afc_hdocuments-form-submit-box {}
.afc_hdocuments-form-submit {
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  line-height: 26px;
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #FFF;
  border: none;
  padding: 15px 48px;
  border-radius: 40px;
  opacity: 1;
  transition: .2s all ease-in-out;
}
.afc_hdocuments-form-submit:hover {
  opacity: .8;
}

.afc_documents-block {
  margin: 60px 0 120px;
}
.afc_documents {
  max-width: 1090px;
  margin: 0 auto;
}
.afc_documents-htitle-box {
  margin: 0 0 30px;
}
.afc_documents-htitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
.afc_documents-title-box {}
.afc_documents-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
.afc_documents-list-box {
  position: relative;
}
.afc_documents-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.afc_documents-list > li {
  background: #FFF;
  margin-bottom: 20px;
  border-radius: 30px;
  padding: 30px 35px;
}
.afc_documents-list > li:last-child {
  margin: 0;
}
.afc_documents-title-block {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.afc_documents-time-box {}
.afc_documents-time {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
.afc_documents-buttons-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.afc_documents-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.afc_documents-button {
  font-family: Nunito;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  line-height: 20px;
  padding: 10px 25px;
  margin: 0;
  vertical-align: middle;
  background: #F0EEE7;
  border: none;
  color: #000;
  border-radius: 30px;
  opacity: 1;
  position: relative;
  transition: .2s all ease-in-out;
}
.afc_documents-button:hover {
  opacity: .8;
}
.afc_documents-button:disabled {
  opacity: 1 !important;
  pointer-events: none;
}
.afc_documents-button-verified {
  background: #69E245;
  padding-right: 44px;
  padding-left: 30px;
}
.afc_documents-button-verified:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(imgs/check.svg) no-repeat center / contain;
  position: absolute;
  top: 13px;
  right: 21px;
}
.afc_documents-button-noverified {
  background: #FF0000;
  color: #FFF;
}
.afc_documents-open-box {}
.afc_documents-open {
  width: 40px;
  height: 40px;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: url(imgs/arrow.svg) no-repeat center;
  background-size: 25px;
  vertical-align: middle;
  opacity: .6;
  transform: rotate(0deg);
  transition: .2s all ease-in-out;
}
.afc_documents-open:hover {
  opacity: 1;
}
.afc_documents-open.open {
  transform: rotate(180deg);
  opacity: 1;
}
.afc_documents-hash-block {
  max-height: 0;
  overflow: hidden;
  transition: .4s all ease-in-out;
}
.afc_documents-hash-box {}
.afc_documents-hash-title {
  color: #2E2E2E;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 5px;
  padding-top: 30px;
}
.afc_documents-hash-value {
  line-height: 26px;
}
.afc_documents-hash {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  display: inline;
  vertical-align: middle;
  word-break: break-all;
}
.afc_documents-hash-copy-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.afc_documents-hash-copy {
  width: 24px;
  height: 24px;
  background: url(imgs/copy.svg) no-repeat center / contain;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.afc_documents-pagination-block {}
.afc_documents-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.afc_documents-pagination > li {}
.afc_documents-pagination > li > span {
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  opacity: .4;
}
.afc_documents-pagination > li > a {
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  opacity: .4;
  transition: .2s all ease-in-out;
}
.afc_documents-pagination > li > a:hover,
.afc_documents-pagination > li > a.active {
  opacity: 1;
}
.afc_documents-pagination-prev {
  background: url(imgs/arrow-left.svg) no-repeat center;
}
.afc_documents-pagination-next {
  background: url(imgs/arrow-right.svg) no-repeat center;
}

.afc_faq-block {
  margin: 120px 0;
}
.afc_faq {
  max-width: 1090px;
  margin: 0 auto;
}
.afc_faq-title-box {
  margin: 0 0 40px;
}
.afc_faq-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
.afc_faq-list-box {}
.afc_faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.afc_faq-list > li {
  border-bottom: 1px solid #86868B;
  padding: 30px 0 30px;
}
.afc_faq-list > li:last-child {
  border: none;
}
.afc_faq-label-box {
  position: relative;
}
.afc_faq-label {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  opacity: 1;
  padding-right: 40px;
  transition: .2s all ease-in-out;
}
.afc_faq-label:hover {
  opacity: .8;
}
.afc_faq-label-arrow {
  width: 25px;
  height: 25px;
  background: url(imgs/arrow.svg) no-repeat center / contain;
  opacity: .6;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%) rotate(0deg);
  transition: .2s all ease-in-out;
}
.afc_faq-label-box.open .afc_faq-label-arrow {
  opacity: 1;
  transform: translate(0, -50%) rotate(180deg);
}
.afc_faq-label-box:hover .afc_faq-label-arrow {
  opacity: 1;
}
.afc_faq-content-box {
  max-height: 0;
  overflow: hidden;
  transition: .4s all ease-in-out;
}
.afc_faq-content {
  padding-top: 10px;
}
.afc_faq-content,
.afc_faq-content * {
  color: #000 !important;
  font-size: 24px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 34px !important;
}
.afc_faq-content ol {
  padding-left: 30px;
}

.wpml-ls-sub-menu .menu-item__active-lang span:after {
  filter: invert(100%) sepia(0) saturate(0) hue-rotate(187deg) brightness(106%) contrast(106%);
}
.app-store-list__single-store a .single-store__img img {
  filter: invert(100%);
}
#top span:last-child {
  filter: invert(100%);
}
#top:hover span:last-child {
  filter: inherit;
}


@media screen and (max-width: 1090px) {
  .afc_hero-block {
    padding: 0 24px;
  }
  .afc_hdocuments-block {
    padding: 0 24px;
  }
  .afc_documents-block {
    padding: 0 24px;
  }
  .afc_faq-block {
    padding: 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .site-content {
    background-size: 100%;
    background-position: 0 460px;
    background-image: url(imgs/background-mobile.svg);
    padding-top: 140px !important;
  }
  #navbar-new__bot-mobile {
    display: none;
  }

  .afc_hero-block {
    margin-top: 20px;
    margin-bottom: 80px;
  }
  .afc_hero {}
  .afc_hero-info-block {
    width: auto;
    float: none;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .afc_hero-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 29px;
  }
  .afc_hero-info {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }
  .afc_hero-form-block {
    float: none;
    width: auto;
    padding: 20px;
  }
  .afc_hero-form-info {}
  .afc_hero-file-box {}
  .afc_hero-file-input {}
  .afc_hero-file {}
  .afc_hero-file-title {}
  .afc_hero-input-block {}
  .afc_hero-input-box {}
  .afc_hero-input {}
  .afc_hero-input-label {}
  .afc_hero-submit-box {}
  .afc_hero-submit {
    background: #FFF !important;
    color: #000 !important;
  }

  .afc_modal-block {}
  .afc_modal-box {}
  .afc_modal {}
  .afc_modal-icon-box {}
  .afc_modal-icon {}
  .afc_modal-info-box {}
  .afc_modal-title {}
  .afc_modal-info {}
  .afc_modal-close-box {}
  .afc_modal-close {}

  .afc_hdocuments-block {
    margin-top: 80px;
  }
  .afc_hdocuments {}
  .afc_hdocuments-title-box {
    padding: 0 20px;
  }
  .afc_hdocuments-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
  }
  .afc_hdocuments-form-box {
    padding: 0 20px;
    background: transparent;
  }
  .afc_hdocuments-form {}
  .afc_hdocuments-form-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 40px;
  }
  .afc_hdocuments-form-sname {
    width: auto;
    flex-basis: auto;
  }
  .afc_hdocuments-form-input-box {}
  .afc_hdocuments-form-input {}
  .afc_hdocuments-form-input-label {}
  .afc_hdocuments-form-sdate {}
  .afc_hdocuments-form-checboxes {
    gap: 20px;
    padding-bottom: 20px;
  }
  .afc_hdocuments-form-checbox-block {}
  .afc_hdocuments-form-checbox-box {}
  .afc_hdocuments-form-checbox-input {}
  .afc_hdocuments-form-checbox {}
  .afc_hdocuments-form-checbox-label {}
  .afc_hdocuments-form-submit-box {}
  .afc_hdocuments-form-submit {
    background: #FFF !important;
    color: #000 !important;
  }

  .afc_documents-block {
    margin-bottom: 60px;
  }
  .afc_documents {}
  .afc_documents-htitle-box {
    padding: 0 20px;
  }
  .afc_documents-htitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
  }
  .afc_documents-title-box {}
  .afc_documents-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }
  .afc_documents-list-box {}
  .afc_documents-list {}
  .afc_documents-list > li {
    padding: 30px 20px;
  }
  .afc_documents-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .afc_documents-time-box {}
  .afc_documents-time {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
  }
  .afc_documents-buttons-block {}
  .afc_documents-buttons {}
  .afc_documents-button {}
  .afc_documents-button-verified {}
  .afc_documents-button-noverified {}
  .afc_documents-open-box {}
  .afc_documents-open {}
  .afc_documents-hash-block {}
  .afc_documents-hash-box {}
  .afc_documents-hash-title {}
  .afc_documents-hash-value {}
  .afc_documents-hash {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }
  .afc_documents-hash-copy-box {}
  .afc_documents-hash-copy {}
  .afc_documents-pagination-block {}
  .afc_documents-pagination {}
  .afc_documents-pagination-prev {}
  .afc_documents-pagination-next {}

  .afc_faq-block {
    margin-top: 80px;
  }
  .afc_faq {}
  .afc_faq-title-box {}
  .afc_faq-title {
    font-size: 28px;
  }
  .afc_faq-list-box {}
  .afc_faq-list {}
  .afc_faq-list > li {
    padding: 10px 0;
  }
  .afc_faq-label-box {}
  .afc_faq-label {
    font-size: 16px;
    font-weight: 600;
  }
  .afc_faq-label-arrow {}
  .afc_faq-content-box {}
  .afc_faq-content,
  .afc_faq-content * {
    color: #868686 !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 19px !important;
  }
}