/*================================= Header ===============================  */

/*================================= End Header ===============================  */

/*================================= Section Info Solutions ===============================  */

.info-solutions {
  overflow: hidden;
  background-size: inherit;
  background-position: center;
  background-repeat: no-repeat;
}

.info-solutions__content {
  max-width: 860px;
  margin: 200px 0px 100px;
}

.info-solutions__content::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100px;
  top: 415px;
  bottom: 0px;
  margin: 0 auto;
  transform: translateX(-50%);
  background: radial-gradient(
    40% 40% at 50% 50%,
    rgb(82, 74, 99),
    rgba(39, 31, 56, 0) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.info-solutions__decorator {
  opacity: 0.04;
  width: 0.2px;
  height: 0.16px;
  background-image: linear-gradient(
    153deg,
    #ffffff,
    #ffffff 48%,
    rgba(198, 188, 255, 1)
  );
  border-radius: 8px;
  margin-bottom: 10px;
}

.info-solutions__title {
  letter-spacing: 0.64px;
  background: linear-gradient(to right, #ffffff, #6551b5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
  text-shadow: 6px 6px 11px #b1a1e641;
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.solutions {
  -webkit-text-fill-color: #836ec9;
}

.info-solutions__description {
  color: #827a9c;
  position: relative;
  z-index: 1;
}

.info-solutions::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(58, 40, 88, 0) 0%,
    rgba(58, 40, 88, 0.5) 25%,
    #8354b06e 50%,
    rgba(58, 40, 88, 0.5) 75%,
    rgba(58, 40, 88, 0) 100%
  );
}

/*================================= End Section Info Solutions ===============================  */

/*================================= Section Who we are ===============================  */

.who-we-are {
  padding-top: clamp(40px, 7.8vw, 80px);
}

.who-we-are .who-we-are-row {
  gap: 0px;
}

.who-we-are__image-section {
  max-width: 480px;
  height: 326px;
}

.who-we-are__content {
  padding-left: clamp(0px, 2.5vw, 50px);
}

.who-we-are__image--primary {
  height: 326px;
  object-fit: contain;
  z-index: 1;
}

.who-we-are__subtitle {
  font-size: 14px;
  letter-spacing: 0.4px;
  line-height: 24px;
  color: rgba(106, 94, 146, 1);
}

.who-we-are__title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  background: linear-gradient(
    153deg,
    var(--white),
    var(--white) 48%,
    rgba(198, 188, 255, 1)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.who-we-are__description {
  line-height: 20px;
  color: rgba(130, 122, 156, 1);
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.64px;
}

/*================================= End Section Who we are ===============================  */

/*================================= End Section Logo Trademark ===============================  */

.trademark {
  padding: 80px 0 24px;
}

.trademark__wrapper {
  height: 100px;
}

.trademark .text-title-trademark p {
  font-size: 14px;
  color: #c1b1cf;
}

.trademark__wrapper::before,
.trademark__wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
}

.trademark__wrapper::before {
  left: 0;
  background: linear-gradient(to right, #25242b, transparent);
}

.trademark__wrapper::after {
  right: 0;
  background: linear-gradient(to left, #25242b, transparent);
}

.trademark__marquee {
  display: flex;
  min-width: max-content;
  animation: marquee 20s linear infinite;
}

.trademark__marquee:hover {
  animation-play-state: running;
}

.trademark__logo-list {
  gap: 80px;
  padding: 24px 40px;
  flex-shrink: 0;
}

.trademark__logo {
  height: 50px;
  object-fit: contain;
}

.trademark__logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.trademark__logo-link:hover {
  transform: scale(1.05);
}

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

/*================================= End Section Logo Trademark ===============================  */

/*================================= Section Stats Metrics ===============================  */

.stats__wrapper {
  padding: 32px 70px;
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  box-shadow: 8px 8px 16px rgba(36, 33, 42, 0.25) inset;
  border-radius: 40px;
  border: 1px solid transparent;
  border-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 10%,
    #dbd5fe 50%,
    rgba(255, 255, 255, 0) 90%
  );
  border-image-slice: 1;
}

.stats__metric {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  padding-left: 60px;
}

.stats__metric::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 4%,
    #dbd5fe 50.5%,
    rgba(255, 255, 255, 0) 100%
  );
}

.stats__metric:nth-child(4)::before {
  display: none;
}

.stats__label-wrapper {
  text-align: left;
}

.stats__label {
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 24px;
  color: rgba(223, 217, 246, 1);
  margin-bottom: 4px;
}

.stats__number {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3.6px;
  line-height: 100%;
  background: linear-gradient(
    153deg,
    var(--white),
    var(--white) 48%,
    rgba(198, 188, 255, 1)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  background-clip: text;
  color: transparent;
}

.stats__plus {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 3.6px;
  line-height: 100%;
  background: linear-gradient(
    153deg,
    var(--white),
    var(--white) 48%,
    rgba(198, 188, 255, 1)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Effect nubber */

.digit-wrapper {
  height: 1em;
  overflow: hidden;
  position: relative;
}

.digit {
  display: block;
  transition: transform 1s ease-out;
  transform: translateY(0);
}

.digit span {
  display: block;
  height: 1em;
  background: linear-gradient(
    153deg,
    var(--white, #ffffff),
    var(--white, #ffffff) 48%,
    rgba(198, 188, 255, 1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/*================================= End Section Stats Metrics ===============================  */

/*================================= Section What we provide  ===============================  */

.what-we-provide {
  padding-top: clamp(40px, 7.8vw, 80px);
  padding-bottom: clamp(40px, 7.8vw, 80px);
}

.curve-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 0;
  pointer-events: none;
}

.curve-path {
  stroke: var(--curve-color);
  stroke-dasharray: var(--curve-dash) var(--curve-gap);
}

.what-we-provide__header {
  margin-bottom: 24px;
}

.what-we-provide__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: rgba(131, 110, 201, 1);
  margin: 0;
}

.what-we-provide__title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(153deg, white, white 48%, rgba(198, 188, 255, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.what-we-provide__cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.what-we-provide__card {
  width: calc(25% - 18px);
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.what-we-provide__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #322c42;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  z-index: 2;
  position: relative;
  background-position: 100% center;
  background: #322c42;
  transition: all 0.7s ease-in-out;
}

.what-we-provide__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.what-we-provide__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #d4c3e6;
  margin: 0 0 10px 0;
  transition: all 0.7s ease-in-out;
  z-index: 2;
  position: relative;
}

.what-we-provide__card-text {
  font-size: 16px;
  letter-spacing: 0.64px;
  color: #827a9c;
  margin: 0;
  transition: all 0.7s ease-in-out;
  z-index: 2;
  position: relative;
}

.what-we-provide__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 9999px;
  z-index: -1;
  pointer-events: none;
  background-position: 0% center;
  transition: all 0.7s ease-in-out;
}

.what-we-provide__card:hover .what-we-provide__icon::before {
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%) scale(1);
  background-position: 100% center;
  background-color: #ff000c;
  background: #322c42;
}

.what-we-provide__card:hover .what-we-provide__icon {
  transform: scale(1.8);
  background-position: 100% center;
}

.what-we-provide__card:hover .what-we-provide__card-title {
  color: #c6bcff;
}

.what-we-provide__card:hover .what-we-provide__card-text {
  color: #d4c3e6;
}

/*================================= End Section What we provide ===============================  */

/*================================= Section Recruitment ===============================  */

.recruitment {
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  color: #d4c3e6;
  padding-top: 40px;
  padding-bottom: 40px;
}

.recruitment__heading {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 24px;
  background: linear-gradient(153deg, white, white 48%, rgba(198, 188, 255, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.64px;
}

.recruitment__card {
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  border: 1px solid #655e8d;
  border-radius: 44px;
  padding: 20px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recruitment__card .btn {
  margin-top: auto;
}

.recruitment__salary {
  background-color: rgba(212, 195, 230, 0.2);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #d4c3e6;
  flex-shrink: 0;
}

.recruitment__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  margin-bottom: 12px;
}

.recruitment__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
  margin: 0;
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 0;
}

.recruitment__desc {
  font-size: 16px;
  letter-spacing: 0.64px;
  color: rgba(130, 122, 156, 1);
  text-align: left;
  width: 100%;
  margin-bottom: 16px;
}

/*================================= End Section Recruitment ===============================  */

/* PAGE ABOUT US */

/* Section page header  */

.page-header__content {
  max-width: 860px;
  margin: 114px auto 99px;
}

.page-header__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1616px;
  height: 100px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    #000000 0%,
    #131219 30%,
    #271f3844 65%,
    #271f3800 100%
  );
  pointer-events: none;
  filter: blur(66px);
  border-radius: 60% / 50%;
}

.page-header__content::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100px;
  top: 340px;
  bottom: 0px;
  margin: 0 auto;
  transform: translateX(-50%);
  background: radial-gradient(
    40% 40% at 50% 50%,
    rgb(82, 74, 99),
    rgba(39, 31, 56, 0) 100%
  );
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.page-header {
  overflow: hidden;
  position: relative;
  background-size: inherit;
  background-position: center 200px;
  background-repeat: no-repeat;
}

.page-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(58, 40, 88, 0) 0%,
    rgba(58, 40, 88, 0.5) 25%,
    #8354b06e 50%,
    rgba(58, 40, 88, 0.5) 75%,
    rgba(58, 40, 88, 0) 100%
  );
}

.page-header__title {
  letter-spacing: 0.64px;
  background: linear-gradient(to right, #ffffff, #6551b5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
  text-shadow: 6px 6px 11px #b1a1e641;
  position: relative;
  z-index: 1;
}

.page-header__breadcrumb {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #827a9c;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header__breadcrumb span {
  color: #827a9c;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.header-icons-container canvas {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.header-icons-container canvas ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-200px);
  transition: transform 0.1s;
  z-index: -1;
}

.header-icon {
  position: absolute;
  transition: transform 0.1s ease-out;
}

.particle {
  position: absolute;
  pointer-events: none;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  mix-blend-mode: screen;
}

/* End section page header */

/* Section about Hex Snap */

.about-hex {
  padding-top: clamp(40px, 7.8vw, 80px);
}

.about-hex__accordion {
  border: none;
}

.accordion-item {
  border: none;
  background-color: transparent;
  position: relative;
}

.accordion-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #d4c3e6, transparent);
  position: absolute;
  bottom: 0px;
  left: 0;
}

.about-hex__toggle {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 16px 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.44px;
  color: #d4c3e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.about-hex__toggle:focus {
  outline: none;
  box-shadow: none;
}

.about-hex__toggle::after {
  display: none !important;
}

.about-hex__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d4c3e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  position: relative;
  flex-shrink: 0;
}

.about-hex__icon::before,
.about-hex__icon::after {
  content: "";
  position: absolute;
  background-color: #d4c3e6;
  transition: 0.3s ease;
}

.about-hex__icon::before {
  width: 12px;
  height: 2px;
}

.about-hex__icon::after {
  width: 2px;
  height: 12px;
}

.accordion-button[aria-expanded="true"] .about-hex__icon::after {
  height: 0;
}

.about-hex__content {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  line-height: 24px;
  color: #d4c3e6;
  padding-top: 0px;
}

.accordion-body.about-hex__content {
  font-weight: 100;
  font-size: 14px;
}

.accordion-item + .accordion-item {
  margin-top: 24px;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #d4c3e6 !important;
}
.about-hex__content .col-md-6 ul{
	list-style: disc !important;
}

/* End Section about Hex Snap */

/* Section Our Team */

.our-team {
  padding-top: clamp(40px, 7.8vw, 80px);
  padding-bottom: clamp(40px, 7.8vw, 80px);
}

.row-cols-1 {
  padding-top: 24px;
}

.our-team__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #2d2d44;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 300px;
  height: 400px;
  border: 1px solid #836ec985;
}

.team__card {
  display: flex;
  justify-content: center;
}

.our-team__card:hover {
  transform: scale(1.05);
}

.our-team__title {
  padding-bottom: 24px;
}

.our-team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 16px;
}

.our-team__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 260px;
  height: 86px;
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  backdrop-filter: blur(2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  background: linear-gradient(
    46.17deg,
    rgba(26, 20, 45, 0.8) 11.684%,
    rgba(24, 19, 39, 0.8) 59.579%,
    rgba(75, 62, 112, 0.8) 99.81%
  );
}

.our-team__name {
  font-size: 24px;
  font-weight: 700;
  margin-top: 6px;
}

.our-team__role {
  font-size: 14px;
  margin: 0;
  color: #cbbce5;
  line-height: 1.2;
  font-weight: 400;
}

.our-team__badge::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 12px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #d4c3e6;
  border-radius: 50%;
  z-index: 2;
}

.our-team__badge::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #836ec9;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  border-radius: 5px 5px 10px 5px;
}

.our-team__card::after {
  content: "";
  position: absolute;
  top: 80%;
  left: -80%;
  width: 500px;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    #180a34,
    rgba(24, 10, 52, 0) 60%,
    rgba(39, 31, 56, 0) 100%
  );
  border-radius: 50% / 50%;
  transform: rotate(-90deg);
  transform-origin: center;
  filter: brightness(1.3) blur(0.5px) contrast(1);
  pointer-events: none;
  z-index: 0;
}

/* End Section Our Team */

/* END PAGE ABOUT US */

/* PAGE SERVICES */

.create-solutions {
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  padding: 40px 0;
}

.create-solutions__image::after {
  content: "";
  position: absolute;
  width: 1182.66px;
  height: 467.04px;
  top: -35%;
  left: -90%;
  background: radial-gradient(
    40% 40% at 50% 50%,
    rgb(80, 73, 109),
    rgba(39, 31, 56, 0) 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
  filter: blur(66px);
  z-index: 0;
  border-radius: 60% / 50%;
}

/* END PAGE SERVICES */

/* PAGE RECRUITMENT */

/* section core values  */

.core-values {
  /* padding: 80px 0; */
  padding-top: clamp(40px, 7.8vw, 80px);
  padding-bottom: clamp(40px, 7.8vw, 80px);
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  border-radius: 24px;
}

.core-values__header {
  margin-bottom: 32px;
}

.core-values__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.64px;
  line-height: 42px;
  color: #a9a1e1;
  margin-bottom: 16px;
}

.core-values__description {
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #c1b1cf;
  font-weight: 400;
}

.core-values__content .row {
  align-items: stretch;
}

/* NEW: grid layout cho items */

.core-values__items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.core-values__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent;
}

.core-values__item img {
  width: 44px;
  object-fit: contain;
}

.core-values__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.36px;
  color: #d4c3e6;
  margin: 0;
  padding-bottom: 6px !important;
}

.core-values__content-text {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: #827a9c;
  margin: 0;
}

.core-values__banner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.core-values__banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* End section core values */

/* Section Recruitment Summary */

.recruitment_page {
  background: none;
  padding-top: clamp(40px, 7.8vw, 80px);
  padding-bottom: clamp(40px, 7.8vw, 80px);
}

/* Section Recruitment Summary */

/* Section Our working culture */

.culture {
  padding-top: clamp(40px, 7.8vw, 80px);
  padding-bottom: clamp(40px, 7.8vw, 80px);
}

.our-working__header {
  margin-bottom: 40px;
}

.our-working__description {
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #c1b1cf;
  font-weight: 400;
  max-width: 716px;
  margin: auto;
}

.culture__card-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.32px;
  color: #d4c3e6;
}

.culture__card img {
  padding-top: 30px;
  max-width: 100%;
  transition: transform 0.4s ease;
  transform-origin: center center;
}

.culture__card:hover img {
  transform: scale(1.2);
}

.culture__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px;
  position: relative;
  perspective: 1000px;
}

.culture__card {
  width: 220px;
  height: 254px;
  background-image: linear-gradient(
    140deg,
    rgb(40, 37, 57),
    rgb(58, 56, 72),
    rgb(57, 56, 64),
    rgb(47, 45, 56)
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4c3e6;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  background-size: 300% 300%;
}

.culture__card:hover {
  transform: rotateY(15deg) rotateX(5deg) scale(1.05);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(210, 180, 255, 0.3);
  z-index: 2;
}

.culture__card::before {
  content: "";
  position: absolute;
  top: 68px;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s ease;
}

.culture__card:hover::before {
  left: 80%;
  opacity: 1;
}

/* End Section Our working culture */

/* END PAGE RECRUITMENT */

/* PAGE RECRUITMENT DETAIL */

/* Section Recruitment Detail */

.recruitment-detail {
  padding: 40px 0;
}

.recruitment-detail__card {
  border-radius: 36px;
  border: 1px solid rgba(60.46, 56.28, 85.57, 1);
}

.recruitment-detail__content {
  padding: 24px;
}

.recruitment-detail__box {
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid rgba(60.46, 56.28, 85.57, 1);
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
}

.recruitment-detail__box:last-child {
  margin-bottom: 0;
}

.recruitment-detail__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 100%;
  color: rgba(212, 195, 230, 1);
  margin-bottom: 8px;
}

.recruitment-detail__text {
  font-size: 16px;
  letter-spacing: 0.28px;
  line-height: 24px;
  color: rgba(130, 122, 156, 1);
  margin: 0;
}

.recruitment-detail__text ul {
  list-style: disc;
  /* margin-left: 1.5em; */
}

.recruitment-detail__text ol {
  list-style: decimal;
  margin-left: 1.5em;
}

.recruitment-detail__action {
  margin-top: 24px;
}

.recruitment-detail__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1232px;
  height: 52px;
  padding: 8px 16px;
  background-color: rgba(60.46, 56.28, 85.57, 1);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25) inset;
  border-radius: 140px;
  border: 1px solid rgba(82.24, 73.71, 99.3, 1);
  cursor: pointer;
}

.recruitment-detail__button-text {
  font-size: 14px;
  letter-spacing: 0.84px;
  line-height: 100%;
  color: rgba(212, 195, 230, 1);
  margin-right: 8px;
}

.recruitment-detail__button-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

/* End Section Recruitment Detail */

/* Section Modal Container */

.modal-lg-custom {
  max-width: 652px;
  width: calc(100% - 32px);
}

.recruitment-detail__modal {
  padding: 24px;
  background-color: rgba(44, 40, 54, 1);
  border-radius: 36px;
  position: relative;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #6c6a7d transparent;
}

.recruitment-detail__modal::-webkit-scrollbar {
  width: 6px;
}

.recruitment-detail__modal::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.recruitment-detail__modal-header {
  margin-bottom: 24px;
}

.recruitment-detail__modal-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 100%;
  background: linear-gradient(153deg, white, white 48%, rgba(198, 188, 255, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.recruitment-detail__modal-subtitle {
  letter-spacing: 0.28px;
  line-height: 24px;
  color: rgba(130, 122, 156, 1);
  margin: 15px 0 0;
}

.recruitment-detail__modal-body {
  width: 100%;
}

.recruitment-detail__modal-field {
  width: 100%;
  padding: 0px 20px;
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(82, 73, 99, 1);
  margin-bottom: 24px;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  margin-top: 0px !important;
}

.recruitment-detail__modal-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  letter-spacing: 0.28px;
  line-height: 24px;
  padding-right: 30px;
  cursor: pointer;
  background-color: rgb(48, 44, 57) !important;
}

.recruitment-detail__modal-field.modal-textarea {
  border-radius: 20px 10px 10px 20px;
  padding-right: 0px;
}

/* Input & Textarea */

.recruitment-detail__modal-input,
.recruitment-detail__modal-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 24px;
  color: rgba(212, 195, 230, 1);
  resize: none;
  white-space: pre-wrap;
  padding: 8px 0;
}

.recruitment-detail__modal-input::placeholder,
.recruitment-detail__modal-textarea::placeholder {
  color: #a8a0bf;
}

.recruitment-detail__modal-textarea {
  height: 96px;
  padding-bottom: 20px;
  /* padding-right: 50px; */
  word-break: break-word;
}

/* Dropdown Styling */

.recruitment-detail__modal select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 8px 40px 8px 0;
  font-size: 14px;
  color: rgba(212, 195, 230, 1);
  width: 100%;
  cursor: pointer;
}

.recruitment-detail__modal-indicator {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-select-dropdown.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* File Attach */

.recruitment-detail__modal-action {
  display: flex;
  align-items: center;
}

.recruitment-detail__modal-file {
  display: flex;
  align-items: center;
  margin-right: 8px;
  cursor: pointer;
}

.recruitment-detail__modal-file-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.recruitment-detail__modal-file-input {
  display: none;
}

.recruitment-detail__modal-icon {
  width: 28px;
  height: 28px;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.2s;
}

.recruitment-detail__modal-file-label:hover .recruitment-detail__modal-icon {
  background-color: rgba(255, 255, 255, 0.1);
}

.recruitment-detail__modal-file-text {
  font-size: 14px;
  letter-spacing: 0.28px;
  text-decoration: underline;
  color: rgba(212, 195, 230, 1);
  margin-left: 8px;
}

/* Close Button */

.recruitment-detail__modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #3c3856;
  border: 1px solid #524a63;
  box-shadow: 0px 0px 6px 0px #00000040 inset;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.recruitment-detail__modal-close-x {
  font-size: 40px;
  color: #d4c3e6;
  line-height: 60px;
  margin-top: -3px;
}

/* End Section Modal Container */

/* END PAGE RECRUITMENT DETAIL */

/* PAGE CONTACT US */

/* Section contac us  */

.contact-us {
  padding: 24px;
}

.contact-us__container {
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  border-radius: 24px;
  margin: auto;
}

.contact-us__content {
  padding: 24px;
}

.contact-us__info {
  padding: 24px;
  background-color: rgba(212, 195, 230, 0.05);
  box-shadow: 2px 2px 6px rgba(132, 138, 153, 0.18);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-us__header {
  margin-bottom: 14px;
  position: relative;
}

.contact-us__header::before {
  content: "";
  position: absolute;
  top: 12px;
  right: clamp(
    -60px,
    calc(
      0px + (-0.1272 * clamp(0px, (100vw - 375px), 393px)) +
        /* 375px -> 768px */ (-0.2381 * clamp(0px, (100vw - 768px), 42px)) +
        /* 768px -> 810px */ (0.3297 * clamp(0px, (100vw - 810px), 182px))
        /* 810px -> 992px */
    ),
    0px
  );
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #d4c3e6;
  border-radius: 50%;
}

.contact-us__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.48px;
  line-height: 100%;
  background: linear-gradient(153deg, #fff 48%, #c6bcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.contact-us__description {
  font-size: 16px;
  letter-spacing: 0.6px;
  line-height: 24px;
  color: #827a9c;
  max-width: 580px;
}

.contact-us__details {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: auto;
}

.contact-us__details::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at bottom right,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.contact-us__item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.contact-us__icon img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}

.contact-us__text {
  font-size: 14px;
  line-height: 100%;
  color: #d4c3e6;
  margin-left: 12px;
  margin-bottom: 0px;
}

.contact-us__form {
  padding: 24px;
  padding-right: 0px;
}

.contact-us__form-content {
  width: 100%;
}

.contact-us__field {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow: 2px 2px 14px rgba(43, 50, 152, 0.04);
  border-radius: 24px;
  border: 1px solid rgba(82, 73, 99, 1);
  margin-bottom: 24px;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0;
}

.contact-us__input,
.contact-us__textarea {
  width: 100%;
  background-color: rgb(48, 44, 57);
  border: none;
  outline: none;
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 24px;
  color: rgba(212, 195, 230, 1);
  padding: 12px 20px;
  border-radius: 24px;
  box-sizing: border-box;
  appearance: none;
  resize: vertical;
  cursor: pointer;
}

.contact-us__textarea {
  text-align: left;
  vertical-align: top;
}

.contact-us__input::placeholder,
.contact-us__textarea::placeholder {
  color: #a8a0bf;
  text-align: left;
}

.contact-us__label {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 12px;
  color: #a8a0bf;
  transition: 0.2s;
  pointer-events: none;
  z-index: 1;
}

#position option {
  background-color: #2a2633;
  color: #ffffff;
  padding: 8px 12px;
}

.contact-us__modal-indicator {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-select-dropdown.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: 35%;
  transform: translateY(0%);
  pointer-events: none;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* End Section contac us */

/* END PAGE CONTACT US */

/*================================= Section Footer  ===============================  */

.footer {
  color: #d4c3e6;
  font-size: 14px;
  line-height: 1.6;
  padding-top: clamp(40px, 7.8vw, 80px);
  padding-bottom: 40px;
}

.footer__brand {
  text-decoration: none;
  color: inherit;
}

.footer__brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.92px;
  color: #ece9fd;
}

.footer__desc {
  margin-top: 10px;
  color: #d4c3e6;
  max-width: 280px;
}

.footer__title {
  font-size: 16px;
  font-weight: 500;
  color: #827a9c;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: #d4c3e6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__contact-link {
  color: #d4c3e6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer__contact-link:hover {
  color: #ffffff;
}

.footer__contact img {
  width: 24px;
  height: 24px;
}

/*================================= End Section Footer  ===============================  */

/*================================= Section Copyright  ===============================  */

.footer-copyright {
  background: linear-gradient(
    128.56deg,
    rgba(133, 130, 186, 0.06) 0%,
    rgba(100, 78, 161, 0.06) 46.17%,
    rgba(54, 31, 117, 0.06) 69.02%,
    rgba(141, 110, 161, 0.06) 97%
  );
  border-top: 1px solid rgba(236, 233, 253, 0.1);
  padding: 24px 0;
}

.footer-copyright__text {
  color: #ece9fd;
  font-size: 14px;
  line-height: 1;
}

.footer-copyright__text p {
  margin-bottom: 0px !important;
}

.footer-copyright__text p a {
  color: #836ec9;
}

.footer-copyright__brand {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.footer-copyright__brand:hover {
  text-decoration: underline;
}

/*================================= End Section Copyright  ===============================  */

/*================================= PAGE 404  ===============================  */

.error-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(15px, 2vw, 30px);
  text-align: center;
  padding: 20px;
}

.error-section .inner-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 80px;
  border-radius: 20px;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
  max-width: 550px;
  width: 100%;
}

.error-section h1 {
  font-size: 110px;
  font-weight: bold;
  color: #ff3333;
  margin-bottom: 20px;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}

.error-section h2 {
  font-size: 22px;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}

/*================================= END PAGE 404  ===============================  */

/*================================= BACK TO TOP  ===============================  */

.button-container-back-to-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 35px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  padding-left: 6px;
  padding-right: 3px;
  visibility: hidden;
}

.back-to-top {
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
  left: 0px;
}

.back-to-top {
  padding: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-radius: 30px;
  border: 1px solid rgba(82.24, 73.71, 99.3, 1);
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
}

.back-to-top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    40% 40% at 50% 50%,
    #9287a7b2 19.23%,
    rgba(39, 31, 56, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.back-to-top:hover::after {
  opacity: 1;
}

.back-to-top img {
  height: 10px;
  object-fit: contain;
  margin: 0 auto;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  opacity: 0.8;
}

/*================================= END BACK TO TOP  ===============================  */

/*================================= RESPONSIVE TABLET ===============================  */

@media (max-width: 992px) {
  /* Section What we provide */
  .what-we-provide__card {
    width: calc(50% - 12px);
  }
  .what-we-provide__icon {
    width: 80px;
    height: 80px;
  }
  .what-we-provide__img {
    width: 40px;
    height: 40px;
  }
  .curve-lines {
    height: 500px;
  }
  /* End Section What we provide */
  /* section core values  */
  .core-values__items-grid {
    gap: 25px;
  }
  .core-values__items {
    margin-bottom: 30px;
  }
  .core-values__banner {
    padding-top: 30px;
  }
  .core-values__items--left,
  .core-values__items--right {
    padding: 0;
  }
  .core-values__items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .culture__card::before {
    display: none;
  }
  /* End section core values */
  /* Section Info Solutions */
  .info-solutions__content::after {
    top: 310px;
  }
  .info-solutions__content {
    margin: 100px 0px;
  }
  /* End Section Info Solutions */
  .who-we-are .who-we-are-row {
    gap: 0px;
    justify-content: center;
  }
  .who-we-are__image--primary {
    padding: 0 15px;
  }
  .trademark {
    padding: 40px 0 24px;
  }
  .stats__wrapper {
    padding: 32px 0px;
  }
  .stats__metric::before {
    right: 0px;
  }
  .stats__metric {
    padding-left: 20px;
  }
  .page-header__content {
    margin: 70px auto;
  }
  .page-header__content::after {
    top: 265px;
    width: 100%;
  }
  .create-solutions {
    position: relative;
    overflow: hidden;
  }
  .button-container-back-to-top {
    visibility: visible;
  }
}

/* Section Recruitment Detail */

/* Tablet + Mobile: Use Grid */

@media (max-width: 991px) {
  .culture__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 20px;
  }
  .culture__card {
    position: static;
    margin: 0 auto;
  }
  /* Menu  */
  /* End Menu  */
}

@media (max-width: 991px) and (min-width: 768px) {
  .culture__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 40px 20px;
    justify-content: center;
  }
  .culture__card {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    position: static;
  }
}

/* End Section Recruitment Detail */

/*================================= END RESPONSIVE TABLET ===============================  */

/*================================= RESPONSIVE MOBILE ===============================  */

@media (max-width: 768px) {
  .info-solutions__content {
    margin: 60px 0px;
  }
  .trademark {
    padding: 40px 0 24px;
  }
  .stats__wrapper .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
  .stats__metric {
    padding-left: 25px;
  }
  .stats__metric::before {
    display: none;
  }
  .stats__metric:nth-child(1)::after,
  .stats__metric:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 4%,
      #dbd5fe 50.5%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .stats__counter {
    margin-top: 16px;
  }
  .stats__metric:last-child::after {
    display: none;
  }
  .who-we-are {
    margin-top: 0px;
  }
  .info-solutions__title {
    font-size: 1.5rem;
  }
  .info-solutions__description {
    font-size: 0.875rem;
  }
  /*Section Logo Trademark */
  .stats__wrapper {
    padding: 20px;
  }
  .stats__number,
  .stats__plus {
    font-size: 40px;
  }
  .stats__metric:not(:last-child) {
    border-right: none;
  }
  /* End Section Logo Trademark  */
  /* Section What we provide  */
  .what-we-provide__title {
    font-size: 24px;
  }
  .what-we-provide__card {
    width: 100%;
    padding: 12px;
  }
  .what-we-provide__cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  /*End Section What we provide */
  /* Section What we provide */
  .what-we-provide__cards {
    flex-direction: column;
    gap: 16px;
  }
  .what-we-provide__icon {
    width: 72px;
    height: 72px;
  }
  .what-we-provide__img {
    width: 36px;
    height: 36px;
  }
  .what-we-provide__title {
    font-size: 24px;
  }
  .curve-lines {
    height: 160px;
  }
  /* End Section What we provide */
  /* Section Modal Container */
  .recruitment-detail__modal {
    width: 100%;
    max-height: 90vh;
    padding: 16px;
  }
  .recruitment-detail__modal-field {
    padding: 12px 16px;
  }
  .recruitment-detail__modal-title {
    font-size: 20px;
  }
  /* End Section Modal Container */
  /* Section Page height  */
  .page-header__content {
    margin: 25px auto 50px;
  }
  /* End Section Page height */
  /* section contact us */
  .contact-us {
    width: 100%;
    height: auto;
    padding: 16px;
  }
  .contact-us__info,
  .contact-us__form {
    width: 100%;
    height: auto;
    padding: 16px;
  }
  .contact-us__title {
    font-size: 20px;
  }
  .contact-us__description {
    width: 100%;
  }
  .contact-us__field {
    padding: 12px 16px;
    margin-bottom: 24px;
  }
  /* End section contact us */
}

/* PAGE RECRUITMENT */

@media (max-width: 767px) {
  .culture__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .culture__card {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    position: static;
  }
  .core-values__icon {
    padding-top: 24px;
  }
  .core-values__items-grid {
    gap: 10px;
  }
  .page-header__content::after {
    width: 100%;
    top: 195px;
  }
  .contact-us__content {
    padding: 12px;
  }
  .contact-us__form {
    padding-top: 32px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* END PAGE RECRUITMENT */

/*================================= END RESPONSIVE MOBILE ===============================  */
