@import url("fonts.css");




.form-actions {
  position: relative;
  display: flex;
  margin-top: 2.25rem;
}

.form-actions .form-btn-cancel {
  order: -1;
}

.form-actions::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #999;
  opacity: 0.3;
}

.form-actions > * {
  flex: 1;
  margin-top: 0;
}

.form-fieldset {
  padding: 0px;
  border: 0;
}

.form-fieldset + .form-fieldset {
  margin-top: 15px;
}

.form-legend {
  padding: 1em 0 0;
  margin: 0 0 -0.5em;
  font-size: 1.5rem;
  text-align: center;
}

.form-legend + p {
  margin-top: 1rem;
}

.form-element {
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
  text-align: left;
}

.form-element-hint {
  font-weight: 400;
  font-size: 0.6875rem;
  color: #a6a6a6;
  display: block;
}

.form-element-bar {
  position: relative;
  height: 1px;
  background: #ddd;
  display: block;
}
.form-element-link a{
    text-decoration: none;
    background-color: #0071bc;
    color: #fff;
    display: inline-block;
    font-size: 1.2rem;
    padding: 1.7rem 4rem;
    border-radius: 4rem;
    font-family: 'BentonSans-medium';
    letter-spacing: 0.2rem;
    float: left;
}

/*.form-element-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #999;
  height: 1px;
  display: block;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  will-change: transform;
}*/

.form-element-label {
  position: absolute;
  top: 0rem;
  left: -10px;
  line-height: 1.5rem;
  pointer-events: none;
  padding-left: 0.125rem;
  z-index: 1;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: color 0.28s linear, opacity 0.28s linear, -webkit-transform 0.28s ease;
  transition: transform 0.28s ease, color 0.28s linear, opacity 0.28s linear;
  transition: transform 0.28s ease, color 0.28s linear, opacity 0.28s linear, -webkit-transform 0.28s ease;
  /* will-change: transform, color, opacity; */
  font-family: NunitoSans-SemiBold !important;
    color: rgb(21 42 77 / 60%) !important;
    font-size: 17px !important;

}

.form-element-field {
  outline: none;
  display: block;
  background: none;
  padding: 0.125rem 0.125rem 0.0625rem;
  font-size: 1.5rem;
  border: 0 solid transparent;
  line-height: 1.5;
  width: 100%;
  color: #000;
  box-shadow: none;
  opacity: 0.001;
  transition: opacity 0.28s ease;
  will-change: opacity;
  font-family: 'BentonSans-regular';
  margin: 0 !important;
}

.form-element-field:-ms-input-placeholder {
  color: #a6a6a6;
  transform: scale(0.9);
  transform-origin: left top;
}

.form-element-field::-webkit-input-placeholder {
  color: #a6a6a6;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.form-element-field::-ms-input-placeholder {
  color: #a6a6a6;
  transform: scale(0.9);
  transform-origin: left top;
}

.form-element-field::placeholder {
  color: #a6a6a6;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.form-element-field:focus ~ .form-element-bar::after {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}

/*.form-element-field:focus ~ .form-element-label {
  color: #337ab7;
}*/

.form-element-field.-hasvalue,
.form-element-field:focus {
  opacity: 1;
}

.form-element-field.-hasvalue ~ .form-element-label,
.form-element-field:focus ~ .form-element-label {
  -webkit-transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
          transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
}

.form-has-error .form-element-label.form-element-label,
.form-has-error .form-element-hint {
  color: #d9534f;
}

.form-has-error .form-element-bar,
.form-has-error .form-element-bar::after {
  background: #d9534f;
}

.form-is-success .form-element-label.form-element-label,
.form-is-success .form-element-hint {
  color: #259337;
}

.form-is-success .form-element-bar::after {
  background: #259337;
}

input.form-element-field:not(:placeholder-shown) ~ .form-element-bar{
  background: green;
}

input.form-element-field:not(:placeholder-shown),
textarea.form-element-field:not(:placeholder-shown) {
  opacity: 1;
}

input.form-element-field:not(:placeholder-shown) ~ .form-element-label,
textarea.form-element-field:not(:placeholder-shown) ~ .form-element-label {
  -webkit-transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
          transform: translateY(-100%) translateY(-0.5em) translateY(-2px) scale(0.9);
  cursor: pointer;
  pointer-events: auto;
}

textarea.form-element-field {
  height: auto;
  min-height: 3rem;
}

select.form-element-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select-placeholder {
  color: #a6a6a6;
  display: none;
}

.form-select .form-element-bar::before {
  content: "";
  position: absolute;
  height: 0.5em;
  width: 0.5em;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  display: block;
  right: 0.5em;
  bottom: 0;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  -webkit-transform: translateY(-100%) rotateX(0deg) rotate(45deg);
          transform: translateY(-100%) rotateX(0deg) rotate(45deg);
  will-change: transform;
}

.form-select select:focus ~ .form-element-bar::before {
  -webkit-transform: translateY(-50%) rotateX(180deg) rotate(45deg);
          transform: translateY(-50%) rotateX(180deg) rotate(45deg);
}

.form-element-field[type="number"] {
  -moz-appearance: textfield;
}

.form-element-field[type="number"]::-webkit-outer-spin-button,
.form-element-field[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}




.app_aboutUS{
  background: #091f44;
}

.app_aboutUS ._newHeading0225{
  color: #DCEFFE;
}
.app_aboutUS ._emTu0231{
  color: #fff;
}
.app_aboutUS .app_why_us_img{
  width: 100%;
  text-align: center;
}

._cfyC201{
  font-family: 'NunitoSans-Regular';
    color: #091F44;
    margin-top: 30px;
    display: inline-block;
    font-size: 16px;
}
  #main-menu .EmployerDot{
    background: #FDCD67;
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    border-radius: 92px;
    top: 33%;
    right: 3%;
  }
  ._Emln001{
    position: relative;
  }
  ._nLi0011{
    background-color: #16DA9F;
    display: inline-block;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 1px 1px 15px rgb(22 218 159 / 38%);
  }
  ._nLi0011 img{
    margin-left: 17px;
    background: #a4a4a480;
    border-radius: 67px;
    width: 24px;
  }
  ._loUl0011{
    background: #EFF6FC !important;
    width: 93% !important;
    top: 40px !important;
    border-radius: 25px !important;
    padding: 35px 0px 10px !important;
    z-index: -1 !important;
    
  }
  ._loUl0011 li a{
    color: #000;
    font-size: 12px;
    padding: 15px 10px !important;
  }
  ._loUl0011 li a img{
    width: 28px;
  }
  .new-intro ._niI00223{
    padding-right: 0;
    z-index: -1;
  }
  .new-intro ._niI00223 img{
    width: 75%;
  }
  .new-intro ._ni0022{
    padding-left: 15%;
    padding-top: 5%;
  }
  .new-intro ._ni0022 h1{
    color: #274FA0;
    font-size: 64px;
    font-family: Montserrat-Bold;
    margin-bottom: 7px;
  }
  .new-intro ._ni0022 ._dLet00223{
    color: #274FA0;
    font-family: Montserrat-Regular;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .new-intro ._ni0022 ._ysEH0223{
    color: #091F44;
    font-size: 24px;
    font-family: NunitoSans-Regular;
  }
  ._gSo0223{
    background-color: #16DA9F;
    display: inline-block;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 50px;
    color: #fff;
    font-family: NunitoSans-SemiBold;
    font-size: 24px;
    transition: all 0.2s ease-out 0s;
    
  }
  ._gSo0223:hover{
    color: #fff;
    background-color: #00ca8d;
  }
 ._gSo0223 img{
    margin-left: 17px;
    background: #a4a4a480;
    border-radius: 67px;
    width: 24px;
    transform: rotate(90deg);
  }
  ._intro-link ._orLine0223{
    width: 15px;
    margin: 0 15px;
  }
  ._intro-link ._oLSt0223{
    display: inline-block;
    margin-right: 10px;
  }
  ._intro-link ._oLSt0223 img{
    width: 170px;
  }
  ._happyUsers{
    margin-top: 75px;
  }
  ._happyUsers ._hU0223{
    color: #274FA0;
    font-family: Montserrat-Regular;
    font-size: 24px;
    background: rgb(34 77 123 / 5%);
    display: inline-block;
    padding: 15px 35px;
    border-radius: 23px;
    margin-right: 10px;
  }
  ._happyUsers ._hU0223 span:first-child{
    font-family: Montserrat-Bold;
    font-size: 32px;
  }
  .new-container{
    width: 85%;
  }
  .new-intro ._aLiA0224 span{
    display: inline-block;
    color: #607BB1;
    vertical-align: middle;
    margin: 0 5px;
    font-size: 14px;
    font-family: NunitoSans-Bold;
    line-height: 1.8;
    display: table-cell;
  }
  .new-intro ._aLiA0224 span img{
    width: 56px;
    padding-right: 12px;
  }
  .new-intro ._aIU0224{
    display: inline-block;
    width: 100%;
    /* border-top: 1px solid rgb(96 123 177 / 22%); */
    padding-top: 45px;
  }
  .new-home-about ._wiF0224{
    color: #274FA0;
    font-family: Montserrat-Black;
    margin-top: 65px;
  }
  .new-home-about ._aIU0224 ._opL0224{
    color: #294680;
    font-family: NunitoSans-SemiBold;
    margin-bottom: 60px;
  }
  .new-home-about{
    background: url(../image/first_cut.png);
    margin-top: -150px;
    padding-top: 290px;
    background-attachment: scroll;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .new-home-about ._aIU0224 ._irSF0224 p{
  color: #091F44;
  font-family: NunitoSans-SemiBold;
  padding: 0 30px;
  }
  .new-home-about ._aIU0224 ._irSF0224 img{
    width: 75px;
  }
  .new-intro ._boxintrHO202{
    background-color: #fff;
    box-shadow: 1px 1px 20px #cacaca80;
    padding: 25px 10px;
    border-radius: 15px;
    /* border: 1px solid rgb(65 129 180 / 40%); */
    display: table-cell;
    width: inherit;
  }
  ._newHeading0225{
    color: #274FA0;
    font-family: Montserrat-Black;
  }
  ._newSub0225{
    color: #294680;
    font-family: NunitoSans-Bold;
    font-size: 17px;
    margin-bottom: 15px;

  }
  .new-home-about ._wFrow0225{
    margin-top: 40px;
    border-bottom: 1px solid rgb(96 123 177 / 22%);
    padding: 50px 0;
  }
  .new-home-about ._wFmg0225{
    width: 50%;
  }
  .new-home-about ._wiF0225{
    color:#091F44;
    font-family: NunitoSans-Regular;
    font-size: 19px;

  }
  .new-works ._kycM0225{
    margin-top: 30px;
  }
  .new-works ._kycM0225 ._kycIm0225 img{
width: 40%;
  }
  .new-works ._note0225{
    font-family: NunitoSans-Regular;
    background: #EFF6FC;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 5px;
  }
  .new-works ._hiWInn0226{
    background-color: #EFF6FC;
    color: #091F44;
    padding: 15px;
    font-family: NunitoSans-Bold;
    background-position: 10px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 60px;
    margin-bottom: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-out 0.1s;
  }
  .new-works .work01{
    background-image: url(../image/work01.png);
  }
 
  .new-works .work02{
    background-image: url(../image/work02.png);
  }
  .new-works .work03{
    background-image: url(../image/work03.png);
  }
  .new-works .work04{
    background-image: url(../image/work04.png);
  }
  .new-works .work01:hover,
  .new-works .active.work01{
    background-color: rgb(92 189 25 / 40%);
    background-image: url(../image/work011.png);
  }
  .new-works .work02:hover,
  .new-works .active.work02{
    background-color: rgb(92 189 25 / 40%);
    background-image: url(../image/work022.png);
  }
  .new-works .work03:hover,
  .new-works .active.work03{
    background-color: rgb(92 189 25 / 40%);
    background-image: url(../image/work033.png);
  }
  .new-works .work04:hover,
  .new-works .active.work04{
    background-color: rgb(92 189 25 / 40%);
    background-image: url(../image/work044.png);
  }
  .new-works ._hiWInn0226 p{
    margin: 0;
    padding-left: 70px;
    
  }

  .new-works ._hiWInn0226 p span{
    background-color: #DCEDFB;
    padding: 10px 15px;
    display: inline-block;
    margin-left: 15px;
    border-radius: 70px;
  }
  .new-works .active p span,
  .new-works ._hiWInn0226:hover p span{
    background-color: #A4D383;
  }
  .new-works  ._rtgS0225 p span:nth-child(1){
    color: #091F44;
    font-family: NunitoSans-Regular;
  }
  .new-works  ._rtgS0225 {
    margin-top: 10px;
  }
  .new-works  ._rtgS0225 p span:nth-child(2){
    width: 75%;
    height: 1px;
    background: #ddd;
    display: inline-block;
    margin-left: 2%;
    vertical-align: middle;
  }

  .new-aboutus ._abUsT0226{
    color: #091F44;
    font-family: NunitoSans-Regular;
    padding: 0 20%;
  }
  .border-container{
    padding-bottom: 60px;
    border-bottom: 1px solid rgb(96 123 177 / 22%);
  }
  .new-aboutus ._voL0226{
    line-height: 46px;
    padding: 0 20px;
    font-size: 15px;
  }

  .new-instantCash ._icHm0227{
    margin-right: 40%;
  }
  .new-instantCash ._insCaFo0227{
    background: #EFF6FC;
    box-shadow: none;
    padding: 20px;
    border-radius: 8px;
    margin: 0 50px;
  }
  .new-instantCash ._insCaFo0227 ._seAm0227{
    color:#224D7B;
    font-family: NunitoSans-SemiBold;
    font-size: 16px;
  }
  .new-instantCash ._moAm0227 input,
  .new-instantCash ._moAm0227 .input-group-addon{
    color: #224D7B;
    font-family: Montserrat-SemiBold;
    opacity: 1;
    font-size: 25px;
  }
  .new-instantCash ._payMOu0227{
    background: #E0ECF5;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
  }
  input[type=text]:disabled {
    background: #dddddd00;
    cursor: text;
  pointer-events: all !important;
  }
  ._bosF0227{
    color: #2E3D55;
    font-size: 12px;
    margin: 0;
    font-family: NunitoSans-Regular;
  }
._esTo0227{
  color: #16DA9F;
    font-size: 13px;
    margin: 0;
    font-family: Montserrat-SemiBold;
}
._estOut0227{
  padding: 20px 0 0;
}
  .new-instantCash ._payMOu0227 ._moAm0227 input,
  .new-instantCash ._payMOu0227 ._moAm0227 .input-group-addon{
    color: #16DA9F;
  }

  .new-instantCash ._payMOu0227 .input-group-addon:first-child {
    padding-left: 0;
}
.new-instantCash ._payMOu0227 .form-control.input-lg {
  height: 35px;
}
.new-instantCash ._tpSl0227 a{
  color: #224D7B;
    border: 1px solid #224D7B;
    padding: 7px 20px;
    display: inline-block;
    border-radius: 50px;
    margin-right: 10px;
    font-family: NunitoSans-Regular;
    margin-bottom: 10px;
}
.new-instantCash ._tpSl0227 a:hover,
.new-instantCash ._tpSl0227 a.active{
  color: #fff;
    border: 1px solid #224D7B;
    background-color: #224D7B;
}
.new-instantCash ._tpSl0227{
  margin-top: 30px;
}

.new-testimonials .owl-carousel .owl-item ._testPer0228{
width: 13%;
display: inline-block;
border-radius: 50%;
}
.new-testimonials ._testPara0228{
  color: #091F44;
  font-family: NunitoSans-SemiBold;
  font-size: 20px;
  vertical-align: middle;
  width:69%;
  display: inline-block;
  margin: 0;
  margin-left: 10%;
  position: relative;
}
.new-testimonials ._testPara0228::before{
  content: '';
  background: url(../image/test-Label.png);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: 60px;
  position: absolute;
  left: -4%;
    top: -15%;
  width: 60px;
  height: 60px;
}
.new-testimonials{
  background: url(../image/second_cut.png);
  background-attachment: scroll;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 40px;
    padding-top: 170px;
  
}

.new-testimonials .owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  margin: 5px 7px;
  background: rgb(214 214 214 / 0%);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: 1px solid #224D7B;
}
.new-testimonials .owl-theme .owl-dots .owl-dot.active span, 
.new-testimonials .owl-theme .owl-dots .owl-dot:hover span {
  background: #224D7B;
}
.new-OurBlogs ._blogImg0229 img{
  width: 100%;
  border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.new-OurBlogs ._blogCon0229{
  padding: 30px 21px 40px;
}
.new-OurBlogs ._blogOu0229{
  background: #EFF6FC;
    border-radius: 10px;
    margin-bottom: 15px;
}
.new-OurBlogs ._blogCon0229 ._blSpan0229{
  margin: 0 10px 10px 0;
  font-family: NunitoSans-Regular;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 10px;
  display: inline-block;
}
.new-OurBlogs ._blogCon0229 ._mas0229{
  font-family: NunitoSans-Bold;
}
.new-OurBlogs ._blogCon0229 ._rmBlog0229{
  background-color: #DCEFFE;
  color: #091F44;
  font-size: 17px;
  line-height: 40px;
    padding: 0 20px;
    font-family: NunitoSans-Bold;
}
.new-OurBlogs ._blogCon0229 ._rmBlog0229:hover{
  background-color: #cde4f7;
}
.new-OurBlogs ._blogCon0229 ._rmBlog0229 img{
  background: #091F44;
  transform: none;
  width: 22px;
  margin-left: 7px;
}
a{
  transition: all 0.1s ease-out 0.1s;
}
.new-footer{
  background: url(../image/footer.png);
  background-attachment: scroll;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 170px;
    border-bottom: 1px solid #ddd;
}
.new-footer ._fooMe0220{
  margin-top: 40px;
}
.new-footer ._fooMe0220 p{
  color: #091F44;
  font-family: Montserrat-SemiBold;
}
.new-footer ._fooMe0220 ul{
  list-style-type: none;
    padding-left: 0;
    color: #091F44;
    font-family: NunitoSans-Regular;
}
.new-footer ._fooMe0220 ul li{
  margin-bottom: 5px;
}

.new-copyright p{
  color: #091F44;
  font-family: NunitoSans-Regular;
}
.new-copyright ._smC0220{
  text-align: end;
}
.new-copyright ._smC0220 a{
  display: inline-block;
  margin-left: 15px;
}
._irSF0224{
  margin-bottom: 10px;
}
.employer-tie-up {
  padding-top: 90px;
}
._emTu0231{
  color: #091F44;
  font-family: NunitoSans-Regular;
}
._emTu0231 {
  font-size: 19px;
}
.employer-tie-up ._emTUImg0231{
  width: 70%;
}
.employer-tie-up ._downBtn0231{
  background-color: #fff;
    display: inline-block;
    line-height: 50px;
    padding: 0 28px;
    border-radius: 50px;
    color: #fff;
    font-family: NunitoSans-SemiBold;
    font-size: 24px;
    border: 2px solid #16DA9F;
    color: #16DA9F;
    vertical-align: top;
}
.employer-tie-up ._downBtn0231:hover{
  border: 2px solid #11d49a;
    color: #11d49a;
}
.employer-tie-up ._gSo0223{
  border: 2px solid #16DA9F;
  vertical-align: top;
}
.employer-tie-up ._downBtn0231 img{
  margin-left: 17px;
  border-radius: 67px;
  width: 24px;
}

._brBlog0241 a{
  color: rgb(9 31 68 / 60%);
    font-size: 17px;
    padding: 0 8px;
    font-family: NunitoSans-Regular;
}
._brBlog0241 a.active,
._brBlog0241 span{
  color: #091F44;
  font-size: 17px;
  font-family: NunitoSans-Regular;
}
._brBlog0241{
  border: 1px solid #ddd;
  border-right: 0;
  border-left: 0;
  padding: 30px 0;
}
._blogSin0241{
  background: #EFF6FC;
  margin-bottom: 30px;
  padding: 0;
}
._blogImg0241{
  padding: 0;
  display: flex;
}

.new-OurBlogs ._blogImg0241 ._blogImg0229  img{
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.new-OurBlogs ._blogSin0241 ._blogCon0229 ._mas0229 {
  font-family: NunitoSans-Bold;
  font-size: 25px;
  color: #091F44;
}
.new-OurBlogs ._blogSin0241 ._blogCon0229 ._rmBlog0229 {
  margin-top: 80px;
}

.new-OurBlogs ._blogSin0241 hr{
  
  margin-top: 30px;
  margin-bottom: 30px;
  border: 0;
  border-top: 1px solid rgb(9 31 68 / 40%);
}
.new-OurBlogs ._blogSin0241 ._blogOu0229 {
  background: #EFF6FC;
  border-radius: 10px;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
}
.new-OurBlogs ._blogSin0241 ._blogImg0229{
  display: flex;
  width: 100%;
}
.about_us_page ._abImg0251{
  width: 45%;
}
.about_us_page ._outEaIn0253{
  width: 50%;
  float: left;
  font-family: NunitoSans-Regular;
}
.about_us_page ._ouTe0252{
  overflow: auto;
  background: #EFF6FC;
    padding: 30px;
    border-radius: 9px;
    margin: 10px 0;

}
.about_us_page ._outEaIn0253 img{
    width: 60%;
    background: #D3E3F0;
    border-radius: 141px;
}
.about_us_page ._aboutHea0254{
  color: #091F44;
  font-size: 20px;
}
.about_us_page ._aboutPos0255{
  color:rgb(9 31 68 / 40%);
}
.about_us_page ._outEaIn0253 p{
  margin-bottom: 8px;
  color: #091F44;
  line-height: 1.8;
}
.about_us_page .our_history ._abImg0251 {
  width: 30%;
}
.new-reach-us ._reUsImg0261{
  width: 60%;
  margin: 20px 0;
}
.new-reach-us  ._addOpt0262 a,
.new-reach-us ._addOpt0262{
  color: #091F44;
  font-family: NunitoSans-Regular;
  font-size: 18px;
}

*:focus {
  outline: none;
}

.new-reach-us ._conForm0263{
  background: #EFF6FC;
  padding: 40px;
  border-radius: 10px;
}
.new-OurBlogs .blog-text-1{
  color: #091F44;
  font-family: var(--nr);
  font-size: 19px;
}
._formDesign ._btnSu0264{
  width: 100%;
  background: #16DA9F;
  border: 0;
  color: #fff;
  padding: 12px;
  font-size: 19px;
  border-radius: 63px;
  box-shadow: 1px 4px 15px #51d0aa;
  font-family: NunitoSans-Bold;
  height: auto;
}
._formDesign ._btnSu0264 span{
  margin: 0;
  color: #fff;
}

._formDesign input,
._formDesign span,
._formDesign label,
._formDesign textarea,
._formDesign select{
  font-family: NunitoSans-SemiBold;
  display: block;
  margin: 10px;
  padding: 0 5px;
  border: none;
  font-size: 17px;
  color: #152A4D;
}

._formDesign textarea:focus,
._formDesign input:focus,
._formDesign select:focus {
  outline: 0;
}
/* Question */

._formDesign input.question,
._formDesign textarea.question,
._formDesign select.question{
  font-size: 17px;
  font-weight: 300;
  border-radius: 2px;
  margin: 0;
  border: none;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden; /* Hack to make "rows" attribute apply in Firefox. */
}
/* Underline and Placeholder */

._formDesign input.question + label,
._formDesign textarea.question + label,
._formDesign select.question + label {
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 1px solid #ddd;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
  height: 0px;
}

._formDesign input.question:focus + label,
._formDesign textarea.question:focus + label,
._formDesign select.question:focus + label{
  width: 100%;
}

/* input.question:focus,
input.question:valid {
  padding-top: 35px;
} */

/* textarea.question:valid,
textarea.question:focus {
  margin-top: 35px;
} */

._formDesign input.question:focus + label > span,
._formDesign input.question:valid + label > span {
  top: -51px;
  font-size: 14px;
  color: rgb(21 42 77 / 60%);
}
._formDesign select.question:focus + label > span,
._formDesign select.question:valid + label > span {
  top: -51px;
  font-size: 14px;
  color: rgb(21 42 77 / 60%);
}

._formDesign textarea.question:focus + label > span,
._formDesign textarea.question:valid + label > span {
  top: -51px;
  font-size: 14px;
  color: rgb(21 42 77 / 60%);
}

._formDesign input.question:valid + label,
._formDesign textarea.question:valid + label,
._formDesign select.question:valid + label{
  border-color: green;
}
._formDesign input.question:valid,
._formDesign textarea.question:valid,
._formDesign select.question:valid{
  background: rgb(239 246 252);
    transition: padding-top 0.2s ease, margin-top 0.2s ease;
    overflow-x: hidden;
    /* position: relative; */
    z-index: 1;
}
._formDesign input.question:invalid,
._formDesign textarea.question:invalid,
._formDesign select.question:invalid {
  box-shadow: none;
}

._formDesign input.question + label > span,
._formDesign textarea.question + label > span,
._formDesign select.question + label > span{
  font-weight: 300;
  margin: 0;
  position: absolute;
  color: rgb(21 42 77 / 60%);
  font-size: 17px;
  top: -34px;
  left: 0px;
  z-index: 0;
  cursor: text;
  -webkit-transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  font-family: NunitoSans-SemiBold;
}

._formDesign input[type="submit"] {
  -webkit-transition: opacity 0.2s ease, background 0.2s ease;
  transition: opacity 0.2s ease, background 0.2s ease;
  display: block;
  opacity: 0;
  margin: 10px 0 0 0;
  padding: 10px;
  cursor: pointer;
}

._formDesign input[type="submit"]:hover {
  background: #EEE;
}

._formDesign input[type="submit"]:active {
  background: #999;
}

._formDesign input.question:valid ~ input[type="submit"],
._formDesign textarea.question:valid ~ input[type="submit"],
._formDesign select.question:valid ~ input[type="submit"] {
  -webkit-animation: appear 1s forwards;
  animation: appear 1s forwards;
}

._formDesign input.question:invalid ~ input[type="submit"], 
._formDesign textarea.question:invalid ~ input[type="submit"],
._formDesign select.question:invalid ~ input[type="submit"]{
  display: none;
}
._formDesign .form-group {
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
  background: rgb(221 221 221 / 0%);
}
._formDesign .form-group > label {
  position: relative;
  top: 0px; 
}
._formDesign ._formBgCol{
  background-color:#EFF6FC;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 8px;
  display: flow-root;
}
._formDesign ._formBgCol ._forPas0284{
  float: right;
  color: #2F80ED;
  font-family: NunitoSans-regular;
}
/* The container */
._formDesign .fast-radio {
  display: inline-block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
._formDesign .fast-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
._formDesign .fast-radio .checkmark {
  position: absolute;
    top: -6px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
._formDesign .fast-radio:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
._formDesign .fast-radio input:checked ~ .checkmark {
  background-color: #274fa0;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
._formDesign .fast-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
._formDesign .fast-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
._formDesign .fast-radio .checkmark:after {
 	top: 7px;
	left: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: white;
}
._formDesign #search_company{
  background: url(../image/search_smallsearch.png);
  background-attachment: scroll;
  background-position: right;
  background-repeat: no-repeat;
  background-size: 20px;
}
.new-employee-login{
  background: url(../image/loginbg.png);
  background-attachment: scroll;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@-webkit-keyframes appear {
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  100% {
    opacity: 1;
  }
}

._dhAcc0281{
  margin-top: 30px;
  text-align: center;
}
._dhAcc0281 ._dAccLin0282{
  font-family: NunitoSans-Bold;
  color: #091F44;
}
._dhAcc0281 ._dAccLin0282 img{
  width: 14px;
  vertical-align: middle;
  margin-bottom: 3px;
}
._dhAcc0281 ._tanC0282{
  font-family: NunitoSans-regular;
  color: #091F44;
  margin-top: 20px;
}
#companyForgotPassword .modal-title{
  font-family: NunitoSans-regular;
  color: #091F44;
}



._regiOut091 .tab-main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 0;
}

._regiOut091 .tab-main .tabs-button {
  display: inline-block;
  width: 100%;
}

._regiOut091 .tab-main .prev-btn, 
._regiOut091 .tab-main .submit-btn, 
._regiOut091 .tab-main .next-btn {
  display: none;
}

._regiOut091 .tab-main .prev-btn {
  float: left;
}

._regiOut091 .tab-main .next-btn {
  /* float: right; */
  text-align: center;
}

._regiOut091 .tab-main .tab-body {
  position: relative;
}

._regiOut091 .tab-main .tab-body .tab {
  display: none;
}

._regiOut091 .tab-main .tab-footer .submit-btn {
 text-align: center;
}

._regiOut091 .tab-main .button {

    padding: 12px 20px 12px;
    display: inline-block;
    cursor: pointer;
    width: 40%;
}

._regiOut091 .tab-progressbar li {
  display: inline-block;
  vertical-align: middle;
  width: 25%;
  font-size: 16px;
  padding: 0 10px;
}

._regiOut091 .tab-progressbar span {
      padding: 5px;
      display: inline-block;
      vertical-align: top;
      font-size: 21px;
      color: rgb(9 31 68 / 40%);
}
._regiOut091 .tab-progressbar .current span{
  color: #20D79F;
}
._regiOut091 .tab-progressbar {
  font-size: 0;
  padding: 0 1px;
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
  margin-top: 100px;
}

._regiOut091 .tab-progressbar li {
  list-style-type: none;
  color: #fff;
  float: left;
  position: relative;
}

._regiOut091 .tab-progressbar li:before {
  content: '';
  /* counter-increment: step; */
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  font-size: 13px;
  background: #fff;
  border-radius: 3px;
  /* margin: 0 auto 5px auto; */
  text-align: center;
  border-radius: 60px;
  border: 2px solid rgb(9 31 68 / 40%);
}

._regiOut091 .tab-progressbar li.active:before {
  cursor: pointer;
  /* border-color:; */
}

._regiOut091 .tab-progressbar li:after {
  content: '';
  width: 40%;
  height: 2px;
  background: #ccc0;
  position: absolute;
  left: -35%;
  top: 50%;
  z-index: -1;
  margin-top: -3px;
  border-bottom: 3px dotted #ddd;
}

._regiOut091 .tab-progressbar li:first-child:after {
  content: none;
}
._regiOut091 .tab-progressbar li.done:before{
  background: #fff;
  border-color: rgb(9 31 68 / 100%);
  content: url(../image/done.png);
}

._regiOut091 .tab-progressbar li.current:after {
  /* background: #008000; */
  color: #fff;
  border-color: #20D79F;
  
}

._regiOut091 .tab-progressbar li.current:before {
  background: #ffffff;
  border-color: #20D79F;
  border: 4px solid #20D79F;
  content: url(../image/circle.png);
  padding: 4px;
}

._regiOut091 .btn {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  line-height: normal;
  border: 1px solid #008000;
  background-color: transparent;
  padding: 15px 20px 12px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

._regiOut091 .field_container {
  margin: 0 0 20px;
}

._regiOut091 .field_container:last-child {
  margin-bottom: 0;
}

._regiOut091 .form_heading {
  margin-bottom: 20px;
}

._regiOut091 .form_field_wrapper {
  padding: 20px;
  /* border: 1px solid #ccc; */
  margin-bottom: 20px;
}
.new-intro ._newBannUpHO202{
  width: 100%;
}
.about_us_page ._outEaIn0253 p:nth-child(3){
  height: 108px;
}
#moneyAmount[type=number]::-webkit-inner-spin-button,
#moneyAmount[type=number]::-webkit-outer-spin-button,
#installmentsAmount[type=number]::-webkit-inner-spin-button,
#installmentsAmount[type=number]::-webkit-outer-spin-button{  
   
   opacity: 1;

}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}


.pulse-container {
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
}

.pulse-bubble {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fdcd67;
}

.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate;
}

@media only screen and (max-width: 1700px){

.new-home-about {
  margin-top: -110px;
}
}
@media only screen and (max-width: 1550px){
  .new-intro ._ni0022 h1 {
    font-size: 55px;
}
.new-intro ._ni0022 ._dLet00223 {
  font-size: 45px;
}
.new-intro ._ni0022 ._ysEH0223 {
  font-size: 20px;
}
._gSo0223,
.employer-tie-up ._downBtn0231 {
  font-size: 20px;
}
._intro-link ._oLSt0223 img {
  width: 150px;
}
._happyUsers ._hU0223 {
  font-size: 18px;
}
._happyUsers ._hU0223 span:first-child {
  font-size: 24px;
}
.new-home-about {
  margin-top: -110px;
}
._newHeading0225,
.new-home-about ._wiF0224{
  font-size: 35px;
}
.new-intro ._aLiA0224 span {
  font-size: 10px;

}
.new-intro ._aLiA0224 span img {
  width: 52px;
}

.new-intro ._boxintrHO202 {
  padding: 20px 10px;
}
._regiOut091 .tab-progressbar li {
  width: 30%;
}
/* .new-intro ._newBannUpHO202 {
  width: 150%;
} */
}
@media only screen and (max-width: 1400px){
.new-intro ._ni0022 {
  padding-top: 5%;
}
.new-home-about ._aIU0224 ._irSF0224 p {
  padding: 0 9px;
}
.form-group .form-total {
  font-size: 20px;

}
.new-instantCash ._moAm0227 input, .new-instantCash ._moAm0227 .input-group-addon {
  font-size: 20px;
}
.new-instantCash ._icHm0227 {
  margin-right: 25%;
}
.new-testimonials ._testPara0228 {
  font-size: 16px;
}
.new-intro ._niI00223 img {
  width: 86%;
}
}

@media only screen and (max-width: 1300px){
  .new-intro ._ni0022 h1 {
    font-size: 45px;
}
.new-intro ._ni0022 ._dLet00223 {
  font-size: 37px;
}
.new-intro ._ni0022 ._ysEH0223 {
  font-size: 16px;
}
._gSo0223,
.employer-tie-up ._downBtn0231{
  font-size: 17px;
  line-height: 45px;
  padding: 0 20px;
}
._intro-link ._oLSt0223 img {
  width: 120px;
}
._happyUsers ._hU0223 {
  font-size: 17px;
  padding: 10px 24px;
}
._happyUsers ._hU0223 span:first-child {
  font-size: 22px;
}
._newHeading0225, .new-home-about ._wiF0224 {
  font-size: 31px;
}

.about_us_page ._emTu0231 {
    font-size: 15px;
}

.new-home-about {
  margin-top: -90px;
}
._regiOut091 .tab-progressbar li {
  width: 32%;
}
/* .new-intro ._newBannUpHO202 {
  width: 170%;
} */
._aLiA0224{
  padding: 0 5px;
}
}
@media only screen and (max-width: 1150px)
{
._regiOut091 .tab-progressbar li:after {
  width: 30%;
  left: -20%;
}
}
@media only screen and (max-width: 1050px){
  ._gSo0223,
  .employer-tie-up ._downBtn0231{
    font-size: 15px;
    line-height: 45px;
    padding: 0 15px;
}
._intro-link ._oLSt0223 img {
  width: 100px;
}
.new-intro ._ni0022 {
  padding-left: 0%;
}
._happyUsers ._hU0223 {
  font-size: 15px;
  margin-bottom: 13px;
}
.new-container {
  width: 90%;
}
._kycIm0225{
  margin-bottom: 30px;
}
.new-testimonials ._testPara0228 {
  font-size: 14px;
  width: 70%;
  margin-left: 4%;
}
.new-testimonials .owl-carousel .owl-item ._testPer0228 {
  width: 25%;
  display: inline-block;
}
.new-works ._kycM0225 ._kycIm0225 img {
  width: 75%;
}
.new-instantCash ._icHm0227 {
  margin-right: 0%;
}
._newHeading0225, .new-home-about ._wiF0224 {
  font-size: 28px;
}
.about_us_page ._outEaIn0253 p:nth-child(3) {
  height: 170px;
}
.about_us_page ._aboutHea0254{
  font-size: 17px;
}
/* .new-intro ._newBannUpHO202 {
  width: 187%;
} */
.new-intro ._aLiA0224 span {
  font-size: 8px;
}
}
@media only screen and (max-width: 800px){
  .new-home-about ._aIU0224 ._irSF0224 p {
    padding: 0 9px;
    height: 40px;
}
.new-instantCash ._insCaFo0227 {
  margin: 0 0px;
}
.new-testimonials ._testPara0228 {
  font-size: 13px;
}
.new-aboutus ._abUsT0226 {
  padding: 0 10%;
}
.new-OurBlogs ._blogSin0241 ._blogCon0229 ._rmBlog0229 {
  margin-top: 0px;
}
.new-intro ._boxintrHO202 {
  margin-bottom: 15px;
}
._regiOut091 .tab-progressbar span {
  font-size: 17px;
}
._regiOut091 .tab-progressbar li:after {
  width: 20%;
  left: -12%;
}
.about_us_page ._outEaIn0253 p:nth-child(3) {
  height: 245px;
}
.new-intro ._newBannUpHO202 {
  width: 100%;
}
.new-intro ._niI00223 {
  text-align: center;
}
}

@media only screen and (max-width: 600px){
  ._happyUsers ._hU0223 {
    font-size: 13px;
    margin-right: 3px;
    padding: 8px 15px;
    margin-bottom: 10px;
}
.new-intro ._ni0022 {
  padding-left: 3%;
}
._happyUsers ._hU0223 span:first-child {
  font-size: 15px;
}
.new-intro ._niI00223 {
  margin-top: 30px;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.new-intro ._ni0022 {
  padding-top: 0%;
}
.new-intro ._ni0022 h1 {
  font-size: 35px;
}
.new-intro ._ni0022 ._dLet00223 {
  font-size: 25px;
}
._gSo0223{
  margin-right: 20%;
  margin-bottom: 6%;
  font-size: 12px;
  line-height: 35px;
  padding: 0 10px;
}
.employer-tie-up ._gSo0223,
.employer-tie-up ._downBtn0231{
  margin-right: 0%;
  margin-bottom: 6%;
  font-size: 12px;
  line-height: 35px;
  padding: 0 10px;
}
._intro-link ._oLSt0223 img {
  width: 120px;
}
.new-home-about {
  margin-top: -65px;
  padding-top: 40px;
  background-size: contain;
}
._aLiA0224{
  margin-bottom:20px ;
}
.new-aboutus ._abUsT0226 {
  padding: 0 0%;
}
.new-aboutus ._voL0226 {
  margin: 0;
}


section, .section, .section-image-edge .content {
  position: relative;
  padding: 20px 0;
}
.new-container {
  width: 95%;
}
.new-works ._kycM0225 {
  padding: 0;
}
._bosF0227 {
  font-size: 10px;
}
._esTo0227 {
  font-size: 12px;
}
.form-group .form-total {
  font-size: 14px;
}
.btn-submit.btn-lg {
  padding: 7px;
  height: 40px;
}
.new-testimonials {
  background-size: contain;
  padding-top: 60px;
}
.new-testimonials .flex1{
  text-align: center;
}
.new-testimonials .owl-carousel .owl-item ._testPer0228 {
  width: 55%;
}
.new-testimonials ._testPara0228 {
  font-size: 13px;
  width: 100%;
  margin-top: 8%;
}
._newHeading0225,
._wiF0224,
.new-home-about ._aIU0224 ._opL0224{
  text-align: center;
}
.new-footer {
  background-size: contain;
  padding-top: 35px;
}
.new-copyright ._smC0220 {
  text-align: left;
}
._nLi0011 {
  line-height: 45px;
  width: 100%;
  clear: right;
}
._loUl0011 {
  width: 100% !important;
  padding: 10px 10px 10px !important;
}
#main-menu .EmployerDot {
  right: 73%;
}
.new-OurBlogs ._blogCon0229 ._blSpan0229 {
  display: inline-block;
}
.new-instantCash ._payMOu0227 {
  padding: 15px 0px;
}
#nav-bar a {
  height: 90px;
  display: inline-block;
}
.about_us_page ._outEaIn0253 img {
  width: 100%;
  margin-left: 10px;

}
.about_us_page ._emTu0231 {
  font-size: 15px;
}
.about_us_page ._outEaIn0253 p {
  font-size: 11px;
}
.about_us_page ._aboutHea0254 {
  font-size: 15px !important;
}
._regiOut091 .tab-progressbar li {
  display: block;
  width: 33%;
  font-size: 13px;
  text-align: center;
}
._regiOut091 .tab-progressbar span {
  padding: 5px;
  display: block;
  vertical-align: top;
  font-size: 13px;
}
._regiOut091 .tab-progressbar li:after {
  width: 100%;
  left: -50%;
  top: 29%;
}
.wizard-buttons .wizard-next, .wizard-buttons .wizard-back, .wizard-buttons .wizard-finish {
  width: 45%;
}
.about_us_page ._outEaIn0253 p:nth-child(3) {
  height: auto;
}
.new-intro ._boxintrHO202 {
  width: 100%;
  display: block;
}
._happyUsers {
  margin-top: 0;
}
.new-intro ._aLiA0224 span {
  font-size: 15px;
}
}

@media only screen and (max-width: 350px){
  .new-intro ._aLiA0224 span img {
    width: 33px;
}
}