@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* font-family: "Montserrat", sans-serif; */


/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat';
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    font-size: 18px;
    color: #31313399;
    font-family: "Inter", sans-serif;
    margin: 0 0 20px;
}


/***** Font Files *****/


/* @font-face {
    font-family: "Inter", sans-serif;
    src: url(../fonts/BlenderPro-Medium.ttf);
} */


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Inter", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Inter", sans-serif;
    font-size: 42px;
    line-height: 1;
    color: #000;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h3 {
    font-family: "Inter", sans-serif;
    font-size: 21px;
    line-height: 1.2;
    color: #111010;
    font-weight: 300;
    margin: 0 0 20px;
}

h4 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #111010;
    font-weight: 300;
    margin: 0 0 13px;
}

h5 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/* header  */

.user-profile-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-left: -10px;
    padding-left: 15px;
    align-items: baseline;
}

.user-profile-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

.user-profile-dropdown {
    position: absolute;
    right: 10px;
    width: 150px;
    background: #1375ba;
    padding: 0px 0;
    border-radius: 3px;
    overflow: hidden;
    display: grid;
}

.user-profile-dropdown a {
    color: #fff !important;
}

.user-profile-dropdown a {
    padding: 10px;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    transition: .2s all;
    text-align: center;
}

.user-profile-dropdown a:hover {
    background: #3bb1e3;
}

.user-profile-dropdown a:last-child {
    border: 0;
}

ul.header-profile-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 0;
    margin-right: 20px;
}

.header-logo img {
    width: 155px;
    height: 80px;
}

ul.header-profile-list a,
ul.header-profile-list h4 {
    font-family: "Inter";
    font-weight: 500;
    font-size: 18px;
    color: #31313399;
    text-transform: capitalize;
    margin: 0 !important;
}

ul.header-profile-list li {
    position: relative;
    z-index: 1;
}

ul.header-profile-list li::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 20px;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #7d7d7f;
}

.container-fluid {
    padding: 0 1%;
}

ul.header-profile-list li:first-child::before {
    display: none;
}

.search-nav {
    padding: 11px 0;
    border-bottom: 1px solid #E2E3E5;
}

.search-nav .row {
    align-items: center;
}


/* header  */


/* Sidebar SEction Start */

ul#menu li {
    text-align: center;
    padding: 0px 0;
}

ul#menu li a {
    width: 60px;
    height: 60px;
    display: grid;
    place-content: center;
    /* background: #000; */
    border-radius: 5px;
    margin: 20px auto 0;
}

.container-fluid.noPadding {
    padding: 0 12px;
}

div#sidebar {
    /* background: #1375BA; */
    height: auto;
    /* position: fixed; */
    position: relative;
    z-index: 1;
}

ul#menu li a.active,
ul#menu li a:hover {
    background: #3BB1E3;
}

div#sidebar::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #1375BA;
    left: 0;
    top: 0;
    z-index: -1;
}

ul#menu {
    position: fixed;
    left: 2%;
    top: 18%;
}


/* Sidebar SEction Start */


/* Content Page */

div#page-content {
    padding: 30px;
}

.main-head {
    font-size: 48px;
    font-weight: 500;
    color: #000000;
    text-transform: inherit;
}

.page-card {
    box-shadow: 0px -14px 80px 0px #7F7F7F4D;
    border-radius: 14px;
    padding: 30px;
    height: 100vh;
}

.prf-progress {
    background-color: #ECEFF5;
    width: 100%;
    height: 20px;
    border-radius: 70px;
    overflow: hidden;
    margin: 0 0 20px;
}

.prf-progress span {
    width: 75%;
    height: 20px;
    background-color: #1375BA;
    display: block;
    border-radius: 40px;
}

.prfl-sec-head p {
    font-size: 24px;
}

ul.hm-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.hm-profile li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

ul.hm-profile li h5 {
    margin: 0;
    font-size: 24px;
    color: #313133;
    font-weight: 500;
}

ul.hm-profile img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    object-fit: cover;
}

.theme-btn {
    background: #25A8DF;
    padding: 20px 28px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    font-family: 'Inter';
    border-radius: 10px;
    border: 0;
}

.theme-btn:hover {
    color: #fff !important;
}

.hom-counter {
    border: 1px solid #7F7F7F4D;
    padding: 25px 40px;
    border-radius: 10px;
    margin: 20px 0 40px;
}

ul.hm-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

ul.hm-count h6 {
    font-size: 18px;
    font-weight: 500;
    color: #31313399;
    margin-bottom: 10px;
}

ul.hm-count span {
    font-size: 48px;
    color: #313133;
    font-weight: 500;
    font-family: 'Inter';
    line-height: 60px;
}

.theme-h3 {
    font-size: 36px;
    color: #000000;
    font-weight: 500;
}

.responsive-table {
    height: 300px;
    overflow-y: auto;
}

.responsive-table th,
.responsive-table td {
    font-size: 24px;
    font-family: 'Inter';
    font-weight: 500;
    color: #313133;
    padding: 25px 20px;
    border: 1px solid #7F7F7F4D !important;
}

td.green {
    color: #008D05;
}

td.orange {
    color: #CD8500;
}

.recom-job-box h4 {}

.job-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 0;
    background: #fff;
    height: 520px;
    overflow-y: scroll;
}

.job-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.company {
    margin: 3px 0 10px;
    font-size: 18px;
}

.job-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.location {
    font-size: 18px;
    color: #31313399;
    font-family: 'Inter';
    font-weight: 500;
}

.progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100px;
}

.progress-wrap span {
    font-size: 18px;
    color: #1375BA;
    font-weight: 500;
    width: 80px;
    font-family: 'Inter';
}

.progress-bar {
    width: 80px;
    height: 12px;
    border-radius: 50px;
    background: #1e73be;
}

.f-36 {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Inter';
}


/* Content Page */


/* Referal Page */

.form-title {
    margin-bottom: 20px;
    font-weight: 600;
}

.referal-form {
    margin-bottom: 20px;
}

.referal-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    color: #313133;
    font-family: 'Inter';
    font-weight: 500;
}

.referal-form input,
.referal-form select,
.referal-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 24px;
    font-family: 'Inter';
    height: 60px;
    background: #fff;
    appearance: auto;
    color: #313133;
}


/* File Upload */

.file-upload {
    display: flex;
    align-items: center;
    gap: 15px;
}

.upload-btn {
    background: transparent;
    padding: 15px 18px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #ccc;
    height: 60px;
}

.upload-btn input {
    display: none;
}

.file-name {
    font-size: 24px;
    color: #313133;
    font-family: 'Inter';
    font-weight: 500;
}


/* Button */

.submit-btn {
    background: #2ea3f2;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.submit-btn:hover {
    background: #1b8cd8;
}

.theme-h4 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    font-family: 'Inter';
}

.referal-form textarea {
    height: 158px;
    resize: unset;
}

.referal-form input::placeholder {
    color: #313133;
    font-size: 24px;
}

.search-input {
    position: relative;
    z-index: 1;
}

.theme-btn-2 {
    border: 0;
    background: #313133;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    border-radius: 10px;
    font-family: 'Inter';
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 13px 25px;
    height: fit-content;
}

.job-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #7F7F7F4D;
    padding: 25px 0;
}

.job-info h5 {
    font-size: 24px;
    color: #000000;
    margin: 0;
}

.job-info p {
    margin: 0;
}

.job-info:last-child {
    border: 0;
}


/* Referal Page */


/* Agent Page */

td.red {
    color: #8D0000;
}

.ref-sent-box {
    border: 1px solid #7F7F7F4D;
    padding: 25px 40px;
    border-radius: 10px;
}

.ref-sent-box h2 {
    margin: 0;
    font-size: 48px;
    color: #313133;
    font-weight: 500;
}


/* Agent Page */


/* My referal Page */

.page-card.agent-page .responsive-table {
    height: auto;
}

.responsive-table th:first-child,
.responsive-table td:first-child {
    border-left: 1px solid #7F7F7F4D !important;
}

.responsive-table th:last-child,
.responsive-table td:last-child {
    border-right: 1px solid #7F7F7F4D !important;
}


/* My referal Page */


/* Setting Page */


/* Setting Page */

.f-48 {
    font-size: 48px;
    font-weight: 500;
}

.my-appl-bx th,
.my-appl-bx td {
    border: 0 !important;
    border-bottom: 1px solid #d8d8d8 !important;
    vertical-align: middle;
}

.my-appl-bx th:last-child {
    width: 20%;
}

.my-appl-bx .responsive-table th:last-child,
.my-appl-bx .responsive-table td:last-child {
    border-right: 0 !important;
}

.my-appl-bx .responsive-table th:first-child,
.my-appl-bx .responsive-table td:first-child {
    border-left: 0 !important;
}

.profile-page {
    height: auto;
}