@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 25px 52px;
  background: #004e89;
  box-sizing: border-box;
  z-index: 50;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-left .logo img {
  width: 100%;
}
.header-left .filter {
  margin-left: 56px;
}

.header-left .filter select {
  width: 600px;
  padding: 10px;
  background: #fff;
  outline: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #2c2c2c;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
.header-left .filter select::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  width: 24px;
  height: 24px;
  cursor: pointer;
  pointer-events: none;
  transition: 0.25s all ease;
  color: #000000;
}
.header-right {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-right li {
  margin-left: 16px;
  padding-right: 16px;
  color: #fff;
}
.header-right li a {
  color: #fff;
  font-size: 18px;
  font-family: "Inter";
  font-weight: 500;
}
.header-right li:first-child {
  list-style: none;
}
.header-right li:last-child {
  padding-right: 0;
}
.header-btn {
  display: none;
  position: relative;
  width: 22px;
  height: 14px;
  cursor: pointer;
  border: none;
  background: none;
}
.header-btn span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: white;
}
.header-btn span:nth-child(2) {
  top: 6px;
}
.header-btn span:last-child {
  top: 12px;
}
.header-btn.nav-open span:first-child, .header-btn.nav-open span:last-child {
  top: 8px;
}
.header-btn.nav-open span:first-child {
  transform: rotate(45deg);
}
.header-btn.nav-open span:last-child {
  transform: rotate(-45deg);
}
.header-btn.nav-open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header-mobile {
  position: fixed;
  right: 0;
  top: 54px;
  background: #004e89;
  width: 75%;
  height: 100vh;
  padding: 16px;
  display: none;
}
.header-mobile .filter {
  width: 100%;
  margin-bottom: 16px;
}
.header-mobile .filter select {
  width: 100%;
  padding: 4px;
  background: #fff;
  outline: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.header-mobile .filter select::after {
  content: "▼";
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  width: 24px;
  height: 24px;
  cursor: pointer;
  pointer-events: none;
  transition: 0.25s all ease;
  color: #000000;
}
.header-mobile ul {
  margin: 0;
  padding: 0;
}
.header-mobile ul li {
  list-style: none;
  padding: 15px 0;
  border-bottom: 1px solid #f4f4f4;
}
.header-mobile ul li a {
  color: white;
  font-size: 16px;
  color: white;
}
.header-mobile.on {
  display: block;
}

.content {
  width: 100%;
  background: #f2f2f2;
  padding: 24px;
  margin-top: 86px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  box-sizing: border-box;
}
.content .process {
  width: 100%;
  margin-bottom: 16px;
}
.content .process-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.content .process-text p {
  color: rgba(44, 44, 44, 0.72);
  font-size: 18px;
  margin: 0;
}
.content .process-bar {
  border-radius: 200px;
  background: #f2f2f2;
  width: 100%;
  height: 5px;
  position: relative;
  display: block;
}
.content .process-bar-inside {
  border-radius: 200px;
  background: #1a659e;
  height: 100%;
  display: block;
}
.content .process.stt {
  margin-bottom: 0;
  width: 100%;
}
.content .process.stt p {
  margin: 0;
  margin-bottom: 8px;
  color: rgba(44, 44, 44, 0.8);
  font-size: 18px;
  font-weight: 500;
}
.content .process.stt .process-text {
  margin-bottom: 8px;
  width: 100%;
}
.content .process.stt .process-text p {
  color: rgba(44, 44, 44, 0.72);
  font-size: 16px;
  margin: 0;
}
.content .process.view {
  margin-bottom: 0;
}
.content .process.view p {
  width: 100%;
  margin: 0;
  margin-bottom: 8px;
  color: rgba(44, 44, 44, 0.8);
  font-size: 18px;
  font-weight: 500;
}
.content .process.view .process-text {
  margin-bottom: 8px;
}
.content .process.view .process-text-left {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .process.view .process-text-left svg {
  margin-right: 8px;
}
.content .process.view .process-text p {
  width: auto;
  color: rgba(44, 44, 44, 0.72);
  font-size: 16px;
  margin: 0;
}
.content .process.view .process-bar.blue {
  margin-bottom: 10px;
}
.content .process.view .process-bar.orange .process-bar-inside {
  background: #c6946e;
}
.content-left .number {
  display: flex;
  width: 100%;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #efefd0;
  margin-bottom: 24px;
  box-sizing: border-box;
  text-align: center;
}
.content-left .number p {
  color: #004e89;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}
.content-left .number h3 {
  color: #004e89;
  font-size: 128px;
  font-weight: 700;
  margin: 0;
}
.content .content-item {
  padding: 16px;
  width: 100%;
  background: #fff;
  margin-bottom: 24px;
  box-sizing: border-box;
}
.content .content-item h5 {
  color: #2c2c2c;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 16px;
}
.content .content-item span {
  color: rgba(44, 44, 44, 0.8);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.content .content-item span a {
  color: #1a659e;
  font-weight: 500;
}
.content .content-item-number {
  width: 100%;
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: #efefd0;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.content .content-item-number h4 {
  color: #1a659e;
  font-size: 18px;
  margin: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .content-item-number h4 span {
  color: #004e89;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin: 0 8px;
}
.content .content-item .detail {
  width: 100%;
  display: grid;
}
.content .content-item .detail-item {
  padding: 0 24px;
  box-sizing: content-box;
}
.content .content-item .detail-item h6 {
  width: 100%;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: #f2f2f2;
  margin: 0;
  margin-bottom: 16px;
  color: #2c2c2c;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  box-sizing: border-box;
}
.content .content-item .detail-item .process:last-child {
  margin-bottom: 0;
}
.content .content-item .detail.col-3 {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.content .content-item .detail.col-3 .detail-item:nth-child(2) {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
.content .content-item .detail.col-2 {
  grid-template-columns: 1fr 1fr;
}
.content .content-item .detail.col-2 .detail-item:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.content .content-item ol {
  padding-left: 20px;
  margin: 0;
}
.content .content-item ol li {
  margin-bottom: 16px;
}
.content .content-item ol li:last-child {
  margin-bottom: 0;
}
.content .content-item ol li ::marker {
  color: rgba(44, 44, 44, 0.8);
  font-size: 18px;
  font-weight: 500;
}
.content .content-item .tab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
}
.content .content-item .tab-item {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.16);
  background: #f2f2f2;
}
.content .content-item .tab-item:last-child {
  border-right: 0;
}
.content .content-item .tab-item p {
  color: #8f8f8f;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.content .content-item .tab-item.active {
  background: #ff6b35;
}
.content .content-item .tab-item.active p {
  color: white;
}
.content .content-item .tab-content-item {
  display: none;
}
.content .content-item .tab-content-item:first-child {
  display: block;
}

.footer {
  display: flex;
  padding: 25px 24px;
  align-items: flex-start;
  background: #004e89;
}
.footer-logo {
  padding-right: 24px;
}
.footer-logo img {
  width: 100%;
}
.footer-main {
  flex: 1;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.footer-main h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 8px;
}
.footer-main h6 {
  color: rgba(254, 254, 254, 0.6);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 0;
}
.footer-main .line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-main .line span {
  width: 200px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 500;
}
.footer-main .line span svg {
  margin-right: 8px;
}
.footer-main .line p {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.footer-main .line:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .header {
    padding: 25px;
  }
  .header-left .filter select {
    width: 400px;
  }
  .content .content-item-number h4 {
    text-align: center;
  }
  .content .content-item .detail-item {
    padding: 0 16px;
  }
  .content .content-item .tab-item p {
    text-align: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .header {
    padding: 16px;
  }
  .header-left .filter {
    margin-left: 24px;
  }
  .header-left .filter select {
    width: 450px;
  }
  .header-right {
    display: none;
  }
  .header-btn {
    display: block;
  }
  .header-mobile .filter {
    display: none;
  }
  .content {
    margin-top: 74px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 16px;
  }
  .header-left .logo img {
    width: 100px;
  }
  .header-left .filter {
    display: none;
    margin-left: 8px;
  }
  .header-left .filter select {
    width: 150px;
  }
  .header-mobile .filter {
    display: block;
  }
  .content {
    margin-top: 54px;
    padding: 0 12px;
    padding-top: 24px;
  }
  .content .content-item .detail.col-3, .content .content-item .detail.col-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .content .content-item .detail.col-3 .detail-item:nth-child(2),
  .content .content-item .detail.col-3 .detail-item:first-child, .content .content-item .detail.col-2 .detail-item:nth-child(2),
  .content .content-item .detail.col-2 .detail-item:first-child {
    padding: 0;
    border: 0;
  }
  .content .content-item .detail .detail-item {
    padding: 0;
  }
  .content .content-item-number h4 {
    font-size: 16px;
    flex-direction: column;
  }
  .content .content-item-number h4 span {
    font-size: 20px;
  }
  .content-left .number p {
    font-size: 16px;
  }
  .content-left .number h3 {
    font-size: 22px;
  }
  .footer {
    box-sizing: border-box;
    flex-direction: column;
  }
  .footer-main {
    padding: 0;
    border: 0;
    margin-top: 24px;
  }
  .footer-main h2 {
    font-size: 18px;
  }
  .footer-main h6 {
    font-size: 11px;
  }
  .footer-main .line {
    align-items: center;
  }
  .footer-main .line span {
    width: auto;
    font-size: 16px;
  }
  .footer-main .line p {
    font-size: 16px;
    margin-left: 8px;
  }
}/*# sourceMappingURL=style.css.map */