h1, p {
  color: #000000;
}

h1, h2, h3, p {
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 2.2rem;
}

.btn-green {
  background-color: #2D8233;
  font-size: 1.6rem;
  color: #FFFFFF;
  border-color: #2D8233;
  padding: 5px 20px;
  font-size: 18px;
  font-weight: 500;
}
.btn-green:hover {
  background-color: #2D8233;
  border-color: #2D8233;
}
.btn-green:first-child:active {
  background-color: #2D8233;
  border-color: #2D8233;
}
.btn-green:active {
  background-color: #2D8233;
  border-color: #2D8233;
}

.section_heading {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
.section_heading .green {
  color: #2E8134;
}
@media (min-width: 1200px) {
  .section_heading {
    margin-bottom: 6rem;
  }
}
@media (min-width: 1400px) {
  .section_heading {
    font-size: 4.4rem;
  }
}

.btn-outline {
  border: 1px solid #2E8134;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 57px;
  background-color: #FFFFFF;
  padding: 10px 50px;
}
@media (min-width: 1200px) {
  .btn-outline {
    font-size: 2rem;
  }
}
.btn-outline:hover {
  border: 1px solid #2E8134;
  background-color: #FFFFFF;
}

.banner-typography > .container {
  height: 100%;
}
.banner-typography > .container > .row {
  height: 100%;
  align-items: center;
}
.banner-typography h1 {
  color: #FFFFFF;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .banner-typography h1 {
    font-size: 3.6rem;
  }
}
@media (min-width: 992px) {
  .banner-typography h1 {
    font-size: 4.5rem;
  }
}
.banner-typography h1 .green-text {
  color: #2E8134;
}
.banner-typography p {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.text-green {
  color: #2E8134;
}

.fixed-header {
  transition: background-color 0.3s ease;
  z-index: 999;
}
.fixed-header nav .header-wrapper .navbar-toggler {
  right: 15px;
}
.fixed-header nav .menu-list-with-button ul li a {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .fixed-header nav .menu-list-with-button ul li a {
    font-size: 1.6rem;
  }
}
.fixed-header nav .menu-list-with-button .custom_primary_btn.headerBtn {
  font-size: 1.4rem;
}
.fixed-header nav .btn-green {
  font-size: 1.6rem;
  font-weight: 500;
}

.custom-checkbox-input {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  background-color: #F2F2F2;
  border-radius: 12px;
  border: 1px solid #F2F2F2;
  color: #929292;
  padding: 7px 10px;
  cursor: pointer;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.custom-checkbox-input input[type=checkbox] {
  display: none;
}

.custom-checkbox-input span {
  pointer-events: none;
}

/* Checked State Styling */
.custom-checkbox-input input[type=checkbox]:checked + span {
  color: #fff;
}

.custom-checkbox-input input[type=checkbox]:checked {
  background-color: #2E8134;
}

.custom-checkbox-input:has(input[type=checkbox]:checked) {
  background-color: #2E8134;
  border-color: #2E8134;
  color: #fff;
}

body {
  background: transparent !important;
}

.tringle_box {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  justify-content: center;
  gap: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.triangle-wrapper {
  width: 300px;
  height: 300px;
}

.tringle_box svg {
  width: 100%;
  height: 100%;
}

.triangle {
  stroke: rgba(0, 0, 0, 0.3);
  fill: none;
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 3s ease;
}

.triangle.animated {
  stroke-dashoffset: 0;
}

main {
  position: relative;
  z-index: 9;
}

footer {
  position: relative;
  overflow: hidden;
}

.max-width-500 {
  max-width: 500px;
}

.mb-100 {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .mb-100 {
    margin-bottom: 10rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
  footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1200px) {
  .section-padding {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

[class^=col-], [class*=" col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.nav-link.dropdown-item:hover {
  color: #212529;
}

html {
  scroll-behavior: smooth;
  font-size: 50%;
}
@media (min-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Poppins", sans-serif;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.header-banner {
  background: transparent linear-gradient(297deg, #ADE5B2 0%, #B0E7B4 65%, #DAFFCE 100%) 0% 0% no-repeat padding-box;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  height: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1200px) {
  .header-banner {
    padding-bottom: 3rem;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
  }
}
.header-banner .logo img {
  max-width: 210px;
}

.banner-body .container .row > .col-md-6 {
  display: grid;
}
.banner-body .container .row > .col-md-6 .logo {
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .banner-body .container .row > .col-md-6 .logo {
    text-align: left;
    margin-bottom: 0rem;
  }
}
.banner-body h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.banner-body h1 .green-text {
  color: #2E8134;
}
.banner-body p {
  font-size: clamp(1.6rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  letter-spacing: 0.26px;
}
.banner-body .btn-green {
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.banner-body .banner-image-wrapper {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .banner-body .banner-image-wrapper {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .banner-body .banner-image-wrapper {
    text-align: right;
  }
}
.banner-body .banner-image-wrapper img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .banner-body .banner-image-wrapper img {
    max-width: 586px;
  }
}
@media (min-width: 1200px) {
  .banner-body .banner-image-wrapper:after {
    content: "";
    background: url("../img/landing/roots.png");
    width: 440px;
    height: 399px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    left: -216px;
    top: 94%;
  }
}
@media (min-width: 1400px) {
  .banner-body .banner-image-wrapper:after {
    left: -157px;
    top: 94%;
  }
}

.why-choose-section {
  padding-bottom: 30px;
}
.why-choose-section .why-choose-card-row [class^=col] {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .why-choose-section {
    padding-bottom: 0px;
  }
}
.why-choose-section .choose-card {
  background: #F7FDF7 0% 0% no-repeat padding-box;
  border: 1px solid #2E8134;
  border-radius: 52px;
  padding: 20px;
  height: 100%;
}
@media (min-width: 1200px) {
  .why-choose-section .choose-card {
    padding: 1.5rem;
  }
}
.why-choose-section .choose-card .choose__card__img {
  margin-bottom: 2rem;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
}
.why-choose-section .choose-card .choose__card__img:hover {
  transform: scale(1.05);
}
.why-choose-section .choose-card h2 {
  font-size: clamp(3rem, 3vw, 2.4rem);
  margin-bottom: 1.6rem;
  font-weight: 700;
  min-height: 58px;
  display: flex;
  align-items: center;
}
.why-choose-section .choose-card p {
  font-size: clamp(2rem, 2vw, 1.8rem);
}

.our-expertise-section {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .our-expertise-section {
    margin-top: 100px;
  }
}
.our-expertise-section .our-expertise-section-bg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F1F1F1;
  border-radius: 52px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .our-expertise-section .our-expertise-section-bg {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.our-expertise-section .our-expertise-section-bg .card__expertise__row > [class^=col] {
  margin-bottom: 15px;
}
.our-expertise-section .our-expertise-section-bg .card-expertise {
  background-color: #F7FDF7;
  border: 1px solid #2E8134;
  border-radius: 24px;
  padding: 42px;
  height: 100%;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
  text-align: center;
}
.our-expertise-section .our-expertise-section-bg .card-expertise:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.16);
}
.our-expertise-section .our-expertise-section-bg .card-expertise .card__expertise_img {
  margin-bottom: 24px;
}
.our-expertise-section .our-expertise-section-bg .card-expertise .card__expertise_img img {
  max-width: 100px;
}
.our-expertise-section .our-expertise-section-bg .card-expertise .card__expertise_text h3 {
  font-size: clamp(2rem, 2vw, 1.8rem);
  font-weight: 500;
}
@media (min-width: 768px) {
  .our-expertise-section .our-expertise-section-bg .card-expertise {
    text-align: left;
  }
}

.leader-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .leader-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.leader-section .container .row > .col-md-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-section .container .row > .col-md-6 .section_heading {
  max-width: 320px;
  text-align: left;
}

.free-health-checkup-section {
  background: transparent linear-gradient(301deg, #ADE5B2 0%, #B0E7B4 65%, #DAFFCE 100%) 0% 0% no-repeat padding-box;
  border-radius: 60px 60px 0px 0px;
  padding-top: 30px;
  padding-bottom: 170px;
}
@media (min-width: 1200px) {
  .free-health-checkup-section {
    border-radius: 150px 150px 0px 0px;
    padding-top: 60px;
    padding-bottom: 200px;
  }
}
.free-health-checkup-section .free-health-image {
  position: relative;
  z-index: 99;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .free-health-checkup-section .free-health-image {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .free-health-checkup-section .free-health-image img {
    max-width: 440px;
  }
}
.free-health-checkup-section .health__checkup__text__section p {
  max-width: 448px;
  font-size: clamp(2rem, 3vw, 2rem);
  letter-spacing: 0.26px;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .free-health-checkup-section .health__checkup__text__section p {
    margin-bottom: 40px;
  }
}
.free-health-checkup-section .line-left a {
  position: relative;
}
@media (min-width: 1200px) {
  .free-health-checkup-section .line-left a::after {
    content: "";
    background: url("../img/landing/left-line.svg");
    width: 378px;
    height: 176px;
    position: absolute;
    bottom: 27px;
    z-index: 0;
    right: 100%;
  }
}

.hrstrategy-section {
  border-radius: 60px 60px 0px 0px;
  margin-top: -138px;
  background: transparent linear-gradient(296deg, #ADE5B2 0%, #B0E7B4 65%, #DAFFCE 100%) 0% 0% no-repeat padding-box;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .hrstrategy-section {
    border-radius: 150px 150px 0px 0px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.hrstrategy-section .line-right a {
  position: relative;
}
@media (min-width: 1200px) {
  .hrstrategy-section .line-right a::after {
    content: "";
    background: url("../img/landing/right-line.svg");
    width: 378px;
    height: 176px;
    position: absolute;
    bottom: 27px;
    z-index: 0;
    left: 100%;
  }
}
.hrstrategy-section .hrstrategy-text p {
  max-width: 435px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 2rem);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hrstrategy-section .hrstrategy-text p {
    margin-bottom: 40px;
  }
}
.hrstrategy-section .hrstrategy-image {
  position: relative;
  z-index: 99;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hrstrategy-section .hrstrategy-image {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .hrstrategy-section .hrstrategy-image img {
    max-width: 440px;
  }
}
.hrstrategy-section .mobile-reverse-row {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .hrstrategy-section .mobile-reverse-row {
    flex-direction: unset;
  }
}

.our-customer-section .slick-initialized .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.our-customer-section .slick-initialized .slick-slide > div {
  text-align: center;
}
.our-customer-section .slick-initialized .slick-slide img {
  max-width: 90%;
  margin: auto;
}
.our-customer-section .slick-list {
  padding: 0 0% 0 0 !important;
}
.our-customer-section .slick-prev {
  left: 0px !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 9;
  background: unset !important;
  background-size: cover !important;
}
.our-customer-section .slick-next {
  right: 0px !important;
  display: block !important;
  background: unset !important;
  background-size: cover !important;
}
.our-customer-section .image-slider {
  padding-left: 40px;
  padding-right: 40px;
}
.our-customer-section .image-slider .slick-track {
  display: flex;
  align-items: center;
}
.our-customer-section .image-slider .slick-slide {
  padding: 0 10px; /* 10px left and right padding = 20px total gap between slides */
}

footer .footer-logo {
  max-width: 210px;
}
footer .container > .row {
  align-items: center;
}
footer.landing-footer {
  background-color: #000000;
  padding: 20px 0;
  background-image: unset;
}
footer.landing-footer .right-text {
  color: #FFFFFF;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  footer.landing-footer .right-text {
    margin-bottom: 0rem;
  }
}
footer.landing-footer .fl-image {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  footer.landing-footer .fl-image {
    text-align: left;
    margin-bottom: 0rem;
  }
}
footer.landing-footer .social-icons {
  text-align: center;
}
@media (min-width: 768px) {
  footer.landing-footer .social-icons {
    text-align: right;
  }
}
footer.landing-footer .social-icons svg {
  max-width: 30px;
}

.landing--form {
  background-color: #FFFFFF;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 12px;
}
.landing--form .form-padding {
  padding: 0 15px;
}
@media (min-width: 992px) {
  .landing--form .form-padding {
    padding: 0 30px;
  }
}
.landing--form .form-control {
  font-size: 1.3rem;
  background-color: #F2F2F2;
  border-radius: 12px;
  border: 1px solid #F2F2F2;
  color: #929292;
  padding: 7px 10px;
}
.landing--form .form-control::-moz-placeholder {
  color: #929292;
  font-style: normal;
  font-weight: normal;
  opacity: 1;
}
.landing--form .form-control::placeholder {
  color: #929292;
  font-style: normal;
  font-weight: normal;
  opacity: 1;
}
.landing--form .form-control::-webkit-input-placeholder {
  color: #929292;
  font-style: normal;
  font-weight: normal;
}
.landing--form .form-control:-ms-input-placeholder {
  color: #929292;
  font-style: normal;
  font-weight: normal;
}
.landing--form .form-control::-moz-placeholder {
  color: #929292;
  font-style: normal;
  font-weight: normal;
}
.landing--form .form-control:-moz-placeholder {
  color: #929292;
  font-style: normal;
  font-weight: normal;
}
.landing--form .form-select {
  font-size: 1.3rem;
  background-color: #F2F2F2;
  border-radius: 12px;
  border: 1px solid #F2F2F2;
  color: #929292;
  margin-top: 0;
  margin-bottom: 0;
  padding: 7px 10px;
}
.landing--form .form-select:focus-visible {
  outline: none;
}
.landing--form .form-select option[disabled][selected] {
  color: #929292;
}
.landing--form .form__heading {
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}
.landing--form .form__heading.heading__small {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.multi-site-sucess-section {
  padding-top: 10rem;
  padding-bottom: 20rem;
  border-radius: 60px 60px 0px 0px;
  background-color: #FFFFFF;
  margin-top: -120px;
}
@media (min-width: 1200px) {
  .multi-site-sucess-section {
    border-radius: 150px 150px 0px 0px;
  }
}
.multi-site-sucess-section .ms-slider .slick-list {
  padding: 0 0% 0 0 !important;
}
.multi-site-sucess-section .ms-slider .ms-slide-wrapper .ms-content-row {
  justify-content: space-evenly;
}
.multi-site-sucess-section .ms-slider .ms-slide-wrapper .ms-left-content {
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2rem);
  line-height: 1.6;
}
.multi-site-sucess-section .ms-slider .ms-slide-wrapper .ms-content-bg {
  background: #F8FFF5 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 41px;
  padding: 30px;
}
.multi-site-sucess-section .ms-slider .ms-slide-wrapper .ms-content-bg p {
  font-weight: 700;
}
.multi-site-sucess-section .ms-slider .slick-prev {
  left: 0px !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 9;
  background: unset !important;
  background-size: cover !important;
}
.multi-site-sucess-section .ms-slider .slick-next {
  right: 0px !important;
  display: block !important;
  background: unset !important;
  background-size: cover !important;
}

.scroll-btn {
  position: fixed;
  bottom: 50%;
  right: 10px;
  max-width: 120px;
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.scroll-btn.show {
  opacity: 1;
  visibility: visible;
}
.scroll-btn .button-fixed {
  background-color: #2D8233;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.customer-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.customer-icons img {
  max-width: 20%;
  height: -moz-fit-content;
  height: fit-content;
}
.customer-icons.mb-customer {
  margin-bottom: 4.5rem;
}

.talent-solutions-banner.banner-image {
  background-image: url("../img/talent/banner-mobile.jpg");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center;
}
@media (min-width: 768px) {
  .talent-solutions-banner.banner-image {
    height: 450px;
    background-image: url("../img/talent/banner.jpg");
  }
}
@media (min-width: 992px) {
  .talent-solutions-banner.banner-image {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .talent-solutions-banner.banner-image {
    height: 800px;
  }
}

.years-of-experience {
  background-color: #DAFFCE;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.years-of-experience .years-of-experience-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .years-of-experience .years-of-experience-wrapper {
    flex-direction: unset;
    flex-wrap: unset;
  }
}
.years-of-experience .left-horizontal-bar {
  border-left: 4px solid #2E8134;
  padding-left: 1.6rem;
  height: 120px;
  padding-top: 57px;
  position: relative;
  width: 50%;
  margin-bottom: 15px;
}
@media (min-width: 375px) {
  .years-of-experience .left-horizontal-bar {
    height: 100px;
  }
}
@media (min-width: 768px) {
  .years-of-experience .left-horizontal-bar {
    margin-bottom: 0;
    height: 106px;
  }
}
@media (min-width: 1400px) {
  .years-of-experience .left-horizontal-bar {
    padding-top: 82px;
    flex: 1;
    height: 143px;
  }
  .years-of-experience .left-horizontal-bar:nth-child(2) {
    min-width: 365px;
  }
  .years-of-experience .left-horizontal-bar:nth-child(3) {
    min-width: 320px;
  }
}
.years-of-experience .left-horizontal-bar .number-text {
  color: #297C33;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.25;
  position: absolute;
  top: 0;
}
.years-of-experience .left-horizontal-bar .number-text .counter-wrapper {
  display: inline-block;
  text-align: right;
}
@media (min-width: 768px) {
  .years-of-experience .left-horizontal-bar .number-text {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  .years-of-experience .left-horizontal-bar .number-text {
    font-size: 6rem;
  }
}
.years-of-experience .left-horizontal-bar .yof__subtext {
  font-size: 2rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 1200px) {
  .years-of-experience {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .years-of-experience [class^=col] {
    margin-bottom: 0rem;
  }
}

.hrfg-replacement-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.hrfg-replacement-section .section_heading {
  text-align: left;
}
.hrfg-replacement-section .hrfg-card-row [class^=col] {
  margin-bottom: 15px;
}
.hrfg-replacement-section .hrfg-card-row .hrfg-card {
  background-color: #F0F0F0;
  border-radius: 12px;
  border-color: #F0F0F0;
  padding: 3rem;
  height: 100%;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
}
.hrfg-replacement-section .hrfg-card-row .hrfg-card:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.08);
}
.hrfg-replacement-section .hrfg-card-row .hrfg-card .hrfg__icon {
  width: 140px;
  height: 75px;
}
.hrfg-replacement-section .hrfg-card-row .hrfg-card .hrfg__text {
  font-size: 2.2rem;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .hrfg-replacement-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.talent-expert-section {
  background-color: #DAFFCE;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.talent-expert-section .talent-left-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .talent-expert-section .talent-left-side {
    margin-bottom: 0rem;
  }
}
.talent-expert-section .section_heading {
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .talent-expert-section {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.talent-organization {
  background-color: #F0F0F0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-top: 3rem;
  /* Make all cards equal height */
}
.talent-organization .section_heading {
  text-align: left;
}
.talent-organization .talent-across-slider {
  display: flex;
  padding-left: 40px;
  padding-right: 40px;
}
.talent-organization .talent-across-slider .talent-across-card {
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 200px;
  background-color: #ADE5B2;
  border-color: #ADE5B2;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .talent-organization .talent-across-slider .talent-across-card {
    display: inline-block !important;
  }
}
.talent-organization .talent-across-slider .slick-initialized .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.talent-organization .talent-across-slider .slick-list {
  padding-right: 0 !important;
}
.talent-organization .talent-across-slider .slick-prev {
  left: 0px !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 9;
  background: unset !important;
  background-size: cover !important;
}
.talent-organization .talent-across-slider .slick-next {
  right: 0px !important;
  display: block !important;
  background: unset !important;
  background-size: cover !important;
}
@media (min-width: 1200px) {
  .talent-organization .talent-across-slider {
    padding-left: 0;
    padding-right: 0;
  }
  .talent-organization .talent-across-slider .slick-prev {
    left: auto !important;
    top: -53% !important;
    right: 4%;
  }
  .talent-organization .talent-across-slider .slick-next {
    top: -53% !important;
  }
}
.talent-organization .slick-slide {
  margin: 0 20px;
  display: flex !important;
  height: auto !important;
}
.talent-organization .slick-slide > div {
  width: 100%;
}
.talent-organization .slick-list {
  margin: 0 -20px;
}
@media (min-width: 1200px) {
  .talent-organization {
    margin-top: 10rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.talent-solution-result {
  background-color: #DAFFCE;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.talent-solution-result .talent-solution-row {
  display: flex;
  align-items: center;
}
.talent-solution-result .overlap-right {
  background: #ADE5B2;
  padding: 30px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .talent-solution-result .overlap-right {
    position: relative;
    right: -50px;
    margin-bottom: 0rem;
  }
}
.talent-solution-result .section_heading {
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .talent-solution-result {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .talent-solution-result {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.footer p {
  font-size: 1.6rem;
}
.footer .footer-contact h4 {
  font-size: 1.9rem;
}
.footer .sub-footer {
  padding: 2.2rem;
}
.footer input {
  font-size: 1.2rem;
  height: 4.5rem;
}
.footer textarea {
  height: 8.5rem;
  font-size: 1.2rem;
}

.managed-labour-solutions-banner.banner-image {
  background-image: url("../img/managed-labour-solutions/mobile-banner.jpg");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center;
}
@media (min-width: 768px) {
  .managed-labour-solutions-banner.banner-image {
    height: 450px;
    background-image: url("../img/managed-labour-solutions/managed-labour-solutions-banner.png");
  }
}
@media (min-width: 992px) {
  .managed-labour-solutions-banner.banner-image {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .managed-labour-solutions-banner.banner-image {
    height: 800px;
  }
}

.dedicated-workforce {
  position: relative;
  padding-bottom: 30px;
}
.dedicated-workforce .col-lg-5 {
  /* Portrait */
  /* Landscape */
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .dedicated-workforce .col-lg-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
  }
}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .dedicated-workforce .col-lg-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
  }
}
.dedicated-workforce::before {
  content: "";
  background: #DAFFCE;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
@media (min-width: 992px) {
  .dedicated-workforce::before {
    width: 90%;
  }
}
.dedicated-workforce .section_heading {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .dedicated-workforce .section_heading {
    margin-top: 45px;
  }
}
.dedicated-workforce .image-group {
  text-align: center;
  position: relative;
}
.dedicated-workforce .image-group .box-green-bg {
  background-color: #ADE5B2;
  padding: 20px;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
}
@media (min-width: 768px) {
  .dedicated-workforce .image-group .box-green-bg {
    max-height: 220px;
    min-height: 185px;
  }
}
.dedicated-workforce .image-group .box-green-bg:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.08);
}
.dedicated-workforce .image-group .box-green-bg p {
  font-size: 2rem;
  text-align: left;
  font-weight: 500;
}
.dedicated-workforce .image-group .dw-left-text-section {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .dedicated-workforce .image-group .dw-left-text-section {
    position: absolute;
    left: -30px;
    bottom: 50px;
    z-index: 1;
    width: 50%;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
@media (min-width: 992px) {
  .dedicated-workforce .image-group .dw-right-text-section {
    position: absolute;
    right: -30px;
    bottom: 50px;
    z-index: 1;
    width: 50%;
  }
}

.talent-organization .to__subheading {
  font-size: 2.4rem;
}

.maximize-profibality-card {
  background-color: #ADE5B2;
  height: 100%;
  padding: 30px;
  font-size: 2rem;
  font-weight: 500;
  transition: all 0.4s ease 0s;
  -webkit-transition: all 0.4s ease 0s;
}
.maximize-profibality-card:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .px-custom {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.mx-custom {
  gap: 15px;
}
@media (min-width: 768px) {
  .mx-custom {
    gap: 0;
  }
}
@media (min-width: 992px) {
  .mx-custom {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.temp-staffing-banner.banner-image {
  background-image: url("../img/temp-staffing/banner-mobile.jpg");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center;
}
@media (min-width: 768px) {
  .temp-staffing-banner.banner-image {
    height: 450px;
    background-image: url("../img/temp-staffing/banner-bg.png");
  }
}
@media (min-width: 992px) {
  .temp-staffing-banner.banner-image {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .temp-staffing-banner.banner-image {
    height: 800px;
  }
}

.progress-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .progress-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.progress-section .section_heading {
  text-align: left;
}
.progress-section .progress-row-margin {
  margin-bottom: 6rem;
  align-items: center;
}

.progress-subheading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2E8134;
}
@media (min-width: 768px) {
  .progress-subheading {
    margin-bottom: 0;
  }
}

.progress__heading h3 {
  text-align: right;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .progress__heading h3 {
    text-align: center;
  }
}

.progress__wrapper {
  display: flex;
  align-items: center;
}
.progress__wrapper .progress__number {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
  width: 50px;
}
.progress__wrapper .progress {
  flex: 1;
  height: 3.8rem;
  border-radius: 0;
  border: 1px solid rgba(46, 129, 52, 0.6901960784);
  background-color: #fff;
}
.progress__wrapper .progress .progress-bar {
  transition-property: width;
  transition-timing-function: ease-in-out;
}
.progress__wrapper .progress .progress-bar.bg-success {
  background-color: rgba(46, 129, 52, 0.6901960784) !important;
}

.progress-space-around {
  justify-content: space-around;
  row-gap: 15px;
}

.hrtech-banner.banner-image {
  background-image: url("../img/hr-tech-services/banner-mobile.jpg");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center;
}
@media (min-width: 768px) {
  .hrtech-banner.banner-image {
    height: 450px;
    background-image: url("../img/hr-tech-services/banner.png");
  }
}
@media (min-width: 992px) {
  .hrtech-banner.banner-image {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .hrtech-banner.banner-image {
    height: 800px;
  }
}

.hris-fit-section {
  background-color: #DAFFCE;
  position: relative;
  padding-right: 0;
}
.hris-fit-section .hris-inner-text-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 550px;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .hris-fit-section .hris-inner-text-wrapper {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.hris-fit-section .section_heading {
  text-align: left;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .right-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    overflow: hidden;
  }
}

.right-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hrfg-rollout-section .hrfg-card-row {
  margin-left: -20px;
  margin-right: -20px;
}
.hrfg-rollout-section .hrfg-card-row > [class^=col] {
  padding-left: 20px;
  padding-right: 20px;
}
.hrfg-rollout-section .hrfg-card-rollout {
  padding: 30px;
  background-color: #F0F0F0;
  border-radius: 12px;
  border-color: #F0F0F0;
  text-align: center;
}
.hrfg-rollout-section .hrfg-card-rollout .hrfg__icon {
  margin-bottom: 2rem;
}
.hrfg-rollout-section .hrfg-card-rollout .hrfg__text {
  font-size: 2rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .left-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    z-index: 0;
    overflow: hidden;
  }
}

.left-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sena-section {
  position: relative;
  padding-left: 0;
  background-color: #F0F0F0;
}
.sena-section .section_heading {
  text-align: left;
  margin-bottom: 1rem;
}
.sena-section .sena-inner-text-wrapper {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .sena-section .sena-inner-text-wrapper {
    padding-left: 2rem;
  }
}
@media (min-width: 992px) {
  .sena-section .sena-inner-text-wrapper {
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-left: 4.5rem;
  }
}
.sena-section .container {
  position: relative;
  z-index: 1; /* Ensure text stays above image */
}

.hr-transform-banner.banner-image {
  background-image: url("../img/hr-transformation/banner-mobile.jpg");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center;
}
@media (min-width: 768px) {
  .hr-transform-banner.banner-image {
    height: 450px;
    background-image: url("../img/hr-transformation/banner.png");
  }
}
@media (min-width: 992px) {
  .hr-transform-banner.banner-image {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .hr-transform-banner.banner-image {
    height: 800px;
  }
}

.what-we-deliver-section .wwd-subheading {
  font-weight: 500;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .what-we-deliver-section .wwd-subheading {
    margin-bottom: 0;
  }
}
.what-we-deliver-section.hrfg-rollout-section .hrfg-card-rollout {
  text-align: left;
}

.deliver-slider {
  display: flex;
  padding-left: 40px;
  padding-right: 40px;
}
.deliver-slider .slick-slide {
  margin: 0 20px;
  display: flex !important;
  height: auto !important;
}
.deliver-slider .slick-slide > div {
  width: 100%;
}
.deliver-slider .slick-list {
  margin: 0 -20px;
}
.deliver-slider .slick-initialized .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.deliver-slider .slick-list {
  padding-right: 0 !important;
}
.deliver-slider .slick-prev {
  left: 0px !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 9;
  background: unset !important;
  background-size: cover !important;
}
.deliver-slider .slick-next {
  right: 0px !important;
  display: block !important;
  background: unset !important;
  background-size: cover !important;
}
@media (min-width: 1200px) {
  .deliver-slider {
    padding-left: 0;
    padding-right: 0;
  }
  .deliver-slider .slick-prev {
    left: auto !important;
    top: -80% !important;
    right: 4%;
  }
  .deliver-slider .slick-next {
    top: -80% !important;
  }
}
@media (min-width: 1400px) {
  .deliver-slider .slick-prev {
    top: -100% !important;
  }
  .deliver-slider .slick-next {
    top: -100% !important;
  }
}

.hr-career-banner.banner-image {
  background-image: url("../img/career-enhancement/banner-mobile.jpg");
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center;
}
@media (min-width: 768px) {
  .hr-career-banner.banner-image {
    height: 450px;
    background-image: url("../img/career-enhancement/banner.png");
  }
}
@media (min-width: 992px) {
  .hr-career-banner.banner-image {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .hr-career-banner.banner-image {
    height: 800px;
  }
}

.jobseeker-slider {
  display: flex;
  padding-left: 40px;
  padding-right: 40px;
}
.jobseeker-slider .slick-slide {
  margin: 0 20px;
  display: flex !important;
  height: auto !important;
}
.jobseeker-slider .slick-slide > div {
  width: 100%;
}
.jobseeker-slider .slick-list {
  margin: 0 -20px;
}
.jobseeker-slider .slick-initialized .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.jobseeker-slider .slick-list {
  padding-right: 0 !important;
}
.jobseeker-slider .slick-prev {
  left: 0px !important;
  top: 50% !important;
  bottom: auto !important;
  z-index: 9;
  background: unset !important;
  background-size: cover !important;
}
.jobseeker-slider .slick-next {
  right: 0px !important;
  display: block !important;
  background: unset !important;
  background-size: cover !important;
}
@media (min-width: 1200px) {
  .jobseeker-slider {
    padding-left: 0;
    padding-right: 0;
  }
  .jobseeker-slider .slick-prev {
    left: auto !important;
    top: -80% !important;
    right: 4%;
  }
  .jobseeker-slider .slick-next {
    top: -80% !important;
  }
}
@media (min-width: 1400px) {
  .jobseeker-slider .slick-prev {
    top: -75% !important;
  }
  .jobseeker-slider .slick-next {
    top: -75% !important;
  }
}

.overlap-right-section {
  background-color: #DAFFCE;
  margin-bottom: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.overlap-right-section .talent-solution-row {
  display: flex;
  align-items: center;
}
.overlap-right-section .overlap-right {
  background: #ADE5B2;
  padding: 30px 30px 30px 40px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .overlap-right-section .overlap-right {
    position: relative;
    left: -60px;
    margin-bottom: 0rem;
    margin-top: 0rem;
  }
}
.overlap-right-section .section_heading {
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .overlap-right-section {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}

.grey-card-section h1 {
  text-align: left;
}

.dicovery-call-section {
  margin-top: 0;
}

.talent-support-section h1 {
  text-align: left;
}
.talent-support-section.hrfg-rollout-section .hrfg-card-row [class^=col] {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .talent-support-section.hrfg-rollout-section .hrfg-card-row [class^=col] {
    margin-bottom: 0;
  }
}
.talent-support-section.hrfg-rollout-section .hrfg-card-rollout {
  text-align: left;
  height: 100%;
}/*# sourceMappingURL=main.css.map */