@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');


@font-face {
  font-family: Edu SA Hand;
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/edusahand/v2/memtYaOmw37C-ogAJfd7NocVXTy8nx2cmqvXp2uWt06F15M.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF
}

@font-face {
  font-family: Edu SA Hand;
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/edusahand/v2/memtYaOmw37C-ogAJfd7NocVXTy8nx2cmqvXp2uWuU6F.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD
}

:root {
  --font-inter: "Inter", sans-serif;
  --primary: #253959;
  --secondary: #D30000;
  --tertiary: #FFE100;
  --success: #0F9200;
  --text-dark: #181D27;
  --text-medium: #535862;
  --text-light: rgba(37, 57, 89, 0.56);
  --text-placeholder: #717680;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --border-light: #D5D7DA;
  --transition: all .2s ease-in-out;
}

a,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: var(--font-inter);
}

:root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: inherit
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input[type="radio"] {
  position: relative;
  appearance: none;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  content: none;
  outline: none;
  margin: 0;
  padding: 0;
}

input[type="radio"]:checked {
  appearance: none;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
}

input[type="radio"]::before {
  color: var(--secondary);
  content: "";
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background-color: var(--secondary);
  border-radius: 100%;
  opacity: 0;
  visibility: visible;
  transition: all .1s ease-in-out;
}

input[type="radio"]:checked::before {
  opacity: 1;
  visibility: visible;
}

input[type="checkbox"] {
  position: relative;
  appearance: none;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  content: none;
  outline: none;
  margin: 0;
  padding: 0;
}

input[type="checkbox"]:checked {
  appearance: none;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
}

input[type="checkbox"]::before {
  color: var(--secondary);
  font-weight: 600;
  font-size: 11px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  border: none;
  position: absolute;
  top: 55%;
  left: 52%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: visible;
  transition: all .1s ease-in-out;
}

input[type="checkbox"]:checked::before {
  opacity: 1;
  visibility: visible;
}


/* HEADER CSS */

.header .container-fluid {
  padding: 0;
  gap: 0px 0px;
}

.header .navbar {
  padding: 12px 32px;
  border-bottom: 1px solid rgba(34, 34, 34, .08);
  background-color: var(--bg-white);
  width: 100%;
}

.header .navbar-brand {
  min-width: 330px;
  font-size: 32px;
  line-height: 1em;
  font-weight: 900;
  color: var(--primary);
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

.header .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.header .nav-item {
  margin: 0px 10px;
}

.header .nav-item .nav-link {
  padding: 16px 2px !important;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  transition: var(--transition);
}

.header .nav-item .nav-link:hover {
  color: var(--primary);
}

.header .nav-item .nav-link.dropdown-toggle::after {
  content: "";
  background: transparent;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  border: none;
  border-bottom: 2px solid var(--text-medium);
  border-left: 2px solid var(--text-medium);
  margin-left: 6px;
  transform: rotate(-45deg);
  transition: var(--transition);
}

.header .nav-item .nav-link.dropdown-toggle:hover::after {
  transform: rotate(135deg);
  top: 0px;
}

.header .dropdown-menu {
  top: 100%;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  margin: 0px 0px 0px;
  padding: 8px 24px;
}

.header .dropdown-menu .dropdown-item {
  color: var(--text-dark);
  background-color: transparent;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 8px 0px;
  padding: 2px 0px;
  display: flex;
  align-items: center;
  gap: 0px 10px;
  width: fit-content;
}

.header .dropdown-menu .nav-item {
  margin: 0px 0px;
}

.header .dropdown-menu .dropdown-item i {
  font-size: 20px;
  color: var(--text-light);
  opacity: 45%;
}

.header .dropdown-menu .dropdown-item:hover {
  color: var(--primary);
  background-color: transparent;
}

.header .dropdown-menu.fade {
  opacity: 0;
  transform: translateY(-5px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 250ms cubic-bezier(.21, .96, .65, 1.00);
  display: block;
  pointer-events: none;
  visibility: hidden;
}

.header .dropdown-menu.fade.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* Show dropdown on hover for desktop (≥992px) */
@media (min-width: 992px) {
  /* .header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .header .nav-item .nav-link.dropdown-toggle:hover::after {
    pointer-events: none;
  }

  .header .dropdown-menu {
    display: none;
  }

  .header .dropdown.show .dropdown-menu {
    display: block;
  } */
}

.header .navbarRight {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px 8px;
  min-width: 330px;
}

.cmnBtn {
  box-shadow: none;
  outline: none;
  border-width: 1px;
  border-style: solid;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  min-height: 48px;
  min-width: 160px;
}

.btnPrimary {
  color: var(--text-white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btnPrimary:active,
.btnPrimary:hover {
  color: var(--text-white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btnSecondary {
  color: var(--text-white);
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btnSecondary:active,
.btnSecondary:hover {
  color: var(--text-white) !important;
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.btnDefault {
  color: var(--text-dark);
  background-color: var(--bg-white);
  border-color: var(--border-light);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
}

.btnDefault:active,
.btnDefault:hover {
  color: var(--text-dark) !important;
  background-color: var(--bg-white) !important;
  border-color: var(--border-light) !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08) !important;
}

.btnWhite {
  font-weight: 700;
  color: var(--primary);
  background-color: var(--bg-white);
  border-color: var(--bg-white);
}

.btnWhite:active,
.btnWhite:hover {
  color: var(--primary) !important;
  background-color: var(--bg-white) !important;
  border-color: var(--bg-white) !important;
}

.header .headerNav {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;
  gap: 0px 40px;
  margin-right: auto;
  margin-left: auto;
  width: auto;
}

.header .navbar-collapse {
  position: relative;
}

.header .navbar-toggler {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  outline: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 12px;
  border-radius: 8px;
  min-height: 48px;
}

.header .navbar-toggler .navbar-toggler-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-image: none;
  position: relative;
  vertical-align: bottom;
  margin-right: 8px;
}

.header .navbar-toggler .navbar-toggler-icon i {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  height: 1.5px;
  width: 20px;
  transition: var(--transition);
}

.header .navbar-toggler .navbar-toggler-icon i:first-child {
  margin-top: -7px;
}

.header .navbar-toggler .navbar-toggler-icon i:last-child {
  margin-top: 7px;
}

body.navActive .header .navbar-toggler .navbar-toggler-icon i {
  opacity: 0;
}

body.navActive .header .navbar-toggler .navbar-toggler-icon i:first-child {
  margin-top: 0;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
}

body.navActive .header .navbar-toggler .navbar-toggler-icon i:last-child {
  margin-top: 0px;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* INDEX CSS */
.heroSection {
  padding: 170px 0px 90px;

  .heroHeading {
    gap: 20px 0px;
  }
}

.heroHeading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px 0px;
  max-width: 60%;
  margin: 0 auto;
}

.heroHeading h1 {
  color: var(--text-dark);
  font-size: 48px;
  line-height: 62px;
  font-weight: 700;
}

.heroHeading h4 {
  color: rgb(255, 238, 0);
  font-size: 20px;
  line-height: 26px;
  padding: 0px 80px;
}

.heroHeading p {
  color: var(--text-medium);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.heroHeading button {
  width: auto;
}

.jobReelSection {
  background: linear-gradient(180deg, #FFFFFF, #dfeaed);
  padding: 0px 0px 90px;
}

.jobReelRow {
  height: min-content;
  overflow: visible;
  padding: 0px 0px 0px;
  position: sticky;
  top: 80px;
  width: 100%;
  z-index: 1;
}

.jobReelRow .jobReelCol {
  padding-left: 15px;
  padding-right: 15px;
}

.jobReelCol:nth-child(1) {
  flex: 1 0 0px;
  height: min-content;
  overflow: hidden;
  padding: 160px 15px 0;
  position: sticky;
  top: 0;
  width: 1px;
  z-index: 1;
}

.jobReelCol:nth-child(2) {
  flex: 1 0 0px;
  height: min-content;
  overflow: hidden;
  padding: 0px 0 0;
  position: sticky;
  top: 0;
  width: 1px;
  z-index: 1;
}

.jobReelCol:nth-child(3) {
  flex: 1 0 0px;
  height: min-content;
  overflow: hidden;
  padding: 160px 15px 0;
  position: sticky;
  top: 0;
  width: 1px;
  z-index: 1;
}

.jobReelRow .jobReelCol .jobReelBox:nth-last-child(1) {
  margin-bottom: 0px;
}

.jobReelBox {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

.jobReelBox .jobReelImg {
  position: relative;
  z-index: 3;
}

.jobReelBox .jobReelImg img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
  transition: var(--transition);
}

.jobReelBox:hover .jobReelImg img {
  transform: scale(1.1);
}

.jobReelBox .jobReelOverlay {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgb(5 5 5 / 0%), rgb(5 5 5 / 70%));
}

.jobReelBox .jobReelText {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 25px 25px;
  transition: var(--transition);
}

.jobReelBox:hover .jobReelText {
  bottom: 65px;
}

.jobReelBox .jobReelText h2 {
  color: var(--text-white);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.jobReelBox .jobReelInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0px 16px;
}

.jobReelBox .jobReelInfo h3 {
  font-family: Edu SA Hand;
  color: var(--tertiary);
  font-size: 20px;
  line-height: 28px;
}

.jobReelBox .jobReelInfo h5 {
  display: flex;
  align-items: center;
  gap: 0px 4px;
  color: var(--text-white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.jobReelBox .jobReelInfo span {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
}

.jobReelBox .jobReelInfo span img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.jobReelBox .jobReelText h4 {
  color: var(--text-white);
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.jobReelBox .jobReelText h4 small {
  color: rgba(255, 255, 255, 0.32);
  font-weight: 600;
  font-size: 60%;
}

.jobReelBox .viewJobBtn {
  width: 100%;
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  border-radius: 80px;
  position: absolute;
  z-index: 7;
  bottom: 25px;
  color: rgb(37, 57, 89);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 8px;
  font-size: 16px;
  font-weight: 700;
  margin: 0px 25px;
  width: -webkit-fill-available;
  visibility: hidden;
  opacity: 0;
}

.jobReelBox .viewJobBtn span {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: rgb(37, 57, 89);
  transition: var(--transition);
}

.jobReelBox .viewJobBtn span i {
  color: var(--text-white);
  font-size: 0px;
  transition: var(--transition);
}

.jobReelBox:hover .viewJobBtn {
  visibility: visible;
  opacity: 1;
}

.jobReelBox .viewJobBtn:hover span {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
}

.jobReelBox .viewJobBtn:hover span i {
  font-size: 16px;
}

.jobReelMoreBox {
  text-align: center;
  padding: 40px 0px;
}

.jobReelMoreBox a {
  color: var(--primary);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding: 10px 10px;
}

.countrySection {
  /* padding: 90px 0px 90px; */
  overflow: hidden;
}

.countrySection iframe {
  width: 100%;
  height: 100%;
  min-height: 900px;
  margin-bottom: -7px;
}

.countrySlider {
  margin-top: 50px;
}

.countrySlider .countrySlide {
  margin: 0px 20px;
}

.countrySlider .countrySlide img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}

.jobStepSection {
  padding: 90px 0px 90px;
  background-color: var(--primary);

  .heroHeading h1 {
    color: var(--text-white);
  }
}

.stepHead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 20px;
}

.avatarSlider {
  width: 160px;
}

.avatarSlider .avatarSlide {
  margin: 0px -3px;
}

.avatarSlider .avatarSlide img {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  object-fit: cover;
  border-radius: 100%;
  border: 4px solid var(--primary);
}

.stepCounter {
  background-color: var(--bg-white);
  color: var(--primary);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  padding: 6px 16px 6px 46px;
  border-radius: 40px;
  position: relative;
}

.stepCounter span {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: var(--primary);
  border: 1px solid var(--bg-white);
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 12px;
}

.jobStepBoxes {
  margin-top: 50px;
}

.jobStepBox {
  position: relative;
}

.jobStepBox .jobStepBoxImg {
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0) 0px 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0) 0px 10px 10px -3.75px;
  border: 4px solid rgba(255, 255, 255, 0.059);
}

.jobStepBox .jobStepBoxImg img {
  transition: var(--transition);
  border-radius: 8px;
  width: 100%;
  height: 298px;
  object-fit: cover;
  opacity: 0.72;
}

.jobStepBox:hover .jobStepBoxImg {
  border-color: rgb(255, 255, 255);
}

.jobStepBox:hover .jobStepBoxImg img {
  opacity: 1;
  transform: scale(1.1);
}

.jobStepBox .jobStepBoxText {
  position: relative;
  transition: var(--transition);
  opacity: 75%;
  text-align: center;
  padding: 30px 20px 30px;
}

.jobStepBox .jobStepBoxText span {
  position: absolute;
  left: 0;
  right: 0;
  top: -36px;
  margin: 0 auto;
  background: var(--bg-white);
  width: fit-content;
  color: var(--primary);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 60px;
  transform: scale(0.0);
  opacity: 0;
  transition: var(--transition);
}

.jobStepBox:hover .jobStepBoxText {
  opacity: 1;
}

.jobStepBox:hover .jobStepBoxText span {
  transform: scale(1.0);
  opacity: 1;
}

.jobStepBox .jobStepBoxText h2 {
  color: var(--text-white);
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 500;
  margin-bottom: 5px;
}

.jobStepBox .jobStepBoxText p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 500;
}

.jobStepFooter {
  text-align: center;
  margin-top: 20px;
}

.jobStepFooter p {
  color: var(--text-white);
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 500;
  max-width: 19%;
  margin: 0 auto 16px;
}

.jobStepFooterTooltip .cmnBtn {
  border-radius: 60px;
}

.jobStepFooterTooltip {
  position: relative;
}

.jobStepFooterTooltip:hover .jobStepFooterTooltipBox {
  opacity: 1;
  top: -95px;
}

.jobStepFooterTooltipBox {
  background-color: #000;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -85px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 0px;
  padding: 12px 20px;
  border-radius: 16px;
  width: fit-content;
  transition: var(--transition);
}

.jobStepFooterTooltipBox::before {
  content: "";
  background: #000;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: -5px;
  transform: rotate(-45deg);
}

.jobStepFooterTooltipBox h6 {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  opacity: 55%;
}

.jobStepFooterTooltipBox ul {
  display: flex;
  align-items: center;
}

.jobStepFooterTooltipBox ul li {
  margin: 0px -4px;
}

.jobStepFooterTooltipBox ul li img {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  object-fit: cover;
  border-radius: 100%;
  border: 2px solid #000;
}

.storySection {
  background: linear-gradient(180deg, #FFFFFF, #dfeaed);
  padding: 90px 0px 90px;
  position: relative;
}

.storySection::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background-color: var(--primary);
}

.storySection .container {
  position: relative;
  z-index: 2;
}

.storyRow {
  margin-top: 50px;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.storyCol {
  flex: 0 0 auto;
  width: 33.33333333%;
  /* width: 25%; */
  max-width: 100%;
  padding-right: 5px;
  padding-left: 5px;
  transition: var(--transition);
}

.storyCol.storyColHover {
  width: 25%;
}

.storyCol:hover {
  width: 50%;
}

.storyBox {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.storyBox .storyBoxImg {
  position: relative;
  z-index: 3;
}

.storyBox .storyBoxImg img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 640px;
  object-fit: cover;
  transition: var(--transition);
}

.storyBox .storyBoxImg video {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 640px;
  object-fit: cover;
  margin-bottom: -6px;
  opacity: 0;
  transition: var(--transition);
}

.storyBox:hover .storyBoxImg video {
  opacity: 1;
}

.storyBox .storyBoxOverlay {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgb(5 5 5 / 0%), rgb(5 5 5 / 70%));
}

.storyBox .storyBoxText {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: 0px;
  width: 100%;
  padding: 35px 40px;
  transition: all .3s ease-in-out;
}

.storyBox .storyBoxText .storyBoxDetails {
  width: 340px;
  height: 0px;
  overflow: hidden;
  transition: all .2s ease-in-out;
  transform: translateY(100%);
}

.storyBox:hover .storyBoxText .storyBoxDetails {
  height: auto;
  transform: translateY(0%);
}

.storyBox .storyBoxText h2 {
  color: var(--text-white);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.storyBox .storyBoxText h3 {
  font-family: Edu SA Hand;
  color: var(--tertiary);
  font-size: 20px;
  line-height: 28px;
}

.storyBox .storyBoxText h4 {
  color: rgba(255, 255, 255, 0.40);
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0px 12px;
  text-transform: uppercase;
  margin: 30px 0px 25px;
}

.storyBox .storyBoxText h4 img {
  width: 14px;
}

.storyBox .storyBoxText p {
  color: var(--text-white);
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}

/* .srvcSliderSection {
  overflow: hidden;
  position: relative;
  background-color: var(--primary);
  padding: 90px 0px 90px;

  .heroHeading {
    gap: 16px 0px;
    margin-bottom: 100px;

    h1 {
      color: var(--text-white);
    }
  }
} */

.srvcSliderSection {
  overflow: hidden;
}

.srvcSliderSection iframe {
  width: 100%;
  height: 100%;
  min-height: 900px;
  margin-bottom: -7px;
}

.srvcSliderSection {}

.srvcSliderWrapper {
  display: flex;
  gap: 0px 60px;
  padding-left: 400px;
}

.srvcSlide {
  width: 640px;
  min-width: 640px;
  height: auto;
}

.srvcSlideBox {
  width: 100%;
  border-radius: 16px;
  background-color: var(--bg-white);
  padding: 6px;
}

.srvcSlideBox img {
  border-radius: 12px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.srvcSlideBox .srvcSlideBoxText {
  padding: 20px 20px;
}

.srvcSlideBox .srvcSlideBoxText h2 {
  color: var(--text-dark);
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.srvcSlideBox .srvcSlideBoxText p {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.mainFooter {
  overflow: hidden;
  position: relative;
  background-color: var(--primary);
  padding: 10px 0px 90px;

  .container {
    position: relative;
    z-index: 5;
  }
}

.mainFooterBg {
  content: "";
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainFooterBg img {
  width: 100%;
  height: 100%;
}

.querySection {
  background-color: transparent;
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 70px 70px;
  transition: var(--transition);

  .heroHeading {
    margin-bottom: 60px;
    max-width: 50%;
    gap: 10px 0px;

    h1 {
      color: var(--text-white);
    }
  }
}

.querySection.active {
  background-color: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(64px);
}

.queryUser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px 0px;
}

.queryUser .queryUserIn {
  display: flex;
  align-items: center;
  gap: 0px 25px;
}

.queryUser .queryUserIn img.leaf {
  width: 24px;
}

.queryUser .queryUserIn ul {
  display: flex;
  align-items: center;
}

.queryUser .queryUserIn ul li {
  margin: 0px -8px;
}

.queryUser .queryUserIn ul li img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  min-width: 50px;
  min-height: 50px;
  border: 4px solid var(--primary);
  border-radius: 100%;
}

.queryUser .queryUserText p {
  color: var(--text-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.queryForm {
  width: 360px;
  margin: 40px auto 0px;
  transition: var(--transition);
}

.querySection.active .queryForm {
  width: 540px;
}

.queryForm .queryFormIn {
  height: 0px;
  overflow: hidden;
  transition: var(--transition);
}

.querySection.active .queryForm .queryFormIn {
  height: 400px;
}

.queryForm .queryFormIn .form-control {
  color: var(--text-white);
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background-color: rgba(0, 0, 0, 0.32);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 16px;
  margin-bottom: 8px;
}

.queryForm .queryFormIn .form-control::placeholder {
  color: var(--text-white);
}

.queryForm .queryFormIn select,
.queryForm .queryFormIn select option,
.queryForm .queryFormIn select:invalid,
.queryForm .queryFormIn select:valid {
  color: var(--text-white);
}

.queryForm .queryFormIn textarea {
  height: 100px;
  resize: none;
}

.queryForm .queryFormIn button {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--bg-white);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  padding: 15px 30px;
  min-height: 60px;
  width: 100%;
}

.queryForm .queryFormIn button:hover,
.queryForm .queryFormIn button:focus {
  border: 1px solid var(--bg-white);
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.querySection.active .queryForm .queryFormAction {
  display: none;
}

.queryForm .queryFormAction {
  margin-bottom: 8px;
}

.queryForm .queryFormAction button {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--bg-white);
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  padding: 15px 30px;
  min-height: 60px;
  width: 100%;
}

.queryForm .queryFormAction button:hover,
.queryForm .queryFormAction button:focus {
  border: 1px solid var(--bg-white);
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.queryForm .queryFormFooter {
  display: none;
}

.querySection.active .queryForm .queryFormFooter {
  display: block;
}

.queryForm .queryFormFooter button {
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--text-white);
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  padding: 15px 30px;
  min-height: 60px;
  width: 100%;
}

.queryForm .queryFormFooter button:hover,
.queryForm .queryFormFooter button:focus {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(0, 0, 0, 0.08);
  color: var(--text-white);
}

.homeFooter {
  padding: 100px 0px 0px;
}

.footerInfo {
  background-color: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  backdrop-filter: blur(64px);
}

.footerInfo .footerMenuArea {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px 0px;
}

.footerInfo .footerMenuArea .footerMenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 10px;
}

.footerInfo .footerMenuArea .footerMenu h2 {
  color: var(--text-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.footerInfo .footerMenuArea .footerMenu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px 20px;
}

.footerInfo .footerMenuArea .footerMenu ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: var(--transition);
}

.footerInfo .footerMenuArea .footerMenu ul li a:hover {
  color: rgb(255, 255, 255);
}

.footerInfo .footerInfoBar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerSocial ul,
.footerContact ul {
  display: flex;
  align-items: center;
  gap: 0px 20px;
}

.footerSocial ul li a,
.footerContact ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  transition: var(--transition);
}

.footerSocial ul li a small,
.footerContact ul li a small {
  font-size: 100%;
}

.footerSocial ul li a:hover,
.footerContact ul li a:hover {
  color: rgb(255, 255, 255);
}

.footerSocial ul li a span {
  font-size: 24px;
}

.footerContact ul li a {
  font-size: 14px;
}

.footerContact ul li a span {
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.footerAddress {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0px 60px;
}

.footerAddress .footerAddressBox {
  padding-right: 80px;
}

.footerAddress .footerAddressBox span {
  color: var(--text-white);
  font-size: 20px;
  opacity: 50%;
}

.footerAddress .footerAddressBox p {
  padding-top: 5px;
  color: var(--text-white);
  opacity: 80%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footerAddress .row {
  gap: 60px 0px;
}

.footerCopyright {
  padding: 60px 0px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerCopyright h2 {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footerCopyright p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* Service Page */
.pageHeadingSection {
  padding: 230px 0px 150px;
}

.pageHeading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0px;
  margin: 0 auto;
}

.pageHeading .anchorBadge a {
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 4px;
  padding: 6px 12px 6px 6px;
  border-radius: 60px;
  background: rgba(211, 0, 0, 0.08);
}

.pageHeading .anchorBadge span {
  margin-right: 6px;
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding: 2px 8px;
  background-color: var(--bg-white);
  border: 1px solid var(--secondary);
  border-radius: 60px;
}

.pageHeading .anchorBadge a i {
  font-size: 16px;
}

.pageHeading h1 {
  color: var(--text-dark);
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
}

.pageHeading p {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  max-width: 60%;
  margin: 0 auto;
}

.pageHeading button {
  margin-top: 20px;
}

.pageHeading.light h1,
.pageHeading.light p {
  color: var(--text-white);
}

.srvcBannerSection {
  position: relative;
}

.srvcBannerSection::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.srvcBannerSection.immigration::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/service/immigration/banner.png) lightgray 50% / cover no-repeat;
}

.srvcBannerSection.work::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/service/work/banner.png) lightgray 50% / cover no-repeat;
}

.srvcBannerSection.student::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/service/student/banner.png) lightgray 50% / cover no-repeat;
}

.srvcBannerSection.investment::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/service/investment/banner.png) lightgray 50% / cover no-repeat;
}

.srvcBannerSection.tourist::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/service/tourist/banner.png) lightgray 50% / cover no-repeat;
}

.srvcBannerSection .srvcBannerIn {
  position: relative;
  z-index: 4;
}

.srvcBannerSection .srvcBannerIn h2 {
  text-align: center;
  color: var(--text-white);
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}

.srvcBannerSection .srvcBannerIn h5 {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}

.srvcBannerSection .srvcBannerIn .srvcBannerForm {
  padding: 16px 0px 0px;
  width: 480px;
  margin: 0 auto;
}

.srvcBannerSection .srvcBannerIn .srvcBannerForm .form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.srvcBannerSection .srvcBannerIn .srvcBannerForm .form-group input {
  outline: none;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  min-height: 48px;
}

.srvcBannerSection .srvcBannerIn .srvcBannerForm .form-group input::placeholder {
  color: var(--text-placeholder);
  font-weight: 400;
}

.srvcBannerSection .srvcBannerIn .srvcBannerForm h6 {
  color: var(--text-white);
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}

.srvcBannerSection .srvcBannerIn .srvcBannerForm h6 a {
  text-decoration: underline;
  font-weight: 400;
}

.sectionHeading {
  text-align: center;
  margin-bottom: 70px;
}

.sectionHeading h4 {
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sectionHeading h2 {
  color: var(--text-dark);
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sectionHeading p {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  max-width: 50%;
  margin: 0 auto;
}

.sectionHeading ul {
  list-style: disc;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px 0px;
}

.sectionHeading ul li {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.sectionHeading.light h4 {
  color: var(--text-white);
  font-weight: 400;
}

.sectionHeading.light h2 {
  color: var(--text-white);
  font-weight: 400;
}

.sectionHeading.light p {
  color: var(--text-white);
  opacity: 70%;
  font-weight: 300;
}

.sectionHeading.text-start p {
  max-width: 100%;
}

.sectionHeading.text-start ul {
  margin-left: 16px;
}

.section {
  position: relative;
}

.secpt60 {
  padding-top: 60px;
}

.secpb60 {
  padding-bottom: 60px;
}

.secpt80 {
  padding-top: 80px;
}

.secpb80 {
  padding-bottom: 80px;
}

.secpt100 {
  padding-top: 100px;
}

.secpb100 {
  padding-bottom: 100px;
}

.secpt110 {
  padding-top: 110px;
}

.secpb110 {
  padding-bottom: 110px;
}

.secpt120 {
  padding-top: 120px;
}

.secpb120 {
  padding-bottom: 120px;
}

.secpt130 {
  padding-top: 130px;
}

.secpb130 {
  padding-bottom: 130px;
}

.secpt140 {
  padding-top: 140px;
}

.secpb140 {
  padding-bottom: 140px;
}

.secpt150 {
  padding-top: 150px;
}

.secpb150 {
  padding-bottom: 150px;
}

.bgWhite {
  background: var(--bg-white);
}

.bgLight {
  background: var(--bg-light);
}

.bgPrimary {
  background: var(--primary);
}

.bgSecondary {
  background: var(--secondary);
}

.valueSection .valueWrapper {
  display: flex;
  justify-content: space-between;
}

.valueSection .valueWrapper .valueWrapperLeft {
  flex: 0 0 auto;
  width: 40%;
  padding-right: 56px;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.valueSection .valueWrapper .valueWrapperRight {
  flex: 0 0 auto;
  width: 60%;
  position: sticky;
  top: 120px;
  height: min-content;
  overflow: hidden;
}

.valueSection .valueWrapper .textBoxes {
  display: flex;
  flex-direction: column;
  gap: 50px 0px;
  padding: 4px 0px 0px 4px;
}

.valueSection .valueWrapper .textBoxes::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.valueSection .valueWrapper .textBox {
  width: 90%;
}

.iconCircle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background-color: var(--secondary);
  box-shadow: 0px 0px 0px 4px rgba(211, 0, 0, 0.16);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
}

.iconCircle img {
  width: 24px;
  height: 24px;
  object-fit: scale-down;
}

.textBox h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  z-index: 5;
}

.textBox p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  z-index: 5;
}

.textBox ul {
  list-style: disc;
  margin-left: 15px;
  margin-top: 16px;
}

.textBox ul li {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
  z-index: 5;
}

.valueSection .valueWrapper .valueSlider .textBox {
  width: 100%;
  text-align: center;

  .iconCircle {
    margin-left: auto;
    margin-right: auto;
  }
}

.valueSlider .slick-track {
  padding-top: 4px;
}

.valueSlider {
  display: none;
}

.valueSection .valueWrapper .valueWrapperImg img {
  border-radius: 16px;
  width: 100%;
  height: 778px;
  object-fit: cover;
}

.valueSection .valueAction {
  margin-top: 60px;
}

.valueSection.investment .sectionHeading {
  margin-bottom: 40px;
}

.valueTabSection .valueTabHead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 8px;
  margin-bottom: 70px;
  padding: 4px 4px;
  background: rgba(37, 57, 89, 0.12);
  border-radius: 12px;
  border: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.valueTabSection .valueTabHead li a {
  background-color: transparent;
  color: var(--text-medium);
  border: none;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0px 8px;
  padding: 8px 12px;
  border-radius: 8px;
}

.valueTabSection .valueTabHead li a img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 100%;
}

.valueTabSection .valueTabHead li a.active {
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.processSection .processBoxes .textBox {
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 40px;
  position: relative;
}

.processSection .processBoxes .textBox span {
  margin: 0 auto 20px;
}

.processSection .processBoxes .textBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 50%;
  width: 105%;
  height: 0px;
  border-bottom: 2px dashed var(--border-light);
}

.processSection .processBoxes .col-12:nth-last-child(1) .textBox::after {
  display: none;
}

.testimonialSection {
  overflow: hidden;
}

.testimonialSlider {
  position: relative;
}

.testimonialSlide {
  position: relative;
  z-index: 3;
  padding: 0px 30px;
  text-align: center;
}

.testimonialSlide h2 {
  color: var(--text-white);
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
}

.testimonialSlide .testimonialUser {
  text-align: center;
  margin-top: 40px;
}

.testimonialSlide .testimonialUser img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 100%;
  border: 4px solid rgba(255, 255, 255, 0.08);
  margin: 0 auto 16px;
}

.testimonialSlide .testimonialUser h4 {
  color: var(--text-white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}

.testimonialSlide .testimonialUser h6 {
  color: var(--text-white);
  opacity: 70%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.testimonialSlider .custom-prev-arrow,
.testimonialSlider .custom-next-arrow {
  box-shadow: none;
  outline: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 4;
  bottom: 50px;
}

.testimonialSlider .custom-prev-arrow {
  left: 0px;
}

.testimonialSlider .custom-next-arrow {
  right: 0px;
}

.faqSection .accordion {
  width: 736px;
  margin: 0px auto 56px;
}

.faqSection .accordion-item {
  color: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-radius: 0px;
}

.faqSection .accordion-button {
  background-color: transparent !important;
  border: none;
  color: var(--text-dark) !important;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  padding: 4px 50px 4px 0px;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faqSection .accordion-button span {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid rgba(37, 57, 89, 0.16);
  border-radius: 100%;
  color: var(--text-dark);
  position: absolute;
  top: 4px;
  right: 0;
}

.faqSection .accordion-button::after {
  display: none;
}

.faqSection .accordion-button.collapsed::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 11.5px;
  width: 2px;
  height: 14px;
  background-color: var(--text-dark);
}

.faqSection .accordion-body {
  padding: 8px 60px 0px 0px !important;
}

.faqSection .accordion-body p {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.getInTouch {
  border-radius: 16px;
  background-color: var(--bg-white);
  padding: 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 20px;
  width: 736px;
  margin: 26px auto 0px;
}

.getInTouch h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}

.getInTouch h4 {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.srvcFooterBar .footerApplication {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 60px;
}

.srvcFooterBar .footerApplicationText {
  flex: 1;
}

.srvcFooterBar .footerApplicationText h2 {
  color: var(--text-white);
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.srvcFooterBar .footerApplicationText h4 {
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.srvcFooterBar .footerApplicationText p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.supportPage {
  padding: 230px 0px 120px;
}

.supportPage .supportWrapper {
  max-width: 720px;
  margin: 0 auto;
}

.supportBox {
  margin-bottom: 30px;
}

.supportBox:nth-last-child(1) {
  margin-bottom: 0px;
}

.supportBox h3 {
  color: var(--text-dark);
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 20px;
}

.supportBox p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.supportBox ul {
  display: flex;
  flex-direction: column;
  gap: 6px 0px;
}

.supportBox ul li {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/* About Page */
.aboutSection .aboutImg img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 16px;
}

.aboutSection .aboutContent {
  padding-left: 30px;
}

.sectionSubHeading {
  margin-bottom: 40px;
}

.aboutSection .aboutContent .numberBoxes {
  margin-bottom: 56px;
}

.numberBoxes {
  display: flex;
  flex-wrap: wrap;
  gap: 46px 0px;
  margin-left: -46px;
  margin-right: -46px;
}

.numberBoxCol {
  flex: 0 0 auto;
  width: 50%;
  padding-left: 46px;
  padding-right: 46px;
}

.numberBox h2 {
  color: var(--secondary);
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  margin-bottom: 8px;
}

.numberBox h5 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.doesSection .row .col-12:nth-child(1),
.doesSection .row .col-12:nth-child(2) {
  margin-bottom: 56px;
}

.doesSection .textBox {
  padding-right: 180px;
}

.aboutSection.beliefSection .aboutImg img {
  height: 640px;
}

.aboutSection .aboutContent .textBox {
  margin-bottom: 48px;
}

.aboutSection .aboutContent .textBox:nth-last-child(1) {
  margin-bottom: 0;
}

.propositionsSection {
  position: relative;
}

.propositionsSection::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/about/banner1.png) lightgray 50% / cover no-repeat;
}

.propositionsSection .propositionsIn {
  position: relative;
  z-index: 4;
}

.propositionsSection .sectionHeading h4 {
  color: var(--tertiary);
}

.propositionsSection .sectionHeading h2 {
  color: var(--text-white);
}

.propositionsSection .sectionHeading p {
  color: rgba(255, 255, 255, 0.72);
}

.propositionsBox {
  background-color: var(--bg-light);
  border-radius: 16px;
  padding: 32px 32px;
}

.propositionsBox h3 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}

.propositionsBox p {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 16px;
}

.propositionsBox ul {
  list-style: disc;
  margin-left: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px 0px;
}

.propositionsBox ul li {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.teamBox {
  padding-left: 5px;
  padding-right: 5px;
}

.teamBox .teamBoxImg {
  margin-bottom: 20px;
}

.teamBox .teamBoxImg img {
  width: 100%;
  height: 296px;
  object-fit: cover;
  border-radius: 16px;
}

.teamBox .teamBoxContent h5 {
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.teamBox .teamBoxContent h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}

.teamBox .teamBoxContent p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.teamBox .teamBoxContent ul {
  display: flex;
  align-items: center;
  gap: 0px 16px;
}

.teamBox .teamBoxContent ul li a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  opacity: 60%;
  font-size: 24px;
  transition: var(--transition);
}

.teamBox .teamBoxContent ul li a:hover {
  opacity: 1;
  color: var(--primary);
}

.teamSection .teamBoxFooter {
  text-align: center;
  margin-top: 60px;
}

.teamSection .teamBoxFooter p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.openingSection .sectionHeading {
  padding-right: 60px;
}

.openingSection .openingBoxWrapper .openingBoxHead {
  margin-bottom: 16px;
}

.openingSection .openingBoxWrapper .openingBoxHead h3 {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

.openingSection .openingBoxWrapper .openingBoxes {
  display: flex;
  flex-direction: column;
  gap: 16px 0px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox {
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 24px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox h5 {
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 4px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox ul {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 0px 24px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox ul li {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0px 8px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox ul li span {
  font-size: 24px;
  color: #D9D9D9;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox .cmnBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 8px;
}

.openingSection .openingBoxWrapper .openingBoxes .openingBox .cmnBtn span {
  font-size: 18px;
}

/* Recruiters Page */

.recruitersBanner::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/recruiters/banner.png) lightgray 50% / cover no-repeat;
}

.recruitersBannerIn {
  position: relative;
  z-index: 4;
}

.recruitersBanner .pageHeading h1,
.recruitersBanner .pageHeading p {
  color: var(--text-white);
}

.recruitersBanner .pageHeading {
  margin-bottom: 70px;
}

.recruitersBanner .recruitersForm {
  width: 560px;
  margin: 0 auto;
}

.recruitersBanner .recruitersForm .formGroup {
  margin-bottom: 24px;
}

.recruitersBanner .recruitersForm .formGroup .form-label {
  color: var(--text-white);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.recruitersBanner .recruitersForm .formGroup .form-label span {
  color: var(--secondary);
}

.recruitersBanner .recruitersForm .formGroup .input-group {
  gap: 24px;
  padding-top: 4px;
}

.recruitersBanner .recruitersForm .formGroup .input-group label {
  color: var(--text-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0px 8px;
  cursor: pointer;
}

.recruitersBanner .recruitersForm .formGroup input[type=text],
.recruitersBanner .recruitersForm .formGroup input[type=email],
.recruitersBanner .recruitersForm .formGroup input[type=number] {
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 13px 16px;
  color: var(--text-dark);
  min-height: 48px;
}

.recruitersBanner .recruitersForm .formGroup input[type=text]::placeholder,
.recruitersBanner .recruitersForm .formGroup input[type=email]::placeholder,
.recruitersBanner .recruitersForm .formGroup input[type=number]::placeholder {
  color: var(--text-medium);
}


.recruitersBanner .recruitersForm .cmnBtn {
  width: 100%;
  margin-top: 16px;
}

.partnerSection .partnerBoxes .partnerBox {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
}

.partnerSection .partnerBoxes .partnerBox img {
  width: 100%;
  height: 60px;
  object-fit: scale-down;
}

.doesSection.recruiterPage .row .col-12:nth-child(1),
.doesSection.recruiterPage .row .col-12:nth-child(2) {
  margin-bottom: 0px;
}

.doesSection.recruiterPage .textBox {
  padding-right: 40px;
}

/* Apply Page */

.applySection {
  padding: 200px 0px 120px;
}

.applyWrapper {
  height: min-content;
  overflow: visible;
  position: sticky;
  top: 0px;
}

.applyWrapper .applyFormCol {
  padding-right: 28px;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.applyWrapper .applyImgCol {
  padding-left: 28px;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.applyWrapper .applyImg img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 16px;
}

.applyWrapper .sectionHeading {
  margin-bottom: 56px;
}

.applyWrapper .sectionHeading p {
  padding-right: 200px;
}

.thmForm .formGroup {
  margin-bottom: 24px;
}

.thmForm .formGroup .form-label {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}

.thmForm .formGroup .form-label span {
  color: var(--secondary);
}

.thmForm .formGroup input[type=text],
.thmForm .formGroup input[type=email],
.thmForm .formGroup input[type=tel],
.thmForm .formGroup input[type=number] {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  outline: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 13px 16px;
  color: var(--text-dark);
  min-height: 48px;
}

.thmForm .formGroup input[type=text]::placeholder,
.thmForm .formGroup input[type=email]::placeholder,
.thmForm .formGroup input[type=number]::placeholder {
  color: var(--text-medium);
}

.thmForm .formGroup select {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  outline: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 6px 16px;
  color: var(--text-dark);
  min-height: 48px;
}

.thmForm .formGroup .bootstrap-select {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  outline: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 0px 0px;
  color: var(--text-dark);
  min-height: 48px;
  float: inherit;
  width: 100% !important;
}

.thmForm .formGroup .bootstrap-select button {
  color: var(--text-medium);
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  height: 100%;
  padding: 6px 16px;
  min-height: 45px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

.thmForm .formGroup .bootstrap-select button:hover,
.thmForm .formGroup .bootstrap-select button:active,
.thmForm .formGroup .bootstrap-select button:focus {
  color: var(--text-dark);
  box-shadow: none;
  outline: none !important;
  border: none;
}

.thmForm .formGroup .phone-input-container {
  display: flex;
  align-items: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
}

.thmForm .formGroup .phone-input-container select {
  box-shadow: none;
  border: none;
  background-color: transparent;
  border-radius: 0px;
  padding: 10px 16px;
  min-height: 46px;
  flex: 1;
  min-width: 74px;
}

.thmForm .formGroup .phone-input-container input {
  box-shadow: none;
  border: none;
  background-color: transparent;
  border-radius: 0px;
  padding: 10px 16px 10px 0px;
  min-height: 46px;
}

.thmForm .formGroup textarea {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  outline: none;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  padding: 13px 16px;
  color: var(--text-dark);
  min-height: 128px;
  resize: none;
}

.thmForm .formGroup textarea::placeholder {
  color: var(--text-medium);
}

.thmForm .formGroup .input-group.typeCardRadio {
  gap: 12px;
  display: flex;
}

.thmForm .formGroup .input-group.typeCardRadio label {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px !important;
  color: var(--text-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0px 16px;
  cursor: pointer;
  flex: 1;
  padding: 16px 16px;
  margin: 0px 0px 0px;
}

.thmForm .formGroup .input-group.typeCardRadio .typeCardText span {
  font-size: 32px;
}

.thmForm .formGroup .input-group.typeCardRadio .typeCardText h4 {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 4px;
}

.thmForm .formGroup .input-group.typeCardRadio .typeCardText p {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.thmForm .docUpload label.upload-box {
  background-color: var(--bg-white);
  border: 1px dashed var(--border-light);
  border-radius: 16px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 0px 20px;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.thmForm .docUpload label.upload-box.uploaded .icon-before {
  display: none;
}

.thmForm .docUpload label.upload-box.uploaded .icon-after {
  display: inline;
}

.thmForm .docUpload .upload-info {
  display: flex;
  align-items: center;
  gap: 0px 20px;
}

.thmForm .docUpload .upload-info .upload-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thmForm .docUpload .upload-info .upload-icon img {
  width: 40px;
  height: 40px;
  object-fit: scale-down;
}

.thmForm .docUpload .upload-info .icon-after {
  display: none;
}

.thmForm .docUpload .upload-info .file-details {
  display: flex;
  flex-direction: column;
}

.thmForm .docUpload .upload-info .file-details h4 {
  color: var(--text-dark);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 2px;
}

.thmForm .docUpload .upload-info .file-details p {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.thmForm .docUpload .change-btn {
  box-shadow: none;
  outline: none;
  border: 1px solid rgba(37, 57, 89, 0.16);
  background-color: var(--bg-white);
  border-radius: 40px;
  color: var(--secondary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  display: none;
}

.thmForm .docUpload .uploaded .change-btn {
  display: inline-block;
}

.thmForm .docUpload .change-btn i {
  margin-right: 5px;
  font-size: 18px;
  vertical-align: middle;
}

.thmForm .docUpload input[type="file"] {
  display: none;
}

.thmForm .checkboxList {
  display: flex;
  flex-direction: column;
  gap: 16px 0px;
}

.thmForm .checkboxList label {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0px 12px;
  margin: 0;
}

/* .thmForm .checkboxList label input {
  border-color: var(--bg-light);
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  min-width: 16px;
  min-height: 16px;
} */

.thmForm .cmnBtn {
  margin-top: 40px;
}

/* Job Listing Page */

.jobListingBanner {
  padding: 140px 0px 60px;
  position: relative;
}

.jobListingBanner::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.64) 100%), url(../images/joblisting/banner.png) lightgray 50% / cover no-repeat;
}

.jobListingBannerIn {
  position: relative;
  z-index: 4;
}

.jobListingSection {
  position: relative;
}

.jobListingSection .jobListWrapper {
  height: min-content;
  overflow: visible;
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 10;
  margin: 0;
}

.jobListingSection .jobListWrapper .jobListOverlay {
  content: "";
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.64);
  transition: var(--transition);
  visibility: hidden;
  opacity: 0;
}

.jobListingSection .jobFilterCol {
  flex: 0 0 auto;
  width: 25%;
  padding-right: 48px;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
  z-index: 20;
}

.jobListingSection .jobBoxesCol {
  flex: 0 0 auto;
  width: 75%;
  padding-left: 48px;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
  z-index: 15;
}

.jobListingSection .jobFilterCol .jobFilterHead {
  background-color: var(--bg-white);
  display: none;
}

.jobListingSection .jobFilterCol .jobFilterHead .cmnBtn {
  display: flex;
  align-items: center;
  gap: 0px 16px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 20px 20px;
  border: none;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0px;
  width: 100%;
}

.jobListingSection .jobFilterCol .jobFilterHead .cmnBtn span {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.jobListingSection .jobFilterCol .jobFilterFooter {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0px 10px;
  padding: 20px 20px;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-white);
}

.jobListingSection .jobFilterCol .jobFilterFooter .cmnBtn {
  padding: 10px 20px;
  min-width: auto;
  width: 100%;
}

.jobListingSection .jobFilterCol .jobFilterColIn {
  height: 100%;
}

.jobListingSection .jobFilterCol .jobFilterBox {
  margin-bottom: 48px;
}

.jobListingSection .jobFilterCol .jobFilterBox:nth-last-child(1) {
  margin-bottom: 0;
}

.jobListingSection .jobFilterCol .jobFilterBox h2 {
  color: var(--primary);
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.jobListingSection .jobFilterCol .jobFilterBox ul.checkboxList {
  display: flex;
  flex-direction: column;
  gap: 12px 0px;
}

.jobListingSection .jobFilterCol .jobFilterBox ul.checkboxList label {
  display: flex;
  align-items: center;
  gap: 0px 12px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.jobListingSection .jobFilterCol .jobFilterBox ul.checkboxList label span {
  color: var(--text-medium);
  opacity: 0.56;
  font-weight: 400;
}

.rangeSlider {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 50px;
  background: rgba(37, 57, 89, 0.20);
  margin: 24px 0px 46px 0px;
}

.rangeSlider .rangeTrack {
  position: absolute;
  height: 8px;
  border-radius: 50px;
  background: var(--primary);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.rangeSlider input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  background: none;
}

.rangeSlider input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--primary);
  cursor: pointer;
  position: relative;
  z-index: 2;
  top: -7.5px;
}

.rangeSlider .rangeLabel {
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  background: var(--bg-light);
  padding: 2px 2px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 3;
  color: var(--primary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  min-width: 60px;
  text-align: center;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch {
  display: flex;
  align-items: center;
  gap: 0px 12px;
  margin-bottom: 24px;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch .cmnBtn {
  margin: 0;
}

.jobListingSection .jobBoxesCol .filterToggleGroup .cmnBtn {
  display: none;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch .formGroup:nth-child(1) {
  flex: 1;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch .formGroup:nth-child(2) {
  min-width: 200px;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch .input-group {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  border-radius: 8px;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch .input-group span {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.jobListingSection .jobBoxesCol .jobBoxesSearch .input-group input {
  box-shadow: none;
  outline: none;
  background-color: transparent;
  border: none;
  padding-left: 0px;
}

.jobListingSection .jobBoxesCol .jobBoxes {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  gap: 16px 0px;
}

.jobListingSection .jobBoxesCol .jobBoxes .jobBoxCol {
  flex: 0 0 auto;
  width: 50%;
  padding-left: 8px;
  padding-right: 8px;
}

.jobBox {
  background-color: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(37, 57, 89, 0.16);
  padding: 24px 24px;
}

.jobBox h5 {
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.jobBox h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 4px;
}

.jobBox p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jobBox ul.jobBoxInfo {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px 0px;
}

.jobBox ul.jobBoxInfo li {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0px 8px;
}

.jobBox ul.jobBoxInfo li span {
  font-size: 24px;
  color: #D9D9D9;
}

.jobBox ul.jobBoxInfo li span img {
  width: 24px;
  height: 24px;
  object-fit: scale-down;
}

.jobBox ul.jobBoxTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  margin-bottom: 24px;
}

.jobBox ul.jobBoxTags li {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 50px;
  background: rgba(37, 57, 89, 0.20);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 4px;
}

.jobBox ul.jobBoxTags li.secondary {
  background-color: var(--secondary);
  color: var(--text-white);
  text-transform: uppercase;
  padding: 4px 12px 4px 12px;
}

.jobBox ul.jobBoxTags li.primary {
  background-color: var(--primary);
  color: var(--text-white);
  text-transform: uppercase;
  padding: 4px 12px 4px 12px;
}

.jobBox ul.jobBoxTags li span {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobBox ul.jobBoxTags li span img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.jobBox .cmnBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 8px;
}

.jobBox .cmnBtn span {
  font-size: 18px;
}

.jobListingSection .jobBoxesCol .morejobBoxes {
  margin-top: 50px;
}

.morejobBoxes {
  text-align: center;
  padding: 10px 0px;
}

.morejobBoxes a {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

/* Job Details Page */

.breadcrumbSection {
  margin-top: 80px;
  padding: 32px 0px 40px;
}

.breadcrumbSection .breadcrumb {
  margin: 0px;
  gap: 0px 8px;
}

.breadcrumbSection .breadcrumb .breadcrumb-item+.breadcrumb-item {
  padding: 0px 0px;
}

.breadcrumbSection .breadcrumb .breadcrumb-item {
  color: var(--text-medium);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

.breadcrumbSection .breadcrumb .breadcrumb-item.active {
  color: var(--primary);
}

.jobDetailsSection .jobDetailsWrapper {
  height: min-content;
  overflow: visible;
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 10;
  margin: 0;
}

.jobDetailsSection .jobDetailsLeft {
  flex: 0 0 auto;
  width: 70%;
  padding-right: 28px;
  padding-left: 0;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
  z-index: 15;
}

.jobDetailsSection .jobDetailsRight {
  flex: 0 0 auto;
  width: 30%;
  padding-left: 28px;
  padding-right: 0;
  height: min-content;
  overflow: hidden;
  position: sticky;
  top: 120px;
  z-index: 20;
}

.jobDetailsSection .applyRoleMobBox {
  display: none;
  width: 100%;
  background-color: var(--bg-white);
  padding: 16px 16px;
}

.jobDetailsBox {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px 0px;
}

.jobDetailsBox:nth-last-child(1) {
  margin-bottom: 0;
}

.jobDetailsBox h1 {
  color: var(--text-dark);
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: -8px;
}

.jobDetailsBox h4 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.jobDetailsBox h4 strong {
  font-weight: 600;
}

.jobDetailsBox h2 {
  color: var(--text-dark);
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

.jobDetailsBox p {
  color: var(--text-medium);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.jobDetailsBox ul {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px 0px;
}

.jobDetailsBox ul.listDisc {
  list-style: disc;
}

.jobDetailsBox ul.listDecimal {
  list-style: decimal;
  margin-left: 20px;
}

.jobDetailsBox ul li {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.jobDetailsBox ul li strong {
  font-weight: 500;
}

.jobDetailsSection .jobDetailsRight .applyRoleBox {
  background-color: var(--bg-light);
  padding: 40px 40px;
  border-radius: 16px;
}

.jobDetailsSection .jobDetailsRight .applyRoleBox h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.jobDetailsSection .jobDetailsRight .applyRoleBox p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}

.jobDetailsSection .jobDetailsRight .applyRoleBox a {
  width: 100%;
}

/* Job Application Page */
.jobApplicationSection {}

.jobApplicationSection .jobApplicationWrapper {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 0;
}

.stepForm {}

.stepForm .stepHeadTabs {
  display: flex;
  align-items: center;
  gap: 0px 24px;
  margin-bottom: 56px;
}

.stepForm .stepHeadTabs .stepTab {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 10px;
  min-height: 42px;
  flex: 1;
  cursor: default;
  opacity: 0.56;
  position: relative;
  z-index: 5;
}

.stepForm .stepHeadTabs .stepTab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: -25px;
  transform: translate(0%, -50%);
  width: 24px;
  height: 1px;
  background-color: var(--border-light);
}

.stepForm .stepHeadTabs .stepTab:nth-last-child(1)::before {
  display: none;
}

.stepForm .stepHeadTabs .stepTab.completed {
  background-color: var(--success);
  color: var(--text-white);
  border-color: var(--success);
  opacity: 1;
}

.stepForm .stepHeadTabs .stepTab.completed::before {
  background-color: var(--success);
}

.stepForm .stepHeadTabs .stepTab.active {
  opacity: 1;
}

.stepForm .stepTabFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0px 8px;
}

.stepForm .stepTabContent .sectionHeading {
  margin-bottom: 56px;
}

.stepForm .stepTabContent .thmForm {
  padding-bottom: 16px;
}

.stepForm .stepTabContent .stepCheckBox {
  margin-bottom: 44px;
}

.stepForm .stepTabContent .stepCheckBox .stepCheckHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 24px;
  margin-bottom: 16px;
}

.stepForm .stepTabContent .stepCheckBox .stepCheckHead h2 {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.stepForm .stepTabContent .stepCheckBox .stepCheckHead .editBtn {
  box-shadow: none;
  outline: none;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--secondary);
  font-size: 18px;
  padding: 0px 0px;
  width: 44px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.stepForm .stepTabContent .stepCheckBox .stepCheckContent {
  display: flex;
  flex-direction: column;
  gap: 12px 0px;
}

.stepForm .stepTabContent .stepCheckBox .stepCheckContent li {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  gap: 0px 24px;
}

.stepForm .stepTabContent .stepCheckBox .stepCheckContent li small {
  color: var(--text-medium);
  font-weight: 400;
  min-width: 30%;
  font-size: 100%;
}

.stepForm .stepTabContent .checkboxList {
  margin-bottom: 40px;
}

.jobApplicationWrapper .successAlert {
  padding: 20px 20px;
  border-radius: 16px;
  border: 1px solid var(--success);
  background: rgba(15, 146, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0px 48px;
  margin-bottom: 56px;
}

.jobApplicationWrapper .successAlert img {
  width: 48px;
  height: 48px;
  object-fit: scale-down;
}

.jobApplicationWrapper .successAlert h4 {
  color: var(--success);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.jobApplicationWrapper .successProcess {
  margin-bottom: 56px;
}

.jobApplicationWrapper .successProcess ul {
  display: flex;
  flex-direction: column;
  gap: 24px 0px;
  margin-bottom: 40px;
}

.jobApplicationWrapper .successProcess ul li {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0px 24px;
}

.jobApplicationWrapper .successProcess ul li span.iconCircle {
  margin: 0;
}

.jobApplicationWrapper #successMessage .sectionHeading {
  margin-bottom: 56px;
}

.jobApplicationWrapper .successContact {
  margin-bottom: 56px;
}

.jobApplicationWrapper .successContact .sectionHeading {
  margin-bottom: 40px !important;
}

.jobApplicationWrapper .successContact .sectionHeading h2 {
  font-weight: 500;
}

.jobApplicationWrapper .successContact ul {
  display: flex;
  flex-direction: column;
  gap: 18px 0px;
}

.jobApplicationWrapper .successContact ul li {
  color: var(--text-dark);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0px 24px;
}

.jobApplicationWrapper .successContact ul li span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.9;
}

.videoModal .modal-body {
  padding: 0px 0px;
}

.videoModal .btn-close {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  color: #fff;
  opacity: 1;
  background: transparent;
}

.videoModal video {
  width: 100%;
  border: none;
  margin-bottom: -8px;
  height: auto;
}


.slideBox {
  opacity: 0;
  --animate-duration: 1s;
}

.slideBox.visible {
  opacity: 1;
}