@charset "UTF-8";
@import url("../assets/font/1.1-oppo-sans-vn/stylesheet.css");
@import url("../assets/font/1.1-oppo-sans-vn-italic/stylesheet.css");

:root {
  --size-hd-top: 4rem;
  --size-hd-bot: 6.4rem;
  --size-hd: calc(var(--size-hd-top) + var(--size-hd-bot));
  --w-logo: 10.8rem;
  --ctn: 121.4rem;
  --blue-dark: #1c2c3c;
  --color-pri: #1f6eb7;
  --blue-light: #0fbbe3;
  --green-light: #9cc13d;
  --blue-opa: #ccdcea;
  --font-pri: "OPPO Sans VN", "Inter", sans-serif;
  --re-ctn: calc((100vw - var(--ctn)) / 2);
  --re-ctn-2: calc(100vw - (100vw - var(--ctn)) / 2);
  --it-pd: 1.2rem;
}

@media screen and (max-width: 1200px) {
  :root {
    --size-hd-top: 0;
    --size-hd: var(--size-hd-bot);
  }
}

@media screen and (max-width: 575px) {
  :root {
    --it-pd: 0.6rem;
  }
}

/* @media screen and (min-width: 1701px) {
  html.custom-fz {
    font-size: 9px;
  }
}

@media (min-width: 1201px) and (max-width: 1700px) {
  html.custom-fz {
    font-size: 8px;
  }
} */

@media (min-width: 1201px) {
  html.custom-fz .section:not(:first-child) {
    padding-top: 10.4rem;
  }
}

.page-home,
.home {
  color: #1c2c3c;
}

.page-home .title-pri,
.home .title-pri {
  --f-sz: clamp(2.7rem, calc(1.9541rem + 1.0656vw), 4rem);
  font-size: var(--f-sz);
}

.page-home .title-sec,
.home .title-sec {
  color: #1c2c3c;
}

@media (min-width: 1201px) and (max-width: 1700px) {

  .page-home .container,
  .home .container {
    --ctn: 130rem;
  }
}

.tabPanel.open,
.tabPanel2.open {
  display: block;
}

.tabPanel,
.tabPanel2,
.collapseBody,
.load-hidden {
  display: none;
}

.container {
  max-width: calc(var(--ctn) + 3rem);
}

.section {
  position: relative;
  z-index: 0;
  justify-content: flex-start;
}

@media screen and (max-width: 1199px) {
  .section {
    padding: 0 !important;
  }
}

.section .heading-sec .title-sec {
  color: var(--blue-dark) !important;
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: bold;
}

.section .sec-wrap {
  padding-bottom: 0;
  justify-content: flex-start;
}

@keyframes aniBgDecor {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.bg-ab,
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-ab.bg-decor,
.bg.bg-decor {
  mask-image: url(../assets/images/rmk-bg-decor.png);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;
  top: var(--size-hd);
  height: calc(100% - var(--size-hd));
}

@media screen and (max-width: 575px) {

  .bg-ab.bg-decor,
  .bg.bg-decor {
    display: none;
  }
}

.bg-ab.bg-decor::after,
.bg.bg-decor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.5);
  opacity: 0.5;
  animation: aniBgDecor 3s ease infinite;
  background-color: var(--blue-dark);
}

@media screen and (max-width: 575px) {

  .bg-ab.bg-decor img,
  .bg.bg-decor img {
    object-fit: contain;
  }
}

.bg-ab img,
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes clipText {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeInLeft {
  from {
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  to {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}

@media (min-width: 1201px) {
  .section:not(:first-child) {
    padding-top: var(--size-hd);
  }

  .is-inview .clipText,
  .active .clipText {
    animation: clipText 3s ease forwards 0.2s;
  }

  .is-inview .fadeInLeft,
  .active .fadeInLeft {
    animation: fadeInLeft 1.2s ease forwards 0.2s;
  }
}

@media (max-width: 1199px) {
  .section {
    padding-top: 0 !important;
  }
}

.hd {
  height: var(--size-hd);
  z-index: 120;
}

.hd .container {
  max-width: calc(var(--ctn) + 3rem);
}

.hd.sticky .hd-top {
  height: var(--size-hd-top);
}

/* .hd.hd-small {
  --size-hd: var(--size-hd) height: var(--size-hd);
} */

.hd-top {
  position: relative;
  z-index: 12;
  background-color: var(--color-pri);
  height: var(--size-hd-top);
}

@media screen and (max-width: 1200px) {
  .hd-top {
    display: none;
  }
}

.hd-top-wrap {
  display: flex;
  height: 100%;
}

.hd-top .menu-list {
  --gap: 2.4rem;
  flex: 1;
  display: flex;
  height: 100%;
  gap: var(--gap);
}

.hd-top .menu-list .menu-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-top .menu-list .menu-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
}

.hd-top-lf {
  height: 100%;
  flex: 1;
}

@media screen and (min-width: 1200px) {
  .hd-top-lf {
    padding-right: 1rem;
  }
}

.hd-top-rt {
  position: relative;
  width: 55%;
  height: 100%;
  justify-content: flex-end;
}

@media screen and (min-width: 1200px) {
  .hd-top-rt {
    padding-left: 5rem;
  }
}

.hd-top-rt::before,
.hd-top-rt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.hd-top-rt::before {
  z-index: -1;
  background-color: var(--blue-light);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 4rem 100%);
}

.hd-top-rt::after {
  z-index: -2;
  clip-path: polygon(4rem 0, 100% 0%, 100% 100%, 0 100%);
  background-color: var(--green-light);
}

.hd-bot {
  display: block;
  height: var(--size-hd-bot);
  background-color: white;
}

.hd-bot-rt {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

@media screen and (min-width: 1201px) {
  .hd-bot-rt {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .hd-bot-rt {
    gap: 1.2rem;
  }
}

.hd .ct-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.hd-ct-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.hd .ct-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.hd .ct-link>img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: block;
}

.hd .hd-logo {
  display: flex;
}

.hd .hd-logo img {
  filter: none;
}

.hd .lg-list {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hd .lg-list .lg-link {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: block;
}

/* language switcher (WPML) - dropdown chọn đa ngôn ngữ */
.lg-switch {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.lg-switch .lg-flag {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.lg-switch .lg-current {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
}

.lg-switch .lg-current i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.lg-switch .lg-drop {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 15rem;
  margin: 0;
  padding: 0.6rem;
  list-style: none;
  background: #fff;
  border-radius: 0.6rem;
  box-shadow: 0 0.8rem 2.4rem rgba(28, 44, 60, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.6rem);
  transition: 0.25s ease;
  z-index: 60;
}

.lg-switch:hover .lg-drop,
.lg-switch:focus-within .lg-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lg-switch:hover .lg-current i,
.lg-switch:focus-within .lg-current i {
  transform: rotate(180deg);
}

.lg-switch .lg-drop-item {
  margin: 0;
}

.lg-switch .lg-drop-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue-dark);
  transition: 0.2s ease;
}

@media screen and (min-width: 1025px) {
  .lg-switch .lg-drop-link:hover {
    background: rgba(31, 110, 183, 0.08);
    color: var(--color-pri);
  }
}

/* trong mobile menu nền trắng -> chữ đậm */
.mobile-head .lg-switch .lg-current {
  color: var(--blue-dark);
}

.hd .hd-ct {
  background-color: var(--color-pri);
}

.hd-burger {
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  background-color: var(--color-pri);
}

.hd-burger .burger-wrap .line {
  background: white;
}

@media screen and (min-width: 1025px) {
  .hd-nav>.menu-list>.menu-item:hover>.menu-link {
    color: var(--color-pri);
  }
}

.hd-nav>.menu-list>.menu-item.current_page_item>.menu-link {
  color: var(--color-pri);
}

@media screen and (max-width: 1200px) {
  .hd-nav>.menu-list>.menu-item.dropdown>.rmk-mega-menu {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .hd-nav>.menu-list>.menu-item.dropdown:hover .rmk-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
    transform: translate(-50%, 0);
  }
}

.hd-nav>.menu-list>.menu-item>.menu-link {
  align-items: center;
  font-weight: bold;
  color: var(--blue-dark);
}

.hd-nav>.menu-list>.menu-item>.menu-link::after {
  height: 4px;
  top: auto;
  bottom: 0;
  background-color: var(--green-light);
}

.hd-nav>.menu-list>.menu-item>.menu-link>i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  aspect-ratio: 1;
  border-radius: 10rem;
  background-color: var(--color-pri);
  position: relative;
  font-size: 1rem;
  color: white;
}

/* Dropdown menu bị NHỎ chỉ ở Home V2: html.custom-fz hạ font gốc 10px -> ~8px nên
   mọi rem của dropdown co lại ~20%. Header render NGOÀI <main> nên không scope được
   bằng .page-home-v2 (class đó ở trên <main>); dùng html.custom-fz vì nó chỉ bật đúng
   trang này. Khoá px = tái hiện đúng cỡ như trang con (gốc 10px: 20rem->200px...). */
@media screen and (min-width: 1025px) {
  html.custom-fz .hd-nav>.menu-list>.menu-item>.menu-list {
    min-width: 200px;
  }

  html.custom-fz .hd-nav>.menu-list>.menu-item>.menu-list .menu-link {
    font-size: 15px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 575px) {
  .mobile {
    width: 100%;
  }
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-100%, 0);
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  border-radius: 0;
  box-shadow: none;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-wrap {
  width: 100%;
  height: 100%;
  padding: 2rem 0 0 1.5rem;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-row {
  gap: 1.2rem;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-lf {
  width: 12rem;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-lf .tt {
  display: none;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-lf-wrap {
  max-height: calc(100% - 4rem);
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-rt-wrap {
  max-height: calc(100% - 4rem);
  padding-right: 1.5rem;
  padding-bottom: 1rem;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-row {
  height: 100%;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-list {
  --gap: 0.6rem;
  width: 100%;
  padding: 1rem;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-list .menu-link {
  font-size: 1.4rem;
  padding: 0;
}

@media screen and (max-width: 575px) {
  .mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-list .menu-link {
    font-size: 1.2rem;
  }
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-cate-item::after {
  display: none;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-cate-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  row-gap: 0.6rem;
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-cate-link img {
  max-width: 10rem;
  margin-right: 0;
}

@media screen and (max-width: 575px) {
  .mobile .menu-nav .menu-list .menu-item .rmk-mega-menu-cate-link img {
    max-width: 7rem;
  }
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu .mega-panel-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (max-width: 1200px) {
  .mobile .menu-nav .menu-list .menu-item .rmk-mega-menu .mega-panel-slider .swiper {
    max-height: calc(100vh - 25rem);
  }
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu .mega-panel-slider .swiper-slide {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .mobile .menu-nav .menu-list .menu-item .rmk-mega-menu .mega-panel-slider .box-navi {
    margin-top: 1.2rem;
  }
}

.mobile .menu-nav .menu-list .menu-item .rmk-mega-menu .mega-panel-slider .box-navi .btn-navi {
  --w: 4rem;
  transform: rotate(90deg) !important;
}

.mobile .menu-nav .menu-list .menu-item.active .rmk-mega-menu {
  pointer-events: visible;
  transform: translate(0%, 0);
}

.mobile .menu-nav .menu-list .menu-item.active>a.menu-link i {
  transform: rotate(180deg);
}

.sidefix {
  z-index: 110;
}

.rmk-mega-menu {
  position: fixed;
  top: var(--size-hd);
  left: 50%;
  transform: translate(-50%, 1rem);
  width: 100%;
  max-width: 100%;
  box-shadow: 0px 0px 2.4rem 1.4rem rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0.8rem 0.8rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.rmk-mega-menu .goback {
  font-size: 1.4rem;
  color: var(--color-pri);
  display: inline-flex;
  padding-bottom: 1.5rem;
  align-items: center;
  gap: 0.4rem;
}

.rmk-mega-menu .goback i {
  font-size: 1.4rem;
}

@media screen and (min-width: 1201px) {
  .rmk-mega-menu .goback {
    display: none;
  }
}

.rmk-mega-menu-wrap {
  background-color: white;
  padding: 3.2rem 0 2rem var(--re-ctn);
  min-height: 46.2rem;
}

.rmk-mega-menu-row {
  display: flex;
  gap: 2.4rem;
}

.rmk-mega-menu-lf {
  width: 22rem;
  flex-shrink: 0;
}

.rmk-mega-menu-lf-wrap {
  max-height: 38rem;
  padding-top: 5rem;
}

.rmk-mega-menu-rt {
  flex: 1;
}

.rmk-mega-menu-list {
  width: 50%;
  padding: 2rem 2.4rem;
  border: 1px solid rgba(20, 36, 72, 0.1);
  --gap: 1rem;
}

.rmk-mega-menu-list .menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  margin: calc(-1 * var(--gap));
}

.rmk-mega-menu-list .menu-item {
  width: 50%;
  padding: var(--gap);
}

.rmk-mega-menu-list .menu-link {
  color: var(--color-pri);
  font-size: 1.4rem;
}

@media screen and (min-width: 1025px) {
  .rmk-mega-menu-list .menu-link:hover {
    text-decoration: underline;
    text-underline-position: under;
  }
}

.rmk-mega-menu-feature {
  flex: 1;
}

.rmk-mega-menu-item {
  max-width: 25%;
  padding: 0 var(--it-pd);
  border-left: 1px solid #d9d9d9;
  flex: 1;
}

.rmk-mega-menu-item .menu {
  color: var(--gray);
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.rmk-mega-menu-item .menu .menu-item .menu-link {
  text-wrap: wrap !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .rmk-mega-menu-item .menu .menu-item .menu-link:hover {
    color: var(--color-pri);
  }
}

.rmk-mega-menu-cate-list {
  --gap: 2.4rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

.rmk-mega-menu-cate-item {
  position: relative;
}

.rmk-mega-menu-cate-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../assets/images/arrow-right-1.png) center/100% no-repeat;
  width: 2rem;
  height: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .rmk-mega-menu-cate-item:hover::after {
    opacity: 1;
    visibility: visible;
  }

  .rmk-mega-menu-cate-item:hover .rmk-mega-menu-cate-link {
    color: white;
  }

  .rmk-mega-menu-cate-item:hover .rmk-mega-menu-cate-link img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(63deg) brightness(100%) contrast(101%);
  }

  .rmk-mega-menu-cate-item:hover .rmk-mega-menu-cate-link::before {
    opacity: 1;
    visibility: visible;
    transform: translate(100%, -50%);
    transition-delay: 0.3s;
  }

  .rmk-mega-menu-cate-item:hover .rmk-mega-menu-cate-link::after {
    left: 0;
    width: 100%;
  }
}

.rmk-mega-menu-cate-item.active .rmk-mega-menu-cate-link {
  color: white;
}

.rmk-mega-menu-cate-item.active .rmk-mega-menu-cate-link img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7499%) hue-rotate(63deg) brightness(100%) contrast(101%);
}

.rmk-mega-menu-cate-item.active .rmk-mega-menu-cate-link::before {
  opacity: 1;
  visibility: visible;
  transform: translate(100%, -50%);
  transition-delay: 0.3s;
}

.rmk-mega-menu-cate-item.active .rmk-mega-menu-cate-link::after {
  left: 0;
  width: 100%;
}

.rmk-mega-menu-cate-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem;
}

.rmk-mega-menu-cate-link::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(0%, -50%);
  right: 0;
  background: url(../assets/images/caret-right.png) left/100% no-repeat;
  width: 1.2rem;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .rmk-mega-menu-cate-link::before {
    display: none;
  }
}

.rmk-mega-menu-cate-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-pri);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.rmk-mega-menu-cate-link picture {
  display: inline-block;
  width: auto;
  height: auto;
}

.rmk-mega-menu-cate-link img {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
  margin-right: 0.8rem;
}

@media screen and (max-width: 1200px) {
  .rmk-mega-menu-cate-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.rmk-mega-menu .mega-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  padding-right: var(--re-ctn);
}

.rmk-mega-menu .mega-panel-heading .tt {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: bold;
}

.rmk-mega-menu .mega-panel-heading .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.rmk-mega-menu .mega-panel-heading .btn-link .txt {
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-mega-menu .mega-panel-heading .btn-link .txt {
    --f-sz: 1.6rem;
  }
}

.rmk-mega-menu .mega-panel-heading .btn-link .txt {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rmk-mega-menu .mega-panel-heading .btn-link img {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: block;
  box-shadow: 4.28571px 4.28571px 17.1429px rgba(0, 0, 0, 0.25);
  border-radius: 100rem;
  transform: rotate(180deg);
}

.rmk-mega-menu .mega-panel-item {
  display: none;
}

.rmk-mega-menu .mega-panel-item.active {
  display: block;
}

.rmk-mega-menu .mega-panel-flex {
  display: flex;
  gap: 3.2rem;
}

.rmk-mega-menu .mega-panel-slider .swiper {
  margin: calc(-1 * var(--it-pd));
}

.rmk-mega-menu .mega-panel-slider .swiper-slide {
  width: 30.303030303%;
  padding: var(--it-pd);
}

.rmk-mega-menu .mega-panel-slider .box-navi {
  margin-top: 2.4rem;
  width: 100%;
  justify-content: flex-end;
  padding-right: var(--re-ctn);
}

.rmk-pj-item .wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 2.4rem;
}

.rmk-pj-item .rmk-pj-thumb {
  width: 100%;
}

.rmk-pj-item .thumb-in {
  display: block;
  padding-top: calc(160 / 312 * 100%);
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .rmk-pj-item .thumb-in:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    -webkit-transform: translate(-50%, -50%) scale(1.05);
  }
}

.rmk-pj-item .thumb-in img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.rmk-pj-item .rmk-pj-content {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

.rmk-pj-item .tt {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rmk-pj-item .txt {
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .rmk-pj-item .txt {
    font-size: 1.2rem;
  }
}

.rmk-pj-item .go-link {
  --f-sz: 1.2rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-pj-item .go-link {
    --f-sz: 1.4rem;
  }
}

.rmk-pj-item .go-link {
  color: var(--color-pri);
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  .rmk-pj-item .go-link:hover {
    text-decoration: underline;
    text-underline-position: under;
  }
}

.sec-bottom {
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .sec-bottom {
    padding-top: var(--ss-pd) !important;
  }
}

.sec-bottom .bg-ab img {
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .sec-bottom .bg-ab img {
    object-fit: cover;
  }
}

.relative {
  position: relative;
}

strong {
  font-weight: bold;
}

.swiper-pagination.rmk-pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: var(--ctn);
  margin: 6rem auto 0;
}

@media screen and (max-width: 1200px) {
  .swiper-pagination.rmk-pagination {
    margin: 4rem auto 0;
  }
}

.swiper-pagination.rmk-pagination::before,
.swiper-pagination.rmk-pagination::after {
  content: "";
  width: 100%;
  flex: 1;
  height: 1px;
  background-color: #1c2c3c;
  opacity: 0.2;
}

.swiper-pagination.rmk-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
}

.swiper-pagination.rmk-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.6);
}

.rmk-partner-slider {
  overflow: hidden;
}

.rmk-partner-slider .heading-sec {
  margin-bottom: 4rem;
}

.rmk-partner-slider .partner-img {
  aspect-ratio: 2/1;
}

.rmk-partner-slider .partner-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

.rmk-partner-slider .swiper {
  --it-pd: 2.4rem;
  margin: 0 calc(-1 * var(--it-pd));
}

.rmk-partner-slider .swiper-slide {
  width: 16.6666666667%;
  padding: 0 var(--it-pd);
}

@media screen and (max-width: 1200px) {
  .rmk-partner-slider .swiper-slide {
    width: 20% !important;
  }
}

@media screen and (max-width: 800px) {
  .rmk-partner-slider .swiper-slide {
    --it-pd: 1.2rem;
    width: 25% !important;
  }
}

@media screen and (max-width: 575px) {
  .rmk-partner-slider .swiper-slide {
    width: 33.3333333333% !important;
  }
}

.rmk-ft {
  --spc: 6rem;
  padding: var(--spc) 0;
}

@media screen and (max-width: 1200px) {
  .rmk-ft {
    --spc: 2rem;
  }
}

.rmk-ft .col {
  width: 20.8333333333%;
}

@media screen and (max-width: 1200px) {
  .rmk-ft .col {
    width: 25%;
  }
}

@media screen and (max-width: 991px) {
  .rmk-ft .col {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .rmk-ft .col {
    width: 100%;
  }
}

.rmk-ft .col:last-child {
  width: 16.6666666667%;
}

@media screen and (max-width: 1200px) {
  .rmk-ft .col:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .rmk-ft .col:last-child .rmk-ft-info {
    margin-top: 2rem;
  }

  .rmk-ft .col:last-child .rmk-ft-info .menu-list {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}

.rmk-ft-info {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.rmk-ft-info .tt {
  text-transform: uppercase;
  font-weight: bold;
}

.rmk-ft-info .menu-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

.rmk-ft-info .menu-link {
  display: block;
  width: fit-content;
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-ft-info .menu-link {
    --f-sz: 1.6rem;
  }
}

.rmk-ft-info .menu-link {
  color: #1c2c3c;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .rmk-ft-info .menu-link:hover {
    color: var(--color-pri);
  }
}

.rmk-ft-info.rmk-info-main .menu-list {
  row-gap: 1.6rem;
}

.rmk-ft-info.rmk-info-main .menu-link {
  text-transform: uppercase;
  font-weight: bold;
}

.rmk-ft-logo .custom-logo-link {
  --w-logo: 16.9rem;
  display: flex;
  width: var(--w-logo);
  align-items: center;
  max-height: 100%;
}

.rmk-ft-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rmk-ft-reserved {
  width: fit-content;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.rmk-ft-reserved .txt {
  opacity: 0.7;
  color: #252525;
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-ft-reserved .txt {
    --f-sz: 1.6rem;
  }
}

.rmk-ft-reserved .txt {
  font-weight: 300;
  line-height: 150%;
}

.rmk-ft-reserved>img {
  max-width: 18rem;
  vertical-align: middle;
}

.rmk-ft .swiper-pagination.rmk-pagination {
  margin-top: var(--spc);
}

.rmk-ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: var(--spc);
  flex-wrap: wrap;
  gap: 1.2rem;
}

@media screen and (max-width: 800px) {
  .rmk-ft-bot {
    justify-content: center;
  }

  .rmk-ft-bot .rmk-ft-logo {
    width: 100%;
  }

  .rmk-ft-bot .rmk-ft-logo .custom-logo-link {
    margin: 0 auto;
  }

  .rmk-ft-bot .rmk-ft-reserved {
    width: 100%;
  }
}

.rmk-ft-social {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.rmk-ft-social span {
  font-weight: bold;
}

.rmk-ft-social .social-list {
  gap: 1.2rem;
}

.rmk-ft-social .social-list .social-link {
  --w: 2.4rem;
}

.btn-map {
  display: flex;
  align-items: center;
  min-height: 4rem;
  width: fit-content;
  max-width: 100%;
  gap: 0.8rem;
  padding: 0.4rem 1.6rem;
  border-radius: 10rem;
  border: 1px solid rgba(28, 44, 60, 0.2);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .btn-map:hover {
    border-color: var(--color-pri);
  }
}

.btn-map>img {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: block;
}

.btn-map .txt {
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .btn-map .txt {
    --f-sz: 1.6rem;
  }
}

.btn-map .txt {
  font-weight: bold;
  white-space: nowrap;
}

.mobile .mobile-head {
  display: flex;
  padding: 1rem 1.6rem;
}

.mobile .menu-list .menu-item.current-menu-item>.menu-link,
.mobile .menu-list .menu-item.current-menu-item>a {
  color: var(--color-pri) !important;
}

.mobile .menu-list .menu-item>.menu-link {
  color: var(--color-text);
}

.mobile .rmk-ft-info .menu-item>.menu-link,
.mobile .rmk-ft-info .menu-item a {
  color: var(--color-text);
  padding: 0;
}

#fp-nav.active ul li a:not(.active) span {
  border-color: var(--blue-dark);
}

#fp-nav ul li a span {
  left: 0;
  top: 0;
}

#fp-nav ul li a span.fp-sr-only {
  display: none;
}

#fp-nav ul li a span:not(.fp-sr-only) {
  background: transparent !important;
  position: relative !important;
  border: 2px solid white;
}

#fp-nav ul li a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  aspect-ratio: 1;
  border-radius: 100rem;
  background-color: transparent;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

#fp-nav ul li a.active span {
  background: transparent !important;
  border-color: var(--green-light);
}

#fp-nav ul li a.active span::after {
  background-color: var(--green-light);
}

.sidefix-wrap {
  gap: 0.8rem;
}

.sidefix-item {
  width: 4rem;
  height: 4rem;
}

.sidefix-item img {
  width: 100%;
  height: 100%;
}

.box-navi.navi-default {
  position: unset;
  transform: none;
  width: fit-content;
  gap: 1rem;
}

.box-navi.navi-default .btn-navi {
  --w: 5.6rem;
  position: unset;
  transform: none !important;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1200px) {
  .box-navi.navi-default .btn-navi {
    --w: 4.2rem;
  }
}

.box-navi.navi-default .btn-navi::after {
  display: none;
}

@media screen and (min-width: 1025px) {
  .box-navi.navi-default .btn-navi:hover {
    opacity: 0.8;
  }
}

.box-navi.navi-hori {
  flex-direction: column;
}

@media screen and (max-width: 1200px) {
  .sec-bn-home.section {
    padding-top: 0;
  }
}

.sec-bn-home .box-navi {
  gap: 0.4rem;
  right: auto;
  left: calc((100vw - var(--ctn)) / 2);
  bottom: 8rem;
}

.sec-bn-home .box-navi .btn-navi.swiper-button-disabled {
  opacity: 1;
}

.sec-bn-home .box-navi .btn-navi {
  background-color: transparent;
  border: 1px solid white;
}

@media screen and (min-width: 1025px) {
  .sec-bn-home .box-navi .btn-navi:hover .ic i {
    color: black;
  }
}

.sec-bn-home .box-navi .btn-navi::after {
  background-color: white;
}

.sec-bn-home .box-navi .btn-navi .ic i {
  color: white;
}

.sec-bn-home .bg-ab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(56.25% 96.87% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.sec-bn-home .bn-home-content {
  padding: var(--size-hd) 0 15rem;
  row-gap: 1rem;
}

.sec-bn-home .title-pri {
  line-height: 140%;
}

.sec-bn-home .content-banner ul {
  --gap: 1.6rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--gap);
  color: white;
}

@media screen and (max-width: 1200px) {
  .sec-bn-home .content-banner ul {
    --gap: 1rem;
  }
}

@media screen and (max-width: 575px) {
  .sec-bn-home .content-banner ul {
    justify-content: center;
  }
}

.sec-bn-home .content-banner ul li:not(:first-child) {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
}

.sec-bn-home .content-banner ul li:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.6rem;
  aspect-ratio: 1;
  border-radius: 100rem;
  background-color: var(--green-light);
}

@media screen and (max-width: 575px) {
  .sec-bn-home .content-banner ul li:not(:first-child)::before {
    display: none;
  }
}

.custom-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
}

.custom-navigation .number-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 3rem);
  transform: translate(-50%, -100%);
  display: flex;
  justify-content: space-between;
  /* Trải đều số từ trái sang phải */
  margin-bottom: 8px;
}

.custom-navigation .number-item {
  font-size: 1.4rem;
  color: white;
  opacity: 0.6;
  transition: 0.3s;
}

.custom-navigation .swiper-scrollbar {
  height: 100%;
}

.custom-navigation .swiper-scrollbar-drag {
  background: #9cc13d !important;
}

.heading-nav {
  background: #d2e2f1;
}

.heading-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
}

@media screen and (max-width: 575px) {
  .heading-nav-wrap {
    flex-direction: column;
  }
}

.heading-nav .tt {
  color: #1c2c3c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 575px) {
  .heading-nav .tt {
    font-size: 2rem;
  }
}

.heading-nav .btn-cate-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.heading-nav .btn-cate-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 2.4rem;
  height: 4rem;
  border-radius: 10rem;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.heading-nav .btn-cate-item.active {
  background-color: var(--green-light);
}

.heading-nav .btn-cate-item.active .txt {
  color: white;
}

@media screen and (min-width: 1025px) {
  .heading-nav .btn-cate-item:hover {
    background-color: var(--green-light);
  }

  .heading-nav .btn-cate-item:hover .txt {
    color: white;
  }
}

.heading-nav .btn-cate-item .txt {
  color: #1c2c3c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.tab-wrap::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.2rem;
}

.tab-wrap::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2rem;
}

.tab-wrap::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 2rem;
}

.tab-wrap::-webkit-scrollbar-thumb:hover {
  background: transparent;
  border-radius: 2rem;
}

.tab-wrap-block {
  max-width: 100%;
}

.tab-wrap-block.fade-left::before {
  width: 5%;
  background: linear-gradient(-90deg, rgba(210, 226, 241, 0) 0%, #d2e2f1 50%);
}

.tab-wrap-block.fade-right::after {
  width: 5%;
  background: linear-gradient(90deg, rgba(210, 226, 241, 0) 0%, #d2e2f1 50%);
}

.tab-wrap .tab-list {
  gap: 0.6rem;
}

.tab-wrap .tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 2.4rem;
  height: 4rem;
  border-radius: 10rem;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .tab-wrap .tab-item {
    padding: 0.4rem 1.6rem;
  }
}

.tab-wrap .tab-item.active {
  background-color: var(--green-light);
}

.tab-wrap .tab-item.active .txt {
  color: white;
}

@media screen and (min-width: 1025px) {
  .tab-wrap .tab-item:hover {
    background-color: var(--green-light);
  }

  .tab-wrap .tab-item:hover .txt {
    color: white;
  }
}

.tab-wrap .tab-item .txt {
  opacity: 1;
  color: #1c2c3c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .tab-wrap .tab-item .txt {
    --f-sz: 1.4rem;
    font-size: var(--f-sz);
  }
}

@media screen and (max-width: 1200px) and (min-width: 2000px) {
  .tab-wrap .tab-item .txt {
    --f-sz: 1.6rem;
  }
}

.sec-latest-news {
  overflow: hidden;
}

.news-latest-slider .swiper {
  margin: 0 calc(-1 * var(--it-pd));
}

.news-latest-slider .swiper-slide {
  width: 100%;
  max-width: 80.3rem;
  padding: 0 var(--it-pd);
}

.news-latest-slider .swiper-slide.swiper-slide-prev {
  transform: none;
}

.news-latest-slider .swiper-slide.swiper-slide-next {
  transform: none;
}

.news-latest-slider .box-navi {
  margin: 2.4rem auto 0;
}

.news-latest-slider .box-navi .btn-navi {
  --w: 5.6rem;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1200px) {
  .news-latest-slider .box-navi .btn-navi {
    --w: 4.2rem;
  }
}

.news-latest-slider .box-navi .btn-navi i {
  color: white;
}

.news-latest-slider .box-navi .btn-navi.prev {
  transform: translateX(0) !important;
  background-color: #1f6eb7;
}

.news-latest-slider .box-navi .btn-navi.next {
  transform: translateX(0) !important;
  background-color: #0fbbe3;
}

.news-h-item .thumb-link {
  padding-top: 49.8132004981%;
  box-shadow: none;
  border-radius: 1.6rem;
}

@media screen and (max-width: 1200px) {
  .news-h-item .thumb-link {
    border-radius: 0.8rem;
  }
}

.news-h-item h3 .name {
  color: var(--blue-dark);
}

.news-h-item .mona-content * {
  color: var(--blue-dark);
}

.sec-ct-home {
  overflow: hidden;
}

@media screen and (min-width: 1201px) {
  .sec-ct-home {
    min-height: 100vh;
  }
}

.sec-ct-home.section {
  padding: var(--size-hd) 0 0;
}

.sec-ct-home .heading-nav+.container {
  max-width: 100%;
  padding: 0;
}

.sec-ct-home .ct-home-wrap {
  padding: 0;
  justify-content: flex-start;
}

.sec-ct-home .flex-wrap.row {
  margin: 0;
  height: 100%;
}

.sec-ct-home .col-lf,
.sec-ct-home .col-rt {
  padding: 0;
  height: 100%;
}

@media screen and (max-width: 1200px) {

  .sec-ct-home .col-lf,
  .sec-ct-home .col-rt {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .sec-ct-home .col-rt {
    order: -1;
  }
}

.sec-ct-home .col-rt-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-ct-home .ct-lf-wrap {
  height: 100%;
}

.sec-ct-home .ct-lf-wrap .img {
  padding-top: 126.9890795632%;
  border-radius: 0;
  margin-bottom: 0;
  height: 100%;
}

.sec-ct-home .box-ct {
  padding: 4rem var(--re-ctn) 4rem 10.3rem;
}

@media screen and (max-width: 1200px) {
  .sec-ct-home .box-ct {
    padding: 2rem 1.5rem 2rem 2rem;
  }
}

.sec-ct-home .box-ct .title-sec {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
}

@media screen and (max-width: 480px) {
  .sec-ct-home .box-ct .btn-submit {
    margin: 0 auto;
  }
}

.sec-ct-home .bg-ab.bg-decor {
  top: 0;
  height: 100%;
}

.sec-ct-home .btn-submit {
  margin-top: 0;
}

.sec-ct-home .wpcf7-response-output {
  position: absolute !important;
  left: 0;
  bottom: 10%;
}

@media screen and (min-width: 1201px) {
  .sec-ct-home .wpcf7-response-output {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 1200px) {
  .sec-ct-home .wpcf7-response-output {
    position: unset !important;
    transform: translateY(0);
  }
}

.btn-submit {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 1025px) {
  .btn-submit:hover .txt {
    color: var(--color-pri);
  }
}

.btn-submit .txt {
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .btn-submit .txt {
    --f-sz: 1.6rem;
  }
}

.btn-submit .txt {
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0;
  -webkit-transition-delay: 0;
}

.btn-submit img {
  width: 5.6rem;
  height: 5.6rem;
  flex-shrink: 0;
  display: block;
  border-radius: 100rem;
  overflow: hidden;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .btn-submit img {
    width: 4.2rem;
    height: 4.2rem;
  }
}

@media screen and (min-width: 1201px) {

  .ft.section,
  .sec-ct-home.section {
    min-height: 100vh;
    justify-content: flex-start;
  }
}

.sec-map {
  padding-top: var(--size-hd) !important;
}

@media screen and (max-width: 1200px) {
  .sec-map {
    padding: 0 !important;
  }
}

.map-panel-block .map-block {
  display: block;
  padding-top: calc(814 / 1512 * 100%);
  position: relative;
  overflow: hidden;
}

.map-panel-block .map-block img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rmk-slogan-panel {
  flex-direction: column;
  display: flex;
}

.rmk-slogan-slider {
  --hbn: calc(455 / 1512 * 100vw);
  position: relative;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .rmk-slogan-slider {
    --hbbn: calc(555 / 1512 * 100vw);
  }
}

.rmk-slogan-slider .swiper {
  height: 100%;
}

.rmk-slogan-slider .tt-gr {
  min-height: var(--hbn);
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
}

.rmk-slogan-slider .tt {
  font-size: 12rem;
  font-weight: bold;
  color: white;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  .rmk-slogan-slider .tt {
    font-size: 8rem;
  }
}

@media screen and (max-width: 575px) {
  .rmk-slogan-slider .tt {
    --f-sz: clamp(4.5rem, calc(1.918rem + 3.6885vw), 9rem);
    font-size: var(--f-sz);
  }
}

.rmk-slogan-slider .box-navi {
  gap: 0.4rem;
}

@media screen and (min-width: 1201px) {
  .rmk-slogan-slider .box-navi {
    position: absolute;
    left: calc(var(--re-ctn));
    top: calc(var(--hbn) + 6rem);
  }
}

@media screen and (max-width: 1200px) {
  .rmk-slogan-slider .box-navi {
    flex-direction: row;
    margin: 0 auto;
  }
}

.rmk-slogan-bn {
  position: relative;
}

.rmk-slogan-content {
  height: 100%;
}

.rmk-slogan-content .txt {
  font-size: 16px;
  height: 100%;
  padding: 2rem 0 2rem 12rem;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .rmk-slogan-content .txt {
    padding: 2rem 0;
  }
}

.rmk-wclass-bn {
  display: block;
  padding-top: calc(407 / 1512 * 100%);
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1700px) {
  .rmk-wclass-bn {
    padding-top: 21.4285714286%;
  }
}

@media screen and (max-width: 1200px) {
  .rmk-wclass-bn {
    padding-top: 26.917989418%;
  }
}

.rmk-wclass-bn img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rmk-wclass-content {
  --gap: 2rem;
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  row-gap: var(--gap);
}

@media screen and (max-width: 1700px) {
  .rmk-wclass-content {
    justify-content: center;
  }
}

.rmk-wclass-slider {
  display: flex;
  flex-direction: column;
  position: relative;
}

.rmk-wclass-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(28, 44, 60, 0.1);
}

.rmk-wclass-slider .swiper {
  margin: 0;
}

.rmk-wclass-slider .swiper-slide {
  width: 25%;
  padding-top: var(--gap);
}

.rmk-wclass-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--blue-light);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  transition-delay: 0;
  -webkit-transition-delay: 0;
}

@media screen and (min-width: 1025px) {
  .rmk-wclass-slider .swiper-slide:hover::after {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .rmk-wclass-slider .swiper-slide.swiper-slide-active::after {
    width: 100%;
  }
}

.rmk-wclass-item .wrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

@media screen and (max-width: 575px) {
  .rmk-wclass-item .wrap {
    height: 100%;
    border: 1px solid var(--color-pri);
    background: rgba(31, 110, 183, 0.1);
    padding: 1.2rem;
    border-radius: 0.6rem;
    row-gap: 0.6rem;
  }
}

.rmk-wclass-item .icon {
  width: 4.8rem;
  height: 4.8rem;
  flex-shrink: 0;
  display: block;
}

@media screen and (max-width: 1200px) {
  .rmk-wclass-item .icon {
    width: 4.2rem;
    height: 4.2rem;
  }
}

.rmk-wclass-item .tt {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-pri);
}

.rmk-wclass-item .tt,
.rmk-wclass-item .txt {
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {

  .rmk-wclass-item .tt,
  .rmk-wclass-item .txt {
    --f-sz: 1.6rem;
  }
}

.sec-floor-plan .sec-wrap,
.sec-why-invest .sec-wrap,
.sec-slogan .sec-wrap,
.sec-w-class .sec-wrap,
.sec-pj-home .sec-wrap {
  padding-top: 0;
}

@media screen and (max-width: 1200px) {

  .sec-slogan .sec-wrap,
  .sec-w-class .sec-wrap,
  .sec-latest-news .sec-wrap {
    padding-bottom: 2rem;
  }
}

.rmk-why-invest {
  height: 100%;
}

.rmk-why-invest .swiper {
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .rmk-why-invest .box-navi {
    margin: 0 auto;
    padding: 2.4rem 0;
  }
}

.rmk-why-item {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .rmk-why-item {
    min-height: 70rem;
  }
}

@media screen and (max-width: 575px) {
  .rmk-why-item {
    min-height: 43rem;
  }
}

.rmk-why-item .bg-ab::before,
.rmk-why-item .bg-ab::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.rmk-why-item .bg-ab::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.55%, rgba(0, 0, 0, 0.2) 94.23%);
}

@media screen and (max-width: 1024px) {
  .rmk-why-item .bg-ab::before {
    opacity: 0;
    visibility: visible;
  }
}

.rmk-why-item .bg-ab::after {
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 29.98%, rgba(0, 0, 0, 0.6) 53.76%);
}

@media screen and (max-width: 1024px) {
  .rmk-why-item .bg-ab::after {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0.98%, rgba(0, 0, 0, 0.6) 53.76%);
  }
}

@media screen and (min-width: 1025px) {
  .rmk-why-item:hover .bg-ab::before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .rmk-why-item:hover .bg-ab::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .rmk-why-item:hover .rmk-why-content {
    transform: translateY(0);
    transition-delay: 0.1s;
  }

  .rmk-why-item:hover .rmk-why-content .tt::before {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .rmk-why-item:hover .rmk-why-content .in::after {
    width: 100%;
    transition-delay: 0.6s;
  }
}

.rmk-why-content {
  color: white;
  height: 100%;
  transform: translateY(100%);
  transition: 0.6s ease-out;
  -webkit-transition: 0.6s ease-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1024px) {
  .rmk-why-content {
    transform: translateY(0);
  }
}

.rmk-why-content .in {
  --htt: 8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  height: 100%;
  justify-content: flex-end;
  padding: 2.4rem;
}

.rmk-why-content .in::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 0.8rem;
  background-color: var(--green-light);
  transition: 0.6s ease;
  -webkit-transition: 0.6s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .rmk-why-content .in {
    padding: 2rem 1.2rem;
  }
}

.rmk-why-content .tt {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: bold;
}

.rmk-why-content .tt::before {
  content: attr(data-title);
  font-size: inherit;
  font-weight: inherit;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  transform: translateY(-100%);
  padding: 2.4rem;
  transition: 0.1s ease-out;
  -webkit-transition: 0.1s ease-out;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (max-width: 1200px) {
  .rmk-why-content .tt::before {
    padding: 1.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .rmk-why-content .tt::before {
    display: none;
  }
}

.rmk-why-content .why-link {
  width: 5.6rem;
  height: 5.6rem;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: 100rem;
  margin-left: auto;
}

.rmk-ab-home {
  height: 100%;
  padding: 2rem 0;
}

.rmk-ab-home-panel {
  height: 100%;
}

.rmk-ab-home-panel>.row {
  height: 100%;
}

.rmk-ab-home .map-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .rmk-ab-home .map-wrap {
    width: 40rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

.rmk-ab-home .map-block {
  display: block;
  padding-top: calc(695 / 413 * 100%);
  position: relative;
  overflow: hidden;
}

.rmk-ab-home .map-block img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 575px) {
  .rmk-ab-item {
    height: 100%;
  }
}

.rmk-ab-item .wrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}

@media screen and (max-width: 575px) {
  .rmk-ab-item .wrap {
    height: 100%;
    align-items: center;
    text-align: center;
    text-wrap: balance;
    border: 1px solid var(--color-pri);
    background: rgba(31, 110, 183, 0.1);
    padding: 1.2rem;
    border-radius: 0.6rem;
    row-gap: 0.6rem;
  }
}

.rmk-ab-item .icon {
  width: 6.4rem;
  height: 6.4rem;
  flex-shrink: 0;
  display: block;
}

@media screen and (max-width: 1200px) {
  .rmk-ab-item .icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.rmk-ab-item .num {
  --f-sz: clamp(2.3rem, calc(0.4066rem + 2.7049vw), 5.6rem);
  font-size: var(--f-sz);
  font-weight: bold;
  letter-spacing: -0.1em;
}

.rmk-ab-item .txt {
  font-weight: bold;
}

.rmk-ab-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4rem;
}

.rmk-ab-content .title-sec {
  font-weight: 400;
}

@media screen and (max-width: 575px) {
  .rmk-ab-content .title-sec {
    text-align: center;
  }
}

/* màn 16:9 thấp: thu nhỏ để nội dung không bị cắt trong khung fullpage */
@media (min-width: 1201px) and (max-height: 820px) {
  .rmk-ab-home {
    padding: 1rem 0;
  }

  .rmk-ab-content {
    row-gap: 2rem;
  }

  .rmk-ab-content .title-sec {
    --f-sz: clamp(2rem, 2.4vw, 3rem);
    font-size: var(--f-sz);
  }

  .rmk-ab-list.row {
    row-gap: 1.6rem;
  }

  .rmk-ab-item .wrap {
    row-gap: 0.6rem;
  }

  .rmk-ab-item .icon {
    width: 4.4rem;
    height: 4.4rem;
  }

  .rmk-ab-item .num {
    --f-sz: clamp(2.3rem, 3vw, 4rem);
  }
}

@media (min-width: 1201px) and (max-height: 680px) {
  .rmk-ab-content {
    row-gap: 1.4rem;
  }

  .rmk-ab-content .title-sec {
    --f-sz: clamp(1.8rem, 2vw, 2.6rem);
  }

  .rmk-ab-item .icon {
    width: 3.6rem;
    height: 3.6rem;
  }

  .rmk-ab-item .num {
    --f-sz: clamp(2.1rem, 2.6vw, 3.4rem);
  }
}

@media (min-width: 1201px) and (max-width: 1700px) {
  .sec-pj-home {
    --re-ctn: calc((100vw - var(--ctn)) / 2);
    --ctn: 130rem;
  }
}

.rmk-pj-head {
  display: flex;
}

@media screen and (max-width: 1200px) {
  .rmk-pj-head {
    flex-direction: column;
  }
}

.rmk-pj-head .title-pri {
  position: relative;
  width: 35%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem var(--re-ctn);
  background-color: var(--color-pri);
  color: white;
}

@media screen and (max-width: 1240px) {
  .rmk-pj-head .title-pri {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .rmk-pj-head .title-pri {
    width: 100%;
    text-align: center;
  }
}

.rmk-pj-head .btn-link {
  --w: 5.6rem;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  width: var(--w);
  aspect-ratio: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .rmk-pj-head .btn-link {
    position: unset;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 4rem;
    aspect-ratio: auto;
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
    background: white;
    width: fit-content;
    transform: translate(0, 0);
    margin: 1.6rem auto 0;
    border-radius: 100rem;
    color: var(--color-pri);
  }
}

@media screen and (max-width: 1200px) {
  .rmk-pj-head .btn-link img {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 100rem;
    overflow: hidden;
  }
}

.rmk-pj-head .btn-link .txt {
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 1201px) {
  .rmk-pj-head .btn-link .txt {
    display: none;
  }
}

.rmk-pj-param {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--re-ctn) 4rem 4rem;
}

@media screen and (max-width: 1240px) {
  .rmk-pj-param {
    padding: 2rem 1.5rem;
  }
}

.rmk-pj-param .param-block-list {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.rmk-pj-param .param-block-item .label {
  --f-sz: 1.2rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-pj-param .param-block-item .label {
    --f-sz: 1.4rem;
  }
}

.rmk-pj-param .param-block-item .label {
  font-weight: bold;
  color: var(--color-pri);
  text-transform: uppercase;
}

.rmk-pj-param .param-block-item .list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

@media screen and (max-width: 1200px) {
  .rmk-pj-param .param-block-item .list {
    gap: 1.6rem;
  }
}

.rmk-pj-param .param-block-item .item {
  display: flex;
  flex-direction: column;
}

.rmk-pj-param .param-block-item .item .tt {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: bold;
}

.rmk-pj-body {
  display: flex;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .rmk-pj-body {
    flex-direction: column;
  }
}

.rmk-pj-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rmk-pj-map {
  flex: 1;
}

.rmk-pj-map .map-block {
  display: block;
  padding-top: calc(628 / 1015 * 100%);
  position: relative;
  overflow: hidden;
}

.rmk-pj-map .map-block img,
.rmk-pj-map .map-block iframe,
.rmk-pj-map .map-block svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rmk-pj-info {
  height: 100%;
  flex-direction: column;
  display: flex;
  width: 35%;
  padding: 2rem 2rem 2rem var(--re-ctn);
}

@media screen and (max-width: 1240px) {
  .rmk-pj-info {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 1200px) {
  .rmk-pj-info {
    width: 100%;
  }
}

.rmk-pj-info .txt-intro {
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}

.rmk-pj-info .txt-intro {
  margin-bottom: 2.4rem;
}

.rmk-pj-info .list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

@media screen and (max-width: 1700px) {
  .rmk-pj-info .list {
    row-gap: 2rem;
  }
}

.rmk-pj-info .list .item {
  display: inline-flex;
  align-items: flex-start;
  gap: 1.6rem;
}

.rmk-pj-info .list .item>img {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  display: block;
}

.rmk-pj-info .list .item .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.rmk-pj-info .list .item .wrap .label {
  --f-sz: 1.2rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-pj-info .list .item .wrap .label {
    --f-sz: 1.3rem;
  }
}

.rmk-pj-info .list .item .wrap .label {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-pri);
  letter-spacing: 0.02em;
}

.rmk-pj-info .list .item .wrap .txt {
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  font-weight: bold;
  line-height: 1.4;
  color: var(--blue-dark);
}

.sec-floor-plan {
  z-index: 2;
}

@media screen and (max-width: 575px) {
  .sec-floor-plan {
    overflow: visible;
  }
}

.sec-floor-plan .info-table {
  position: absolute;
  z-index: 101;
  bottom: 0;
  left: 50%;
  /* Ẩn xuống dưới = 100% chiều cao panel + một khoảng CỐ ĐỊNH.
     Cũ là translateY(110%), tức phần đệm để giấu nút close chỉ bằng 10% chiều cao
     panel. Nút close nhô lên 2.15rem (nửa của 4.3rem, do top:0 + translateY(-50%)),
     nên nó chỉ được giấu khi panel cao > ~21rem. Lúc mới load `.info-table-list`
     còn rỗng -> panel chỉ cao bằng padding -> 10% đó quá nhỏ, nút thò lên khỏi mép
     section. Bấm mở popup một lần là có nội dung, panel cao lên nên tự hết -> đúng
     hiện tượng "chỉ lỗi lúc đầu load trang". Khoảng đệm cố định thì không phụ thuộc
     nội dung nữa. */
  transform: translate(-50%, calc(100% + 4rem));
  width: 100vw;
  /* Bỏ `min-height: 50vh`: nó ép panel cao cứng theo VIEWPORT chứ không theo nội dung
     -> lô nào không có ảnh gallery thì nội dung ngắn, panel vẫn cao 50vh => hở một mảng
     trắng ở đáy. Nay panel ôm sát nội dung. */
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.sec-floor-plan .info-table.active {
  transform: translate(-50%, 0%);
}

@media screen and (max-width: 1024px) {
  .sec-floor-plan .info-table {
    position: fixed;
    min-height: auto;
    height: 100vh;
    max-height: calc(100% - var(--size-hd) - 5rem);
  }
}

.sec-floor-plan .info-table .in {
  height: 100%;
  padding: 4rem 0 4rem var(--re-ctn);
  background-color: white;
  box-shadow: 0px -10px 40px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1240px) {
  .sec-floor-plan .info-table .in {
    padding: 4rem 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .sec-floor-plan .info-table .in {
    padding: 2rem 1.5rem;
    max-height: 100%;
    overflow: hidden auto;
  }
}

.sec-floor-plan .info-table .btn-close {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 4.3rem;
  aspect-ratio: 1/1;
  border-radius: 100rem;
  overflow: hidden;
  cursor: pointer;
}

@media screen and (min-width: 1201px) {
  .sec-floor-plan .info-table .row {
    --it-pd: 3.5rem;
  }
}

.sec-floor-plan .info-table .col:nth-child(1) {
  width: 25%;
}

@media screen and (max-width: 1024px) {
  .sec-floor-plan .info-table .col:nth-child(1) {
    width: 40%;
  }
}

@media screen and (max-width: 600px) {
  .sec-floor-plan .info-table .col:nth-child(1) {
    width: 100%;
  }
}

.sec-floor-plan .info-table .col:nth-child(2) {
  width: 33.3333333333%;
}

@media screen and (max-width: 1024px) {
  .sec-floor-plan .info-table .col:nth-child(2) {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .sec-floor-plan .info-table .col:nth-child(2) {
    width: 100%;
  }
}

.sec-floor-plan .info-table .col:nth-child(3) {
  width: 41.6666666667%;
}

@media screen and (max-width: 1024px) {
  .sec-floor-plan .info-table .col:nth-child(3) {
    width: 100%;
  }
}

/* Lô không có ảnh gallery: ComponentModule.js không render cột 3 nữa (trước đây vẫn
   render swiper rỗng -> chiếm 41,67% chiều rộng mà trắng trơn). Hai cột còn lại giãn
   ra cho hết chiều ngang.

   `.in` cố tình KHÔNG có padding phải (padding: 4rem 0 4rem var(--re-ctn)) để cột
   gallery tràn sát mép phải màn hình. Bỏ cột gallery đi thì cột 2 (căn phải) dính
   luôn vào mép viewport -> chữ bị cắt + chui xuống dưới cụm nút nổi. Nên phải trả
   lại gutter bên phải cho hàng này. */
.sec-floor-plan .info-table .row--no-gallery {
  padding-right: var(--re-ctn);
}

@media screen and (max-width: 1240px) {

  /* Dưới 1240px `.in` đã có padding 1.5rem cả hai bên rồi. */
  .sec-floor-plan .info-table .row--no-gallery {
    padding-right: 0;
  }
}

.sec-floor-plan .info-table .row--no-gallery .col:nth-child(1) {
  width: 30%;
}

.sec-floor-plan .info-table .row--no-gallery .col:nth-child(2) {
  width: 70%;
}

@media screen and (max-width: 600px) {

  .sec-floor-plan .info-table .row--no-gallery .col:nth-child(1),
  .sec-floor-plan .info-table .row--no-gallery .col:nth-child(2) {
    width: 100%;
  }
}

.floor-plan-wrap {
  height: 100%;
}

.floor-plan-panel {
  height: 100%;
}

.floor-plan-map {
  position: relative;
  height: 100%;
}

.floor-plan-map .wim-fe-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 61.3673805601% !important;
}

@media screen and (max-width: 1700px) {
  .floor-plan-map .wim-fe-wrapper {
    padding-top: 54.942339374% !important;
  }
}

.floor-plan-map .wim-fe-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floor-plan-slider {
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.floor-plan-slider-top .img {
  display: block;
  padding-top: calc(292 / 517 * 100%);
  position: relative;
  overflow: hidden;
}

.floor-plan-slider-top .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor-plan-slider-bot .swiper {
  margin: 0 -0.4rem;
}

.floor-plan-slider-bot .swiper-slide {
  width: 16.6666666667%;
  padding: 0 0.4rem;
}

.floor-plan-slider-bot .swiper-slide.swiper-slide-thumb-active .img {
  border-color: var(--color-pri);
}

.floor-plan-slider-bot .img {
  display: block;
  padding-top: calc(1 / 1 * 100%);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  border: 1px solid transparent;
  cursor: pointer;
}

.floor-plan-slider-bot .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor-plan-info ul li {
  --gap: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floor-plan-info ul li:not(:last-child) {
  padding-bottom: var(--gap);
  margin-bottom: var(--gap);
  border-bottom: 1px solid rgba(28, 44, 60, 0.1);
}

.floor-plan-info ul li .label {
  color: var(--color-pri);
  --f-sz: 1.2rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .floor-plan-info ul li .label {
    --f-sz: 1.4rem;
  }
}

.floor-plan-info ul li .label {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  width: 13rem;
}

.floor-plan-info ul li .info {
  display: block;
  flex: 1;
  text-align: right;
}

.floor-plan-cir {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 100rem;
  /* Mốc để tính cqw bên dưới. */
  container-type: inline-size;
}

.floor-plan-cir .info-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.floor-plan-cir .info-item {
  flex: 1;
  display: flex;
  justify-content: center;
  text-align: center;
}

.floor-plan-cir .info-item .info {
  display: block;
  font-weight: bold;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  /* --len: số ký tự thật của text, do ComponentModule.js ghi inline (mặc định 4).
     --cell: bề ngang ô chứa (nửa vòng tròn; ô đầu tiên là nguyên vòng -> 100cqw).
     0.62em ~ bề ngang trung bình 1 ký tự của font bold ở đây.

     Trước đây font-size là clamp() cứng theo viewport, không quan tâm text dài bao
     nhiêu. Mã lô 7 ký tự (CN03.50) ở 4.8rem rộng hơn ô 50% -> mà ô là flex nên chữ
     không xuống dòng được (min-width mặc định = min-content) -> tràn ra ngoài và bị
     overflow:hidden của vòng tròn cắt cụt.
     Nay lấy min(cỡ thiết kế, cỡ vừa ô): text ngắn giữ nguyên cỡ cũ, text dài tự co. */
  --len: 4;
  --cell: 50cqw;
  font-size: min(var(--f-sz, 2rem), calc((var(--cell) - 2rem) / (var(--len) * 0.62)));
  white-space: nowrap;
  min-width: 0;
}

.floor-plan-cir .info-item .info:not(:first-child) {
  border-left: 1px solid #d9d9d9;
}

/* Các rule dưới chỉ khai báo --f-sz (cỡ chữ THIẾT KẾ). Cỡ chữ thực tế do rule
   `.floor-plan-cir .info-item .info` ở trên chốt = min(--f-sz, cỡ vừa ô). */
.floor-plan-cir .info-item:first-child .info {
  width: 100%;
  /* Ô này chiếm nguyên bề ngang vòng tròn, không phải nửa. */
  --cell: 100cqw;
  --f-sz: clamp(2.2rem, calc(1.6262rem + 0.8197vw), 3.2rem);
}

.floor-plan-cir .info-item:nth-child(2) .info:first-child {
  --f-sz: clamp(2.4rem, calc(0.3934rem + 2.2951vw), 4.8rem);
}

.floor-plan-cir .info-item:nth-child(2) .info:last-child {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
}

.floor-plan-cir .info-item:last-child .info {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
}

.floor-plan-cir .info-item:last-child .info:first-child {
  justify-content: flex-end;
  text-align: right;
}

@media screen and (min-width: 1201px) {
  .floor-plan-cir .info-item:last-child .info:first-child {
    padding-left: 14%;
  }
}

.floor-plan-cir .info-item:last-child .info:last-child {
  justify-content: flex-start;
  text-align: right;
}

.floor-plan-cir .info-item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.popup-subinfo {
  width: 28rem;
  max-width: 100%;
  position: absolute;
  z-index: 5;
  /* KHÔNG dùng transform để dời popup nữa.
     Cũ: translateX(-50%) translateY(-180%) -> đẩy popup lên trên 1.8x chiều cao của
     chính nó (popup cao ~330px => lơ lửng cách pin ~264px), và vì không có rule nào
     cho [data-position] nên nhánh "bottom" trong JS vô tác dụng.
     Nay left/top là toạ độ góc trên-trái thật, do positionPopup() trong
     ComponentModule.js tính (có đo kích thước thật + clamp trong viewport). */
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Chỉ transition opacity/visibility. Nếu để `all` thì left/top cũng transition
     -> popup TRƯỢT từ ô này sang ô kia, rê chuột nhanh trông như bị lag. */
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  -webkit-transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

/* Popup rộng 28rem, đè lên cả chục ô kế bên. Nếu nó ăn chuột thì các ô nằm dưới
   KHÔNG hover được nữa (feedback của khách: "các ô sát nhau, không hover được").
   -> Popup TRONG SUỐT với chuột: hover/click xuyên qua nó xuống ô bên dưới.
   Nút "View more" vì vậy không click trực tiếp được; thay vào đó click vào ô
   (hoặc click trúng khung popup) sẽ mở bảng chi tiết - xem ComponentModule.js. */
.popup-subinfo.active {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.popup-subinfo .in {
  background-color: white;
  padding: 2.4rem;
  border-radius: 1.2rem;
}

@media screen and (max-width: 1200px) {
  .popup-subinfo .in {
    border-radius: 0.6rem;
    padding: 1.2rem;
  }
}

.popup-subinfo-head {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(28, 44, 60, 0.1);
}

/* Nội dung mô tả trong hover box: tự wrap, bẻ cả chuỗi dài không dấu cách.
   Ngắt dòng chủ động (Enter) được render thành <br> ở ComponentModule.js. */
.popup-subinfo-body p.txt {
  overflow-wrap: break-word;
  word-break: break-word;
}

.popup-subinfo .go-link {
  --f-sz: 1.2rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .popup-subinfo .go-link {
    --f-sz: 1.4rem;
  }
}

.popup-subinfo .go-link {
  font-weight: bold;
  width: fit-content;
  color: var(--color-pri);
}

@media screen and (min-width: 1025px) {
  .popup-subinfo .go-link:hover {
    text-decoration: underline;
    text-underline-position: under;
  }
}

.main.page-faqs {
  padding-top: var(--size-hd);
}

.rmk-faqs-wrap {
  --lf: calc(3.5/12 * 100%);
}

@media screen and (max-width: 1200px) {
  .rmk-faqs-wrap {
    --lf: 100%;
  }
}

.rmk-faqs-heading {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.rmk-faqs-heading .title-sec {
  width: var(--lf);
}

@media screen and (max-width: 1200px) {
  .rmk-faqs-heading .title-sec {
    width: 100%;
  }
}

.rmk-faqs-heading .btn-tab-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}

.rmk-faqs-heading .btn-tab-wrap .btn-tab {
  width: fit-content;
  height: 4.8rem;
  padding: 0.4rem 2.4rem;
  border-radius: 100rem;
  overflow: hidden;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .rmk-faqs-heading .btn-tab-wrap .btn-tab {
    height: 4rem;
  }
}

.rmk-faqs-heading .btn-tab-wrap .btn-tab .txt {
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .rmk-faqs-heading .btn-tab-wrap .btn-tab .txt {
    --f-sz: 1.6rem;
  }
}

.rmk-faqs-heading .btn-tab-wrap .btn-tab .txt {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-text);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .rmk-faqs-heading .btn-tab-wrap .btn-tab:hover {
    background-color: var(--blue-light);
  }

  .rmk-faqs-heading .btn-tab-wrap .btn-tab:hover .txt {
    color: white;
  }
}

.rmk-faqs-heading .btn-tab-wrap .btn-tab.active {
  background-color: var(--blue-light);
}

.rmk-faqs-heading .btn-tab-wrap .btn-tab.active .txt {
  color: white;
}

.rmk-faqs-body {
  position: relative;
}

.rmk-faqs-body .col-lf {
  width: var(--lf);
}

@media screen and (min-width: 1201px) {
  .rmk-faqs-body .col-lf {
    position: sticky;
    height: 100%;
    top: var(--size-hd);
  }
}

.rmk-faqs-body .col-rt {
  flex: 1;
  position: relative;
}

.rmk-faqs-cl {
  --gap: 3.2rem;
}

@media screen and (max-width: 575px) {
  .rmk-faqs-cl {
    --gap: 1.6rem;
  }
}

.rmk-faqs-cl-item:not(:last-child) {
  padding-bottom: var(--gap);
  margin-bottom: var(--gap);
  border-bottom: 1px solid rgba(28, 44, 60, 0.2);
}

.rmk-faqs-cl-item.active .rmk-faqs-cl-head .tt {
  color: var(--color-pri);
}

.rmk-faqs-cl-item.active .rmk-faqs-cl-head i {
  transform: rotate(180deg);
}

.rmk-faqs-cl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {

  .rmk-faqs-cl-head:hover .tt,
  .rmk-faqs-cl-head:hover i {
    color: var(--color-pri);
  }
}

.rmk-faqs-cl-head .tt {
  text-transform: uppercase;
  --f-sz: clamp(1.5rem, calc(1.3279rem + 0.2459vw), 1.8rem);
  font-size: var(--f-sz);
  font-weight: bold;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.rmk-faqs-cl-head i {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

.rmk-faqs-cl-body .txt {
  padding-top: 2rem;
  padding-right: 10rem;
}

@media screen and (max-width: 1200px) {
  .rmk-faqs-cl-body .txt {
    padding-right: 0;
  }
}

.cate-ques {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media screen and (max-width: 1200px) {
  .cate-ques {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cate-ques-btn {
  width: fit-content;
  height: 4.8rem;
  padding: 0.4rem 2.4rem;
  border-radius: 100rem;
  overflow: hidden;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccdcea;
}

@media screen and (max-width: 1200px) {
  .cate-ques-btn {
    height: 4rem;
  }
}

.cate-ques-btn .txt {
  font-weight: bold;
  color: var(--color-pri);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .cate-ques-btn:hover {
    background-color: var(--color-pri);
  }

  .cate-ques-btn:hover .txt {
    color: white;
  }
}

.cate-ques-btn.active {
  background-color: var(--color-pri);
}

.cate-ques-btn.active .txt {
  color: white;
}

.rmk-invest-form {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.rmk-invest-form .col-lf {
  width: 29.1666666667%;
}

@media screen and (min-width: 1201px) {
  .rmk-invest-form .col-lf {
    position: sticky;
    height: 100%;
    top: var(--size-hd);
  }
}

@media screen and (max-width: 1200px) {
  .rmk-invest-form .col-lf {
    width: 100%;
  }
}

.rmk-invest-form .col-rt {
  flex: 1;
}

.rmk-invest-form .title-sec {
  color: var(--color-text);
}

.rmk-invest-form .form-head {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.rmk-invest-form .form-head .tt {
  --f-sz: clamp(1.8rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: bold;
  text-transform: uppercase;
}

.form-invest-block {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

.form-invest-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

.form-group .group.imp .label-group::after {
  display: none;
}

.form-group .group.required .label-group::after {
  content: "*";
  display: block;
  color: red;
}

/* dấu * đỏ cho các field bắt buộc trong form contact (group .imp chứa input
   required hoặc select) — group .imp không required (vd Message) vẫn bị ẩn */
.form-group .group.imp:has(.wpcf7-validates-as-required) .label-group::after,
.form-group .group.imp:has(select.wpcf7-select) .label-group::after {
  content: "*";
  display: inline-block;
  color: #e02b20;
  margin-left: 0.4rem;
}

.wpcf7 {
  position: relative;
  height: 100%;
}

.wpcf7 form.failed .wpcf7-response-output {
  border: none !important;
  background: #ed3438 !important;
  color: #fff !important;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.2rem;
  font-weight: 600 !important;
  border-radius: 0.6rem;
  padding: 0.4rem 0.6rem !important;
  text-align: center;
  width: fit-content !important;
  margin: 2rem auto 0 !important;
  display: flex;
  align-items: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none !important;
  background: #ed3438 !important;
  color: #fff !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-pri) !important;
  background: #46b450 !important;
  color: #fff !important;
}

.form-checkbox {
  padding-top: 0.6rem;
}

.form-checkbox .wpcf7-radio .wpcf7-list-item {
  padding: var(--it-pd);
}

.form-checkbox label input {
  display: none;
}

.form-checkbox label input:checked~.wpcf7-list-item-label::after {
  opacity: 1;
}

.form-checkbox .wpcf7-list-item {
  margin: 0;
}

.form-checkbox .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
  padding-left: 3rem;
  --f-sz: 1.4rem;
  font-size: var(--f-sz);
}

@media screen and (min-width: 2000px) {
  .form-checkbox .wpcf7-list-item-label {
    --f-sz: 1.6rem;
  }
}

.form-checkbox .wpcf7-list-item-label a {
  text-decoration: underline;
  text-underline-position: under;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}

@media screen and (min-width: 1025px) {
  .form-checkbox .wpcf7-list-item-label a:hover {
    color: var(--color-pri);
  }
}

.form-checkbox .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2rem;
  border: 1px solid rgba(28, 44, 60, 0.2);
}

.form-checkbox .wpcf7-list-item-label::after {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 0.3rem;
  width: 2.2rem;
  font-size: 1.8rem;
  transform: translate(0, -50%);
  font-family: "Font Awesome 6 Pro";
  opacity: 0;
}

.rmk-process .is-inview .rmk-process-line svg #blue-line {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmk-process-main {
  position: relative;
  padding-top: 10rem;
}

@media screen and (max-width: 1200px) {
  .rmk-process-main {
    padding-top: 4rem;
  }
}

.rmk-process .bg-line {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - var(--it-pd) * 2);
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .rmk-process .bg-line {
    display: none;
  }
}

.rmk-process .bg-line span {
  display: block;
  width: 16.6666666667%;
  height: 100%;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-top: none;
  border-bottom: none;
}

.rmk-process .title-sec {
  color: #1c2c3c;
}

@media screen and (max-width: 575px) {
  .rmk-process .title-sec {
    text-align: center;
  }
}

.rmk-process-list .row {
  row-gap: 12rem;
}

@media screen and (max-width: 1200px) {
  .rmk-process-list .row {
    row-gap: 4rem;
  }
}

@media screen and (max-width: 1200px) {
  .rmk-process-list .row {
    row-gap: 1.6rem;
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(1) .rmk-process-item .wrap {
    max-width: 50%;
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(2) {
    transform: translate(0, -40%);
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(2) .rmk-process-item .wrap {
    max-width: 80%;
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(3) {
    transform: translate(0, -65%);
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(3) .rmk-process-item .wrap {
    max-width: 80%;
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(4) {
    transform: translate(50%, 0%);
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(5) {
    transform: translate(50%, -50%);
  }
}

@media screen and (min-width: 1201px) {
  .rmk-process-list .col:nth-child(6) {
    transform: translate(50%, -80%);
  }
}

@media screen and (min-width: 1201px) {

  .rmk-process-list .col:nth-child(4) .rmk-process-item .wrap,
  .rmk-process-list .col:nth-child(5) .rmk-process-item .wrap,
  .rmk-process-list .col:nth-child(6) .rmk-process-item .wrap {
    max-width: 80%;
  }
}

.rmk-process-item {
  width: 100%;
  height: 100%;
}

.rmk-process-item .wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.6rem;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .rmk-process-item .wrap {
    padding: 1.2rem;
    border: 1px solid var(--color-pri);
    background: rgba(31, 110, 183, 0.1);
    border-radius: 0.6rem;
  }
}

.rmk-process-item .num {
  display: block;
  font-family: "SVN-Bebas Neue Pro";
  font-style: italic;
  --f-sz: clamp(2.9rem, calc(0.8918rem + 2.8689vw), 6.4rem);
  font-size: var(--f-sz);
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: -0.05em;
  line-height: normal;
}

.rmk-process-item .tt {
  --f-sz: clamp(1.6rem, calc(1.3705rem + 0.3279vw), 2rem);
  font-size: var(--f-sz);
  font-weight: bold;
}

.rmk-process-line {
  position: absolute;
  z-index: -1;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
}

@media screen and (max-width: 1200px) {
  .rmk-process-line {
    display: none;
    height: 100%;
    top: 30%;
  }
}

.rmk-process-line svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rmk-process-line svg #blue-line {
  stroke-dasharray: 2000;
  /* đủ lớn hơn độ dài thực của path */
  stroke-dashoffset: 2000;
  transition: none;
}

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

/* ============================================================
   CUSTOM FEEDBACK ADJUSTMENTS (home) - giữ đồng bộ với rmk.scss
   ============================================================ */

/* [1] Floor plan: band full-bleed (bỏ container) nhưng ẢNH scale gọn trong container
   (giữ tỷ lệ, canh giữa, không tràn sát mép / không bị cắt) */
.sec-floor-plan .sec-wrap>.floor-plan-wrap--full {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.sec-floor-plan .floor-plan-wrap--full .floor-plan-map {
  width: 100%;
  max-width: var(--ctn);
  margin-left: auto;
  margin-right: auto;
}

/* Bản đồ cao theo TỈ LỆ KHUNG HÌNH (padding-top ở .wim-fe-wrapper) nên thấp hơn
   chiều cao section -> bị dồn lên đỉnh. Cho panel căn giữa theo trục dọc.
   Chỉ áp cho panel đang mở (.open) vì panel là tabPanel, lúc ẩn phải giữ display:none. */
.sec-floor-plan .floor-plan-wrap--full .floor-plan-panel.open {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Bỏ height:100% để map cao đúng theo tỉ lệ, không bị kéo full làm mất tác dụng canh giữa. */
.sec-floor-plan .floor-plan-wrap--full .floor-plan-panel.open .floor-plan-map {
  height: auto;
}

.sec-floor-plan .floor-plan-wrap--full .floor-plan-map .map-block,
.sec-floor-plan .floor-plan-wrap--full .floor-plan-map .wim-container,
.sec-floor-plan .floor-plan-wrap--full .floor-plan-map .wim-fe-viewport,
.sec-floor-plan .floor-plan-wrap--full .floor-plan-map .wim-fe-wrapper {
  width: 100%;
  max-width: 100%;
}

/* map khi zoom/kéo phải bị CẮT trong khung viewport, không được tràn
   đè lên heading-nav/tab phía trên (giữ overflow hidden của plugin) */
.sec-floor-plan .floor-plan-wrap--full .floor-plan-map .wim-fe-viewport {
  overflow: hidden;
}

/* bỏ nền xám + viền letterbox của plugin trong section này */
.sec-floor-plan .floor-plan-wrap--full .wim-fe-viewport {
  background: transparent;
  border: none;
}

/* dời cụm nút zoom sang góc trái + thu nhỏ, tránh đè #fp-nav (chấm scroll bên phải) */
.sec-floor-plan .wim-fe-controls {
  top: 1.5rem;
  left: 1.5rem;
  right: auto;
  gap: 0.8rem;
}

.sec-floor-plan .wim-fe-controls button {
  width: 4rem;
  height: 4rem;
  font-size: 1.8rem;
  border-radius: 0.8rem;
}

@media (max-width: 575px) {
  .sec-floor-plan .wim-fe-controls {
    top: 1rem;
    left: 1rem;
    gap: 0.6rem;
  }

  .sec-floor-plan .wim-fe-controls button {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.6rem;
  }
}

/* [2] Tin tức home: slide active to hơn, các slide còn lại mờ & nhỏ
   (tăng specificity để thắng rule .swiper-slide-prev/next { transform: none } có sẵn) */
.sec-latest-news .news-latest-slider .swiper-slide,
.sec-latest-news .news-latest-slider .swiper-slide.swiper-slide-prev,
.sec-latest-news .news-latest-slider .swiper-slide.swiper-slide-next {
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: scale(0.82) !important;
  opacity: 0.5;
}

.sec-latest-news .news-latest-slider .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1;
}

.news-h-item .content .date {
  display: inline-block;
  order: 3;
  margin-top: 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--blue-light);
}

/* [3] Banner home: 2 button CTA */
.bn-home-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
}

.bn-home-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 18rem;
  height: 5.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 10rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: 0.3s ease;
}

.bn-home-cta .btn-cta--primary {
  background-color: #0fbbe3;
  color: #fff;
}

.bn-home-cta .btn-cta--primary:hover {
  background-color: #1f6eb7;
  color: #fff;
}

.bn-home-cta .btn-cta--outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.bn-home-cta .btn-cta--outline:hover {
  background-color: #fff;
  color: #1c2c3c;
}

@media (max-width: 575px) {
  .bn-home-cta {
    gap: 1.2rem;
    margin-top: 2.4rem;
  }

  .bn-home-cta .btn-cta {
    min-width: 14rem;
    height: 4.8rem;
    padding: 1rem 2.4rem;
  }
}

/* [4] Đối tác: 2 hàng (Swiper grid) — GIỮ FULL WIDTH (không bó container),
   ghim chiều cao logo cho gọn + gradient liner 2 BÊN (trái/phải) che mép để
   không bị #fp-nav (chấm scroll full page) đè/cắt logo */
.rmk-partner .heading-sec {
  margin-bottom: 2rem;
}

.rmk-partner-slider {
  position: relative;
}

.rmk-partner-slider .partner-img {
  aspect-ratio: auto;
  width: 100%;
  height: 7rem;
}

.rmk-partner-slider .swiper-slide {
  height: auto;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  box-sizing: border-box;
}

.rmk-partner-slider::before,
.rmk-partner-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12rem;
  z-index: 3;
  pointer-events: none;
}

.rmk-partner-slider::before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

.rmk-partner-slider::after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
}

@media (max-width: 1200px) {
  .rmk-partner-slider .partner-img {
    height: 5.5rem;
  }

  .rmk-partner-slider::before,
  .rmk-partner-slider::after {
    width: 8rem;
  }
}

@media (max-width: 575px) {
  .rmk-partner-slider .partner-img {
    height: 4.5rem;
  }

  .rmk-partner-slider::before,
  .rmk-partner-slider::after {
    width: 5rem;
  }
}