@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito&family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

@font-face {
  font-family: "Metropolis";
  font-weight: 300;
  font-style: normal;
  src: local("Metropolis"), local("Metropolis-300"),
    url("../fonts/metropolis/Metropolis-Thin.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  font-weight: 400;
  font-style: normal;
  src: local("Metropolis"), local("Metropolis-400"),
    url("../fonts/metropolis/Metropolis-Light.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  font-weight: 500;
  font-style: normal;
  src: local("Metropolis"), local("Metropolis-500"),
    url("../fonts/metropolis/Metropolis-Medium.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  font-weight: 800;
  font-style: normal;
  src: local("Metropolis"), local("Metropolis-800"),
    url("../fonts/metropolis/Metropolis-Bold.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  font-weight: 900;
  font-style: normal;
  src: local("Metropolis"), local("Metropolis-800"),
    url("../fonts/metropolis/Metropolis-ExtraBold.otf") format("opentype");
  font-display: swap;
}

.f-outfit {
  font-family: "Outfit", sans-serif;
}

.f-roboto-flex {
  font-family: "Roboto Flex", sans-serif;
}

.f-inter-tight {
  font-family: "Inter Tight", sans-serif;
}

.text-decoration-underlined {
  text-decoration: underline !important;
}

.text-upper-first-letter:first-letter {
  text-transform: uppercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

:root {
  --black: #0a1f30;
  --white: #ffffff;
  --grey: #c0c0c0;
  --light-grey: #f7f6f6;
  --dark-blue: #1964ab;
  --dark-blue-2: #003262;
  --dark-grey: #636466;
  --new-main-color: #115b6f;
  --new-main-color-soft: #15718a;
  --new-submain-color: #bfde06;
  --new-main-color-soft-bg: #cfdee3;
}

.card-article {
  border-radius: 10px !important;
}

.card-article:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.card-article .card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-team {
  border-radius: 10px !important;
}

.card-team:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.card-team .card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* .card-team .card-header::after {
  content: " ";
  background: linear-gradient(180deg, rgba(0, 50, 98, 0) 0%, #003262 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
} */

.real-example-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: #0d172a66;
  border-radius: 6px;
}

.img-author-article {
  height: 30px;
  width: 30px !important;
  border-radius: 100%;
}

.img-author-detail-article {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  margin-right: 7px;
}

.label-author {
  font-size: 11px;
  margin-left: 5px;
}

.multiline-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* start showing ellipsis when 3rd line is reached */
}

.readmore-article {
  text-decoration: none;
  font-size: 18px;
  color: var(--new-main-color-soft);
}

.color-submain {
  color: var(--new-submain-color) !important;
}

.color-main {
  color: var(--new-main-color) !important;
}

.color-main-soft {
  color: var(--new-main-color-soft) !important;
}

.bg-maincolor {
  background-color: var(--new-main-color);
}

.bg-maincolor-soft {
  background-color: var(--new-main-color-soft);
}

.bg-maincolor-soft-2 {
  background-color: var(--new-main-color-soft-bg);
}

.text-maincolor {
  color: var(--new-main-color);
}

.btn-maincolor {
  background-color: var(--new-main-color-soft);
  border-color: var(--new-main-color-soft);
  color: #fff !important;
}

.btn-maincolor:hover {
  background-color: var(--new-main-color);
  border-color: var(--new-main-color);
  color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.btn-maincolor:active,
.btn-maincolor:focus {
  background-color: var(--new-main-color-soft);
  border-color: var(--new-main-color-soft);
  color: #fff;
}

.btn-outline-maincolor {
  background-color: var(--white);
  border-color: var(--new-main-color-soft);
  color: var(--new-main-color);
}

.btn-outline-maincolor:hover {
  background-color: var(--new-main-color-soft);
  border-color: var(--new-main-color-soft);
  color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: transparent;
}

html,
body {
  font-family: "Inter", sans-serif;
  /* font-weight: 400; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar {
  height: 90px;
  /* background-color: var(--new-main-color-soft); */
  /* background-color: transparent; */
}

.navbar.fixed-top.scrolled {
  background-color: var(--new-main-color-soft) !important;
  transition: background-color 200ms linear;
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: var(--white);
  font-weight: 800;
  border-bottom: 3px solid var(--white);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 0px !important;
  padding-right: 0px !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.nav-item {
  text-align: center;
}

.dropdown-toggle::after {
  content: none;
}

.dropdown-toogle i {
  font-size: 11px;
}

.dropdown-item {
  font-size: 14px;
}

.nav-link.disabled {
  color: rgb(49 49 49);
}

.active-nav {
  position: absolute;
  width: 20px;
  border: 3px solid #fff;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  transform: translateX(-50%);
}

.active-nav {
  display: none;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }

  .active-nav {
    display: inline-block;
  }

  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }

  .navbar .nav-item:hover .dropdown-menu.dropdown-localization {
    left: -120px;
  }

  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

.carousel-item img {
  object-fit: cover;
}

.carousel-caption {
  padding-left: 13%;
  padding-right: 13%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 0;
  padding-bottom: 0;
  color: #fff;
  vertical-align: middle;
  text-align: left;
  width: 100%;
  max-width: 1098px;
  display: flex;
  align-items: center;
}

.fw-bold {
  font-weight: 800 !important;
}

.btn-caption-carousel {
  font-size: 14px;
}

footer {
  background: rgb(17 88 112);
  background: linear-gradient(
    35deg,
    rgb(16 74 98) 100%,
    rgb(26 105 126) 75%,
    rgb(26 120 139) 55%,
    rgb(17 78 102) 0%
  );
}

footer p {
  margin-bottom: 0px;
}

.footer .contact h5 {
  font-size: 14px;
}

.footer .contact .detail > * {
  font-size: 12px;
  margin-bottom: 0;
}

.footer .contact {
  color: #fff;
  margin-bottom: 30px;
}

.footer .footer-line {
  border: 1px solid var(--grey);
}

.social-media-icon {
  height: 35px;
  width: 35px;
  border: 1px solid var(--new-submain-color);
  border-radius: 100%;
  text-align: center;
  line-height: 35px;
  display: inline-block;
  margin-right: 4px;
  color: var(--new-submain-color);
}

.social-media-icon:hover {
  color: var(--new-main-color);
  background-color: var(--new-submain-color);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.social-media-icon i {
  font-size: 16px;
}

.social-media a {
  color: transparent;
}

.footer .copyright {
  font-family: "Nunito";
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-grey);
  padding-top: 30px;
  padding-bottom: 44px;
}

.dropdown-menu {
  border-radius: 0px 0px 12px 12px;
  font-size: 16px;
  font-weight: 500;
  border-color: #fff;
  border-top: 3px solid var(--dark-blue);
  padding: 0px 0px 10px 0px;
}

.dropdown-menu .dropdown-item {
  color: var(--dark-grey);
}

.dropdown-item {
  padding: 12px;
  border-top: 1px solid #cecece;
}

.btn.btn-search {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 50%;
}

.input-search {
  position: absolute;
  width: 300px;
  margin-left: -310px;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--light-grey);
}

.container-home {
  background: url("../images/background-container-home.png") top left no-repeat;
  padding-bottom: 98px;
}

.container-home .action-box {
  margin-top: -64px;
}

.container-home .action-box a {
  text-decoration: none;
}

.container-home .action-box .card {
  margin-bottom: 16px;
  z-index: 1;
  padding: 12px;
  border: 1px solid var(--light-grey);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 17%);
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 17%);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 17%);
}

.container-home .action-box .card .icon-wrapper {
  position: relative;
  height: 50px;
}

.container-home .action-box .card .icon-wrapper img {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  opacity: 1;
  visibility: visible;
}

.container-home .action-box .card:hover .icon-wrapper img {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}

.container-home .action-box .card .icon-wrapper img.hover {
  opacity: 0;
  visibility: hidden;
}

.container-home .action-box .card:hover .icon-wrapper img.hover {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}

.container-home .action-box .card:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  background-image: url("../images/background-action-box.png");
  background-position: top right;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: border-color 0.5s ease-in, background-color 0.5s ease-in;
  transition: border-color 0.5s ease-in, background-color 0.5s ease-in;
}

.container-home .action-box .card:hover * {
  color: #fff !important;
}

.container-home .action-box h5.title {
  font-size: 16px;
  color: var(--black);
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.container-home .action-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-grey);
}

.container-home .action-box h5 {
  font-size: 18px;
  color: var(--grey);
  text-decoration: none;
}

.container-home .action-box .card-footer {
  border-top: 0;
  background-color: transparent;
}

.container-home .who-are {
  /* background: url('../images/background-who-are.png') bottom right no-repeat; */
  padding-top: 77px;
  padding-bottom: 100px;
}

.container-home .who-are h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 27px;
  line-height: 70px;
}

.container-home .who-are li {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' rx='10' fill='%231964AB'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  list-style-type: "";
  padding-inline-start: 0;
  text-align: justify;
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  padding-left: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.container-home .who-are ul {
  padding-left: 0;
}

.container-home .who-are p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  text-align: justify;
  text-justify: inter-word;
}

.container-home .who-are .btn {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-blue);
  padding: 15.5px 60px;
  background-color: #fff;
}

.container-home .who-are .description {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
}

.bg-heading {
  background-image: url("../images/background-heading.svg");
  background-repeat: no-repeat;
  padding-left: 14px;
}

.container-home .our-project {
  padding-top: 50px;
  background-color: #fff;
  padding-bottom: 60px;
  margin-bottom: 100px;
}

.portfolio .row .col-12 {
  padding-right: 7px;
  padding-left: 7px;
}

.portfolio .row .col-12 .card-body {
  padding: 14px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper .point-wrapper {
  position: absolute;
  width: 100%;
  top: 0;
}

.map-wrapper .point-wrapper > item.point-item {
  position: absolute;
}

.map-wrapper .point-wrapper > item.point-item > .dialog {
  position: absolute;
  bottom: 36px;
  left: -12px;
  visibility: hidden;
  opacity: 0;
  padding-bottom: 10px;
  display: block;
  z-index: 1;
}

@media (max-width: 768px) {
  .map-wrapper .point-wrapper > item.point-item > .dialog {
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background: #0000009c;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
  }
}

.map-wrapper .point-wrapper > item.point-item .card {
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  text-align: left;
  padding: 14px;
  width: 268px;
}

.map-wrapper .point-wrapper > item.point-item .card .card-body {
  padding: 0;
}

.map-wrapper .point-wrapper > item.point-item .card > .card-body img {
  height: 170px;
  object-fit: cover;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

.map-wrapper .point-wrapper > item.point-item .card > .card-body label {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.map-wrapper .point-wrapper > item.point-item .card > .card-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.map-wrapper .point-wrapper > item.point-item .card > .card-body a {
  font-weight: 800;
  font-size: 14px;
  width: 100%;
  display: inline-block;
  line-height: 19px;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.4302 5.92969L20.5002 11.9997L14.4302 18.0697' stroke='%231964AB' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3.5 12H20.33' stroke='%231964AB' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  text-decoration: none;
}

@media (min-width: 769px) {
  .map-wrapper .point-wrapper > item.point-item:hover .dialog {
    visibility: visible;
    opacity: 1;
  }
}

.container-home .our-project h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  display: inline-block;
}

.container-home .our-project > .description {
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-grey);
  max-width: 858px;
  margin: 0 auto;
  margin-bottom: 140px;
}

.container-home .our-project .map-wrapper > img {
  margin-bottom: 32px;
  filter: brightness(0.9);
}

.btn-primary {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.container-home .our-project .btn-primary {
  font-size: 14px;
  font-weight: 800;
  padding: 14.5px 45.5px;
  box-shadow: 0px 10px 30px rgba(25, 100, 171, 0.35);
  border-radius: 4px;
}

.container-home-news .news h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 52px;
}

.container-home-news .news {
  padding: 6px;
}

/* .container-home-news .news .card {
  background: #ffffff;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
} */

.container-home-news .news .card-body {
  padding: 14px;
}

.container-home-news .news .card-body .img-news {
  border-radius: 4px;
  max-width: 390px;
  object-fit: cover;
  aspect-ratio: 39/28;
}

/* .container-home-news .news .card-body a::before {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 39/28;
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  background: linear-gradient(
      180deg,
      rgba(4, 4, 6, 0) 57.14%,
      rgba(4, 4, 6, 0.48) 100%
    ),
    url();
} */

.container-home-news .news .card-body .date-news {
  margin-top: -32px;
  padding: 0 12px;
  line-height: 22px;
  position: relative;
}

.container-home-news .news .card-body h5 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-top: 25px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.container-home-news .news .card-body a {
  text-decoration: none;
  position: relative;
  color: 0;
}

.container-home-news .news .card-body .date-news p {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.container-home-news .news .card-body .date-news span {
  vertical-align: middle;
}

.container-home-news .news .card-body .owl-stage {
  display: flex;
}

@media (min-width: 768px) {
  .container-home-news .news .owl-carousel .owl-item {
    max-width: 418px !important;
  }
}

span.ic-calendar {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.0627 2.67V3.12584L12.5166 3.16787C13.4359 3.25299 14.0641 3.56259 14.4806 4.00471C14.8753 4.4237 15.1227 5.00745 15.2077 5.755H2.79263C2.8776 5.00745 3.12507 4.4237 3.51975 4.00471C3.93622 3.56259 4.56449 3.25299 5.48377 3.16787L5.93767 3.12584V2.67V1.5C5.93767 1.48694 5.94287 1.47128 5.95716 1.45699C5.97145 1.4427 5.98711 1.4375 6.00017 1.4375C6.01324 1.4375 6.02889 1.4427 6.04318 1.45699C6.05747 1.47128 6.06267 1.48694 6.06267 1.5V2.625V3.125H6.56267H11.4377H11.9377V2.625V1.5C11.9377 1.48694 11.9429 1.47128 11.9572 1.45699C11.9715 1.4427 11.9871 1.4375 12.0002 1.4375C12.0132 1.4375 12.0289 1.4427 12.0432 1.45699C12.0575 1.47128 12.0627 1.48694 12.0627 1.5V2.67Z' fill='white' stroke='white'/%3E%3Cpath d='M7.24198 14.029L7.25678 14.0157L7.27048 14.0013C7.48748 13.7722 7.625 13.4563 7.625 13.1249C7.625 12.7935 7.48748 12.4776 7.27048 12.2485L7.25678 12.2341L7.24198 12.2207C7.12649 12.1168 6.99625 12.0333 6.85231 11.9733C6.54923 11.8471 6.20077 11.8471 5.89769 11.9733C5.75375 12.0333 5.62351 12.1168 5.50802 12.2207L5.49322 12.2341L5.47952 12.2485C5.26252 12.4776 5.125 12.7935 5.125 13.1249C5.125 13.4563 5.26252 13.7722 5.47952 14.0013L5.49322 14.0157L5.50802 14.029C5.62351 14.133 5.75375 14.2164 5.89769 14.2764C6.03884 14.3352 6.20165 14.3749 6.375 14.3749C6.54835 14.3749 6.71116 14.3352 6.85231 14.2764C6.99625 14.2164 7.12649 14.133 7.24198 14.029ZM7.24198 11.404L7.26154 11.3864L7.27915 11.3669C7.38309 11.2514 7.46656 11.1211 7.52654 10.9772C7.58535 10.836 7.625 10.6732 7.625 10.4999C7.625 10.3265 7.58535 10.1637 7.52654 10.0226C7.46656 9.87864 7.38309 9.74839 7.27915 9.6329L7.26154 9.61334L7.24198 9.59574C7.12649 9.49179 6.99625 9.40832 6.85231 9.34834C6.54923 9.22206 6.20077 9.22206 5.89769 9.34834C5.75375 9.40832 5.62351 9.49179 5.50802 9.59574L5.48846 9.61334L5.47085 9.6329C5.36691 9.74839 5.28344 9.87864 5.22346 10.0226C5.16465 10.1637 5.125 10.3265 5.125 10.4999C5.125 10.6732 5.16465 10.836 5.22346 10.9772C5.28344 11.1211 5.36691 11.2514 5.47085 11.3669L5.48846 11.3864L5.50802 11.404C5.62351 11.508 5.75375 11.5914 5.89769 11.6514C6.03884 11.7102 6.20165 11.7499 6.375 11.7499C6.54835 11.7499 6.71116 11.7102 6.85231 11.6514C6.99625 11.5914 7.12649 11.508 7.24198 11.404ZM9.86698 11.404L9.88178 11.3907L9.89548 11.3763C10.1125 11.1472 10.25 10.8313 10.25 10.4999C10.25 10.1685 10.1125 9.85257 9.89548 9.62351L9.88178 9.60906L9.86698 9.59574C9.7536 9.49369 9.626 9.41137 9.48518 9.35165C9.17749 9.21346 8.82251 9.21346 8.51482 9.35165C8.374 9.41138 8.2464 9.49369 8.13302 9.59574L8.11822 9.60906L8.10452 9.62351C7.88752 9.85257 7.75 10.1685 7.75 10.4999C7.75 10.8313 7.88752 11.1472 8.10452 11.3763L8.11822 11.3907L8.13302 11.404C8.24851 11.508 8.37875 11.5914 8.52269 11.6514C8.66384 11.7102 8.82665 11.7499 9 11.7499C9.17335 11.7499 9.33616 11.7102 9.47731 11.6514C9.62125 11.5914 9.75149 11.508 9.86698 11.404ZM3 7.87988H15C15.1364 7.87988 15.25 7.99353 15.25 8.12988V12.7499C15.25 13.7982 14.9878 14.5955 14.493 15.1284C14.0043 15.6546 13.2172 15.9999 12 15.9999H6C4.7828 15.9999 3.99565 15.6546 3.50702 15.1284C3.01216 14.5955 2.75 13.7982 2.75 12.7499V8.12988C2.75 7.99353 2.86364 7.87988 3 7.87988Z' fill='white' stroke='white'/%3E%3C/svg%3E");
  display: inline-block;
  width: 18px !important;
  height: 18px !important;
}

span.ic-calendar-grey {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.0627 2.67V3.12584L12.5166 3.16787C13.4359 3.25299 14.0641 3.56259 14.4806 4.00471C14.8753 4.4237 15.1227 5.00745 15.2077 5.755H2.79263C2.8776 5.00745 3.12507 4.4237 3.51975 4.00471C3.93622 3.56259 4.56449 3.25299 5.48377 3.16787L5.93767 3.12584V2.67V1.5C5.93767 1.48694 5.94287 1.47128 5.95716 1.45699C5.97145 1.4427 5.98711 1.4375 6.00017 1.4375C6.01324 1.4375 6.02889 1.4427 6.04318 1.45699C6.05747 1.47128 6.06267 1.48694 6.06267 1.5V2.625V3.125H6.56267H11.4377H11.9377V2.625V1.5C11.9377 1.48694 11.9429 1.47128 11.9572 1.45699C11.9715 1.4427 11.9871 1.4375 12.0002 1.4375C12.0132 1.4375 12.0289 1.4427 12.0432 1.45699C12.0575 1.47128 12.0627 1.48694 12.0627 1.5V2.67Z' fill='%23C0C0C0' stroke='%23C0C0C0'/%3E%3Cpath d='M7.24198 14.029L7.25678 14.0157L7.27048 14.0013C7.48748 13.7722 7.625 13.4563 7.625 13.1249C7.625 12.7935 7.48748 12.4776 7.27048 12.2485L7.25678 12.2341L7.24198 12.2207C7.12649 12.1168 6.99625 12.0333 6.85231 11.9733C6.54923 11.8471 6.20077 11.8471 5.89769 11.9733C5.75375 12.0333 5.62351 12.1168 5.50802 12.2207L5.49322 12.2341L5.47952 12.2485C5.26252 12.4776 5.125 12.7935 5.125 13.1249C5.125 13.4563 5.26252 13.7722 5.47952 14.0013L5.49322 14.0157L5.50802 14.029C5.62351 14.133 5.75375 14.2164 5.89769 14.2764C6.03884 14.3352 6.20165 14.3749 6.375 14.3749C6.54835 14.3749 6.71116 14.3352 6.85231 14.2764C6.99625 14.2164 7.12649 14.133 7.24198 14.029ZM7.24198 11.404L7.26154 11.3864L7.27915 11.3669C7.38309 11.2514 7.46656 11.1211 7.52654 10.9772C7.58535 10.836 7.625 10.6732 7.625 10.4999C7.625 10.3265 7.58535 10.1637 7.52654 10.0226C7.46656 9.87864 7.38309 9.74839 7.27915 9.6329L7.26154 9.61334L7.24198 9.59574C7.12649 9.49179 6.99625 9.40832 6.85231 9.34834C6.54923 9.22206 6.20077 9.22206 5.89769 9.34834C5.75375 9.40832 5.62351 9.49179 5.50802 9.59574L5.48846 9.61334L5.47085 9.6329C5.36691 9.74839 5.28344 9.87864 5.22346 10.0226C5.16465 10.1637 5.125 10.3265 5.125 10.4999C5.125 10.6732 5.16465 10.836 5.22346 10.9772C5.28344 11.1211 5.36691 11.2514 5.47085 11.3669L5.48846 11.3864L5.50802 11.404C5.62351 11.508 5.75375 11.5914 5.89769 11.6514C6.03884 11.7102 6.20165 11.7499 6.375 11.7499C6.54835 11.7499 6.71116 11.7102 6.85231 11.6514C6.99625 11.5914 7.12649 11.508 7.24198 11.404ZM9.86698 11.404L9.88178 11.3907L9.89548 11.3763C10.1125 11.1472 10.25 10.8313 10.25 10.4999C10.25 10.1685 10.1125 9.85257 9.89548 9.62351L9.88178 9.60906L9.86698 9.59574C9.7536 9.49369 9.626 9.41137 9.48518 9.35165C9.17749 9.21346 8.82251 9.21346 8.51482 9.35165C8.374 9.41138 8.2464 9.49369 8.13302 9.59574L8.11822 9.60906L8.10452 9.62351C7.88752 9.85257 7.75 10.1685 7.75 10.4999C7.75 10.8313 7.88752 11.1472 8.10452 11.3763L8.11822 11.3907L8.13302 11.404C8.24851 11.508 8.37875 11.5914 8.52269 11.6514C8.66384 11.7102 8.82665 11.7499 9 11.7499C9.17335 11.7499 9.33616 11.7102 9.47731 11.6514C9.62125 11.5914 9.75149 11.508 9.86698 11.404ZM3 7.87988H15C15.1364 7.87988 15.25 7.99353 15.25 8.12988V12.7499C15.25 13.7982 14.9878 14.5955 14.493 15.1284C14.0043 15.6546 13.2172 15.9999 12 15.9999H6C4.7828 15.9999 3.99565 15.6546 3.50702 15.1284C3.01216 14.5955 2.75 13.7982 2.75 12.7499V8.12988C2.75 7.99353 2.86364 7.87988 3 7.87988Z' fill='%23C0C0C0' stroke='%23C0C0C0'/%3E%3C/svg%3E");
  display: inline-block;
  width: 18px;
  height: 18px;
}

.container-home-news .news .card-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-grey);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news .card-body > a > p {
  font-family: "Montserrat", sans-serif;
}

.page-breadcrumb {
  /* background-image: url("../images/background-sub.png"); */
  background-image: linear-gradient(
    to right,
    rgb(21 113 138) 35%,
    rgba(21, 100, 138, 0)
  );
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 90px;
  padding-top: 3rem;
}

.page-breadcrumb h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}

.page-breadcrumb .breadcrumb {
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 425px) {
  .page-breadcrumb h1 {
    font-size: 21px;
  }

  .page-breadcrumb .breadcrumb {
    font-size: 12px;
  }
}

.page-breadcrumb .breadcrumb a {
  text-decoration: none;
  color: #fff;
}

.page-breadcrumb .breadcrumb .active {
  color: #fff;
  font-weight: bold;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  padding-right: 4px;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 4px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: none;
}

.breadcrumb-item {
  font-size: 14px;
  line-height: 16px;
}

.breadcrumb-item i {
  font-size: 16px;
  margin: 0px 7px;
}

.container h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 52px;
}

.container-content {
  padding-top: 40px;
}

.container-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-grey);
}

.bg-about-us {
  background-image: url("../images/background-about-us.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  margin-top: 99px;
  padding-top: 44px;
  padding-bottom: 110px;
}

.youtube-about-us {
  display: block;
  margin: 0 auto;
  width: -webkit-fill-available;
  max-width: 805px;
}

.bg-our-story {
  background: url("../images/background-our-story.png") no-repeat;
  background-size: cover;
  height: 567px;
  position: relative;
  z-index: -1;
}

.breadcrumb-body {
  height: 330px;
  text-align: center;
  padding-top: 130px;
  background: url("../images/background-sub-2.png") bottom right no-repeat;
  background-position-y: 207px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-size: 180px 108px;
}

@media (min-width: 768px) {
  .breadcrumb-body {
    height: 330px;
    text-align: center;
    padding-top: 130px;
    background: url("../images/background-sub-2.png") bottom right no-repeat;
    background-position-y: 139px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }

  footer {
    background: rgb(17 88 112);
    background: linear-gradient(
      45deg,
      rgb(16 74 98) 0%,
      rgb(26 105 126) 55%,
      rgb(26 120 139) 75%,
      rgb(17 78 102) 100%
    );
  }
}

.container-our-story .card {
  border-color: var(--light-grey);
}

.bg-our-story-bottom {
  background: url("../images/background-our-story-2.png");
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 43px;
}

.container-our-story .card-body #gallery {
  height: 180px;
  margin: auto;
  margin-bottom: 48px;
  width: 95%;
}

.container-our-story .card-body #gallery .gallery-item {
  max-height: 250px;
  width: 70%;
  max-width: 400px;
  cursor: pointer;
  object-fit: cover;
  aspect-ratio: 8/5;
}

#buttons-galery {
  display: flex;
  justify-content: space-between;
}

#buttons-galery .left {
  position: relative;
  top: 150px;
  margin-left: -40px;
}

#buttons-galery .right {
  position: relative;
  top: 150px;
  right: 0px;
  margin-right: -40px;
}

#buttons-galery button {
  border-radius: 100%;
  height: 35px;
  width: 35px;
  background-color: #d1e7ed;
  border: 1px solid #8cc3d2;
}

@media (max-width: 768px) {
  #buttons-galery {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
  }

  #buttons-galery .left {
    position: initial;
    margin-left: 0px;
    margin-top: 15px;
  }

  #buttons-galery .right {
    position: initial;
    margin-right: 0px;
    margin-top: 15px;
  }
}

.container-our-story .card-body #gallery .gallery-item {
  border-radius: 0px 40px 0px 40px !important;
}

@media (min-width: 1200px) {
  .container-our-story .card-body #gallery {
    height: 400px;
    overflow: visible !important;
    margin-bottom: 0px;
  }
}

@media (min-width: 768px) {
  .container-our-story .card-body #gallery .gallery-item {
    width: 100%;
  }

  .container-our-story .card-body #gallery {
    height: 400px;
    margin-bottom: 0px;
  }
}

.container-our-story .card-body *:not(h2) {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-grey);
}

.container-our-story h2 {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
}

.container-content.vision {
  padding-top: 75px;
  padding-bottom: 45px;
  background: var(--light-grey);
  position: relative;
  z-index: -1;
}

.vision p {
  max-width: 1166px;
  text-align: center;
  margin: 0 auto;
}

.bg-vision-mission {
  background: url("../images/background-vision-mission.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.vision-mission {
  padding-top: 0px;
  max-width: 1200px;
  padding-bottom: 128px;
}

.vision-mission h5 {
  font-size: 25px;
  font-weight: 800;
  color: var(--black);
  line-height: 40px;
}

.container-content.roadmap {
  padding-top: 151px;
  padding-bottom: 123px;
}

.roadmap img {
  max-width: 100%;
  width: 1024px;
  margin: 0 auto;
  display: block;
}

.vision-mission img.icon {
  margin-right: 20px;
  width: 30px;
  height: 30px;
  margin-top: 3px;
}

.vision-mission p,
.vision-mission p * {
  font-size: 16px !important;
  font-weight: 400 !important;
  margin: 0;
}

.container-content.portfolio .description {
  max-width: 858px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 65px;
}

.container-content.portfolio .description > p {
  margin-bottom: 0;
}

.portfolio.project .map-wrapper > img {
  filter: brightness(0.9);
}

.portfolio.project .card {
  border-radius: 4px;
}

.portfolio.project .card .gradient {
  position: relative;
  display: inline-block;
}

.portfolio.project .card .gradient img {
  border-radius: 4px;
  aspect-ratio: 39/28;
}

.portfolio.project .card .gradient:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 4px;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 6, 0) 57.14%,
    rgba(4, 4, 6, 0.48) 100%
  );
}

.portfolio.project .card .label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.portfolio.project .card:hover .label {
  display: none;
}

.portfolio.project .card:hover .project-content {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.2s ease-in, opacity 0.2s ease-in;
}

.portfolio.project .card .project-content {
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  padding: 16px;
  margin: 16px;
  display: inline-block;
  opacity: 0;
  background: linear-gradient(0deg, rgba(4, 4, 6, 0.62), rgba(4, 4, 6, 0.62));
  border-radius: 4px;
}

.portfolio.project .card .project-content .label-content {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 10px;
}

.portfolio.project .card .project-content p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-overflow: ellipsis;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

@media (max-width: 320px) {
  .portfolio.project .card .project-content p {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.portfolio.project .card .project-content .btn {
  background-color: #fff;
  width: 197px;
  height: 50px;
  max-width: 197px;
  border: 1px solid var(--grey);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.breadcrumb-detail {
  margin-top: 85px;
  text-align: center;
  padding-top: 13px;
  background-color: #d1e7ed;
}

.breadcrumb-detail .breadcrumb {
  display: inline-flex;
  font-size: 14px;
  font-weight: bold;
  color: var(--dark-grey);
  vertical-align: middle;
  padding-top: 8px;
}

.breadcrumb-detail .breadcrumb a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--dark-grey);
}

.breadcrumb-detail .breadcrumb .active {
  color: var(--new-main-color-soft);
}

.container.container-detail {
  padding-top: 60px;
  padding-bottom: 30px;
}

@media (max-width: 425px) {
  .container.container-detail img,
  span {
    width: 100% !important;
    height: auto;
  }
}

.bg-detail-portfolio {
  background-image: url("../images/background-vision-mission.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.container.container-detail .date {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  justify-content: center;
}

.container.container-detail .subtitle {
  margin-bottom: 50px;
}

.container.container-detail .date p {
  font-size: 16px;
  font-weight: 400;
  color: #898989;

  margin-bottom: 0;
  margin-left: 12px;
}

.container.container-detail title {
  display: block;
  font-weight: 800;
  font-size: 40px;
  color: var(--black);
  margin-bottom: 20px;
}

.container.container-detail .title-project {
  display: block;
  font-weight: 800;
  font-size: 40px;
  color: var(--black);
  margin-bottom: 20px;
}

.container.container-detail h5 {
  font-weight: 800;
  font-size: 30px;
  color: var(--black);
  margin-bottom: 46px;
}

.container.container-detail > p {
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 46px;
}

.container.container-detail p,
span {
  height: auto;
}

.container.container-detail.article > p:first-of-type:first-letter,
.container.container-detail.article > span:first-of-type:first-letter {
  font-size: 62px;
  font-weight: 900;
  float: left;
  padding-right: 4px;
  font-family: "Montserrat", sans-serif;
  /* padding: 0 .1rem; */
  /* margin: 0 .3rem 0 0; */
  line-height: 1;
}

.dropdown-menu li {
  position: relative;
}

ul.dropdown-submenu {
  border-top: 3px solid var(--dark-blue);
  display: none;
  position: absolute;
  left: 101%;
  top: -3px;
  background: #fff;
  list-style-type: none;
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  border-radius: 0px 0px 12px 12px;
  padding: 0px 0px 10px 0px;
}

.dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-submenu-right {
  left: 100%;
  right: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.nav-board-director .col {
  width: 160px;
}

.nav-board-director .col img {
  width: 100%;
  object-fit: cover;
}

.container.our-team {
  padding-top: 65px;
}

.our-team h1 {
  font-size: 40px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 50px;
  background: url("../images/dot-blue-3.svg");
  padding-bottom: 24px;
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* .our-team .row {
  padding-bottom: 120px;
} */

.our-team .box {
  width: 100%;
  position: relative;
  margin-bottom: 45px;
}

.our-team .box .card {
  border: 0;
  /* padding-bottom: 30px; */
  display: block;
  border-radius: 10px;
  /* height: 100%; */
  border: 1px solid #cecece;
}

/* .our-team .box:hover a {
  display: block;
  visibility: visible;
  opacity: 1;
} */

/* .our-team .box:hover img {
  transform: scale(1.1);
  transition: transform 0.2s;
} */

.our-team .box:hover .img-wrap::after {
  content: " ";
  background: linear-gradient(180deg, transparent 70%, #1794b2 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.our-team .box h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.our-team .box p {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 0;
}

.our-team .box a {
  font-size: 18px;
  font-weight: 800;
  color: var(--new-main-color-soft);
  text-decoration: underline;
  padding-bottom: 10px;
  line-height: 36px;
}

.our-team .box .img-wrap {
  width: 100%;
  background-size: cover;
  /* margin-bottom: 30px; */
  position: relative;
  display: flex;
  overflow: hidden;
  /* aspect-ratio: 3/4; */
}

.our-team .box .img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0px 0px;
  /* aspect-ratio: 3/4; */
}

.container-content.corporate-structure {
  padding-top: 65px;
  padding-bottom: 100px;
}

.container-content.corporate-structure h2 {
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 24px;
}

.container-content.corporate-structure .description {
  font-size: 28px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 44px;
}

.container-content.corporate-structure img {
  margin-bottom: 82px;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.btn-close {
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0007 36.6668C29.1673 36.6668 36.6673 29.1668 36.6673 20.0002C36.6673 10.8335 29.1673 3.3335 20.0007 3.3335C10.834 3.3335 3.33398 10.8335 3.33398 20.0002C3.33398 29.1668 10.834 36.6668 20.0007 36.6668Z' stroke='%23636466' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.2832 24.7165L24.7165 15.2832' stroke='%23636466' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.7165 24.7165L15.2832 15.2832' stroke='%23636466' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.btn-close-customwhite {
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0007 36.6668C29.1673 36.6668 36.6673 29.1668 36.6673 20.0002C36.6673 10.8335 29.1673 3.3335 20.0007 3.3335C10.834 3.3335 3.33398 10.8335 3.33398 20.0002C3.33398 29.1668 10.834 36.6668 20.0007 36.6668Z' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.2832 24.7165L24.7165 15.2832' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M24.7165 24.7165L15.2832 15.2832' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.modal-header .btn-close {
  padding: 14px;
}

.modal-content {
  border-radius: 0;
}

.bg-modal-footer {
  background: url("../images/background-footer.svg") no-repeat;
  height: 51px;
  background-size: contain;
  background-position: bottom right;
}

.modal-body {
  min-height: 240px;
}

.annual-report > .description {
  width: 100%;
  max-width: 1032px;
  font-size: 16px !important;
  /* font-family: "Montserrat", sans-serif !important; */
  margin: auto;
  margin-bottom: 90px;
}

.annual-report > .description * {
  font-size: 16px !important;
  /* font-family: "Montserrat", sans-serif !important; */
  font-weight: 400;
  color: var(--dark-grey) !important;
}

@media (max-width: 425px) {
  .annual-report > .description * {
    font-size: 16px;
  }
}

.annual-report > .row {
  margin-bottom: 90px;
}

.annual-report .card {
  border-radius: 10px;
  background-color: var(--white);
  border-color: #eee;
}

.annual-report .card:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  -webkit-transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out;
}

.annual-report .card-body {
  padding: 14px;
  text-align: left;
}

.annual-report .card-body img {
  margin-bottom: 20px;
}

.annual-report .card-body h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: "Montserrat";
}

.annual-report .card-body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.annual-report .card-body a {
  font-weight: bold;
  text-decoration: none;
}

span.ico-import {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6997 7.41699C16.6997 7.67533 17.9247 9.21699 17.9247 12.592V12.7003C17.9247 16.4253 16.4331 17.917 12.7081 17.917H7.28307C3.55807 17.917 2.06641 16.4253 2.06641 12.7003V12.592C2.06641 9.24199 3.27474 7.70033 6.22474 7.42533' stroke='%231964AB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 1.66699V12.4003' stroke='%231964AB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.7913 10.542L9.99967 13.3337L7.20801 10.542' stroke='%231964AB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  display: block;
  width: 20px !important;
  height: 20px;
}

.container-fluid.partnership {
  padding: 0;
  height: 100vh;
  /* width: 100vw; */
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-fluid.partnership .header {
  max-width: 940px;
  width: 100%;
  text-align: center;
}

.container-fluid.partnership .header h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 30px;
  font-family: "Inter Tight", sans-serif;
}

.container-fluid.partnership .header p {
  padding-left: 21px;
  padding-right: 21px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 90px;
}

@media (max-width: 425px) {
  .container-fluid.partnership .header h2 {
    font-size: 21px;
  }

  .container-fluid.partnership .header p {
    font-size: 14px;
  }
}

.container-fluid.partnership .header .btn-primary {
  height: 50px;
  width: 100%;
  max-width: 204px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}

.modal-header.partnership {
  padding: 12px 15px;
}

.modal-header.partnership h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.modal-header.partnership h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
}

.modal-body.partnership form {
  border-top: 1px solid var(--grey);
  padding-top: 18px;
  padding-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.form-control {
  border-radius: 10px;
  border: 1px solid var(--grey);
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
  padding: 16px 20px;
  line-height: 1.4;
  font-family: "Metropolis";
}

.form-control:focus {
  box-shadow: 0 0 0 1px rgb(13 110 253 / 25%);
}

label.required::after {
  content: "*";
  color: #e22329;
  margin-left: 3px;
}

.modal-footer.partnership .btn-outline {
  height: 50px;
  width: 150px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.modal-footer.partnership .btn-primary {
  height: 50px;
  width: 150px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--dark-blue);
  color: var(--white);
}

/* input.form-control.form-upload {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.1664 9.83254L8.99138 11.0075C8.34138 11.6575 8.34138 12.7159 8.99138 13.3659C9.64138 14.0159 10.6997 14.0159 11.3497 13.3659L13.1998 11.5159C14.4998 10.2159 14.4998 8.10755 13.1998 6.79922C11.8998 5.49922 9.79139 5.49922 8.48306 6.79922L6.46641 8.81587C5.34974 9.93254 5.34974 11.7409 6.46641 12.8575' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.0003 18.3327C14.6027 18.3327 18.3337 14.6017 18.3337 9.99935C18.3337 5.39698 14.6027 1.66602 10.0003 1.66602C5.39795 1.66602 1.66699 5.39698 1.66699 9.99935C1.66699 14.6017 5.39795 18.3327 10.0003 18.3327Z' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right;
  background-position-x: 97%;
} */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

#modal-notif img {
  margin-top: 40px;
  margin-bottom: 20px;
}

#modal-notif h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

.bg-governance > img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 72/13;
}

.news .news-card {
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  position: relative;
}

.news .news-card .news-img img {
  object-fit: cover;
  width: 100%;
  height: 200px;
}

.news .news-card .news-body {
  padding: 22px;
  position: relative;
  height: 100%;
}

.news .news-card .news-detail {
  position: absolute;
  left: -12px;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.news .news-card .bg-hover:after {
  content: " ";
  background: var(--black);
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}

.news .news-card:hover .bg-hover:after {
  visibility: visible;
  opacity: 0.4;
  transition: visibility 0.2s ease-in, opacity 0.2s ease-in;
}

.news .news-card:hover .news-detail {
  visibility: visible;
  opacity: 1;
  transition: visibility 0.2s ease-in, opacity 0.2s ease-in;
}

.news .news-card .news-detail .btn-outline {
  background-color: white;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-blue);
  border-radius: 4px;
  height: 50px;
  width: 100%;
  max-width: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news .news-card .news-body h5 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news .news-card .news-body p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--dark-grey);
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: "Montserrat", sans-serif;
}

.news .news-card .news-body .news-date {
  line-height: 22px;
  position: absolute;
  bottom: 12px;
}

.news .news-card .news-body .news-date span {
  vertical-align: middle;
  display: inline-block !important;
}

.news .news-card .news-body .news-date p {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey);
}

span.ic-calendar-grey {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.0627 2.67V3.12584L12.5166 3.16787C13.4359 3.25299 14.0641 3.56259 14.4806 4.00471C14.8753 4.4237 15.1227 5.00745 15.2077 5.755H2.79263C2.8776 5.00745 3.12507 4.4237 3.51975 4.00471C3.93622 3.56259 4.56449 3.25299 5.48377 3.16787L5.93767 3.12584V2.67V1.5C5.93767 1.48694 5.94287 1.47128 5.95716 1.45699C5.97145 1.4427 5.98711 1.4375 6.00017 1.4375C6.01324 1.4375 6.02889 1.4427 6.04318 1.45699C6.05747 1.47128 6.06267 1.48694 6.06267 1.5V2.625V3.125H6.56267H11.4377H11.9377V2.625V1.5C11.9377 1.48694 11.9429 1.47128 11.9572 1.45699C11.9715 1.4427 11.9871 1.4375 12.0002 1.4375C12.0132 1.4375 12.0289 1.4427 12.0432 1.45699C12.0575 1.47128 12.0627 1.48694 12.0627 1.5V2.67Z' fill='%23C0C0C0' stroke='%23C0C0C0'/%3E%3Cpath d='M7.24198 14.03L7.25678 14.0167L7.27048 14.0022C7.48748 13.7732 7.625 13.4572 7.625 13.1259C7.625 12.7945 7.48748 12.4785 7.27048 12.2495L7.25678 12.235L7.24198 12.2217C7.12649 12.1178 6.99625 12.0343 6.85231 11.9743C6.54923 11.848 6.20077 11.848 5.89769 11.9743C5.75375 12.0343 5.62351 12.1178 5.50802 12.2217L5.49322 12.235L5.47952 12.2495C5.26252 12.4785 5.125 12.7945 5.125 13.1259C5.125 13.4572 5.26252 13.7732 5.47952 14.0022L5.49322 14.0167L5.50802 14.03C5.62351 14.1339 5.75375 14.2174 5.89769 14.2774C6.03884 14.3362 6.20165 14.3759 6.375 14.3759C6.54835 14.3759 6.71116 14.3362 6.85231 14.2774C6.99625 14.2174 7.12649 14.1339 7.24198 14.03ZM7.24198 11.405L7.26154 11.3874L7.27915 11.3678C7.38309 11.2524 7.46656 11.1221 7.52654 10.9782C7.58535 10.837 7.625 10.6742 7.625 10.5009C7.625 10.3275 7.58535 10.1647 7.52654 10.0236C7.46656 9.87961 7.38309 9.74937 7.27915 9.63388L7.26154 9.61432L7.24198 9.59671C7.12649 9.49277 6.99625 9.4093 6.85231 9.34932C6.54923 9.22304 6.20077 9.22304 5.89769 9.34932C5.75375 9.4093 5.62351 9.49277 5.50802 9.59671L5.48846 9.61432L5.47085 9.63388C5.36691 9.74937 5.28344 9.87961 5.22346 10.0236C5.16465 10.1647 5.125 10.3275 5.125 10.5009C5.125 10.6742 5.16465 10.837 5.22346 10.9782C5.28344 11.1221 5.36691 11.2524 5.47085 11.3678L5.48846 11.3874L5.50802 11.405C5.62351 11.5089 5.75375 11.5924 5.89769 11.6524C6.03884 11.7112 6.20165 11.7509 6.375 11.7509C6.54835 11.7509 6.71116 11.7112 6.85231 11.6524C6.99625 11.5924 7.12649 11.5089 7.24198 11.405ZM9.86698 11.405L9.88178 11.3917L9.89548 11.3772C10.1125 11.1482 10.25 10.8322 10.25 10.5009C10.25 10.1695 10.1125 9.85355 9.89548 9.62449L9.88178 9.61003L9.86698 9.59671C9.7536 9.49467 9.626 9.41235 9.48517 9.35263C9.17749 9.21444 8.82251 9.21444 8.51483 9.35263C8.374 9.41235 8.2464 9.49467 8.13302 9.59671L8.11822 9.61003L8.10452 9.62449C7.88752 9.85355 7.75 10.1695 7.75 10.5009C7.75 10.8322 7.88752 11.1482 8.10452 11.3772L8.11822 11.3917L8.13302 11.405C8.24851 11.5089 8.37875 11.5924 8.52269 11.6524C8.66384 11.7112 8.82665 11.7509 9 11.7509C9.17335 11.7509 9.33616 11.7112 9.47731 11.6524C9.62125 11.5924 9.75149 11.5089 9.86698 11.405ZM3 7.88086H15C15.1364 7.88086 15.25 7.9945 15.25 8.13086V12.7509C15.25 13.7992 14.9878 14.5965 14.493 15.1294C14.0043 15.6556 13.2172 16.0009 12 16.0009H6C4.7828 16.0009 3.99565 15.6556 3.50702 15.1294C3.01216 14.5965 2.75 13.7992 2.75 12.7509V8.13086C2.75 7.9945 2.86364 7.88086 3 7.88086Z' fill='%23C0C0C0' stroke='%23C0C0C0'/%3E%3C/svg%3E");
  display: block !important;
  width: 18px !important;
  height: 18px !important;
}

.news-detail img {
  display: block;
  width: 100%;
  aspect-ratio: 72/25;
  object-fit: cover;
  margin-bottom: 50px;
}

.container-content.career {
  padding-top: 50px;
  padding-bottom: 100px;
}

.container-content.career h5 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-grey);
}

.bg-career {
  background-image: url("../images/bg-career_page.jpg");
  /* background-image: linear-gradient(to left, rgba(255,255,255,0) 20%, rgba(255,255,255,1)), url('../images/bg-career_page.jpg'); */
  background-position: bottom;
  background-size: 100%;
  background-repeat: no-repeat;
}

.bg-career-detail {
  background-image: url("../images/bg-career_page.jpg");
  background-position: bottom;
  background-size: 100%;
  background-repeat: no-repeat;
}

.container-content.career .card-career {
  max-width: 834px;
  background-color: #ffffff;
  border: 1px solid var(--light-grey);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 100%;
  margin-bottom: 20px;
}

.container-content.career .card-career:hover {
  background-color: var(--dark-blue);
  background-image: url("../images/background-action-box.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  border-color: var(--dark-blue);
}

.container-content.career .card-career:hover h5 {
  color: var(--white);
}

.container-content.career .card-career:hover p {
  color: var(--white);
}

.container-content.career .card-career:hover .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 10px 30px rgba(25, 100, 171, 0.35);
}

.container-content.career .card-career-body {
  padding: 20px 30px;
}

.container-content.career .card-career-body h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.container-content.career .card-career-body p {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  font-family: "Montserrat", sans-serif;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.container-content.career .card-career-body p.level {
  margin-bottom: 18px;
}

.container-content.career .card-career-body .btn.btn-primary {
  padding: 9px 61px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0px 10px 30px rgba(25, 100, 171, 0.35);
  border-radius: 4px;
}

.career-detail {
  padding-top: 60px;
}

.career-detail h5 {
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 60px;
  padding-left: 30px;
  padding-right: 30px;
}

.career-detail .card {
  border: 2px solid #dadada;
  padding: 30px;
}

.career-detail .card.card-description {
  margin-bottom: 88px;
  border-radius: 10px;
}

/* .career-detail .card.card-description * {
  font-family: "Montserrat", sans-serif !important;
} */

.career-detail .card.card-description .card-header {
  background-color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 5px;
}

.career-detail .card.card-description .card-header h6 {
  font-weight: bold;
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
}

.career-detail .card.card-description .card-body h4 {
  padding-bottom: 0px;
  margin-bottom: 0px;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
}

.career-detail .card.card-description .card-body h4 span {
  font-family: "Inter Tight", sans-serif !important;
  font-size: 16px !important;
}

.career-detail .card.card-description ul {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  padding-left: 0;
}

.career-detail .card.card-description .btn-primary {
  padding: 9px 61px;
  background: #1964ab;
  box-shadow: 0px 10px 30px rgba(25, 100, 171, 0.35);
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}

.career-detail .card.card-description .card-body {
  text-align: justify;
  text-justify: inter-word;
}

.career-detail .card-job {
  background-color: #ffffff;
  background-image: url("../images/bg-job-detail.png");
  background-size: auto;
  background-position: top right;
  background-repeat: no-repeat;
  border: 2px solid #dadada;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
}

.career-detail .card-job .btn-primary {
  box-shadow: 0px 10px 30px rgba(25, 100, 171, 0.35);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  padding-top: 13px;
  padding-bottom: 13px;
}

.career-detail .card-job h6 {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 18px;
}

.career-detail .card-job p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}

.career-detail .card-job p.label {
  font-size: 16px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 0px;
}

.career-detail .container-content {
  padding-top: 20px;
  margin-bottom: 45px;
}

.career-detail .container-content.career .card-career {
  padding-top: 20px;
  max-width: 100%;
}

.img-portfolio {
  max-width: 100%;
}

.img-portfolio > img {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.contact .detail p {
  margin-bottom: 0;
}

blue {
  color: #1964ab;
  font-size: 12px;
}

.container.container-detail.article > p {
  margin-bottom: 24px;
}

.container.container-detail.article * {
  font-family: "Montserrat", sans-serif !important;
}

@media (max-width: 768px) {
  /* .navbar-brand > img {
    width: 54px;
  } */

  .navbar-collapse {
    background: var(--dark-blue-2);
  }
}

.navbar-collapse {
  margin-left: -16px;
  margin-right: -16px;
}

button.navbar-toggler {
  border: 0;
}

button.navbar-toggler > span {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 7.75H3C2.59 7.75 2.25 7.41 2.25 7C2.25 6.59 2.59 6.25 3 6.25H21C21.41 6.25 21.75 6.59 21.75 7C21.75 7.41 21.41 7.75 21 7.75Z' fill='%23fff'/%3E%3Cpath d='M21 12.75H3C2.59 12.75 2.25 12.41 2.25 12C2.25 11.59 2.59 11.25 3 11.25H21C21.41 11.25 21.75 11.59 21.75 12C21.75 12.41 21.41 12.75 21 12.75Z' fill='%23fff'/%3E%3Cpath d='M21 17.75H3C2.59 17.75 2.25 17.41 2.25 17C2.25 16.59 2.59 16.25 3 16.25H21C21.41 16.25 21.75 16.59 21.75 17C21.75 17.41 21.41 17.75 21 17.75Z' fill='%23fff'/%3E%3C/svg%3E");
  width: 1.5em !important;
  height: 1.5em !important;
}

button.navbar-toggler:focus:not(:focus-visible) {
  box-shadow: none;
  border-color: var(--light-grey);
}

.point-item > img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .point-item > img {
    width: 30px;
  }
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 2rem !important;
}

/* CSS RIBBON CARD */
.ribbon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: absolute;
  border-radius: 0.375rem 0 0 0;
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  border: 5px solid #2980b9;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #ffb74c;
  color: #fff;
  font: 700 18px/1 "Lato", sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}

/* top left*/

.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}

.ribbon-top-left::before {
  top: 0;
  right: 0;
}

.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}

.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}

.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}

.ribbon-top-right::before {
  top: 0;
  left: 0;
}

.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}

.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}

.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}

.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}

.ribbon-bottom-left span {
  right: -25px;
  bottom: 30px;
  transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}

.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}

.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}

.ribbon-bottom-right span {
  left: -25px;
  bottom: 30px;
  transform: rotate(-225deg);
}

div:where(.swal2-container).swal2-center > .swal2-popup {
  border-radius: 20px;
  padding-bottom: 40px;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime"]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url(https://mywildalberta.ca/images/GFX-MWA-Parks-Reservations.png)
    no-repeat;
  width: 20px;
  height: 20px;
  border-width: thin;
  position: absolute;
  left: 25px;
}

input[type="datetime-local"],
input[type="date"],
input[type="datetime"] {
  padding-left: 40px !important;
}

.short-detail {
  display: flex;
  align-items: center;
}

.short-detail span {
  margin: 0px 15px 0px 0px;
  font-weight: bold;
}

.short-detail i {
  color: var(--new-main-color-soft);
  margin-right: 5px;
}

.career-detail ul {
  list-style: none;
}

.career-detail li::marker {
  content: "• ";
  color: var(--new-main-color-soft);
  font-size: 28px;
  line-height: 16px;
}

.career-detail ul {
  padding-inline-start: 20px !important;
}

.label-upload-resume {
  display: block;
  border: 2px dashed #cecece;
  padding: 50px 0px 50px 0px;
  text-align: center;
  border-radius: 7px;
}

.inputfilecustom::file-selector-button {
  /* Add properties here */
  display: none;
}

.inputfilecustom {
  border: 0 !important;
  display: none;
}

.line-break-title {
  width: 120px;
  border: 2px solid var(--new-submain-color);
  border-radius: 10px;
  display: block;
}

#popup-team-image {
  margin: auto;
  border-radius: 10px;
}

/* .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: scale(2);
} */

.btn-outline-trasparent {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.btn-outline-trasparent:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
}

.detail-content-footer {
  margin-left: 29px;
}

.content-vision-mission {
  margin-left: 4rem;
  /* font-family: "Inter Tight", sans-serif; */
}

#popup-team-desc {
  text-align: justify;
}

.owl-carousel .owl-item {
  display: flex;
}

.owl-carousel .owl-stage {
  display: flex;
}

.col-article {
  display: flex;
}

.dataTables_filter {
  margin-bottom: 15px;
}

.dataTable {
  border: 1px solid rgb(206, 206, 206);
  border-radius: 10px;
}

.dataTable th {
  text-align: center !important;
}

.bg-gradient-green {
  background: linear-gradient(
    45deg,
    rgb(16 74 98) 0%,
    rgb(26 105 126) 55%,
    rgb(26 120 139) 75%,
    rgb(17 78 102) 100%
  );
}

.bg-gradient-green
  .dataTables_wrapper
  .dataTables_paginate
  .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: #fff !important;
}

/* CSS ESG */
.banner-overview-esg {
  padding-top: 200px;
  margin-top: 90px;
  min-height: 700px;
}

.banner-general-esg {
  padding-top: 120px;
  padding-bottom: 120px;
  margin-top: 90px;
  text-align: center;
}

.banner-general-esg h1 {
  font-size: 2.2rem;
  font-weight: bold;
}

.banner-overview-esg p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.banner-overview-esg h1 {
  font-size: 2.2rem;
  font-weight: bold;
}

.banner-overview-esg .container {
  padding-left: 3rem;
  padding-right: 3rem;
}

.quotes-overview-esg {
  max-width: 900px;
  margin: auto;
  padding-top: 20px;
}

.quotes-overview-esg p {
  margin-bottom: 20px;
  margin-top: 20px;
}

.content-overview-esg .container,
.content-overview-esg .container-fluid {
  max-width: 900px;
}

.content-overview-esg h3,
.content-overview-esg h5 {
  font-family: "Outfit", sans-serif;
  font-weight: bold;
}

.content-overview-esg img {
  max-width: 100%;
}

.nav-pills-esg .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--new-main-color-soft);
  border-color: var(--new-main-color-soft);
  color: var(--white);
  position: relative;
}

.nav-pills-esg .nav-link.active span,
.nav-pills .show > .nav-link span {
  border-top: 20px solid var(--new-main-color-soft);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  position: absolute;
  bottom: -34px;
  left: calc(50% - 20px);
  width: 30px !important;
}

.nav-pills-esg .nav-link {
  background-color: var(--white);
  color: var(--new-main-color);
  border: 0.13rem solid var(--new-main-color-soft) !important;
  border-radius: 30px;
}

.carousel-esg .carousel-control-next,
.carousel-esg .carousel-control-prev {
  top: calc(50% - 40px);
  width: 50px;
  height: 80px;
  background: var(--new-main-color);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  opacity: 1;
  border-radius: 10px;
}

.carousel-esg .carousel-control-next:hover,
.carousel-esg .carousel-control-prev:hover {
  background: var(--new-main-color-soft);
}

.carousel-esg .carousel-control-prev {
  left: -60px;
}

.carousel-esg .carousel-control-next {
  right: -60px;
}

.carousel-esg .carousel-caption {
  top: unset;
  background: #d9d9d9;
  color: #000;
  padding-top: 15px;
  padding-bottom: 15px;
  bottom: -20px;
  position: relative;
}

@media screen and (max-width: 468px) {
  .nav-pills-esg {
    column-gap: 0px;
  }

  .nav-pills-esg li.nav-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-pills-esg .nav-link.active span,
  .nav-pills .show > .nav-link span {
    display: none;
  }

  .carousel-esg {
    margin-top: 75px;
  }

  .carousel-esg .carousel-control-next {
    right: 0px;
  }

  .carousel-esg .carousel-control-prev {
    left: 0px;
  }

  .carousel-esg .carousel-control-next,
  .carousel-esg .carousel-control-prev {
    top: -55px;
    height: 40px;
  }

  .topbanner-home {
    height: 100vh !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }
}

/* plnepiinvestasi */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ⬅️ ini kunci agar logo dan dot rata kiri */
  gap: 8px; /* spasi vertikal antara logo dan dot */
}

.dot-svg {
  display: block;
  margin: 0; /* hilangkan center effect */
  padding: 0;
}

.icon-fa {
  font-size: 24px;         /* Ukuran ikon */
  color: #004b87;          /* Warna ikon */
  margin-right: 12px;      /* ⬅️ Jarak antar ikon dan teks */
  flex-shrink: 0;          /* Hindari ikon menyusut */
  margin-top: 4px;         /* Untuk sejajar vertikal dengan teks */
  min-width: 24px;         /* ⬅️ Stabilkan jarak visual */
}

#mainCarousel {
  position: relative;
}

#mainCarousel .carousel-caption {
  padding-left: 5%;
  padding-right: 13%; 
  padding-top: 0;
  padding-bottom: 0;
  top: 40%; /* 50% posisikan di tengah vertikal */
  right: 0;
  bottom: 0;
  left: 0;
  bottom: auto; /* override posisi bawah default */
  transform: translateY(-50%); /* agar betul-betul di tengah */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
  /* color: #fff; */
  width: 100%;
  max-width: 1098px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: absolute;
  vertical-align: middle;
}
#mainCarousel .carousel-caption h5,
#mainCarousel .carousel-caption p {
  color: #fff;
  max-width: 1098px;
}
.carousel-control-prev,
.carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  height: 50px; /* atau biarkan default */
  width: 50px;
  background: rgba(0, 0, 0, 0.2); /* opsional: beri latar agar terlihat */
  border-radius: 50%;
}
.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}

.header > svg {
  margin-top: 2px;
  align-self: flex-start;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border: 1.5px solid #1988A6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;     /* Tambahan penting */
  margin-top: 2px;            /* Atur sesuai tinggi font heading */
}

.icon-circle i.fas {
  color: #1988A6;
  font-size: 22px;
  margin: 0;
}


/* end of plnepiinvestasi */

