@charset "UTF-8";
/* Root */
:root {
  --desktop_padding: 9.375vw;
  --header-height: 86px;
}

@media screen and (max-width: 1440px) {
  :root {
    --desktop_padding: 3rem;
    --header-height: 66px;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --desktop_padding: 1rem;
  }
}
/* Sử dụng mixin trong truy vấn phương tiện */
@media (max-width: 720px) {
  .subheading {
    /* subheading */
    font-size: 1.25vw; /* 24px at 1920px screen width */
    letter-spacing: unset;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem; /* Minimum size for subheadings */
  }
}
@media (min-width: 1920px) {
  .subheading {
    /* subheading */
    font-size: 1.25vw; /* 24px at 1920px screen width */
    letter-spacing: unset;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem; /* Maximum size for subheadings */
  }
  .sub-title {
    /* subtitle */
    font-size: 1.67vw; /* 32px at 1920px screen width */
    letter-spacing: unset;
    margin-bottom: 0.75rem;
    font-weight: 400;
    font-size: 2rem; /* 32px at 1920px screen width */
  }
}
@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ping {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes upFade {
  0% {
    opacity: 0;
    top: 0%;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: -50%;
  }
}
@keyframes upFade {
  0% {
    opacity: 0;
    top: 0%;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: -50%;
  }
}
@-webkit-keyframes zoominImg {
  0% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
    opacity: 1;
  }
}
@keyframes zoominImg {
  0% {
    opacity: 0.7;
  }
  100% {
    transform: scale3d(1.3, 1.3, 1.3);
    --webkit-transform: scale3d(1.3, 1.3, 1.3);
    opacity: 1;
  }
}
@-webkit-keyframes zoomOutImg {
  0% {
    opacity: 0.7;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOutImg {
  0% {
    opacity: 0.7;
    transform: scale3d(1.3, 1.3, 1.3);
    --webkit-transform: scale3d(1.3, 1.3, 1.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomOutRightImg {
  0% {
    opacity: 0.7;
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomOutRightImg {
  0% {
    opacity: 0.7;
    transform: scale3d(2, 2, 2);
    --webkit-transform: scale3d(2, 2, 2);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDownImg {
  0% {
    opacity: 0.7;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }
}
@keyframes fadeInDownImg {
  0% {
    opacity: 0.7;
    transform: translate3d(0, -100%, 0);
    --webkit-transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: scale3d(1.2, 1.2, 1.2);
    --webkit-transform: scale3d(1.2, 1.2, 1.2);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
    --webkit-transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
    --webkit-transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
    --webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes scroll-mouse {
  from {
    transform: translateX(-50%) translateY(0);
    --webkit-transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(30px);
    --webkit-transform: translateX(-50%) translateY(30px);
  }
}
@keyframes scroll-mouse {
  from {
    transform: translateX(-50%) translateY(0);
    --webkit-transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(30px);
    --webkit-transform: translateX(-50%) translateY(30px);
  }
}
@keyframes blur-in {
  0% {
    filter: blur(12px) opacity(0%);
  }
  100% {
    filter: blur(0) opacity(1);
  }
}
@-webkit-keyframes blur-in {
  0% {
    filter: blur(12px) opacity(0%);
  }
  100% {
    filter: blur(0) opacity(1);
  }
}
@keyframes blur-out {
  0% {
    filter: blur(0) opacity(1);
  }
  100% {
    filter: blur(12px) opacity(0%);
  }
}
@-webkit-keyframes blur-out {
  0% {
    filter: blur(0) opacity(1);
  }
  100% {
    filter: blur(12px) opacity(0%);
  }
}
.section-banner {
  width: 100vw;
  position: relative;
}
.section-banner .list-banner-carousel .item .h2{
  font-family: "SVN-Megante";
}
.section-banner .list-banner-carousel {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.section-banner .list-banner-carousel .item {
  position: relative;
}
.section-banner .list-banner-carousel .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.588) 0%, rgba(255, 255, 255, 0) 80%);
  background-position: center;
}
.section-banner .list-banner-carousel .item .item-image {
  width: 100vw;
  height: 100vh;
}
.section-banner .list-banner-carousel .item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-banner .list-banner-carousel .item .item-title {
  position: absolute;
  z-index: 10;
  color: #fff;
  bottom: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  max-height: 25rem;
  padding: 3.5rem 0rem 0rem;
  left: 50%;
  transform: translateX(-50%);
  --webkit-transform: translateX(-50%);
  max-width: 70%;
}
.section-banner .list-banner-carousel .item.has-pattern .item-image::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./../img/background/has-pattern.png);
  background-size: cover;
  animation: upFade infinite 5s;
  background-position: center;
}
.section-banner .list-banner-carousel .slick-dots {
  display: flex;
  justify-content: center;
  gap: 2.75rem;
  bottom: 9.5rem;
}
.section-banner .list-banner-carousel .slick-dots li {
  cursor: unset;
}
.section-banner .list-banner-carousel .slick-dots li button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  overflow: hidden;
}
.section-banner .list-banner-carousel .slick-dots li button::before {
  content: "";
}
.section-banner .list-banner-carousel .slick-dots li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2.75rem;
  height: 1px;
  background: aliceblue;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  --webkit-transform: translate(100%, -50%);
}
.section-banner .list-banner-carousel .slick-dots li.slick-active button::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --webkit-transform: translate(-50%, -50%);
}
.section-banner .list-banner-carousel .slick-arrow {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.section-banner .list-banner-carousel .slick-arrow svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --webkit-transform: translate(-50%, -50%);
}
.section-banner .list-banner-carousel .slick-arrow svg path {
  transition: all 0.5s ease-in-out;
}
.section-banner .list-banner-carousel .slick-arrow.slick-next-style-1 {
  right: 4rem;
}
.section-banner .list-banner-carousel .slick-arrow.slick-prev-style-1 {
  left: 4rem;
  z-index: 10;
}
.section-banner .list-banner-carousel .slick-arrow:hover {
  background-color: rgb(178, 157, 114);
}
.section-banner .list-banner-carousel .slick-arrow:hover svg path {
  fill: rgb(2, 74, 43);
}
.section-banner .section-banner-icon {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  --webkit-transform: translateX(-50%);
  width: max-content;
  color: #fff;
  font-weight: 100;
  -webkit-animation: scroll-mouse 1.5s;
  animation: scroll-mouse 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.section-banner .section-banner-certificates {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section-banner .section-banner-certificates * {
  height: 100%;
}

.section-symbol-of-pride p.disc {
  max-width: 1000px;
  margin: 0 auto;
}
.section-symbol-of-pride #nav-oriental-square .map-ping {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.section-symbol-of-pride #nav-oriental-square .map-ping svg {
  width: 100%;
  height: 100%;
}
.section-symbol-of-pride #nav-oriental-square .map-ping .ping-dot {
  animation: ping 2s infinite;
  filter: blur(3px);
}
.section-symbol-of-pride #nav-image-map {
  background-color: #093f30;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper {
  display: flex;
  align-items: center;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .image-map {
  width: auto;
  height: auto;
  aspect-ratio: 1082/856;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .image-map .map-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .image-map .map-dots.active {
  opacity: 1;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .image-map .map-dots.active circle {
  animation: rotate 6s ease-in-out 1s infinite;
  transform-origin: center;
  --webkit-transform-origin: center;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .distance-map {
  flex-grow: 1;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .distance-map .test-note-map {
  position: relative;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .distance-map .test-note-map img {
  position: relative;
  z-index: 10;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .distance-map .test-note-map svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .distance-map .test-note-map svg .item-distance {
  transition: all 0.5s ease-in-out;
}
.section-symbol-of-pride #nav-image-map .nav-image-map-wrapper .distance-map .test-note-map svg .item-distance.active {
  fill: #fff;
}
.section-symbol-of-pride .list-tabs nav {
  width: max-content;
  margin: 0 auto;
}
.section-symbol-of-pride .list-tabs nav .nav-tabs {
  gap: 2rem;
}
.section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link {
  min-width: 15rem;
  height: 3.5rem;
  border-bottom: 1.5px solid rgb(2, 74, 43);
  transition: all 0.1s ease-in-out;
  position: relative;
}
.section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link::after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  clip-path: polygon(6px 0%, 100% 0%, 100% 100%, 0% 100%);
  background-color: rgb(2, 74, 43);
  height: 0px;
  transition: all 0.1s ease-in-out;
}
.section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link.active, .section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link:hover {
  color: rgb(2, 74, 43);
}
.section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link.active::after, .section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link:hover::after {
  height: 2px;
}
.section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link.active {
  /* subheading */
  font-size: 1.25vw; /* 24px at 1920px screen width */
  letter-spacing: unset;
  margin-bottom: 0.75rem;
  font-weight: 700;
  margin-bottom: 0;
}
.section-symbol-of-pride #nav-profile svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-symbol-of-pride #nav-profile svg path {
  fill: transparent; /* Vùng bên trong */
  stroke: transparent;
}
.section-symbol-of-pride #nav-profile svg rect {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.section-symbol-of-pride #nav-profile svg rect.highlight {
  opacity: 1;
}

.section-project-overview .list-project-overview {
  position: relative;
}
.section-project-overview .list-project-overview .overview h2 {
  margin-bottom: 3rem;
}
.section-project-overview .list-project-overview .item.sustainable-value h2, .section-project-overview .list-project-overview .item.pioneering-standards h2 {
  font-size: 2.8vw;
}
.section-project-overview .list-project-overview .item.sustainable-value .subheading, .section-project-overview .list-project-overview .item.pioneering-standards .subheading {
  font-weight: 400;
}
.section-project-overview .list-project-overview .item.sustainable-value .image-side, .section-project-overview .list-project-overview .item.pioneering-standards .image-side {
  width: 60%;
  left: unset;
  right: 0;
}
.section-project-overview .list-project-overview .item.sustainable-value .certificate-photo, .section-project-overview .list-project-overview .item.pioneering-standards .certificate-photo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-project-overview .list-project-overview .item.sustainable-value .certificate-photo img, .section-project-overview .list-project-overview .item.pioneering-standards .certificate-photo img {
  width: 25%;
}
.section-project-overview .list-project-overview .item.sustainable-value .certificate-photo p, .section-project-overview .list-project-overview .item.pioneering-standards .certificate-photo p {
  font-weight: 300;
}
.section-project-overview .list-project-overview .item.sustainable-value .award-photo img, .section-project-overview .list-project-overview .item.pioneering-standards .award-photo img {
  max-width: 75%;
}
.section-project-overview .list-project-overview .item .img-chung-chi {
  width: auto;
  height: auto;
  object-fit: contain;
  margin-top: 1rem;
  max-height: 100px;
}
.section-project-overview .list-project-overview .slick-arrow {
  position: absolute;
  bottom: 4rem;
}
.section-project-overview .list-project-overview .slick-arrow.slick-next-style-2 {
  left: calc(var(--desktop_padding) + 3rem + 2rem + 3rem + 2rem);
  z-index: 10;
}
.section-project-overview .list-project-overview .slick-arrow.slick-prev-style-2 {
  left: var(--desktop_padding);
  z-index: 10;
}
.section-project-overview .list-project-overview .slick-dots {
  text-align: left;
  padding-left: calc(var(--desktop_padding) + 3rem + 2rem);
  padding-bottom: 4rem;
  height: max-content;
}
.section-project-overview .list-project-overview .slick-dots li {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* subheading */
  font-size: 1.25vw; /* 24px at 1920px screen width */
  letter-spacing: unset;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-weight: 400;
  display: none;
}
.section-project-overview .list-project-overview .slick-dots li.slick-active {
  display: block;
  letter-spacing: 0.1em;
  color: rgb(178, 157, 114);
  margin-bottom: 0;
  line-height: 3rem;
  width: 3rem;
  text-align: center;
}
.section-project-overview .worthy-utilities .list-detail-2 {
  margin-top: 0.5rem;
}

.map-side-note{
  margin-left: 23%;
  margin-top: 1.5rem;
  font-size: 70%;
}

.section-area-allocation .area-map {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.section-area-allocation .area-map h2 {
  margin-bottom: 1.5rem;
}
.section-area-allocation .area-map .detail-side {
  width: 42%;
}
.section-area-allocation .area-map .detail-side .item .item-img img {
  cursor: pointer;
}
.section-area-allocation .area-map .detail-side .item[floor-detail=tum] .item-img::after {
  display: none;
}
.section-area-allocation .area-map .detail-side .item * {
  font-family: "SVN-Lato";
}
.section-area-allocation .area-map .detail-side .item .item-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.section-area-allocation .area-map .detail-side .item .item-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-area-allocation .area-map .detail-side .item .item-detail * {
  /* subheading */
  font-size: 1.25vw; /* 24px at 1920px screen width */
  letter-spacing: unset;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-weight: 400;
  color: #1e1e1e;
}
.section-area-allocation .area-map .detail-side .item .item-detail p {
  margin-bottom: 0;
}
.section-area-allocation .area-map .detail-side .item .item-detail ul {
  margin-bottom: 0;
}
.section-area-allocation .area-map .detail-side .item .item-detail ul li {
  list-style-image: url(./../img/icons/ul-style-circle.svg);
  padding-left: 1rem;
  line-height: 1.6;
}
.section-area-allocation .area-map .detail-side .item .item-detail ul li ::marker {
  margin-right: 1rem;
}
.section-area-allocation .area-map .detail-side .item .item-img {
  margin-bottom: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: end;
}
.section-area-allocation .area-map .detail-side .item .item-img img {
  width: 100%;
  height: 100%;
}
.section-area-allocation .area-map .detail-side .item .item-img::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  right: 2rem;
  width: 3.875rem;
  height: auto;
  aspect-ratio: 62/64;
  background-image: url(./../img/icons/compass.svg);
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions button {
  background-color: transparent;
  height: 3rem;
  width: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80%;
  border: unset;
  color: #757575;
  border-bottom: 1.5px solid #757575;
  gap: 0.625rem;
  position: relative;
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions button::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background-size: contain;
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions button::after {
  content: "";
  width: 100%;
  height: 0;
  background-color: rgb(2, 74, 43);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  transition: all 0.2s ease-in-out;
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions button:hover::after {
  height: 2.5px;
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions button.btn-360::before {
  background-image: url(./../img/icons/360-button.svg);
}
.section-area-allocation .area-map .detail-side .item .item-footer .btn-actions button.btn-gallery::before {
  background-image: url(./../img/icons/image-button.svg);
}
.section-area-allocation .area-map .detail-side .item .item-footer .note {
  color: #757575;
  line-height: 1.4;
}
.section-area-allocation .area-map .item {
  display: none;
}
.section-area-allocation .area-map .item.active {
  display: block;
}
.section-area-allocation .map-side {
  flex-grow: 1;
  max-width: 52.5rem;
  position: relative;
  height: auto;
  aspect-ratio: 841/829;
}
.section-area-allocation .map-side img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.section-area-allocation .map-side svg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-area-allocation .map-side svg rect:not([data-disable]),
.section-area-allocation .map-side svg path:not([data-disable]) {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.section-area-allocation .map-side svg rect:not([data-disable]):hover, .section-area-allocation .map-side svg rect:not([data-disable]).active,
.section-area-allocation .map-side svg path:not([data-disable]):hover,
.section-area-allocation .map-side svg path:not([data-disable]).active {
  opacity: 0.4;
}
.section-area-allocation .floor-gallery {
  display: none;
}

.section-osi-towers-goal img {
  width: 100%;
  object-fit: cover;
}
.section-osi-towers-goal .list-goals-banner {
  z-index: 2;
}
.section-osi-towers-goal .list-goals-banner .item {
  width: 100%;
  height: max-content;
  overflow: hidden;
  position: relative;
}
.section-osi-towers-goal .list-goals-banner .item img {
  opacity: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/668;
  object-fit: contain;
  transition: all 1s ease-in-out !important;
  object-fit: cover;
  object-position: center 100%;
}
.section-osi-towers-goal .list-goals-banner .slick-slide.slick-active img {
  opacity: 1;
  object-position: center 90%;
}
.section-osi-towers-goal .list-goals {
  margin-top: -5px;
  z-index: 1;
}
.section-osi-towers-goal .list-goals .goals-item .img {
  width: max-content;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
.section-osi-towers-goal .list-goals .goals-item .img img {
  width: 6.375rem;
  height: auto;
  aspect-ratio: 1/1;
}
.section-osi-towers-goal .list-goals .goals-item .content .title {
  font-size: 80%;
  color: rgb(178, 157, 114);
  max-width: 10rem;
  text-align: center;
}
.section-osi-towers-goal .list-goals .slick-list {
  overflow: visible;
}
.section-osi-towers-goal .list-goals .slick-track {
  width: max-content !important;
}
.section-osi-towers-goal .list-goals .slick-track::before {
  content: "";
  display: block;
  width: var(--current-width); /* Chiều rộng dựa trên giá trị biến */
  height: 7px; /* Chiều cao tùy chỉnh */
  background: linear-gradient(90deg, #b29d72 0%, #faecc8 32%, #b29d72 82%, #b29d72 100%);
  position: absolute;
  top: -1.125rem;
  z-index: 10;
  left: var(--current-left); /* Vị trí left của slick-current */
  transition: all 1s ease-in-out;
}
.section-osi-towers-goal .list-goals .slick-slider {
  margin: 0 -4.25rem;
}
.section-osi-towers-goal .list-goals .slick-slide {
  padding: 0px;
  text-align: center;
  margin-right: 4.25rem;
  margin-left: 4.25rem;
  width: max-content !important;
}
.section-osi-towers-goal .list-goals-content .item-goals-content {
  color: rgb(178, 157, 114);
  text-align: center;
}
.section-osi-towers-goal .list-goals-content .item-goals-content p {
  max-width: 1440px;
  margin: 0 auto;
}

.section-design-ideas * {
  color: rgb(178, 157, 114);
}
.section-design-ideas .slick-slider {
  margin: 0 -15px;
}
.section-design-ideas .slick-slide {
  padding: 0px;
  text-align: center;
  margin-right: 15px;
  margin-left: 15px;
}
.section-design-ideas .list-design-ideas {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.section-design-ideas .list-design-ideas:hover {
  opacity: 1;
}

.section-news h2 {
  color: rgb(178, 157, 114);
}

.section-contact-us {
  position: relative;
}
.section-contact-us .wave-fade-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./../img/background/contact-us-pattern.gif");
  background-size: cover; /* Adjusts to cover the entire div */
  background-repeat: no-repeat;
  background-position: 0 0;
  z-index: 1;
  opacity: 0.4;
}
.section-contact-us .container-fluid {
  display: flex;
  gap: 1.5625rem;
}
.section-contact-us .container-fluid .side-form-contact-us {
  z-index: 10;
  width: 50%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border: 2px solid rgb(178, 157, 114);
}
.section-contact-us .container-fluid .side-form-contact-us .wrapper {
  max-width: 31.5rem;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  color: rgb(178, 157, 114);
}
.section-contact-us .container-fluid .side-form-contact-us .wrapper .form-contact-us .form-group {
  flex-grow: 1;
}
.section-contact-us .container-fluid .side-vendors {
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 50%;
}
.section-contact-us .container-fluid .side-vendors .wrapper {
  max-width: 31.5rem;
  margin: 0 auto;
}
.section-contact-us .container-fluid .side-vendors .wrapper h2 {
  font-size: 3.5rem;
}
.section-contact-us .container-fluid .side-vendors .wrapper .list-vendors {
  display: flex;
  justify-content: space-between;
}
.section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item {
  width: max-content;
}
.section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item .logo {
  width: 100%;
  max-width: 10.75rem;
}
.section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item .logo img {
  width: 100%;
  object-fit: contain;
}
.section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item .title {
  font-weight: 600;
}


@media screen and (min-width: 1921px) {
  .section-contact-us .container-fluid .side-vendors .wrapper {
    max-width: unset;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper .list-vendors {
    gap: 2rem;
  }
  .section-osi-towers-goal .list-goals-content .item-goals-content p {
    max-width: unset;
  }
  .section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link.active {
    font-size: 1.25rem;
  }
  .section-project-overview .list-project-overview .item.sustainable-value h2,
  .section-project-overview .list-project-overview .item.pioneering-standards h2 {
    max-width: unset;
  }
  .section-area-allocation .area-map .detail-side .item .item-detail * {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1440px) {
  .section-project-overview .list-project-overview .overview h2 {
    margin-bottom: 1rem;
  }
  .section-project-overview .list-project-overview .slick-dots {
    padding-bottom: 2rem;
  }
  .section-project-overview .list-project-overview .slick-arrow {
    bottom: 2rem;
  }
  .section-project-overview .worthy-utilities h2 br {
    display: none;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1024px) {
  .section-area-allocation .area-map .detail-side .item .item-title {
    font-size: 2rem;
  }
  .section-area-allocation .area-map .detail-side .item .item-detail * {
    font-size: 1rem;
  }
  .section-osi-towers-goal .list-goals .goals-item .content .title {
    font-size: 1rem;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper h2 {
    font-size: 3vw;
  }
  .section-area-allocation .area-map .detail-side .item .item-footer .note{
    font-size: 1vw;
    text-align: justify;
  }
}
@media screen and (max-width: 1400px) {
  .section-banner .list-banner-carousel .slick-dots li button {
    width: 2rem;
    height: 2rem;
  }
}


@media screen and (max-width: 1200px) {
  .section-banner .list-banner-carousel .item .h2 {
    font-size: 4.7vw;
    padding: 0 0.5rem;
  }
  .section-banner .list-banner-carousel .slick-dots li button {
    width: 2rem;
    height: 2rem;
  }
  .section-banner .list-banner-carousel .slick-arrow {
    width: 2rem;
    height: 2rem;
  }
  .section-banner .list-banner-carousel .slick-arrow svg {
    width: 1rem;
    height: 1rem;
  }
  .section-osi-towers-goal .list-goals .goals-item .content .title {
    max-width: 6rem;
  }
  .section-osi-towers-goal .list-goals .goals-item .img img {
    width: 5rem;
  }
  .section-osi-towers-goal .list-goals .slick-slide {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper h2 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1025px) {
  .section-banner {
    margin-top: var(--header-height);
  }
  .section-banner .list-banner-carousel {
    height: auto;
    aspect-ratio: 1920/1024;
  }
  .section-banner .list-banner-carousel .item .item-image {
    height: auto;
    aspect-ratio: 1920/1024;
  }
  .section-banner .list-banner-carousel .item .item-title {
    padding: 0;
    height: max-content;
    bottom: 3rem;
    transform: translateY(-50%) translateX(-50%);
    --webkit-transform: translateY(-50%) translateX(-50%);
  }
  .section-banner .list-banner-carousel .slick-dots {
    bottom: 2rem;
  }
  .section-banner .list-banner-carousel .slick-dots li button {
    width: 1rem;
    height: 1rem;
  }
  .section-banner .list-banner-carousel .slick-dots li.slick-active button::before {
    width: 0.3rem;
    height: 0.3rem;
  }
  .section-banner .list-banner-carousel .slick-arrow.slick-next-style-1 {
    right: var(--desktop_padding);
  }
  .section-banner .list-banner-carousel .slick-arrow.slick-prev-style-1 {
    left: var(--desktop_padding);
  }
  .section-banner .section-banner-icon {
    display: none;
  }
  .section-project-overview .list-project-overview .item .img-chung-chi {
    max-height: 180px;
  }
  .section-project-overview .list-project-overview .item.sustainable-value .certificate-photo p, .section-project-overview .list-project-overview .item.pioneering-standards .certificate-photo ,.section-project-overview .list-project-overview .sustainable-value p.font-size-normal{
    font-size: 0.7rem;
  }

}
@media screen and (max-width: 992px) {
  .section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link {
    min-width: 10rem;
    font-size: 1rem;
  }
  .section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link.active {
    font-size: 1rem;
  }
  .slide-style-left-above .wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .slide-style-left-above .wrapper .text-side,
  .slide-style-left-above .wrapper .image-side {
    height: max-content;
    min-height: unset;
    max-height: 100vh;
  }
  .slide-style-left-above .wrapper .text-side {
    order: 1;
  }
  .slide-style-left-above .wrapper .text-side h2,
  .slide-style-left-above .wrapper .text-side .sub-title {
    text-align: center;
  }
  .slide-style-left-above .wrapper .image-side {
    position: static;
    order: 0;
    height: auto;
    width: 100%;
    aspect-ratio: 1920/1024;
  }
  .slide-style-left-above .wrapper .slide-style-left-above .wrapper .text-side::before {
    background-image: unset;
  }
  .section-project-overview .list-project-overview .slick-dots {
    padding-bottom: 1rem;
    padding-left: calc(var(--desktop_padding) + 2rem + 2rem);
  }
  .section-project-overview .list-project-overview .slick-dots li {
    font-size: 1rem;
  }
  .section-project-overview .list-project-overview .slick-track {
    background-image: url(./../img/background/dark-green.jpg);
  }
  .section-project-overview .list-project-overview .item.sustainable-value .image-side,
  .section-project-overview .list-project-overview .item.pioneering-standards .image-side {
    width: 100%;
  }
  .section-project-overview .list-project-overview .sustainable-value .list-detail img,
  .section-project-overview .list-project-overview .pioneering-standards .list-detail img {
    max-width: 500px;
    margin: 0 auto;
  }
  .section-project-overview .list-project-overview .item.sustainable-value h2,
  .section-project-overview .list-project-overview .item.pioneering-standards h2 {
    font-size: 2.7rem;
  }
  .slide-style-left-above .wrapper {
    grid-template-columns: 1fr;
  }
  .section-area-allocation .area-map {
    flex-direction: column-reverse;
    align-items: center;
  }
  .section-area-allocation .area-map .map-side {
    max-width: 550px;
  }
  .section-area-allocation .area-map .detail-side {
    width: 100%;
  }
  .section-area-allocation .area-map .detail-side .item .item-title {
    margin-bottom: 1rem;
    text-align: center;
  }
  .section-area-allocation .area-map .detail-side .item .item-detail {
    gap: 1rem;
  }
  .section-area-allocation .area-map .detail-side .item .item-detail * {
    font-size: 1rem;
    width: max-content;
    margin: 0 auto;
  }
  .section-area-allocation .area-map .detail-side .item .item-img {
    max-width: 500px;
    margin: 0 auto;
  }
  .section-area-allocation .area-map .detail-side .item .item-footer .btn-actions {
    justify-content: center;
  }
  .section-design-ideas .list-design-ideas {
    opacity: 1 !important;
  }
  .section-contact-us .container-fluid {
    flex-direction: column-reverse;
  }
  .section-contact-us .container-fluid .side-form-contact-us,
  .section-contact-us .container-fluid .side-vendors {
    width: 100%;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper {
    max-width: unset;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper h2 {
    font-size: 2.7rem;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .section-banner .list-banner-carousel .item::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.588) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .section-banner .list-banner-carousel .item .item-title {
    bottom: 50%;
    transform: translateY(50%) translateX(-50%);
    --webkit-transform: translateY(50%) translateX(-50%);
  }
  .section-banner .list-banner-carousel .item .item-title .h2 {
    font-size: 6vw;
    text-shadow: 2px 0px rgb(2, 74, 43);
  }
  .section-banner .list-banner-carousel .item .item-title .subheading {
    font-size: 2.8vw;
  }
  .section-banner .list-banner-carousel .slick-arrow {
    width: 1rem;
    height: 1rem;
    display: none;
  }
  .section-banner .list-banner-carousel .slick-arrow svg {
    width: 0.5rem;
    height: 0.5rem;
  }
  .section-banner-icon {
    display: none;
  }
  .section-symbol-of-pride .list-tabs nav {
    width: 100%;
  }
  .section-symbol-of-pride .list-tabs nav .nav-tabs {
    gap: 10px;
    justify-content: space-between;
  }
  .section-symbol-of-pride .list-tabs nav .nav-tabs .nav-link {
    min-width: unset;
    width: max-content;
    padding: unset;
    font-size: 0.9rem;
  }
  .section-symbol-of-pride #nav-image-map .nav-image-map-wrapper {
    flex-direction: column;
  }
  .section-project-overview .list-project-overview .slick-track {
    padding-bottom: 2rem;
  }
  .section-project-overview .list-project-overview .item .img-chung-chi {
    width: 75%;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
  }
  .section-project-overview .list-project-overview .item-overview {
    margin-bottom: 1rem;
  }
  .section-project-overview .worthy-utilities h2 br {
    display: block;
  }
  .section-osi-towers-goal .list-goals .slick-list {
    padding: 0 var(--desktop_padding) !important;
  }
  .section-osi-towers-goal .list-goals .slick-slide {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .section-osi-towers-goal .list-goals .goals-item .content .title {
    font-size: 0.8rem;
  }
  .section-osi-towers-goal .list-goals-banner .item img {
    aspect-ratio: 1920/1024;
  }
  .section-osi-towers-goal .list-goals-content .item-goals-content h3 {
    line-height: 1.6;
    font-size: 4.1vw;
  }
  .section-osi-towers-goal .list-goals-content .item-goals-content p {
    text-align: justify;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper h2 {
    font-size: 7vw;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper .list-vendors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item {
    width: 100%;
    height: 100%;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item h3 {
    font-size: 4vw;
    text-align: center;
  }
  .section-contact-us .container-fluid .side-vendors .wrapper .list-vendors .item .logo {
    max-width: 150px;
    margin: 0 auto;
  }
  .section-area-allocation .container-fluid > h2 {
    margin-bottom: 2rem;
  }
  .slide-style-left-above .wrapper .text-side h2 {
    font-size: 7.5vw;
    text-wrap: nowrap;
  }
  .slide-style-left-above .wrapper .text-side .sub-title {
    font-size: 5vw;
  }
  .slide-style-left-above .wrapper .text-side {
    padding-bottom: 3rem;
  }
  .section-project-overview .list-project-overview .item.sustainable-value h2,
  .section-project-overview .list-project-overview .item.pioneering-standards h2 {
    font-size: 6vw;
  }
  .list-news .item-news .title h3 {
    font-size: 1rem;
  }
  .list-news .item-news .description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .list-news .item-news .btn-news-readmore {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .list-news.list-news-mobile .item-news > div {
    padding-bottom: 0;
  }
}