.accord__contaner {
  margin-top: var(--mar-32);
  margin-bottom: var(--mar-32);
}
.accord__card {
  padding: var(--mar-32);
  cursor: pointer;
  box-shadow: 0px 5px 25px 0px #16233f14;
  border-radius: var(--radius);
}
.accord__card:not(:last-child) {
  margin-bottom: 24px;
}
.accord__card_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.accord__card_title h3 {
  font-size: 18px;
  margin: 0 0 0 24px !important;
}
.accord__card_title h3::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #3a3c41;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.accord__card_title_arrow {
  max-height: 14px;
  max-width: 14px;
  min-height: 14px;
  min-width: 14px;
  width: 100%;
  height: 100%;
}
.accord__card_title_arrow::after,
.accord__card_title_arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: black;
}
.accord__card_title_arrow::before {
  width: 100%;
  height: 1px;
}
.accord__card_title_arrow::after {
  width: 1px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.accord__card_title_arrow.active::after {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.accord__card_content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.accord__card_content p {
  margin-top: var(--mar-s);
  margin-bottom: 0;
  height: 100%;
  font-size: 14px;
}
.faq_banner {
  position: relative;
  padding: 70px 80px;
  /* background-color: #e4f2ff; */
  background-image: url('/assets/banner-settings.webp');
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  overflow: hidden;
  /* margin-bottom: 80px; */
}
.faq_banner h5 {
  font-size: 42px;
  font-weight: 700 !important;
}
.faq_banner__text {
  width: 40%;
}
.faq_banner__img {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1200px) {
  .faq_banner__img {
    display: none;
  }
  .faq_banner__text {
    width: 100%;
  }
  .faq_banner {
    padding: 24px 54px;
  }
}
