@charset "utf-8";

/* Vietlink Style */

.l-content *,
.l-content *::before,
.l-content *::after {
  box-sizing: border-box;
}

.l-content .vl-w-50 {
  width: 50%;
}

.l-content .vl-w-100 {
  width: 100%;
}

.l-content .t-center {
  text-align: center;
}

.l-content .margin-bot-25 {
  margin-bottom: 25px;
}

/* Flex */

.l-content .vl-d-flex {
  display: flex;
}

.l-content .vl-flex-wrap {
  flex-wrap: wrap;
}

.l-content .vl-align-items-end {
  align-items: flex-end;
}

.l-content .vl-align-items-center {
  align-items: center;
}

.l-content .vl-justify-content-end {
  justify-content: flex-end;
}

/* Grid */
.l-content .container {
  max-width: 816px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.l-content .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.l-content .g-10.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -20px;
}

.l-content [class^="col"] {
  padding-left: 15px;
  padding-right: 15px;
  flex: 0 0 auto;
  max-width: 100%;
}

.l-content .g-10 [class^="col"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
  flex: 0 0 auto;
  max-width: 100%;
}

.l-content .col-4 {
  width: 33.3333333333%;
}

.l-content .col-6 {
  width: 50%;
}

.l-content .col-8 {
  width: 66.6666666667%;
}

.l-content .col-10 {
  width: 83.3333333333%;
}

.l-content .col-12 {
  width: 100%;
}

.l-content .vl-offset-1 {
  margin-left: 8.3333333333%;
}

.l-content .vl-offset-3 {
  margin-left: 25%;
}

.l-content .vl-offset-4 {
  margin-left: 33.3333333333%;
}
.l-content .vl-mt-20 {
  margin-top: 20px;
}
.l-content .vl-mb-30 {
  margin-bottom: 30px;
}
.l-content .vl-mb-32 {
  margin-bottom: 32px !important;
}
.l-content .vl-mb-40 {
  margin-bottom: 40px;
}
.l-content .vl-pt-22 {
  padding-top: 22px;
}
.l-content .vl-pt-30 {
  padding-top: 30px;
}
.l-content .vl-pt-40 {
  padding-top: 40px;
}
.l-content .vl-pt-47 {
  padding-top: 47px;
}
.l-content .vl-pb-40 {
  padding-bottom: 40px;
}
.l-content .vl-p-16 {
  padding: 16px;
}
.l-content .w-100 {
  width: 100%;
}
.l-content .bg-white {
  background-color: #ffffff;
}
.l-content .position-relative {
  position: relative !important;
}

.l-content .position-absolute {
  position: absolute !important;
}

.l-content .text-start {
  text-align: left !important;
}

.l-content .text-end {
  text-align: right !important;
}

.l-content .text-center {
  text-align: center !important;
}

.l-content .text-justify {
  text-align: justify !important;
}

.l-content .text-decoration-none {
  text-decoration: none !important;
}

.l-content .text-uppercase {
  text-transform: uppercase !important;
}
.l-content .d-inline {
  display: inline !important;
}

.l-content .d-inline-block {
  display: inline-block !important;
}

.l-content .d-block {
  display: block !important;
}

.l-content .d-flex {
  display: flex !important;
}

.l-content .justify-content-start {
  justify-content: flex-start !important;
}

.l-content .justify-content-end {
  justify-content: flex-end !important;
}

.l-content .justify-content-center {
  justify-content: center !important;
}

.l-content .justify-content-between {
  justify-content: space-between !important;
}

.l-content .justify-content-around {
  justify-content: space-around !important;
}

.l-content .align-items-start {
  align-items: flex-start !important;
}

.l-content .align-items-end {
  align-items: flex-end !important;
}

.l-content .align-items-center {
  align-items: center !important;
}

.l-content .align-content-start {
  align-content: flex-start !important;
}

.l-content .align-content-end {
  align-content: flex-end !important;
}

.l-content .align-content-center {
  align-content: center !important;
}

.l-content .align-content-between {
  align-content: space-between !important;
}

.l-content .align-content-around {
  align-content: space-around !important;
}

/* Form */

.l-content .vl-label {
  font-size: 14px;
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333333;
  display: block;
}

.l-content .vl-label span {
  color: #dd0000;
}

.l-content .vl-label i {
  font-size: 12px;
  display: block;
  line-height: 150%;
  font-weight: 400;
  font-style: inherit;
}

.l-content .vl-input-control {
  margin-bottom: 15px;
  border: solid 1px #bfbfbf;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 8px 16px;
  height: 40px;
  width: 100%;
}

.l-content .vl-form-group {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.l-content .vl-form-group label {
  margin-left: 9px;
  font-size: 14px;
}

/* Type */

.l-content .vl-fs-12 {
  font-size: 12px;
  line-height: 1.5;
}

.l-content .vl-fs-14 {
  font-size: 14px;
  line-height: 1.5;
}

.l-content .vl-fs-16 {
  font-size: 16px;
  line-height: 1.5;
}

.l-content .vl-fs-20 {
  font-size: 20px;
  line-height: 1.3;
}

.l-content .vl-fs-22 {
  font-size: 22px;
  line-height: 1.25;
}

.l-content .vl-fs-24 {
  font-size: 24px;
  line-height: 1.25;
}

.l-content .vl-fs-48 {
  font-size: 48px;
  line-height: 1.25;
}

.l-content .vl-fw-700 {
  font-weight: 700;
}

.l-content .vl-fw-400 {
  font-weight: 400;
}

.l-content .vl-btn {
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 30px;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  border: solid 1px transparent;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
}
.l-content .btn-vl-update {
  margin: 0 auto;
  min-width: 297px;
}
.l-content .vl-btn:hover {
  opacity: 0.75;
}

.l-content .vl-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC45OTk5IDhMNS45OTk5MyAxM0w1LjI5OTkzIDEyLjNMOS41OTk5MyA4TDUuMjk5OTMgMy43TDUuOTk5OTMgM0wxMC45OTk5IDhaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

/* .l-content .vl-btn[target="_blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIuNzUgMi4wMTAwMUg3Ljc1QzguMTY1IDIuMDEwMDEgOC41IDIuMzQ1MDEgOC41IDIuNzYwMDFWMy41MTAwMUg5LjI1QzkuNjY1IDMuNTEwMDEgMTAgMy44NDUwMSAxMCA0LjI2MDAxVjkuMjYwMDFDMTAgOS42NzAwMSA5LjY2NSAxMC4wMSA5LjI1IDEwLjAxSDQuMjVDMy44NCAxMC4wMSAzLjUgOS42NzAwMSAzLjUgOS4yNjAwMVY4LjUxMDAxSDIuNzVDMi4zNCA4LjUxMDAxIDIgOC4xNzAwMSAyIDcuNzYwMDFWMi43NjAwMUMyIDIuMzQ1MDEgMi4zNCAyLjAxMDAxIDIuNzUgMi4wMTAwMVpNNC4yNSA5LjI2MDAxSDkuMjVWNi4wMTAwMUg0LjI1VjkuMjYwMDFaTTIuNzUgNy43NjAwMUgzLjVWNC4yNjAwMUMzLjUgMy44NDUwMSAzLjg0IDMuNTEwMDEgNC4yNSAzLjUxMDAxSDcuNzVWMi43NjAwMUgyLjc1VjcuNzYwMDFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K");
} */

.l-content .vl-btn--0169c6 {
  background-color: #0169c6;
  color: #ffffff;
  border-color: #0169c6;
  box-shadow: 0px -1px 0px rgba(1, 105, 198, 0.2),
    0px 1px 0px rgba(0, 0, 0, 0.1);
}

.l-content .vl-btn--ff730a {
  background-color: #ff730a;
  color: #ffffff;
  border-color: #ff730a;
  box-shadow: 0px -1px 0px rgba(255, 115, 10, 0.2),
    0px 1px 0px rgba(0, 0, 0, 0.1);
}

.l-content .vl-d-none {
  display: none;
}

.l-content .vl-table-wrapper {
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 0;
}

.l-content .vl-table {
  width: 100%;
  border-collapse: collapse;
}

.l-content .vl-table tr th {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: #333333;
  padding: 10px 8px;
  height: 38px;
  border: 1px solid #e6e6e6;
  background: #f2f2f2;
}

.l-content .vl-table tr td {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #333333;
  padding: 10px 8px;
  height: 38px;
  border: 1px solid #e6e6e6;
  background-color: #ffffff;
  text-align: center;
}

.l-content .vl-table tr .th-1 {
  text-align: left;
}

.l-content .vl-table tr .td-1 {
  text-align: left;
  min-width: 225px;
}
.l-content .vl-table tr .td-1 a {
  color: #004bb1;
}
.l-content .vl-table tr .td-2 {
  color: #dd0000;
}

.l-content .vl-table tr .td-3 {
  min-width: 55px;
}

.l-content .section-01 {
  background: linear-gradient(180deg, #ffe9e8 0%, rgba(255, 233, 232, 0) 100%);
}
.l-content .section-01__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  color: #dd0000;
  margin-bottom: 16px;
}
.l-content .section-01__left {
  padding: 40px 0;
  padding-right: 85px;
}
.l-content .section-01__list {
  margin-bottom: 16px;
}
.l-content .section-01__list li {
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  position: relative;
  padding-left: 23px;
}
.l-content .section-01__list li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #333333;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.l-content .section-01__text {
  font-size: 14px;
  line-height: 150%;
}
.l-content .section-01__right {
  font-size: 10px;
  line-height: 150%;
  text-align: center;
}
.l-content .section-01__right--text {
  font-weight: bold;
  font-size: 10px;
  line-height: 150%;
  bottom: 48px;
  left: 2px;
}
.l-content .section-02 {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffdc55 0%, #ffffff 90.62%);
}
.l-content .section-02__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 16px;
}
.l-content .section-02__info {
  background: #ffffff;
  box-shadow: 0px 30px 40px rgba(212, 217, 232, 0.2);
  border-radius: 8px;
  padding: 16px 31px;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  color: #262626;
  min-height: 137px;
  margin-bottom: 17px;
}
.l-content .quote-top {
  left: 6px;
  top: 16px;
}
.l-content .quote-bot {
  right: 6px;
  bottom: 16px;
}
.l-content .quote-arrow {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.l-content .section-02__name {
  text-align: center;
  font-size: 12px;
  line-height: 150%;
  color: #262626;
  margin-bottom: 36px;
}
.l-content .section-02__name span {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 130%;
}
.l-content .section-2_form {
  background: #ffffff;
  border: 4px solid #ffcc00;
  box-shadow: 0px 30px 40px rgba(212, 217, 232, 0.2);
  border-radius: 2px;
  padding: 24px 30px;
}
.l-content .form-title_free {
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  display: inline-block;
  background: #dd0000;
  border-radius: 2px;
  padding: 4px 8px;
  margin-bottom: 4px;
}
.l-content .form-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e6e6;
}
.l-content .form-check {
  display: inline-block;
  margin-right: 33px;
  margin-bottom: 16px;
}
.l-content .form-check-input {
  transform: translateY(2px);
}
.l-content .form-check-label {
  font-size: 14px;
  line-height: 150%;
  margin-left: 6px;
}
.l-content .section-03 {
  padding: 40px 0;
  background: #e6f0fa;
  box-shadow: inset 0px 4px 0px #0169c6;
}
.l-content .section-03__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #0169c6;
  margin-bottom: 8px;
}
.l-content .section-03__desc {
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}
.l-content .section-03__desc span {
  display: inline-block;
  padding: 2px 16px;
  background: #ffffff;
  border-radius: 2px;
  margin-bottom: 32px;
}
.l-content .section-03__info {
  padding: 30px;
  background: #ffffff;
  box-shadow: inset -0.5px 0px 0px #ced5e2, inset 0.5px 0px 0px #ced5e2,
    inset 0px -0.5px 0px #ced5e2, inset 0px 0.5px 0px #ced5e2;
  border-radius: 4px;
  margin-bottom: 32px;
}
.l-content .section-03__info--left {
  flex-direction: column;
}
.l-content .section-03__info--left img {
  margin-bottom: 9px;
}
.l-content .section-03__span {
  font-weight: bold;
  font-size: 10px;
  line-height: 150%;
  text-align: center;
}
.l-content .section-03__span02 {
  margin: 0 43px;
}
.l-content .section-03__info--right {
  font-size: 14px;
  line-height: 150%;
}
.l-content .table-title {
  display: inline-block;
  background: #0169c6;
  border-radius: 2px;
  font-weight: bold;
  font-size: 14px;
  line-height: 130%;
  text-align: right;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 8px;
  margin-top: 32px;
}
.l-content .section-04 {
  padding: 40px 0;
  background: #fce6e6;
  box-shadow: inset 0px 4px 0px #dd0000;
}
.l-content .section-04__title--top {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
  padding: 10.5px 16px;
  background: #dd0000;
  margin-bottom: 16px;
}
.l-content .bg-left {
  left: -4px;
  top: 0;
}
.l-content .bg-right {
  right: -4px;
  top: 0;
}
.l-content .section-04__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 8px;
}
.l-content .section-04__desc {
  display: inline-block;
  background: #ffffff;
  border-radius: 2px;
  padding: 2px 16px;
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 32px;
}
.l-content .section-04__desc span {
  color: #dd0000;
  text-transform: uppercase;
}
.l-content .section-05 {
  padding-top: 32px;
  margin-bottom: 24px;
}
.l-content .section-05__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 32px;
}
.l-content .text-update {
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
}
