body {
  --color-primary: #3C74A4;
  --color-secondary: #E64833;
  --color-body-font: #18191C;
  --body-font: "Amiko", sans-serif;
  --color-title: #08334E;
  max-width: 2200px;
  margin: auto;
  font-size: 18px;
  color: var(--color-body-font);
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

h2 {
  font-family: var(--body-font);
  color: var(--color-title);
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-bottom: 4px solid var(--color-secondary);
  width: 42px;
}
h2.no-border::after {
  content: none;
}
@media screen and (max-width: 1280px) {
  h2 {
    font-size: 32px;
    line-height: 46px;
  }
}
@media screen and (max-width: 1280px) {
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

h3 {
  font-family: var(--body-font);
  color: var(--color-title);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.checklist li {
  list-style: none;
  position: relative;
  padding-bottom: 16px;
}
.checklist li::before {
  border: 0;
  content: url("../images/vectors/check.svg");
  display: inline;
  position: absolute;
  left: -32px;
}

.max-width {
  width: 1440px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1440px) {
  .max-width {
    padding: 0 100px;
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .max-width {
    padding: 0 15px;
  }
}

.inner-page-banner {
  background-size: cover;
  padding: 40px 0;
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .inner-page-banner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 575px) {
  .inner-page-banner {
    min-height: 280px;
    padding: 35px 15px;
  }
}
.inner-page-banner h1 {
  font-family: "Amiko", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .inner-page-banner h1 {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 575px) {
  .inner-page-banner h1 {
    font-size: 24px;
    line-height: 31px;
  }
}
.inner-page-banner h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.inner-page-banner h2::after {
  display: none;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .feature-list {
    grid-template-columns: auto;
    justify-content: center;
  }
}
.feature-list .feature-item {
  text-align: center;
  border: 1px solid #08334E;
  padding: 42px 25px;
  background: #fff;
  max-width: 456px;
  border-radius: 4px;
}
.feature-list .feature-item h3 {
  padding: 30px 0 20px 0;
}
@media screen and (max-width: 600px) {
  .feature-list .feature-item {
    padding: 20px;
  }
}

.text-box-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}
@media screen and (max-width: 768px) {
  .text-box-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .text-box-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.text-box-list .text-box {
  background: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  padding: 30px 24px;
  font-family: "Lato", sans-serif;
  position: relative;
  border-bottom: 1px solid #08334E;
}
.text-box-list .text-box.text-box-animation {
  position: relative;
  overflow: hidden;
}
.text-box-list .text-box.text-box-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.7);
  transition: left 0.5s ease;
  z-index: 0;
}
.text-box-list .text-box.text-box-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-title);
  transition: transform 0.5s ease;
  transform-origin: left;
  z-index: 1;
}
.text-box-list .text-box.text-box-animation .white-border {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}
.text-box-list .text-box.text-box-animation:hover::before {
  left: 100%;
}
.text-box-list .text-box.text-box-animation:hover::after {
  transform: translateX(100%);
}
.text-box-list .text-box.text-box-animation:hover .white-border {
  transform: scaleX(1);
}
.text-box-list .text-box.text-box-animation:not(:hover)::before {
  left: -100%;
  background-color: transparent;
}
.text-box-list .text-box.text-box-animation:not(:hover)::after {
  transform: translateX(0);
}
.text-box-list .text-box.text-box-animation:not(:hover) .white-border {
  transform: scaleX(0);
}
.text-box-list .text-box.text-box-animation:hover {
  color: #fff;
}
.text-box-list .text-box.text-box-animation:hover h3 {
  color: #fff;
}
.text-box-list h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 44px;
  color: var(--color-title);
  padding-bottom: 8px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .text-box-list h3 {
    line-height: 24px;
  }
}

.bg-ash {
  background-color: #F3F4F6;
}

label.error {
  color: #bf3131;
  font-size: 14px;
}

.error-sec {
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-sec h1 {
  color: var(--color-title);
  font-size: 160px;
  font-weight: bolder;
}
.error-sec h2 {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .error-sec h1 {
    font-size: 100px;
  }
  .error-sec h2 {
    font-size: 25px;
  }
}

.navbar {
  font-family: "Amiko", sans-serif;
  font-weight: 600;
  font-style: normal;
  height: 80px;
  background: #fff;
  padding: 0 96px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 575px) {
  .navbar {
    height: 60px;
  }
}
.navbar .navbar-nav {
  gap: 80px;
}
@media screen and (min-width: 1500px) {
  .navbar .navbar-nav {
    gap: 55px;
  }
}
.navbar .navbar-nav .nav-link {
  font-family: "Amiko", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 21.78px;
  color: var(--color-body-font);
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-nav {
    gap: 50px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .navbar .navbar-nav {
    gap: 40px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav {
    gap: 25px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    gap: 0;
  }
}
.navbar .dropdown .dropdown-toggle {
  transition: all 300ms ease;
}
.navbar .dropdown .dropdown-toggle::after {
  border: 0;
  content: url("../images/vectors/arrow-down.svg");
  display: inline;
  position: absolute;
  top: 5px;
}
@media screen and (max-width: 575px) {
  .navbar .dropdown .dropdown-toggle::after {
    top: 0px;
  }
}
.navbar .dropdown .dropdown-toggle.show::after {
  transform: rotate(-180deg);
  top: 4px;
}
.navbar .dropdown-menu {
  top: 55px !important;
  border-radius: 0;
  border: none;
  box-shadow: 1px 0px 4px 0px rgba(0, 0, 0, 0.24);
  transition: all 300ms ease;
  transition-behavior: allow-discrete;
}
@media screen and (min-width: 992px) {
  .navbar .dropdown-menu {
    opacity: 0;
  }
  .navbar .dropdown-menu.show {
    opacity: 1;
  }
}
.navbar .dropdown-menu .dropdown-item {
  font-size: 16px;
  color: var(--color-body-font);
  padding: 10px 60px 10px 10px;
  display: flex;
  align-items: flex-start;
  transition: all 500ms ease;
  border-left: 3px solid transparent;
}
@media screen and (max-width: 575px) {
  .navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}
.navbar .dropdown-menu .dropdown-item div {
  width: 40px;
}
@media screen and (max-width: 991px) {
  .navbar .dropdown-menu .dropdown-item div {
    width: 0;
  }
}
@media screen and (max-width: 991px) {
  .navbar .dropdown-menu .dropdown-item {
    border-left: none;
  }
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f3f3f3;
  border-left: 3px solid var(--color-primary);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
@media screen and (max-width: 991px) {
  .navbar .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    border-left: none;
  }
}
.navbar .dropdown-menu .sub-dropdown {
  padding-left: 15%;
}
.navbar .dropdown-menu .sub-dropdown li {
  list-style: none !important;
}
.navbar .dropdown-menu .sub-dropdown li .dropdown-item {
  border-left: none;
}
.navbar .dropdown-menu .sub-dropdown li .dropdown-item:hover {
  border-left: none;
  background-color: transparent;
}
.navbar .navbar-toggler {
  padding: 0 16px 0 0;
  border: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: none;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
@media screen and (max-width: 1280px) {
  .navbar {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-brand img {
    padding-left: 15px;
  }
  .navbar .navbar-collapse {
    position: absolute;
    background: #fff;
    right: 0%;
    top: 60px;
    width: 75%;
    padding: 20px 0 50px 0;
    box-shadow: 1px 0px 4px 0px rgba(0, 0, 0, 0.24);
    overflow: auto;
    max-height: 80vh;
    transition: none;
  }
  .navbar .navbar-collapse .nav-link {
    font-family: "Amiko", sans-serif;
    padding: 8px 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) and (max-width: 575px) {
  .navbar .navbar-collapse .nav-link {
    padding: 4px 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-collapse .dropdown-menu {
    box-shadow: none;
    padding: 0 0 0 30px;
  }
  .navbar .navbar-collapse .dropdown-menu .dropdown-item {
    white-space: initial;
    padding: 10px;
  }
  .navbar .navbar-collapse .dropdown-menu .dropdown-item img {
    display: none;
  }
  .navbar .navbar-collapse .dropdown-menu .sub-dropdown .dropdown-item {
    padding: 0 0 10px 0;
  }
  .navbar .navbar-collapse .dropdown-toggle.show::after {
    transform: none;
    top: inherit;
    margin-top: 0;
  }
  .navbar .enquire-btn {
    position: absolute;
    right: 60px;
  }
}
@media screen and (max-width: 991px) and (max-width: 320px) {
  .navbar .enquire-btn {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-brand img {
    width: 180px;
  }
}
@media screen and (max-width: 575px) {
  .navbar .enquire-btn .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .navbar .navbar-collapse .dropdown-menu .dropdown-item {
    padding: 5px 10px;
  }
}

.nav-top-row {
  background: #e4e4e4;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 575px) {
  .nav-top-row {
    justify-content: space-between;
    padding-left: 10px;
    height: 30px;
  }
}
.nav-top-row .social {
  display: flex;
}
.nav-top-row .social a {
  background: #5E6670;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  margin-right: 1px;
}
.nav-top-row .social a:last-child {
  margin-right: 0;
}
.nav-top-row .social a:hover {
  background: var(--color-secondary);
}
@media screen and (max-width: 575px) {
  .nav-top-row .social a {
    width: 30px;
    height: 30px;
  }
}
.nav-top-row .contact {
  display: flex;
  gap: 5px;
  align-items: center;
}
.nav-top-row .contact a {
  font-weight: 400;
  font-size: 14px;
  color: var(--color-body-font);
  text-decoration: none;
  padding-right: 18px;
  font-family: var(--body-font);
}
@media screen and (max-width: 575px) {
  .nav-top-row .contact a {
    padding-right: 0px;
    font-size: 11px;
  }
}
.nav-top-row .contact:first-of-type {
  padding-right: 40px;
}
@media screen and (max-width: 575px) {
  .nav-top-row .contact:first-of-type {
    padding-right: 0px;
  }
}

.btn {
  font-family: "Amiko", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  transition: all 300ms ease;
}
@media screen and (max-width: 1280px) {
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.btn.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
}
.btn.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

@keyframes colorChangeToPrimary {
  0% {
    background-color: var(--color-secondary);
  }
  100% {
    background-color: var(--color-primary);
  }
}
@keyframes colorChangeToSecondary {
  0% {
    background-color: var(--color-primary);
  }
  50% {
    background-color: var(--color-primary);
  }
  100% {
    background-color: var(--color-secondary);
  }
}
@keyframes textBoxColorChangeToPrimary {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: var(--color-primary);
  }
}
@keyframes textBoxColorChangeToWhite {
  0% {
    background-color: var(--color-primary);
  }
  100% {
    background-color: #fff;
  }
}
.btn-animation {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 500ms ease-out;
}
.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.4745098039);
  transition: left 500ms ease-out;
  border-radius: 8px;
}
.btn-animation:hover::before {
  left: 100%;
}
.btn-animation:not(:hover)::before {
  left: -100%;
}

.video-sec {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-sec video {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .video-sec video {
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .video-sec video {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.intro-sec {
  padding: 58px 0;
  font-size: 20px;
  line-height: 160%;
}
@media screen and (max-width: 600px) {
  .intro-sec {
    padding: 40px 0 50px 0;
  }
}
.intro-sec h1 {
  font-family: var(--body-font);
  color: var(--color-title);
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
}
@media screen and (max-width: 1280px) {
  .intro-sec h1 {
    font-size: 36px;
    line-height: 45px;
  }
}
@media screen and (max-width: 575px) {
  .intro-sec h1 {
    font-size: 25px;
    line-height: 27px;
  }
}
.intro-sec .features-wrp {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 0 0;
}
@media screen and (max-width: 1280px) {
  .intro-sec .features-wrp {
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .intro-sec .features-wrp {
    justify-content: center;
  }
}
.intro-sec .features-wrp .feature-item {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .intro-sec .features-wrp .feature-item {
    gap: 5px;
  }
}
@media screen and (max-width: 992px) {
  .intro-sec .features-wrp .feature-item {
    width: 50%;
    padding: 25px 14px;
  }
}
@media screen and (max-width: 575px) {
  .intro-sec .features-wrp .feature-item {
    width: 100%;
    border-bottom: 1px solid #D1D1D1;
    padding: 25px 14px;
  }
  .intro-sec .features-wrp .feature-item:last-child {
    border-bottom: none;
  }
  .intro-sec .features-wrp .feature-item .img-wrp {
    width: 60px;
  }
}
.intro-sec .features-wrp .feature-item span {
  font-size: 18px;
}
.intro-sec .features-wrp .feature-item .count {
  color: var(--color-body-font);
  font-size: 26px;
  font-family: var(--body-font);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .intro-sec .features-wrp .feature-item span {
    font-size: 16px;
  }
  .intro-sec .features-wrp .feature-item .count {
    font-size: 22px;
  }
}

.services-sec {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .services-sec.services-desktop {
    display: none;
  }
}
.services-sec .service-container {
  display: grid;
  grid-template-columns: 32% 66%;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .services-sec .service-container {
    gap: 15px;
    grid-template-columns: 33% 66%;
  }
}
@media screen and (max-width: 768px) {
  .services-sec .service-container {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 767px) {
  .services-sec .service-container {
    display: none;
  }
}
.services-sec .nav-pills #v-pills-recruitmnet-tab .search-light {
  display: none;
}
.services-sec .nav-pills #v-pills-recruitmnet-tab.active .search-light {
  display: inline-block;
}
.services-sec .nav-pills #v-pills-recruitmnet-tab.active .search-dark {
  display: none;
}
.services-sec .nav-link {
  font-family: "Lato", sans-serif;
  color: var(--color-body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 12px;
  text-align: left;
  background: #fff;
  position: relative;
  margin-bottom: 2px;
  background: linear-gradient(to left, #fff 50%, #F5F5F5 50%);
  background-size: 200% 101%;
  background-position: right bottom;
  transition: all 300ms ease-out;
  border-radius: 0;
}
@media screen and (max-width: 1440px) {
  .services-sec .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .services-sec .nav-link {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.services-sec .nav-link.active {
  background: var(--color-primary) !important;
  color: #fff;
  font-family: "Lato", sans-serif;
}
.services-sec .nav-link.active svg path {
  fill: #fff;
}
.services-sec .nav-link:last-child {
  border-bottom: none;
}
.services-sec .nav-link:hover:not(.active) {
  background-position: left bottom;
}
.services-sec .nav-link svg {
  margin-right: 15px;
  width: 35px;
}
@media screen and (max-width: 1440px) {
  .services-sec .nav-link svg {
    margin-right: 5px;
    width: 30px;
  }
}
@media screen and (max-width: 575px) {
  .services-sec .nav-link {
    font-size: 13px;
    padding: 10px 12px;
  }
}
.services-sec .content-wrp {
  background: #F8F8F8;
  transition: all 100ms ease;
}
.services-sec .content-wrp .content {
  padding: 30px 20px 20px 40px;
  font-family: "Lato", sans-serif;
  min-height: 375px;
}
@media screen and (max-width: 575px) {
  .services-sec .content-wrp .content {
    padding: 15px;
  }
}
.services-sec .content-wrp .content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 15px;
  color: #08334E;
  display: flex;
  margin: 0;
  align-items: flex-start;
  gap: 10px;
}
.services-sec .content-wrp .content h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.services-sec .content-wrp .content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.services-sec .content-wrp .content li {
  font-size: 16px;
  text-transform: capitalize;
  width: 92%;
  padding-bottom: 7px;
}
@media screen and (max-width: 575px) {
  .services-sec .content-wrp .content h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .services-sec .content-wrp .content h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .services-sec .content-wrp .content ul {
    grid-template-columns: auto;
  }
  .services-sec .content-wrp .content li {
    font-size: 14px;
    width: 100%;
  }
}
.services-sec .content-wrp .service-img {
  height: 245px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  .services-sec .content-wrp .service-img {
    height: 111px;
  }
}
.services-sec .content-wrp .btn-wrp {
  padding-top: 30px;
  text-align: center;
}
.services-sec .accordion h2::after {
  display: none;
}
.services-sec .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #D9D9D9;
}
.services-sec .accordion .accordion-item:last-child {
  border-bottom: none !important;
}
.services-sec .accordion .content {
  padding: 30px 0;
}
.services-sec .accordion .accordion-button {
  font-family: "Lato", sans-serif;
  color: var(--color-body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  border-bottom: 1px solid #D9D9D9;
  padding: 15px 12px;
  text-align: left;
  background: #fff;
  position: relative;
  margin-bottom: 2px;
  background: linear-gradient(to left, #fff 50%, #F5F5F5 50%);
  background-size: 200% 101%;
  background-position: right bottom;
  transition: all 300ms ease-out;
  border-radius: 0;
}
@media screen and (max-width: 1440px) {
  .services-sec .accordion .accordion-button {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .services-sec .accordion .accordion-button {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.services-sec .accordion .accordion-button.active {
  background: var(--color-primary) !important;
  color: #fff;
  font-family: "Lato", sans-serif;
}
.services-sec .accordion .accordion-button.active svg path {
  fill: #fff;
}
.services-sec .accordion .accordion-button::after {
  background-image: url("../images/vectors/arrow-down.svg");
}
.services-sec .accordion .accordion-button:last-child {
  border-bottom: none;
}
.services-sec .accordion .accordion-button:hover:not(.active) {
  background-position: left bottom;
}
.services-sec .accordion .accordion-button svg {
  margin-right: 15px;
  width: 35px;
}
@media screen and (max-width: 1440px) {
  .services-sec .accordion .accordion-button svg {
    margin-right: 5px;
    width: 30px;
  }
}
@media screen and (max-width: 575px) {
  .services-sec .accordion .accordion-button {
    font-size: 13px;
    padding: 10px 12px;
  }
}
.services-sec .accordion .accordion-button:not(.collapsed) {
  background: var(--color-primary) !important;
  color: #fff;
  font-family: "Lato", sans-serif;
}
.services-sec .accordion .accordion-button:not(.collapsed) svg path {
  fill: #fff;
}
.services-sec .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/vectors/arrow-down-white.svg");
}
.services-sec .accordion .accordion-button:focus {
  box-shadow: none;
}

.solutions {
  background: var(--color-primary);
  padding: 40px 0 65px 0;
}
.solutions h2 {
  color: #fff;
}
.solutions .nav-pills .nav-link {
  color: #fff;
  border-bottom: 1px solid #fff;
  background: var(--color-primary);
  background: linear-gradient(to left, var(--color-primary) 50%, #366A97 50%);
  background-size: 200% 101%;
  background-position: right bottom;
}
.solutions .nav-pills .nav-link svg path {
  fill: #fff;
}
.solutions .nav-pills .nav-link.active {
  background: #fff !important;
  color: var(--color-primary);
}
.solutions .nav-pills .nav-link.active svg path {
  fill: var(--color-primary);
}
.solutions .nav-pills .nav-link:hover:not(.active) {
  background-position: left bottom;
}

.solutions .accordion .accordion-item {
  border: none;
}
.solutions .accordion .accordion-item:last-child .accordion-button {
  border-bottom: none !important;
}
.solutions .accordion .accordion-button {
  color: #fff !important;
  border-bottom: 1px solid #fff !important;
  background: var(--color-primary) !important;
  background: linear-gradient(to left, var(--color-primary) 50%, #366A97 50%);
  background-size: 200% 101%;
  background-position: right bottom;
}
.solutions .accordion .accordion-button svg path {
  fill: #fff;
}
.solutions .accordion .accordion-button:not(.collapsed) {
  background: #fff !important;
  color: var(--color-primary) !important;
}
.solutions .accordion .accordion-button:not(.collapsed) svg path {
  fill: var(--color-primary);
}
.solutions .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/vectors/arrow-down.svg");
}
.solutions .accordion .accordion-button:hover:not(.active) {
  background-position: left bottom;
}
.solutions .accordion .accordion-button::after {
  background-image: url("../images/vectors/arrow-down-white.svg");
}

.why-us-sec {
  padding: 95px 0;
}
.why-us-sec h2 {
  margin-bottom: 40px;
}

.case-study-sec {
  padding-bottom: 96px;
}
.case-study-sec h2 {
  margin-bottom: 46px;
}
.case-study-sec .cases-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-around;
  gap: 36px;
}
@media screen and (max-width: 1280px) {
  .case-study-sec .cases-list {
    gap: 15PX;
  }
}
@media screen and (max-width: 768px) {
  .case-study-sec .cases-list {
    grid-template-columns: auto;
    justify-content: center;
  }
}
.case-study-sec .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .case-study-sec .item {
    max-width: 456px;
  }
}
.case-study-sec .img-wrp {
  width: 100%;
  height: 328px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.case-study-sec .img-wrp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  .case-study-sec .img-wrp {
    height: 200px;
  }
}
.case-study-sec .content {
  padding: 34px 24px;
  background: #fff;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1607843137);
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .case-study-sec .content {
    height: auto;
  }
}
.case-study-sec .content h3 {
  padding: 20px 0;
}
.case-study-sec .content p {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (max-width: 1440px) {
  .case-study-sec .content p {
    font-size: 16px;
    line-height: 22px;
  }
}

.modal {
  font-size: 16px;
  color: #696969;
}
.modal .modal-dialog {
  margin-top: 10%;
  max-width: 575px;
}
@media screen and (max-width: 575px) {
  .modal .modal-dialog {
    margin-top: 10%;
    max-width: unset;
  }
}
.modal .modal-header {
  display: block;
}
.modal .modal-header h2 {
  color: #696969;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
}
.modal .modal-header .btn-close {
  right: 20px;
  top: 20px;
  position: absolute;
}
.modal .select2-selection--single {
  background-color: #FEFEFE !important;
}
.modal .form-control {
  border-color: #B4BEC8;
  background-color: #FEFEFE;
  padding: 11px 12px;
  border-radius: 4px;
}
.modal .form-control:focus {
  box-shadow: none;
}
.modal ::-moz-placeholder {
  color: #808080;
}
.modal ::placeholder {
  color: #808080;
}
.modal .btn {
  border-radius: 4px;
  width: 180px;
  padding: 13px 20px;
  margin: 20px 0;
  box-shadow: 0px 4px 4px 0px rgba(112, 144, 176, 0.2);
}
.modal .input-group input {
  width: 70%;
}
.modal .input-group button {
  border: 1px solid #B4BEc8;
  background-color: #FEFEFE;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.page-banner-with-form {
  background-size: cover;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .page-banner-with-form {
    padding: 80px 0;
  }
}
.page-banner-with-form .content-row {
  align-items: center;
  justify-content: center;
}
.page-banner-with-form h1 {
  font-weight: 700;
  font-size: 18px;
  line-height: 64px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .page-banner-with-form h1 {
    line-height: 30px;
  }
}
.page-banner-with-form h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  color: #fff;
}
.page-banner-with-form h2::after {
  display: none;
}
@media screen and (max-width: 1440px) {
  .page-banner-with-form h2 {
    font-size: 42px;
    line-height: 55px;
  }
}
@media screen and (max-width: 1366px) {
  .page-banner-with-form h2 {
    font-size: 40px;
    line-height: 52px;
  }
}
@media screen and (max-width: 1024px) {
  .page-banner-with-form h2 {
    font-size: 34px;
    line-height: 42px;
  }
}
@media screen and (max-width: 575px) {
  .page-banner-with-form h2 {
    font-size: 24px;
    line-height: 31px;
  }
}
.page-banner-with-form .form-wrp {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  background: #fff;
  padding: 27px 20px;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  max-width: 477px;
  margin-left: 23%;
}
@media screen and (max-width: 1024px) {
  .page-banner-with-form .form-wrp {
    margin-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .page-banner-with-form .form-wrp {
    display: none;
  }
}
.page-banner-with-form .form-wrp h2 {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: var(--color-body-font);
  margin-bottom: 24px;
}
.page-banner-with-form .form-wrp .form-control {
  background-color: #FEFEFE;
  border: 1px solid #B4BEC8;
  padding: 7px 15px;
  color: var(--color-body-font);
  font-size: 14px;
  border-radius: 4px;
}
.page-banner-with-form .form-wrp .select2-selection--single {
  background-color: #FEFEFE !important;
}
.page-banner-with-form .form-wrp .input-group button {
  border: 1px solid #B4BEc8;
  background-color: #FEFEFE;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  line-height: 100%;
  vertical-align: middle;
}
.page-banner-with-form .form-wrp ::-moz-placeholder {
  color: #808080;
}
.page-banner-with-form .form-wrp ::placeholder {
  color: #808080;
}
.page-banner-with-form .form-wrp .theme.form .select2-container .select2-selection--single {
  height: 40px !important;
  font-size: 14px;
}
.page-banner-with-form .form-wrp .form-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}
@media screen and (max-width: 1024px) {
  .page-banner-with-form .form-wrp .form-label {
    font-size: 14px;
  }
}
.page-banner-with-form .form-wrp .theme.form .select2-container--default .select2-selection--single .select2-selection__rendered {
  height: 40px !important;
  line-height: 40px !important;
}
.page-banner-with-form .form-wrp .theme.form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px !important;
}
.page-banner-with-form .btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  padding: 12px 15px;
}
.page-banner-with-form .theme.form .select2-container {
  max-width: 100%;
}

.service-page-wrapper .intro-sec {
  padding: 80px 0;
  font-family: "Lato", sans-serif;
}
.service-page-wrapper .intro-sec h2 {
  margin-bottom: 30px;
}
.service-page-wrapper .intro-sec .feature-list {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 27px;
  margin-top: 32px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .service-page-wrapper .intro-sec .feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .service-page-wrapper .intro-sec .feature-list {
    grid-template-columns: 1fr;
  }
}
.service-page-wrapper .intro-sec .feature-item {
  max-width: 340px;
  padding: 21px 25px;
}
.service-page-wrapper .intro-sec .feature-item h3 {
  padding: 15px 0 10px 0;
}
@media screen and (max-width: 768px) {
  .service-page-wrapper .intro-sec .feature-item {
    max-width: unset;
  }
}
.service-page-wrapper .intro-sec .feature-item p {
  font-family: "Lato", sans-serif;
}
.service-page-wrapper .intro-sec .checklist {
  text-align: left;
  font-family: "Lato", sans-serif;
}
.service-page-wrapper .intro-sec .checklist li {
  padding-bottom: 10px;
}
@media screen and (max-width: 1440px) {
  .service-page-wrapper .intro-sec .checklist li {
    font-size: 16px;
  }
}
.service-page-wrapper .intro-sec .checklist li::before {
  top: 5px;
}
.service-page-wrapper .benefits-sec {
  padding: 65px 0 100px 0;
}
.service-page-wrapper .benefits-sec h2 {
  margin-bottom: 45px;
}
.service-page-wrapper .benefits-sec .text-box {
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .service-page-wrapper .benefits-sec .text-box {
    padding: 15px;
    font-size: 15px;
    line-height: 20px;
  }
}
.service-page-wrapper .bpo-features {
  padding: 72px 0 120px 0;
}
.service-page-wrapper .bpo-features h2 {
  margin-bottom: 40px;
}
.service-page-wrapper .bpo-features .checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .service-page-wrapper .bpo-features .checklist {
    grid-template-columns: 1fr;
  }
}
.service-page-wrapper .bpo-features .checklist li {
  width: 90%;
  text-transform: capitalize;
  font-size: 16px;
}
.service-page-wrapper .bpo-features .col-md-8 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service-page-wrapper .bpo-features .img-wrp {
    text-align: center;
    padding-bottom: 30px;
  }
}
.service-page-wrapper .acoup-features {
  padding: 65px 0 75px 0;
}
.service-page-wrapper .acoup-features h2 {
  margin-bottom: 45px;
}
.service-page-wrapper .acoup-features .text-box-list .text-box {
  font-size: 16px;
}
.service-page-wrapper .icon-with-text {
  display: flex;
  font-family: "Lato", sans-serif;
  gap: 33px;
  justify-content: flex-start;
  align-items: center;
}
.service-page-wrapper .square-icon-with-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.service-page-wrapper .square-icon-with-text .icon {
  min-width: 100px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F3F4F6;
}
.service-page-wrapper .square-icon-with-text .text p {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 575px) {
  .service-page-wrapper .square-icon-with-text .text p {
    font-size: 16px;
    line-height: 23px;
  }
}
@media screen and (max-width: 575px) {
  .service-page-wrapper .square-icon-with-text .text h3 {
    font-size: 17px;
    line-height: 20px;
  }
}

.pro-support-sec {
  padding: 128px 0 !important;
}
.pro-support-sec .list .list-item {
  width: 31% !important;
  border-bottom: 1px solid #08334E;
  border-bottom: 1px solid #08334E !important;
  border-radius: 0 !important;
}
@media screen and (max-width: 1024px) {
  .pro-support-sec .list .list-item {
    width: 46% !important;
  }
}
@media screen and (max-width: 575px) {
  .pro-support-sec .list .list-item {
    width: 100% !important;
  }
}

.pro-list img {
  padding-right: 15px;
}

.cta-sec {
  padding: 80px 0;
}
.cta-sec .cta-wrp {
  background-image: url("../images/innerPages/bpo/bpo_contact.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.cta-sec .cta-wrp h2 {
  color: #fff;
}
.cta-sec .cta-wrp h2::after {
  display: none;
}
.cta-sec .cta-wrp p {
  padding: 15px 0 30px 0;
  font-size: 24px;
  line-height: 26px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 768px) {
  .cta-sec .cta-wrp {
    height: auto;
    padding: 30px 20px;
  }
  .cta-sec .cta-wrp p {
    font-size: 17px;
  }
}
.cta-sec .cta-wrp .btn {
  font-size: 16px;
}

.accounting-page .intro-sec .feature-list {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}
@media screen and (max-width: 991px) {
  .accounting-page .intro-sec .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .accounting-page .intro-sec .feature-list {
    grid-template-columns: 1fr;
  }
}
.accounting-page .intro-sec .feature-list .feature-item {
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 18px;
  line-height: 26px;
  padding: 42px 25px 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.accounting-page .intro-sec .feature-list .feature-item h3 {
  padding: 32px 0 10px 0;
}
.accounting-page .intro-sec .feature-list .feature-item .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.accounting-page .intro-sec .feature-list .feature-item .btn-wrp {
  margin-top: auto;
}
@media screen and (max-width: 575px) {
  .accounting-page .intro-sec p {
    font-size: 18px;
  }
}
.accounting-page .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding-top: 50px;
  padding-bottom: 120px;
}
.accounting-page .list .list-item {
  width: 30%;
  border-bottom: 1px solid #08334E;
  padding: 21px 19px 21px 35px;
}
@media screen and (max-width: 991px) {
  .accounting-page .list .list-item {
    width: 46%;
    gap: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .accounting-page .list .list-item {
    width: 100%;
  }
}
.accounting-page .cta-sec p {
  font-size: 20px;
  line-height: 26px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .accounting-page .cta-sec p {
    width: 100%;
    font-size: 17px;
    line-height: 24px;
  }
}
.accounting-page .cta-sec .btn {
  min-width: 287px;
  height: 48px;
}
.accounting-page .cta-sec .btn.btn-outline {
  margin-right: 24px;
  padding: 0;
}
@media screen and (max-width: 575px) {
  .accounting-page .cta-sec .btn.btn-outline {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.recruitment-page .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding-top: 40px;
  padding-bottom: 120px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .recruitment-page .list {
    gap: 15px;
  }
}
.recruitment-page .list .list-item {
  width: 48%;
  border: 1px solid #08334E;
  padding: 16px;
  border-radius: 6px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .recruitment-page .list .list-item {
    width: 100%;
  }
}
.recruitment-page .list .list-item h3 {
  margin: 0;
}
.recruitment-page .process-sec {
  padding: 60px 0 170px 0;
}
.recruitment-page .process-sec .list {
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.recruitment-page .process-sec .list .list-item {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border: none;
  border-radius: 0;
  padding: 30px 16px 30px 30px;
  position: relative;
}
.recruitment-page .process-sec .list .list-item .icon {
  min-width: 70px;
  width: auto;
  height: auto;
}
.recruitment-page .process-sec .list .list-item .step {
  position: absolute;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: -20px;
  text-align: center;
  line-height: 40px;
}
.recruitment-page .process-sec .process-wrapper {
  padding-top: 95px;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 1280px) {
  .recruitment-page .process-sec .process-wrapper {
    grid-template-columns: 48% 43%;
  }
}
@media screen and (max-width: 768px) {
  .recruitment-page .process-sec .process-wrapper {
    grid-template-columns: 1fr;
    padding-left: 25px;
  }
}
@media screen and (max-width: 575px) {
  .recruitment-page .process-sec .process-wrapper {
    padding: 40px 0 0 10px;
  }
}
.recruitment-page .hire-sec {
  padding: 100px 0;
}
.recruitment-page .hire-sec .list {
  gap: 32px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .recruitment-page .hire-sec .list {
    gap: 15px;
  }
}
.recruitment-page .hire-sec .list .list-item {
  width: 31%;
  background-color: #F3F4F6;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #08334E;
}
@media screen and (max-width: 768px) {
  .recruitment-page .hire-sec .list .list-item {
    width: 46%;
  }
}
@media screen and (max-width: 575px) {
  .recruitment-page .hire-sec .list .list-item {
    width: 100%;
  }
}
.recruitment-page .hire-sec .list .list-item .icon {
  background-color: #fff;
  min-width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruitment-page .industries-sec {
  padding: 80px 0;
}
.recruitment-page .industries-sec .list .list-item {
  width: 30%;
  border-radius: 0;
  padding: 25px 36px;
}
@media screen and (max-width: 768px) {
  .recruitment-page .industries-sec .list .list-item {
    width: 46%;
  }
}
@media screen and (max-width: 575px) {
  .recruitment-page .industries-sec .list .list-item {
    width: 100%;
  }
}
.recruitment-page .table-sec {
  padding: 128px 0 50px;
}
.recruitment-page .table-sec .table-row {
  padding-top: 128px;
}
.recruitment-page .table-sec table {
  border-collapse: separate;
  border-spacing: 23px 0;
  padding-top: 47px;
}
.recruitment-page .table-sec table td {
  position: relative;
  padding: 14px 16px;
  vertical-align: middle;
  text-align: left;
  height: 70px;
  font-size: 16px;
}
.recruitment-page .table-sec table td::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #08334E;
  bottom: 0;
  width: 92%;
  left: 4%;
}
.recruitment-page .table-sec table td:nth-child(2), .recruitment-page .table-sec table td:nth-child(3) {
  background: #F3F4F6;
  border-left: 1px solid #08334E;
  border-right: 1px solid #08334E;
}
.recruitment-page .table-sec table th {
  text-align: center;
  color: #08334E;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 20px;
  width: 33.33%;
  padding-top: 25px;
}
@media screen and (max-width: 1200px) {
  .recruitment-page .table-sec table th {
    width: auto;
    min-width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .recruitment-page .table-sec table th {
    min-width: 255px;
  }
}
.recruitment-page .table-sec table th:nth-child(2), .recruitment-page .table-sec table th:nth-child(3) {
  background: #F3F4F6;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px solid #08334E;
  border-bottom: none;
}
.recruitment-page .table-sec table tr:last-child td {
  padding-bottom: 35px;
}
.recruitment-page .table-sec table tr:last-child td::after {
  border: none;
}
.recruitment-page .table-sec table tr:last-child td:nth-child(2), .recruitment-page .table-sec table tr:last-child td:nth-child(3) {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: 1px solid #08334E;
}
.recruitment-page .cta-sec p {
  font-size: 20px;
  line-height: 26px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .recruitment-page .cta-sec p {
    font-size: 16px;
    line-height: 24px;
  }
}
.recruitment-page .cta-sec .btn {
  min-width: 287px;
  height: 48px;
}
.recruitment-page .cta-sec .btn.btn-outline {
  margin-right: 24px;
  padding: 0;
}
@media screen and (max-width: 575px) {
  .recruitment-page .cta-sec .btn.btn-outline {
    margin: 0 0 15px 0;
  }
}

.hr-page .why-partner-sec .list {
  justify-content: flex-start;
}
.hr-page .why-partner-sec .list .list-item {
  width: 30%;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #08334E;
  border-radius: 0;
  min-height: 96px;
}
@media screen and (max-width: 768px) {
  .hr-page .why-partner-sec .list .list-item {
    width: 48%;
  }
}
@media screen and (max-width: 575px) {
  .hr-page .why-partner-sec .list .list-item {
    width: 100%;
  }
}
.hr-page .hr-for {
  justify-content: space-between;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .hr-page .hr-for {
    gap: 15px;
  }
}
.hr-page .hr-for .item {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .hr-page .hr-for .item {
    width: 48%;
  }
}
@media screen and (max-width: 575px) {
  .hr-page .hr-for .item {
    width: 100%;
  }
}
.hr-page .hr-for .item .icon {
  padding-bottom: 25px;
}

.freeConsultation-wrp {
  background: linear-gradient(270.69deg, #FFEC5C 1.03%, #FFE9AD 113.03%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2392156863);
  border-radius: 8px;
  padding: 24px 20px 28px;
  margin-bottom: 80px;
}
.freeConsultation-wrp h3 {
  color: #08334E;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 14px;
}
.freeConsultation-wrp .buttons-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.freeConsultation-wrp .buttons-wrp .btn {
  border: 0.5px solid #08334E;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 45px;
  padding: 8px 24px;
  background: #fff;
  font-size: 18px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
}
@media screen and (max-width: 767px) {
  .freeConsultation-wrp .buttons-wrp .btn {
    font-size: 15px;
  }
}
.freeConsultation-wrp .buttons-wrp .btn .icon-white {
  display: none;
}
.freeConsultation-wrp .buttons-wrp .btn:hover {
  border: 1px solid transparent;
  background-color: #3C74A4;
  color: #fff;
}
.freeConsultation-wrp .buttons-wrp .btn:hover .icon-white {
  display: block;
}
.freeConsultation-wrp .buttons-wrp .btn:hover .icon-dark {
  display: none;
}
.freeConsultation-wrp .buttons-wrp .btn.green:hover {
  background-color: #60D669;
  color: #fff;
}

.about-page .intro-sec {
  padding: 100px 0 128px 0;
  font-size: 18px;
  text-align: center;
}
.about-page .intro-sec h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 20px;
}
.about-page .intro-sec h2::after {
  border-bottom: 12px solid #0B507C;
  width: 12px;
  right: -30px;
  left: unset;
  bottom: 12px;
  border-radius: 50%;
}
.about-page .intro-sec .features-wrp {
  display: flex;
  justify-content: space-between;
  padding: 80px 70px;
}
@media screen and (max-width: 1366px) {
  .about-page .intro-sec .features-wrp {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 1280px) {
  .about-page .intro-sec .features-wrp {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .about-page .intro-sec .features-wrp {
    justify-content: center;
  }
}
.about-page .intro-sec .features-wrp .feature-item {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .about-page .intro-sec .features-wrp .feature-item {
    gap: 5px;
  }
}
@media screen and (max-width: 992px) {
  .about-page .intro-sec .features-wrp .feature-item {
    width: 50%;
    padding: 25px 14px;
  }
}
@media screen and (max-width: 575px) {
  .about-page .intro-sec .features-wrp .feature-item {
    width: 100%;
    border-bottom: 1px solid #D1D1D1;
    padding: 25px 14px;
  }
  .about-page .intro-sec .features-wrp .feature-item:last-child {
    border-bottom: none;
  }
  .about-page .intro-sec .features-wrp .feature-item .img-wrp {
    width: 60px;
  }
}
.about-page .intro-sec .features-wrp .feature-item span {
  font-size: 18px;
}
.about-page .intro-sec .features-wrp .feature-item .text {
  text-align: left;
}
.about-page .intro-sec .features-wrp .feature-item .count {
  color: var(--color-body-font);
  font-size: 26px;
  font-family: var(--body-font);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .about-page .intro-sec .features-wrp .feature-item span {
    font-size: 16px;
  }
  .about-page .intro-sec .features-wrp .feature-item .count {
    font-size: 22px;
  }
}
.about-page .testimonials-sec {
  padding-bottom: 140px;
}
.about-page .testimonials-sec h2 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 20px;
}
.about-page .testimonials-sec h2::after {
  border-bottom: 12px solid #0B507C;
  width: 12px;
  right: -30px;
  left: unset;
  bottom: 12px;
  border-radius: 50%;
}
.about-page .testimonial-slider {
  padding: 56px 0 40px 0;
}
.about-page .testimonial-slider .item {
  text-align: center;
}
.about-page .testimonial-slider .item p {
  font-size: 24px;
  padding: 23px 0;
  font-weight: 300;
  font-style: italic;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .about-page .testimonial-slider .item p {
    font-size: 16px;
  }
}
.about-page .testimonial-slider .item h5 {
  font-size: 18px;
  color: #0B507C;
  padding: 10px 0 0 0;
}
.about-page .testimonial-slider .item span {
  font-size: 14px;
}
.about-page .testimonial-slider .item img {
  margin: 0 auto;
}
.about-page .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
}
.about-page .slick-dots li {
  list-style: none;
}
.about-page .slick-dots li button {
  width: 10px;
  list-style: none;
  font-size: 0;
  border-radius: 50%;
  height: 12px;
  border: 0;
  background: #D9D9D9;
}
.about-page .slick-dots li.slick-active button {
  background: var(--color-primary);
}

.contact-page-wrapper .contact-form-sec {
  padding: 80px 0px 100px 0;
}
@media screen and (max-width: 600px) {
  .contact-page-wrapper .contact-form-sec {
    padding: 30px 20px;
  }
}
.contact-page-wrapper .contact-form-sec h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .contact-page-wrapper .contact-form-sec .call-back-sec h2 {
    padding-top: 30px;
  }
}
.contact-page-wrapper .contact-form-sec .contact-item {
  border-bottom: 1px solid #08334E;
  padding: 17px 0;
}
.contact-page-wrapper .contact-form-sec .contact-item:nth-last-of-type(2) {
  border: none;
}
.contact-page-wrapper .contact-form-sec .contact-item > p > a {
  text-decoration: none;
  color: #18191C;
}
.contact-page-wrapper .contact-form-sec form .btn {
  width: 180px;
  border-radius: 0;
  box-shadow: 0px 4px 4px 0px rgba(112, 144, 176, 0.2);
  background-color: #0B507C;
}
.contact-page-wrapper .contact-form-sec form .form-control {
  border-radius: 4px;
  border: 1px solid #08334E;
  padding: 11px 10px;
  color: #08334E;
}
.contact-page-wrapper .contact-form-sec form .dropdown-toggle {
  background: #FEFEFE;
  border: 1px solid #08334E;
  color: #08334E;
}
.contact-page-wrapper .contact-form-sec form ::-moz-placeholder {
  color: #08334E;
}
.contact-page-wrapper .contact-form-sec form ::placeholder,
.contact-page-wrapper .contact-form-sec form select:not(:checked) {
  color: #08334E;
}
.contact-page-wrapper .contact-form-sec form select option,
.contact-page-wrapper .contact-form-sec form select {
  color: #08334E;
}
.contact-page-wrapper .contact-form-sec form .input-group input {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .contact-page-wrapper .contact-form-sec form .input-group input {
    width: 65%;
  }
}
.contact-page-wrapper .contact-form-sec .theme.form .select2-container {
  max-width: unset;
}
.contact-page-wrapper .contact-form-sec .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #08334E;
}
.contact-page-wrapper .contact-heading {
  display: none;
}
.contact-page-wrapper .contact-sec,
.contact-page-wrapper .callback-sec {
  display: none;
}
.contact-page-wrapper .select2-selection--single {
  border: 1px solid #08334E !important;
  color: #08334E !important;
}

footer {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
footer .columns {
  display: grid;
  grid-template-columns: 16% 10% 22% 22% 30%;
  justify-content: start;
  padding: 65px 0 40px 0;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 1440px) {
  footer .columns {
    grid-template-columns: 18% 10% 22% 22% 28%;
  }
}
@media screen and (max-width: 1280px) {
  footer .columns {
    grid-template-columns: 25% 30% 45%;
    grid-auto-rows: auto;
  }
}
@media screen and (max-width: 768px) {
  footer .columns {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 575px) {
  footer .columns {
    grid-template-columns: 100%;
  }
  footer .columns .about {
    text-align: center;
  }
  footer .columns .mobile-logo {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
  footer .columns .column {
    padding-bottom: 30px;
  }
  footer .columns .column:nth-child(4), footer .columns .column:nth-child(5) {
    grid-column: span 1;
  }
  footer .columns .column:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}
@media screen and (max-width: 768px) {
  footer .columns .column:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}
@media screen and (max-width: 575px) {
  footer .columns .column:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: span 2;
  }
}
footer .columns .column p {
  font-size: 14px;
  line-height: 24px;
}
footer .columns .social {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media screen and (max-width: 575px) {
  footer .columns .social {
    justify-content: center;
  }
}
footer .columns h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  footer .columns h4 {
    text-align: center;
  }
}
footer .columns ul {
  list-style: none;
  padding-left: 0;
}
footer .columns ul a {
  font-size: 14px;
  color: #18191C;
  text-decoration: none;
  padding-bottom: 12px;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
footer .columns ul a::before {
  content: url("../images/vectors/angle-right.svg");
  padding-right: 10px;
}
@media screen and (max-width: 1280px) {
  footer .columns ul.services {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
@media screen and (max-width: 575px) {
  footer .columns ul.services {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
@media screen and (max-width: 575px) {
  footer .columns ul.pages {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
}
footer .copyright {
  padding: 20px 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  footer iframe {
    height: 215px;
  }
}

.contact-sec {
  background-image: url("../images/homePage/contact-bg.webp");
  background-size: cover;
  padding: 100px 0;
}
.contact-sec h2 {
  color: #fff;
  text-align: center;
}
.contact-sec .contact-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  justify-content: space-around;
}
@media screen and (max-width: 1280px) {
  .contact-sec .contact-info-list {
    grid-template-columns: 30% 30% 30%;
  }
}
@media screen and (max-width: 600px) {
  .contact-sec .contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.contact-sec .contact-info-list .contact-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 4px;
}
@media screen and (max-width: 600px) {
  .contact-sec .contact-info-list .contact-item {
    padding: 40px 5px !important;
  }
}
.contact-sec .contact-info-list .contact-item a {
  text-decoration: none;
  color: #18191C;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 600px) {
  .contact-sec .contact-info-list .contact-item a {
    text-align: left;
  }
}
.contact-sec .contact-info-list .contact-item a h3 {
  padding: 30px 0 10px 0;
  font-family: var(--body-font);
}
@media screen and (max-width: 600px) {
  .contact-sec .contact-info-list .contact-item a h3 {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact-sec .contact-info-list .contact-item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px 40px;
  }
  .contact-sec .contact-info-list .contact-item .icon {
    width: 35%;
  }
  .contact-sec .contact-info-list .contact-item a {
    width: 65%;
  }
}

.callback-sec {
  background-color: var(--color-primary);
  padding: 40px 0;
  text-align: center;
}
.callback-sec .btn:hover {
  background-color: #fff;
  color: var(--color-primary);
}
