.hero_area.traceability_hero_area,
.job_section {
  background-repeat: round;
  background-size: cover;
  max-width: 1500px;
  margin: 0 auto;
}
.job_location p,
.job_type p,
.tag {
  text-transform: uppercase;
}
.hero_area.traceability_hero_area {
  background-image: url(/assets/img/textileErp/TextileErpBackground.png);
  height: 543px;
}
.job_section,
.job_section .row {
  height: 231px;
}
.job_section {
  background-image: url(/assets/img/aboutUs/job_background.webp);
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
  color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.job_section h1 {
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.job_section p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.jd-form h3,
.job_apply_description h2 {
  font-size: 28px;
  color: #242733;
  line-height: normal;
}
.hero_btns .btn.global-btn,
.jd-form h3,
.job_apply_description h2 {
  font-weight: 700;
  font-style: normal;
}
.job_section_details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.job_apply_description {
  width: 56%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  box-shadow:
    0 30px 60px -12px rgba(50, 50, 93, 0.25),
    0 18px 36px -18px rgba(0, 0, 0, 0.3);
  padding: 21px 21px 21px 30px !important;
}
.btn-primary,
.hero_btns .btn.global-btn {
  background: linear-gradient(90deg, #0099c4 0, #00d1cf 100%);
}
.job_apply_form {
  width: 40%;
}
.job_apply_form .jd-form {
  border-radius: 32px;
  background: #fff;
  box-shadow:
    0 13px 27px -5px rgba(50, 50, 93, 0.25),
    0 8px 16px -8px rgba(0, 0, 0, 0.3);
  padding: 27px;
}
.jd-form h3 {
  text-align: center;
}
.job_description_section {
  margin-top: 40px;
}
.job_description_section .row {
  justify-content: space-between;
}
.case-study-image,
.job_apply_description h3 {
  margin-top: 45px;
}
.company_section ul,
.job_apply_description ul {
  padding: 0;
}
.company_section ul li,
.job_apply_description ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.job_apply_description ul li img {
  width: 18px;
  height: 25px;
}
.job_apply_description ul li div {
  line-height: 30px;
}
.aboutCompany,
.company_section {
  margin-top: 80px;
}
.company_section {
  margin-bottom: 40px;
}
.aboutCompany h2,
.company_section h2 {
  color: #242733;
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
}
#formsubmit {
  width: 100%;
  color: #fff;
}
.aboutCompany p {
  color: rgba(0, 0, 0, 0.69);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 184%;
  text-align: left;
}
.hero_heading,
.hero_text h1 {
  line-height: 62px;
  color: #0e0e0e;
}
.company_section ul li img {
  width: 18px;
  height: 20px;
}
.hero_area.traceability_hero_area .hero_content {
  margin: 110px auto 0;
  width: 525px;
}
.hero_btns .btn.global-btn {
  width: 194px;
  height: 52px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  line-height: normal;
  box-shadow: none;
}
.btn-primary {
  border: none;
  border-radius: 5px;
  padding: 10px 36px;
  font-size: 18px;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.button--calypso:hover span {
  animation:
    0.3s forwards MoveScaleUpInitial,
    0.3s 0.3s forwards MoveScaleUpEnd;
  color: #02bace;
}
@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}
@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.button--calypso::before {
  content: "";
  background: #fff;
  width: 152%;
  height: 0;
  padding-bottom: 90%;
  top: -201%;
  left: -21%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  position: absolute;
}
.button--calypso:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso span {
  display: block;
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
.hero_heading,
.hero_text h1,
h3.container_heading {
  font-weight: 700;
  font-style: normal;
}
.button--calypso::after {
  content: "";
  background: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}
.button--calypso:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 50ms;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}
.hero_heading {
  font-size: 41px;
}
.hero_text {
  padding: 14px 0;
  width: 87%;
}
.tag {
  display: flex;
  width: 144px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.99);
  color: #0e0e0e;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
.hero_text h1 {
  font-size: 50px;
}
.hero_text {
  color: rgba(14, 14, 14, 0.7);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
h3.container_heading {
  color: #242733;
  text-align: center;
  font-size: 40px;
  line-height: normal;
  margin-bottom: 12px;
}
.mission_content p {
  color: rgba(14, 14, 14, 0.7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  width: 817px;
  text-align: center;
  margin: 0 auto;
}
.glance-list li p,
.glance-list li.country span,
.glance-list li.customer span,
.glance-list li.customer_number span,
.glance-list li.innovation span,
.thank_you_text h1,
.thank_you_text p {
  font-style: normal;
  line-height: normal;
}
.What_We_Aspire,
.lifeAtWfx {
  margin-bottom: 50px;
}
.highlight-numbers .glance-list {
  display: inline-flex;
  padding: 16px 60px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(160, 160, 160, 0.29);
  background: #fff;
  box-shadow:
    0 179px 50px 0 transparent,
    0 115px 46px 0 rgba(0, 0, 0, 0.01),
    0 65px 39px 0 rgba(0, 0, 0, 0.04),
    0 29px 29px 0 rgba(0, 0, 0, 0.06),
    0 7px 16px 0 rgba(0, 0, 0, 0.07);
  margin-top: 20px;
}
.glance-list li {
  display: inline-block;
  text-align: center;
  padding: 0 30px;
}
.highlight-numbers {
  margin-top: -49px;
  margin-bottom: 70px;
}
.glance-list li.customer {
  padding-left: 0;
}
.glance-list li.customer_number {
  padding: 0 30px;
}
.glance-list li.customer_number span {
  color: #e56666;
  font-size: 35px;
  font-weight: 600;
}
.glance-list li.country span,
.glance-list li.customer span {
  color: #efa64a;
  font-size: 35px;
  font-weight: 600;
}
.glance-list li p {
  color: rgba(51, 51, 51, 0.6);
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.glance-list li.users span,
.glance-list li.users_employee span {
  color: #333;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.glance-list li.users_employee span {
  color: #02bace;
}
.glance-list li.innovation {
  padding-right: 0;
}
.glance-list li.innovation span {
  color: #02bace;
  font-size: 35px;
  font-weight: 600;
}
.grid-box {
  display: flex;
  gap: 19px;
  justify-content: center;
}
.grid-box .col_1,
.grid-box .col_2,
.grid-box .col_3 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.Our_Backstory_img {
  width: 48%;
}
.our_mission_section.team_wfx .Our_Backstory_img {
  width: 51%;
}
.our_mission_section.team_wfx .Our_Backstory_img .mission_img img {
  width: 100%;
  margin-top: -25px;
}
.slick-slide img {
  width: 100%;
  object-fit: contain;
}
.job_list .job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 15px;
  border-radius: 24px;
  padding: 16px 28px;
  background: #f7f7f8;
}
.job_list .job p {
  margin: 0;
  color: grey;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.397px;
}
.job_location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.job_heading {
  color: rgba(36, 39, 51, 0.85);
  font-size: 18.9px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.6px;
  letter-spacing: -0.1px;
}
.job_list {
  margin-bottom: 80px;
}
.thank_you_div {
  margin-bottom: 40px;
  margin-top: 40px;
}
.thank_you_img {
  width: 355px;
  margin: 0 auto;
}
.thank_you_text h1 {
  background: var(
    --1,
    linear-gradient(136deg, #00d1cf -386.74%, #0099c4 5.27%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: 700;
}
.thank_you_text p {
  color: #242733;
  font-size: 18px;
  font-weight: 400;
}
.case-study-image img {
  width: 100%;
  margin: auto 0 auto auto;
}
@media only screen and (min-width: 1024px) and (max-width: 1390px) {
  .traceability_features_area .features_heading {
    font-size: 36px;
  }
  .nav-pills .nav-link,
  .nav-pills .nav-link.active {
    font-size: 16px;
  }
  .hero_area.traceability_hero_area .container {
    max-width: 1260px !important;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .hero_heading,
  h3.container_heading {
    text-align: center;
    font-style: normal;
    font-weight: 700;
  }
  .case-study-image img {
    display: none;
  }
  .aboutCompany h2,
  .company_section h2 {
    font-size: 36px;
  }
  .job_description_section .row {
    flex-direction: column;
  }
  .job_apply_description,
  .job_apply_form {
    width: 100%;
    margin-bottom: 40px;
  }
  .aboutCompany,
  .company_section {
    margin-top: 40px;
  }
  .aboutCompany h2,
  .aboutCompany p,
  .company_section h2 {
    text-align: center;
  }
  .hero_area.traceability_hero_area {
    background-image: url(/assets/img/aboutUs/CareerMob.webp);
    background-repeat: round;
    background-size: cover;
    max-width: 1500px;
    height: 824px;
    margin: 0 auto;
  }
  .highlight-numbers {
    margin-top: -54px;
  }
  .hero_heading {
    color: #0e0e0e;
    font-size: 25.485px;
    line-height: 37.62px;
    width: 358px;
  }
  .hero_text {
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }
  .hero_area.traceability_hero_area .hero_content {
    padding: 35px 14px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .hero_area.traceability_hero_area.team_wfx .hero_content {
    padding: 35px 14px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
  }
  .hero_area.traceability_hero_area .hero_content .hero_btns {
    width: 100%;
    border-radius: 66px;
    background: linear-gradient(90deg, #00d1cf 0, #0099c4 100%);
  }
  .hero_btns .btn.global-btn {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    background: 0 0;
    font-size: 12px;
    height: 40px;
  }
  h3.container_heading {
    color: #242733;
    font-size: 25px;
    line-height: normal;
  }
  .Our_Backstory_img,
  .mission_content p {
    width: 100%;
  }
  .highlight-numbers .glance-list {
    display: flex;
    width: 100%;
    padding: 11px 13px 12.721px 11px;
    align-items: center;
    height: 86px;
    justify-content: space-evenly;
    border-radius: 42px;
    margin-top: 38px;
    margin-bottom: 0;
  }
  .glance-list li.country span,
  .glance-list li.customer span,
  .glance-list li.customer_number span,
  .glance-list li.innovation span,
  .glance-list li.users span,
  .glance-list li.users_employee span {
    font-size: 19px;
  }
  .glance-list li {
    padding: 0 4px;
  }
  .job_list .job {
    flex-direction: column;
    margin: 26px 0;
    padding: 23px 23px 0;
    align-items: flex-start;
    position: relative;
  }
  .job_type {
    position: absolute;
    right: 23px;
    text-transform: uppercase;
  }
  .job .hero_btns {
    position: absolute;
    bottom: 14px;
    right: 19px;
  }
  .job .hero_btns .btn.global-btn {
    background: linear-gradient(90deg, #0099c4 0, #00d1cf 100%);
    border-radius: 6px;
  }
  .job_location {
    margin: 29px 0;
  }
  .lifeAtWfx {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 350px) and (max-width: 480px) {
  .hero_area.traceability_hero_area {
    background-size: contain;
    height: 751px;
    margin: 0 auto;
  }
  .hero_area.traceability_hero_area .hero_content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 481px) and (max-width: 580px) {
  .hero_area.traceability_hero_area {
    background-size: contain;
    height: 900px;
    margin: 0 auto;
  }
}
