.download-form{
  padding
}
.download-form_wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.download-form_wrapper__headline-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}
.download-form_wrapper__headline-underline {
  height: 1px;
  margin: 7px 0 60px;
  width: 100%;
  background-color: var(--color-gray-400);
}
.download-form_wrapper__headline-overview {
  font-size: var(--font-size-base);
}
.download-form_wrapper__main-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.download-form_wrapper_introduction-container {
  width:100%

}
.download-form_wrapper_introduction-container h3 {
  color: var(--color-gray-800);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base) !important;
  margin-bottom: 10px;
}
.download-form_wrapper_introduction-container ul li {
  display: flex;
  flex-direction: row;
}
.download-form_wrapper_introduction-container ul li::before {
  background-color: var(--color-gray-800);
  border-radius: 50%;
  content: '';
  display: block;
  height: 4px;
  margin-right: 8px;
  min-width: 4px;
  position: relative;
  top: calc(var(--line-height-base) * var(--font-size-base) / 2);
}
.download-form_wrapper_introduction-container img {
  border-radius: 24px;
  margin-top: 30px;
  width:100%!important;
}
.download-form_wrapper__bottom{
  color:var(--color-gray-400);
  font-size:var(--font-size-sm);
  display:flex;
  gap:5px;
  margin-bottom:10px;
}
.download-form_wrapper__bottom::before {
  content: '※';
  display: block;
  min-width:14px;
  position: relative;
}

html[lang='en'] .download-form_wrapper__headline-title,
html[lang='vi'] .download-form_wrapper__headline-title {
  line-height: var(--line-height-tight);
}

html[lang='en'] .download-form_wrapper__bottom,
html[lang='vi'] .download-form_wrapper__bottom {
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .download-form_wrapper {
    flex-direction: column;
    gap: 80px;
  }
  .download-form_wrapper__headline-title {
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-bold);
  }
  .download-form_wrapper__headline-underline {
    margin: 15px 0 30px;
  }
  .download-form_wrapper__main-container {
    display: flex;
    flex-direction: row;
  }
  .download-form_wrapper_introduction-container {
    width:50%;
  }
  .fieldset.form-columns-2 {
    display: flex;
    gap: 24px;
  }
}
