:root {
  --color-main: #0f5faa;
  --color-main-2: #ff4a08;
  --color-gradient-main: linear-gradient(180deg, #ff8d28 0%, #ff4a08 100%);
  --color-gradient-main-2: linear-gradient(180deg, #ffe270 0%, #ffa10a 100%);
  --color-text: #333;
  --color-border: #CDCDCD;
  --color-hover: #0f5faa;
  --w-container: 1450px;
  --size-section: 60px;
  --fs-h1: 2.4rem;
  --fs-h2: 2.2rem;
  --fs-h3: 2rem;
  --fs-h4: 1.9rem;
  --fs-h5: 1.8rem;
  --fs-h6: 1.6rem;
  --fs-text: 1.5rem;
  --fs-title: 4.1rem;
  --fs-title-min: 2.8rem;
  --fs-title-min-2: 3.2rem;
  --fs-menu: 1.6rem;
}

@media (max-width: 1500px) {
  :root {
    --fs-h5: 1.45rem;
  }
}
@media (max-width: 1399px) {
  :root {
    --w-container: 1140px;
    --size-section: 50px;
    --fs-h1: 2.2rem;
    --fs-h2: 2rem;
    --fs-h3: 1.8rem;
    --fs-h4: 1.7rem;
    --fs-h5: 1.4rem;
    --fs-h6: 1.5rem;
    --fs-text: 1.4rem;
    --fs-title: 2.6rem;
  }
}
@media (max-width: 1199px) {
  :root {
    --w-container: 960px;
    --size-section: 40px;
  }
}
@media (max-width: 991px) {
  :root {
    --w-container: 720px;
    --size-section: 30px;
    --fs-h1: 2rem;
    --fs-h2: 1.9rem;
    --fs-h3: 1.7rem;
    --fs-h4: 1.6rem;
    --fs-h5: 1.5rem;
    --fs-h6: 1.4rem;
    --fs-text: 1.4rem;
    --fs-title: 2.5rem;
    --fs-title-min: 2.2rem;
    --fs-title-min-2: 2.4rem;
  }
}
@media (max-width: 767px) {
  :root {
    --w-container: 540px;
    --size-section: 20px;
    --fs-title-min: 2rem;
    --fs-title: 2.2rem;
    --fs-title-min-2: 2.2rem;
  }
}
@media (max-width: 575px) {
  :root {
    --w-container: 100%;
    --size-section: 15px;
  }
}
@font-face {
  font-family: "roboto-condensed";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/RobotoCondensed-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "default", sans-serif;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Montserrat-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "default", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "default", sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Montserrat-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "default", sans-serif;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Montserrat-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "default", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Montserrat-Bold.ttf");
  font-display: swap;
}
.img-mb {
  display: none;
}

@media (max-width: 991px) {
  .img-pc {
    display: none;
  }
  .img-mb {
    display: block;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "default", sans-serif;
}

.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ccc;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  width: var(--w-container);
  margin: auto;
}

.skiptranslate {
  display: none;
}

.text-uppercase {
  text-transform: uppercase;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

html {
  font-size: 62.5%;
}

body {
  font-size: var(--fs-text);
  color: var(--color-text);
  line-height: 1.4;
  margin-top: 0;
  overflow-x: hidden;
  top: 0 !important;
}
body.no-scroll {
  overflow: hidden;
}

a {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  color: var(--color-text);
}
a:hover {
  color: var(--color-hover);
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s linear;
}

.img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img.hover:hover img {
  transform: scale(1.05);
}

.img-contain {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.img-contain img {
  width: initial;
  height: initial;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.img-contain.hover:hover img {
  transform: scale(1.05);
}

strong {
  font-weight: 700;
}

form input.error,
form textarea.error,
form select.error {
  border: 1px solid red !important;
}
form label.error {
  display: none !important;
}

input,
button,
textarea,
select {
  outline: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  font-weight: 400;
  font-size: var(--fs-text);
}
input::placeholder,
button::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: var(--fs-text);
  font-weight: 400;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

.text-center {
  text-align: center;
}

.mb-30 {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .mb-30 {
    margin-bottom: 15px;
  }
}

.mb-15 {
  margin-bottom: 15px;
}

.py-block {
  padding-top: var(--size-section);
  padding-bottom: var(--size-section);
}

.pb-block {
  padding-bottom: var(--size-section);
}

.pt-block {
  padding-top: var(--size-section);
}

.my-block {
  margin-top: var(--size-section);
  margin-bottom: var(--size-section);
}

.mb-block {
  margin-bottom: var(--size-section);
}

.mt-block {
  margin-top: var(--size-section);
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  border-color: #ccc rgba(0, 0, 0, 0);
  animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loader::before {
  border-color: #f03355 rgba(0, 0, 0, 0);
  animation: inherit;
  animation-duration: 0.5s;
  animation-direction: reverse;
}

.loader::after {
  margin: 8px;
}

@keyframes l16 {
  100% {
    transform: rotate(1turn);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 30;
}
.loading.active {
  opacity: 1;
  pointer-events: all;
  z-index: 100;
  color: #fff;
}

.overflow-hidden {
  overflow: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}
.overlay.show1 {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}

.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
  margin-bottom: 15px;
  line-height: 1.5;
  color: var(--color-text);
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
  font-weight: 700;
}
.detail-content p {
  line-height: 1.5;
  margin-bottom: 15px;
}
.detail-content p:last-child {
  margin-bottom: 0;
}
.detail-content img {
  height: initial !important;
}
.detail-content figure {
  margin-bottom: 15px;
}
.detail-content figure img {
  display: block;
}
.detail-content figure figcaption {
  text-align: center;
  padding: 5px 15px;
  font-size: var(--fs-text-min);
  font-style: italic;
}
.detail-content ul,
.detail-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}
.detail-content ul li,
.detail-content ol li {
  padding-bottom: 5px;
  line-height: 1.5;
}
.detail-content ul li:last-child,
.detail-content ol li:last-child {
  padding-bottom: 0;
}
.detail-content ul li::marker,
.detail-content ol li::marker {
  color: var(--color-text);
}
.detail-content ul {
  list-style-type: disc;
}
.detail-content ul li {
  list-style-type: disc;
  color: var(--color-text);
}
.detail-content ol {
  list-style-type: decimal;
}
.detail-content ol li {
  list-style-type: decimal;
}
.detail-content .image-center {
  display: flex;
  justify-content: center;
  margin: 0 auto 15px;
}
.detail-content .image-center img {
  margin: auto;
}
.detail-content .image-left {
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
}
.detail-content .image-right {
  float: right;
  margin-bottom: 15px;
  margin-left: 15px;
}
.detail-content a {
  text-decoration: underline;
}
.detail-content a:hover {
  color: var(--color-main);
}
.detail-content .button {
  background: var(--color-main-2);
  font-size: var(--fs-text);
  color: #fff;
  text-decoration: none;
  display: table;
  vertical-align: middle;
  padding: 0 25px;
  border-radius: 5px;
  line-height: 35px;
}
.detail-content .button svg {
  margin-left: 10px;
}
.detail-content .button:hover {
  background: var(--color-main);
  color: #fff;
}
.detail-content table {
  margin-bottom: 15px;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.detail-content table tr th {
  line-height: 1;
  font-weight: 400;
  font-size: var(--fs-text);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-top-color: var(--color-main);
}
.detail-content table tr th:first-child {
  border-left-color: var(--color-main);
}
.detail-content table tr th:last-child {
  border-right-color: var(--color-main);
}
.detail-content table tr th,
.detail-content table tr td {
  font-size: var(--fs-text);
  line-height: 1.5;
  padding: 5px;
}
.detail-content iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
}
.detail-content .iframe_video {
  margin-bottom: 15px;
  aspect-ratio: 16/9;
}
.detail-content .iframe_video iframe,
.detail-content .iframe_video video {
  width: 100%;
  display: block;
  height: 100%;
}

.grecaptcha-badge {
  display: none !important;
}

.title.sub-title span {
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}
.title.sub-title span:after {
  content: "";
  position: absolute;
  left: calc(100% + 5px);
  bottom: 10px;
  height: 2px;
  width: 65px;
  background: var(--color-main-2);
}
.title.sub-title h1 {
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .title.sub-title span {
    font-size: 2.2rem;
  }
  .title.sub-title h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .title.sub-title span {
    font-size: 1.8rem;
  }
  .title.sub-title h1 {
    font-size: 2rem;
  }
}

.title-size {
  font-size: var(--fs-title-min-2);
}

.max-70 {
  max-width: 70%;
}
@media (max-width: 991px) {
  .max-70 {
    max-width: 100%;
  }
}

.max-50 {
  max-width: 50%;
}
@media (max-width: 991px) {
  .max-50 {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .max-50 {
    max-width: 100%;
  }
}

.text-main,
.text-main a {
  color: var(--color-main);
}

.text-main-2,
.text-main-2 a {
  color: var(--color-main-2);
}

.title-max {
  font-size: var(--fs-title);
}

.leaf-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 316px;
  height: 316px;
  background: url("../images/la-trai.png") no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .leaf-left {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .leaf-left {
    width: 150px;
    height: 150px;
  }
}

.leaf-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 271px;
  height: 205px;
  background: url("../images/la-phai.png") no-repeat;
  background-size: contain;
  background-position: right center;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 991px) {
  .leaf-right {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 767px) {
  .leaf-right {
    width: 100px;
    height: 100px;
  }
}

.leaf-left-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 457px;
  height: 452px;
  background: url("../images/la-phai-2.png") no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
  max-width: 100%;
}

.text-white,
.text-white a {
  color: #fff;
}

.btn-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  padding: 12px;
  background-color: transparent;
  border-color: transparent;
  outline: none;
  transform: translateZ(0);
  transition: transform 0.1s ease-out;
}
.btn-toggle:active {
  transform: translateY(4px);
}
.btn-toggle:focus .line:after {
  background-color: black;
}
@media (min-width: 992px) {
  .btn-toggle {
    display: none;
  }
}

.line {
  display: block;
  width: 50px;
  padding: 3.75px;
}
.line:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: var(--color-main);
  border-radius: 2px;
  transform: translateZ(0) rotate(0);
  transition: background-color 0.2s ease-out;
}

.open .line:nth-child(1) {
  animation: jump-1 0.9s forwards ease;
}
.open .line:nth-child(1):after {
  animation: line-1 0.9s forwards ease-in-out;
}
.open .line:nth-child(2) {
  animation: jump-2 0.9s forwards ease;
}
.open .line:nth-child(2):after {
  animation: line-2 0.9s forwards ease-in-out;
}

.close .line:nth-child(1) {
  animation: jump-1 0.9s reverse ease;
}
.close .line:nth-child(1):after {
  animation: line-1 0.9s reverse ease-in-out;
}
.close .line:nth-child(2) {
  animation: jump-2 0.9s reverse ease;
}
.close .line:nth-child(2):after {
  animation: line-2 0.9s reverse ease-in-out;
}

.open .line:nth-child(3),
.close .line:nth-child(3) {
  animation: jump-3 0.9s forwards ease-out;
}

@keyframes line-1 {
  10% {
    transform: translateZ(0) rotate(0);
  }
  80% {
    transform: translateZ(0) rotate(395deg);
  }
  90%, 100% {
    transform: translateZ(0) rotate(405deg);
  }
}
@keyframes line-2 {
  10% {
    transform: translateZ(0) rotate(0);
  }
  20% {
    transform: translateZ(0) rotate(10deg);
  }
  90%, 100% {
    transform: translateZ(0) rotate(-405deg);
  }
}
@keyframes jump-1 {
  10% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-90px);
  }
  90%, 100% {
    transform: translateY(1px);
  }
}
@keyframes jump-2 {
  10% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-75px);
  }
  85%, 100% {
    transform: translateY(-10.5px);
  }
}
@keyframes jump-3 {
  10% {
    transform: translateY(-7.5px) rotate(15deg);
  }
  30% {
    transform: translateY(-30px) rotate(-10deg);
  }
  50% {
    transform: translateY(7.5px) rotate(5deg);
  }
  80% {
    transform: translateY(0);
  }
}
@keyframes glow {
  50% {
    box-shadow: #000 0 0 2px 2px;
  }
}
@media (max-width: 767px) {
  .btn-toggle {
    padding: 0px;
  }
  .line {
    width: 40px;
  }
  .line:after {
    height: 2px;
  }
  @keyframes jump-2 {
    10% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-75px);
    }
    85%, 100% {
      transform: translateY(-6.5px);
    }
  }
  @keyframes jump-1 {
    10% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-90px);
    }
    90%, 100% {
      transform: translateY(2px);
    }
  }
}
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.page span,
.page a,
.page div {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  position: relative;
}
.page span:hover, .page span.active-page,
.page a:hover,
.page a.active-page,
.page div:hover,
.page div.active-page {
  color: var(--color-main);
  border-color: var(--color-main);
}
.page span:hover svg, .page span.active-page svg,
.page a:hover svg,
.page a.active-page svg,
.page div:hover svg,
.page div.active-page svg {
  fill: var(--color-main);
}
.page span.disabled,
.page a.disabled,
.page div.disabled {
  display: none;
  pointer-events: none;
}
.page .prev i {
  margin-right: 10px;
}
.page .next i {
  margin-left: 10px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 40px;
  transition: all 0.3s ease;
}
header .logo {
  display: block;
  height: 86px;
  width: auto;
  transition: all 0.3s ease;
}
header .logo img {
  height: 100%;
  width: initial;
  object-fit: contain;
  display: block;
}
header .company-name span {
  transition: all 0.3s ease;
  font-family: "roboto-condensed";
  font-weight: 600;
  font-size: 1.8rem;
  display: block;
}
header .company-name span:nth-child(2) {
  font-size: 2.4rem;
  color: var(--color-main);
}
header .search {
  position: relative;
}
header .icon-search,
header .item-lang {
  background-color: #fff;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  cursor: pointer;
}
header .icon-search svg:nth-child(2),
header .item-lang svg:nth-child(2) {
  fill: var(--color-main);
}
header .icon-search:hover,
header .item-lang:hover {
  background-color: var(--color-main);
  color: #fff;
}
header .icon-search:hover svg path,
header .item-lang:hover svg path {
  stroke: #fff;
}
header .icon-search:hover svg:nth-child(2),
header .item-lang:hover svg:nth-child(2) {
  fill: #fff;
}
header .item-lang {
  color: var(--color-main);
}
header .icon-search svg:nth-child(2) {
  display: none;
}
header .icon-search.active svg:nth-child(1) {
  display: none;
}
header .icon-search.active svg:nth-child(2) {
  display: block;
}
header .hotline {
  display: flex;
  align-items: center;
  background: var(--color-gradient-main);
  padding: 10px 30px;
  border-radius: 40px;
  gap: 10px;
  color: #fff;
  font-size: var(--fs-menu);
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}
header .hotline:hover {
  background: #fff;
  border-color: var(--color-main-2);
  color: var(--color-main-2);
}
header .hotline:hover svg path {
  stroke: var(--color-main-2);
}
header.mini {
  background-color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
header.mini .logo {
  height: 60px;
}
header.mini .company-name span {
  font-size: 1.6rem;
}
header.mini .company-name span:nth-child(2) {
  font-size: 2.2rem;
}
@media (max-width: 1810px) {
  header {
    padding: 15px;
  }
  header .hotline {
    padding: 7px 15px;
  }
}
@media (max-width: 1600px) {
  header .company-name span {
    font-size: 1.4rem;
  }
  header .company-name span:nth-child(2) {
    font-size: 1.8rem;
  }
  header .logo {
    height: 60px;
  }
  header.mini .logo {
    height: 60px;
  }
  header.mini .company-name span {
    font-size: 1.4rem;
  }
  header.mini .company-name span:nth-child(2) {
    font-size: 1.8rem;
  }
}
@media (max-width: 1400px) {
  header {
    gap: 15px;
  }
  header .hotline {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
  }
  header .hotline span {
    display: none;
  }
}
@media (max-width: 991px) {
  header {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  header .company-name {
    flex: 1;
  }
  header .menu {
    top: 91px;
  }
  header.mini .menu {
    top: 72px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 5px 10px 5px;
    margin-top: 40px;
    gap: 0;
  }
  header:after {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background-color: var(--color-main);
  }
  header .search,
  header .language,
  header .hotline {
    position: fixed;
    top: 5px;
    z-index: 5;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
  }
  header .item-lang,
  header .icon-search {
    width: 30px;
    height: 30px;
  }
  header .item-lang.active, header .item-lang:hover,
  header .icon-search.active,
  header .icon-search:hover {
    color: var(--color-main);
    background-color: #fff;
  }
  header .item-lang.active svg:nth-child(2) path, header .item-lang:hover svg:nth-child(2) path,
  header .icon-search.active svg:nth-child(2) path,
  header .icon-search:hover svg:nth-child(2) path {
    fill: var(--color-main);
  }
  header .item-lang.active svg:nth-child(1) path, header .item-lang:hover svg:nth-child(1) path,
  header .icon-search.active svg:nth-child(1) path,
  header .icon-search:hover svg:nth-child(1) path {
    stroke: var(--color-main);
  }
  header .hotline {
    left: 15px;
  }
  header .language {
    right: 55px;
  }
  header .search {
    right: 15px;
  }
  header .logo {
    height: 50px;
  }
  header .company-name span {
    font-size: 1.1rem;
  }
  header .company-name span:nth-child(2) {
    font-size: 1.8rem;
  }
  header .menu {
    top: 100px;
  }
  header.mini {
    padding: 5px 10px;
    margin-top: 0;
  }
  header.mini .search,
  header.mini .language,
  header.mini .hotline {
    transform: translateY(-200%);
  }
  header.mini .menu {
    top: 60px;
  }
  header.mini .logo {
    height: 50px;
  }
  header.mini .company-name span {
    font-size: 1.1rem;
  }
  header.mini .company-name span:nth-child(2) {
    font-size: 1.8rem;
  }
}

.menu {
  padding-right: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex: 1;
  list-style: none;
}
.menu a {
  display: inline-block;
  height: 100%;
  font-weight: 600;
  font-size: var(--fs-menu);
}
.menu a.active {
  color: var(--color-main);
}
.menu a.active svg path {
  fill: var(--color-main);
}
.menu ul {
  list-style: none;
}
.menu .sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.menu .sub-menu:after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 20px;
}
.menu .sub-menu li {
  position: relative;
}
.menu .sub-menu li a {
  min-width: 150px;
  padding: 7px 15px;
  display: inline-block;
  border-bottom: 1px solid var(--color-border);
}
.menu .sub-menu li:last-child a {
  border-bottom: 0;
}
.menu .sub-menu-2 {
  position: absolute;
  top: 0;
  left: calc(100% + 1px);
  background-color: #fff;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.menu .sub-menu-2 li a {
  min-width: 150px;
  padding: 7px 15px;
  display: inline-block;
  border-bottom: 1px solid var(--color-border);
}
.menu .sub-menu-2 li:last-child a {
  border-bottom: 0;
}
.menu > li:last-child .sub-menu .sub-menu-2, .menu > li:nth-last-child(2) .sub-menu .sub-menu-2 {
  left: unset;
  right: calc(100% + 1px);
}
.menu > li:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.menu .sub-menu > li:hover .sub-menu-2 {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
@media (max-width: 1810px) {
  .menu {
    gap: 15px;
    padding-right: 0;
  }
}
@media (max-width: 1600px) {
  .menu a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1400px) {
  .menu {
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .menu > li > a {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .menu {
    transition: all 0.3s ease;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 350px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }
  .menu .collapsible-plus {
    height: 20px;
    width: 20px;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 10;
  }
  .menu .collapsible-plus:before, .menu .collapsible-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: #000;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  .menu .collapsible-plus:before {
    width: 11px;
    height: 1px;
    opacity: 1;
  }
  .menu .collapsible-plus:after {
    width: 1px;
    height: 11px;
  }
  .menu .collapsible-plus.active:before {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .menu .collapsible-plus.active:after {
    background-color: var(--color-hover);
  }
  .menu li {
    position: relative;
  }
  .menu > li a {
    display: block;
    text-align: left;
    padding: 10px 15px;
    border-top: 1px solid var(--color-border);
    font-size: 1.6rem;
  }
  .menu > li:first-child {
    display: none;
  }
  .menu .sub-menu {
    position: unset;
    transform: translateY(0);
    opacity: 1;
    transition: none;
    pointer-events: all;
    box-shadow: none;
    display: none;
  }
  .menu .sub-menu li a {
    width: 100%;
    display: block;
    padding-left: 30px;
    border-bottom: 0;
  }
  .menu .sub-menu-2 {
    position: unset;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
    transition: none;
    display: none;
  }
  .menu .sub-menu-2 li a {
    width: 100%;
    display: block;
    padding-left: 45px;
    border-bottom: 0;
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  .menu {
    width: 100%;
  }
}

.search-complete {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.search-complete.active {
  width: 250px;
  opacity: 1;
  pointer-events: auto;
}
.search-complete form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
}
.search-complete form input {
  width: 100%;
  height: 100%;
  padding-left: 15px;
}
.search-complete form button {
  top: 0;
  right: 0;
  position: absolute;
  width: 40px;
  height: 40px;
}
.search-complete form button:hover svg {
  fill: var(--color-main);
}

.slide-index {
  aspect-ratio: 1920/949;
  position: relative;
}
.slide-index:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
  z-index: 1;
}
.slide-index .item-slide-index {
  aspect-ratio: 1920/949;
}
@media (max-width: 767px) {
  .slide-index {
    margin-top: 100px;
  }
}

.nav-index {
  position: relative;
}
.nav-index .owl-nav {
  margin-top: 0;
}
.nav-index .owl-nav .owl-next,
.nav-index .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: 0 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px !important;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 6px;
}
.nav-index .owl-nav .owl-next svg,
.nav-index .owl-nav .owl-prev svg {
  width: 30px;
  height: 30px;
}
.nav-index .owl-nav .owl-next:hover,
.nav-index .owl-nav .owl-prev:hover {
  background: var(--color-main) !important;
}
.nav-index .owl-nav .owl-next {
  right: 15px;
  transform: translate(10px, -50%);
}
.nav-index .owl-nav .owl-prev {
  left: 15px;
  transform: translate(-10px, -50%);
}
.nav-index:hover .owl-nav .owl-next,
.nav-index:hover .owl-nav .owl-prev {
  transform: translate(0, -50%);
  opacity: 1;
}

.dot-index {
  position: relative;
}
.dot-index .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 0;
}
.dot-index .owl-dots .owl-dot.active span {
  background-color: var(--color-main);
}
.dot-index:hover .owl-dots {
  bottom: 15px;
  opacity: 1;
}

.about-index {
  position: relative;
  aspect-ratio: 1920/969;
}
@media (max-width: 991px) {
  .about-index {
    aspect-ratio: unset;
  }
}
.about-index .left {
  padding-top: var(--size-section);
  margin-left: 110px;
  width: 35%;
  position: relative;
  z-index: 5;
}
@media (max-width: 1500px) {
  .about-index .left {
    width: 40%;
  }
}
.about-index .left .detail-content {
  text-align: justify;
}
.about-index .right {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.about-index .right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-index .left {
    width: var(--w-container);
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
  }
  .about-index .right {
    position: unset;
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (max-width: 767px) {
  .about-index .left {
    margin-bottom: 15px;
  }
}

.list-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.list-detail .item {
  width: calc((100% - 50px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.list-detail .item .icon {
  width: 77px;
  height: 77px;
  margin-bottom: 15px;
  border-radius: 50%;
  background: var(--color-gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-detail .item .icon img {
  max-width: 60%;
  max-height: 60%;
  object-fit: contain;
  display: block;
}
.list-detail .item h3 {
  font-weight: 700;
  font-size: var(--fs-h6);
  margin-bottom: 5px;
}
@media (max-width: 1500px) {
  .list-detail {
    gap: 30px;
  }
  .list-detail .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 1400px) {
  .list-detail {
    gap: 15px;
  }
  .list-detail .item {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 991px) {
  .list-detail {
    gap: 30px;
  }
  .list-detail .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .list-detail {
    gap: 15px;
  }
  .list-detail .item {
    width: calc((100% - 15px) / 2);
    justify-content: flex-start;
  }
  .list-detail .item .icon {
    width: 60px;
    height: 60px;
  }
}

footer {
  background: url("../images/Group 1000001186.png") no-repeat;
  background-size: cover;
}
footer .container {
  display: flex;
}
footer .container .item-logo {
  width: 20%;
}
footer .container .item-logo .logo {
  display: flex;
  width: 200px;
  height: auto;
}
footer .container .item-logo .logo img {
  width: initial;
  height: initial;
  max-width: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
footer .container .item-info {
  width: 37%;
  padding-right: 100px;
  color: #fff;
}
footer .container .item-info h3 {
  font-size: var(--fs-h5);
}
footer .container .item-info a {
  color: #fff;
}
footer .container .item-info a:hover {
  color: var(--color-main-2);
}
footer .container .item-info p {
  display: flex;
  margin-bottom: 10px;
}
footer .container .item-info p .icon {
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .container .item-info p .text {
  width: calc(100% - 30px);
  padding-left: 5px;
}
footer .container .item-module {
  width: 18%;
  color: #fff;
  cursor: default;
  text-align: left;
  padding: 0;
}
footer .container .item-module h3 {
  font-size: var(--fs-h5);
}
footer .container .item-module a {
  color: #fff;
  text-transform: none;
  font-weight: 400;
}
footer .container .item-module a:hover {
  color: var(--color-main-2);
}
footer .container .item-module p {
  margin-bottom: 10px;
}
footer .container .item-module:hover {
  background: transparent;
}
footer .container .item-register {
  width: 25%;
  color: #fff;
}
footer .container .item-register h3 {
  font-size: var(--fs-h5);
}
footer .container .item-register a {
  color: #fff;
}
footer .container .item-register a:hover {
  color: var(--color-main-2);
}
@media (max-width: 1400px) {
  footer .container .item-info {
    padding-right: 50px;
  }
}
@media (max-width: 1200px) {
  footer .container .item-info {
    padding-right: 30px;
  }
  footer .container .item-logo .logo {
    width: 100%;
  }
  footer .container .item-ft {
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  footer .container {
    flex-wrap: wrap;
    gap: 15px;
  }
  footer .container .item-logo {
    order: 1;
  }
  footer .container .item-logo .logo {
    max-width: 200px;
  }
  footer .container .item-module {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  footer .container .item-module h3 {
    width: 100%;
    margin-bottom: 0;
  }
  footer .container .item-module p {
    width: calc((100% - 15px) / 2);
    margin-bottom: 0;
  }
  footer .container .item-info {
    order: 3;
  }
  footer .container .item-register {
    order: 4;
  }
  footer .container .item-ft {
    width: calc((100% - 15px) / 2);
  }
}
@media (max-width: 767px) {
  footer .container .item-ft {
    width: 100%;
  }
}

.list-social {
  display: flex;
  gap: 10px;
}
.list-social .it {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-social .it.main {
  border-color: var(--color-main);
}
.list-social .it.main svg path {
  fill: var(--color-main);
}
.list-social .it:hover.face {
  background-color: #0866ff;
  border-color: #0866ff;
}
.list-social .it:hover.youtube {
  background-color: #ff0000;
  border-color: #ff0000;
}
.list-social .it:hover.instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f09433", endColorstr="#bc1888",GradientType=1 );
}
.list-social .it:hover.tiktok {
  background-color: #fff;
  border-color: #fff;
}
.list-social .it:hover.tiktok.main {
  border-color: var(--color-main);
}
.list-social .it:hover.tiktok svg {
  fill: #111111;
  filter: drop-shadow(2px 0px 0px #fd3e3e) drop-shadow(-2px -2px 0px #4de8f4);
}
.list-social .it:hover.main svg path {
  fill: #fff;
}

#ReceiverEmailFrm {
  background-color: #fff;
  position: relative;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
}
#ReceiverEmailFrm .form-input {
  height: 100%;
  width: 100%;
  position: relative;
}
#ReceiverEmailFrm .form-input svg:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
#ReceiverEmailFrm input {
  height: 100%;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
#ReceiverEmailFrm button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scale-project {
  position: relative;
}
.scale-project .leaf-left {
  z-index: 1;
  top: -80%;
}
.scale-project .container {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}
@media (max-width: 1500px) {
  .scale-project .container {
    align-items: start;
  }
}
.scale-project .container .title {
  white-space: nowrap;
  margin-right: 50px;
}
@media (max-width: 1500px) {
  .scale-project .container .title {
    margin-right: 30px;
    padding-top: 10px;
  }
}
.scale-project .container .item {
  padding: 0 30px;
}
@media (max-width: 1500px) {
  .scale-project .container .item {
    padding: 0 15px;
  }
}
.scale-project .container .item .num {
  font-size: 50px;
  font-weight: 700;
  background: var(--color-gradient-main);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .scale-project .leaf-left {
    top: -20%;
  }
  .scale-project .container {
    flex-wrap: wrap;
    gap: 30px;
  }
  .scale-project .container .title {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  .scale-project .container .title br {
    display: none;
  }
  .scale-project .container .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .scale-project .leaf-left {
    top: 0;
  }
  .scale-project .leaf-right {
    top: 75px;
  }
  .scale-project .container {
    align-items: flex-start;
    gap: 15px;
  }
  .scale-project .container .item {
    width: calc((100% - 15px) / 2);
    padding: 0;
  }
}

.total-face {
  aspect-ratio: 1920/960;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 6;
}
@media (max-width: 991px) {
  .total-face {
    aspect-ratio: unset;
  }
}
.total-face > .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.total-face .img {
  height: auto;
}
.total-face .right {
  width: 40%;
  position: relative;
  z-index: 3;
  padding-right: 60px;
  color: #fff;
}
.total-face .right .list-detail .item {
  align-items: flex-start;
}
.total-face .right .list-detail .item .num {
  font-weight: 700;
  font-size: 2.9rem;
  background: var(--color-gradient-main-2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.total-face .right .list-module {
  display: flex;
  gap: 25px;
}
.total-face .right .list-module .item {
  width: calc((100% - 25px) / 2);
  text-align: center;
}
.total-face .right .list-module .item .img {
  margin-bottom: 15px;
  border-radius: 12px;
  position: relative;
  border: 2px solid #fff;
  aspect-ratio: 16/9;
}
.total-face .right .list-module .item .img .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 77px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #ffa428 0%, #ffc929 32%, #ff4d09 100%);
}
.total-face .right .list-module .item a:hover {
  color: var(--color-main-2);
}
@media (max-width: 991px) {
  .total-face {
    flex-direction: column-reverse;
  }
  .total-face .right {
    width: var(--w-container);
    padding: 0 15px;
    margin: 0 auto 15px;
  }
  .total-face .right .text-white a {
    color: var(--color-main);
  }
  .total-face .right .detail-content p {
    color: var(--color-text);
  }
  .total-face .right .list-detail .item,
  .total-face .right .list-detail .item p {
    color: var(--color-text);
  }
  .total-face .right .list-module .text-white,
  .total-face .right .list-module .text-white a {
    color: var(--color-text);
  }
  .total-face .right .list-detail .item .num {
    background: var(--color-gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .total-face > .img {
    position: static;
  }
}
@media (max-width: 767px) {
  .total-face .right .list-detail .item .num {
    font-size: 2rem;
  }
  .total-face .right .list-module {
    gap: 15px;
  }
  .total-face .right .list-module .item {
    width: calc((100% - 15px) / 2);
  }
  .total-face .right .list-module .item .img .icon {
    width: 50px;
    height: 50px;
  }
  .total-face .right .list-module .item .img .icon svg {
    width: 45px;
    height: 45px;
  }
}

.location-index {
  aspect-ratio: 1920/900;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .location-index {
    aspect-ratio: unset;
  }
}
.location-index > .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.location-index .left {
  position: relative;
  z-index: 5;
  padding-left: 110px;
  width: 40%;
}
@media (max-width: 1500px) {
  .location-index .left {
    width: 45%;
  }
}
@media (max-width: 991px) {
  .location-index {
    flex-direction: column-reverse;
  }
  .location-index > .img {
    position: static;
  }
  .location-index > .img img {
    object-position: right;
  }
  .location-index .left {
    width: var(--w-container);
    padding: 0 15px;
    margin: 0 auto 15px;
  }
}
@media (max-width: 767px) {
  .location-index > .img img {
    object-position: center;
  }
}

.list-address-hot {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.list-address-hot .item {
  width: calc((100% - 30px) / 2);
  display: flex;
  align-items: center;
}
.list-address-hot .item .img {
  width: 70px;
  height: 70px;
  position: relative;
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.list-address-hot .item .img img {
  border-radius: 50%;
}
.list-address-hot .item .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #ff8d07, #ffcfa5, #ff7700);
  z-index: -1;
}
.list-address-hot .item .text {
  width: calc(100% - 70px);
  padding-left: 15px;
}
.list-address-hot .item .text .num {
  background: linear-gradient(180deg, #ff8626 0%, #ff4d09 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.9rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .list-address-hot {
    gap: 15px;
  }
  .list-address-hot .item {
    width: calc((100% - 15px) / 2);
  }
  .list-address-hot .item .img {
    width: 50px;
    height: 50px;
  }
  .list-address-hot .item .text {
    width: calc(100% - 50px);
  }
  .list-address-hot .item .text .num {
    font-size: 2.4rem;
  }
}

.btn-main {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--color-gradient-main);
  padding: 10px 30px;
  border-radius: 40px;
  gap: 5px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-main .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-main:hover {
  background: #fff;
  color: var(--color-main-2);
  border-color: var(--color-main-2);
}
.btn-main:hover svg path {
  fill: var(--color-main-2);
}

.btn-main-3 {
  text-align: center;
  color: #fff;
  background: var(--color-gradient-main);
  padding: 10px 30px;
  border-radius: 6px;
  width: 100%;
  gap: 5px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-main-3 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-main-3:not(.no-hover) {
  cursor: pointer;
}
.btn-main-3:not(.no-hover):hover {
  background: #fff;
  color: var(--color-main-2);
  border-color: var(--color-main-2);
}
.btn-main-3:not(.no-hover):hover svg path {
  fill: var(--color-main-2);
}
.btn-main-3.w-auto {
  width: auto;
  display: inline-block;
}

.diverse-amenities {
  position: relative;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
.diverse-amenities .slide-diverse {
  width: 62%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1166/862;
}
.diverse-amenities .slide-diverse .item {
  aspect-ratio: 1166/862;
}
.diverse-amenities .slide-diverse-2 {
  width: calc(38% - 32px);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 658/405;
  position: relative;
}
.diverse-amenities .slide-diverse-2 .item {
  aspect-ratio: 658/405;
}
.diverse-amenities .info {
  position: absolute;
  top: 50px;
  right: 0;
  width: calc(38% - 32px);
  padding: 50px 150px 50px 50px;
}
@media (max-width: 1700px) {
  .diverse-amenities .info {
    padding: 50px;
  }
}
@media (max-width: 1600px) {
  .diverse-amenities .info {
    padding: 10px 50px 0 10px;
  }
}
.diverse-amenities .info .nav-slide {
  display: flex;
  align-items: center;
  gap: 10px;
}
.diverse-amenities .info .nav-slide .nav-next,
.diverse-amenities .info .nav-slide .nav-prev {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gradient-main);
  border-radius: 50%;
  border: 1px solid transparent;
}
.diverse-amenities .info .nav-slide .nav-next:hover,
.diverse-amenities .info .nav-slide .nav-prev:hover {
  border-color: var(--color-main-2);
  background: #fff;
}
.diverse-amenities .info .nav-slide .nav-next:hover svg path,
.diverse-amenities .info .nav-slide .nav-prev:hover svg path {
  stroke: var(--color-main-2);
}
@media (max-width: 991px) {
  .diverse-amenities {
    flex-wrap: wrap;
  }
  .diverse-amenities .info {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .diverse-amenities .info .nav-slide {
    justify-content: flex-end;
    position: absolute;
    bottom: -15px;
    right: calc((38% - 32px) / 2);
    transform: translate(50%, 100%);
  }
}
@media (max-width: 767px) {
  .diverse-amenities {
    padding: 15px;
    gap: 15px;
  }
  .diverse-amenities .info {
    top: 0;
    margin-bottom: 0;
  }
  .diverse-amenities .info .nav-slide .nav-next,
  .diverse-amenities .info .nav-slide .nav-prev {
    width: 40px;
    height: 40px;
  }
  .diverse-amenities .info .nav-slide .nav-next svg,
  .diverse-amenities .info .nav-slide .nav-prev svg {
    width: 60%;
    height: 60%;
  }
  .diverse-amenities .slide-diverse {
    border-radius: 6px;
  }
  .diverse-amenities .slide-diverse-2 {
    border-radius: 4px;
    width: calc(38% - 15px);
  }
}

.item-real-estate {
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.item-real-estate .img {
  border-radius: 12px;
  aspect-ratio: 340/246;
  height: auto;
}
.item-real-estate .info {
  padding: 20px;
}
.item-real-estate .info .top {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
@media (max-width: 1500px) {
  .item-real-estate .info .top {
    gap: 10px;
  }
}
.item-real-estate .info .top .ic {
  display: flex;
  align-items: center;
}
.item-real-estate .info .top .it {
  display: flex;
  gap: 5px;
  align-items: center;
}
.item-real-estate .info .top .it p {
  line-height: 1;
}
.item-real-estate .info h3 {
  margin-bottom: 15px;
}
.item-real-estate .info h3 a {
  font-size: var(--fs-h5);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-real-estate .info .add {
  display: flex;
}
.item-real-estate .info .add .ic {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-real-estate .info .add .txt {
  width: calc(100% - 20px);
  padding-left: 15px;
  min-height: 40px;
}

.nav-circle {
  position: relative;
}
.nav-circle .owl-nav {
  margin-top: 0;
}
.nav-circle .owl-next,
.nav-circle .owl-prev {
  position: absolute;
  top: 30%;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  margin: 0 !important;
}
.nav-circle .owl-next svg,
.nav-circle .owl-prev svg {
  width: 8px;
  height: 20px;
}
.nav-circle .owl-next {
  transform: translate(50%, -50%);
  right: 0;
}
.nav-circle .owl-prev {
  left: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .nav-circle .owl-next {
    transform: translate(0, -50%);
  }
  .nav-circle .owl-prev {
    transform: translate(0, -50%);
  }
}

.owl-dot-main .owl-dots {
  margin-top: 15px;
}
.owl-dot-main .owl-dot span {
  width: 12px !important;
  height: 12px !important;
  border: 1px solid var(--color-main);
  background: #fff !important;
}
.owl-dot-main .owl-dot.active span {
  background: var(--color-main) !important;
}

.real-estate {
  position: relative;
}
.real-estate .leaf-left-2 {
  top: calc(0px - var(--size-section));
}
.real-estate .container {
  position: relative;
  z-index: 2;
}

.news-index {
  background: url("../images/bg-news-index.webp");
  background-size: cover;
}

.list-grid-news-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 30px;
}
.list-grid-news-index .item:nth-child(1) {
  grid-area: 1/1/5/3;
}
.list-grid-news-index .item:nth-child(2) {
  grid-area: 1/3/2/5;
}
.list-grid-news-index .item:nth-child(3) {
  grid-area: 2/3/3/5;
}
.list-grid-news-index .item:nth-child(4) {
  grid-area: 3/3/4/5;
}
.list-grid-news-index .item:nth-child(5) {
  grid-area: 4/3/5/5;
}
@media (max-width: 991px) {
  .list-grid-news-index {
    display: block;
  }
  .list-grid-news-index .item:after {
    display: none;
  }
  .list-grid-news-index .item:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
  }
}

.item-news-index .img {
  aspect-ratio: 705/411;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}
.item-news-index .date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-news-index .date .ic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-news-index .info h3 a {
  font-size: var(--fs-h1);
}
.item-news-index.right {
  display: flex;
  position: relative;
}
.item-news-index.right:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  z-index: 1;
  border-bottom: 1px solid var(--color-border);
}
.item-news-index.right:last-child:after {
  display: none;
}
.item-news-index.right .img {
  aspect-ratio: 184/129;
  width: 184px;
  margin-bottom: 0;
}
.item-news-index.right .info {
  width: calc(100% - 184px);
  padding-left: 30px;
}
.item-news-index.right .info h3 {
  margin-bottom: 0;
}
.item-news-index.right .info h3 a {
  font-size: var(--fs-h5);
  font-weight: 600;
}
@media (max-width: 767px) {
  .item-news-index.right {
    display: block;
  }
  .item-news-index.right .img {
    width: 100%;
    margin-bottom: 15px;
  }
  .item-news-index.right .info {
    width: 100%;
    padding-left: 0;
  }
  .item-news-index.right .info h3 {
    margin-bottom: 0;
  }
}

.banner-content {
  aspect-ratio: 1920/570;
  position: relative;
}
.banner-content .item {
  width: 100%;
  height: 100%;
}
.banner-content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}
.banner-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
  z-index: 1;
}
.banner-content .title-banner {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  font-size: var(--fs-title);
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 767px) {
  .banner-content {
    margin-top: 100px;
  }
  .banner-content:before {
    display: none;
  }
  .banner-content .title-banner {
    bottom: 15px;
    width: 100%;
  }
}

.contact .container {
  display: flex;
  position: relative;
  z-index: 5;
}
.contact .container .right {
  width: 57%;
}
.contact .container .left {
  width: 43%;
}
@media (max-width: 767px) {
  .contact .container {
    flex-direction: column;
    gap: 15px;
  }
  .contact .container .right {
    width: 100%;
  }
  .contact .container .left {
    width: 100%;
  }
}

#SendContact {
  width: 100%;
  display: block;
}
#SendContact .box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#SendContact .box .form-input {
  width: calc((100% - 20px) / 2);
}
#SendContact .box .form-textarea {
  width: 100%;
}
#SendContact .box input,
#SendContact .box textarea {
  width: 100%;
  height: 100%;
  background: #ededed;
  border-radius: 12px;
}
#SendContact .box input {
  height: 46px;
  padding-left: 15px;
}
#SendContact .box textarea {
  padding-left: 15px;
  padding-top: 15px;
  height: 136px;
  resize: none;
}
#SendContact .btn-submit {
  border-radius: 12px;
  background: linear-gradient(180deg, #ff8c28 0%, #ff510c 100%);
  color: #fff;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 25px;
  gap: 10px;
  border: 1px solid #fff;
}
#SendContact .btn-submit .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
#SendContact .btn-submit:hover {
  border-color: #ff510c;
  background: #fff;
  color: #ff510c;
}
#SendContact .btn-submit:hover svg path {
  stroke: #ff510c;
}
@media (max-width: 767px) {
  #SendContact .box {
    gap: 15px;
  }
  #SendContact .box .form-input {
    width: 100%;
  }
}

.map {
  aspect-ratio: 1921/613;
}
.map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 991px) {
  .map {
    aspect-ratio: 16/10;
  }
}

.contact-info {
  padding-right: 50px;
}
.contact-info p {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}
.contact-info p svg {
  position: absolute;
  top: 0;
  height: 22px;
  left: 0;
}
.contact-info .social-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}
.contact-info .social-contact h2 {
  font-size: var(--fs-h6);
}
@media (max-width: 991px) {
  .contact-info {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .contact-info {
    padding-right: 0;
  }
  .contact-info .social-contact {
    margin-top: 15px;
    padding-top: 15px;
  }
}

.bg-min-left {
  position: relative;
}
.bg-min-left .leaf-left {
  width: 203px;
  top: 30px;
}

.list-recuiment-top {
  display: flex;
  gap: 100px;
  position: relative;
  z-index: 5;
}
.list-recuiment-top .item {
  width: calc((100% - 200px) / 3);
}
@media (max-width: 991px) {
  .list-recuiment-top {
    gap: 30px;
  }
  .list-recuiment-top .item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 767px) {
  .list-recuiment-top {
    gap: 15px;
    flex-wrap: wrap;
  }
  .list-recuiment-top .item {
    width: 100%;
  }
}

.item-recuiment-top {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.item-recuiment-top .icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(180deg, #ff8b27 0%, #ff4907 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 30px;
}
.item-recuiment-top .icon img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.item-recuiment-top h2 {
  font-size: var(--fs-h2);
}

.list-recuiment {
  overflow: auto;
}
.list-recuiment table {
  width: 100%;
  border-collapse: collapse;
}
.list-recuiment table thead {
  background: var(--color-main);
}
.list-recuiment table th {
  height: 66px;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  font-size: var(--fs-h5);
  white-space: nowrap;
}
.list-recuiment table th:first-child {
  text-align: left;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
}
@media (max-width: 991px) {
  .list-recuiment table th:first-child {
    min-width: 300px;
  }
}
.list-recuiment table th:last-child {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.list-recuiment table tbody tr td {
  height: 80px;
  padding: 15px 30px;
  text-align: center;
}
.list-recuiment table tbody tr td:first-child {
  text-align: left;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  font-size: var(--fs-h5);
  font-weight: 700;
}
.list-recuiment table tbody tr td:last-child {
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}
.list-recuiment table tbody tr td .btn-main-2 {
  white-space: nowrap;
}
.list-recuiment table tbody tr:nth-child(even) {
  background: #e5f3f9;
}

.btn-main-2 {
  padding: 10px 20px;
  border: 1px solid #ff4d09;
  color: #ff4d09;
  font-weight: 600;
  font-size: var(--fs-h6);
}
.btn-main-2.circle {
  border-radius: 40px;
}
.btn-main-2:hover {
  background: #ff4d09;
  color: #fff;
}

.like-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.like-social .duration {
  display: flex;
  align-items: center;
  gap: 15px;
}
.like-social .social {
  width: 130px;
  height: 20px;
  overflow: hidden;
}

.block-right-recuiment {
  background: #f1f1f1;
  padding: 30px;
  border-radius: 12px;
}
.block-right-recuiment .title {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-main);
}
.block-right-recuiment.no-bg {
  background: transparent;
  padding: 0;
}
@media (max-width: 991px) {
  .block-right-recuiment {
    padding: 15px;
  }
}

.layout-2 {
  display: flex;
}
.layout-2 .left {
  width: 70%;
  padding-right: 50px;
}
.layout-2 .right {
  width: 30%;
}
@media (max-width: 991px) {
  .layout-2 .left {
    width: 60%;
    padding-right: 30px;
  }
  .layout-2 .right {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .layout-2 {
    flex-wrap: wrap;
  }
  .layout-2 .left {
    width: 100%;
    padding-right: 0;
  }
  .layout-2 .right {
    width: 100%;
  }
}

.apply-form .form_contact input {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #cdcdcd;
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 400;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 7px;
  margin-bottom: 7px;
}
.apply-form .form_contact input::placeholder {
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 400;
}
.apply-form .form_contact #upload {
  display: none;
}
.apply-form .form_contact .file label {
  border-bottom: 1px solid #cdcdcd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  margin-bottom: 10px;
}
.apply-form .form_contact .file label .icon {
  background-color: var(--color-white);
  padding: 3px 10px;
  border: 1px solid #b5b5b5;
  border-radius: 5px;
}
.apply-form .form_contact .file #text {
  padding-left: 7px;
}
.apply-form .form_contact .note {
  font-size: 1.3rem;
}

.item-right-recuiment {
  display: flex;
  align-items: center;
}
.item-right-recuiment:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}
.item-right-recuiment .item-img {
  width: 30%;
  background: #fff;
  border: 1px solid var(--color-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
}
.item-right-recuiment .item-img img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
  display: block;
}
.item-right-recuiment .item-content {
  width: 70%;
  padding-left: 15px;
}
.item-right-recuiment .item-content .text a {
  font-size: var(--fs-h6);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  margin-bottom: 5px;
}

.list-news-hot {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.list-news-hot .item {
  width: calc((100% - 60px) / 3);
}
.list-news-hot .item .img {
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 12px;
}
.list-news-hot .item .date-time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list-news-hot .item:not(:first-child) .img {
  margin-bottom: 15px;
}
.list-news-hot .item:not(:first-child) .info .date-time {
  margin-bottom: 15px;
}
.list-news-hot .item:not(:first-child) .info h3 a {
  font-size: var(--fs-h5);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.list-news-hot .item:first-child {
  display: flex;
  width: 100%;
}
.list-news-hot .item:first-child .img,
.list-news-hot .item:first-child .info {
  width: 50%;
}
.list-news-hot .item:first-child .info {
  padding-left: 50px;
}
.list-news-hot .item:first-child .info h3 {
  margin-bottom: 15px;
}
.list-news-hot .item:first-child .info h3 a {
  font-size: var(--fs-h1);
  font-weight: 600;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.list-news-hot .item:first-child .info .btn-main-3 {
  padding: 5px 20px;
  border: 0;
  text-transform: none;
  margin-bottom: 30px;
  font-size: var(--fs-h2);
}
@media (max-width: 991px) {
  .list-news-hot {
    gap: 15px;
  }
  .list-news-hot .item {
    width: calc((100% - 30px) / 3);
  }
  .list-news-hot .item:first-child .img,
  .list-news-hot .item:first-child .info {
    width: 50%;
  }
  .list-news-hot .item:first-child .info {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .list-news-hot .item {
    width: 100%;
  }
  .list-news-hot .item:first-child {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
  }
  .list-news-hot .item:first-child .img,
  .list-news-hot .item:first-child .info {
    width: 100%;
  }
  .list-news-hot .item:first-child .info {
    padding-left: 0;
  }
  .list-news-hot .item:first-child .info .btn-main-3 {
    margin-bottom: 15px;
  }
}

.module-section .list-module {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.module-section .list-module .block {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.module-section .list-module .block a {
  font-size: var(--fs-h5);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.module-section .list-module .block a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  background: #4d4d4f;
}
.module-section .list-module .block a.active, .module-section .list-module .block a:hover {
  color: var(--color-main);
}
.module-section .list-module .block a.active:after, .module-section .list-module .block a:hover:after {
  background: var(--color-main);
}
@media (max-width: 767px) {
  .module-section .list-module {
    overflow: auto;
  }
  .module-section .list-module .block {
    justify-content: flex-start;
  }
  .module-section .list-module .block a {
    white-space: nowrap;
  }
}

.item-news-content {
  display: flex;
}
.item-news-content:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.item-news-content .img {
  width: 30%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  height: auto;
}
.item-news-content .info {
  width: 70%;
  padding-left: 38px;
}
.item-news-content .info h3 {
  margin-bottom: 15px;
}
.item-news-content .info h3 a {
  font-size: var(--fs-h3);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (max-width: 991px) {
  .item-news-content .info {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .item-news-content {
    flex-direction: column;
  }
  .item-news-content .img {
    width: 100%;
    margin-bottom: 15px;
  }
  .item-news-content .info {
    width: 100%;
    padding-left: 0;
  }
}

.date-time {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.news-detail h1 {
  font-size: var(--fs-title-min);
  font-weight: 600;
}
.news-detail .text-main {
  font-size: var(--fs-title-min-2);
}
.news-detail .fb-like {
  width: 113px;
  height: 23px;
  overflow: hidden;
}

.item-news-other {
  font-size: var(--fs-h6);
}
.item-news-other .img {
  aspect-ratio: 330/193;
  border-radius: 12px;
  margin-bottom: 15px;
}

.nav-circle-center {
  position: relative;
}
.nav-circle-center .owl-prev,
.nav-circle-center .owl-next {
  position: absolute;
  top: 23%;
  background: #fff !important;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.nav-circle-center .owl-prev:hover,
.nav-circle-center .owl-next:hover {
  background: var(--color-main);
}
.nav-circle-center .owl-prev {
  left: 0;
  transform: translateX(-50%);
}
.nav-circle-center .owl-next {
  right: 0;
  transform: translateX(50%);
}

.item-news-new {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
  margin-top: 15px;
}
.item-news-new .img {
  aspect-ratio: 16/9;
  width: 30%;
  border-radius: 9px;
}
.item-news-new h3 {
  display: block;
  width: 70%;
  padding-left: 20px;
}
.item-news-new h3 a {
  font-size: var(--fs-h6);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  font-weight: 400;
}

.list-3-item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.list-3-item .item {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 991px) {
  .list-3-item {
    gap: 15px;
  }
  .list-3-item .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .list-3-item .item {
    width: 100%;
  }
}

.item-project {
  border-radius: 12px;
  border: 1px solid #cdcdcd;
  background: #fff;
}
.item-project .img {
  height: auto;
  aspect-ratio: 453/263;
  border-radius: 12px 12px 0px 0px;
}
.item-project .info {
  padding: 30px;
}
.item-project h3 {
  margin-bottom: 15px;
}
.item-project h3 a {
  font-size: var(--fs-h5);
  font-weight: 600;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.item-project .btn-detail {
  margin-top: 15px;
}

.btn-detail {
  display: inline-block;
  color: #ff4d09;
  font-size: var(--fs-h6);
  font-weight: 600;
  border-bottom: 1px solid #ff4d09;
  text-transform: uppercase;
}

.project-other {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.breadcrumb {
  padding: 30px 0;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
  flex-wrap: wrap;
}
.breadcrumb ul li a {
  margin-right: 10px;
}
.breadcrumb ul li.active {
  color: var(--color-main);
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 15px 0;
  }
  .breadcrumb ul {
    gap: 10px;
  }
}

.mySwiper2 {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.mySwiper2 .next,
.mySwiper2 .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}
.mySwiper2 .next:hover,
.mySwiper2 .prev:hover {
  background: var(--color-main);
}
.mySwiper2 .next:hover svg path,
.mySwiper2 .prev:hover svg path {
  fill: #fff;
}
.mySwiper2 .next {
  right: 15px;
}
.mySwiper2 .prev {
  left: 15px;
}
.mySwiper2 .swiper-slide {
  width: 100%;
  height: 100%;
  aspect-ratio: 1000/568;
}

.mySwiper .swiper-slide {
  aspect-ratio: 187/106;
  border-radius: 4px;
  border: 1px solid #fff;
}
.mySwiper .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--color-main);
}

.project-detail .title-detail {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .project-detail .title-detail {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.project-detail .title-detail h1 {
  font-size: var(--fs-h1);
  margin-bottom: 15px;
}
.project-detail .title-detail .text {
  flex: 1;
}
.project-detail .title-detail .share {
  border-radius: 6px;
  border: 1px solid #ff4d09;
  background: #fff;
  width: 145px;
  height: 41.631px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .project-detail .title-detail {
    gap: 15px;
  }
  .project-detail .title-detail .text {
    flex: unset;
    width: 100%;
  }
  .project-detail .title-detail .share {
    width: 100px;
    height: 40px;
  }
}

.item-project-new {
  display: flex;
  align-items: center;
}
.item-project-new:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.item-project-new .img {
  width: 30%;
  aspect-ratio: 1;
  border-radius: 6px;
}
.item-project-new .info {
  width: 70%;
  padding-left: 15px;
}
.item-project-new .info .date-time {
  margin-bottom: 5px;
}
.item-project-new .info h3 a {
  font-size: var(--fs-h6);
  font-weight: 600;
}

.form-contact-right .text-main {
  font-size: var(--fs-h1);
  text-align: center;
}
.form-contact-right #SendContact .box input,
.form-contact-right #SendContact .box textarea {
  border-radius: 12px;
  border: 1px solid #c6c6c6;
  background: #fff;
}
.form-contact-right #SendContact .btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--color-main);
}
.form-contact-right #SendContact .btn-submit:hover {
  border-color: var(--color-main);
  color: var(--color-main);
  background: #fff;
}
.form-contact-right #SendContact .btn-submit:hover svg path {
  stroke: var(--color-main);
}

.list-4-item {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.list-4-item .item {
  width: calc((100% - 45px) / 4);
}
@media (max-width: 991px) {
  .list-4-item .item {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 767px) {
  .list-4-item .item {
    width: 100%;
  }
}

.form-search {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}
.form-search form {
  display: flex;
  gap: 15px;
}
.form-search form .select {
  flex: 1;
  border-radius: 8px;
  border: 1px solid #cdcdcd;
  background: #f9fafb;
  height: 52px;
  position: relative;
}
.form-search form .select svg {
  position: absolute;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}
.form-search form .select svg:first-child {
  left: 15px;
}
.form-search form .select svg:nth-child(3) {
  right: 15px;
}
.form-search form .select select {
  width: 100%;
  height: 100%;
  padding-left: 45px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-search form .btn-submit {
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8625 0%, #ff4f0b 100%);
}
.form-search form .btn-submit button {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: var(--fs-h6);
}
.form-search form .btn-submit:hover {
  background: #fff;
}
.form-search form .btn-submit:hover button {
  color: #ff4f0b;
}
.form-search form .btn-submit:hover button svg path {
  fill: #fff;
  stroke: #ff4f0b;
}
@media (max-width: 767px) {
  .form-search form {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-search form .select {
    width: 100%;
    flex: unset;
  }
}

.list-characteristic {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .list-characteristic {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .list-characteristic {
    gap: 10px;
  }
}

.item-characteristic {
  width: calc((100% - 20px) / 2);
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .item-characteristic {
    width: 100%;
  }
}
.item-characteristic .icon {
  display: flex;
  align-items: center;
  gap: 15px;
}
.item-characteristic .icon svg {
  width: 20px;
}

.list-module-about {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 70px;
  z-index: 10;
}
@media (max-width: 767px) {
  .list-module-about {
    top: 60px;
    overflow-x: auto;
    justify-content: flex-start;
  }
}

.item-module {
  padding: 20px 30px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 991px) {
  .item-module {
    padding: 10px 15px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .item-module {
    white-space: nowrap;
  }
}
.item-module:hover, .item-module.active {
  background: var(--color-main);
  color: #fff;
}

.about-1 .container {
  display: flex;
}
.about-1 .container .img {
  border-radius: 12px;
}
.about-1 .container .left {
  width: 46%;
}
.about-1 .container .right {
  width: 54%;
  padding-left: 100px;
}
.about-1.right .container {
  flex-direction: row-reverse;
}
.about-1.right .container .left {
  width: 54%;
  padding-left: 100px;
}
.about-1.right .container .right {
  width: 46%;
  padding-left: 0;
}
@media (max-width: 991px) {
  .about-1 .container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-1 .container .left {
    width: 100%;
  }
  .about-1 .container .right {
    width: 100%;
    padding-left: 0;
  }
  .about-1.right .container .left {
    width: 100%;
    padding-left: 0;
  }
  .about-1.right .container .right {
    width: 100%;
  }
}

.bg-about {
  background: #f1f1f1;
}

.item-team .img {
  aspect-ratio: 324/420;
  height: auto;
  margin-bottom: 15px;
  border-radius: 12px;
}
.item-team .text h3 {
  color: var(--color-main);
  font-size: var(--fs-h5);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.item-team .text .detail-content {
  text-align: center;
}

.item-achievement {
  position: relative;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 5px;
}
.item-achievement .img {
  aspect-ratio: 386/288;
  border-radius: 12px;
  margin-bottom: 30px;
}
.item-achievement .img img {
  object-fit: contain;
  max-height: 100%;
}
@media (max-width: 991px) {
  .item-achievement .img {
    margin-bottom: 15px;
  }
}
.item-achievement h3 {
  font-size: var(--fs-h6);
  text-align: center;
  font-weight: 600;
}

.result-search .item {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}
.result-search .item .img {
  width: 20%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-search .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.result-search .item .right {
  width: 80%;
  padding-left: 30px;
}
.result-search .item:last-child {
  border-bottom: 0;
}
.result-search .item .module {
  color: #fff;
  background-color: var(--color-main);
  padding: 2px 10px;
  border-radius: 5px;
  margin-right: 10px;
  display: inline-block;
  white-space: nowrap;
}
.result-search .item h3 a {
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.result-search .item h3:hover a {
  color: var(--color-main);
}
.result-search .item .time {
  font-size: 13px;
  color: var(--color-main);
  font-style: italic;
  margin: 5px 0;
  display: flex;
  align-items: center;
}
.result-search .item .time svg {
  margin-right: 10px;
  fill: var(--color-main);
}
.result-search .item ._desc {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
@media (max-width: 767px) {
  .result-search .item {
    flex-direction: column;
  }
  .result-search .item .img {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 15px;
  }
  .result-search .item .right {
    padding: 0;
    width: 100%;
  }
}

.popup-video {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s linear;
}
.popup-video .overlay-popup-video {
  position: absolute;
  z-index: 11;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.popup-video .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  width: 70%;
  aspect-ratio: 16/9;
}
.popup-video .wrapper .icon-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popup-video .wrapper .icon-close svg {
  fill: var(--color-white);
}
.popup-video .wrapper iframe,
.popup-video .wrapper video,
.popup-video .wrapper .video {
  width: 100%;
  height: 100%;
  display: block;
}
.popup-video.active {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 767px) {
  .popup-video .wrapper {
    width: 100%;
  }
}

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