@font-face {
  font-family: "Sansation";
  src: url("../assets/font/sansation-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

/*******************MIXINS********************/
/*********************************************/
* {
  box-sizing: border-box; }

html,
body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #ffffff;
  /* still allow scrolling */
  overflow: auto;
  /* Firefox */
  scrollbar-width: none;
  /* IE/old Edge */
  -ms-overflow-style: none; }

html {
  box-sizing: border-box;
  background-color: transparent;
  scroll-behavior: smooth; }

body.no-scroll {
  overflow: hidden;
  height: 100vh; }

body .quick-links.frictionless {
  background: #ffffff; }

body .page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

body .dw_project {
  min-width: 100vw;
  font-size: 18px;
  font-family: "Sansation", system-ui, sans-serif;
  font-weight: 400;
  color: #000000; }
  body .dw_project .scroll-anchor {
    scroll-margin-top: 120px; }
  body .dw_project .show-section {
    opacity: 0;
    transition: opacity 0.5s ease-in; }
  body .dw_project section {
    margin: 0 auto;
    max-width: 100%; }
    @media only screen and (max-width: 1400px) {
      body .dw_project section {
        padding: 0 3%; } }
    @media only screen and (max-width: 1199.5px) {
      body .dw_project section {
        padding: 0 5%; } }
    @media only screen and (max-width: 767.5px) {
      body .dw_project section {
        padding: 0 5%; } }
    @media only screen and (min-width: 1200px) {
      body .dw_project section {
        max-width: 1400px !important; } }
  body .dw_project img {
    width: 100%;
    height: auto; }
  body .dw_project ul,
  body .dw_project li,
  body .dw_project ol {
    list-style: unset; }
  body .dw_project .button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: inherit;
    white-space: nowrap;
    background-color: #ffffff;
    color: inherit;
    text-align: center;
    padding: 12px 0;
    border-radius: 999px;
    font-weight: 700;
    border: solid 1px transparent; }
    body .dw_project .button:focus {
      outline: none !important; }
  body .dw_project .underline-button {
    width: min-content;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000000;
    font-weight: 700; }
    body .dw_project .underline-button:focus {
      outline: none !important; }
    body .dw_project .underline-button:hover::after {
      height: 3px; }
    body .dw_project .underline-button::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      transform: translateY(4px);
      background-color: #000000; }
  body .dw_project .desktop {
    display: block; }
    @media only screen and (max-width: 1199.5px) {
      body .dw_project .desktop {
        display: none !important; } }
    @media only screen and (max-width: 767.5px) {
      body .dw_project .desktop {
        display: none !important; } }
  body .dw_project .tablet {
    display: none !important; }
    @media only screen and (max-width: 1199.5px) {
      body .dw_project .tablet {
        display: block !important; } }
    @media only screen and (max-width: 767.5px) {
      body .dw_project .tablet {
        display: none !important; } }
  body .dw_project .mobile {
    display: none !important; }
    @media only screen and (max-width: 767.5px) {
      body .dw_project .mobile {
        display: block !important; } }

/* base: hidden before scroll */
._animation_fade {
  opacity: 0;
  transform: translateY(-30px);
  /* start slightly above */ }

/* when entering view */
._animation_fade._fade_in {
  animation: fadeInDown 0.8s ease forwards; }

/* when leaving view */
._animation_fade._fade_leave {
  animation: fadeOutUp 0.6s ease forwards; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-30px); } }

._grid_2col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 1199.5px) {
    ._grid_2col {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767.5px) {
    ._grid_2col {
      grid-template-columns: 1fr; } }

._grid_3col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 1199.5px) {
    ._grid_3col {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767.5px) {
    ._grid_3col {
      grid-template-columns: 1fr; } }

._grid_4col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 1199.5px) {
    ._grid_4col {
      grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 767.5px) {
    ._grid_4col {
      grid-template-columns: 1fr; } }

._row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }

._col {
  flex: 1;
  padding-left: 0.75rem;
  padding-right: 0.75rem; }

._col_1 {
  flex: 0 0 calc((1 / 12) * 100%);
  max-width: calc((1 / 12) * 100%); }

._col_2 {
  flex: 0 0 calc((2 / 12) * 100%);
  max-width: calc((2 / 12) * 100%); }

._col_3 {
  flex: 0 0 calc((3 / 12) * 100%);
  max-width: calc((3 / 12) * 100%); }

._col_4 {
  flex: 0 0 calc((4 / 12) * 100%);
  max-width: calc((4 / 12) * 100%); }

._col_5 {
  flex: 0 0 calc((5 / 12) * 100%);
  max-width: calc((5 / 12) * 100%); }

._col_6 {
  flex: 0 0 calc((6 / 12) * 100%);
  max-width: calc((6 / 12) * 100%); }

._col_7 {
  flex: 0 0 calc((7 / 12) * 100%);
  max-width: calc((7 / 12) * 100%); }

._col_8 {
  flex: 0 0 calc((8 / 12) * 100%);
  max-width: calc((8 / 12) * 100%); }

._col_9 {
  flex: 0 0 calc((9 / 12) * 100%);
  max-width: calc((9 / 12) * 100%); }

._col_10 {
  flex: 0 0 calc((10 / 12) * 100%);
  max-width: calc((10 / 12) * 100%); }

._col_11 {
  flex: 0 0 calc((11 / 12) * 100%);
  max-width: calc((11 / 12) * 100%); }

._col_12 {
  flex: 0 0 calc((12 / 12) * 100%);
  max-width: calc((12 / 12) * 100%); }

@media (max-width: 1199.5px) {
  ._col_md_1 {
    flex: 0 0 calc((1 / 12) * 100%);
    max-width: calc((1 / 12) * 100%); }
  ._col_md_2 {
    flex: 0 0 calc((2 / 12) * 100%);
    max-width: calc((2 / 12) * 100%); }
  ._col_md_3 {
    flex: 0 0 calc((3 / 12) * 100%);
    max-width: calc((3 / 12) * 100%); }
  ._col_md_4 {
    flex: 0 0 calc((4 / 12) * 100%);
    max-width: calc((4 / 12) * 100%); }
  ._col_md_5 {
    flex: 0 0 calc((5 / 12) * 100%);
    max-width: calc((5 / 12) * 100%); }
  ._col_md_6 {
    flex: 0 0 calc((6 / 12) * 100%);
    max-width: calc((6 / 12) * 100%); }
  ._col_md_7 {
    flex: 0 0 calc((7 / 12) * 100%);
    max-width: calc((7 / 12) * 100%); }
  ._col_md_8 {
    flex: 0 0 calc((8 / 12) * 100%);
    max-width: calc((8 / 12) * 100%); }
  ._col_md_9 {
    flex: 0 0 calc((9 / 12) * 100%);
    max-width: calc((9 / 12) * 100%); }
  ._col_md_10 {
    flex: 0 0 calc((10 / 12) * 100%);
    max-width: calc((10 / 12) * 100%); }
  ._col_md_11 {
    flex: 0 0 calc((11 / 12) * 100%);
    max-width: calc((11 / 12) * 100%); }
  ._col_md_12 {
    flex: 0 0 calc((12 / 12) * 100%);
    max-width: calc((12 / 12) * 100%); } }

@media (max-width: 767.5px) {
  ._col_sm_1 {
    flex: 0 0 calc((1 / 12) * 100%);
    max-width: calc((1 / 12) * 100%); }
  ._col_sm_2 {
    flex: 0 0 calc((2 / 12) * 100%);
    max-width: calc((2 / 12) * 100%); }
  ._col_sm_3 {
    flex: 0 0 calc((3 / 12) * 100%);
    max-width: calc((3 / 12) * 100%); }
  ._col_sm_4 {
    flex: 0 0 calc((4 / 12) * 100%);
    max-width: calc((4 / 12) * 100%); }
  ._col_sm_5 {
    flex: 0 0 calc((5 / 12) * 100%);
    max-width: calc((5 / 12) * 100%); }
  ._col_sm_6 {
    flex: 0 0 calc((6 / 12) * 100%);
    max-width: calc((6 / 12) * 100%); }
  ._col_sm_7 {
    flex: 0 0 calc((7 / 12) * 100%);
    max-width: calc((7 / 12) * 100%); }
  ._col_sm_8 {
    flex: 0 0 calc((8 / 12) * 100%);
    max-width: calc((8 / 12) * 100%); }
  ._col_sm_9 {
    flex: 0 0 calc((9 / 12) * 100%);
    max-width: calc((9 / 12) * 100%); }
  ._col_sm_10 {
    flex: 0 0 calc((10 / 12) * 100%);
    max-width: calc((10 / 12) * 100%); }
  ._col_sm_11 {
    flex: 0 0 calc((11 / 12) * 100%);
    max-width: calc((11 / 12) * 100%); }
  ._col_sm_12 {
    flex: 0 0 calc((12 / 12) * 100%);
    max-width: calc((12 / 12) * 100%); } }

._mt1 {
  margin-top: 1rem !important; }

._mt2 {
  margin-top: 2rem !important; }

._mt3 {
  margin-top: 3rem !important; }

._mt4 {
  margin-top: 4rem !important; }

._mt5 {
  margin-top: 5rem !important; }

._mt6 {
  margin-top: 6rem !important; }

._mt7 {
  margin-top: 7rem !important; }

._mt8 {
  margin-top: 8rem !important; }

._mb1 {
  margin-bottom: 1rem !important; }

._mb2 {
  margin-bottom: 2rem !important; }

._mb3 {
  margin-bottom: 3rem !important; }

._mb4 {
  margin-bottom: 4rem !important; }

._mb5 {
  margin-bottom: 5rem !important; }

._mb6 {
  margin-bottom: 6rem !important; }

._mb7 {
  margin-bottom: 7rem !important; }

._mb8 {
  margin-bottom: 8rem !important; }

@media only screen and (max-width: 767.5px) {
  .dw_project__general__navigation .dw_project_navbar_desktop_display {
    display: none !important; }
  .dw_project__general__navigation .dw_project_navbar_mobile_display {
    display: block !important; } }

.dw_project__general__navigation .dw_project_navbar_desktop_display {
  display: block; }
  .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar {
    background: #ffffff;
    padding: 20px 0;
    z-index: 999;
    position: fixed;
    width: 100%; }
    .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 auto;
      max-width: 100%; }
      @media only screen and (max-width: 1400px) {
        .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container {
          padding: 0 3%; } }
      @media only screen and (max-width: 1199.5px) {
        .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container {
          padding: 0 5%; } }
      @media only screen and (max-width: 767.5px) {
        .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container {
          padding: 0 5%; } }
      @media only screen and (min-width: 1200px) {
        .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container {
          max-width: 1400px !important; } }
      .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_left {
        display: flex;
        align-items: center;
        gap: 14px; }
        .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_left .navigation_logo_img {
          display: flex;
          align-items: center;
          width: 100px;
          height: auto;
          display: block; }
      .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right ._navbar {
        display: flex;
        align-items: center;
        gap: 80px;
        list-style: none;
        margin: 0;
        padding: 0; }
        @media only screen and (max-width: 900px) {
          .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right ._navbar {
            gap: 60px; } }
        .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right ._navbar ._navlink {
          text-decoration: none;
          color: #005c3d;
          transition: color 0.2s;
          font-size: 14px; }
          .dw_project__general__navigation .dw_project_navbar_desktop_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right ._navbar ._navlink._active {
            font-weight: 700; }

.dw_project__general__navigation .dw_project_navbar_mobile_display {
  display: none; }
  .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar {
    background: #ffffff;
    padding: 20px 0;
    z-index: 999;
    position: fixed;
    width: 100%; }
    .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media only screen and (max-width: 1400px) {
        .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container {
          padding: 0 3%; } }
      @media only screen and (max-width: 1199.5px) {
        .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container {
          padding: 0 5%; } }
      @media only screen and (max-width: 767.5px) {
        .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container {
          padding: 0 5%; } }
      @media only screen and (min-width: 1200px) {
        .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container {
          max-width: 1400px !important; } }
      .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_left {
        display: flex;
        align-items: center; }
        .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_left .navigation_logo_img {
          width: 100px;
          height: auto;
          object-fit: contain;
          cursor: pointer;
          display: block; }
      .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: #ffffff;
        cursor: pointer;
        font-size: 22px; }
        .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right i {
          color: #005c3d;
          transition: all 0.3s ease; }
          .dw_project__general__navigation .dw_project_navbar_mobile_display .dw_project_navbar .dw_project_navbar_container .dw_project_navbar_right i:hover {
            opacity: 0.7; }

.dw_project__general__navigation .dw_project_mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  color: #ffffff;
  z-index: 999;
  transition: left 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .dw_project__general__navigation .dw_project_mobile_menu.active {
    left: 0; }
  .dw_project__general__navigation .dw_project_mobile_menu .dw_project_mobile_menu_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%; }
    .dw_project__general__navigation .dw_project_mobile_menu .dw_project_mobile_menu_header .navigation_logo_img {
      width: 100px;
      height: auto;
      object-fit: contain;
      cursor: pointer;
      display: block; }
    .dw_project__general__navigation .dw_project_mobile_menu .dw_project_mobile_menu_header i {
      color: #005c3d;
      font-size: 26px;
      cursor: pointer; }
  .dw_project__general__navigation .dw_project_mobile_menu .dw_project_mobile_menu_links {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: auto;
    margin-top: 100px; }
    .dw_project__general__navigation .dw_project_mobile_menu .dw_project_mobile_menu_links ._navlink_mobile {
      text-decoration: none;
      color: #004539;
      font-size: 22px;
      transition: color 0.3s ease; }
      .dw_project__general__navigation .dw_project_mobile_menu .dw_project_mobile_menu_links ._navlink_mobile._active {
        font-weight: 700; }

.dw_project__general__footer {
  position: relative;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  background: #004539;
  color: #ffffff;
  text-align: center; }
  .dw_project__general__footer ._footer_container {
    padding-top: 15px !important;
    padding-bottom: 15px !important; }
    @media only screen and (max-width: 1400px) {
      .dw_project__general__footer ._footer_container {
        padding: 0 3%; } }
    @media only screen and (max-width: 1199.5px) {
      .dw_project__general__footer ._footer_container {
        padding: 0 5%; } }
    @media only screen and (max-width: 767.5px) {
      .dw_project__general__footer ._footer_container {
        padding: 0 5%;
        font-size: 10px; } }
    @media only screen and (min-width: 1200px) {
      .dw_project__general__footer ._footer_container {
        max-width: 1400px !important; } }

/* Alert message styling */
.notice {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
  height: 100%;
  margin: auto;
  padding: 15px 15px;
  align-items: start;
  color: #ffffff;
  background: #ffffff;
  margin-bottom: 30px;
  border: white solid; }

/* variants */
.notice--success {
  color: #ffffff;
  background: #ffffff; }

.notice--error {
  color: #ffffff;
  background: #ffffff; }

/* title/message text */
.notice__text {
  flex: 1;
  display: flex;
  align-items: center; }
  .notice__text .notice__body {
    height: 100%;
    font-size: 12px; }

/* close button */
.notice__close {
  border: 0;
  background: transparent;
  font-size: 20px;
  color: #f8f8f8;
  cursor: pointer;
  padding: 0 5px;
  line-height: 0.8; }

._grey_background {
  background: #f8f8f8; }

.dw_project__section1 .banner_display {
  display: block; }
  .dw_project__section1 .banner_display ._banner_background {
    background-image: url("../assets/img/banner/img-banner-1.png");
    background-position: center;
    background-size: cover;
    height: 570px;
    margin-top: 60px; }
    @media only screen and (max-width: 767.5px) {
      .dw_project__section1 .banner_display ._banner_background {
        height: 380px; } }
    .dw_project__section1 .banner_display ._banner_background ._banner_section {
      width: 100%; }
      @media only screen and (max-width: 1199.5px) {
        .dw_project__section1 .banner_display ._banner_background ._banner_section {
          justify-content: center; } }
      .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container {
        width: 600px;
        height: 500px;
        display: flex;
        align-items: center; }
        @media only screen and (max-width: 1199.5px) {
          .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container {
            width: 100%;
            height: 500px;
            justify-content: center; } }
        @media only screen and (max-width: 767.5px) {
          .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container {
            width: 100%;
            height: 300px;
            justify-content: center; } }
        .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text1 {
          font-size: 38px;
          font-weight: 700;
          color: #005c3d;
          padding-bottom: 20px; }
          @media only screen and (max-width: 1199.5px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text1 {
              text-align: center; } }
          @media only screen and (max-width: 767.5px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text1 {
              font-size: 24px; } }
          @media only screen and (max-width: 360px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text1 {
              max-width: 250px;
              margin: auto; } }
        .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text2 {
          font-size: 20px;
          font-weight: 400;
          color: #005c3d;
          padding-bottom: 20px; }
          @media only screen and (max-width: 1199.5px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text2 {
              text-align: center; } }
          @media only screen and (max-width: 767.5px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text2 {
              font-size: 14px; } }
          @media only screen and (max-width: 360px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._text2 {
              max-width: 250px;
              margin: auto; } }
        .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._explore_more_btn {
          display: inline-block;
          font-size: 18px;
          color: #ffffff;
          border-radius: 40px;
          background-image: linear-gradient(to right, #005c3d, #004539);
          padding: 10px 0;
          width: 200px;
          text-align: center;
          border: solid 1px #005c3d;
          text-decoration: none; }
          @media only screen and (max-width: 1199.5px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._explore_more_btn {
              display: flex;
              justify-content: center;
              margin: auto; } }
          @media only screen and (max-width: 767.5px) {
            .dw_project__section1 .banner_display ._banner_background ._banner_section ._banner_container ._banner_inner_container ._explore_more_btn {
              font-size: 16px;
              width: 180px; } }

.dw_project__section1 ._about_us_wrap {
  margin-top: 80px;
  margin-bottom: 120px; }
  @media only screen and (max-width: 1199.5px) {
    .dw_project__section1 ._about_us_wrap {
      margin-top: 50px; } }
  .dw_project__section1 ._about_us_wrap ._about_us_col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px; }
    @media only screen and (max-width: 1199.5px) {
      .dw_project__section1 ._about_us_wrap ._about_us_col {
        flex-direction: column;
        gap: 50px; } }
    .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_image {
      width: 200px;
      height: auto; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_image {
          width: 160px; } }
    .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_container ._title {
      font-size: 38px;
      font-weight: 700;
      color: #005c3d;
      margin-bottom: 15px; }
      @media only screen and (max-width: 1199.5px) {
        .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_container ._title {
          display: flex;
          justify-content: center; } }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_container ._title {
          font-size: 24px; } }
    .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_container ._description {
      font-size: 18px;
      font-weight: 400;
      color: #000000; }
      @media only screen and (max-width: 1199.5px) {
        .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_container ._description {
          display: flex;
          flex-direction: column;
          justify-content: center;
          text-align: center; } }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section1 ._about_us_wrap ._about_us_col ._about_us_container ._description {
          font-size: 14px; } }

.dw_project__section1 ._our_product_wrap {
  margin-bottom: 100px !important; }
  .dw_project__section1 ._our_product_wrap ._our_product_col {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px 0 rgba(84, 96, 127, 0.1);
    background: #ffffff;
    border: solid 1px #f4f4f4;
    padding-left: 60px;
    padding-right: 60px; }
    @media only screen and (max-width: 1199.5px) {
      .dw_project__section1 ._our_product_wrap ._our_product_col {
        flex-direction: column;
        gap: 5px !important; }
        .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_image_container {
          order: 1;
          flex: unset !important;
          height: 210px !important; }
        .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_container {
          order: 2;
          padding-bottom: 50px;
          text-align: center; } }
    @media only screen and (max-width: 767.5px) {
      .dw_project__section1 ._our_product_wrap ._our_product_col {
        padding-left: 30px;
        padding-right: 30px; }
        .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_image_container {
          height: 160px !important; } }
    .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_image_container {
      position: relative;
      flex: 0 0 280px;
      max-width: 280px;
      min-width: 280px;
      height: 220px; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_image_container {
          flex: 0 0 230px;
          max-width: 230px;
          min-width: 230px; } }
      .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_image_container ._our_product_image {
        display: block;
        width: 100%;
        height: auto;
        position: absolute;
        top: -80px;
        right: 0; }
    .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_container ._title {
      font-size: 38px;
      font-weight: 700;
      color: #005c3d;
      margin-bottom: 15px; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_container ._title {
          font-size: 24px; } }
    .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_container ._description {
      font-size: 18px;
      font-weight: 400;
      color: #000000; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section1 ._our_product_wrap ._our_product_col ._our_product_container ._description {
          font-size: 14px; } }

.dw_project__section2 ._our_objective_wrap {
  margin-bottom: 100px !important;
  max-width: 1000px;
  margin: auto; }
  .dw_project__section2 ._our_objective_wrap ._title {
    font-size: 30px;
    font-weight: 700;
    color: #004539;
    text-align: center;
    margin-bottom: 45px; }
    @media only screen and (max-width: 767.5px) {
      .dw_project__section2 ._our_objective_wrap ._title {
        font-size: 20px; } }
  .dw_project__section2 ._our_objective_wrap ._our_objective_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px; }
    .dw_project__section2 ._our_objective_wrap ._our_objective_row ._btn_objective {
      border-radius: 40px;
      width: 200px;
      padding: 10px;
      text-align: center;
      background: #ffffff;
      color: #1e1e1e;
      border: solid 1px #004539;
      cursor: pointer; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section2 ._our_objective_wrap ._our_objective_row ._btn_objective {
          font-size: 12px; } }
      .dw_project__section2 ._our_objective_wrap ._our_objective_row ._btn_objective._active {
        background: #004539;
        color: #ffffff; }
  .dw_project__section2 ._our_objective_wrap ._objective_description {
    text-align: center;
    display: none; }
    @media only screen and (max-width: 767.5px) {
      .dw_project__section2 ._our_objective_wrap ._objective_description {
        font-size: 14px; } }
    .dw_project__section2 ._our_objective_wrap ._objective_description._active {
      display: block; }

.dw_project__section2 ._our_commitment_wrap {
  margin-bottom: 100px !important; }
  .dw_project__section2 ._our_commitment_wrap ._commitment_grid {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin: 40px 0; }
    @media only screen and (max-width: 1199.5px) {
      .dw_project__section2 ._our_commitment_wrap ._commitment_grid {
        flex-direction: column; }
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_image {
          width: 100% !important;
          order: 1; }
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container {
          gap: 30px;
          padding: 60px 50px !important;
          order: 2; } }
    .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_image {
      width: 670px;
      height: auto; }
      @media only screen and (max-width: 1400px) {
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_image {
          width: 610px; } }
      @media only screen and (max-width: 1350px) {
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_image {
          width: 590px; } }
      @media only screen and (max-width: 1300px) {
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_image {
          width: 550px; } }
      @media only screen and (max-width: 1250px) {
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_image {
          width: 530px; } }
    .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container {
      padding: 40px 50px;
      border-radius: 20px;
      background: #f1f2e4;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container {
          padding: 25px 30px !important; } }
      .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container ._text1 {
        font-size: 16px;
        color: #1e1e1e; }
        @media only screen and (max-width: 767.5px) {
          .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container ._text1 {
            font-size: 14px; } }
      .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container ._text2 {
        font-size: 22px;
        font-weight: 700;
        color: #004539; }
        @media only screen and (max-width: 767.5px) {
          .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container ._text2 {
            font-size: 18px; } }
      .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container ._learn_more_btn {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        border-radius: 40px;
        background-image: linear-gradient(to right, #005c3d, #004539);
        padding: 10px 50px;
        border: solid 1px #005c3d;
        text-decoration: none;
        width: 200px;
        text-align: center; }
        @media only screen and (max-width: 767.5px) {
          .dw_project__section2 ._our_commitment_wrap ._commitment_grid ._commitment_container ._learn_more_btn {
            font-size: 16px;
            width: 100%; } }

.dw_project__section3 ._sustainability_wrap {
  margin-top: 80px;
  margin-bottom: 80px; }
  .dw_project__section3 ._sustainability_wrap ._sustainability_row {
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-bottom: 50px; }
    @media only screen and (max-width: 1199.5px) {
      .dw_project__section3 ._sustainability_wrap ._sustainability_row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px;
        max-width: 600px;
        margin: auto;
        margin-bottom: 50px !important; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_row ._text {
          justify-content: center; } }
    @media only screen and (max-width: 1199.5px) and (max-width: 1199.5px) {
      .dw_project__section3 ._sustainability_wrap ._sustainability_row ._text {
        max-width: 400px;
        margin: auto; } }
    @media only screen and (max-width: 1199.5px) and (max-width: 767.5px) {
      .dw_project__section3 ._sustainability_wrap ._sustainability_row ._text {
        font-size: 24px !important; } }
    @media only screen and (max-width: 1199.5px) {
        .dw_project__section3 ._sustainability_wrap ._sustainability_row ._description {
          justify-content: center; } }
    @media only screen and (max-width: 1199.5px) and (max-width: 1199.5px) {
      .dw_project__section3 ._sustainability_wrap ._sustainability_row ._description {
        font-size: 20px !important; } }
    @media only screen and (max-width: 1199.5px) and (max-width: 767.5px) {
      .dw_project__section3 ._sustainability_wrap ._sustainability_row ._description {
        font-size: 14px !important; } }
    .dw_project__section3 ._sustainability_wrap ._sustainability_row ._text {
      font-size: 38px;
      font-weight: 700;
      color: #004539;
      display: flex;
      align-items: center; }
    .dw_project__section3 ._sustainability_wrap ._sustainability_row ._description {
      font-size: 18px;
      font-weight: 400;
      color: #004539;
      display: flex;
      align-items: center; }
  .dw_project__section3 ._sustainability_wrap ._sustainability_grid {
    gap: 15px; }
    @media only screen and (max-width: 1199.5px) {
      .dw_project__section3 ._sustainability_wrap ._sustainability_grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto; } }
    .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item {
      display: flex;
      flex-direction: row;
      border-radius: 20px;
      background-image: linear-gradient(to right, #f8f8f8, #ededed 100%);
      padding: 35px 60px;
      gap: 50px;
      transition: transform 0.3s ease; }
      .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item:hover {
        box-shadow: 0 4px 14px 3px rgba(0, 92, 61, 0.35);
        border: solid 1px #005c3d;
        background-image: linear-gradient(to right, #005c3d, #004539 100%); }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item:hover ._item_image_container ._item_image {
          display: none; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item:hover ._item_image_container ._item_image_hover {
          display: block; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item:hover ._item_container ._item_title {
          color: #f1f2e4; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item:hover ._item_container ._item_description {
          color: #f1f2e4; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item {
          flex-direction: column;
          gap: 30px; } }
      .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item:hover {
        transform: translateY(-5px); }
      .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_image_container {
        display: flex;
        justify-content: center;
        align-items: center; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_image_container ._item_image {
          display: block;
          width: 65px;
          height: auto; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_image_container ._item_image_hover {
          display: none;
          width: 65px;
          height: auto; }
      .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px; }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_container ._item_title {
          font-size: 24px;
          font-weight: 700;
          color: #004539; }
          @media only screen and (max-width: 767.5px) {
            .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_container ._item_title {
              text-align: center; } }
        .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_container ._item_description {
          font-size: 18px;
          font-weight: 400;
          color: #000000; }
          @media only screen and (max-width: 767.5px) {
            .dw_project__section3 ._sustainability_wrap ._sustainability_grid ._sustainability_item ._item_container ._item_description {
              font-size: 14px;
              text-align: center; } }

@media only screen and (max-width: 1199.5px) {
  .dw_project__section3 {
    position: relative; }
    .dw_project__section3 ._future_growth_dekstop_display {
      display: none !important; }
    .dw_project__section3 ._future_growth_mobile_display {
      display: block !important; } }

.dw_project__section3 ._future_growth_wrap {
  background-image: url("../assets/img/banner/img-banner-2.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  @media only screen and (min-width: 2000px) {
    .dw_project__section3 ._future_growth_wrap {
      height: 800px; } }
  @media only screen and (max-width: 1199.5px) {
    .dw_project__section3 ._future_growth_wrap {
      background-position: unset; } }
  @media only screen and (max-width: 767.5px) {
    .dw_project__section3 ._future_growth_wrap {
      background-size: cover;
      width: 100%;
      height: 280px; } }
  .dw_project__section3 ._future_growth_wrap ._future_growth_section {
    width: 100%; }
  .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display {
    display: block; }
    .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display ._future_growth_comment {
      width: 500px;
      padding: 40px 40px;
      background: #f1f2e4;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 30px;
      margin-left: auto; }
      .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display ._future_growth_comment ._title {
        font-size: 30px;
        font-weight: 700;
        color: #004539; }
      .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display ._future_growth_comment ._description_container ._description1,
      .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display ._future_growth_comment ._description_container ._description2 {
        font-size: 20px;
        font-weight: 400;
        color: #004539; }
      .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display ._future_growth_comment ._description_container ._description1 {
        padding-bottom: 15px; }
      .dw_project__section3 ._future_growth_wrap ._future_growth_dekstop_display ._future_growth_comment ._contact_us_btn {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        border-radius: 40px;
        background-image: linear-gradient(to right, #005c3d, #004539);
        padding: 10px 50px;
        border: solid 1px #005c3d;
        text-decoration: none;
        width: 200px;
        text-align: center; }

.dw_project__section3 ._future_growth_mobile_display {
  display: none; }
  .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment {
    width: 100%;
    padding: 40px 40px;
    background: #f1f2e4;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    margin-left: auto;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -50px; }
    @media only screen and (max-width: 767.5px) {
      .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment {
        padding: 30px 30px;
        gap: 15px; } }
    .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._title {
      font-size: 30px;
      font-weight: 700;
      color: #004539;
      text-align: center; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._title {
          font-size: 24px !important; } }
    .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._description_container ._description1,
    .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._description_container ._description2 {
      font-size: 20px;
      font-weight: 400;
      color: #004539;
      text-align: center; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._description_container ._description1,
        .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._description_container ._description2 {
          font-size: 14px !important; } }
    .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._description_container ._description1 {
      padding-bottom: 15px; }
    .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._contact_us_btn {
      display: inline-block;
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      border-radius: 40px;
      background-image: linear-gradient(to right, #005c3d, #004539);
      padding: 10px 50px;
      border: solid 1px #005c3d;
      text-decoration: none;
      width: 200px;
      text-align: center;
      margin: auto; }
      @media only screen and (max-width: 767.5px) {
        .dw_project__section3 ._future_growth_mobile_display ._future_growth_comment ._contact_us_btn {
          margin-top: 10px !important;
          font-size: 16px; } }
