@charset "UTF-8";
/* Font and CDN */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #1464f4 #ffffff;
  box-sizing: border-box;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #1464f4;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

:root {
  --global-black: #151515;
  --white-color: #ffffff;
  --blue-brand-color: #1464f4;
  --text-color: #3c3c3c;
  --text-color-black: #1f2125;
  --text-color-grey: #707070;
  --background-color-dark: #121721;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.02rem;
  color: #3c3c3c;
  position: relative;
  font-family: "Plus Jakarta Sans", serif;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  outline: none;
}
a:hover {
  color: #0056b3 !important;
}

p:last-child {
  margin-bottom: 0;
}

#wrapper {
  position: relative;
}

form.contactForm {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
form.contactForm .formRow {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  form.contactForm .formRow {
    flex-direction: column;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  form.contactForm .formRow {
    flex-direction: column;
  }
}
@media only screen and (max-width: 700px) {
  form.contactForm .formRow {
    flex-direction: column;
  }
}
form.contactForm .formRow .col label {
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #1F2A37;
  margin-bottom: 4px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  form.contactForm .formRow .col label {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  form.contactForm .formRow .col label {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  form.contactForm .formRow .col label {
    font-size: 16px;
    line-height: 1.2;
  }
}
form.contactForm .formRow .col label.required:before {
  content: "*";
  color: red;
}
form.contactForm .submitBtn {
  width: fit-content;
  border-radius: 60px;
  padding: 8px 32px;
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  form.contactForm .submitBtn {
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  form.contactForm .submitBtn {
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  form.contactForm .submitBtn {
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
  }
}

input.form-control.customized-input, select.form-control.customized-input, input.form-control.customized-input, textarea.form-control.customized-input {
  padding: 12px;
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  background-color: #F3F4F6;
  border: unset;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  input.form-control.customized-input, select.form-control.customized-input, input.form-control.customized-input, textarea.form-control.customized-input {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  input.form-control.customized-input, select.form-control.customized-input, input.form-control.customized-input, textarea.form-control.customized-input {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  input.form-control.customized-input, select.form-control.customized-input, input.form-control.customized-input, textarea.form-control.customized-input {
    font-size: 16px;
    line-height: 1.2;
  }
}

.btn {
  position: relative;
  display: inline-block;
  padding: 12px 20px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  border-radius: 0;
  border: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #ffffff;
}
.btn.radius-100 {
  border-radius: 999px;
}
.btn.size-lg {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.btn-primary {
  background-color: #0A52E2;
}
.btn-primary:hover {
  border: 1px solid #0A52E2;
  color: #0A52E2;
  background-color: #fff;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.btn--primary--blue {
  color: #fff;
  background: #0A52E2;
}
.btn--primary--blue:hover {
  outline: #0A52E2;
}

.btn--primary--white {
  color: #0A52E2;
  background: #F3F4F6;
  border: 1px solid #0A52E2;
}
.btn--primary--white:hover {
  color: #0A52E2 !important;
  background: transparent;
}

.btn--animated {
  transition-property: color;
  transition-duration: 0.5s;
}

.btn--border--blue {
  border: 1px solid #1464f4;
}

.btn--border--white {
  border: 1px solid #fff;
}

.btn--animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  z-index: -1;
}

.btn--animated.btn--primary--blue::before {
  background: #fff;
}

.btn--animated.btn--primary--white::before {
  background: #1464f4;
}

.btn--animated.btn--primary--blue:hover {
  color: #1464f4;
}

.btn--animated.btn--primary--white:hover {
  color: #fff;
}

.btn--animated:hover::before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.45, 1.64, 0.47, 0.66);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate; /* Safari 4.0 - 8.0 */
  animation: fadeIn 0.3s alternate;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 90%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}

#header_pc {
  padding: 16px 0;
}
#header_pc .navbar-brand img {
  height: 64px;
  width: auto;
}
@media (max-width: 1024px) {
  #header_pc .navbar-brand img {
    height: 48px;
  }
}
#header_pc #navbar-content {
  justify-content: space-between;
}
#header_pc .menu-right {
  gap: 20px;
}
#header_pc .menu-right .btn-tuvan {
  padding: 12px 20px;
}
#header_pc .menu-right .dropdown-language .dropdown-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #1F2A37;
  font-weight: 500;
  font-size: 18.67px;
  line-height: 26.67px;
}
#header_pc .menu-right .dropdown-language .dropdown-toggle:after {
  margin-left: 12px;
}
#header_pc .menu-right .dropdown-language .dropdown-toggle .flag {
  margin-right: 8px;
}
#header_pc .middle-nav li.nav-item {
  margin-right: 30px;
}
#header_pc .middle-nav li.nav-item a.nav-link {
  font-style: normal;
  color: #1f2125;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  font-weight: 600;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0;
}
#header_pc .middle-nav li.nav-item a.nav-link:hover {
  color: #0A52E2 !important;
}
@media (min-width: 992px) {
  #header_pc .middle-nav li.nav-item a.nav-link {
    padding-right: 0;
    padding-left: 0;
  }
}

#footer {
  background-color: #002054;
}
#footer .mainWrapper {
  padding-top: 42px;
  padding-bottom: 42px;
}
#footer .mainWrapper .newsletterSection {
  width: 100%;
  height: fit-content;
  gap: 24px;
  border-radius: 24px;
  padding: 24px;
  background-color: #002869;
  color: #F9FAFB;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#footer .mainWrapper .newsletterSection .newsletterDescribe {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .mainWrapper .newsletterSection .newsletterDescribe .title {
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}
#footer .mainWrapper .newsletterSection .newsletterDescribe .subtitle {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}
#footer .mainWrapper .newsletterSection .newsletterForm .inputGroup {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  border-radius: 60px;
  background-color: #F3F4F6;
  padding: 14px 12px;
  width: 516px;
  height: 76px;
  gap: 8px;
  justify-items: center;
  align-items: center;
}
#footer .mainWrapper .newsletterSection .newsletterForm .inputGroup input.subscribeEmail {
  flex: 1;
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  background-color: unset;
  border: unset;
}
#footer .mainWrapper .newsletterSection .newsletterForm .inputGroup input.subscribeSubmit {
  color: #0A52E2;
  background-color: #fff;
  padding: 8px 36px;
  border-radius: 60px;
}
@media (max-width: 768px) {
  #footer .mainWrapper .newsletterSection {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 16px;
  }
  #footer .mainWrapper .newsletterSection .newsletterDescribe {
    align-items: center;
    text-align: center;
  }
  #footer .mainWrapper .newsletterSection .newsletterDescribe .title {
    font-size: 20px;
    line-height: 28px;
  }
  #footer .mainWrapper .newsletterSection .newsletterDescribe .subtitle {
    font-size: 15px;
    line-height: 22px;
  }
  #footer .mainWrapper .newsletterSection .newsletterForm {
    width: 100%;
  }
  #footer .mainWrapper .newsletterSection .newsletterForm .inputGroup {
    flex-direction: row;
    width: 100%;
    height: 48px;
    padding: 6px 4px;
    gap: 6px;
  }
  #footer .mainWrapper .newsletterSection .newsletterForm .inputGroup input.subscribeEmail {
    width: 100%;
    font-size: 15px;
    line-height: 22px;
    padding: 8px 12px;
  }
  #footer .mainWrapper .newsletterSection .newsletterForm .inputGroup input.subscribeSubmit {
    width: auto;
    min-width: 80px;
    font-size: 15px;
    padding: 8px 18px;
    border-radius: 32px;
    margin-top: 0;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(10, 82, 226, 0.06);
  }
  #footer .mainWrapper .newsletterSection .newsletterForm .inputGroup input.subscribeSubmit:hover {
    background: #0A52E2;
    color: #fff;
    box-shadow: 0 2px 8px rgba(10, 82, 226, 0.12);
  }
}
#footer .mainWrapper .mainContentSection {
  margin-top: 40px;
  color: #F9FAFB;
}
#footer .mainWrapper .mainContentSection .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
}
#footer .mainWrapper .mainContentSection .footer-brand .logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
#footer .mainWrapper .mainContentSection .footer-brand .logo-container .logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
}
#footer .mainWrapper .mainContentSection .footer-brand .logo-container .logo-icon {
  font-size: 40px;
  font-weight: bold;
  color: #2D70F6;
  background: linear-gradient(135deg, #2D70F6 0%, #0842B5 100%);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .mainWrapper .mainContentSection .footer-brand .logo-container .logo-text {
  display: flex;
  flex-direction: column;
}
#footer .mainWrapper .mainContentSection .footer-brand .logo-container .logo-text .logo-main {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}
#footer .mainWrapper .mainContentSection .footer-brand .logo-container .logo-text .logo-tagline {
  font-size: 13px;
  font-weight: 400;
  color: #E5E7EB;
}
#footer .mainWrapper .mainContentSection .footer-brand .company-desc {
  font-size: 18px;
  color: #E5E7EB;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  #footer .mainWrapper .mainContentSection .footer-brand .company-desc {
    font-size: 14px;
  }
}
#footer .mainWrapper .mainContentSection .footer-brand .contact-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 16px;
}
#footer .mainWrapper .mainContentSection .footer-brand .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #F3F4F6;
}
#footer .mainWrapper .mainContentSection .footer-brand .contact-info .contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #0A52E2;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
#footer .mainWrapper .mainContentSection .footer-brand .social-section h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #F3F4F6;
}
#footer .mainWrapper .mainContentSection .footer-brand .social-section .social-icons {
  display: flex;
  gap: 12px;
}
#footer .mainWrapper .mainContentSection .footer-brand .social-section .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #0A52E2;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
#footer .mainWrapper .mainContentSection .footer-brand .social-section .social-icons .social-icon:hover {
  background: #0A52E2;
  color: #fff;
}
#footer .mainWrapper .mainContentSection .footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #F9FAFB;
}
@media (max-width: 1024px) {
  #footer .mainWrapper .mainContentSection .footer-title {
    font-size: 18px;
  }
}
#footer .mainWrapper .mainContentSection .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .mainWrapper .mainContentSection .footer-links li {
  margin-bottom: 10px;
}
#footer .mainWrapper .mainContentSection .footer-links li a {
  color: #F3F4F6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
#footer .mainWrapper .mainContentSection .footer-links li a:hover {
  color: #2D70F6;
}
@media (max-width: 1024px) {
  #footer .mainWrapper .mainContentSection .footer-links li a {
    font-size: 13px;
  }
}
#footer .mainWrapper .mainContentSection .footer-links .address-item {
  margin-bottom: 12px;
}
#footer .mainWrapper .mainContentSection .footer-links .address-item h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #F9FAFB;
}
@media (max-width: 1024px) {
  #footer .mainWrapper .mainContentSection .footer-links .address-item h6 {
    font-size: 14px;
  }
}
#footer .mainWrapper .mainContentSection .footer-links .address-item p {
  font-size: 16px;
  color: #E5E7EB;
  margin: 0;
}
#footer .mainWrapper .mainContentSection .footer-links .address-item p i {
  color: #2D70F6;
  margin-right: 6px;
}
@media (max-width: 1024px) {
  #footer .mainWrapper .mainContentSection .footer-links .address-item p {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  #footer .mainWrapper .row {
    flex-direction: column;
    gap: 0;
  }
  #footer .mainWrapper .col-lg-3,
  #footer .mainWrapper .col-lg-2,
  #footer .mainWrapper .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 24px;
  }
}
#footer .copyrightWrapper {
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: "Plus Jakarta Sans";
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #F9FAFB;
  text-align: center;
}
@media (max-width: 1024px) {
  #footer .copyrightWrapper {
    font-size: 14px;
    line-height: 22px;
  }
}

.homePadding {
  padding: 120px 0px;
}
@media only screen and (max-width: 700px) {
  .homePadding {
    padding: 32px 0px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  .homePadding {
    padding: 32px 0px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .homePadding {
    padding: 32px 0px;
  }
}

#homepage {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
#homepage .container-xxl {
  max-width: 1440px;
}
#homepage #topBanner {
  display: flex;
  background-image: url("../../assets/img/home/home_topbanner.png");
  width: auto;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 700px) {
  #homepage #topBanner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
  }
  #homepage #topBanner .contentBanner {
    z-index: 2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #topBanner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
  }
  #homepage #topBanner .contentBanner {
    z-index: 2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #topBanner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
  }
  #homepage #topBanner .contentBanner {
    z-index: 2;
  }
}
#homepage #topBanner .topBannerInner {
  height: calc(100vh - 108px);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  #homepage #topBanner .topBannerInner {
    height: 60vh;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #topBanner .topBannerInner {
    height: 60vh;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #topBanner .topBannerInner {
    height: 60vh;
  }
}
#homepage #topBanner .topBannerInner .content {
  display: flex;
  flex-direction: column;
}
#homepage #topBanner .topBannerInner .content .title {
  font-weight: 600;
  font-size: 64px;
  line-height: 76.8px;
  letter-spacing: 0;
  color: #F3F4F6;
  margin-bottom: 30px;
}
@media only screen and (max-width: 700px) {
  #homepage #topBanner .topBannerInner .content .title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #topBanner .topBannerInner .content .title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #topBanner .topBannerInner .content .title {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #topBanner .topBannerInner .content .title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #topBanner .topBannerInner .content .title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #topBanner .topBannerInner .content .title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
#homepage #topBanner .topBannerInner .content .sub-title {
  color: #F3F4F6;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  margin-bottom: 23px;
}
@media only screen and (max-width: 700px) {
  #homepage #topBanner .topBannerInner .content .sub-title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #topBanner .topBannerInner .content .sub-title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #topBanner .topBannerInner .content .sub-title {
    font-size: 18px;
    line-height: 1.2;
  }
}
#homepage #topBanner .topBannerInner .content .contact-button {
  width: fit-content;
  padding: 8px 56px;
  background-color: #F3F4F6;
  color: #0A52E2;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
@media only screen and (max-width: 700px) {
  #homepage #topBanner .topBannerInner .content .contact-button {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #topBanner .topBannerInner .content .contact-button {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #topBanner .topBannerInner .content .contact-button {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #topBanner .topBannerInner .content .contact-button:hover {
  color: #F3F4F6;
  border: 1px solid #F3F4F6;
  background-color: transparent;
}
#homepage #servicesBlock .servicesInner .head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#homepage #servicesBlock .servicesInner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .head .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .head .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .head .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .head .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .head .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .head .title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
#homepage #servicesBlock .servicesInner .head .sub-title {
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #servicesBlock .servicesInner .contentContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#homepage #servicesBlock .servicesInner .contentContainer .contentItem {
  display: flex;
  gap: 64px;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem {
    flex-direction: column;
    gap: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem {
    flex-direction: column;
    gap: 16px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem {
    flex-direction: column;
    gap: 16px;
  }
}
#homepage #servicesBlock .servicesInner .contentContainer .contentItem .figure {
  flex: 1;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .figure {
    order: 1;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .figure {
    order: 1;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .figure {
    order: 1;
  }
}
#homepage #servicesBlock .servicesInner .contentContainer .contentItem .figure img {
  width: 100%;
  height: auto;
  background-size: cover;
}
#homepage #servicesBlock .servicesInner .contentContainer .contentItem .details {
  flex: 1;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details {
    order: 2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details {
    order: 2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details {
    order: 2;
  }
}
#homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: #1F2A37;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }
}
#homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .content {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 24px;
  color: #1F2A37;
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .content {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .content {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .content {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .btn {
    font-size: 14px;
    padding: 8px 16px;
    line-height: 1.2;
    width: 100%;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .btn {
    font-size: 14px;
    padding: 8px 16px;
    line-height: 1.2;
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #servicesBlock .servicesInner .contentContainer .contentItem .details .btn {
    font-size: 14px;
    padding: 8px 16px;
    line-height: 1.2;
    width: 100%;
  }
}
#homepage #ecosystemBlock .ecosystemInner .head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#homepage #ecosystemBlock .ecosystemInner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  #homepage #ecosystemBlock .ecosystemInner .head .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #ecosystemBlock .ecosystemInner .head .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #ecosystemBlock .ecosystemInner .head .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
#homepage #ecosystemBlock .ecosystemInner .head .sub-title {
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 700px) {
  #homepage #ecosystemBlock .ecosystemInner .head .sub-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #ecosystemBlock .ecosystemInner .head .sub-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #ecosystemBlock .ecosystemInner .head .sub-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
#homepage #applicationBlock {
  background-image: url("../../assets/img/home/bg_gradient_blue.png");
  background-size: auto 100%;
  /* Fit height */
  background-position: left center;
  /* Crop from left */
  background-repeat: no-repeat;
}
#homepage #applicationBlock .applicationInner .head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#homepage #applicationBlock .applicationInner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  #homepage #applicationBlock .applicationInner .head .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #applicationBlock .applicationInner .head .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #applicationBlock .applicationInner .head .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
#homepage #applicationBlock .applicationInner .head .sub-title {
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 56px;
}
@media only screen and (max-width: 700px) {
  #homepage #applicationBlock .applicationInner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #applicationBlock .applicationInner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #applicationBlock .applicationInner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
#homepage #applicationBlock .applicationInner .contentContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 2 cột bằng nhau */
  grid-template-rows: repeat(2, auto);
  /* 4 hàng có chiều cao tự động */
}
@media only screen and (max-width: 700px) {
  #homepage #applicationBlock .applicationInner .contentContainer {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cột bằng nhau */
    grid-template-rows: repeat(4, auto);
    /* 4 hàng có chiều cao tự động */
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #applicationBlock .applicationInner .contentContainer {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cột bằng nhau */
    grid-template-rows: repeat(4, auto);
    /* 4 hàng có chiều cao tự động */
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #applicationBlock .applicationInner .contentContainer {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cột bằng nhau */
    grid-template-rows: repeat(4, auto);
    /* 4 hàng có chiều cao tự động */
  }
}
#homepage #applicationBlock .applicationInner .contentContainer .applicationItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
}
#homepage #applicationBlock .applicationInner .contentContainer .applicationItem .image {
  width: 80px;
  height: 80px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #applicationBlock .applicationInner .contentContainer .applicationItem .image {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #applicationBlock .applicationInner .contentContainer .applicationItem .image {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #applicationBlock .applicationInner .contentContainer .applicationItem .image {
    width: 48px;
    height: 48px;
  }
}
#homepage #applicationBlock .applicationInner .contentContainer .applicationItem .text {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #applicationBlock .applicationInner .contentContainer .applicationItem .text {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #applicationBlock .applicationInner .contentContainer .applicationItem .text {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #applicationBlock .applicationInner .contentContainer .applicationItem .text {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #organizationBlock {
  background-color: #fff;
}
#homepage #organizationBlock .inner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: left;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #organizationBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #organizationBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #organizationBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
#homepage #organizationBlock .inner .head .sub-title {
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  margin-bottom: 56px;
  text-align: justify;
}
#homepage #organizationBlock .inner .body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
}
@media only screen and (max-width: 700px) {
  #homepage #organizationBlock .inner .body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #organizationBlock .inner .body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #organizationBlock .inner .body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
#homepage #organizationBlock .inner .body .item {
  display: flex;
  flex-direction: row;
  border-left: 1px solid;
  border-right: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(4, 74, 224, 0) 0%, #044AE0 47.92%, rgba(4, 74, 224, 0) 100%);
  border-image-slice: 1;
  /* Cần thiết để hiển thị border */
}
@media (max-width: 1200px) {
  #homepage #organizationBlock .inner .body .item:first-child, #homepage #organizationBlock .inner .body .item:last-child {
    border: none !important;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #organizationBlock .inner .body .item {
    border-left: 1px solid !important;
    border-right: none;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #organizationBlock .inner .body .item {
    border-left: 1px solid !important;
    border-right: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #organizationBlock .inner .body .item {
    border-left: 1px solid !important;
    border-right: none;
  }
}
#homepage #organizationBlock .inner .body .item .img {
  padding: 12px 16px;
}
#homepage #organizationBlock .inner .body .item .img img {
  width: 48px;
  height: 48px;
}
#homepage #organizationBlock .inner .body .item .textContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#homepage #organizationBlock .inner .body .item .textContainer .title {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0;
  color: #1F2A37;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #organizationBlock .inner .body .item .textContainer .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #organizationBlock .inner .body .item .textContainer .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #organizationBlock .inner .body .item .textContainer .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
#homepage #organizationBlock .inner .body .item .textContainer .content {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  color: #4D5761;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #organizationBlock .inner .body .item .textContainer .content {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #organizationBlock .inner .body .item .textContainer .content {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #organizationBlock .inner .body .item .textContainer .content {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #organizationBlock .inner .bigImage {
  margin-top: 64px;
}
#homepage #organizationBlock .inner .bigImage img {
  width: 100%;
  height: auto;
}
#homepage #valueBlock {
  background-image: url("../../assets/img/home/bg_gradient_blue.png");
  background-size: auto 100%;
  /* Fit height */
  background-position: left center;
  /* Crop from left */
  background-repeat: no-repeat;
}
#homepage #valueBlock .inner .head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 56px;
}
#homepage #valueBlock .inner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #valueBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #valueBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #valueBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
#homepage #valueBlock .inner .head .sub-title {
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  margin-bottom: 56px;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #valueBlock .inner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #valueBlock .inner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #valueBlock .inner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0px;
  }
}
#homepage #valueBlock .inner .body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 24px;
}
@media only screen and (max-width: 700px) {
  #homepage #valueBlock .inner .body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #valueBlock .inner .body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #valueBlock .inner .body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
#homepage #valueBlock .inner .body .item {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background-color: #fff;
  padding: 28px;
  gap: 20px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #valueBlock .inner .body .item {
    padding: 16px 8px 16px 24px;
    gap: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #valueBlock .inner .body .item {
    padding: 16px 8px 16px 24px;
    gap: 16px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #valueBlock .inner .body .item {
    padding: 16px 8px 16px 24px;
    gap: 16px;
  }
}
#homepage #valueBlock .inner .body .item .topLine {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
#homepage #valueBlock .inner .body .item .topLine .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 37.91px;
  letter-spacing: 0;
  color: #0A52E2;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #valueBlock .inner .body .item .topLine .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #valueBlock .inner .body .item .topLine .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #valueBlock .inner .body .item .topLine .title {
    font-size: 18px;
    line-height: 1.2;
  }
}
#homepage #valueBlock .inner .body .item .topLine .img img {
  width: 70px;
  height: 70px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #valueBlock .inner .body .item .topLine .img img {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #valueBlock .inner .body .item .topLine .img img {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #valueBlock .inner .body .item .topLine .img img {
    width: 48px;
    height: 48px;
  }
}
#homepage #valueBlock .inner .body .item .textContainer {
  display: flex;
  flex-direction: column;
}
#homepage #valueBlock .inner .body .item .textContainer .content {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  color: #4D5761;
}
#homepage #awardBlock {
  background-color: #fff;
}
#homepage #awardBlock .inner .head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 56px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .head {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .head {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .head {
    margin-bottom: 24px;
  }
}
#homepage #awardBlock .inner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
}
#homepage #awardBlock .inner .head .sub-title {
  color: #545971;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .head .sub-title {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #awardBlock .inner .body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-gap: 24px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .body {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 8px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .body {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 8px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .body {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 8px;
  }
}
#homepage #awardBlock .inner .body .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 28px;
  background-color: #fff;
  padding: 28px;
  gap: 20px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .body .item {
    padding: 8px;
    gap: 0px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .body .item {
    padding: 8px;
    gap: 0px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .body .item {
    padding: 8px;
    gap: 0px;
  }
}
#homepage #awardBlock .inner .body .item .topLine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#homepage #awardBlock .inner .body .item .topLine .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 37.91px;
  letter-spacing: 0;
  color: #0A52E2;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .body .item .topLine .title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .body .item .topLine .title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .body .item .topLine .title {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #awardBlock .inner .body .item .topLine .img img {
  width: auto;
  height: 180px;
}
#homepage #awardBlock .inner .body .item .contentLine {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  color: #4D5761;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #awardBlock .inner .body .item .contentLine {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #awardBlock .inner .body .item .contentLine {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #awardBlock .inner .body .item .contentLine {
    font-size: 14px;
    line-height: 1.2;
  }
}
#homepage #feedbackBlock {
  background-image: url("../../assets/img/home/bg_gradient_blue.png");
  background-size: auto 100%;
  /* Fit height */
  background-position: left center;
  /* Crop from left */
  background-repeat: no-repeat;
}
#homepage #feedbackBlock .inner .head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 56px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .head {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .head {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .head {
    margin-bottom: 24px;
  }
}
#homepage #feedbackBlock .inner .head .title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .head .title {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1.2;
  }
}
#homepage #feedbackBlock .inner .body {
  /* Đảm bảo Swiper có kích thước phù hợp */
}
#homepage #feedbackBlock .inner .body .swiperFeedback {
  width: 100%;
  overflow: hidden;
  /* Ngăn tràn nội dung */
  padding-bottom: 40px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback {
    padding-bottom: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback {
    padding-bottom: 16px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback {
    padding-bottom: 16px;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-wrapper {
  display: flex;
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  padding-top: 50px;
  height: 300px;
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem {
  width: 100%;
  height: 100%;
  border: 1px solid #0A52E2;
  border-radius: 16px;
  display: flex;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 52px 23px 0px 26px;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .avatar {
  align-self: center;
  position: absolute;
  width: 100px;
  height: 100px;
  top: -51px;
  background-image: url("../../assets/img/home/avatar_bg.png");
  padding: 10px;
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:before {
  content: " ";
  position: absolute;
  top: -20px;
  left: 96px;
  width: 70px;
  height: 40px;
  background-image: url("../../assets/img/home/quote_top.png");
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:before {
    left: 48px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:before {
    left: 48px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:before {
    left: 48px;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:after {
  content: " ";
  position: absolute;
  bottom: -20px;
  right: 96px;
  width: 70px;
  height: 40px;
  background-image: url("../../assets/img/home/quote_bottom.png");
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:after {
    right: 48px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:after {
    right: 48px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem:after {
    right: 48px;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .feedbackText {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .feedbackText {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .feedbackText {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .feedbackText {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: space-between;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo {
    flex-direction: column;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo {
    flex-direction: column;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo {
    flex-direction: column;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor {
  display: flex;
  flex-direction: column;
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorName {
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: left;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorName {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorName {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorName {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorCompany {
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorCompany {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorCompany {
    font-size: 14px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackAuthor .authorCompany {
    font-size: 14px;
    line-height: 1.2;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackStar {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #FF9500;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackStar {
    font-size: 14px;
    justify-content: center;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackStar {
    font-size: 14px;
    justify-content: center;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #feedbackBlock .inner .body .swiperFeedback .swiper-slide .feedbackItem .authorInfo .feedbackStar {
    font-size: 14px;
    justify-content: center;
  }
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-pagination {
  position: absolute;
  bottom: 0px;
  /* Đẩy pagination xuống 32px */
}
#homepage #feedbackBlock .inner .body .swiperFeedback .swiper-pagination .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #0A52E2;
  border-radius: 999px;
}
#homepage #feedbackBlock .inner .foot {
  margin-top: 40px;
}
#homepage #feedbackBlock .inner .foot .sponsor-section {
  padding: 60px 0;
  background: #f8f9fa;
  overflow: hidden;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#homepage #feedbackBlock .inner .foot .logos-slide {
  display: inline-flex;
  animation: slide 30s linear infinite;
  /* Tạm dừng khi hover */
}
#homepage #feedbackBlock .inner .foot .logos-slide:hover {
  animation-play-state: paused;
}
#homepage #feedbackBlock .inner .foot .logos-container {
  white-space: nowrap;
  overflow: hidden;
}
#homepage #feedbackBlock .inner .foot .logo-item {
  width: 200px;
  padding: 20px;
  margin: 0 30px;
}
#homepage #feedbackBlock .inner .foot .logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
#homepage #feedbackBlock .inner .foot .logo-item:hover img {
  filter: grayscale(0%);
}
#homepage #contactBlock {
  background-color: #fff;
}
#homepage #contactBlock .leftCol .img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  background-color: #F3F4F6;
  object-fit: cover;
}
#homepage #contactBlock .leftCol .contact {
  margin-top: 24px;
  padding: 24px;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #D2D6DB;
}
#homepage #contactBlock .leftCol .contact .item {
  padding: 16px;
  background-color: #F3F4F6;
  border-radius: 16px;
}
#homepage #contactBlock .leftCol .contact .item .icon {
  border-radius: 100%;
  background-color: #c7d5ee;
  width: 48px;
  height: 48px;
  padding: 8px;
  margin-right: 16px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .leftCol .contact .item .icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .leftCol .contact .item .icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .leftCol .contact .item .icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
}
#homepage #contactBlock .leftCol .contact .item .info {
  gap: 4px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .leftCol .contact .item .info {
    gap: 2px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .leftCol .contact .item .info {
    gap: 2px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .leftCol .contact .item .info {
    gap: 2px;
  }
}
#homepage #contactBlock .leftCol .contact .item .info .title {
  color: #1F2A37;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .leftCol .contact .item .info .title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .leftCol .contact .item .info .title {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .leftCol .contact .item .info .title {
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #contactBlock .leftCol .contact .item .info .content {
  color: #1F2A37;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .leftCol .contact .item .info .content {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .leftCol .contact .item .info .content {
    font-size: 15px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .leftCol .contact .item .info .content {
    font-size: 15px;
    line-height: 1.2;
  }
}
#homepage #contactBlock .rightCol {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid #D2D6DB;
  width: 100%;
  height: 100%;
  gap: 32px;
  border-radius: 16px;
  border-width: 1px;
  padding: 32px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .rightCol {
    padding: 24px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .rightCol {
    padding: 24px;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .rightCol {
    padding: 24px;
  }
}
#homepage #contactBlock .rightCol .blockHeading {
  display: block;
  flex-direction: column;
  gap: 16px;
}
#homepage #contactBlock .rightCol .blockHeading .title {
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .rightCol .blockHeading .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .rightCol .blockHeading .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .rightCol .blockHeading .title {
    font-size: 24px;
    line-height: 1.2;
  }
}
#homepage #contactBlock .rightCol .blockHeading .description {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #1F2A37;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  #homepage #contactBlock .rightCol .blockHeading .description {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  #homepage #contactBlock .rightCol .blockHeading .description {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 700px) {
  #homepage #contactBlock .rightCol .blockHeading .description {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.2;
  }
}
#homepage #storiesBlock .innerContent {
  background-image: url("../../assets/img/home/bg_gradient_blue.png");
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent {
    grid-template-rows: 1fr 1fr;
    /* Two equal rows */
    grid-template-columns: 1fr;
    /* One column */
  }
}
#homepage #storiesBlock .innerContent .innerLeft {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-shrink: 0;
}
#homepage #storiesBlock .innerContent .innerLeft .title {
  font-weight: 700;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-bottom: 54px;
  gap: 24px;
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent .innerLeft .title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 24px;
  }
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer {
  display: flex;
  flex-direction: column;
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 12px 0px;
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item:not(:last-child) {
  border-bottom: 1px solid #F3F4F6;
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .pic {
  flex-shrink: 0;
  height: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .pic img {
  height: 212px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .pic img {
    height: 96px;
  }
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content {
    gap: 2px;
  }
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content .date {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #4D5761;
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content .date {
    font-size: 10px;
    line-height: 1;
    margin-bottom: 8px;
  }
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content .postTitle {
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #262626;
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content .postTitle {
    line-height: 1;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn số dòng, có thể chỉnh lại */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
  }
}
#homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content .previewText {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #4D5761;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Giới hạn số dòng, có thể chỉnh lại */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  #homepage #storiesBlock .innerContent .innerLeft .newsContainer .item .content .previewText {
    font-size: 12px;
    line-height: 1;
  }
}
#homepage #storiesBlock .innerContent .innerRight {
  width: 100%;
  min-height: 600px;
}
#homepage #storiesBlock .innerContent .innerRight .featuredNews {
  display: flex;
  position: relative;
}
#homepage #storiesBlock .innerContent .innerRight .featuredNews img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test.ecosystem .ecosystem {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  margin: auto;
}
.test.ecosystem .center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: blue;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.test.ecosystem .item {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: rotate(var(--angle)) translate(180px) rotate(calc(-1 * var(--angle)));
}

:root {
  --circle-radius: 180px;
  /* Bán kính của vòng tròn */
  --center-size: 120px;
  /* Kích thước của phần trung tâm */
  --item-size: 80px;
  /* Kích thước của mỗi icon */
  --circle-center-x: 200px;
  /* Tọa độ X của tâm */
  --circle-center-y: 200px;
  /* Tọa độ Y của tâm */
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .row-sp-gap-16 {
    gap: 16px;
  }
}
@media only screen and (min-width: 701px) and (max-width: 959px) {
  .row-sp-gap-16 {
    gap: 16px;
  }
}
@media only screen and (max-width: 700px) {
  .row-sp-gap-16 {
    gap: 16px;
  }
}



/*# sourceMappingURL=styles.css.map */
