:root {
  --main-color: #184E51;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  box-sizing: border-box;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;

  @media screen and (max-width: 1600px) {
    max-width: 1200px;
    padding: 0 3rem 0 6rem;
  }

  @media screen and (max-width: 1400px) {
    box-sizing: border-box;
  }

  @media screen and (max-width: 1200px) {
    /* margin: 0 1rem; */
  }

  @media screen and (max-width: 1024px) {
    padding: 0 2rem;
  }

  @media screen and (max-width: 800px) {
    /* margin: 0 0.5rem; */
    padding: 1rem;
  }
}

.image-container {
  display: flex;
  user-select: none;
}

.session-title {
  font-family: 'Birthstone';
  font-size: 59px;
  color: white;
  text-align: center;
}

.main-color {
  color: var(--main-color);
}

img {
  aspect-ratio: unset;
}

.image-container img {
  width: 100%;
  vertical-align: top;
  height: auto;
  object-fit: cover;
}

.icon {
  display: flex;
}

.icon img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.nav {
  color: white;
  background: #184e4796;
  height: 70px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  transition: 0.4s;
}

.nav-container {
  display: flex;
  justify-content: space-between;
}

.logo {
  margin: 0;
  filter: drop-shadow(1px 1px 1px #ffffffbf);
}

.nav-list {
  display: flex;
  gap: 15px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.nav-item .icon {
  width: 42px;
}

.nav-item:nth-child(2) .icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: solid 1px white;
}

.nav-item .icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.main-background {
  background: url("./assets/images/bg3.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}

.main {
  min-height: 100vh;
}

.header {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.header-container {
  display: flex;
  gap: 20px;
  position: relative;
  overflow: hidden;
  overflow: hidden;
}

.header-info {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  z-index: 11;
  width: calc(50% - 20px);
}

.header-title {
  font-family: "Birthstone", cursive;
  margin-top: 200px;
}

.header-title b {
  font-size: 121px;
  color: #184E51;
  font-weight: 500;
}

.header-title span {
  font-size: 59px;
}

.header-title p {
  font-family: "Inter", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #184E51;
  margin: 0;
  margin-top: -17px;
  margin-bottom: 26px;
}


.header-desciption {
  font-size: 18px;
  line-height: 26px;
}

.header-desciption p:nth-child(1) {
  max-width: 510px;
}

.header-desciption p:nth-child(2) {
  max-width: 610px;
}

.header-image {
  max-width: 612px;
  width: 45%;
}

.header-layout {
  position: absolute;
  top: 0;
  left: -40%;
  width: 100%;
  height: 150%;
  transform: rotate(57deg);
  background-color: #ffffff;
  opacity: 0.57;
  z-index: -1;
}

.header-layout-2 {
  left: -88%;
  z-index: -1;
}

.header-image {
  margin-top: 166px;
}

.header-image img {
  filter: drop-shadow(2px 4px 6px black);
}

/* animate */
.before-slip-right {
  transform: translateX(-100%) rotate(57deg);
  transition: 0.8s;
}

.slip-right {
  transform: translateX(0) rotate(57deg);
}


.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.8s ease-in;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: 0.4s;

  @media screen and (max-width: 1600px) {
    width: 9rem;
  }

  @media screen and (max-width: 1024px) {
    display: none;
  }
}

.sidebar-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0 1rem;
  margin: 0.25rem 0;
  cursor: pointer;
  color: white;
  text-shadow: 0px 0px 2px gray;

  @media screen and (max-width: 1600px) {
    margin: 0.2rem 0;
  }
}

.sidebar-item:hover {
  color: #AB8768;
}

.sidebar-item:hover .sidebar-dot {
  color: #AB8768;
  border-color: #AB8768;
  background: #AB8768;
}

.sidebar-dot {
  width: 13px;
  height: 13px;
  border: solid 1px;
  border-color: white;
  border-radius: 20px;
  box-sizing: border-box;
  transition: 0.4s;
}

.sidebar-item.selected .sidebar-dot {
  background: white;
}

.sidebar-item:hover .sidebar-dot {
  color: #AB8768;
  border-color: #AB8768;
  background: #AB8768;
}

.sidebar-item.selected:hover .sidebar-dot {
  background: #AB8768;
}

.sidebar-label {
  font-size: 16px;
  transition: 0.4s;

  @media screen and (max-width: 1600px) {
    font-size: 14px;
  }
}

.visible {
  opacity: 1;
  visibility: visible;
}

/* overview  */
.overview {
  padding: 100px 0;
  background: url("./assets/images/bg1.png");
  background-size: cover;
  background-position: center;
}

.overview-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
}

.overview-item-image {
  width: calc(50% - 1rem);
  max-width: 604px;
}

.overview-item-info {
  width: calc(50% - 2rem);
  max-width: 555px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-item-info p {
  font-weight: 300;
  line-height: 1.5;
  margin: 0.75rem 0;
}

.overview-item-info b {
  font-weight: 500;
}

.overview-item-title {
  font-family: "Birthstone", cursive;
  font-size: 60px;
}

.overview-description {
  font-size: 18px;
}

.location {}

.location-bg {
  background: url("./assets/images/bg2.png");
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

.location-bg p {
  width: calc(65% - 4rem);
  margin: auto;
  text-align: justify;
  font-size: 16px;
}

.location-content {
  transition: 0.4s;
  min-height: 140px;
}

.slider {
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}

.slider-container {
  width: 65%;
  display: flex;
  transition: transform 0.5s ease;
  transform: translateX(-100%);
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 50px 30px;
  text-align: center;
}

.slide .image-container {
  aspect-ratio: 956/729;
  display: flex;
  align-items: center;
}

.slide .image-container img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  transition: 0.4s;
}

.slide.active .image-container img {
  height: 100%;
  background: linear-gradient(90deg, #184E51, #277167);
}

/* location utility */

.location-utility {
  padding: 8rem 0;
  background: url("./assets/images/bg1.png");
  background-size: cover;
  background-position: center;
  color: white;
}

.location-utility-image {
  max-width: 714px;
  margin: auto;
}

.location-utility-content {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
}

.location-utility-item {
  width: calc(33.33% - 1rem);
  border: solid 1px white;
  border-radius: 15px;
  padding: 40px 40px;
  box-sizing: border-box;
}

.location-utility-item .icon {
  width: 59px;
  height: auto;
}

.location-utility-title {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: -130px;
  margin-bottom: 58px;
  font-size: 27px;
}

.location-utility-card {
  margin-top: 1rem;
}

.location-utility-card p {
  margin: 2px 0;
}

.location-utility-card p::before {
  content: " \2022";
}

/* utility */
.utility {
  padding: 12rem 0;
  background: url("./assets/images/bg1.png");
  background-size: cover;
  background-position: center;
}

.utility-container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.utility-content {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* .utility-title {
  font-size: 39px;
} */

.utility-images {
  max-width: 672px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}


/* floor-plan */
.floor-plan {
  padding: 16rem 0;
  /* background: url("./assets/images/bg2.png"); */
  background: #00000066;
  background-size: cover;
  background-position: center;
}

/* legal matters */
.legal-matters {
  padding: 8rem 0;
  background: url("./assets/images/bg1.png");
  background-size: cover;
  background-position: center;
}

.legal-matters-container {
  margin: auto;
  max-width: 1064px;
}

.legal-matters-image {
  position: relative;
}

.legal-matters-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 65px;
  font-family: "Birthstone", cursive;
  background: rgba(0, 0, 0, 0.308);
  text-shadow: 1px 1px 10px gray;
}

.legal-matters-documents {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

.legal-matters-document {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 3rem;
  box-sizing: border-box;
  border: solid 1px white;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  color: white;
  text-decoration: none;
  font-size: 23px;
  width: calc(50% - 1.5rem);
  min-height: 156px;
}

.legal-matters-document .icon {
  width: 52px;
}

/* news  */

.news {
  padding: 8rem 0;
  background: url("./assets/images/bg1.png");
  background-size: cover;
  background-position: center;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.news-card {
  width: calc(33.33% - 1rem);
  padding: 1rem;
  box-sizing: border-box;
  cursor: pointer;
}

.news-image {
  width: 100%;
  height: auto;
  aspect-ratio: 392/220;
}

.news-title {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-top: 1rem;
}

/* contact */

.contact {
  padding: 8rem 0;
  /* background: url("./assets/images/bg2.png"); */
  background: #00000066;
  background-size: cover;
  background-position: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.contact-content {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-image {
  width: calc(50% - 1rem);
}

.contact-title {
  font-size: 30px;
  font-weight: 500;
  color: white;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: white;
  font-size: 20px;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  width: 46px;
  height: auto;
}

/* advise  */
.advise {
  background: url("./assets/images/advise_image.png");
  background-size: cover;
  background-position: center;
  display: flex;
}

.advise-container {
  width: 50%;
  height: 100%;
  margin-left: auto;
  padding-right: 4rem;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(269deg, #0000008c, #000000a3, transparent);
}

.advise-form {
  box-sizing: border-box;
  margin-left: auto;
  width: 100%;
  max-width: 400px;
}

.advise-title {
  font-size: 72px;
  font-family: "Birthstone", cursive;
  color: white;

}

.advise-title b {
  font-family: 'Inter';
  font-size: 26px;
  font-weight: 300;
}

.advise-title span {
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #c69b77 0%, #62b9d3 30%, #fff 70%, #7b9164 100%);
  display: block;
  font-size: 80px;
  margin-top: -40px;
}

.advise-form-input {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  margin-top: 1rem;
  color: white;
  font-weight: 400;
  text-decoration: ital;
  font-size: 20px;
  font-style: italic;
  max-width: 278px;
}

.advise-form-input.message {
  display: flex;
  flex-direction: column;
}

.input-label {
  color: white;
  font-size: 20px;
  white-space: nowrap;
}

.advise-form-input input {
  outline: none;
  border: none;
  background: none;
  color: white;
  font-size: 20px;
}

.advise-form-input textarea {
  outline: none;
  border: none;
  background: none;
  color: white;
  font-size: 20px;
  resize: none;
}

.zalo-form-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(70deg, #FFFFFF, #9999992f);
}

.zalo-input {
  color: white;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 25px;
  margin-top: 9px;
}

.zalo-input-icon {
  width: 45px;
  height: auto;
}

.zalo-input-phone {
  font-size: 23px;
  font-weight: 500;
}

.send-btn {
  width: 100%;
  max-width: 287px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(70deg, #9A7766, #342822);
  margin-top: 42px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.send-btn:hover {
  background: linear-gradient(70deg, #c3927a, #342822);
}

.btn {
  cursor: pointer;
  transition: 0.3s;
}

/* house-template */
.house-template {
  padding: 8rem 0;
  box-sizing: border-box;
  background: url("./assets/images/bg1.png");
  background-size: cover;
  background-position: center;
  min-height: calc(100vh);
  display: flex;
  flex-direction: column;
}

.house-template-title {
  margin-bottom: 3rem;
}

.house-template-content {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}

.house-template-item {
  width: calc(100% - 4/3rem);
  cursor: pointer;
}

.house-template-item:hover .house-template-image {
  box-shadow: 1px 1px 10px 0 rgba(255, 255, 255, 0.267);
  transform: scale(1.02);
}

.house-template-image {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
}

.house-template-image .image-container {
  aspect-ratio: 4/3;
}

.house-template-name {
  font-family: 'Birthstone';
  font-size: 40px;
  color: white;
}

/* .apartment-item {
  display: inline-block;
  margin: 10px;
  padding: 20px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
} */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.price-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.price-modal .modal-content {
  display: flex;
  flex-direction: column;
}

.price-modal .price-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: auto;
}

.price-form {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-form input {
  min-width: 240px;
  padding: 9px 12px;
  font-size: 16px;
  outline: none;
}

.price-form-advise-btn {
  height: 40px;
  padding: 3px 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  text-transform: uppercase;
  background: #9D7A35;
  color: white;
  border: none;
}

.modal-content {
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.modal img {
  width: 100%;
  max-width: calc(100vw - 80px);
  max-height: calc(100vh - 80px);
}

.close-modal {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 40px;
  background: none;
  width: 47px;
  height: 47px;
  text-shadow: 1px 1px 6px gray;
}

.navigation-btn {
  background: unset;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.navigation-btn svg {
  fill: #fff;
  width: 60px;
  height: auto;
  filter: drop-shadow(1px 1px 5px white);
}

.navigation-btn:disabled svg {
  background: unset;
  fill: #ffffff73;
  cursor: not-allowed;
}

.investment {
  padding: 8rem 0;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #00000066;
}

.investment-container {
  display: flex;
  gap: 30px;
}

.investment-card {
  width: calc(33.33% - 20px);
  padding: 50px 48px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #ffffffde;
}

.investment-card-image {
  max-width: 320px;
  margin: auto;
}

.investment-card-title {
  font-size: 17px;
  font-weight: 600;
  color: black;
  margin: 5px 0 20px 0;
}

.investment-card-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #4b4b4b;
}

.mobile-sidebar-btn {
  display: none;
  margin-left: 1rem;
}

.zalo-popup {
  margin: auto;
  text-decoration: none;
}

.zalo-popup-icon {
  width: 30px;
  height: auto;
}

@media screen and (max-width: 1600px) {
  .header-image {
    margin-top: 110px;
  }

  .header-title {
    margin-top: 140px;
  }

  .overview {
    padding: 1rem 0 8rem 0;
  }

  .location-bg {
    padding: 1rem 0 4rem 0;
  }

  .slider {
    margin: 40px auto 0 auto;
  }

  .utility {
    padding: 8rem 0;
  }

  .floor-plan {
    padding: 8rem 0;
  }

  .investment-card {
    padding: 40px 28px;
  }

  .investment-card-title {
    font-size: 14px;
  }

  .investment-card-description {
    font-size: 13px;
  }
}

@media screen and (max-width: 1024px) {
  .investment-container {
    flex-wrap: wrap;
  }

  .investment-card {
    width: 100%;
  }

  .mobile-sidebar-btn {
    display: block;
  }

  .mobile-sidebar-btn svg {
    width: 42px !important;
    height: 42px;
  }

  .header-container {
    flex-wrap: wrap;
    padding: 2rem;
    flex-direction: column-reverse;
  }

  .header-info {
    width: 100%;
    min-height: unset;
    text-align: center;
  }

  .header-title {
    margin-top: 0;
  }

  .header-image {
    margin: auto;
    margin-top: 10rem;
    margin-bottom: 1rem;
  }

  .header-desciption p {
    margin: auto;
    margin-bottom: 2rem;
  }

  .advise-btn {
    display: none;
  }

  .house-template-content {
    flex-wrap: wrap;
  }

  .house-template-item {
    width: 60%;
    margin: auto;
  }
}


@media screen and (max-width: 576px) {
  .header {
    height: unset;
    min-height: 100vh;
  }

  .header-container {
    flex-wrap: wrap;
    padding: 2rem;
    flex-direction: column-reverse;
  }

  .header-info {
    width: 100%;
    min-height: unset;
  }



  .header-title span {
    font-size: 40px;
  }

  .header-title b {
    font-size: 60px;
  }

  .header-title p {
    font-size: 38px;
  }

  .header-image {
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 1rem;
  }

  .header-layout {
    width: 1000px;
  }

  .header-layout-2 {
    display: none;
  }

  .logo .image-container {
    height: 28px;
  }

  /* nav mobile  */

  .nav {
    height: 60px;
  }

  .nav-item .icon {
    width: 30px;
    height: 30px;
  }


  .overview {
    padding: 2rem 0 3rem 0;
  }

  .overview-item {
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .overview-item:first-child {
    flex-flow: column-reverse;
  }

  .overview-item-image {
    width: 100%;
  }


  .overview-item-info {
    width: 100%;
  }

  .overview-item-title {
    font-size: 50px;
  }

  .overview-description {
    font-size: 15px;
  }

  /* slider */

  .slider {
    margin: 0;
  }

  .slider-container {
    width: 80%;
  }

  .slide {
    padding: 3rem 0.5rem;
  }

  .location-bg {
    padding: 2rem 0;
  }

  .location-bg p {
    width: 100%;
    text-align: justify;
  }

  .location-content {
    min-height: 240px;
  }

  .location-utility {
    padding: 3rem 0;
  }

  .location-utility-content {
    flex-wrap: wrap;
    gap: 1rem
  }

  .location-utility-item {
    width: 100%;
    margin-top: 8rem;
  }

  .location-utility-item:first-child {
    margin-top: 1rem;
  }

  .utility {
    padding: 2rem 0;
  }

  .utility-container {
    flex-wrap: wrap;
    flex-flow: column-reverse;
  }

  .utility-content {
    width: 100%;
    font-size: 15px;
  }

  .utility-images {
    width: 100%;
  }

  .floor-plan {
    padding: 5rem 0;
  }

  .legal-matters {
    padding: 3rem 0;
  }

  .legal-matters-title {
    font-size: 45px;
  }

  .legal-matters-documents {
    gap: 1rem;
    margin-top: 1rem;
  }

  .legal-matters-document {
    width: 100%;
    padding: 1rem 2rem;
    min-height: unset;
    font-size: 18px;
  }

  .legal-matters-document .icon {
    width: 30px;
  }

  .news {
    padding: 3rem 0;
  }

  .news-card {
    width: calc(100%);

  }

  .news-title {
    font-size: 16px;
    margin-top: 0.75rem;
  }

  .contact {
    padding: 3rem 0;
  }

  .contact-container {
    flex-wrap: wrap;
    flex-flow: column-reverse;
  }

  .contact-content {
    width: 100%;
  }

  .contact-image {
    width: 100%;
  }

  .contact-title {
    font-size: 24px;
    margin-bottom: 1rem;
    justify-content: center;
  }

  .contact-item {
    font-size: 16px;
    margin-bottom: 0.75rem;
  }

  .contact-item .icon {
    width: 30px;
  }

  .advise-container {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    background: #000000a3;
  }

  .advise-title {
    text-align: center;
    font-size: 50px;
  }

  .advise-title b {
    font-size: 24px;
  }

  .input-label {
    font-size: 16px;
  }

  .advise-form-input input {
    font-size: 16px;
  }

  .send-btn {
    max-width: unset;
  }

  .main-letter {
    color: var(--main-color);
  }

  .house-template {
    padding: 3rem 0;
  }



  .house-template-item {
    width: 100%;
  }

  .house-template-name {
    font-size: 30px;
  }

  .session-title {
    display: block;
    font-size: 50px;
  }

  .modal img {
    width: 100%;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .nav-item .icon {
    box-sizing: border-box;
  }

  .nav-item span {
    display: none !important;
  }

  .investment {
    padding: 4rem 0;
  }

  .investment-card {
    padding: 30px 28px;
  }

  .investment-card-title {
    font-size: 16px;
  }

  .investment-card-description {
    font-size: 13px;
  }

  .price-form {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-sidebar-btn svg {
    width: 100% !important;
    height: auto;
  }

  .zalo-input {
    text-align: center;
    justify-content: center;
  }

  .advise-form-input {
    text-align: center;
    font-weight: 300;
    margin: auto;
    font-size: 16px;
  }
}
