@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

* {
    box-sizing: border-box;
}

@font-face {
    font-family: Circular Std;
    src: url(/assets/font/circular-std/CircularStd-Medium.otf);
}

:root {
    /* COLORS */

    --primary-color: black;
    --secondary-color: #EB2300;
    --primary-alt: black;
    --primary-color_alt: #D4E2CC;
    --btn-color_alt: #E7ECF1;
    --alt-bg: #F2F7F1;
    --websiteWidth: 1440;
    --maxWebsiteWidth: 1800;
    --bodyWidth: 1258;
    --font-family: "Cinzel", serif;
    --white: #fff;


    /* COLORS */


    --width-wide: 100%;

    /* FONTS */

    --font76: 76px;
    --font50: 50px;
    --font32: 32px;
    --font20: 20px;
    --font16: 16px;
}

body {
    overflow-x: hidden;
    font-family: "Cormorant Garamond", serif!important;
    font-optical-sizing: auto;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: white;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border: 3px solid transparent;
    background-clip: content-box;
    border-radius: 9px;
}

    /* p {
    font-weight: 600!important;
    font-size: 20px!important;
} */

.offcanvas {
    --bs-offcanvas-padding-x: 2rem;
    --bs-offcanvas-padding-y: 1.5rem;
}

.notification-tray::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border: 6px solid transparent;
    background-clip: content-box;
    border-radius: 9px;
}

.logo span {
    font-size: 8px;
    color: var(--secondary-color);
}

.notification-tray {
    background: white;
    width: 295px;
    height: 179px;
    top: 550%;
    transform: translate(-50%, -50%);
    left: 0%;
    border: 1px solid rgba(128, 128, 128, 0.262);
    z-index: 444;
    overflow: auto;
}

a {
    text-decoration: none !important;
}

li {
    list-style-type: none;
}

nav {
    border-bottom: 1px solid #E5E5E5;
}

.unread {
    background: #296e010b;
}

button {
    border: none;
    font-size: 14px;
    transition: .3s ease-in-out;
}

button:hover {
    scale: 1.01;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=radio],
input[type=checkbox] {
    accent-color: var(--primary-color);
}

.lineStraight {
    width: 100%;
    height: 1px;
    background: #DADADA;
}

.dropdown span,
.navbar a {
    font-size: min(14* 1vw* 100 / var(--websiteWidth), 14* var(--maxWebsiteWidth) / var(--websiteWidth)* 1px);
}

.navbar a {
    color: black;
    transition: .3s ease-in-out;
    font-weight: 700;
    font-family: var(--font-family);
}

.navbar a:hover {
    color: var(--secondary-color);
}

.signUp {
    background: var(--primary-color);
}

.signUp {
    transform: perspective(0) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
    text-align: center;
    display: inline-block;
    overflow: hidden;
}

.signUp::before {
    content: "";
    background: var(--secondary-color);
    height: 50%;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.signUp::after {
    content: "";
    background: var(--primary-color);
    height: 50%;
    width: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.signUp::after {
    background: var(--secondary-color);
}

.signUp:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}

.signUp:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

/* GENERAL */
.avatarPic {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background: #DADADA;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-one {
    flex: 1;
}

.avatarPic img {
    width: 100%;
    height: auto;
}

.floating,
.blurred {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* padding-top: 6rem; */
    z-index: 999999999 !important;
    background: rgba(255, 255, 255, .2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.additional-class {
    background: rgba(255, 255, 255, 1);
}

.floating-container {
    width: 90%;
    max-width: 528px;
    box-shadow: 4px 8px 8px 4px #0000001A;
    padding-bottom: 1.5rem;
    background: rgba(255, 255, 255);
}

.floating-container::-webkit-scrollbar {
    display: none;
}

.login-container {
    height: 100%;
}

.login-main {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;

}

.login-header {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.input-label,
.signup {
    font-size: 14px;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 0.30000001192092896px;
    color: var(--primary-color);
}

.form-control {
    color: #808080;
    font-size: 15px;
    font-weight: 450;
    line-height: 20px;
}

.form-container a {
    color: var(--secondary-color);
    transition: .3s ease-in-out;
}

.form-container a:hover {
    scale: 1.05
}

.signinBtn {
    width: 100%;
}

.warning-text {
    position: relative;
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    padding: 25px 10px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 0, 0, 0.3);
    color: black;
}

.cancel-type-btn {
    position: absolute;
    top: 5px;
    right: 10px;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
select:focus,
.uneditable-input:focus {
    border-color: var(--primary-color);
    outline: 0 none;
}

.form-switch .form-check-input:focus {
    border-color: var(--primary-alt);
    outline: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(0,0,0,0.25)'/></svg>");
}

.form-switch .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255,255,255,1.0)'/></svg>");
}

.login-footer {
    text-align: center;
}

/* GENERAL */

.sm {
    display: none;
}

.main-nav {
    position: relative;
}

.sv-container {
    margin-top: 60px;
}

.hidden-menu {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: left .3s ease-in-out;
    z-index: 9999;
}

.is-visible {
    left: 0 !important;
}

/* .errorMsg {
    top: 100px;
    right: -100%;
    transition: .3s ease-in-out;
} */

.errorMsg.is-visible {
    right: 30px;
}

.closeBtn {
    position: absolute;
    transform: translate(-50%, -50%);
    right: 20%;
    top: 6%;
}

.hidden-menu_container {
    background: white;
    width: 100%;
}

.hidden-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hidden {
    display: none;
}

.primary-bg {
    background: var(--primary-color);
}

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

.secondary-bg {
    background: var(--secondary-color);
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color)
}

.primary-alt {
    color: var(--primary-alt);
}

.primary-color_alt {
    color: var(--primary-color_alt);
}

.primary-alt_bg {
    background: var(--primary-alt);
}

.alt-bg {
    background: var(--alt-bg);
}

.btn-bg_primary {
    background: var(--btn-color_alt);
}

.brown-bg {
    background: #9A463D;
}

.font-500 {
    font-weight: 500 !important;
}

.font-32 {
    font-size: 32px;
}

.font-20 {
    font-size: 20px;
}

.font-16 {
    font-size: 16px !important;
}

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

.dropdown {
    cursor: pointer;
    position: relative;
}

.dropdown-content {
    background: white;
    position: absolute;
    left: 50px;
    top: 120px;
    min-width: 300px;
    color: var(--primary-color);
    padding: 10px;
    display: none;
    border: 1px solid var(--primary-alt);
    transform: translate(-50%, -50%);
}

.dropdown.active .dropdown-content {
    display: block;
}

.arrow,
.arrowDown {
    transition: transform 0.3s ease;
    /* Smooth rotation */
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

.arrow-rotate {
    transform: rotate(180deg);
}

.pad-0 {
    padding: 0 !important;
}

.list-item {
    line-height: 20.24px;
    font-size: var(--font-family);
}

.login-area {
    width: 15%;
    text-align: center;
}

.wrapper {
    height: 100%;
}

.hamburger {
    display: none;
}

/* .signUp {
    padding: 8px;
} */

/* HERO SECTION */
.main-header {
    font-size: var(--font76);
    font-weight: 500;
    line-height: 76px;
    letter-spacing: -0.04em;
    text-align: left;
    color: var(--primary-color);
}

.main-paragraph {
    font-size: var(--font20);
    font-weight: 450;
    line-height: 25.3px;
}

.start {
    background: var(--primary-color);
}

.learn {
    background: var(--btn-color_alt);
}

/* HERO SECTION */




/* REASON SECTION */

.sv-reason_main,
.sv-reason_minor {
    height: 548px;
    position: relative;
}

.sv-reason_header {
    font-size: 60px;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -0.04em;
    color: var(--primary-alt);
    margin-bottom: 16px;
}

.sv-reason-flex_text {
    font-size: 32px;
    font-weight: 500;
    line-height: 44px;
    text-align: left;
}

.sub-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.24px;
    color: var(--primary-alt);
}

.minor-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
}

.sv-reason-image_block {
    position: absolute;
    top: 50%;
    left: -25%;
    transform: translate(-50%, -50%);
}

.sv-hanging_image {
    width: 100%;
    height: auto;
}

/* REASON SECTION */


/* GRAPH */
.sv-sieve_content {
    border: 1px solid #DADADA;
    height: 325px;
}

.sv-graph_header {
    font-size: 48px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.017em;
    padding-bottom: 24px;
}

.sv-graph_text {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
    letter-spacing: -0.017em;
    width: 100%;
    max-width: 636px;
    margin: 0 auto;
    padding-bottom: 32px;
}

/* GRAPH */


/* CLIENTS SECTION */
.sv-client {
    height: 446px;
}

.sv-client_main {
    width: 100%;
    max-width: 690px;
    padding: 3rem;
}

.sv-review_main {
    width: 100%;
    max-width: 490px;
    padding: 3rem;
}

.sv-client-img_block {
    background: url(/assets/003.png) no-repeat;
    width: 100%;
    height: 446px;
    background-size: cover;
}

.sv-review-img_block {
    background: url(/assets/005.png) no-repeat;
    width: 100%;
    height: 446px;
    background-size: cover;
}

.c-mini_text {
    font-size: 18px;
    font-weight: 500;
    line-height: 25.3px;
}

.sv-client_header {
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -0.04em;
}

.sv-client_text {
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
}

/* CLIENTS SECTION */


/* BROWSE */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-child {
    background: #EAF1E6;
}

.browse-box_header {
    font-size: 23px;
    font-weight: 500;
    line-height: 32px;
}

.mini-flex_item {
    font-size: 15px;
    font-weight: 500;
    line-height: 18.97px;
}

.browse-header {
    font-size: 36px;
    font-weight: 500;
    line-height: 45.54px;
    letter-spacing: -0.04em;
}

.browse-mini_text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.24px;
}

.browse-mini_text a {
    color: var(--primary-color)
}

/* BROWSE */


/* TALENTS */
.sv-talents {
    background: url(/assets/004.png) no-repeat;
    background-size: cover;
}

.find {
    width: 100%;
    max-width: 421px;
    margin-bottom: 32px;
}

.find-links {
    width: 100%;
}

.brown {
    background: #9A463D;
}

.brown-color {
    color: #9A463D;
}

.talent-mini_text {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 32px;
}

.talent-header {
    font-size: 60px;
    font-weight: 500;
    line-height: 60px;
}

.talent-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.find-box {
    font-size: 30px;
    font-weight: 500;
    line-height: 44px;
    flex-grow: 1;
    flex-basis: 0;
    height: 170px;
}

.find-box span {
    height: 88px;
}

.find-box a {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.24px;
}

/* TALENTS */


/* REVIEWERS */
.review-line {
    width: 100%;
    height: 1px;
}

.oppor {
    border-radius: 20px;
}

.sv-trust-header {
    font-size: 64px;
    font-weight: 500;
    line-height: 68px;
    letter-spacing: -0.02em;
}

.trust-paragraph {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.02em;
}

.trust-mini_text {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    opacity: .5s;
}

.result-flex_child {
    flex-grow: 1;
    flex-basis: 0;
}

.slab {
    flex: 0 0 auto;
    width: 45%;
}

.arrow-move,
.arrow-move-left {
    border-radius: 50%;
    width: 46px;
    height: 46px;
    right: 0;
    top: 60%;
    cursor: pointer;
    z-index: 999;
}

.arrow-move-left {
    left: 0;
}

.sv-slide::-webkit-scrollbar {
    display: none;
}

/* REVIEWERS */



/* LOREM */
.lorem-header {
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: -0.04em;
}

.lorem-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

/* LOREM */



/* TOP JOBS */
.top-tags {
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
}

/* TOP JOBS */


/* FOOTER */
.sv-footer-container {
    padding: 3rem;
}

.footer-mini-flex {
    gap: 3rem;
}

/* FOOTER */



/* MESSAGES */
.avatar-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: grey;
}

/* .profile-container {
    padding: .5rem 3rem;
} */
/* .text-preview {
    width: 100%;
    max-width: 180px;
} */

/* MESSAGES */



/* CLIENT DASHBOARD */
.radio-item1,
.radio-item2,
.radio-item3 {
    width: 220px;
}

/* CLIENT DASHBOARD */


/* DASHBOARD */
.dashboard-container {
    height: 100%;
    overflow: auto;
    padding-top: 3rem !important;
    padding-bottom: 6rem;
}

.dashboard-header {
    font-size: 60px;
    font-weight: 500;
    line-height: 76px;
    letter-spacing: -0.04em;
    width: 100%;
    max-width: 683px;
}

.dashboard-text {
    font-size: 20px;
    font-weight: 450;
    line-height: 36px;
    color: var(--primary-color);
    width: 100%;
    max-width: 537px;
}

.dashboard-text li {
    list-style-type: disc;
}

.d-job-header {
    font-size: 20px;
    font-weight: 450;
    line-height: 12px;
}

.exp-header {
    font-size: 20px;
    font-weight: 700;
    line-height: 25.3px;
    color: #2D432C;
}

ol li {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

.select-dropdown {
    width: 100%;
    height: 180px;
    overflow: auto;
}

.select-dropdown::-webkit-scrollbar,
.option-item-popup::-webkit-scrollbar {
    display: none;
}

.option-item:hover,
.choose:hover {
    background: #296E011A;
}

.option-item {
    cursor: pointer;
}

/* DASHBOARD */



/* CATEGORY */
.select-cat,
.select-dropdown {
    width: 100%;
    max-width: 330px;
    border: 0.5px solid #E5E5E5;
    background: #F2F2F2;
}

.option-item-popup {
    position: absolute;
    display: none;
    top: 40px;
    left: 350px;
    border: 1px solid #DADADA;
    width: 330px
}

.c-box {
    background: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.c-box {
    cursor: pointer;
}

/* CATEGORY */


/* SKILLS */
.skill-header {
    font-size: 20px;
    font-weight: 450;
    line-height: 25.3px;
    color: var(--primary-alt);
}

.tip-header {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-alt);
}

/* SKILLS */


/* SCOPE */
.scope-head {
    font-size: 20px;
    font-weight: 450;
    line-height: 25.3px;
    color: #1C1C1C;
}

.scope-txt {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
}

.d-header {
    font-size: 20px;
    font-weight: 450;
    line-height: 25.3px;
}

.radios label {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
}

/* SCOPE */


/* BUDGET */
.price {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
}

/* BUDGET */


/* FINAL */
.file-upload {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.max-size {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
}

.long-line {
    width: 100%;
    height: 1px;
    background: #DADADA;
}

.reviewJob {
    padding-bottom: 6rem;
}

.rj-header {
    font-size: 24px;
    font-weight: 500;
    line-height: 30.36px;
}

.jobName {
    font-size: 18px;
    font-weight: 700;
    line-height: 25.3px;
    color: var(--primary-alt);
    text-transform: capitalize;
}

.bd-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.seeMore {
    font-size: 14px;
    border-bottom: 1px solid var(--primary-color);
    transition: .3s ease-in-out;
    color: var(--primary-color);
    background: transparent;
}

.seeMore:hover {
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding-left: 8px;
    padding-right: 8px;
}

.jobMainContainer {
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}

.cat-subheader {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

.sDraft {
    background: transparent;
    border: 1px solid var(--secondary-color)!important;
    color: var(--secondary-color);;
}

.document {
    gap: 1rem !important;
}

.payHead {
    font-size: 16px;
    font-weight: 500;
    line-height: 20.24px;
    letter-spacing: -0.002em;
}

.payDesc {
    font-size: 12px;
    font-weight: 450;
    line-height: 15.18px;
}

.commitHead {
    font-size: 16px;
    font-weight: 500;
    line-height: 12px;
}

.commitText {
    font-family: Circular Std;
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
}

.money-header {
    font-size: 24px;
    font-weight: 450;
    line-height: 45.54px;
    letter-spacing: -0.20000000298023224px;
}

.money {
    font-size: 28px;
    font-weight: 500;
    line-height: 60.72px;
    letter-spacing: -0.20000000298023224px;
}

.sc-head {
    font-size: 36px;
    font-weight: 500;
    line-height: 45.54px;
    text-align: center;
}

.sc-text {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

.psc-Btn {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

/* FINAL */

/* MAIN DASHBOARD */
.side-bar {
    height: calc(100vh - 66px);
    width: 200px;
    padding-right: 1rem;
    padding-bottom: 5rem;
    border-right: 1.5px solid #DADADA;
    margin-top: 1rem;
    /* position: fixed;
    left: 0;
    background: white;
    z-index: 9999; */
}

.main-bar {
    width: 100%;
    height: calc(100vh - 66px);
    justify-self: flex-end;
    overflow: auto;
    margin-top: 4rem;
    padding-bottom: 1rem;
    /* margin-left: 20px; */
}

.main-bar::-webkit-scrollbar {
    display: none;
}

.top-side-bar,
.main-bar {
    padding-top: 1rem;
}

.tabs {
    cursor: pointer;
    transition: .3s ease-in;
}


.tabs p {
    color: var(--primary-color);
}

.tabs:hover {
    background: #d6d6d677;
    color: var(--primary-color);
}

.side-bar a {
    font-size: 16px;
    font-weight: 450;
    line-height: 30px;
    letter-spacing: -0.02em;
    color: var(--primary-color)
}

.side-bar .active,
.side-bar a:active {
    background: #d6d6d677;
    /* color: white!important */
}

/* .side-bar a:active .tabs p {
    color: white;
} */

.side-bar-md .active,
.side-bar-md a:active {
    background: transparent;
}

/* .side-bar svg {
    stroke: black;
}
.side-bar .active svg{
    fill: var(--primary-color);
    stroke: var(--primary-color);
} */
.longBar {
    width: 4px;
    height: 100%;
    background: white;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    transition: .3s ease-in;
}

.bar-active {
    background: var(--secondary-color);
}

.tabs:hover .longBar {
    background: var(--secondary-color);
}

.shero-head {
    font-size: 30px;
    font-weight: 700;
    line-height: 40.48px;
    letter-spacing: -0.04em;
}

.text-bal {
    font-size: 16px;
    font-weight: 700;
    line-height: 20.24px;
    letter-spacing: -0.04em;
}

.bal {
    font-size: 30px;
    font-weight: 700;
    line-height: 40.48px;
    letter-spacing: -0.04em;
}

.tabCreate {
    font-size: 14px;
    font-weight: 450;
    line-height: 16px;
    letter-spacing: -0.02em;
}

.tab-flex button {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    background: transparent;
    border: 1px solid black;
}

.j-box {
    min-width: 276px;
    width: 276px;
    height: 240px;
    background: white;
    color: black;
    border: 1px solid black;
}

.jb-header {
    font-size: 20px;
    font-weight: 700;
    line-height: 25.3px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}

.jb-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 17.71px;
    letter-spacing: -0.02em;
}

.jb-last {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.draftBtn {
    font-size: 10px !important;
    font-weight: 700;
    line-height: 20px;
    color: white;
}

.getStart-Header {
    font-size: 20px;
    font-weight: 450;
    line-height: 25.3px;
}

.lHeading {
    font-size: 12px;
    font-weight: 450;
    line-height: 15.18px;
    letter-spacing: -0.20000000298023224px;
}

.lText {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

.miscDiv {
    background: #d4e2cc64;
}

.sm-md {
    display: none;
}

.draftBtn,
.lm-btn {
    height: auto;
}

.svg-cont {
    /* background: var(--primary-alt); */
    border-radius: 50%;
    height: 40px;
    width: 40px;
}

/* MAIN DASHBOARD */


/* PAYMENTS */
.payment-header {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 500;
    line-height: 40.48px;
}

.funds-header {
    font-size: 17px;
    font-weight: 700;
    line-height: 25.2px;
    color: var(--primary-alt);
}

.in-head {
    font-size: 16px;
    font-weight: 450;
    line-height: 24px;
}

.av-amount {
    font-size: 34px;
    font-weight: 700;
    line-height: 32px;
    color: var(--primary-color);
}

.payment-box {
    border: 1px solid #DADADA;
    width: 100%;
    height: 100%;
}

.payment-box button {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.pm-head {
    font-size: 17px;
    font-weight: 700;
    line-height: 25.2px;
}

.pm-box {
    border: 1px solid #DADADA;
}

.pMethod button {
    font-weight: 500;
    line-height: 20px;
}

.ts-boxHead,
.emailS {
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    color: #404145;
}

.ts-box {
    border: 1px solid #DADBDD;
}

/* PAYMENTS */

/* MANAGE */
.select-selected {
    font-size: 14px;
}

.tab1 {
    color: var(--primary-color);
    height: auto;
}

.t-active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.aj-btn {
    color: var(--primary-color);
}

.jp-header {
    font-size: 20px;
    font-weight: 500;
    line-height: 25.3px;
}

.defaultTag p, .defaultTag a {
    color: var(--primary-color);
    transition: .3s ease-in-out;
}

.defaultTag p:hover, .defaultTag a:hover {
    color: var(--secondary-color);
}

.fw-600 {
    font-weight: 600;
}

.setBtn {
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid var(--secondary-color);
    background: transparent;
}


.sm-tag {
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
}

.jb-job-desc {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jb-name {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
}

.jb-posted {
    font-size: 12px;
    font-weight: 450;
    line-height: 17.71px;
    color: var(--primary-color);
}

.select-items div {
    font-size: 14px;
}

.Price {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

/* MANAGE */


/* SURE */
.su-p {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.r-textt {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
    width: 90%;
    max-width: 353px;
}

.r-textt span {
    font-weight: 900;
}

.sBtn {
    width: 136px;
}

/* SURE */


/* METHOD */
.mtd-header {
    font-size: 32px;
    font-weight: 700;
    line-height: 40.48px;
    letter-spacing: -0.02em;
}

.tm-head,
.act-date {
    color: var(--primary-alt);
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
}

.act-date {
    color: var(--primary-color);
}

/* METHOD */


/* PAYMENT METHOD */
.fm-header {
    font-size: 20px;
    font-weight: 500;
    line-height: 25.3px;
    letter-spacing: -0.30000001192092896px;
}

.pInput p {
    font-size: 16px;
    font-weight: 450;
    line-height: 12px;
    letter-spacing: 0.30000001192092896px;
}

.pInput input,
.pInput select {
    font-size: 14px;
    background: #E5E5E5;
    padding: .5rem 1rem;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.cardText {
    font-size: 17px;
    font-weight: 450;
    line-height: 25.2px;
    color: var(--primary-color);
}

.gy-longBar p {
    color: var(--primary-color);
}

/* PAYMENT METHOD */


/* USER PROFILE */
.prHeader {
    font-size: 20px;
    font-weight: 500;
    line-height: 25.3px;
    letter-spacing: -0.04em;
    color: var(--primary-alt);
}

.y-jb-header {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-alt);
}

.addr {
    font-family: Circular Std;
    font-size: 14px;
    font-weight: 450;
    line-height: 21.84px;
    letter-spacing: -0.04em;
    color: var(--primary-alt);
}

.avatarLogo {
    width: 116px;
    height: 116px;
    border: 1px solid var(--primary-color);;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imageShow img {
    width: 116px;
    height: 116px;
    object-fit: cover;
}

.theAvatarLabel {
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    left: 90%;
    top: 80%;
}

.qHead {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary-alt);
}

.qText {
    font-size: 12px;
    font-weight: 450;
    line-height: 15.18px;
    color: var(--primary-color);
}

.tab-flex {
    background: rgba(255, 255, 255, 0.052);
    height: 100%;
    border: 1px solid black;
}

/* USER PROFILE */


/* SETTINGS */
.personalBtn {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.20000000298023224px;
}

.sInput p {
    font-size: 16px;
    font-weight: 450;
    line-height: 12px;
    letter-spacing: .3px;
    color: var(--primary-color);
}

.deleteHeader {
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.20000000298023224px;
    color: var(--primary-color);
}

.dlt-text {
    font-size: 12px;
    font-weight: 450;
    line-height: 15.18px;
    letter-spacing: -0.20000000298023224px;
    color: var(--primary-color);
}

.dAccount button {
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.20000000298023224px;
}

.pwMain {
    font-size: 18px;
    font-weight: 600;
    line-height: 12px;
    text-align: left;
    color: var(--primary-color);
}

.pwText {
    font-size: 16px;
    font-weight: 450;
    line-height: 15.18px;
    letter-spacing: -0.20000000298023224px;
    color: var(--primary-color);
}

.deleteRadio label {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
    margin-left: .5rem;
}

.pmDesc {
    font-size: 16px;
    font-weight: 450;
    line-height: 12px;
    letter-spacing: 0.30000001192092896px;
    color: var(--primary-alt);
}

.pmAmt {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: var(--primary-color);
}

.pmTotal {
    font-size: 16px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0.30000001192092896px;
    color: var(--primary-alt);
}

.pmTotal1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
    color: var(--primary-color);
}

/* SETTINGS */


/* RESUME */
.cmNameTag {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.02em;
}

.cmSmall {
    font-size: 8px;
    font-weight: 450;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.cmHead {
    font-size: 12px;
    font-weight: 500;
    line-height: 15.18px;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.cmText {
    font-size: 12px;
    font-weight: 450;
    line-height: 15.18px;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.tdTag {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary-alt);
}

.tdText {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
    color: var(--primary-color);
}

.skillSet {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.skillSet span {
    font-size: 12px;
    font-weight: 450;
}

.fw500 {
    font-weight: 500;
}

.smWidth {
    width: 80%;
}

.likearea div {
    height: 100%;
}

.rbox p {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-color);
}

.created {
    font-size: 14px;
    font-weight: 450;
    line-height: 20px;
    color: var(--primary-color);
}

.subHeader {
    font-size: 20px;
    font-weight: 450;
    line-height: 25.3px;
    color: var(--primary-color);
}

.quoteText {
    font-size: 16px;
    font-weight: 450;
    line-height: 18px;
    letter-spacing: 0.30000001192092896px;
    color: var(--primary-alt);
}

/* RESUME */


/* PROPOSAL */
.sbHeader {
    font-size: 48px;
    font-weight: 500;
    line-height: 60.72px;
    letter-spacing: -0.04em;
    color: var(--primary-color);
}

/* PROPOSAL */



/* TEST */
.testQuestion p,
.testQuestion label {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

.countDown {
    font-size: 48px;
    font-weight: 500;
    line-height: 60.72px;
    letter-spacing: -0.04em;
    color: #9A463D;
}

.timer {
    width: 170px;
}

.pCreditHeader {
    font-size: 16px;
    font-weight: 450;
    line-height: 12px;
    letter-spacing: 0.30000001192092896px;
}

.avaB {
    font-size: 17px;
    font-weight: 450;
    line-height: 25.2px;
    color: var(--primary-color);
}

.dHeadd {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-color);
}

.creditCharge {
    font-size: 24px;
    font-weight: 700;
    line-height: 20px;
    color: var(--primary-color);
}

/* TEST */



/* GRADE */
.gHeader {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.gText {
    font-size: 14px;
    font-weight: 450;
    line-height: 17.71px;
}

/* GRADE */


.conHead {
    font-size: 48px;
    font-weight: 500;
    line-height: 76px;
    letter-spacing: -0.04em;
    color: var(--primary-color);
}

.conText {
    font-size: 16px;
    font-weight: 450;
    line-height: 20.24px;
    color: var(--primary-color);
}

.contact-header {
    margin-top: 3rem;
}

.sc-image {
    background: url(../../assets/038.png);
    background-repeat: no-repeat;
    height: 186px;
    width: 100%;
}

.contact-child form {
    max-width: 360px;
    margin: 0 auto
}

.contact-child.first-chd {
    background: var(--primary-alt);
    background-size: contain;
    height: 450px;
    max-width: 491px;
    position: relative;
}

.progressBar {
    width: 100%;
    height: 9px;
    transition: .3s ease-in-out;
}

.progress-sm {
    position: absolute;
    top: 55px;
    z-index: 99
}

.progress {
    transition: .3s ease-in-out;
    background: var(--primary-color);
    border-radius: 0;
    height: 100%;
}

.backBtn {
    border: 1px solid var(--primary-color);
    border-radius: .25rem;
}

.backBtn button, .Btn button {
    height: auto!important;
}

.Btn button {
    border: 1px solid var(--primary-color);
}

.nav-btn {
    width: 100%;
    bottom: 0%;
    left: 0;
}

.btn-validate:disabled {
    background: rgb(199, 199, 199);
    cursor: not-allowed;
}

.errorMsgg {
    top: 90px;
    right: -300px;
    transition: .3s ease-in-out;
    max-width: 260px;
    width: 100%;
    z-index: 9999999999999;
}

.insuf3 {
    border: 1px solid rgba(255, 0, 0, 0.11);
    background: #f8f2f2;
    color: var(--primary-color);
    border-left: 3px solid red;
}

.message-main {
    width: 35%;
    height: calc(100vh - 8rem);
}

.errorMsg {
    top: 90px;
    right: -300px;
    transition: .3s ease-in-out;
    z-index: 9999999999999;
    max-width: 260px;
    width: 100%;
}

.insuf {
    border: 1px solid #28A1381A;
    background: #F2F8F2;
    color: var(--primary-color);
    border-left: 5px solid var(--primary-color)
}

.createBtn button {
    width: 150px;
    font-size: 16px !important;
}

.offcanvas .active {
    background: #D4E2CC;
}

.offcanvas .bar-active {
    height: 50px;
}

.jobAreaMatch button {
    height: auto;
}

.y-jb-text button {
    height: auto;
    font-size: 14px !important;
    font-weight: 600;
}

.y-jb-text a {
    font-weight: 600;
}

.settings-btn {
    width: 100%;
    max-width: 100px;
}

.prBtn button,
.settings-edit button,
.dAccount button,
.formatBtn {
    height: auto;
}

.personalBtn {
    font-size: 20px !important;
}

@media screen and (max-width: 1199px) {
    .sv-reason-image_block {
        position: absolute;
        top: 32%;
        left: -20%;
        transform: translate(-50%, -50%);
    }

    .sv-hanging_image {
        width: 80%;
        height: auto;
    }

    .profile-container {
        padding: 0;
    }

    .message-main {
        width: 45%;
        height: calc(100vh - 8rem);
    }

    .message-body {
        width: 67%;
        background: #EFF2F4;
    }

    /* .text-preview {
        width: 100%;
        max-width: 210px;
    } */

    .insuf {
        border: 1px solid #28A1381A;
        background: #F2F8F2;
        color: white;
    }

    .insuf2 {
        border: 1px solid rgba(255, 166, 0, 0.11);
        background: orange;
        color: white;
    }

    .insuf3 {
        border: 1px solid rgba(255, 0, 0, 0.11);
        background: #f8f2f2;
        color: var(--primary-color);
    }

    .image__block {
        background: white;
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }

    .errorMsgg,
    .errorMsg {
        top: 60px;
    }

    /* .insuf3 {
        border: 1px solid rgba(255, 0, 0, 0.11);
        background: red;
        color: white;
    } */
    .image__block {
        background: white;
        border-radius: 50%;
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 991px) {
    ::-webkit-scrollbar {
        display: none !important;
    }

    .dropdown-row {
        display: none !important;
    }

    .login-area {
        width: 20%;
    }

    .hamburger {
        display: block;
    }

    /* HERO SECTION */
    .main-body_header div {
        width: var(--width-wide);
    }

    .main-header {
        font-size: var(--font50)
    }

    .hero-image {
        display: none;
    }

    .widthWide {
        width: var(--width-wide) !important;
    }

    /* HERO SECTION */

    /* REASON SECTION */
    .sv-reason_header {
        font-size: var(--font50)
    }

    .sv-reason-flex_text {
        font-size: 25px;
    }

    .sv-reason_main,
    .sv-reason_minor {
        height: auto;
    }

    .sv-reason-image_block {
        position: absolute;
        top: 50%;
        left: 80%;
        transform: translate(-50%, -50%);
    }

    .sv-hanging_image {
        width: 100%;
        height: auto;
    }

    /* REASON SECTION */

    .option-item-popup {
        position: absolute;
        display: none;
        top: 35%;
        left: 64%;
        border: 1px solid #DADADA;
        width: 330px;
        transform: translate(-50%, -50%);
    }

    /* GRAPH SECTION */
    .sv-graph_header {
        font-size: 38px;
    }

    /* GRAPH SECTION */


    /* CLIENTS SECTION */
    .sv-client {
        height: auto;
    }

    .reverse {
        flex-direction: column-reverse !important;
    }

    .sv-client_header {
        font-size: 42px;
        line-height: 46px;
    }

    /* CLIENTS SECTION */


    /* BROWSE */
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .browse-box_header {
        font-size: 20px;
    }

    .browse-header {
        font-size: 30px;
    }

    .browse-mini_text {
        font-size: 14px;
    }

    /* BROWSE */



    /* TALENT */
    .talent-mini_text {
        font-size: 16px;
    }

    .talent-header {
        font-size: 40px
    }

    .talent-text {
        font-size: 14px;
    }

    .find-box {
        height: 130px;
    }

    .find-box span {
        font-size: 20px;
        height: 64px;
        line-height: 24px;
    }

    .find-box a {
        font-size: 12px;
    }

    /* TALENT */


    /* TRUST SECTION*/
    .slab {
        flex: 0 0 auto;
        width: 70%;
    }

    /* TRUST SECTION*/



    /* LOREM */
    .lorem-header {
        font-size: 30px;
        font-weight: 500;
        line-height: 52px;
        letter-spacing: -0.04em;
    }

    .lorem-text {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
    }

    /* LOREM */


    /* FOOTER */
    .footer-main,
    .follow-container,
    .footer-mini-flex {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-mini-flex {
        gap: 2rem;
    }

    /* FOOTER */


    /* DASHBOARD */
    .dashboard-container,
    .second-flexx {
        margin-bottom: 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        gap: 40px;
    }

    .dashboard-header {
        font-size: 40px;
        line-height: 46px;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

    .dashboard-text {
        font-size: 16px;
        line-height: 26px;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .dashboard-image {
        width: 100%;
        height: auto;
    }

    .dashboard-job {
        margin-top: 1rem;
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .select-cat,
    .select-dropdown {
        width: 100%;
        max-width: 500px;
        border: 0.5px solid #E5E5E5;
        background: #F2F2F2;
        margin: 0 auto;
    }

    /* DASHBOARD */

    /* FINAL */
    .rj-header {
        font-size: 20px;
        font-weight: 500;
        line-height: 26px;
    }

    .jobName {
        font-size: 16px;
        /* font-weight: 450; */
        line-height: 21.3px;
    }

    .cat-subheader {
        font-size: 14px;
        line-height: 18.24px;
    }

    .money-header {
        font-size: 32px;
        line-height: 40.54px;
    }

    .money {
        font-size: 42px;
        line-height: 52.72px;
    }

    .lg-md {
        display: none !important;
    }

    .sm-md {
        display: block
    }

    .side-bar {
        padding-right: 0;
    }

    .side-bar-md {
        width: 60px !important;
    }

    /* FINAL */

    /* MAIN DASHBOARD */
    .shero-head {
        font-size: 24px;
    }

    .text-bal {
        font-size: 15px;
    }

    .bal {
        font-size: 24px;
    }

    .tab-flex button {
        font-size: 10px;
    }

    /* MAIN DASHBOARD */


    /* PAYMENTS */
    .payment-header {
        font-size: 28px;
        font-weight: 500;
        line-height: 36.48px;
    }

    .av-amount {
        font-size: 28px;
        line-height: 36px;
    }

    .pm-head {
        font-size: 14px;
        line-height: 22.2px;
    }

    /* PAYMENTS */


    /* SURE */
    .su-p {
        font-size: 18px;
        line-height: 26px;
    }

    /* SURE */

    /* METHOD */
    .mtd-header {
        font-size: 28px;
        line-height: 36px;
    }

    /* METHOD */

    /* PAYMENT METHOD */
    .fm-header {
        font-size: 18px;
        line-height: 23.3px;
    }

    .pInput p {
        font-size: 14px;
        line-height: 10px;
    }

    .cardText {
        font-size: 15px;
        font-weight: 450;
        line-height: 25.2px;
        color: var(--primary-color);
    }

    /* PAYMENT METHOD */


    /* SETTINGS */
    .personalBtn {
        font-size: 18px;
        line-height: 30px;
    }

    /* SETTINGS */

    .rbox p {
        font-size: 18px;
        line-height: 18px;
    }

    .contact-child,
    .contact-child.first-chd {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-child form {
        max-width: 100%;
    }

    .message-main {
        width: 100% !important;
        height: calc(100vh - 1rem);
    }

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

    .sbHeader {
        font-size: 32px;
        font-weight: 500;
        line-height: 60.72px;
        letter-spacing: -0.04em;
        color: var(--primary-color);
    }

    .subHeader {
        font-size: 16px;
        font-weight: 450;
        line-height: 20.3px;
        color: var(--primary-color);
    }

    .quoteText {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --websiteWidth: 575;
        --maxWebsiteWidth: 860;
        --bodyWidth: 535;
    }

    .message-main {
        width: 100% !important;
        height: calc(100vh - 2rem);
    }

    .lg {
        display: none;
    }

    .sm {
        display: block;
    }

    .search {
        display: none !important;
    }

    .login-area {
        width: 40%;
    }

    .y-jb-header {
        font-size: 18px;
        font-weight: 500;
        color: var(--primary-alt);
    }

    .jb-name {
        font-size: 12px;
    }

    /* HERO SECTION */

    .main-header,
    .sv-reason_header {
        font-size: 60px;
        line-height: 46px;
    }

    /* HERO SECTION */

    /* CLIENT SECTION */
    .sv-client_main {
        padding: 1.5rem;
    }

    .c-mini_text {
        font-family: Circular Std;
        font-size: var(--font16);
        font-weight: 500;
        line-height: 25.3px;
    }

    .sv-client_header {
        font-size: 32px;
        line-height: 36px;
    }

    .sv-client_text {
        font-size: 13px;
        line-height: 24px;
    }

    /* CLIENT SECTION */


    /* BROWSE */
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .browse-box_header {
        font-size: 18px;
    }

    /* BROWSE */


    /* TALENT */
    .find-box {
        margin-bottom: 20px;
    }

    /* TALENT */


    /* TRUST SECTION*/
    .sv-trust-header {
        font-size: 40px;
        line-height: 40px;
    }

    .trust-paragraph {
        font-size: 18px;
    }

    .trust-mini_text {
        font-size: 12px;
    }

    .slab {
        flex: 0 0 auto;
        width: 100%;
    }

    /* TRUST SECTION*/



    /* TOP JOBS */
    .jobs {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .jobs a {
        font-size: 12px;
    }

    /* TOP JOBS */


    /* FOOTER */
    .footer-mini-flex a {
        font-size: 12px;
    }

    .footer-mini-flex {
        gap: 1rem;
    }

    /* FOOTER */


    /* CLIENT DASHBOARD */
    .radio-item1,
    .radio-item2,
    .radio-item3 {
        width: 100%;
    }

    /* CLIENT DASHBOARD */


    .top-side-bar,
    .main-bar {
        padding-top: 1rem;
    }

    .lBreak {
        display: block;
    }

    /* DASHBOARD */
    .dashboard-container {
        margin-top: 0px;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: start !important;
        padding-bottom: 6rem;
    }

    /* .dashboard-image-block {
        display: none;
    } */
    .dashboard-header {
        font-size: 40px;
        line-height: 50px;
    }

    .dashboard-text {
        font-size: 16px;
        line-height: 24px;
        max-width: 350px;
    }

    /* DASHBOARD */


    /* SKILLS */
    .skill-header {
        font-size: 16px;
        font-weight: 450;
    }

    .tip-header {
        font-size: 14px;
        font-weight: 450;
        line-height: 20.24px;
        color: var(--primary-alt);
    }

    .c-box {
        font-size: 12px;
        font-weight: 500;
        line-height: 20px;
    }

    .c-box svg {
        width: 18px;
        height: 18px;
    }

    /* SKILLS */


    /* SCOPE */
    .scope-head {
        font-size: 18px;
        font-weight: 450;
        line-height: 25.3px;
        color: #1C1C1C;
    }

    .scope-txt {
        font-size: 14px;
        font-weight: 450;
        line-height: 20.24px;
    }

    /* SCOPE */

    /* BUDGET */
    .price {
        font-size: 14px;
        font-weight: 450;
        line-height: 18.24px;
    }

    /* BUDGET */



    /* FINAL */
    .file-upload {
        font-size: 14px;
        line-height: 18px;
    }

    .max-size {
        font-size: 12px;
        line-height: 15.71px;
    }

    .rj-header {
        font-size: 18px;
        line-height: 24px;
    }

    .jobName {
        font-size: 14px;
        line-height: 19.3px;
    }

    .cat-subheader {
        font-size: 12px;
        line-height: 16.24px;
    }

    .document {
        gap: .25rem !important;
    }

    .document p,
    .direction button {
        font-size: 13px;
    }

    .document img {
        width: 15px;
        height: 15px;
        margin-bottom: .25em;
    }

    .direction svg {
        width: 14px;
        height: 14px;
    }

    .document svg {
        width: 18px;
        height: 18px;
        margin-bottom: .2em;
    }

    .payHead {
        font-size: 14px;
        line-height: 18px;
    }

    .payDesc {
        font-size: 11px;
        line-height: 14.18px;
    }

    .commitHead {
        font-size: 14px;
        line-height: 10px;
    }

    .commitText {
        font-size: 12px;
        line-height: 15.71px;
    }

    .money-header {
        font-size: 24px;
        line-height: 30.54px;
    }

    .money {
        font-size: 32px;
        line-height: 40.72px;
    }

    /* FINAL */

    /* MAINDASHBOARD */
    .main-bar {
        width: 100%;
    }

    .bal {
        line-height: 15px;
    }

    /* .text-bal {
        font-size: 12px;
    } */
    .tabCreate {
        font-size: 12px;
    }

    /* .reviewArea {
        width: 60%;
    } */
    .svg-cont {
        width: 20px;
        height: 20px;
    }

    .svg-cont svg {
        width: 12px;
        height: 12px;
    }

    /* MAINDASHBOARD */


    /* PAYMENTS */
    .payment-header {
        font-size: 24px;
        font-weight: 500;
        line-height: 32.48px;
    }

    .funds-header {
        font-size: 15px;
        font-weight: 700;
        line-height: 23.2px;
    }

    .in-head {
        font-size: 14px;
        line-height: 22px;
    }

    .av-amount {
        font-size: 34px;
        line-height: 32px;
    }

    .pMethod button {
        font-size: 12px;
        line-height: 18px;
    }

    .ts-boxHead,
    .emailS {
        font-size: 12px;
        line-height: 14px;
    }

    /* PAYMENTS */


    /* SURE */
    .su-p {
        font-size: 16px;
        line-height: 24px;
    }

    .r-textt {
        font-size: 12px;
    }

    .sBtn {
        width: 100px;
        font-size: 12px;
    }

    /* SURE */

    button {
        font-size: 16px !important;
    }


    /* METHOD */
    .mtd-header {
        font-size: 24px;
        line-height: 32px;
    }

    /* METHOD */

    /* PAYMENT METHOD */
    .fm-header {
        font-size: 16px;
        line-height: 21.3px;
    }

    .cardText {
        font-size: 13px;
        line-height: 23.2px;
    }

    .defaultTag,
    .pm-innerText {
        font-size: 13px;
    }

    .pm-innerText {
        width: 50%;
    }

    .ts-box {
        width: 160px;
    }

    .tab-flex {
        background: rgba(255, 255, 255, 0.207);
        height: auto;
    }

    /* PAYMENT METHOD */


    /* SETTINGS */
    .personalBtn {
        font-size: 16px;
        line-height: 30px;
    }

    .sInput p {
        font-size: 12px;
    }

    .pwMain {
        font-size: 16px;
        line-height: 10px;
    }

    .deleteRadio {
        font-size: 12px;
        line-height: 15.71px;
    }

    .pmDesc {
        font-size: 14px;
        line-height: 10px;
    }

    .pmAmt {
        font-size: 14px;
        line-height: 18px;
    }

    .pmTotal {
        font-size: 14px;
        line-height: 10px;
    }

    .pmTotal1 {
        font-size: 20px;
        line-height: 18px;
    }

    /* SETTINGS */

    /* RESUME */
    .tFlex-big {
        width: 100%;
    }

    .tdTag {
        font-size: 14px;
    }

    .tdText {
        font-size: 12px;
    }

    .select-items div {
        font-size: 12px;
    }

    .Price {
        font-size: 14px;
        line-height: 18.24px;
    }

    /* RESUME */



    /* METHOD */
    .tm-head,
    .act-date {
        font-size: 12px;
        line-height: 18.24px;
    }

    .rbox p {
        font-size: 16px;
    }

    .created {
        font-size: 12px;
        line-height: 18px;
    }

    /* METHOD */


    /* TEST */
    .countDown {
        font-size: 28px;
        font-weight: 500;
        line-height: 60.72px;
        letter-spacing: -0.04em;
        color: #9A463D;
    }

    .timer {
        width: 120px;
    }

    .pCreditHeader,
    .dHeadd {
        font-size: 14px;
    }

    .avaB {
        font-size: 15px;
    }

    .creditCharge {
        font-size: 24px;
    }

    /* TEST */

    .option-item-popup {
        position: static;
        width: 100%;
    }

    .sb-svg img {
        width: 30px;
        height: 30px;
    }

    .main-bar {
        padding-bottom: 5rem;
    }

    .bottom-nav {
        bottom: 0;
        z-index: 99999;
        max-height: 16vh;
        /* From https://css.glass */
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .createBtn button {
        width: 130px;
        font-size: 14px !important;
    }

    .psc-Btn {
        height: auto!important;
    }
}

@media screen and (max-width: 599px) {
    .smWidth {
        width: 100%;
    }

    .likearea {
        width: 100%;
    }

    .select-cat,
    .select-dropdown {
        width: 100%;
        max-width: 100%;
        border: 0.5px solid #E5E5E5;
        background: #F2F2F2;
    }
}

@media only screen and (max-width: 500px) {}

@media screen and (max-width: 479px) {
    .dashboard-header {
        max-width: 300px;
        margin-left: 0;
    }

    .conHead {
        font-size: 38px;
        line-height: 36px;
        padding-bottom: 10px !important;
    }

    .logIn,
    .theSignUp {
        display: none;
    }

    .login-area {
        width: 20%;
    }

    .jb-text {
        font-size: 14px;
    }

    .dropdown-row {
        width: 50%;
    }

    /* .signUp {
        padding: 8px 5px;
    } */

    /* HERO SECTION */
    .main-header,
    .sv-reason_header {
        font-size: 30px;
    }

    .main-header span {
        font-size: 50px;
    }

    .main-paragraph {
        font-size: var(--font16);
    }

    .sv-reason-flex_text {
        font-size: 18px;
    }

    .sub-text {
        font-size: 13px;
    }

    /* HERO SECTION */


    /* GRAPH SECTION */
    .sv-graph_header {
        font-size: 28px;
        padding-bottom: 16px;
    }

    .sv-graph_text {
        font-size: 12px;
    }

    /* GRAPH SECTION */


    /* FOOTER */
    .sv-footer-container {
        padding: 2.5rem 1.5rem !important;
    }

    .copyright {
        font-size: 14px;
    }

    .footer-mini-flex a {
        font-size: 8px;
    }

    /* FOOTER */

    /* MAINDASHBOARD */
    .getStart-Header {
        font-size: 14px;
    }

    .lm-btn {
        font-size: 14px;
    }

    /* MAINDASHBOARD */

    /* PAYMENTS */
    .payment-box button {
        font-size: 12px;
        line-height: 18px;
    }

    /* PAYMENTS */

    /* USER PROFILE */
    .prHeader {
        font-size: 16px;
        line-height: 21.3px;
    }

    .addr {
        font-size: 12px;
        line-height: 19.84px;
    }

    .avatarLogo,
    .imageShow img {
        width: 100px;
        height: 100px;
    }

    /* USER PROFILE */


    .rwBtn,
    .cancelJob,
    .aj-btn,
    .aj-btn span {
        font-size: 13px !important;
    }

    .rwBtn {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* TEST */
    .testQuestion p,
    .testQuestion label {
        font-size: 14px;
    }

    /* TEST */

    .main-header span:before {
        content: "\A";
        white-space: pre;
    }

    .jp-header {
        font-size: 16px;
        font-weight: 500;
        line-height: 25.3px;
    }

    .jb-job-desc {
        font-size: 14px;
    }

    .dashboard-header {
        font-size: 40px;
        line-height: 46px;
        max-width: 400px;
        text-align: left;
    }

    .dashboard-text {
        font-size: 16px;
        line-height: 26px;
        max-width: 400px;
        text-align: left;
    }

    .dashboard-image {
        width: 70%;
        height: auto;
    }

    .dashboard-job {
        margin-top: 1rem;
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
        display: block;
    }

    .font-13 {
        font-size: 13px !important;
    }

    button {
        font-size: 13px !important;
        height: 40px;
    }

    .floating button {
        height: 40px;
    }

    /* .logo img {
        width: 65px;
        height: 23px;
    } */

    .jobAreaMatch button {
        font-size: 16px !important;
    }

}

@media only screen and (max-width: 360px) {
    .small-hero {
        padding-left: .5rem !important;
        padding-right: .5rem !important;
    }

    .createBtn button {
        width: 100%;
        width: 100px;
        font-size: 10px !important;
    }

    .text-bal {
        font-size: 14px;
    }

    .sb-svg img {
        width: 25px;
        height: 25px;
    }

    .tabCreate {
        font-size: 10px;
    }

    .y-jb-text button {
        font-size: 12px !important;
    }
}