@font-face {
  font-family: "TT-Hoves-Pro-Light";
  src: url("../../../fonts/TTHovesPro/TT-Hoves-Pro-Light.ttf") format("truetype");
}
@font-face {
  font-family: "TT-Hoves-Pro-Regular";
  src: url("../../../fonts/TTHovesPro/TT-Hoves-Pro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "TT-Hoves-Pro-DemiBold";
  src: url("../../../fonts/TTHovesPro/TT-Hoves-Pro-DemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "TT-Hoves-Pro-Bold";
  src: url("../../../fonts/TTHovesPro/TT-Hoves-Pro-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Butler_Regular";
  src: url("../../../fonts/Butler/Butler_Regular.otf") format("opentype");
}
@font-face {
  font-family: "Butler_Medium";
  src: url("../../../fonts/Butler/Butler_Medium.otf") format("opentype");
}
@font-face {
  font-family: "Butler_Bold";
  src: url("../../../fonts/Butler/Butler_Bold.otf") format("opentype");
}
@font-face {
  font-family: "Butler_ExtraBold";
  src: url("../../../fonts/Butler/Butler_ExtraBold.otf") format("opentype");
}
:root {
  --primary-regular-font: "TT-Hoves-Pro-Regular", sans-serif;
  --primary-light-font: "TT-Hoves-Pro-Light", sans-serif;
  --primary-bold-font: "TT-Hoves-Pro-Bold", sans-serif;
  --primary-demiBold-font: "TT-Hoves-Pro-DemiBold", sans-serif;
  --secondary-regular-font: "Butler_Regular", sans-serif;
  --secondary-medium-font: "Butler_Medium", sans-serif;
  --secondary-bold-font: "Butler_Bold", sans-serif;
  --secondary-extraBold-font: "Butler_ExtraBold", sans-serif;
}

:root {
  --primary-color: #0040BA;
  --primary-color-withOpacity2: rgba(0, 64, 186, 0.2);
  --secondary-color: #00122B;
  --secondary-color-WithOpacity: rgba(0, 18, 43, 0.7);
  --secondary-color-WithOpacity2: rgba(0, 18, 43, 0.6);
  --secondary-color-WithOpacity5: rgba(0, 18, 43, 0.5);
  --ternary-color: #A4C3FF;
  --ternary-color-withOpacity1: rgba(164, 195, 255, 0.1);
  --ternary-color-withOpacity2: rgba(164, 195, 255, 0.2);
  --ternary-color-withOpacity: rgba(197, 179, 244, 0.7);
  --ternary-color-2: #EEF4FF;
  --quaternary-color: #04C49E;
  --quaternary-color-withOpacity: rgba(4, 196, 158, 0.8);
  --quaternary-color-withOpacity40: rgba(4, 196, 158, 0.4);
  --quaternary-color-withOpacity60: rgba(4, 196, 158, 0.6);
  --quaternary-color-2: #B0ECDF;
  --quinary-color: #00A6DC;
  --senary-color: #94B4FE;
  --septenary-color: #A3E9D7;
  --menu-link-color: #ffffff;
  --subMenu-link-color: #ffffff;
  --help-text: rgba(255, 255, 255, 0.5);
  --white-with-opacity: rgba(255, 255, 255, 0.70);
  --white: #ffffff;
  --whiteWithOpacity: rgba(255, 255, 255, 0.50);
  --black: #000000;
  --black-with-opacity1: rgba(0, 0, 0, 0.8);
  --grey: #808895;
  --grey2: #D9D9D9;
  --brand-red: #F00000;
  --whatsapp: #4dc95c;
  --primary-gradient: linear-gradient(72deg, #00122B 35.42%, #0040BA 100%);
  --secondary-gradient: linear-gradient(72deg, #00122B 0%, #04C49E 100%);
  --primary-shadow: rgba(4, 89, 203, 0.25);
  --primary-shadow2: rgba(4, 89, 203, 0.15);
  --transition--default: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* begin:: General CSS*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

html > * {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  box-sizing: border-box;
  font-family: var(--primary-regular-font);
}

body {
  overflow: hidden scroll;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 1500px) and (max-width: 1599px), only screen and (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 960px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 640px !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}

h1 {
  font-size: 52.5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 26px;
  }
}

h3 {
  font-size: 40px;
}

p,
.badgeItem,
.list-point,
.testimonialSectionSwiper .testimonial-box .detailed-response,
.getCapitalFastContainerApplyPage .subTitleList {
  color: var(--secondary-color);
  font-family: var(--primary-regular-font);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 18.75px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  p,
  .badgeItem,
  .list-point,
  .testimonialSectionSwiper .testimonial-box .detailed-response,
  .getCapitalFastContainerApplyPage .subTitleList {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}
@media only screen and (max-width: 767px) {
  p,
  .badgeItem,
  .list-point,
  .testimonialSectionSwiper .testimonial-box .detailed-response,
  .getCapitalFastContainerApplyPage .subTitleList {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}

figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.special-text {
  color: var(--ternary-color);
  font-family: var(--secondary-medium-font);
}

.important-note {
  font-family: var(--primary-regular-font);
  color: var(--white);
  opacity: 0.5;
  font-size: 15px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 1500px) and (max-width: 1599px), only screen and (min-width: 1600px) {
  .important-note {
    width: 468.75px;
    font-size: 12px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .important-note {
    width: 312.5px;
  }
}

.important-note2 {
  font-family: var(--primary-regular-font);
  color: var(--white);
  opacity: 0.5;
  font-size: 19px;
  line-height: 100%;
  /* 18.75px */
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  margin-bottom: 0;
  text-align: center;
}
.important-note2 .outlined-text {
  font-family: var(--primary-bold-font);
  font-weight: 700;
  color: var(--white);
  /* Set the inside color of the text */
  /* Width and color of the outline */
  /* For browsers that support the standard property */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .important-note,
  .important-note2 {
    font-size: 10px !important;
    line-height: normal !important;
    text-align: left !important;
  }
}
@media only screen and (max-width: 767px) {
  .important-note,
  .important-note2 {
    font-size: 10px !important;
    line-height: normal !important;
    text-align: center !important;
  }
}

.contentArea {
  padding-top: 8.789375rem;
  padding-bottom: 7.039375rem;
  height: 100%;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contentArea {
    padding-top: 4.539375rem;
    padding-bottom: 3.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .contentArea {
    padding-top: 4.5rem;
    padding-bottom: 3.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .common-area-padding {
    padding-left: 21px;
    padding-right: 21px;
  }
}

.sectionHeadWrapper {
  margin-bottom: 78.25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .sectionHeadWrapper {
    margin-bottom: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .sectionHeadWrapper {
    margin-bottom: 62px;
  }
}

.section-head {
  color: var(--secondary-color);
  text-align: center;
  font-family: var(--primary-bold-font);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 45px */
  margin-bottom: 0px;
}
.section-head.primary-head {
  color: var(--primary-color);
}
.section-head.white-title {
  color: var(--white);
}
.section-head .specialText1 {
  color: var(--quaternary-color-2);
}
.section-head .specialText2 {
  color: var(--ternary-color);
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-head {
    font-size: 24px;
    line-height: 30px;
  }
}

.specialFont1 {
  font-family: var(--secondary-regular-font);
}

.section-subText {
  color: var(--secondary-color);
  text-align: center;
  font-family: var(--primary-regular-font);
  font-size: 22.5px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 22.5px */
  margin-top: 22.5px;
  margin-bottom: 0;
}
.section-subText.white-subText {
  color: var(--white);
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-subText {
    font-size: 14px;
    margin-top: 12px;
  }
}

.feature-link {
  color: var(--primary-color);
  font-family: var(--primary-regular-font);
  font-size: 18.75px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 22.5px */
  text-decoration-line: underline;
  text-transform: capitalize;
}
.feature-link:hover {
  color: var(--primary-color);
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-link {
    font-size: 14px;
  }
}

.wrapperListInfo {
  margin-bottom: 27px;
}
@media only screen and (max-width: 767px) {
  .wrapperListInfo {
    margin-bottom: 20px;
  }
}
.wrapperListInfo:last-of-type {
  margin-bottom: 0 !important;
}
.wrapperListInfo .caption p {
  color: var(--ternary-color);
  margin-bottom: 18.25px;
  font-family: var(--primary-bold-font);
  font-weight: 700;
}
.wrapperListInfo .title h2 {
  color: var(--secondary-color);
  margin-bottom: 16.5px;
  font-family: var(--primary-regular-font);
  color: var(--secondary-color);
}
@media only screen and (max-width: 767px) {
  .wrapperListInfo .title h2 {
    font-size: 22px;
    line-height: 28px;
  }
}
.wrapperListInfo .description p {
  color: var(--secondary-color-WithOpacity);
  margin-bottom: 0;
  font-family: var(--primary-regular-font);
}

.getStartedCTA {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 90px;
  font-family: var(--primary-demiBold-font);
  font-size: 22.5px;
  font-style: normal;
  line-height: normal;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getStartedCTA {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .getStartedCTA {
    padding: 8px 16px;
    gap: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .getStartedCTA {
    font-size: 16px;
  }
}
.getStartedCTA.getCapitalBtn {
  background-color: var(--secondary-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getStartedCTA.getCapitalBtn {
    font-size: 10px !important;
    line-height: normal !important;
  }
}
.getStartedCTA figure {
  margin-bottom: 0;
  height: 30px;
  width: 30px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getStartedCTA figure {
    height: 16px;
    width: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .getStartedCTA figure {
    height: auto;
    width: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.getStartedCTA figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.getStartedCTA:hover {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: inset 12em 0 0 0 rgba(0, 18, 43, 0.25);
}

.primaryBtn {
  background: var(--primary-color);
  color: var(--white);
  padding: 16px 30px;
  border-radius: 48px;
  border: none;
  font-family: var(--primary-demiBold-font);
  font-size: 22.5px;
  font-style: normal;
  line-height: normal;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  width: 250px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .primaryBtn {
    font-size: 16px;
    width: 170px;
    padding: 16px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryBtn {
    gap: 8px;
    width: 100%;
    font-size: 16px;
  }
}
.primaryBtn:hover {
  transform: translateY(-8px);
}
.primaryBtn.applyBtn {
  background-color: var(--quaternary-color);
  color: var(--secondary-color);
  border-radius: 60px;
  height: 50px;
}
.primaryBtn.applyBtn:hover {
  background-color: var(--quaternary-color-withOpacity);
}
.primaryBtn.getStartedBtnHome {
  background: var(--primary-color);
  margin-left: 0;
  margin-right: auto;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .primaryBtn.getStartedBtnHome {
    width: 100%;
  }
}
.primaryBtn.getStartedBtnHome:hover {
  color: var(--white);
  transform: translateY(-8px);
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  box-shadow: 0px 4px 4px 0px var(--primary-shadow2);
}
.primaryBtn.getStartedBtn {
  background-color: var(--secondary-color);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .primaryBtn.getStartedBtn {
    width: 100%;
  }
}
.primaryBtn.getStartedBtn:hover {
  color: var(--white);
  transform: translateY(-8px);
}
.primaryBtn.getStartedBtn.greenBtn {
  background-color: var(--quaternary-color);
  color: var(--secondary-color);
}
.primaryBtn.getCapitalFastCta {
  background: var(--secondary-color);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .primaryBtn.getCapitalFastCta {
    width: 100%;
  }
}
.primaryBtn.getCapitalFastCta:hover {
  color: var(--white);
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  box-shadow: 0px 4px 4px 0px var(--primary-shadow2);
  transform: translateY(0);
}
.primaryBtn.blueBgFormBtn {
  background: var(--quaternary-color);
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .primaryBtn.blueBgFormBtn {
    width: 100%;
  }
}
.primaryBtn.blueBgFormBtn:hover {
  transform: translateY(0);
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--quaternary-color) 100%);
  color: var(--white);
  box-shadow: 0px 4px 4px 0px var(--quaternary-color);
}
.primaryBtn.noHoverTransition {
  transform: translateY(0) !important;
}
.primaryBtn figure {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  height: 30px;
  width: 30px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .primaryBtn figure {
    height: 16px;
    width: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .primaryBtn figure {
    height: 16px;
    width: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .primaryBtn figure {
    height: auto;
    width: 16px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.primaryBtn figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

hr {
  color: var(--ternary-color);
  width: 100%;
  margin: 3.375rem auto 56px;
}
@media only screen and (max-width: 767px) {
  hr {
    margin: 3.75rem auto;
  }
}

.extraPadTop60 {
  padding-top: 1.875rem !important;
}
@media (min-width: 1900px) {
  .extraPadTop60 {
    padding-top: 2.5rem !important;
  }
}

@media only screen and (max-width: 767px) {
  .mob-display-none {
    display: none;
  }
}

.overlappedSection .contentArea {
  padding-bottom: 180px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 1500px) and (max-width: 1599px) {
  .overlappedSection .contentArea {
    padding-top: 80px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .overlappedSection .contentArea {
    padding-top: 80px !important;
    padding-bottom: 130px !important;
  }
}
@media only screen and (max-width: 767px) {
  .overlappedSection .contentArea {
    padding-bottom: 110px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mobpad0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .mobbpad0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* end:: General CSS*/
/* begin:: Herobanner Section CSS */
.careerHerobannerSection {
  background-image: url("../../../../assets/img/careersPage/heroBg1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-origin: padding-box;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0rem 0rem;
  border-radius: 0rem;
  min-height: 623px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.careerHerobannerSection .bannerOverlayCurve {
  position: absolute;
  z-index: 0;
  top: 54%;
  transform: translate(0%, -50%);
  width: 169px;
  height: 535px;
}
.careerHerobannerSection .bannerOverlayCurve.curve1 {
  left: 0;
}
.careerHerobannerSection .bannerOverlayCurve.curve2 {
  right: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .careerHerobannerSection .bannerOverlayCurve {
    width: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection .bannerOverlayCurve {
    width: 50px;
    height: 161px;
    top: 64%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 1500px) and (max-width: 1599px), only screen and (min-width: 1600px) {
  .careerHerobannerSection {
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .careerHerobannerSection {
    min-height: 40vh;
  }
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection {
    margin-top: 0px;
    min-height: 278px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .careerHerobannerSection .contentArea {
    padding-top: 5.3125rem;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection .contentArea {
    padding-top: 51px;
    padding-bottom: 51px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 72px auto 0;
  }
}
.careerHerobannerSection .contentArea .bannerContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .careerHerobannerSection .contentArea .bannerContent {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection .contentArea .bannerContent {
    gap: 24px;
  }
}
.careerHerobannerSection .contentArea .bannerContent .titleWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 27px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .careerHerobannerSection .contentArea .bannerContent .titleWrapper {
    gap: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection .contentArea .bannerContent .titleWrapper {
    gap: 0;
  }
}
.careerHerobannerSection .contentArea .bannerContent .titleWrapper .bannerMainText {
  color: var(--white);
  font-family: var(--primary-regular-font);
  font-size: 48px;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
}
@media only screen and (min-width: 1600px) {
  .careerHerobannerSection .contentArea .bannerContent .titleWrapper .bannerMainText {
    font-size: 64px;
    line-height: 81px;
  }
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .careerHerobannerSection .contentArea .bannerContent .titleWrapper .bannerMainText {
    font-size: 26px;
    line-height: 26px;
  }
}
.careerHerobannerSection .contentArea .bannerContent .titleWrapper .bannerMainText.specialText {
  color: var(--quaternary-color);
  font-family: var(--secondary-regular-font);
}
.careerHerobannerSection .contentArea .bannerContent .shortInfo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1499px), only screen and (min-width: 1500px) and (max-width: 1599px), only screen and (min-width: 1600px) {
  .careerHerobannerSection .contentArea .bannerContent .shortInfo {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection .contentArea .bannerContent .shortInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.careerHerobannerSection .contentArea .bannerContent .shortInfo .item {
  position: relative;
}
.careerHerobannerSection .contentArea .bannerContent .shortInfo .item p {
  margin: 0;
  color: var(--white);
  padding: 0 20px;
  font-family: var(--primary-regular-font);
  font-size: 18px !important;
  line-height: 1.5 !important;
  text-transform: none;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .careerHerobannerSection .contentArea .bannerContent .shortInfo .item p {
    font-size: 10px !important;
    line-height: 10px;
    padding: 0px;
  }
}

/* end:: Herobanner Section CSS */
/* begin:: FAQ Section CSS */
.faqSection {
  background-position: top 255px left -10% !important;
  background-size: 25% !important;
  background-repeat: no-repeat !important;
  background-origin: content-box !important;
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .faqSection {
    background-position: top 200px left -30% !important;
    background-size: 50% !important;
  }
}
.faqSection .contentArea {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .faqSection .contentArea {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.faqSection .contentArea .actionContainer {
  margin-top: 20px;
}
.faqSection .contentArea .actionContainer .positionsWrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .faqSection .contentArea .actionContainer .positionsWrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.faqSection .contentArea .actionContainer .positionsWrapper .positionItem {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.faqSection .contentArea .actionContainer .positionsWrapper .positionItem img {
  width: 13.13px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.faqSection .contentArea .actionContainer .positionsWrapper .positionItem .title {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 18.75px;
  font-family: var(--primary-regular-font);
  color: var(--secondary-color);
}
.faqSection .contentArea .actionContainer.head {
  margin-top: 1.24px;
  transition: all 0.5s ease-in-out;
}
.faqSection .contentArea .actionContainer.head .positionsWrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.faqSection .contentArea .actionContainer.head .positionsWrapper .positionItem {
  font-size: 11.62px;
  line-height: 14.53px;
  gap: 3.87px;
}
@media screen and (min-width: 992px) {
  .faqSection .accordion {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .faqSection .accordion {
    width: 100%;
    margin: 0 auto;
  }
}
.faqSection .accordion .accordion-item {
  margin-bottom: 0.6875rem;
  box-shadow: none;
  border-radius: 0.625rem;
  border: none;
  opacity: 1;
  background-color: transparent;
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button {
  position: relative;
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(90deg);
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .head {
  display: none;
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button::after {
  display: flex;
  background-image: url("../../../../assets/img/careersPage/arrowRight.svg");
  background-position: center;
  background-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button .groupedItem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.faqSection .accordion .accordion-item .accordion-body {
  padding-top: 0.625rem;
  padding-bottom: 1.5875rem;
}
.faqSection .accordion .accordion-item .accordion-header .accordion-button,
.faqSection .accordion .accordion-item .accordion-body {
  padding-left: 1.171875rem;
  padding-right: 1.171875rem;
}
.faqSection.careersFaq {
  background: var(--secondary-color);
}
.faqSection.careersFaq .filtersWrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40.22px;
}
@media only screen and (max-width: 767px) {
  .faqSection.careersFaq .filtersWrapper {
    margin-bottom: 20px;
    gap: 10.36px;
  }
}
.faqSection.careersFaq .filtersWrapper .filterItem {
  background-color: var(--ternary-color);
  padding: 15px 30px;
  border-radius: 90px;
  font-size: 22.5px;
  line-height: 28.35px;
  font-family: var(--primary-demiBold-font);
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 17.5px;
  cursor: pointer;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .faqSection.careersFaq .filtersWrapper .filterItem {
    padding: 7.77px 15.55px;
    font-size: 10px;
    line-height: 12.6px;
    gap: 8.86px;
  }
}
.faqSection.careersFaq .filtersWrapper .filterItem img {
  margin-bottom: 0;
  width: 25px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .faqSection.careersFaq .filtersWrapper .filterItem img {
    width: 13px;
  }
}
.faqSection.careersFaq .sectionHeadWrapper .section-head,
.faqSection.careersFaq .accordion-header .accordion-button,
.faqSection.careersFaq .accordion-body .section-para {
  color: var(--secondary-color);
}
.faqSection.careersFaq .accordion-item {
  border: none !important;
  background-color: var(--white) !important;
}
.faqSection.careersFaq .accordion-item .accordion-header {
  padding-top: 18.75px !important;
  padding-bottom: 18.75px !important;
  padding-left: 18.75px !important;
  padding-right: 18.75px !important;
}
.faqSection.careersFaq .accordion-item .accordion-header .accordion-button {
  color: var(--secondary-color) !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.faqSection .jobListingWrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media only screen and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .faqSection .jobListingWrapper {
    display: none;
  }
}
.faqSection .jobListingWrapper .jobListingColumn,
.faqSection .jobListingWrapper .jobDescriptionList {
  width: 50%;
}
.faqSection .jobListingWrapper .jobListingColumn {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.faqSection .jobListingWrapper .jobListItem {
  cursor: pointer;
  width: 100%;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.faqSection .jobListingWrapper .jobListItem .arrowImg {
  height: 22px;
  width: 11px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease-in-out;
}
.faqSection .jobListingWrapper .jobListItem:hover, .faqSection .jobListingWrapper .jobListItem.active {
  background-color: var(--quaternary-color-2) !important;
}
.faqSection .jobListingWrapper .jobListItem.active .arrowImg {
  transform: rotate(180deg);
}
.faqSection .jobListingWrapper .jobDescriptionList .jobListDescription {
  background-color: var(--white);
  padding: 37.51px;
  border-radius: 10px;
  display: none;
}
.faqSection .jobListingWrapper .jobDescriptionList .jobListDescription .title {
  font-size: 26px;
  line-height: 28.6px;
  font-family: var(--primary-demiBold-font);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 37.5px;
}
.faqSection .jobListingWrapper .jobDescriptionList .jobListDescription.active {
  display: block;
}
.faqSection .jobListingWrapper .jobListItem,
.faqSection .accordion .accordion-item {
  border: none !important;
  background-color: var(--white) !important;
}
.faqSection .jobListingWrapper .jobListItem,
.faqSection .accordion.careersFaq .accordion-item .accordion-header {
  padding-top: 18.75px !important;
  padding-bottom: 18.75px !important;
  padding-left: 18.75px !important;
  padding-right: 18.75px !important;
}
.faqSection .jobListingWrapper .jobListItem span,
.faqSection .accordion .accordion-item .accordion-header .accordion-button {
  font-family: var(--primary-demiBold-font);
  font-weight: 600;
  font-size: 1.40625rem;
  font-style: normal;
  font-variant: normal;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  background-color: transparent;
  box-shadow: none;
  margin-top: 0rem;
  margin-bottom: 0.3125rem;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .faqSection .jobListingWrapper .jobListItem span,
  .faqSection .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 1rem;
  }
}
.faqSection .jobListingWrapper .jobListDescription .section-para,
.faqSection .accordion .accordion-item .accordion-body .section-para {
  margin-bottom: 0;
  font-family: var(--primary-regular-font);
  font-size: 14px;
  line-height: 16.5px;
}
.faqSection .jobListingWrapper .jobListDescription .section-para:not(:last-of-type),
.faqSection .accordion .accordion-item .accordion-body .section-para:not(:last-of-type) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .faqSection .jobListingWrapper .jobListDescription .section-para,
  .faqSection .accordion .accordion-item .accordion-body .section-para {
    font-size: 0.875rem;
  }
}

/* end:: FAQ Section CSS */
/* begin:: Last Section CSS */
.getCapitalFastContainer {
  border-radius: 15px;
  border: 1.875px solid var(--primary-color);
  background: var(--quaternary-color);
  box-shadow: 0px 7.5px 75px 0px var(--primary-shadow);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.getCapitalFastContainer .imgContainer,
.getCapitalFastContainer .contentContainer {
  flex-basis: 50%;
}
.getCapitalFastContainer .imgContainer {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .imgContainer {
    width: 100%;
  }
}
.getCapitalFastContainer .imgContainer .overlayLogo,
.getCapitalFastContainer .imgContainer .overlayCurve {
  position: absolute;
}
.getCapitalFastContainer .imgContainer .overlayLogo {
  top: 20px;
  left: 20px;
  transform: translate(0, 0);
  width: 22% !important;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .imgContainer .overlayLogo {
    bottom: 20px;
    top: unset;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 38%;
  }
}
.getCapitalFastContainer .imgContainer .overlayCurve {
  bottom: 50%;
  right: 0;
  transform: translate(0, 50%);
  width: 40%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .imgContainer .overlayCurve {
    width: 30%;
  }
}
.getCapitalFastContainer .imgContainer .subscribeImg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-fit: cover;
     object-fit: cover;
}
.getCapitalFastContainer .contentContainer {
  padding: 51px 35.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.getCapitalFastContainer .contentContainer:nth-of-type(1) {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getCapitalFastContainer .contentContainer {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer {
    padding: 50.5px 29px 51px;
  }
}
.getCapitalFastContainer .contentContainer .title {
  color: var(--secondary-color);
  font-family: var(--primary-regular-font);
  font-size: 33.75px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 33.75px */
  margin-bottom: 9.5px;
}
.getCapitalFastContainer .contentContainer .title span {
  font-family: var(--primary-bold-font);
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getCapitalFastContainer .contentContainer .title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .title {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.getCapitalFastContainer .contentContainer .subTitle {
  color: var(--secondary-color);
  font-family: var(--primary-regular-font);
  font-size: 18.75px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  /* 23.438px */
  margin-bottom: 32.25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getCapitalFastContainer .contentContainer .subTitle {
    font-size: 10px;
    line-height: 16px;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .subTitle {
    font-size: 12px;
    line-height: 15px;
    margin-bottom: 33.5px;
    text-align: center;
  }
}
.getCapitalFastContainer .contentContainer .form {
  margin-top: 35.62px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getCapitalFastContainer .contentContainer .form {
    margin-top: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .form .form-group {
    text-align: center;
  }
}
.getCapitalFastContainer .contentContainer .form .form-group .formInput {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  border-radius: 0;
  outline: none;
  caret-color: var(--whiteWithOpacity);
  font-family: var(--primary-regular-font);
  font-style: normal;
  font-size: 15px;
  line-height: 15px;
  text-align: left;
  padding: 17.5px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getCapitalFastContainer .contentContainer .form .form-group .formInput {
    font-size: 8px;
    line-height: 8px;
    padding: 7px 0;
  }
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .form .form-group .formInput {
    font-size: 10px;
    line-height: 12.5px;
    text-align: center;
    padding: 12px 0;
  }
}
.getCapitalFastContainer .contentContainer .form .form-group .formInput:focus, .getCapitalFastContainer .contentContainer .form .form-group .formInput:focus-visible, .getCapitalFastContainer .contentContainer .form .form-group .formInput:focus-within {
  outline: none;
  box-shadow: none;
}
.getCapitalFastContainer .contentContainer .form .form-group .formInput::-moz-placeholder {
  color: var(--whiteWithOpacity);
}
.getCapitalFastContainer .contentContainer .form .form-group .formInput::placeholder {
  color: var(--whiteWithOpacity);
}
.getCapitalFastContainer .contentContainer .form .form-group .helpText {
  font-family: var(--primary-regular-font);
  font-style: normal;
  font-size: 15px;
  line-height: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .getCapitalFastContainer .contentContainer .form .form-group .helpText {
    font-size: 8px;
    line-height: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .form .form-group .helpText {
    font-size: 10px;
    line-height: 12.5px;
    text-align: center;
  }
}
.getCapitalFastContainer .contentContainer .ctaButtonContainer {
  margin: 10px auto 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .ctaButtonContainer {
    width: 72%;
  }
}
.getCapitalFastContainer .contentContainer .getCapitalBtn {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .getCapitalFastContainer .contentContainer .getCapitalBtn {
    width: 75% !important;
    margin-top: 26px;
  }
}

/* end:: Last Section CSS */
/*=============================================
   - Scroll top         
=============================================*/
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: -60px;
  z-index: 999;
  box-shadow: 0 30px 50px var(--primary-shadow);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  line-height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary-color);
  background-size: 200% auto;
  background-position: center center;
  color: var(--white);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
@media only screen and (max-width: 479px) {
  .scroll-top {
    width: 60px;
    height: 60px;
    line-height: 50px;
    font-size: 20px;
  }
}
.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 88px;
}
.scroll-top .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white);
  transition: var(--transition--default);
}
.scroll-top .icon svg {
  fill: var(--white);
  width: 21.88px;
  height: 25px;
  margin-bottom: 5px;
}
.scroll-top .arrow-top {
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}
.scroll-top .arrow-bottom {
  transform: translate(-50%, 80px);
}
.scroll-top:hover {
  background-position: right center;
  text-decoration: none;
}
.scroll-top:hover .arrow-top {
  transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=careersPage.css.map */