* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* hiệu ứng mượt */
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

select {
  -webkit-appearance: none; /* tắt style mặc định Safari */
  -moz-appearance: none;
  appearance: none;

  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-size: 16px;
  border-radius: 6px;
  color: #333;
  width: 100%;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'><path fill='black' d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

/* Toggle button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  z-index: 1001;
}
/* Close button */
#navMenu .close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  float: right;
  cursor: pointer;
  margin-bottom: 20px;
}

/* Items trong menu */
#navMenu .navigator {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

#navMenu .btn-nav {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
}

#navMenu .btn-nav:hover {
  text-decoration: underline;
}

/* Menu mặc định ẩn ngoài màn hình */
#navMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #064e3b;
  color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
}

/* Khi active thì hiện menu */
#navMenu.active {
  right: 0;
}

/* Overlay chặn click */
#overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid green;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}


/* Header */
header {
  background: #02483e;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo,
header .btn-cta,
header nav .navigator .btn-nav {
  border: 1px solid;
  padding: 10px 20px;
  background: #fff;
  color: #02483e;
  font-size: 20px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
}

header nav .navigator {
  display: flex;
  list-style: none;
}

header nav .navigator .btn-nav {
  margin-left: 20px;
  cursor: pointer;
}

header nav .navigator .btn-nav a {
  text-decoration: none;
  color: #02483e;
  font-weight: 500;
}

header .btn-cta:hover {
  background: #dd3333;
  color: #fff;
}

nav .navigator .btn-nav:hover {
  background-color: #28a745;
}

nav .navigator .btn-nav:hover {
  color: #fff;
}

/* Banner */
.banner {
  background: url('/images/banner_1.jpg') center/cover no-repeat;
  /* mask để mờ 2 góc trên */
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      /* mờ trên */
      black 25%,
      /* hiện dần */
      black 100%
      /* rõ hoàn toàn */
    );
  -webkit-mask-composite: destination-in;

  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 25%,
      black 100%);
  mask-composite: intersect;
  padding: 80px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.banner h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.banner p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.banner .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  background: #28a745;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.banner .btn:hover {
  background: #dd3333;
}

/* Form đăng ký */
.form-section {
  background: #fff;
  padding: 40px 20px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #28a745;
}

.form-section input,
.form-section select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-section button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #02483e;
  color: white;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.form-section button:hover {
  background: #dd3333;
}

/* Section */
section {
  padding: 60px 5%;
  background: #fff;
  /* margin-bottom: 20px; */
}

section .tittle {
  text-align: center;
  margin-bottom: 30px;
  color: #28a745;
}

.benefits-item {
  flex: 1;
}

.item-icon .item-image {
  width: 100%;
}

.section-benefit {
  background: rgb(238, 252, 249);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefits-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefits-item:hover {
  transform: scale(1.1);
}

.item-info li {
  list-style: none;
  text-align: left;
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.item-info i {
  color: rgb(2, 72, 62);
  margin-right: 10px;
}

.profit_table .profit_table-imitate {
  text-align: center;
}

.profit_table-imitate img {
  width: 100%;
}

.note {
  font-style: italic;
  text-align: center;
}

.package-loan {
  padding-top: 20px;
  background-color: rgb(238, 252, 249);
}

.package {
  display: flex;
  flex-wrap: nowrap;
}

.package .package-item {
  height: fit-content;
}

.package .package-list {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.package .package-list .card {
  width: 320px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(82, 41, 122, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.card h4 {
  margin: 4px 0;
  color: #222;
  font-size: 16px;
  text-align: center;
}

.card .btn {
  background: #02483e;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

.card ul {
  margin-left: 15px;
}

.list-note ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.note-item {
  list-style: none;
  margin-bottom: 10px;
  flex: 1;
  border: 1px solid green;
  border-radius: 20px;
  padding: 15px;
  background: aliceblue;
}

.note-item .tittle-item {
  font-weight: 700;
}

.note-item i {
  margin-right: 10px;
  color: #02483e;
}

/* Footer */
.footer-wave {
  position: relative;
  background: #064e3b; /* xanh đậm */
  color: white;
  overflow: hidden;
  padding: 60px 20px 40px;
}

/* Wave ở trên */
/* wave xanh lá nhạt mờ */
.footer-wave::before{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2316a34a' fill-opacity='0.12' d='M0,160L48,170.7C96,181,192,203,288,224C384,245,480,267,576,266.7C672,267,768,245,864,213.3C960,181,1056,139,1152,133.3C1248,128,1344,160,1392,176L1440,192L1440,0L0,0Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

/* Nội dung */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-content h3 {
  margin-bottom: 12px;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

/* Lưu ý */
footer .note {
  font-size: 16px;
  color: red;
  margin-top: 30px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* loading */

.loading {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

.loading.disabled {
  display: none;
}

.loader {
  border: 10px solid #f3f3f3;
  border-top: 10px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* QUICK CONTACT */

.footer_contact .contact_item {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_contact .contact_item i {
  color: #fff;
  font-size: 28px;
}

.footer_contact .contact_item:hover {
  box-shadow: 0 3px 6px 3px #ccc;
  border-radius: 100%;
}

.footer_contact {
  position: fixed;
  bottom: 10%;
  left: 3%;
  z-index: 999;
}

.footer_contact img {
  max-width: 30px;
  /* margin-top: 9px; */
}

.contact_item {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  /* margin-bottom: 5px; */
}

.contact_item .guide_title {
  position: absolute;
  font-size: 13px;
  width: max-content;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  left: calc(100% + 10px);
  top: 50%;
  transform: translate(0, -50%);
}

.contact_item .guide_title i {
  position: absolute;
  right: -7px;
  color: #871721;
  font-size: 20px;
  top: 3px;
}

.contact_item .guide_title .g_group {
  display: flex;
  align-items: center;
}

.contact_item:hover .guide_title {
  opacity: 1;
  visibility: visible;
}

.contact_item .guide_title .g_group {
  background: rgba(135, 23, 33, 1);
  padding: 3px 8px;
  border-radius: 3px;
  color: #fff;
}


.contact_item .guide_title .g_group:after {
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  /*position: absolute;*/
  /*top: 10px;*/
  /*left: -10px;*/
  color: #871721;
  font-weight: bold;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 20px;
}


/***** right*/
.footer_contact.footer_right {
  left: unset;
  right: 3%;
}

.footer_contact.footer_left {
  right: unset;
  left: 3%;
}

.footer_contact.footer_right .contact_item .guide_title {
  right: calc(100% + 10px);
  left: unset;
}

.footer_contact.footer_right .contact_item .guide_title .g_group:after {
  right: -5px;
  left: unset;
  content: "\f0da";
}

.footer_contact.footer_right .hotline-bar {
  left: unset;
  right: -22px;
  display: none;
}

.footer_contact.footer_right .hotline-bar>a {
  padding-left: 0;
  padding-right: 40px;
}


.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}







/* END QUICK CONTACT */


/*Hotline*/
.hotline-phone-ring-wrap {
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.zalo-ring-wrap {
  position: relative;
  bottom: 65px;
  left: 0;
  z-index: 999999;
}

.hotline-phone-ring,
.zalo-ring {
  position: relative;
  visibility: visible;
  background-color: transparent;
  /*width: 110px;*/
  /*height: 110px;*/
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility .5s;
  left: 0;
  bottom: 0;
  display: block;
}

.hotline-phone-ring-circle,
.zalo-ring-circle {
  width: 100px;
  height: 100px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(30, 115, 190, 1);
  -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0.5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hotline-phone-ring-circle-fill,
.zalo-ring-circle-fill {
  width: 60px;
  height: 60px;
  position: absolute;
  background-color: rgba(30, 115, 190, 0.7);
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all .5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hotline-phone-ring-img-circle,
.zalo-ring-img-circle {
  background-color: rgba(30, 115, 190, 1);
  width: 46px;
  height: 46px;
  position: absolute;
  background-size: 20px;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hotline-phone-ring-img-circle .pps-btn-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

.hotline-phone-ring-img-circle .pps-btn-img img {
  width: 20px;
  height: 20px;
}

.hotline-bar {
  position: absolute;
  background: rgba(221, 51, 51, 1);
  height: 46px;
  width: max-content;
  line-height: 46px;
  padding: 0 15px;
  background-size: 100%;
  cursor: pointer;
  transition: all 0.8s;
  -webkit-transition: all 0.8s;
  z-index: 9;
  /*box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.07);*/
  border-radius: 50px !important;
  /*! width: 175px !important; */
  left: -23px;
  bottom: 37px;
  /*! left: 0; */
  top: 50%;
  transform: translate(0, -50%);
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1);
}

.hotline-bar>a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  /*! text-indent: 40px; */
  display: block;
  letter-spacing: 1px;
  line-height: 46px;
  /*! font-family: Arial; */
  padding-left: 40px;
}

.hotline-bar>a:hover,
.hotline-bar>a:active {
  color: #fff;
}

@-webkit-keyframes phonering-alo-circle-anim {
  0% {
    /*-webkit-transform: rotate(0) scale(0.5) skew(1deg) translate(0,-50%);*/

    transform: translate(-50%, -50%) scale(0.5);
    -webkit-opacity: 0.1;
  }

  30% {
    /*-webkit-transform: rotate(0) scale(0.7) skew(1deg) translate(0,-50%);*/
    transform: translate(-50%, -50%) scale(0.7);
    -webkit-opacity: 0.5;
  }

  100% {
    /*-webkit-transform: rotate(0) scale(1) skew(1deg) translate(0,-50%);*/
    transform: translate(-50%, -50%) scale(0.1);
    -webkit-opacity: 0.1;
  }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.6;
  }

  50% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.6;
  }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(1) skew(1deg);
  }

  10% {
    -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    -webkit-transform: translate(-50%, -50%) rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    -webkit-transform: translate(-50%, -50%) rotate(25deg) scale(1) skew(1deg);
  }

  50% {
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(1) skew(1deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(1) skew(1deg);
  }
}

@media (max-width: 768px) {
  .hotline-bar {
    display: none;
  }
}

hotline-phone-ring-img-circle i {
  font-size: 20px;
}

/*End hotline*/

.uppercase {
    /*letter-spacing: 0.8rem;*/
    font-style: uppercase;
}

.mrk-text i {
    color: #facc15;
    margin-right: 10px;
}