/* @import"https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100;200;300;400;500;600;700;800&amp;display=swap"; */
@import url("https://fonts.googleapis.com/css2?family=Sniglet:wght@400;800&display=swap");
.floating-contact[data-company-profile-primary] {
  cursor: pointer;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  background-color: #046939;
  border-radius: 5rem;
  padding: 0.9rem;
  box-shadow: 0 0 14.6px #0646351f;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  overflow: hidden;
}

:root {
  --primary-color: #046938e2;
  /* --secondary-color: #; */
  --secondary-color: #b5ae35;
  --blue-color: #58708b;
  --blue-dark-color: #263e5a;
  --blue-light-color: #9baaba;
  --divider-color: #e7eaee;
  --swiper-pagination-color: var(--primary-color);
  --swiper-navigation-color: var(--primary-color);
}

*,
:before,
:after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
  padding: 0;
  margin: 0;
}

html {
  font-family: Anek Latin, sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader {
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

header[data-company-profile-menu] {
  z-index: 1000;
  position: fixed;
  width: 100%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 4rem;
}

.logo-container[data-company-profile-menu] {
  display: flex;
  align-items: center;
}

ul[data-company-profile-menu] {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

li[data-company-profile-menu] {
  font-size: 0.875rem;
  font-weight: 400;
}

li[data-company-profile-menu] > a[data-company-profile-menu] {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.overlay-menu[data-company-profile-menu] {
  position: fixed;
  width: 0;
  opacity: 0;
  height: 100%;
  background-color: #00000080;
  transition: opacity 0.1s;
  z-index: 29;
}

.overlay-menu[data-company-profile-menu].active {
  width: 100%;
  opacity: 1;
}

menu[data-company-profile-menu] {
  position: fixed;
  width: 0;
  max-width: 21rem;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 30;
  transition: width 0.3s;
  overflow: hidden;
}

menu[data-company-profile-menu].active {
  width: 100%;
}

menu[data-company-profile-menu] > div[data-company-profile-menu] {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.12rem;
  margin: 1rem;
}

menu[data-company-profile-menu]
  > div[data-company-profile-menu]
  > .close-icon[data-company-profile-menu] {
  font-size: 2rem;
  color: #fff;
}

.contact[data-company-profile-menu] {
  font-size: 0.875rem;
  border-radius: 0.5rem;
  background-color: #60d669;
  padding: 0.5rem 1rem;
  color: #fff;
  display: flex;
  gap: 0.5rem;
}

@media only screen and (max-width: 840px) {
  header[data-company-profile-menu] {
    padding: 0.5rem 1.5rem;
    display: none;
  }

  menu[data-company-profile-menu] > ul[data-company-profile-menu] {
    display: flex;
    flex-direction: column;
    align-items: unset;
    gap: 0.62rem;
  }

  menu[data-company-profile-menu]
    > ul[data-company-profile-menu]
    > li[data-company-profile-menu]
    > a[data-company-profile-menu] {
    border-bottom: 1px solid rgba(200, 221, 191, 0.3);
    padding: 1rem 0;
    margin: 0 1rem;
  }
}

@media only screen and (max-width: 640px) {
  .logo-container[data-company-profile-menu] {
    justify-content: center;
    flex-grow: 1;
  }

  ul[data-company-profile-menu] {
    display: none;
  }
}

section[data-company-profile-highlight] {
  position: relative;
  height: 100vh;
}

.content[data-company-profile-highlight] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 0 0.5rem;
}

.content[data-company-profile-highlight]
  > .menu-icon[data-company-profile-highlight] {
  display: none;
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
}

.content[data-company-profile-highlight]
  > span[data-company-profile-highlight] {
  font-size: 2.875rem;
  color: #fff;
  font-weight: 100;
  max-width: 54rem;
  text-align: center;
}

.pros[data-company-profile-highlight] {
  font-size: 1.375rem;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.pros[data-company-profile-highlight] > div[data-company-profile-highlight] {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #393939;
  background-color: #ffffff94;
  padding: 0.5rem 1rem;
  border-radius: 5rem;
  font-weight: 600;
}

.content[data-company-profile-highlight] > a[data-company-profile-highlight] {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

@media only screen and (max-width: 840px) {
  .content[data-company-profile-highlight]
    > .menu-icon[data-company-profile-highlight] {
    display: unset;
  }
}

@media only screen and (max-width: 640px) {
  .content[data-company-profile-highlight] {
    gap: 2rem;
    padding-top: 1rem;
  }

  .pros[data-company-profile-highlight] {
    flex-direction: column;
    gap: 0.5rem;
  }
}

section[data-company-profile-about] {
  position: relative;
  background-position: center;
}

section[data-company-profile-about] > div[data-company-profile-about] {
  width: 100%;
  height: 100%;
  background: #046938e2;
  padding: 5rem 2rem;
}

h1[data-company-profile-about] {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 10px;
}

span[data-company-profile-about] {
  font-size: 1rem;
  color: #fff;
}

p[data-company-profile-about] {
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  text-align: justify;
}

@media only screen and (max-width: 640px) {
  section[data-company-profile-about] > div[data-company-profile-about] {
    background: #046938e2;
    padding: 2.5rem 1.5rem;
  }
}

section[data-company-profile-facility] {
  justify-content: center;
  padding-top: 5rem;
}

section[data-company-profile-facility] > div[data-company-profile-facility] {
  display: flex;
  flex-direction: column;
  gap: 2.12rem;
  color: var(--blue-light-color);
  width: 100%;
  max-width: 120rem;
}

h2[data-company-profile-facility] {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

p[data-company-profile-facility] {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
}

.card-list[data-company-profile-facility] {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.card[data-company-profile-facility] {
  box-shadow: 3px 3px 12.2px #00000012;
  color: var(--blue-color);
  overflow: hidden;
  width: 40rem;
  margin: 0.2rem;
}

.card[data-company-profile-facility]
  > div[data-company-profile-facility]:nth-child(1) {
  height: 13rem;
  position: relative;
}

.card[data-company-profile-facility]
  > div[data-company-profile-facility]:nth-child(1)
  > img {
  object-fit: fill;
  object-position: center;
  width: 100%;
  height: 100%;
}

.card[data-company-profile-facility]
  > div[data-company-profile-facility]
  > h2[data-company-profile-facility] {
  font-size: 1.375rem;
  font-weight: 500;
}

.card[data-company-profile-facility]
  > div[data-company-profile-facility]
  > p[data-company-profile-facility] {
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.card[data-company-profile-facility]
  > div[data-company-profile-facility]
  > figcaption[data-company-profile-facility] {
  position: absolute;
  bottom: 0.2em;
  left: 1rem;
  width: 70%;
  padding: 0.1rem;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.7rem;
}

@media screen and (max-width: 1367px) {
  .card[data-company-profile-facility]
    > div[data-company-profile-facility]
    > figcaption[data-company-profile-facility] {
    position: absolute;
    bottom: 0.2em;
    right: 1rem;
    width: 80%;
    padding: 0.1rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1100px) {
  section[data-company-profile-facility] > div[data-company-profile-facility] {
    display: flex;
    flex-direction: column;
    color: var(--blue-light-color);
  }

  p[data-company-profile-facility] {
    font-size: 1rem;
    font-weight: 300;
    text-align: justify;
    margin: 0 1rem;
  }

  .card[data-company-profile-facility] {
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .card-list[data-company-profile-facility] {
    display: flex;
    flex-direction: column;
  }

  .card[data-company-profile-facility]
    > div[data-company-profile-facility]:nth-child(1) {
    height: auto;
    position: relative;
  }

  .card[data-company-profile-facility]
    > div[data-company-profile-facility]:nth-child(1)
    > img {
    position: unset;
    object-fit: unset;
    object-position: unset;
  }

  .card[data-company-profile-facility]
    > div[data-company-profile-facility]
    > figcaption[data-company-profile-facility] {
    position: absolute;
    bottom: 0.2em;
    right: 1rem;
    width: 80%;
    padding: 0.1rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 2.4rem;
  }
}

section[data-company-profile-more-facility] {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
}

section[data-company-profile-more-facility]
  > div[data-company-profile-more-facility] {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100rem;
}

section[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility] {
  flex: 1;
}

section[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]:last-child {
  display: flex;
  justify-content: center;
}

.more-facility[data-company-profile-more-facility] {
  position: absolute;
  max-width: 50rem;
}

.content[data-company-profile-more-facility] {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  color: var(--blue-light-color);
  align-items: center;
}

.content[data-company-profile-more-facility]
  > .desc[data-company-profile-more-facility] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.12rem;
}

.content[data-company-profile-more-facility]
  > .desc[data-company-profile-more-facility]
  > h2[data-company-profile-more-facility] {
  font-size: 3rem;
  font-weight: 700;
  text-align: justify;
}

.content[data-company-profile-more-facility]
  > .desc[data-company-profile-more-facility]
  > p[data-company-profile-more-facility] {
  max-width: 40rem;
  text-align: justify;
  font-size: 1.28rem;
  font-weight: 400;
}

.card-time[data-company-profile-more-facility] {
  position: relative;
  display: flex;
  border-radius: 0.5rem;
  box-shadow: 3px 3px 9.8px #0000001f;
  padding: 1.12rem 1.5rem;
  gap: 2.5rem;
}

.card-time[data-company-profile-more-facility]
  > span[data-company-profile-more-facility] {
  position: absolute;
  top: -1.8rem;
  left: -1.8rem;
}

.card-time[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]:not(.divider) {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-time[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]:not(.divider)
  > h6[data-company-profile-more-facility] {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 600;
}

.card-time[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]:not(.divider)
  > p[data-company-profile-more-facility] {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 300;
}

.card-time[data-company-profile-more-facility]
  > div[data-company-profile-more-facility].divider {
  border-width: 1px;
  border-color: var(--divider-color);
}

.location-benefite[data-company-profile-more-facility] {
  justify-items: center;
}

.location-benefite[data-company-profile-more-facility]
  > h2[data-company-profile-more-facility] {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-light-color);
  text-align: center;
}

.location-benefite[data-company-profile-more-facility]
  > div[data-company-profile-more-facility] {
  width: 100%;
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
}

.location-benefite[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility] {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.8rem;
}

.location-benefite[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility] {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.location-benefite[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > h4[data-company-profile-more-facility] {
  font-size: 1rem;
  font-weight: 600;
}

.location-benefite[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > div[data-company-profile-more-facility]
  > ul[data-company-profile-more-facility] {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  text-decoration: none;
  list-style-type: none;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 300;
}

@media only screen and (max-width: 1367px) {
  .more-facility[data-company-profile-more-facility] {
    position: absolute;
    max-width: 45rem;
  }

  .content[data-company-profile-more-facility]
    > .desc[data-company-profile-more-facility]
    > p[data-company-profile-more-facility] {
    max-width: 40rem;
    text-align: justify;
    font-size: 1.28rem;
    font-weight: 400;
  }
}

@media only screen and (max-width: 1100px) {
  section[data-company-profile-more-facility] {
    padding: 0;
  }

  section[data-company-profile-more-facility]
    > div[data-company-profile-more-facility] {
    padding: 0 0.5rem;
    flex-direction: column-reverse;
    gap: 2rem;
    color: var(--blue-light-color);
  }

  section[data-company-profile-more-facility]
    > div[data-company-profile-more-facility]
    > div[data-company-profile-more-facility]:nth-child(2) {
    padding-right: 1rem;
  }

  img[data-company-profile-more-facility].more-facility {
    position: unset;
    width: 100%;
    height: 100%;
  }

  .location-benefite[data-company-profile-more-facility] {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
  }

  .location-benefite[data-company-profile-more-facility]
    > div[data-company-profile-more-facility] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  .location-benefite[data-company-profile-more-facility]
    > div[data-company-profile-more-facility]
    > div[data-company-profile-more-facility] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .card-time[data-company-profile-more-facility]
    > div[data-company-profile-more-facility]:not(.divider)
    > h6[data-company-profile-more-facility] {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
  }

  .card-time[data-company-profile-more-facility]
    > div[data-company-profile-more-facility]:not(.divider)
    > p[data-company-profile-more-facility] {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 640px) {
  section[data-company-profile-more-facility] {
    padding: 0;
  }

  .content[data-company-profile-more-facility]
    > .desc[data-company-profile-more-facility] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .content[data-company-profile-more-facility]
    > .desc[data-company-profile-more-facility]
    > h2[data-company-profile-more-facility] {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: justify;
  }

  .content[data-company-profile-more-facility]
    > .desc[data-company-profile-more-facility]
    > p[data-company-profile-more-facility] {
    max-width: 40rem;
    text-align: justify;
    font-size: 0.8rem;
    font-weight: 400;
  }

  .card-time[data-company-profile-more-facility] {
    margin: 0 2rem;
    gap: 0rem;
  }

  .location-benefite[data-company-profile-more-facility] {
    flex-direction: column;
  }
}

.overlay[data-company-profile-build-spec-modal] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.modal[data-company-profile-build-spec-modal] {
  z-index: 20;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px #0000004d;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 55rem;
  flex-direction: column;
}

.modal[data-company-profile-build-spec-modal]
  > .modal-header[data-company-profile-build-spec-modal] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 1rem;
  position: sticky;
}

.modal[data-company-profile-build-spec-modal]
  > .modal-header[data-company-profile-build-spec-modal]
  > h2[data-company-profile-build-spec-modal] {
  margin-top: 0;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--blue-dark-color);
}

.modal[data-company-profile-build-spec-modal]
  > .modal-header[data-company-profile-build-spec-modal]
  > .closeBtn[data-company-profile-build-spec-modal] {
  font-size: 2rem;
  cursor: pointer;
}

.modal[data-company-profile-build-spec-modal]
  .divider[data-company-profile-build-spec-modal] {
  border-color: var(--divider-color);
  border-width: 1px;
}

.modal[data-company-profile-build-spec-modal]
  > .modal-content[data-company-profile-build-spec-modal] {
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  overflow: auto;
}

.modal[data-company-profile-build-spec-modal]
  > .modal-content[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(1) {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mySwiperDetail[data-company-profile-build-spec-modal] {
  height: 20%;
  box-sizing: border-box;
}

.mySwiperDetail[data-company-profile-build-spec-modal]
  swiper-slide[data-company-profile-build-spec-modal] {
  width: 25%;
  height: 80%;
  opacity: 0.4;
}

.mySwiperDetail[data-company-profile-build-spec-modal]
  .swiper-slide-thumb-active[data-company-profile-build-spec-modal] {
  opacity: 1;
}

.button-group[data-company-profile-build-spec-modal] {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.button-group[data-company-profile-build-spec-modal]
  > a[data-company-profile-build-spec-modal] {
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  font-size: 0.75rem;
  box-shadow: 5px 5px 8.9px #00000040;
}

.button-group[data-company-profile-build-spec-modal]
  > a[data-company-profile-build-spec-modal]:nth-child(1) {
  color: var(--secondary-color);
}

.button-group[data-company-profile-build-spec-modal]
  > a[data-company-profile-build-spec-modal]:nth-child(2) {
  background-color: var(--secondary-color);
  color: #fff;
}

.modal[data-company-profile-build-spec-modal]
  > .modal-content[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2.12rem;
}

.detail-spec[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--blue-dark-color);
}

.detail-spec[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(1)
  > h3[data-company-profile-build-spec-modal] {
  font-size: 1.375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.detail-spec[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(1)
  > h3[data-company-profile-build-spec-modal]
  > span[data-company-profile-build-spec-modal] {
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #1faf38;
  font-size: 0.625rem;
  background-color: #1faf3821;
}

.detail-spec[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(1)
  > span[data-company-profile-build-spec-modal]:nth-child(2) {
  font-size: 1rem;
  color: var(--blue-color);
}

.detail-spec[data-company-profile-build-spec-modal]
  > div[data-company-profile-build-spec-modal]:nth-child(1)
  > span[data-company-profile-build-spec-modal]:last-child {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue-dark-color);
}

ul[data-company-profile-build-spec-modal] {
  margin: 0;
  list-style-type: none;
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--blue-light-color);
}

li[data-company-profile-build-spec-modal] {
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
}

li[data-company-profile-build-spec-modal].active {
  color: var(--blue-color);
}

li[data-company-profile-build-spec-modal]:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  border-width: 2px;
  border-color: transparent;
  border-radius: 0.5rem;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}

li[data-company-profile-build-spec-modal].active:before {
  width: 100%;
  border-color: var(--blue-color);
}

.tab-content[data-company-profile-build-spec-modal] {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.tab-content[data-company-profile-build-spec-modal].active {
  overflow: unset;
  opacity: 1;
}

.tab-content[data-company-profile-build-spec-modal].facility {
  display: flex;
  flex-direction: column;
  color: var(--blue-light-color);
  gap: 1rem;
}

.tab-content[data-company-profile-build-spec-modal].facility
  > span[data-company-profile-build-spec-modal] {
  display: flex;
  align-items: center;
  gap: 1.19rem;
}

.tab-content[data-company-profile-build-spec-modal].wall,
.tab-content[data-company-profile-build-spec-modal].floor,
.tab-content[data-company-profile-build-spec-modal].structure {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--blue-light-color);
}

@media only screen and (max-width: 840px) {
  .modal[data-company-profile-build-spec-modal] {
    width: 95vw;
    height: 85vh;
  }

  .modal[data-company-profile-build-spec-modal]
    > .modal-header[data-company-profile-build-spec-modal] {
    padding: 0.5rem 1.12rem;
  }

  .modal[data-company-profile-build-spec-modal]
    > .modal-content[data-company-profile-build-spec-modal] {
    flex-direction: column;
    padding: 1.5rem;
  }

  .modal[data-company-profile-build-spec-modal]
    > .modal-content[data-company-profile-build-spec-modal]
    > div[data-company-profile-build-spec-modal]:nth-child(1) {
    width: 100%;
  }
}

.card[data-company-profile-building-spec-card] {
  box-shadow: 3px 3px 12.2px #00000021;
  padding: 1.5rem;
  max-width: 40rem;
  border-radius: 0.75rem;
  display: flex;
  gap: 1.12rem;
  cursor: pointer;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(1) {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 15rem;
  min-width: 15rem;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(1)
  > img[data-company-profile-building-spec-card] {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(1) {
  display: flex;
  align-items: center;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(1)
  > div[data-company-profile-building-spec-card] {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 0.2rem;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(1)
  > div[data-company-profile-building-spec-card]
  > h4[data-company-profile-building-spec-card] {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-color);
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(1)
  > div[data-company-profile-building-spec-card]:nth-child(1)
  > span[data-company-profile-building-spec-card] {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--blue-light-color);
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(1)
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > span[data-company-profile-building-spec-card] {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-color);
  padding: 0.18rem 0;
  text-align: right;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(2) {
  border-color: var(--divider-color);
  border-width: 1px;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(3) {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1.38rem;
}

.card[data-company-profile-building-spec-card]
  > div[data-company-profile-building-spec-card]:nth-child(2)
  > div[data-company-profile-building-spec-card]:nth-child(3)
  > div[data-company-profile-building-spec-card] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--blue-light-color);
  white-space: nowrap;
}

@media only screen and (max-width: 1350px) {
  .card[data-company-profile-building-spec-card] {
    flex-direction: column;
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .card[data-company-profile-building-spec-card] {
    max-width: 21rem;
    padding: 1rem;
  }
}

div[data-company-profile-build-spec-site-plan] {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

img[data-company-profile-build-spec-site-plan] {
  width: 100%;
}

@media only screen and (max-width: 1150px) {
  div[data-company-profile-build-spec-site-plan] {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
}

.image-container[data-company-profile-build-spec-perspective] {
  aspect-ratio: 2/1;
  overflow: hidden;
}

.image-container[data-company-profile-build-spec-perspective]
  > img[data-company-profile-build-spec-perspective] {
  object-fit: cover;
  object-position: top;
}

.mySwiperPerspective2[data-company-profile-build-spec-perspective] {
  margin-top: 1rem;
}

.mySwiperPerspective2[data-company-profile-build-spec-perspective]
  swiper-slide[data-company-profile-build-spec-perspective] {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiperPerspective2[data-company-profile-build-spec-perspective]
  .swiper-slide-thumb-active[data-company-profile-build-spec-perspective] {
  opacity: 1;
}

section[data-company-profile-building-spec] {
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.card-list[data-company-profile-building-spec] {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: center;
  gap: 1.5rem 2.12rem;
  margin: auto;
}

.siteplan[data-company-profile-building-spec] {
  display: flex;
  justify-content: space-around;
}

section[data-company-profile-building-spec]
  > div[data-company-profile-building-spec] {
  width: 100%;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

ul[data-company-profile-building-spec] {
  margin: 0;
  list-style-type: none;
  display: flex;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--blue-light-color);
}

li[data-company-profile-building-spec] {
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
}

li[data-company-profile-building-spec].active {
  color: var(--blue-color);
}

li[data-company-profile-building-spec]:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  border-width: 2px;
  border-color: transparent;
  border-radius: 0.5rem;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}

li[data-company-profile-building-spec].active:before {
  width: 100%;
  border-color: var(--blue-color);
}

.tab-content-spec[data-company-profile-building-spec] {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
}

.tab-content-spec[data-company-profile-building-spec].active {
  height: 100%;
  overflow: unset;
  opacity: 1;
}

h2[data-company-profile-building-spec] {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-light-color);
}

@media only screen and (max-width: 640px) {
  .card-list[data-company-profile-building-spec] {
    grid-template-columns: auto;
  }

  section[data-company-profile-building-spec] {
    padding: 2.5rem 0.5rem;
  }

  h2[data-company-profile-building-spec] {
    text-align: center;
  }
}

section[data-company-profile-contact-us] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 5rem 0rem;
}

section[data-company-profile-contact-us] > h2[data-company-profile-contact-us] {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-light-color);
}

section[data-company-profile-contact-us]
  > div[data-company-profile-contact-us] {
  padding: 4rem;
  box-shadow: 0 0 36.1px #0000001a;
  display: flex;
  gap: 4rem;
  width: 100%;
  max-width: 100%;
  border-radius: 1rem;
  height: 40rem;
}

@media only screen and (max-width: 840px) {
  section[data-company-profile-contact-us] {
    padding: 5rem 1rem;
  }

  section[data-company-profile-contact-us]
    > div[data-company-profile-contact-us] {
    padding: 2rem;
    flex-direction: column;
  }
}

@media only screen and (max-width: 640px) {
  section[data-company-profile-contact-us]
    > div[data-company-profile-contact-us] {
    padding: 0;
    box-shadow: none;
  }
}

section[data-company-profile-promo] {
  position: relative;
  padding: 9rem;
  /* background: linear-gradient(96deg, #0c9447 30.56%, #197340 49.9%, #85987c30 82.03%, #85987c00 95.98%); */
  background: linear-gradient(90deg, #197340 15%, #fff9 100%, #fff0 5%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

img[data-company-profile-promo] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
  object-position: right;
}

section[data-company-profile-promo] > h3[data-company-profile-promo] {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

section[data-company-profile-promo] > h4[data-company-profile-promo] {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
}

section[data-company-profile-promo] > p[data-company-profile-promo] {
  color: var(--secondary-color);
}

section[data-company-profile-promo]
  > .button-group[data-company-profile-promo] {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

section[data-company-profile-promo]
  > .button-group[data-company-profile-promo]
  > a[data-company-profile-promo] {
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 8.9px #00000040;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

section[data-company-profile-promo]
  > .button-group[data-company-profile-promo]
  > a[data-company-profile-promo]:first-child {
  color: var(--secondary-color);
  background-color: #fff;
}

section[data-company-profile-promo]
  > .button-group[data-company-profile-promo]
  > a[data-company-profile-promo]:nth-child(2) {
  background-color: var(--secondary-color);
  color: #fff;
}

@media only screen and (max-width: 720px) {
  section[data-company-profile-promo] {
    padding: 3rem 0.5rem;
    background: #197340 56.56%;
  }
}

@media only screen and (max-width: 640px) {
  section[data-company-profile-promo]
    > div[data-company-profile-promo].button-group {
    flex-direction: column;
    align-items: flex-start;
  }

  form[data-company-profile-promo] > div[data-company-profile-promo] {
    grid-template-columns: auto;
  }
}

footer[data-company-profile-gallery] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  background-color: #046939;
  padding: 5rem 1rem 1.6rem;
}

footer[data-company-profile-gallery] > div[data-company-profile-gallery] {
  display: flex;
  gap: 3rem;
  color: var(--divider-color);
}

footer[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > div[data-company-profile-gallery] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

footer[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > h5[data-company-profile-gallery] {
  font-size: 1rem;
  font-weight: 700;
}

footer[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > h6[data-company-profile-gallery] {
  font-size: 0.875rem;
  font-weight: 600;
}

footer[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > address[data-company-profile-gallery] {
  font-size: 0.75rem;
  font-style: normal;
}

.divider[data-company-profile-gallery] {
  border-color: var(--divider-color);
  border-width: 1px;
}

footer[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > div[data-company-profile-gallery]:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer[data-company-profile-gallery]
  > div[data-company-profile-gallery]
  > div[data-company-profile-gallery]:last-child
  > a[data-company-profile-gallery] {
  text-decoration: none;
  color: var(--divider-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer[data-company-profile-gallery] > span[data-company-profile-gallery] {
  color: var(--divider-color);
  font-size: 0.875rem;
  font-weight: 400;
}

@media only screen and (max-width: 840px) {
  footer[data-company-profile-gallery]
    > div[data-company-profile-gallery]
    > div[data-company-profile-gallery]:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  footer[data-company-profile-gallery] > div[data-company-profile-gallery] {
    flex-direction: column;
  }
}
