@charset "UTF-8";
/* Root */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
: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;
  }
}
@font-face {
  font-family: "SVN-Lato";
  src: url("./../fonts/Lato/Lato-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "SVN-Lato";
  src: url("./../fonts/Lato/Lato-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "SVN-Lato";
  src: url("./../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "SVN-Lato";
  src: url("./../fonts/Lato/Lato-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "SVN-Lato";
  src: url("./../fonts/Lato/Lato-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "SVN-Megante";
  src: url("./../fonts/SVN-Megante/SVN-Megante.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@-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%);
  }
}
/* 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 */
  }
}
/* Base font sizes */
body {
  font-size: 1.25vw; /* 20px at 1920px screen width */
  color: rgb(2, 74, 43);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-family: "SVN-Lato";
  max-width: 100vw;
  overflow-x: hidden;
  background-image: url(./../img/background/light-green-gradient.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

main {
  max-width: 100vw;
  overflow-x: hidden;
}

.body-small {
  font-size: 0.73vw; /* 14px at 1920px screen width */
}

a {
  text-decoration: unset;
  color: rgb(2, 74, 43);
}

h1 {
  font-size: 3.75vw; /* 72px at 1920px screen width */
  letter-spacing: unset;
}

h2 {
  font-size: 3.33vw; /* 64px at 1920px screen width */
  letter-spacing: unset;
  font-family: "SVN-Megante";
}

h2.small {
  font-size: 2.34375vw; /* 45px at 1920px screen width */
}

h2.middle {
  font-size: 2.8645833vw; /* 55px at 1920px screen width */
}

h3,
.subheading {
  /* subheading */
  font-size: 1.25vw; /* 24px at 1920px screen width */
  letter-spacing: unset;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

h4 {
  font-size: 2rem;
  font-family: "SVN-Megante";
}

.sub-title {
  /* subtitle */
  font-size: 1.67vw; /* 32px at 1920px screen width */
  letter-spacing: unset;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.font-size-sm {
  font-size: 70%;
}

.font-size-normal {
  font-size: 80%;
}

.text-green {
  color: rgb(2, 74, 43) !important;
}

.pt-48 {
  padding-top: 3rem;
}

.pb-48 {
  padding-bottom: 3rem;
}

.pt-76 {
  padding-top: 4.75rem;
}

.pb-76 {
  padding-bottom: 4.75rem;
}

.pt-18 {
  padding-top: 1.125rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pt-60 {
  padding-top: 3.75rem;
}

.pb-60 {
  padding-bottom: 3.75rem;
}

.pt-64 {
  padding-top: 4rem;
}

.pb-90 {
  padding-bottom: 5.625rem;
}

.pt-112 {
  padding-top: 7.5rem;
}

.pb-180 {
  padding-bottom: 11.25rem;
}

.pt-104 {
  padding-top: 6.5rem;
}

.pb-104 {
  padding-bottom: 6.5rem;
}

.mb-70 {
  margin-bottom: 4.375rem;
}

.mb-72 {
  margin-bottom: 4.5rem;
}

.mb-44 {
  margin-bottom: 2.75rem;
}

.bg-light-green {
  background-image: url(./../img/background/light-green-gradient.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
}

.bg-dark-green {
  background-image: url(./../img/background/dark-green.jpg);
  background-size: 100% 100%;
  background-repeat: repeat-y;
}

.bg-light-dark-green {
  background-image: url(./../img/background/dark-green-lighter.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
}

/* Xử lý Scroll bar */
body * {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}

body *::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.container-1096 {
  width: 100%;
  max-width: 1096px;
  padding: 0 2rem;
  margin: 0 auto;
}

/* Media queries to set minimum and maximum sizes */
@media (max-width: 720px) {
  body {
    font-size: 1rem; /* Minimum size for body text */
  }
  .body-small {
    font-size: 0.75rem; /* Minimum size for smaller body text */
  }
  h1 {
    font-size: 2.25rem; /* Minimum size for h1 */
  }
  h2 {
    font-size: 2rem; /* Minimum size for h2 */
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 1.25rem; /* Maximum size for body text */
  }
  .body-small {
    font-size: 0.875; /* Maximum size for smaller body text */
  }
  h1 {
    font-size: 4.5rem; /* Maximum size for h1 */
  }
  h2 {
    font-size: 4.5rem; /* Maximum size for h2 */
  }
  h2.small {
    font-size: 2.8125rem; /* 45px at 1920px screen width */
  }
  h2.middle {
    font-size: 3.4375rem; /* 55px at 1920px screen width */
  }
  h3,
  .subheading {
    font-size: 1.5rem;
  }
  :root {
    --bs-nav-link-font-size: 1.125rem;
  }
}    
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 2vw;
    }
}
@media screen and (max-width: 1440px) and (min-width: 1024px) {
  h2 {
    font-size: 2.7vw;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 1rem;
  }
  h2.small {
    font-size: 2vw;
  }
  h3,
  .subheading {
    font-size: 1.2vw;
  }
  body {
    font-size: 1rem;
  }
  .sub-title {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 1440px) {
  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    padding-right: var(--desktop_padding);
    padding-left: var(--desktop_padding);
  }
}
/* Media queries to set minimum and maximum sizes */
@media (max-width: 992px) {
  h2,
  h2.middle {
    font-size: 2.7rem; /* Minimum size for h2 */
  }
  h3,
  .subheading {
    font-size: 1.2rem;
  }
  .font-size-normal {
    font-size: 0.8rem;
  }
  .font-size-sm {
    font-size: 0.7rem;
  }
  body {
    font-size: 1rem;
  }
  h2.small {
    font-size: 2.2rem;
  }
  .container-1096 {
    padding: 0 1rem;
  }
  .body-small {
    font-size: 0.8rem;
  }
}
/* Media queries to set minimum and maximum sizes */
@media (max-width: 576px) {
  h2,
  h2.middle,
  h2.small {
    font-size: 7vw; /* Minimum size for h2 */
  }
  h3,
  .subheading {
    font-size: 5vw;
  }
  .font-size-normal {
    font-size: 0.8rem;
  }
  .font-size-sm {
    font-size: 0.7rem;
  }
  body {
    font-size: 1rem;
  }
  .pb-180 {
    padding-bottom: 5rem;
  }
}
.nav-item.dropdown .dropdown-toggle::after {
  content: ""; /* Đặt content thành rỗng */
  display: inline-block; /* Để có thể sử dụng width và height */
  width: 0.625rem; /* Kích thước của biểu tượng */
  height: 0.625rem; /* Kích thước của biểu tượng */
  background-image: url("./../img/icons/div_after.svg"); /* Đường dẫn đến biểu tượng của bạn */
  background-size: contain; /* Điều chỉnh kích thước hình ảnh */
  background-repeat: no-repeat; /* Ngăn hình ảnh lặp lại */
  margin-left: 0.55rem; /* Thêm khoảng cách nếu cần */
  vertical-align: middle; /* Căn giữa với văn bản */
}

.nav-link {
  color: rgb(2, 74, 43);
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  max-width: 100vw;
  transition: all 0.8s ease-in-out;
  --webkit-transition: all 0.8s ease-in-out;
}
#header .navbar {
  min-height: var(--header-height);
  background-color: transparent !important;
}
#header .navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./../img/background/light-green-gradient.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
  z-index: 1;
  opacity: 0.85;
}
#header .navbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
}
#header .navbar .container-fluid {
  z-index: 2;
}
#header .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  background-image: url(./../img/background/light-green-gradient.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
}
#header .dropdown-menu * {
  font-size: 1rem;
  color: rgb(2, 74, 43);
}
#header .dropdown-menu a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.5s linear;
}
#header .dropdown-menu a:hover {
  background-color: rgba(2, 74, 43, 0.8);
  color: #fff;
}

#footer hr {
  height: 0.5rem;
  width: 100%;
  background-color: rgb(178, 157, 114);
  margin: 0;
  opacity: 1;
  border: unset;
}
#footer .container-fluid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
#footer .container-fluid * {
  color: rgb(178, 157, 114);
}
#footer .container-fluid .left-side {
  width: 50%;
  max-width: 39.75rem;
}
#footer .container-fluid .left-side .hotline {
  display: flex;
  gap: 3rem;
}
#footer .container-fluid .left-side .hotline .item {
  width: 50%;
}
#footer .container-fluid .left-side .hotline .item img {
  width: 100%;
}
#footer .container-fluid .left-side .list-menu {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}
#footer .container-fluid .left-side .list-menu nav {
  font-size: 80%;
  width: 33%;
}
#footer .container-fluid .left-side .list-menu nav p {
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
#footer .container-fluid .left-side .list-menu nav ul {
  list-style: none;
  padding-left: 0;
}
#footer .container-fluid .left-side .list-menu nav ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
#footer .container-fluid .left-side .list-menu nav ul li a {
  transition: all 0.3s ease-in-out;
}
#footer .container-fluid .left-side .list-menu nav ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
#footer .container-fluid .right-side {
  width: 50%;
  max-width: 39.75rem;
}
#footer .container-fluid .right-side .logo {
  width: 100%;
  margin-bottom: 2.5rem;
}
#footer .container-fluid .right-side .logo img {
  width: 100%;
}
#footer .container-fluid .right-side .list-social-network {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.625rem;
}
#footer .container-fluid .right-side .list-social-network a {
  width: 41px;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}
#footer .container-fluid .right-side .list-social-network a img {
  width: 100%;
  object-fit: contain;
}
#footer .container-fluid .right-side .address {
  text-align: right;
  max-width: 30rem;
  font-size: 80%;
  margin-left: auto;
  line-height: 1.6;
}

.noteTxt {
  flex-grow: 1;
}
.noteTxt p {
  flex-grow: 1;
  font-size: 1rem;
  color: rgba(178, 157, 114, 0.8);
  text-align: right;
  font-weight: 100;
  margin-bottom: 0rem;
}
.noteTxt p span {
  font-weight: 700;
  opacity: 1;
  color: rgb(178, 157, 114);
}

.slide-style-left-above .wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  position: relative;
}
.slide-style-left-above .wrapper > * {
  color: rgb(178, 157, 114);
}
.slide-style-left-above .wrapper .text-side {
  padding: 5.25rem 4.5em 4rem var(--desktop_padding);
  height: 100vh;
  min-height: 1024px;
  position: relative;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.slide-style-left-above .wrapper .text-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./../img/background/dark-green.jpg);
  background-size: cover;
  z-index: -1;
  opacity: 0.9;
}
.slide-style-left-above .wrapper .text-side .list-detail {
  text-align: left;
  overflow: scroll;
}
.slide-style-left-above .wrapper .image-side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 1024px;
}
.slide-style-left-above .wrapper .image-side img {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}
.slide-style-left-above .wrapper .image-side img.active {
  display: block;
}
.slide-style-left-above .wrapper .image-side img.active.zoominImg {
  animation: zoominImg 2s forwards;
}
.slide-style-left-above .wrapper .image-side img.active.zoomOutImg {
  animation: zoomOutImg 2s forwards;
}
.slide-style-left-above .wrapper .image-side img.active.zoomOutRightImg {
  animation: zoomOutRightImg 2s forwards;
}
.slide-style-left-above .wrapper .image-side img.active.fadeInDownImg {
  animation: fadeInDownImg 2s forwards;
}
.slide-style-left-above .wrapper .sub-title {
  text-transform: uppercase;
}
.slide-style-left-above.sustainable-value .wrapper .text-side::before,
.slide-style-left-above.pioneering-standards .wrapper .text-side::before {
  opacity: 0.95;
}
.slide-style-left-above.sustainable-value .wrapper .font-size-sm,
.slide-style-left-above.pioneering-standards .wrapper .font-size-sm {
  line-height: 1.4;
  font-style: italic;
}

.item-overview {
  margin-bottom: 1.5rem;
}
.item-overview .title {
  margin-bottom: 0.375rem;
  font-size: 80%;
  line-height: 1.6;
  font-weight: 300;
}
.item-overview sup {
  font-size: 0.9rem;
}

.accordion * {
  color: rgb(178, 157, 114);
}
.accordion .accordion-body {
  font-size: 80%;
  line-height: 1.6;
  font-weight: 300;
}
.accordion .accordion-body ul {
  list-style-position: inside;
  padding: 0;
}

.accordion-button,
.worthy-utilities-item {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0.75rem 0;
}
.accordion-button::after,
.worthy-utilities-item::after {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(./../img/icons/arrow-down.svg);
}
.accordion-button .icon,
.worthy-utilities-item .icon {
  margin-right: 1.5rem;
}
.accordion-button span,
.accordion-button h3,
.worthy-utilities-item span,
.worthy-utilities-item .h3 {
  margin-bottom: 0 !important;
  /* subheading */
  font-size: 1.25vw; /* 24px at 1920px screen width */
  letter-spacing: unset;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: "SVN-Lato";
  font-weight: 600;
}
.accordion-button h3,
.worthy-utilities-item .h3 {
  background: linear-gradient(
    to right,
    #ceac6b,
    #e8d3a3 25%,
    #faecc8 40%,
    #ceac6b 71%,
    #ceac6b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 450px; /* Điều chỉnh độ dài gradient theo pixel */
}

.slick-arrow-style-2 {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid transparent;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slick-arrow-style-2:hover {
  border: 1px solid #fff;
}

.card-item .img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.card-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-item .content .title {
  text-align: left;
  margin-top: 2rem;
  font-weight: 700;
}

.list-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem;
  margin-bottom: 5.375rem;
  margin-bottom: 0;
}
.list-news.list-news-mobile {
  display: block;
  margin-bottom: 0;
  /* the slides */
  /* the parent */
}
.list-news.list-news-mobile .slick-slide {
  margin: 0 0.5rem;
}
.list-news.list-news-mobile .slick-list {
  margin: 0 -0.5rem;
}
.list-news.list-news-mobile .item-news > div {
  width: 100%;
  padding: 1rem;
  height: max-content;
  position: absolute;
  left: 0;
  bottom: 1rem;
}
.list-news .item-news {
  width: 100%;
  position: relative;
  height: auto;
  aspect-ratio: 372/537;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
}
.list-news .item-news * {
  position: relative;
  z-index: 5;
  color: rgb(206, 172, 107);
}
.list-news .item-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  background: rgb(1, 20, 12);
  background: -moz-linear-gradient(
    180deg,
    rgba(1, 20, 12, 0) 48%,
    rgba(2, 74, 43, 0.8506276261) 72%
  );
  background: -webkit-linear-gradient(
    180deg,
    rgba(1, 20, 12, 0) 48%,
    rgba(2, 74, 43, 0.8506276261) 72%
  );
  background: linear-gradient(
    180deg,
    rgba(1, 20, 12, 0) 48%,
    rgba(2, 74, 43, 0.8506276261) 72%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#01140c",endColorstr="#024a2b",GradientType=1);
}
.list-news .item-news img {
  position: absolute;
  top: 0;
  left: 0;
  object-position: center center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.list-news .item-news .title h3,
.list-news .item-news .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.list-news .item-news .description {
  margin-bottom: 2rem;
}
.list-news .item-news .title {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: 1rem;
  transition: all 0.5s;
}
.list-news .item-news .title h3 {
  text-transform: uppercase;
}
.list-news .item-news .meta {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.7s ease-in;
  opacity: 0;
}
.list-news .item-news .meta * {
  color: #d9d9d9;
  font-weight: 300;
}
.list-news .item-news .meta .icon {
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(./../img/icons/clock.svg);
  background-size: cover;
}
.list-news .item-news .btn-news-readmore {
  padding: 0.5rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgb(206, 172, 107);
  width: max-content;
  margin-top: 0.5rem;
}
.list-news .item-news .btn-news-readmore::after {
  content: "";
  width: 7px;
  height: 12px;
  background-image: url(./../img/icons/arrow-right.svg);
  background-size: contain;
  margin-top: 2px;
}
.list-news .item-news .news-bottom {
  opacity: 0;
  transition: all 0.5s ease-out;
}
.list-news .item-news:hover .title {
  bottom: 100%;
  left: 0;
}
.list-news .item-news:hover .meta,
.list-news .item-news:hover .news-bottom {
  opacity: 1;
}
.list-news .item-news:hover::before {
  backdrop-filter: blur(2px);
}
.list-news .item-news:hover img {
  filter: brightness(0.3);
}

.list-news-simple {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.list-news-simple .item-news-simple {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0.75rem 1.5rem 0;
  border-bottom: 0.5px solid #222222;
  align-items: center;
}
.list-news-simple .item-news-simple .post-thumbnail {
  width: 40%;
  overflow: hidden;
  flex-shrink: 0;
  height: max-content;
}
.list-news-simple .item-news-simple .post-thumbnail img {
  width: 100%;
  height: auto;
  object-fit:cover;
  aspect-ratio: 372/247;
  transition: all 0.3s ease-in-out;
}
.list-news-simple .item-news-simple .post-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
.list-news-simple .item-news-simple .post-content .title {
  font-size: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
}
.list-news-simple .item-news-simple .post-content .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.6;
}
.list-news-simple .item-news-simple .post-content .meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.list-news-simple .item-news-simple .post-content .meta * {
  transition: all 0.3s ease-in-out;
}
.list-news-simple .item-news-simple .post-content .meta .date {
  display: flex;
  gap: 2px;
  align-items: center;
  color: rgb(2, 74, 43);
}
.list-news-simple .item-news-simple .post-content .meta .date .icon {
  margin-bottom: 1px;
}
.list-news-simple .item-news-simple .post-content .meta .date .icon svg {
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1/1;
}
.list-news-simple .item-news-simple:hover .post-thumbnail img {
  transform: scale(1.1);
}
.list-news-simple .item-news-simple:hover .post-content * {
  color: rgb(2, 74, 43) !important;
}

.list-news-lastest .item-news-simple {
  padding: 0.75rem 0;
}
.list-news-lastest .item-news-simple .post-content {
  gap: 0.375rem;
}
.list-news-lastest .item-news-simple .post-content .title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
form input,
form select,
form textarea {
  font-family: "Inter", sans-serif;
  font-size: 1.1875rem;
  color: #757575;
  background-color: transparent;
  border: unset;
  width: 100%;
}
form input:focus-visible,
form select:focus-visible,
form textarea:focus-visible {
  outline: unset;
}
form input,
form textarea {
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgb(178, 157, 114);
}
form button[type="submit"] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem;
  background-color: rgb(178, 157, 114);
  color: rgb(2, 74, 43);
  font-size: 80%;
  border: unset;
  transition: all 0.2s ease-in-out;
}
form button[type="submit"]::after {
  content: "";
  width: 15px;
  height: 12px;
  background-image: url(./../img/icons/submit-arrow.svg);
}
form button[type="submit"]:hover {
  background-color: rgb(206, 172, 107);
}
form .form-group .error {
  color: rgb(173, 25, 25);
}

.fancybox__backdrop {
  background: rgba(0, 17, 10, 0.9);
}

#right-sidebar {
  content: "";
  position: fixed;
  bottom: 1rem;
  right: 3%;
  z-index: 1000;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: end;
}
#right-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 0.5px rgb(2, 74, 43) solid;
  transition: all 0.5s ease-in-out;
}
#right-sidebar a:hover {
  background-color: rgba(206, 172, 107, 0.8);
}

.blurIn {
  animation-name: blur-in;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.blurOut {
  animation-name: blur-out;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.pagination {
  gap: 1.5rem;
}
.pagination li .page-link {
  background-color: transparent;
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1/1;
  font-size: 1rem;
  font-family: "SVN-Megante";
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgb(2, 74, 43);
  font-weight: 400;
  color: rgb(2, 74, 43);
}
.pagination li .page-link:hover {
  border: 2px solid rgb(2, 74, 43);
}
.pagination li.active .page-link {
  border: 2px solid rgb(2, 74, 43);
}
.pagination li.disabled:not(.pagination-button) .page-link {
  border: unset;
  align-items: end;
}
.pagination li.pagination-button.disabled {
  display: none;
}
.pagination li.pagination-button .page-link {
  border: unset;
}
.pagination li.pagination-button .page-link:focus {
  box-shadow: unset;
}

@media screen and (min-width: 1921px) {
  .accordion-button span,
  .accordion-button h3,
  .worthy-utilities-item span,
  .worthy-utilities-item .h3 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1441px) {
  .slide-style-left-above .wrapper .text-side {
    padding-bottom: 112px;
  }
}
@media screen and (max-width: 1440px) {
  #footer .container-fluid .right-side .logo {
    max-width: 400px;
    margin-left: auto;
  }
  .slide-style-left-above .wrapper .text-side,
  .slide-style-left-above .wrapper .image-side {
    min-height: 720px;
    max-height: 900px;
  }
  .slide-style-left-above .wrapper .text-side {
    padding-right: 2rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
  #right-sidebar {
    right: 0.5rem;
  }
  .slick-arrow-style-2:hover {
    border: unset;
  }
  .slick-arrow-style-2 svg {
    width: 10px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 1024px) {
  form input,
  form select,
  form textarea {
    font-size: 1rem;
  }
  .list-news .item-news .title {
    margin-bottom: 0;
  }
  #footer .container-fluid .left-side .list-menu nav p {
    font-size: 0.875rem;
  }
  .accordion-button span,
  .accordion-button h3,
  .worthy-utilities-item span,
  .worthy-utilities-item .h3 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .list-news .item-news {
    padding: 1rem;
  }
  .list-news-simple .item-news-simple .post-content .title {
    font-size: 1.2rem;
  }
  .list-news-simple .item-news-simple .post-content .description {
    font-size: 0.8rem;
  }
  .list-news-simple .item-news-simple .post-content .meta * {
    font-size: 0.7rem;
  }
  .list-news-lastest .item-news-simple .post-content .title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 992px) {
  #header .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    padding: 1rem var(--desktop_padding);
  }
  #header .navbar-collapse ul {
    margin-top: 1.5rem;
  }
  #header .navbar-collapse ul li {
    border-bottom: 1px solid gainsboro;
  }
  #header .navbar-collapse ul .nav-link {
    font-size: 1rem;
    text-transform: uppercase;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #header .navbar-collapse ul .dropdown-menu {
    margin-top: 0;
    margin-bottom: 1rem;
    background-image: unset;
  }
  #header .navbar-collapse ul .dropdown-menu li a {
    border-radius: unset;
  }
  #header .navbar-collapse .close-menu {
    position: absolute;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0.5rem;
    left: var(--desktop_padding);
  }
  #header .navbar-collapse .close-menu svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  #header .navbar-collapse .close-menu svg path {
    fill: rgb(2, 74, 43);
  }
  /* Biểu tượng mặc định khi đóng */
  .navbar-toggler-icon.toggler-closed::before {
    content: "☰"; /* Dấu = */
  }
  /* Biểu tượng khi mở */
  .navbar-toggler-icon.toggler-open::before {
    content: "×"; /* Dấu x */
  }
  .item-overview .title {
    font-size: 1rem;
  }
  .slick-arrow-style-2 {
    width: 1rem;
    height: 1rem;
  }
  .accordion-button span,
  .accordion-button h3,
  .worthy-utilities-item span,
  .worthy-utilities-item .h3 {
    font-size: 1rem;
  }
  .accordion .accordion-body {
    font-size: 1rem;
  }
  .sub-title {
    font-size: 1.5rem;
  }
  .slide-style-left-above .wrapper .text-side {
    padding-left: var(--desktop_padding);
    padding-right: var(--desktop_padding);
  }
  #footer .container-fluid .right-side .logo {
    max-width: 300px;
  }
  #footer .container-fluid .left-side .list-menu {
    gap: 3rem;
  }
  #footer .container-fluid .left-side .list-menu nav {
    font-size: 0.8rem;
    width: 50%;
  }
  .list-news .item-news::before {
    background: -webkit-linear-gradient(
      180deg,
      rgba(1, 20, 12, 0) 15%,
      rgba(2, 74, 43, 0.8506276261) 72%
    );
    background: linear-gradient(
      180deg,
      rgba(1, 20, 12, 0) 15%,
      rgba(2, 74, 43, 0.8506276261) 72%
    );
  }
  .list-news .item-news .title {
    position: static;
  }
  .list-news .item-news .news-bottom {
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  #header .navbar-brand img {
    width: 160px;
    object-fit: contain;
  }
  #header .navbar-toggler {
    padding-left: 0;
    padding-right: 0;
  }
  .slide-style-left-above .wrapper .text-side .list-detail .subheading {
    font-size: 1rem;
  }
  .slide-style-left-above .wrapper .text-side .list-detail .text-side > h2 {
    margin-bottom: 2rem;
    font-size: 2.7rem;
  }
  form input,
  form select,
  form textarea {
    font-size: 1rem;
  }
  #footer .container-fluid {
    padding-top: 5rem;
    padding-bottom: 5rem;
    flex-wrap: wrap;
  }
  #footer .container-fluid .left-side,
  #footer .container-fluid .right-side {
    width: 100%;
    max-width: unset;
  }
  .list-news .item-news::before {
    background: --webkit-linear-gradient(
      180deg,
      rgba(1, 20, 12, 0) 0%,
      rgb(2, 74, 43) 73%
    );
    background: linear-gradient(
      180deg,
      rgba(1, 20, 12, 0) 0%,
      rgb(2, 74, 43) 73%
    );
  }
  #form-contact-us .d-flex.gap-4 {
    gap: 2rem !important;
    flex-direction: column;
  }
  .list-news-simple .item-news-simple {
    flex-direction: column;
    padding-right: 0;
  }
  .list-news-simple .item-news-simple .post-thumbnail {
    width: 100% !important;
  }
  .pagination {
    gap: 0.8rem;
  }
  .pagination li .page-link {
    width: 1.5rem;
    font-size: 0.8rem;
  }
  .slide-style-left-above .wrapper .image-side {
    aspect-ratio: 1920 / 1200 !important;
  }
  .slide-style-left-above .wrapper .image-side img {
    object-fit: cover;
  }
}

.btn-contact-me {
  margin-top: 0;
  margin-left: 0;
  font-size: 1rem;
  text-align: center;
  border-radius: 3rem;
  display: inline-block;
  width: auto;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 0.5px rgb(2, 74, 43) solid;
  color: #222222;  
   animation: shake 1.5s infinite;
}
	

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}           

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}
.btn-contact-me {
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
  cursor: pointer;
}

.btn-contact-me:after {
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.btn-contact-me:hover {
  background-color: rgba(206, 172, 107, 0.8);
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
  color: #222222;
}

.btn-contact-me:hover i {
  color: #222222;
}

.btn-contact-me:hover:after {
  -webkit-animation: sonarEffect 1.3s ease-out 75ms;
  -moz-animation: sonarEffect 1.3s ease-out 75ms;
  animation: sonarEffect 1.3s ease-out 75ms;
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

.animate__slideInLeft {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
