:root {
  --background-color: rgba(253, 253, 252, 0.5);
  --Vivid-white-50: rgba(253, 253, 252, 1);
  --Green-50: rgba(214, 255, 250, 1);
  --Green-900: rgba(0, 56, 49, 1);
  --Gradient-background: linear-gradient(
    118deg,
    #144949 52.59%,
    #2eaeae 136.44%
  );
  --Gradient-BG: linear-gradient(
    194deg,
    rgba(255, 255, 255, 0) 6.81%,
    #d1f5f1 89.73%
  );
  --Gradient-bg: linear-gradient(98deg, #195f61 53.75%, #33c2c7 97.36%);
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
}
.columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.row-start {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
}

.fullWidth {
  width: 100%;
  max-width: 100%;
}
header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #333;
  color: #fff;
  /* padding: 32px 0; */
  text-align: center;
  transition: top 0.3s;
  z-index: 999;
  /* height: 100vh; */
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.banner-image {
  /* position: relative; */
  top: 0;
  left: 0;
  /* width: 100%; */
  /* height: 100%; */
  object-fit: cover;
  /* z-index: -1; */
}

.container {
  /* justify-content: space-between;
  display: flex;
  height: 89px;
  padding: 0px 100px 0px 100px;
  align-items: center;
  max-width: 100%;
  position: fixed;
  top: 0; */
  width: inherit;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  /* background: var(--Vivid-white-50, #fdfdfc); */
  top: 0;
  color: rgba(0, 87, 75, 1);
}
.header-active {
  width: inherit;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background: var(--Vivid-white-50, #fdfdfc);
  top: 0;
  color: rgba(0, 87, 75, 1);
}

.header-active .logo-header {
  content: url("../images/logo-active.svg");
}

.header-active .button-contact {
  background: linear-gradient(118deg, #144949 52.59%, #2eaeae 136.44%);
  color: white;
}

.button-contact {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 0.5px solid rgba(253, 253, 252, 0.5);
  background: var(--Vivid-white-50, #fdfdfc);
  color: var(--Green-900, #003831);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.button-contact:hover {
  background: linear-gradient(118deg, #144949 52.59%, #2eaeae 136.44%);
  color: white;
  cursor: pointer;
}
.content-left-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  height: fit-content;
}

.content-right-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 16px;
}

.content-right-header span {
  color: #fdfdfc;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;

  transition: color 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  padding: 4px;
}

.content-right-header span:hover {
  color: #fdfdfc;
  /* background: var(
    --Gradient-background,
    linear-gradient(118deg, #144949 52.59%, #2eaeae 136.44%)
  ); */
  border-radius: 12px;
}
.content-right-header span::before,
.content-right-header a p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(
    --Gradient-background,
    linear-gradient(118deg, #144949 52.59%, #2eaeae 136.44%)
  );
  transition: width 0.6s ease;
  z-index: 0;
  border-radius: 12px;
}

.content-right-header span:hover::before {
  width: 100%;
}

.content-right-header span .text {
  position: relative;
  z-index: 2;
  color: #fdfdfc;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  transition: color 0.3s ease;
  padding: 0px;
  margin: 0px;
}
.content-right-header a .text {
  position: relative;
  z-index: 2;
  color: #fdfdfc;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  transition: color 0.3s ease;
  padding: 0px;
  margin: 0px;
  text-decoration: none;
}
.content-right-header a {
  text-decoration: none;
}
.header-active span .text {
  color: rgba(0, 87, 75, 1);
}
.header-active a .text {
  color: rgba(0, 87, 75, 1);
}
.header-active span:hover .text {
  color: white;
}
.content-header {
  justify-content: space-around;
  display: flex;
  /* width: 100%; */
  padding: 32px 24px;
  margin: auto;
}

.section-1 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 120px 100px;
  background: url("../images/background-about-us.png") -98.25px 0px / 113.646% 100%
      no-repeat,
    url("../images/background-about-us.png") -400.338px 16.638px / 163.533% 101.943%
      no-repeat,
    linear-gradient(
      181deg,
      rgba(255, 255, 255, 0.5) 11.44%,
      rgba(101, 173, 164, 0.4) 100.74%
    );
  /* background-color: lightgray; */
  background-color: white;
  background-blend-mode: overlay, overlay, normal;
}

.container-header-about-us {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.container-about-us {
  display: flex;
  flex-direction: row;
  /* align-items: flex-start; */
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  gap: 16px;
}
.img-about-us {
  /* width: 34.5%; */
  /* height: 100%; */
  width: 50%;
  object-fit: cover;
  border-radius: 24px;
}
.content-about-us {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.item-about-us {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  align-self: stretch;
  padding: 20px 40px;
  border-radius: 24px;
  background: linear-gradient(
    to right,
    var(--background-color, #fdfdfc) 0%,
    var(--background-color, #fdfdfc) 5%,
    #ffffff 30%,
    #ffffff 100%
  );
  /* background: var(--Vivid-white-50, #fdfdfc); */
  border-radius: 24px;
  box-shadow: 0px 0px 12px 0px rgba(34, 150, 152, 0.12);
  cursor: pointer;
}
.item-about-us:hover {
  background: linear-gradient(
    165deg,
    var(--Vivid-white-50, #fdfdfc) 1.13%,
    var(--Green-50, #d6fffa) 110.52%
  );
}
.item-about-us:hover ~ .description-about-us {
  background: linear-gradient(
    -135deg,
    var(--Vivid-white-50, #fdfdfc) 1.13%,
    var(--Green-50, #d6fffa) 110.52%
  );
}

.item-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.item-left span {
  color: var(--Green-800, #004239);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* .description-about-us {
  max-height: 0%;
  overflow: hidden;
  transition: 100% 0.4s ease, padding 0.4s ease;
  padding: 0 40px;

  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 24px;
  background: linear-gradient(
    118deg,
    var(--Vivid-white-50, #fdfdfc) 31.13%,
    var(--Green-50, #d6fffa) 110.52%
  );
  box-shadow: 0px 8px 24px 0px rgba(62, 129, 130, 0.2);
  height: 10px;
}
.description-about-us.show {
  max-height: 100%;
  padding: 40px;
  display: flex;
  height: 100%;
} */
.description-about-us {
  max-height: 0;
  padding: 0 40px;
  transition: max-height 1s ease;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 24px;
  background: linear-gradient(
    118deg,
    var(--Vivid-white-50, #fdfdfc) 31.13%,
    var(--Green-50, #d6fffa) 110.52%
  );
  box-shadow: 0px 8px 24px 0px rgba(62, 129, 130, 0.2);
  position: relative;
  height: 0;
  overflow: hidden;
}

.description-about-us.show {
  max-height: 100%;
  padding: 40px;
  display: flex;
  height: 100%;
}

.default-toggle {
  display: block;
  max-height: 100%;
  padding: 40px;
  height: 100%;
}
.description-about-us > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  z-index: 2;
}
.h1 {
  margin: 0;
}

.hero h2 {
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.content {
  padding: 50px 20px;
  font-size: 18px;
  line-height: 1.6;
  font-family: Montserrat;
}

.section-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 100px;
  background: linear-gradient(118deg, #092929 1.05%, #34b2b3 127.59%);
  position: relative;
}

.img-map {
  width: 100%;
  position: absolute;
  opacity: 0.2;
  object-fit: scale-down;
  height: 100%;
}
.container-vision-mission {
  display: flex;
  gap: 24px;
  align-self: stretch;
}

.vision-mission-item {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  flex: 1;
  border-radius: 24px;
  border: 1px solid rgba(253, 253, 252, 0.24);
  background: rgba(253, 253, 252, 0.05);
  color: white;
  position: relative;
}

.vision-mission-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
}
.vision-mission-header.default-screen > img {
  width: 39px;
  height: 39px;
}
.title-header {
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: var(
    --Gradient-background,
    linear-gradient(118deg, #144949 52.59%, #2eaeae 136.44%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  width: 100%;
}

.title-header-white {
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.content-value-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 16px;
  /* margin-top: 40px; */
  padding-top: 24px;
}

.container-value-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cột, mỗi cột chiếm 1 phần */
  padding: 24px 0px;
  width: 100%;
  gap: 24px;
}

/* Style cho mỗi item trong container */
.item {
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  border-radius: 24px;
  border: 1px solid rgba(253, 253, 252, 0.24);
  background: rgba(253, 253, 252, 0.05);

  /* Dropdown/card */
  box-shadow: 0px 8px 24px 0px rgba(62, 129, 130, 0.2);
  position: relative;
}

/* Style cho icon */
.icon {
  width: 72px; /* Kích thước của icon */
  height: 72px; /* Kích thước của icon */
  margin-bottom: 12px; /* Khoảng cách giữa icon và text */
}

/* Style cho tiêu đề */
.vision-mission-text {
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-3 {
  display: flex;
  padding: 120px 100px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  /* background: url("../images/background-history.png") -544.426px 5.627px / 289.451%
      100% no-repeat,
    url("../images/background-history.png") 50% / contain no-repeat,
    url("../images/background-history.png") 50% / contain no-repeat,
    linear-gradient(
      156deg,
      rgba(236, 255, 253, 0.6) 14.66%,
      rgba(24, 154, 157, 0.6) 121.19%
    ); */
  background-blend-mode: color-burn, overlay, plus-lighter, normal;
  background: url("../images/background-history.png") 100% / cover no-repeat;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(
    to right,
    rgba(20, 73, 73, 1),
    rgba(46, 174, 174, 1)
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -6px;
  opacity: 0.5;
}

/* Container around content */
.container-timeline {
  padding: 10px 0px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container-timeline::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  right: -15px;
  top: 0px;
  transform: rotate(45deg);
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(23, 107, 107, 1),
    rgba(46, 174, 174, 1)
  );
}

.container-timeline-end::after {
  content: "";
  position: absolute;
  bottom: -7px; /* hoặc bottom: 0 tùy bạn */
  left: calc(50% - 3px);
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: linear-gradient(
    to right,
    rgba(23, 107, 107, 1),
    rgba(46, 174, 174, 1)
  );
  /* clip-path: polygon(0% 0%, 100% 0%, 50% 100%); */
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.container-timeline-start {
  border-radius: 6px;
  max-width: 100%;
  display: flex;
  min-height: 220px;
  position: relative;
}
.container-timeline-start::after {
  content: "";
  position: absolute;
  top: -10px; /* hoặc bottom: 0 tùy bạn */
  transform: translateX(50%);
  left: calc(50% - 23px);
  width: 20px;
  height: 20px;
  background: linear-gradient(
    to right,
    rgba(23, 107, 107, 1),
    rgba(46, 174, 174, 1)
  );
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
  opacity: 1;
}
/* Place the container to the left */
.left {
  left: 0;
}
.left p {
  margin-right: 40px;
}
/* Place the container to the right */
.right {
  left: 50%;
}
.right p {
  margin-left: 32px;
}
/* Fix the circle for containers on the right side */
.right::after {
  left: -21px;
}

/* The actual content */
.content-timeline {
  padding: 0px 30px;
  position: relative;
  border-radius: 6px;
  max-width: 100%;
  top: -25px;
  display: flex;
  min-height: 220px;
}

.content-timeline > p {
  color: #2b514c;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  height: fit-content;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0px 0px 24px 0px rgba(255, 255, 255, 0.4) inset;
  padding: 24px 32px;
  transition: box-shadow 3s ease, filter 3s ease;
}
.content-timeline > p:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  filter: brightness(1.2);
}
.year-right {
  position: absolute;
  display: block;
  left: 110%;
  top: -30%;
}

.year-left {
  position: absolute;
  display: block;
  right: 110%;
  top: -30%;
}

.year {
  font-family: Montserrat;
  font-size: 71px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: linear-gradient(118deg, #176b6b 63.07%, #2eaeae 95.32%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-4 {
  min-height: 274px;
  display: flex;
  padding: 0px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: url("../images/background-discover-2.png") lightgray 50% / cover
    no-repeat;
}
.section-4 span {
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-4 img {
  height: 29px;
}

.section-5 {
  padding: 120px 100px;
}

.card {
  display: flex;
  padding: 40px 40px 60px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  border-radius: 24px;
  border: 1px solid RGB(110, 152, 152, 0.2);
  background: linear-gradient(
    315deg,
    rgba(175, 224, 218, 0.6) 2.64%,
    rgba(255, 255, 255, 0.14) 98.49%
  );
  box-shadow: 0px 8px 24px 0px rgba(62, 129, 130, 0.2);
  /* transition: background 4s ease-in-out, box-shadow 0.4s ease-in-out; */
  -webkit-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
}
.card:hover {
  /* background: linear-gradient(118deg, #144949 52.59%, #2eaeae 136.44%); */
  background-color: #144949;

  color: white;
}
.card:hover .img-card {
  /* background: linear-gradient(118deg, #144949 52.59%, #2EAEAE 136.44%); */
  background-color: white;
  color: white;
}
.card:hover .title-card {
  color: white;
}
.card:hover .icon-rhombus {
  content: url("../images/icon-rhombus-white.svg");
}
.img-card {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 74.26/74.27;
  border-radius: 15px;
  background: linear-gradient(
    118deg,
    rgba(0, 177, 154, 0.12) 52.59%,
    rgba(124, 245, 223, 0.12) 92.5%
  );
  padding: 14px;
}
.content-card {
  gap: 16px;
}
.card {
  color: var(--Green-900, #003831);
}
.title-card {
  color: var(--Green-900, #003831);
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.section-6 {
  display: flex;
  height: 274px;
  padding: 0px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: url("../images/background-discover-1.png") lightgray 50% / cover
    no-repeat;
}
.section-7 {
  display: flex;
  padding: 120px 100px;
  flex-direction: column;
  align-items: flex-start;
  /* gap: 60px; */
  align-self: stretch;
  background: var(
    --Gradient-BG,
    linear-gradient(194deg, rgba(255, 255, 255, 0) 6.81%, #d1f5f1 89.73%)
  );
}
.container-section-7 {
  gap: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-employer {
  display: flex;
  max-width: 50%;
  min-height: auto;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  /* background: url("../images/background-card.png") lightgray 50% / cover no-repeat; */
  border-radius: 24px;
  box-shadow: 0px 0px 8px 0px rgba(93, 186, 188, 0.24);
  position: relative;
  background: var(
    --Gradient-bg,
    linear-gradient(98deg, #195f61 53.75%, #33c2c7 97.36%)
  );
  overflow: hidden;
  flex: 1;
  /* margin-right: 8px; */
}
.content-section-7 {
  gap: 24px;
}
.content-section-7-child {
  gap: 12px;
}
.container-card {
  gap: 12px;
}

.card-employer img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  transform: scale(1.1);
}
.card-employer h3 {
  z-index: 1;
  color: #fff;
  font-family: Montserrat;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.card-employer span {
  z-index: 1;
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-child {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  border-radius: 24px;
  /* border: 1px solid rgba(0, 56, 49, 0.08); */
  background: rgba(253, 253, 252, 0.04);

  box-shadow: 0px 0px 8px 0px rgba(93, 186, 188, 0.24);
}

.card-child h3 {
  color: var(--Green-900, #003831);
  font-family: Montserrat;
  font-size: 52px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0px;
}

.card-child span {
  color: var(--Green-900, #003831);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.card-worker {
  position: relative;
  display: flex;
  padding: 40px 0px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  box-shadow: 0px 0px 8px 0px rgba(93, 186, 188, 0.24);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}
.card-worker img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  object-fit: cover;
  transform: scale(1.1);
}
.card-worker h3 {
  z-index: 1;
  color: #fff;
  font-family: Montserrat;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.card-worker span {
  z-index: 1;
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.section-8 {
  display: flex;
  padding: 120px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* gap: 60px; */
  align-self: stretch;
  background: linear-gradient(118deg, #0b4c4e 16.9%, #4dacae 100.07%);
}

.card-field-of-activity {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid rgba(253, 253, 252, 0.24);
  background: rgba(253, 253, 252, 0.04);
  max-width: 30%;
  overflow: hidden;
}

.img-about-activity {
  display: flex;
  /* height: 246px; */
  align-items: flex-start;
  align-self: stretch;
  border-radius: 12px;
  object-fit: cover;
}

.card-field-of-activity span {
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
}
.button {
  cursor: pointer;
}
.button:hover {
  /* background-color: #567676; */
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: auto;
  min-height: 400px;
  /* display: flex; */
  /* flex-direction: row; */
}
.slide-in-right {
  animation: slideRight 0.6s forwards;
}

.slide-out-left {
  animation: slideOutRight 0.6s forwards;
}
.slide-in-left {
  animation: slideLeft 0.6s forwards;
}
.slide-out-right {
  animation: slideOutLeft 0.6s forwards;
}
.content-box {
  display: flex;
  padding: 100px 60px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  flex: 1 0 0;
  border-radius: 0px 0px 40px 40px;
  background: linear-gradient(
    175deg,
    rgba(253, 253, 252, 0) 20.61%,
    rgba(79, 160, 156, 0.6) 97.65%
  );
  position: absolute;
  top: 0;
  left: 0;
}
.button {
  /* width: 60px;
  height: 60px;
  background: linear-gradient(to bottom right, #2eaeae, #176b6b); */
  /* border-radius: 50% 60% 70% 50% / 60% 50% 60% 40%;  */
  /* border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite ease-in-out; */
}
.button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite ease-in-out;
}

/* Khi hover giọt nước nhún xuống nhẹ */
.button:hover {
  transform: scale(1.1);
}
.info-personal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
}
.info-personal img {
  align-self: stretch;
  width: 66px;
  height: 66px;
  border-radius: 100%;
}
.info-personal p {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.info-personal span {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.img-logo {
  width: 66px;
  height: 66px;
}
.info {
  justify-content: flex-start;
  align-items: flex-start;
}
.info-dec {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.carousel {
  overflow: hidden;
  padding: 20px;
}
.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
}
.carousel-item {
  flex: 0 0 auto;
  /* width: 220px; */
  width: max-content;
  margin-right: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.logo-main {
  cursor: pointer;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section-9 {
  display: flex;
  padding: 120px 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: var(
    --Gradient-BG,
    linear-gradient(194deg, rgba(255, 255, 255, 0) 6.81%, #d1f5f1 89.73%)
  );
  /* max-width: 100%;
  width: 100%; */
  overflow: hidden;
}
.vision-mission-header-9 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;

  /* padding: 0px 100px; */
}

.section-10 {
  min-height: 120px;
  display: flex;
  padding: 0px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: url("../images/background-discover.png") lightgray 50% / cover
    no-repeat;
}
.section-10 span {
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 30%;
}

.footer {
  padding: 120px 100px;
  background: url("../images/footer.png") lightgray 50% / cover no-repeat;
  background-blend-mode: normal, overlay, overlay, overlay, normal;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.icon-diamon-footer {
  align-self: center;
  width: 90px;
  height: 90px;
}
.container-footer {
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}
.content-qr-code {
  display: flex;
  width: 187px;
  height: 205px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  aspect-ratio: 187/205;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.content-qr-code img {
  width: 100%;
  height: 80%;
}

.content-info-left h4,
.contact-info h4 {
  color: var(--Green-900, #003831);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0px;
}

.title-qr {
  color: var(--Green-900, #003831);
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
}
.content-info-left {
  width: 40%;
}
.content-info-right {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-info {
  width: 40%;
}
.icon-rhombus {
  width: 16px;
  height: 16px;
}

.banner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
  height: -webkit-fill-available;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 100px;
  border: 0.5px solid rgba(239, 252, 251, 0.2);
  background: rgba(6, 106, 94, 0.2);
  padding: 4px 6px;
}

.dots div {
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dots .active {
  width: 28px;
  height: 8px;
  border-radius: 12px;
  background: #fff;
}

.menu-moblie,
.icon-menu-inActive {
  display: none;
}
.vision-mission-title {
  color: var(--Vivid-white-50, #fdfdfc);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.img-about-us-mb {
  display: none;
}
.vision-mission-item,
.item,
.card-field-of-activity,
.card-employer,
.card-child,
.card-worker {
  transition: all 0.3s pulse;
  transition: background-color 0.5s ease-out;
}
.vision-mission-item:hover,
.item:hover,
.card-employer:hover,
.card-worker:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  filter: brightness(1.3);
  transform: scale(1.01);
  transition: box-shadow 0.5s ease, filter 0.5s ease, transform 0.5s ease;
}
.card-field-of-activity:hover {
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  filter: brightness(1.1);
  transform: scale(1.005);
}
.card-child:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  filter: brightness(1.3);
  transform: scale(1.01);
  /* background: linear-gradient(118deg, #0b4c4e 16.9%, #4dacae 100.07%); */
  color: white;
  background-color: rgb(39, 114, 116);
}
.card-child:hover h3 {
  color: white;
}
.card-child:hover span {
  color: white;
}
.content-info-left span {
  cursor: pointer;
}
.content-info-left span:hover {
  color: #ffffff;
  background-color: #2eaeae;
  border-radius: 5px;
  padding: 5px 10px;
  box-shadow: 0 0 10px rgba(46, 174, 174, 0.7);
  transform: scale(1.1);
  width: fit-content;
}
/* .row-start span:hover {
  color: #ffffff;
  background-color: #2eaeae;
  border-radius: 5px;
  padding: 5px 5px;
  box-shadow: 0 0 10px rgba(46, 174, 174, 0.7);
  transform: scale(1.1);
  width: fit-content;
  margin-left: 15px;
} */
.row-start span,
span a {
  color: var(--Green-900, #003831);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.content-info-left span {
  color: var(--Green-900, #003831);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.item-0:hover .description-0 {
  display: flex;
}
.line {
  height: 1.5px;
  align-self: stretch;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #155051 32.21%,
    rgba(255, 255, 255, 0) 100%
  );
}
.content-line {
  width: max-content;
  gap: 0px;
}
.qr-code-mb {
  display: none;
}
.icon-diamond {
  width: 45px;
}
img.logo-header {
  height: 18.058px;
  flex-shrink: 0;
  align-self: stretch;
  aspect-ratio: 220/18.06;
  width: 165px;
}
.content-copyright {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  position: absolute;
  bottom: 0;
}
.content-copyright span {
  padding: 18px 16px 32px 16px;
  color: var(--Green-900, #003831);
  text-align: center;

  /* Body/Body 4 */
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}
.line-footer {
  height: 1px;
  align-self: stretch;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #155051 32.21%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
}
.img-bg-about-us {
  position: absolute;
  bottom: 0;
  object-fit: cover;
  width: calc(100% + 80px);
  margin-left: -40px;
}
.container-social {
  /* padding: 0px 100px; */
}
.content-social {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}
.container-social img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.social-tablet {
  display: none;
}
.social-desktop {
  align-items: center;
  justify-content: flex-start;
}
.social-desktop-2 {
  justify-content: flex-end;
  width: 100%;
  padding-top: 10px;
}
.count-online {
  display: none;
}
@media screen and (min-width: 1700px) {
  .default-screen {
    width: 75%;
    margin: auto;
  }
  .content-section-8 {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .content-info-left {
    width: 100%;
  }
  .container-about-company {
    width: 25%;
  }
  .header-active .content-header {
    width: 75%;
  }
  .content-info-left {
    gap: 12px;
  }
  .content-line {
    margin-bottom: 12px;
  }
  .carousel {
    width: calc(100% + 100);
    margin-left: -100px;
  }
  .slides img {
    object-fit: cover;
  }
  .slides {
    height: 100vh;
  }
  /* .container-about-us {
    height: 714px;
  } */
  .header-active .content-header {
    width: 100%;
  }
  .container .content-header {
    width: 100%;
    justify-content: space-between;
    padding: 32px 100px;
  }
  .description-about-us span {
    color: var(--Green-900, #003831);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
  }
  .description-about-us span span {
    font-weight: 600;
  }
  .content-timeline > p {
    margin-top: -55px;
    /* max-width: 397px; */
  }
  .logo-section {
    width: 300px !important;
    height: 29px !important;
    flex-shrink: 0;
    aspect-ratio: 300/29 !important;
  }
  .container-about-us {
    height: 740px;
  }
  .content-about-us {
    width: 50%;
  }
  p.text-timeline-3.text-active,
  p.text-timeline-2.text-active {
    margin-top: -30px;
  }
  p.text-timeline-6.text-active,
  p.text-timeline-1.text-active {
    margin-top: -40px;
  }
}
@media screen and (min-width: 1700px) {
  .header-active .content-header {
    width: 67%;
    justify-content: space-between;
  }
  .content-right-header {
    gap: 16px;
  }
  .container .content-header {
    width: 67%;
  }
  .section-4,
  .section-6,
  .section-10 {
    padding: 0px 295px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1420px) {
  .content-right-header span .text {
    font-size: 12px;
  }
  .content-right-header {
    gap: 12px;
  }
  .logo-section {
    width: 262px !important;
  }
  .container-about-us {
    height: 860px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .content-right-header span .text {
    font-size: 12px;
  }
  .content-right-header {
    gap: 4px;
  }
  .logo-section {
    width: 262px !important;
  }
}

@-moz-document url-prefix() {
  .container-about-us {
    height: 740px;
  }
  .content-about-us {
    width: 50%;
  }
}
