.faq-contact .anchor-button-area{
  justify-content: space-between;
  gap: 20px 2%;
}

.card--three-column {
  width: 32%;
}

.faq-contact .anchor-button-area .anchor-button a {
  height: auto;
  padding: 30px 20px;
  font-size: 1.5rem;
}

.faq-contact .arrow-button--primary {
  width: 27px;
  height: 27px;
  font-size: 1.2rem;
}

.faq-contact .section h2 {
  font-size: 2.8rem;
}

.card.faq-card {
  padding: 30px 60px 40px;
}

.faq__link {
  display: block;
  position: relative;
  padding: 34px 50px 34px 0;
  display: flex;
  align-items: baseline;
}

.faq__text {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--text-main);
  line-height: 1.6;
	font-weight: bold;
}

.faq__label {
  color: var(--primary);
  font-family: var(--font-family-en);
  font-size: 2.8rem;
  font-weight: 500;
  margin-right: 10px;
}

.faq__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #eee;
  z-index: 1;
}

.faq__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.faq__link:hover::after {
  transform: scaleX(1);
}

.faq__link .arrow-button--primary {
  right: 0;
}

.faq-contact .section__heading-label {
  display: flex;
  gap: 10px;
}

.faq-contact .section__heading-label .label {
  padding: 4px 15px;
}

.faq-contact h2 span {
  font-family: var(--font-family-en);
  color: var(--primary);
  font-size: 5.2rem;
  margin-right: 15px;
  font-weight: 500;
}

.answer__heading {
/*   font-weight: bold; */
  font-size: 1.6rem;
  margin-bottom: 20px;
	display:flex;
}

.answer__heading .answer__text a{
    color: var(--sub-color);
  text-decoration: underline;
}

.answer__heading .answer__text{
	margin-top:15px;
}

.answer__heading .answer__text p:not(:first-child){
	margin-top:25px;
}

.answer__heading span {
  font-family: var(--font-family-en);
  color: var(--sub-color);
  font-size: 2.8rem;
  font-weight: 500;
  margin-right: 10px;
}

.card.resolution-card {
  background: var(--bg-subtle);
  text-align: center;
}

.resolution-card__question {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.resolution-card__choices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.resolution-card__choices a:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 5px 25px rgba(136, 146, 155, 0.2);
}

.resolution-card__choices a {
  display: block;
  padding: 15px;
  font-size: 1.6rem;
  border-radius: 5px;
  font-weight: bold;
  width: 35%;
  max-width: 326px;
  background: #fff;
  transition: all .2s ease-out;
  box-shadow: 0 5px 25px rgba(150, 158, 165, 0.08);
}

.resolution-card__choices a i {
  margin-right: 6px;
  font-size: 2.0rem;
}

.resolution-solved {
  color: var(--primary);
}

.contact__step-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background-color: #f4f5f8;
  padding: 24px 0;
  width: 100%;
}

.contact__step {
  background-color: #b0b0b0;
  color: white;
  padding: 12px 24px;
  border-radius: 3px;
  font-size: 1.4rem;
  position: relative;
  font-weight: bold;
  width: 12%;
  text-align: center;
}

.contact__step.active {
  background: linear-gradient(to right, var(--primary) 0%, #4E87D8 100%);
}

.contact__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  width: 60px;
  height: 2px;
  background-color: #ccc;
  transform: translateY(-50%);
  z-index: 0;
}

.l-faq__article__content__box form{
	position:relative;
}

.l-faq__article__content__box button{
	position:absolute;
	width:60px;
	height:60px;
	border-radius: 3px;
	background-color: var(--primary);
	top:1px;
	right:1px;
}

.l-faq__article__content__box button img{
	padding:15px;
}
@media (max-width: 1024px) {
  .faq-contact .anchor-button-area {
    gap: 2%;
  }

  .card--three-column {
    width: 49%; 
  }
}

@media (max-width: 768px) {
  .faq-contact .section h2 {
    font-size: 2.5rem;
  }

  .faq-contact .section h2 span {
    font-size: 3.6rem;
    margin-right: 8px;
  }

  .faq-contact .anchor-button-area .anchor-button a {
    padding: 24px 45px 24px 15px;
  }

  .card--three-column {
    width: 100%;
  }

  .faq__link {
    padding: 20px 50px 20px 0;
  }

  .card.faq-card {
    padding: 15px 15px 30px;
  }

  .resolution-card__choices {
    flex-flow: column;
  }

  .resolution-card__choices a {
    max-width: 100%;
    width: 100%;
  }
}