/* Bootstrap의 기본 p 여백(margin-bottom: 1rem)이 전역 리셋보다 우선 적용되는 문제를
   한번에 해결 (개별 요소마다 margin:0을 반복해서 넣지 않아도 되도록) */
p {
  margin: 0;
}

.hero_h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
}

.hero_top_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 20;
}

.hero_cta_banner {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.hero_cta_tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #BC090D;
  color: #fff;
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 700;
  border-radius: 30px;
  white-space: nowrap;
}


.hero_feature_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(20px, 4vw, 32px);
  padding: clamp(16px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.hero_feature_item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.hero_feature_item svg {
  flex-shrink: 0;
  width: clamp(16px, 2.4vw, 20px);
  height: clamp(16px, 2.4vw, 20px);
}

.hero_feature_item span {
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.hero_stat_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  margin: clamp(20px, 4vw, 40px) 0;
}

.hero_stat_item {
  text-align: center;
  flex-shrink: 0;
}

.hero_stat_item + .hero_stat_item {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: clamp(16px, 4vw, 48px);
}

.hero_stat_num {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 800;
  color: #ffcc33;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.hero_stat_label {
  font-size: clamp(12px, 1.6vw, 16px);
  color: #fff;
  margin: 4px 0 0;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hero_stat_box {
    gap: 10px;
  }

  .hero_stat_item + .hero_stat_item {
    padding-left: 10px;
  }

  .hero_stat_num {
    font-size: 18px;
  }

  .hero_stat_label {
    font-size: 10.5px;
  }
}

.section_diagnosis {
  padding: 50px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.diagnosis_title {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  color: #000;
  margin: 0 0 8px;
}

.diagnosis_subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: #000;
  margin: 0 0 30px;
}

.diagnosis_layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: stretch;
  text-align: left;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.diagnosis_side {
  padding: clamp(24px, 5vw, 44px) clamp(20px, 4vw, 32px);
  border-left: 1px solid #f0f0f0;
}

.diagnosis_guide_title {
  font-size: clamp(14.5px, 1.8vw, 16px);
  font-weight: 800;
  color: #000;
  margin: 0 0 18px;
}

.diagnosis_tip_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diagnosis_tip_list li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(13.5px, 1.7vw, 15px);
  color: #000;
  line-height: 1.5;
}

.diagnosis_tip_list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #BC090D;
  font-weight: 800;
}

.diagnosis_tip_list strong {
  color: #000;
}

@media (max-width: 860px) {
  .diagnosis_layout {
    grid-template-columns: 1fr;
  }

  .diagnosis_side {
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }

  .quiz_intro_desktop_only {
    display: none;
  }
}

@media (max-width: 420px) {
  .diagnosis_guide_grid {
    grid-template-columns: 1fr;
  }

  .diagnosis_guide_item:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

.intro_card_section_label {
  margin: 20px 0 14px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 800;
  color: #0d1b2a;
}

.eligibility_list_primary {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eligibility_list_primary li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: clamp(15.5px, 2vw, 17.5px);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.5;
  transition: transform 0.15s ease;
}

.eligibility_list_primary li:hover {
  transform: translateX(3px);
}

.eligibility_list_primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.eligibility_list_primary em {
  font-style: normal;
  font-weight: 400;
  color: #000;
}

.eligibility_sub_label {
  margin: 18px 0 10px;
  font-size: clamp(13.5px, 1.7vw, 15px);
  font-weight: 700;
  color: #BC090D;
  padding-top: 14px;
  border-top: 1px dashed #eee;
}

.eligibility_list_secondary {
  margin: 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.eligibility_list_secondary li {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.15s ease, transform 0.15s ease;
}

.eligibility_list_secondary li:hover {
  color: #BC090D;
  transform: translateX(3px);
}

.eligibility_note {
  margin: 16px 0 0;
  font-size: clamp(13px, 1.6vw, 14.5px);
  color: #000;
  text-align: center;
}


.diagnosis_tabs {
  border-bottom: 2px solid #eee;
  margin-bottom: 28px;
}

.diagnosis_tabs .nav-link {
  border: none;
  color: #000;
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 16px);
  padding: 10px 4px;
  margin-right: clamp(16px, 3vw, 32px);
}

.diagnosis_tabs .nav-link.active {
  color: #BC090D;
  border-bottom: 2px solid #BC090D;
  margin-bottom: -2px;
  background: none;
}


.diagnosis_quiz_col {
  padding: clamp(24px, 5vw, 44px) clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz_box {
  padding: 0;
}

.quiz_intro {
  margin-bottom: 28px;
  padding: 18px 20px;
  background: #FFF9EC;
  border-radius: 14px;
  text-align: left;
}

.quiz_intro_title {
  font-size: clamp(12px, 1.6vw, 13px);
  font-weight: 800;
  color: #BC090D;
  margin: 0 0 10px;
}

.quiz_intro_facts {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz_intro_facts li {
  font-size: clamp(12.5px, 1.7vw, 14px);
  color: #000;
  line-height: 1.5;
}

.quiz_intro_facts strong {
  color: #000;
}

.quiz_progress {
  width: 100%;
  height: 8px;
  background: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.quiz_progress_bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e0141a, #BC090D);
  border-radius: 10px;
  transition: width 0.35s ease;
}

.quiz_counter {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: clamp(12px, 1.6vw, 13px);
  color: #BC090D;
  font-weight: 800;
  background: rgba(188, 9, 13, 0.08);
  padding: 4px 12px;
  border-radius: 30px;
}

.quiz_question {
  font-size: clamp(19px, 3.2vw, 26px);
  font-weight: 800;
  color: #000;
  line-height: 1.4;
  min-height: 2.8em;
  margin: 0 0 24px;
  text-align: center;
}

.quiz_question_hint {
  margin: -12px 0 24px;
  font-size: clamp(12px, 1.6vw, 13.5px);
  color: #000;
  line-height: 1.5;
  text-align: center;
}

.quiz_question_hint:empty {
  display: none;
}

.quiz_buttons {
  display: flex;
  gap: 14px;
}

.quiz_btn {
  flex: 1;
  padding: 18px;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.quiz_btn.no {
  background: #f2f2f2;
  color: #000;
  border: 1px solid #e0e0e0;
}

.quiz_btn.yes {
  background: #BC090D;
  color: #fff;
  border: none;
  box-shadow: 0 6px 16px rgba(188, 9, 13, 0.3);
}

.quiz_btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.quiz_btn:active {
  transform: translateY(0);
}

.diagnosis_btn {
  width: 100%;
  padding: 16px;
  background: #BC090D;
  color: #fff;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

.diagnosis_btn:hover {
  filter: brightness(1.1);
}

.diagnosis_result {
  display: none;
  margin-top: 24px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 12px;
}

.diagnosis_result.show {
  display: block;
}

.diagnosis_result_title {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 700;
  color: #000;
  margin: 0 0 8px;
}

.diagnosis_result_type {
  color: #BC090D;
}

.diagnosis_result_sub {
  font-size: clamp(13px, 1.7vw, 14px);
  color: #000;
  font-weight: 600;
  margin: 0 0 12px;
}

.diagnosis_result_desc {
  font-size: clamp(14px, 1.8vw, 15px);
  color: #000;
  margin: 0 0 8px;
}

.diagnosis_result_note {
  font-size: clamp(12px, 1.6vw, 13px);
  color: #000;
  margin: 0 0 16px;
}

.diagnosis_cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 28px;
  background: #2f4e9e;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
}

.diagnosis_cta:hover {
  filter: brightness(1.1);
}

.diagnosis_restart {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  padding: 0;
  background: none;
  border: none;
  color: #000;
  font-size: clamp(12px, 1.6vw, 13px);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.diagnosis_restart:hover {
  color: #BC090D;
}

.section_intro {
  padding: 60px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.intro_title {
  color: #000;
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 32px;
}

.intro_title_accent {
  font-weight: 800;
}

.intro_grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.intro_vs_badge {
  color: #0d1b2a;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
}

.intro_card {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 4px 14px rgba(13, 27, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intro_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(13, 27, 42, 0.09);
}

.intro_card_name {
  display: block;
  width: fit-content;
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0d1b2a;
  background: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  border: 2px solid #0d1b2a;
  margin: 0 auto 14px;
}

@media (max-width: 640px) {
  .intro_grid {
    grid-template-columns: 1fr;
  }

  .intro_vs_badge {
    display: none;
  }
}

.intro_card_lead {
  color: #0d1b2a;
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 10px;
}

.intro_card_desc {
  color: #000;
  font-size: clamp(15px, 1.9vw, 16.5px);
  line-height: 1.6;
  margin: 0;
}

.intro_card_desc strong {
  color: #000;
}

.intro_highlight {
  color: #BC090D;
  font-weight: 800;
}

.section_compare {
  padding: 60px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.compare_title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  color: #000;
  margin: 0 0 8px;
}

.compare_vs {
  color: #BC090D;
  font-size: 0.65em;
  margin: 0 6px;
}

.compare_subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: #000;
  margin: 0 0 32px;
}

.compare_table {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.compare_row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
}

.compare_row:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.compare_row_head {
  background: #0d1b2a;
}

.compare_row_head .compare_col_rehab,
.compare_row_head .compare_col_bankrupt {
  padding: 16px 10px;
  font-size: clamp(17px, 2.3vw, 21px);
  font-weight: 800;
  text-align: center;
}

.compare_row_head .compare_col_rehab {
  color: #ffcc33;
}

.compare_row_head .compare_col_bankrupt {
  color: #fff;
}

.compare_cell {
  padding: 14px 10px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.compare_label {
  background: #FFF9EC;
  font-weight: 700;
  color: #000;
  font-size: clamp(14.5px, 1.8vw, 16.5px);
  flex-direction: column;
  gap: 6px;
}

.compare_icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .compare_icon {
    width: 17px;
    height: 17px;
  }
}

.compare_row:nth-child(even) {
  background: #fafafa;
}

.compare_row:nth-child(even) .compare_label {
  background: #FFF9EC;
}

.compare_note {
  margin: 20px 0 0;
  font-size: clamp(11px, 1.4vw, 13px);
  color: #000;
}

@media (max-width: 576px) {
  .compare_row {
    grid-template-columns: 68px 1fr 1fr;
  }

  .compare_cell {
    padding: 10px 5px;
    font-size: 13px;
  }

  .compare_label {
    font-size: 12.5px;
  }

  .compare_row_head .compare_col_rehab,
  .compare_row_head .compare_col_bankrupt {
    font-size: 15px;
    padding: 12px 5px;
  }
}

.section_prosCons {
  padding: 60px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.prosCons_title {
  color: #000;
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 10px;
}

.prosCons_title_accent {
  font-weight: 800;
}

.prosCons_subtitle {
  color: #000;
  font-size: clamp(14px, 2vw, 16px);
  margin: 0 0 32px;
}

.prosCons_tabs {
  border-bottom: 2px solid #eee;
  justify-content: center;
}

.prosCons_tabs .nav-link {
  border: none;
  color: #000;
  font-weight: 800;
  font-size: clamp(16px, 2.4vw, 20px);
  padding: 12px 22px;
}

.prosCons_tabs .nav-link.active {
  color: #BC090D;
  border-bottom: 3px solid #BC090D;
  margin-bottom: -2px;
  background: none;
}

.prosCons_tab_content {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 36px);
  text-align: left;
}

.prosCons_split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.prosCons_half_label {
  font-size: clamp(20px, 2.6vw, 23px);
  font-weight: 800;
  margin: 0 0 14px;
}

.prosCons_half_pro .prosCons_half_label {
  color: #BC090D;
}

.prosCons_half_con .prosCons_half_label {
  color: #000;
}

@media (max-width: 560px) {
  .prosCons_split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.prosCons_list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prosCons_list li {
  font-size: clamp(14.5px, 1.9vw, 17px);
  font-weight: 600;
  line-height: 1.6;
  color: #000;
  transition: color 0.15s ease, transform 0.15s ease;
}

.prosCons_list li:hover {
  color: #BC090D;
  transform: translateX(3px);
}

.prosCons_half_pro .prosCons_list li::marker {
  color: #BC090D;
}

.prosCons_note {
  margin: 24px 0 0;
  font-size: clamp(13px, 1.6vw, 14.5px);
  color: #000;
}

.section_process {
  padding: 60px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: center;
}

.process_title {
  color: #000;
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 10px;
}

.process_title_accent {
  font-weight: 800;
  color: #BC090D;
}

.process_subtitle {
  color: #000;
  font-size: clamp(14px, 2vw, 16px);
  margin: 0 0 40px;
}

.process_flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  position: relative;
}

.process_step {
  position: relative;
  padding: 0 8px;
}

.process_step:not(.process_step_last)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 29px);
  width: calc(100% - 58px);
  height: 2px;
  background: #f0d9a8;
}

.process_step_num {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #0d1b2a;
  color: #ffcc33;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.process_step:hover .process_step_num {
  transform: scale(1.15);
  background: #BC090D;
  box-shadow: 0 0 0 6px rgba(188, 9, 13, 0.12);
}

.process_step {
  cursor: default;
}

.process_step:hover .process_step_title {
  color: #BC090D;
}

.process_step_title {
  transition: color 0.2s ease;
}

.process_step_title {
  color: #000;
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 0 0 6px;
}

.process_step_desc {
  color: #000;
  font-size: clamp(14.5px, 1.9vw, 16.5px);
  line-height: 1.5;
  margin: 0 0 8px;
}

.process_step_time {
  display: inline-block;
  color: #BC090D;
  font-size: clamp(13.5px, 1.7vw, 15px);
  font-weight: 700;
  background: rgba(188, 9, 13, 0.08);
  padding: 4px 11px;
  border-radius: 30px;
  margin: 0;
}

.process_note {
  margin: 32px 0 0;
  font-size: clamp(14px, 1.7vw, 15.5px);
  color: #000;
}

@media (max-width: 768px) {
  .process_flow {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .process_step:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .process_flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .process_step:nth-child(3)::after,
  .process_step:nth-child(even)::after {
    display: none;
  }
}

.section_faq {
  padding: 60px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.faq_title {
  color: #000;
  text-align: center;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 30px;
}

.faq_accordion,
.faq_accordion .accordion-item,
.faq_accordion .accordion-header,
.faq_accordion .accordion-button,
.faq_accordion .accordion-collapse,
.faq_accordion .accordion-body {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.faq_accordion .accordion-item {
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq_accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq_accordion .accordion-button {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: #000;
  padding: 18px 18px;
  box-shadow: none;
}

.faq_accordion .accordion-button::before {
  content: "Q.";
  color: #BC090D;
  font-weight: 800;
  margin-right: 10px;
}

.faq_accordion .accordion-button:not(.collapsed) {
  color: #BC090D;
  background: none;
}

.faq_accordion .accordion-button:focus {
  box-shadow: none;
}

.faq_accordion .accordion-body {
  padding: 0 18px 22px;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
  color: #000;
}

.faq_accordion .accordion-body ol {
  padding-left: 20px;
}

.blink {
  animation: blink-effect 1s linear 0.5s infinite;
}

@keyframes blink-effect {
  50% {
    opacity: 0.1;
  }
}


.modal-Identification {}

.modal-Identification h2 {
  text-align: center;
  color: #000;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

.modal-Identification .ml_info {
  font-size: 15px;
  text-align: center;
  font-weight: 300;
  line-height: 1;
}

.modal-Identification .ml_info i {
  position: relative;
  display: inline-block;
  top: 2px;
}

.modal-Identification .ml_info span {
  font-weight: 700;
}

.modal-Identification .modal_inp_wrap {
  display: table;
  width: 100%;
  margin: 0 auto;
  gap: 8px;
}

.modal-Identification .modal_inp {
  display: table-cell;
  width: 210px;
  max-width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}

.modal-Identification .modal_btn {
  display: table-cell;
  width: 100px;
  flex: 0 0 auto;
  text-align: center;
  vertical-align: top;
}

@media (max-width: 400px) {
  #authSMSModal .modal-body {
    padding: 2rem 1.25rem;
  }
}

.modal-Identification .modal_btn li:hover {
  cursor: pointer;
}

.modal-Identification .modal_btn li+li {
  margin-top: 3px;
}

.modal-Identification .modal_btn a {
  display: inline-block;
  color: #867a7e;
}

.modal-Identification .frm_auth {
  border: 0;
  border-bottom: 1px solid #76827e;
  color: #000;
  text-align: center;
  width: 100%;
  height: 35px;
  font-size: 15px;
}

.modal-Identification .ml_confirm {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .section_diagnosis,
  .section_intro,
  .section_compare,
  .section_prosCons,
  .section_process,
  .section_faq {
    width: calc(100% - 20px);
    padding-left: 12px;
    padding-right: 12px;
  }
}