@import url(helper.css);

@font-face {
    font-family: "Telegraf";
    src: url(../fonts/Telegraf.otf);
}

@font-face {
    font-family: "TelegrafBold";
    src: url(../fonts/TelegrafBold.otf);
}

@font-face {
    font-family: "TelegrafLight";
    src: url(../fonts/TelegrafLight.otf);
}

*,
* button:focus {
    outline: 0;
}

:root {
    --main: #5C43FF;
}

.cr-main {
    color: var(--main) !important;
}

.bg-main {
    background-color: var(--main) !important;
    border-color: var(--main) !important;
    color: #fff !important;
}

.border-main {
    border-color: var(--main) !important;
}

.hover-main:hover {
    color: var(--main) !important;
}

.hover-bg-main:hover {
    background-color: var(--main) !important;
    border-color: var(--main) !important;
    color: #fff !important;
}

.bg-light {
    background-color: #F4F7FB !important;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html::-webkit-scrollbar {
    height: 5px;
    width: 5px;
    background: rgba(255, 255, 255, 0);
    border-radius: 0;
}

html::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 5px;
}

html::-webkit-scrollbar-corner {
    background: var(--main);
    border-radius: 5px;
}

body {
    font-family: "Telegraf";
    text-decoration: none;
    font-size: 0.9em;
    overflow-x: hidden;
    position: relative;
    background-color: #F4F7FB;
    color: #221E1F;
}

body::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 20vw;
    height: 20vw;
    background-color: #46FAFF;
    opacity: 0.3;
    filter: blur(100px);
    z-index: -1;
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    font-family: "TelegrafBold";
    font-kerning: none;
    color: #0a1a3f;
}

body a:hover {
    text-decoration: none;
}

body a:focus {
    outline: 0;
}

body ul {
    list-style-type: none;
    margin: 0;
}

[type=email],
[type=number],
[type=tel],
[type=url] {
    direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    transition: all 0.6s ease;
    outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
    display: inline-block;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

ul {
    padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

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

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

.object-top {
    -o-object-position: top;
    object-position: top;
}

.object-bottom {
    -o-object-position: bottom;
    object-position: bottom;
}

.dnf-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.df-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.text,
.text * {
    font-size: 14px;
    line-height: 1.8;
}

small.text {
    font-size: 12px;
}

.section-padding {
    padding: 100px 0;
}

.dropdown .dropdown-menu {
    border-radius: 10px;
    padding: 10px;
    border: 0;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
}

.dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

/* --------------- to_top button --------------- */
.progress-wrap {
    position: fixed;
    left: 20px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateX(-100px);
    z-index: 99;
    transition: all 200ms linear;
}

.progress-wrap::after {
    background: url(../images/top-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #000;
    left: 13px;
    top: 13px;
    height: 25px;
    width: 25px;
    display: block;
}

.progress-wrap svg path {
    fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
    stroke: #000;
    stroke-width: 5;
    box-sizing: border-box;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --------------- butn --------------- */
.butn {
    position: relative;
    padding: 13px 35px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: capitalize;
    border: 0;
    overflow: hidden;
    z-index: 2;
}

.butn:hover {
    box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
    transform: translateY(-2px);
}

.butn.butn-white {
    background: #fff;
    color: var(--cr-main);
}

.butn.butn-white:hover {
    background-color: var(--cr-main);
    color: #fff;
}

.butn.butn-border {
    background-color: #fff;
    border: 1px solid var(--cr-main);
    color: var(--cr-main);
}

.butn.butn-border:hover {
    background-color: var(--cr-main);
    border-color: var(--cr-main);
    color: #fff;
}

.butn.butn-border-light {
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--cr-main);
}

.butn.butn-border-light:hover {
    background-color: var(--cr-main);
    border-color: var(--cr-main);
    color: #fff;
}

.butn.md-butn {
    padding: 12px 25px;
    font-size: 13px;
}

.butn.blur-wh-butn {
    background-color: rgba(255, 255, 255, 0.0666666667);
    backdrop-filter: blur(10px);
}

.butn.hvr-scale:hover {
    transform: scale(1.1);
}

.butn.hvr-txt-trans {
    position: relative;
    overflow: hidden;
}

.butn.hvr-txt-trans .txt {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.butn.hvr-txt-trans .txt::after {
    content: attr(data-text);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}

.butn.hvr-txt-trans .txt span {
    transition: all 0.4s ease;
}

.butn.hvr-txt-trans:hover .txt span {
    transform: translateY(-150%);
    opacity: 0;
}

.butn.hvr-txt-trans:hover .txt::after {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.butn-after {
    position: relative;
}

.butn-after::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -15%;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(15px);
    border-radius: 30px;
    pointer-events: none;
}

/* --------------- text grad --------------- */
.text-grad {
    background-image: linear-gradient(to right, #3387FF, #5C43FF, #46FAFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* --------------- navbar --------------- */
.navbar {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid #dee2e6;
}

.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    font-size: 16px;
    margin: 0px 10px;
    padding: 5px 20px;
    border-radius: 10px;
    color: #221E1F;
}

.navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--main);
    background-color: rgba(78, 125, 191, 0.168627451);
}

html.scroll-up .nav-scroll {
    transform: translateY(0);
}

/* --------------- hero --------------- */
.hero {
    position: relative;
    z-index: 5;
}

.hero .grad {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero .search-form {
    position: relative;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
}

.hero .tags {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.hero .tags .tag {
    padding: 8px 30px;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 30px;
    cursor: pointer;
}

.hero .tags .tag:hover,
.hero .tags .tag.active {
    color: var(--main);
    border-color: var(--main);
}

.hero .shap {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.form-control::-moz-placeholder {
    opacity: 0.5;
}

.form-control::placeholder {
    opacity: 0.5;
}

/* --------------- login --------------- */
.login {
    position: relative;
    z-index: 5;
}

.login::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 10%;
    width: 20vw;
    height: 20vw;
    background: rgba(51, 135, 255, 0.6);
    opacity: 0.3;
    filter: blur(100px);
    z-index: -1;
}

.login .tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.login .tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    margin-top: 5px;
}

.login .tags .tag i {
    color: var(--main);
    margin-inline-end: 8px;
}

.login .login-grad-line {
    position: relative;
    margin-top: 100px;
    height: 45px;
    width: 100%;
    background-image: linear-gradient(90deg, #221E1F 0%, #5C43FF 49.04%, #46FAFF 100%);
}

.code-form .form-box {
    text-align: center;
}

.verification-code {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.verification-code .code-input {
    width: 65px;
    height: 65px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    transition: 0.3s;
}

.verification-code .code-input:focus {
    border-color: var(--main);
    box-shadow: 0 0 0 3px rgba(92, 67, 255, 0.08);
    outline: 0;
}

.verification-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.verification-footer .countdown {
    color: #666;
    font-size: 14px;
}

.verification-footer .countdown #timer {
    color: var(--main);
    font-weight: 700;
}

.verification-footer .resend-code {
    color: var(--main);
    font-weight: 600;
    text-decoration: none;
}

.verification-footer .resend-code:hover {
    text-decoration: underline;
}

.d-none {
    display: none !important;
}

.form-box {
    position: relative;
    background: #FFFFFF;
    box-shadow: -4px 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
}

.form-box .sub-title {
    display: inline-flex;
    align-items: center;
    padding: 6px 20px;
    background-color: #fff;
    border-radius: 30px;
    background: rgba(51, 135, 255, 0.1);
    border: 1px solid rgba(51, 135, 255, 0.5);
    color: var(--main);
}

.form-box .sub-title i {
    color: var(--main);
    margin-inline-end: 12px;
    box-shadow: 0px 2px 5px #5C43FF;
}

.form-group {
    position: relative;
    margin-top: 30px;
}

.form-group .icon-group {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 10px;
}

.form-group .icon-group .icon {
    position: relative;
    width: 50px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-inline-end: 1px solid #dee2e6;
    margin-inline-end: 15px;
    font-size: 16px;
}

.form-group .icon-group input,
.form-group .icon-group select {
  position: relative;
  border: 0;
  background-color: transparent;
  width: 100%;
  font-size: 16px;
}
.form-group .icon-group select {
  flex: 1;
  outline: none;
}

.form-group .icon-group.phone-icon-group {
    padding-block: 0;
    padding-inline-end: 15px;
    /*overflow: hidden;*/
}

.form-group .icon-group.phone-icon-group .iti {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    padding-inline-start: 50px;
}

.form-group .icon-group.phone-icon-group .iti__tel-input,
.form-group .icon-group.phone-icon-group .iti input[type="tel"] {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
    height: 52px;
    font-size: 16px;
    padding-block: 10px;
    padding-inline: 6px 0;
}

.form-group .icon-group.phone-icon-group .iti--separate-dial-code .iti__selected-flag,
.form-group .icon-group.phone-icon-group .iti--separate-dial-code .iti__selected-flag:hover,
.form-group .icon-group.phone-icon-group .iti--separate-dial-code .iti__selected-flag:focus {
    background: transparent;
}

.form-group .icon-group.phone-icon-group .iti__selected-dial-code {
    margin-inline-start: 4px;
    font-size: 16px;
}

.form-group .icon-group .show_pass {
    position: absolute;
    right: 20px;
    top: 18px;
    opacity: 0.6;
}

.form-check-input {
    position: relative;
    width: 18px;
    height: 18px;
    top: -2px;
}

.form-check-input:checked {
    background-color: var(--main);
    border-color: var(--main);
    box-shadow: none !important;
    outline: 0;
}

.flip-scroll-st1 {
    transform: translateY(150px) rotateX(-35deg) scale(0.8);
    opacity: 0;
}

/* --------------- jobs --------------- */
.jobs {
    position: relative;
}

.jobs .list-grid-btns {
    position: relative;
    display: inline-flex;
    padding: 4px;
    background-color: #F4F7FB;
    border-radius: 15px;
}

.jobs .list-grid-btns a {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.jobs .list-grid-btns a.active {
    background-color: #fff;
}

.jobs .job-card {
    position: relative;
    padding: 40px;
    border: 1px solid rgba(153, 153, 153, 0.2666666667);
    border-radius: 30px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.jobs .job-card:hover {
    border-color: var(--main);
}

.jobs .job-card .info-items {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px 20px;
}

.jobs .job-card .info-items .price {
    position: relative;
    border-inline-end: 1px solid rgba(153, 153, 153, 0.2666666667);
}

.jobs .job-card .info-items .tags {
    position: relative;
    border-inline-end: 1px solid rgba(153, 153, 153, 0.2666666667);
    display: flex;
    gap: 5px 10px;
}

.jobs .job-card .info-items .tags .tag {
    padding: 5px 15px;
    background-color: #F4F7FB;
    font-size: 13px;
    border-radius: 30px;
    font-size: 12px;
}

.jobs .job-card .progress-side {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-inline-start: 1px solid rgba(153, 153, 153, 0.1333333333);
    height: 100%;
    padding-inline-start: 30px;
}

.jobs .job-card .progress-side .progress-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jobs .job-card .progress-side .match-txt {
    align-items: center;
    padding: 3px 15px;
    background-color: #fff;
    border-radius: 30px;
    background: rgba(92, 67, 255, 0.137254902);
    border: 1px solid rgba(92, 67, 255, 0.2666666667);
    color: var(--main);
    font-size: 12px;
    display: none;
}

.jobs .job-card .btm-cont {
    position: relative;
    padding: 40px 0 0;
    border-top: 1px solid rgba(153, 153, 153, 0.1333333333);
    margin-top: 30px;
}

.jobs .job-card.fav-card {
    border: 2px dashed rgba(92, 67, 255, 0.2);
}

.jobs .job-card.fav-card .match-txt {
    margin-inline-end: 30px;
}

.jobs .job-card.fav-card .fav-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--main);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.0666666667);
}

.jobs .jobs-cards.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.jobs .jobs-cards.grid .job-card {
    padding: 25px;
    width: calc(33% - 30px);
}

.jobs .jobs-cards.grid .job-card .top-cont .row {
    flex-direction: column;
}

.jobs .jobs-cards.grid .job-card .top-cont .row .col-lg-4,
.jobs .jobs-cards.grid .job-card .top-cont .row .col-lg-8 {
    width: 100%;
}

.jobs .jobs-cards.grid .job-card .top-cont .row .col-lg-4 {
    order: -1;
}

.jobs .jobs-cards.grid .job-card .top-cont .row .col-lg-4 .progress-side {
    border: 0;
    padding: 0;
}

.jobs .jobs-cards.grid .job-card .top-cont .progress-box .progress-wrapper {
    display: none;
}

.jobs .jobs-cards.grid .job-card .top-cont .progress-box .match-txt {
    display: inline-flex;
}

.jobs .jobs-cards.grid .job-card .top-cont .progress-box .txt {
    display: none;
}

.jobs .jobs-cards.grid .job-card .top-cont .job-title {
    font-size: 21px !important;
    margin-top: 30px;
}

.jobs .jobs-cards.grid .job-card .top-cont .job-rec {
    gap: 10px !important;
}

.jobs .jobs-cards.grid .job-card .top-cont .job-rec .rec {
    font-size: 12px;
}

.jobs .jobs-cards.grid .job-card .top-cont .info-items {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
    padding-top: 30px;
}

.jobs .jobs-cards.grid .job-card .top-cont .info-items .open-lnk {
    position: absolute;
    top: 30px;
    right: 0;
}

.jobs .jobs-cards.grid .job-card .top-cont .info-items .price {
    padding: 0 !important;
    border: 0;
    margin-bottom: 15px;
}

.jobs .jobs-cards.grid .job-card .top-cont .info-items .price .fsz-24 {
    font-size: 20px !important;
}

.jobs .jobs-cards.grid .job-card .top-cont .info-items .tags {
    padding: 0 !important;
    border: 0;
}

.jobs .jobs-cards.grid .job-card .btm-cont {
    flex-direction: column;
    border: 0;
    margin: 40px 0 0;
    padding: 0;
}

.jobs .jobs-cards.grid .job-card .btm-cont .job-rec {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}

.jobs .jobs-cards.grid .job-card .btm-cont .side {
    justify-content: center;
}

/* --------------- footer --------------- */
.footer {
    position: relative;
    z-index: 5;
}

.footer .links-list {
    position: relative;
}

.footer .links-list li {
    display: flex;
    font-size: 16px;
    margin: 15px 0;
    color: #535D68;
}

.footer .links-list li i {
    margin-inline-end: 10px;
    margin-top: 5px;
    font-size: 20px;
}

.footer .social-icons {
    position: relative;
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    position: relative;
    height: 50px;
    width: 50px;
    border: 1px solid rgba(153, 153, 153, 0.3333333333);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
}

.footer .social-icons a:hover {
    color: var(--main);
    border-color: var(--main);
}

.footer .foot {
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
}

.footer .foot-shap {
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer .foot-grad {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* --------------- job-det --------------- */
.job-det {
    position: relative;
    z-index: 5;
}

.job-det::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 10%;
    width: 20vw;
    height: 20vw;
    background: rgba(51, 135, 255, 0.6);
    opacity: 0.3;
    filter: blur(100px);
    z-index: -1;
}

.job-det .content {
    position: relative;
    padding: 40px;
    background-color: #fff;
    border-radius: 30px;
    border: 1px solid rgba(92, 67, 255, 0.1333333333);
    z-index: 5;
}

.job-det .content::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 10%;
    width: 20vw;
    height: 20vw;
    background: rgba(51, 135, 255, 0.6);
    opacity: 0.3;
    filter: blur(100px);
    z-index: -1;
}

.job-det .list-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-det .list-items li {
    position: relative;
    padding: 15px 20px;
    width: 33%;
    flex-grow: 1;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 10px;
}

.job-det .job-det-description {
    line-height: 1.8;
}

.job-det .job-det-description ul,
.job-det .job-det-description ol {
    margin: 1rem 0;
    padding-inline-start: 1.25rem;
}

.job-det .job-det-description li {
    margin-bottom: 0.5rem;
}

.job-det .job-det-description p {
    margin-bottom: 1rem;
}

.job-det .job-det-description h1,
.job-det .job-det-description h2,
.job-det .job-det-description h3,
.job-det .job-det-description h4,
.job-det .job-det-description h5,
.job-det .job-det-description h6 {
    color: var(--main);
    margin: 1.5rem 0 1rem;
    font-size: 1.25rem;
    text-transform: capitalize;
}

.tag-txt {
    display: inline-flex;
    align-items: center;
    padding: 3px 15px;
    background-color: #fff;
    border-radius: 30px;
    background: rgba(92, 67, 255, 0.137254902);
    border: 1px solid rgba(92, 67, 255, 0.2666666667);
    color: var(--main);
    font-size: 12px;
}

/* --------------- register --------------- */
.register {
    position: relative;
    text-transform: capitalize;
    z-index: 10;
}

.register .grad {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.register .steps-wrapper {
    position: fixed;
    left: 0;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.register .steps {
    position: relative;
    display: flex;
    background-color: #fff;
    border-radius: 100px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1333333333);
    z-index: 999;
    gap: 20px;
    padding: 10px 0;
}

.register .step {
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    opacity: 0.7;
}

.register .step:last-of-type {
    padding-inline-end: 40px;
}

.register .step b {
    font-size: 13px;
    line-height: 1;
}

.register .step small {
    font-size: 10px;
}

.register .step .icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 67, 255, 0.0666666667);
    color: #5C43FF;
    margin-inline-end: 15px;
}

.register .step.active {
    opacity: 1;
}

.register .step.active .icon {
    background: #4f46e5;
    color: #fff;
}

.register .steps-boxes {
    position: relative;
}

.register .steps-boxes .container {
    position: relative;
}

.register .steps-boxes .form-step {
    display: none;
    opacity: 0;
    transition: 0.3s ease;
}

.register .steps-boxes .form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.register .steps-boxes .form-step:not(.form-box) .form-box {
    display: block;
    background-color: #fff;
}

.register .steps-boxes .form-box.form-step {
    display: none;
    background-color: #fff;
}

.register .steps-boxes .form-box.form-step.active {
    display: block;
}

.form-step {
    display: none;
    opacity: 0;
    transition: 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-checks-tab {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.form-checks-tab .form-check {
    position: relative;
    padding: 0;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    font-size: 16px;
    flex-grow: 1;
}

.form-checks-tab .form-check:has(:checked) {
    background-color: var(--main);
    color: #fff;
}

.form-checks-tab .form-check .form-check-input {
    display: none;
}

.form-checks-tab .form-check .form-check-label {
    padding: 12px 20px;
    cursor: pointer;
}

/* --------------- multi select --------------- */
.choices {
    width: 100%;
}

.choices .choices__inner {
    min-height: 29px !important;
    background-color: transparent;
    border: 0;
    width: 100%;
    padding: 0 !important;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.0666666667);
    border: 0;
    z-index: 10;
}

.choices[data-type*=select-one]::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    border: 0;
    right: 24px;
    top: 6px;
    margin: 0 !important;
}

.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
    z-index: 100;
}

/* --------------- calender --------------- */
.flatpickr-calendar {
    border-radius: 15px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.0666666667);
    padding: 15px 0;
    font-size: 11px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    top: 5px;
}

/* --------------- history items --------------- */
.history-item,
.academic-item,
.references-item {
    position: relative;
}

.history-item:has(.remove-btn),
.academic-item:has(.remove-btn),
.references-item:has(.remove-btn) {
    padding-inline-end: 50px;
}

.history-item .remove-btn,
.academic-item .remove-btn,
.references-item .remove-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #ff0000;
    width: 40px;
    height: 48px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-item .remove-btn:hover,
.academic-item .remove-btn:hover,
.references-item .remove-btn:hover {
    border-color: #ff0000;
    background-color: rgba(255, 0, 0, 0.0666666667);
}

/* --------------- upload files --------------- */
.filepond--credits {
    display: none !important;
}

.filepond--drop-label {
    border: 1px dashed var(--main);
    color: var(--main);
    border-radius: 10px;
    background-color: #f8f7fb;
}

.filepond--file {
    background-color: var(--main) !important;
}

.filepond--drip {
    background: #f8f7fb !important;
}

/* --------------- password validation --------------- */
.val-cont .txt {
    transition: 0.3s;
}

.val-cont .txt.success {
    color: #28a745;
}

.val-cont .txt.success i {
    color: #28a745;
}

/* --------------- avatar upload --------------- */
.avatar-content .img-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}

.avatar-content .img-upload .img-edit {
    position: static;
    width: 0;
    text-align: center;
}

.avatar-content .img-upload .img-edit .image-upload {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.avatar-content .img-upload .img-edit label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.avatar-content .img-upload .img-edit label .cont {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8588235294);
}

.avatar-content .img-upload .img-preview {
    position: relative;
    width: 150px;
    height: 150px;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid rgba(153, 153, 153, 0.2);
    overflow: hidden;
}

.avatar-content .img-upload .img-preview .image-preview {
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

/* --------------- profile --------------- */
.profile {
    position: relative;
}

.profile .profile-tabs {
    position: relative;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: sticky;
    top: 24px;
}

.profile .nav-pills {
    position: relative;
}

.profile .nav-pills .nav-link {
    position: relative;
    text-align: start;
    font-size: 16px;
    padding: 10px 20px;
    margin: 6px 0;
    color: #888;
    border-radius: 15px;
}

.profile .nav-pills .nav-link.active {
    background: var(--main);
    color: #fff;
}

.profile .nav-pills .nav-link.active::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -15%;
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(15px);
    border-radius: 30px;
    pointer-events: none;
}

.profile .profile-content {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(92, 67, 255, 0.2);
    z-index: 5;
}

.profile .profile-content::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 10%;
    width: 20vw;
    height: 20vw;
    background: rgba(51, 135, 255, 0.6);
    opacity: 0.3;
    filter: blur(100px);
    z-index: -1;
}

.profile .personal-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.profile .personal-info li {
    display: flex;
    align-items: center;
    padding: 12px 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
    width: calc(50% - 20px);
}

.profile .personal-info li:last-child {
    border-bottom: none;
}

.profile .personal-info li:hover {
    background: rgba(92, 67, 255, 0.03);
    padding-left: 18px;
}

.profile .personal-info li:hover .info-icon {
    background: rgba(92, 67, 255, 0.12);
    transform: scale(1.05);
}

.profile .personal-info .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(92, 67, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    color: #5C43FF;
    font-size: 15px;
    transition: all 0.25s ease;
}

.profile .personal-info .info-details {
    flex: 1;
    min-width: 0;
}

.profile .personal-info .label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.profile .personal-info .value {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile .personal-info .value.muted {
    color: #d1d5db;
    font-weight: 400;
    font-style: italic;
}

.profile .jobs .jobs-cards.grid .job-card {
    width: calc(50% - 30px);
    margin: 0;
}

.profile .job-card {
    padding: 24px;
    border-radius: 18px;
    margin-top: 0;
    margin-bottom: 20px;
}

.profile .job-card .info-items {
    gap: 6px 12px;
}

.profile .job-card .info-items .tags {
    gap: 4px 6px;
}

.profile .job-card .info-items .tags .tag {
    padding: 3px 10px;
    font-size: 10px;
}

.profile .job-card .progress-side {
    padding-inline-start: 18px;
    margin-bottom: 15px;
}

.profile .job-card .progress-side .progress-wrapper {
    transform: scale(0.75);
}

.profile .job-card .progress-side .match-txt {
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
}

.profile .job-card .btm-cont {
    padding-top: 15px;
    margin-top: 0;
}

.profile .job-card .fsz-35 {
    font-size: 20px !important;
}

.profile .job-card .fsz-24 {
    font-size: 18px !important;
}

/* --------------- modal --------------- */
.modal .modal-backdrop {
    background: rgba(92, 67, 255, 0.08);
    backdrop-filter: blur(6px);
}

.modal .modal-content {
    border: 1px solid rgba(92, 67, 255, 0.1);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(92, 67, 255, 0.05), 0 8px 40px rgba(92, 67, 255, 0.1), 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.modal .modal-body {
    max-height: min(calc(100vh - 10rem), 80vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5C43FF, #8B6FFF, #5C43FF);
    border-radius: 20px 20px 0 0;
}

.modal .modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(92, 67, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem !important;
    transition: background 0.3s ease, transform 0.3s ease;
}

.modal .modal-icon:hover {
    background: rgba(92, 67, 255, 0.14);
    transform: scale(1.05);
}

.modal .modal-icon i {
    font-size: 24px;
    color: #5C43FF;
}

.modal h5 {
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.modal p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.modal .btn-outline-secondary {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 28px;
    background: transparent;
    transition: all 0.25s ease;
}

.modal .btn-outline-secondary:hover {
    border-color: #5C43FF;
    color: #5C43FF;
    background: rgba(92, 67, 255, 0.04);
}

.modal .btn-primary {
    background: #5C43FF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 28px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(92, 67, 255, 0.3);
}

.modal .btn-primary:hover {
    background: #4a2fe0;
    box-shadow: 0 6px 24px rgba(92, 67, 255, 0.4);
    transform: translateY(-1px);
}

.modal .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(92, 67, 255, 0.25);
}

.modal .modal-dialog {
    transform: scale(0.9) translateY(20px) !important;
    opacity: 0 !important;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease !important;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
}

.modal .avatar-content .img-upload .img-preview {
    width: 100px;
    height: 100px;
}

.modal .form-box {
    margin: 5px 0 !important;
    padding: 20px;
    box-shadow: none;
    border-radius: 0;
}

.modal .form-box .row {
    --bs-gutter-x: 0.5rem;
}

.modal .form-box .tag-txt {
    display: none;
}

.modal .form-box .form-title {
    padding-bottom: 10px !important;
}

.modal .form-box .form-title .title .cont .txt {
    display: none;
}

.modal .form-group {
    margin-top: 20px;
}

.modal .form-group label {
    font-size: 12px;
}

.modal .form-group .icon-group {
    padding: 5px;
    border-radius: 8px;
}

.modal .form-group .icon-group .icon {
    width: 40px;
    font-size: 13px;
}

.modal .form-checks-tab .form-check {
    min-width: -moz-max-content;
    min-width: max-content;
}

.modal .form-checks-tab .form-check .form-check-label {
    padding: 10px 15px;
}

.modal .form-select {
    font-size: 12px;
}

.modal input {
    font-size: 12px !important;
}

.modal .butn {
    padding: 8px 15px;
    font-size: 13px;
}

/* --------------- avatar upload --------------- */
/* --------------- avatar upload --------------- */
/* --------------- avatar upload --------------- */
/* --------------- avatar upload --------------- */
/* ======== */
@media screen and (max-width: 991px) {
    .form-box {
        padding: 30px;
        display: block !important;
        opacity: 1 !important;
    }

    .form-box .form-title {
        flex-direction: column;
    }

    .form-box .form-title .tag-txt {
        display: none;
    }

    .col {
        width: 100%;
        flex: 1 1 100%;
    }

    .steps-wrapper {
        display: none !important;
    }

    .fsz-30 {
        font-size: 21px !important;
    }

    .th-80 {
        height: 60px !important;
    }

    .hero .shap {
        width: 15vw;
    }

    .section-padding {
        padding: 50px 0;
    }

    .job-det .content {
        padding: 20px;
    }

    .tag-txt {
        margin-top: 15px;
    }

    .job-det .list-items li {
        width: 100%;
    }

    .fsz-45 {
        font-size: 25px !important;
    }

    .fsz-24 {
        font-size: 18px !important;
    }

    .search-form .col-lg-4 {
        margin: 15px 0;
    }

    .search-form * {
        border: 0 !important;
    }

    .hero .tags {
        flex-wrap: wrap;
    }

    .hero .tags .tag {
        font-size: 12px;
        padding: 6px 10px;
    }

    .list-grid-btns {
        display: none !important;
    }

    .fsz-18 {
        font-size: 14px !important;
    }

    .job-card {
        padding: 20px;
    }

    .job-card .top-cont .row {
        flex-direction: column;
    }

    .job-card .top-cont .row .col-lg-4,
    .job-card .top-cont .row .col-lg-8 {
        width: 100%;
    }

    .job-card .top-cont .row .col-lg-4 {
        order: -1;
    }

    .job-card .top-cont .row .col-lg-4 .progress-side {
        border: 0;
        padding: 0;
    }

    .job-card .top-cont .progress-box .progress-wrapper {
        display: none;
    }

    .job-card .top-cont .progress-box .match-txt {
        display: inline-flex;
    }

    .job-card .top-cont .progress-box .txt {
        display: none;
    }

    .job-card .top-cont .job-title {
        font-size: 21px !important;
        margin-top: 30px;
    }

    .job-card .top-cont .job-rec {
        gap: 10px !important;
    }

    .job-card .top-cont .job-rec .rec {
        font-size: 12px;
    }

    .job-card .top-cont .info-items {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px solid rgba(153, 153, 153, 0.2);
        padding-top: 30px;
    }

    .job-card .top-cont .info-items .open-lnk {
        position: absolute;
        top: 30px;
        right: 0;
    }

    .job-card .top-cont .info-items .price {
        padding: 0 !important;
        border: 0;
        margin-bottom: 15px;
    }

    .job-card .top-cont .info-items .price .fsz-24 {
        font-size: 20px !important;
    }

    .job-card .top-cont .info-items .tags {
        padding: 0 !important;
        border: 0;
    }

    .job-card .btm-cont {
        flex-direction: column;
        border: 0;
        margin: 40px 0 0;
        padding: 0;
    }

    .job-card .btm-cont .job-rec {
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    }

    .job-card .btm-cont .side {
        justify-content: center;
    }

    .profile .personal-info li {
        width: 100%;
    }
}

/* ======= */
html[dir=ltr] {
    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}

html[dir=ltr] body {
    direction: ltr;
    font-family: "Poppins", sans-serif;
}

/*# sourceMappingURL=style.css.map */
