:root {
    --primary-color: #6C47CD;
    --black: #222222;
    --white: #ffffff;
    --bg-grey: #F7F7F8;
    --border-grey: #DBDBDB;
    --p-color: #5C5C5C;
    --font-size-10: 10px;
    --font-size-12: 12px;
    --font-size-14: 14px;
    --font-size-14: 16px;
    --font-size-18: 18px;
    --font-size-22: 22px;
    --font-size-30: 30px;
    --font-size-45: 45px;
    --font-size-56: 56px;
    --font-weight-normal: normal;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-900: 900;
    --border-radius-10: 10px;
    --label-color: #939393;
    --text-gradient: linear-gradient(45deg, rgba(108, 71, 205, 1) 20%, #2AF598 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Geist", sans-serif;
    color: rgba(17, 25, 41, 1.0);
    width: 100%;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul, li {
    padding: 0px;
    margin: 0px;
}

p {
    margin-bottom: 0px;
}

.geist {
    font-family: "Geist", sans-serif;
}

.merriweather {
    font-family: "Merriweather", serif;
}

/*general style start*/
p {
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-normal);
    color: var(--p-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 7px 17px;
    font-size: var(--font-size-14);
    /*font-weight: var(--font-weight-600);*/
    border-radius: 100px;
    border: 1px solid var(--primary-color);
    overflow: hidden;
    position: relative;
    /*text-transform: capitalize;*/
    box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
    -webkit-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
    -moz-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-primary:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-primary:active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .btn-primary:after {
        content: '';
        width: 20px;
        height: 150px;
        position: absolute;
        left: -50px;
        top: -50px;
        background: #ffffff;
        transform: rotate(-50deg);
        opacity: 0.1;
        transition: 0.6s all;
    }

    .btn-primary:hover:after {
        left: 300px;
        transition: 0.6s all;
    }

    .btn-primary .btn_arrow {
        width: 28px;
        height: 28px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
    }

.title_initial {
    font-size: var(--font-size-30);
    font-weight: var(--font-weight-600);
    /*text-transform: capitalize;*/
    color: var(--primary-color);
    font-family: "Inter", sans-serif;
}

.title {
    font-size: var(--font-size-18);
    color: var(--black);
    /*font-weight: var(--font-weight-700);*/
    /*line-height: 37px;*/
    margin: 0 0 10px 0;
}

    .title.title_white {
        color: var(--white);
    }
/*general style end*/

/*header style start*/
header {
    position: relative;
    padding: 0 0 0.5px 0;
}

    header::after {
        content: '';
        width: 100%;
        height: 1px;
        /*background: #E4E3E0;*/
        background: linear-gradient(90deg, rgba(34, 34, 34, 1) 0%, rgba(97, 97, 97, 1) 52%, rgba(34, 34, 34, 1) 100%);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

.navbar-brand-sticky {
    display: none;
}

.sticky-top {
    background: none;
    z-index: 1030;
    position: sticky;
    width: 100%;
}
/*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
.navbar {
    padding: 0px !important;
}

.navbar-nav {
    margin: 0 auto;
    gap: 15px;
}

    .navbar-nav .nav-link {
        font-size: 15px;
        /*font-weight: var(--font-weight-600);*/
        text-transform: capitalize;
        color: #fff;
        transition: 0.6s all;
        /*font-weight: var(--font-weight-600);*/
    }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
            transition: 0.6s all;
        }

.header_buttons .sign_in_btn {
    color: var(--white);
    font-size: 14px;
    font-weight: var(--font-weight-600);
    border-radius: 50px;
    border: 1px solid var(--white);
}

    .header_buttons .sign_in_btn:hover {
        color: #000;
        background-color: var(--white);
    }

.sign_up_btn {
    background: #000;
    color: var(--white);
    box-shadow: none;
    border: 1px solid var(--primary-color);
    transition: 0.6s all;
}

    .sign_up_btn:hover {
        background: none;
        transition: 0.6s all;
        color: var(--white);
    }

.r_sign_up_btn {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
    font-size: 15px;
    /*font-weight: var(--font-weight-600);*/
    border: 1px solid var(--primary-color);
    transition: 0.6s all;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

    .r_sign_up_btn:hover {
        background: none;
        transition: 0.6s all;
        color: var(--primary-color);
    }

#mainHeader.is-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 999;
    animation: slideDown 0.3s ease-in-out;
}

    #mainHeader.is-sticky .main_logo {
        display: none;
    }

    #mainHeader.is-sticky .navbar-brand-sticky {
        display: block;
    }

    #mainHeader.is-sticky .nav-link {
        color: var(--black);
    }

    #mainHeader.is-sticky .sign_in_btn {
        color: var(--black);
    }

    #mainHeader.is-sticky .sign_up_btn {
        background: var(--primary-color);
        color: var(--white);
    }

@keyframes slideDown {
    from {
        top: -100px;
    }

    to {
        top: 0;
    }
}

.navbar-toggler {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 5px;
}

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

.navbar-toggler-icon {
    width: 1em;
    height: 1em;
}
/*header style end*/

/*main banner start*/
.main_banner {
    padding: 150px 0 60px 0;
    margin-top: -70px;
    background: #000;
    text-align: center;
    /*background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.12) 25%, transparent 25%), linear-gradient(-45deg, rgba(0, 0, 0, 0.12) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.12) 75%), linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.12) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;*/
}

.hiring_tag {
    color: var(--white);
    text-transform: capitalize;
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-600);
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    padding: 7px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

    .hiring_tag::before {
        width: 230px;
        height: 2px;
        position: absolute;
        content: '';
        left: -250px;
        top: 50%;
        transform: translateY(-50%);
        background: #EBE4FA;
        background: linear-gradient(90deg, rgba(34, 34, 34, 1) 0%, rgba(108, 71, 205, 1) 100%);
    }

    .hiring_tag::after {
        width: 230px;
        height: 2px;
        position: absolute;
        content: '';
        right: -250px;
        top: 50%;
        transform: translateY(-50%);
        background: #EBE4FA;
        background: linear-gradient(90deg, rgba(108, 71, 205, 1) 0%, rgba(34, 34, 34, 1) 100%);
    }

@keyframes move-border {
    0% {
        box-shadow: 5px 0 0 0 #EBE4FA, -5px 0 0 0 #EBE4FA, 0 5px 0 0 #EBE4FA, 0 -5px 0 0 #EBE4FA;
    }

    25% {
        box-shadow: 5px 0 0 0 #EBE4FA, 0 5px 0 0 #EBE4FA, -5px 0 0 0 #EBE4FA, 0 -5px 0 0 #EBE4FA;
    }

    50% {
        box-shadow: 0 5px 0 0 #EBE4FA, 0 -5px 0 0 #EBE4FA, -5px 0 0 0 #EBE4FA, 5px 0 0 0 #EBE4FA;
    }

    75% {
        box-shadow: 0 5px 0 0 #EBE4FA, -5px 0 0 0 #EBE4FA, 5px 0 0 0 #EBE4FA, 0 -5px 0 0 #EBE4FA;
    }

    100% {
        box-shadow: 5px 0 0 0 #EBE4FA, 0 -5px 0 0 #EBE4FA, 0 5px 0 0 #EBE4FA, -5px 0 0 0 #EBE4FA;
    }
}

.main_banner h1 {
    margin: 45px 0 15px 0;
    color: var(--white);
    font-size: var(--font-size-56);
    font-weight: var(--font-weight-600);
}

.main_banner P {
    padding: 0 200px;
    margin: 20px 0 0 0;
    color: var(--white);
    letter-spacing: 0.3px;
    font-size: 24px;
    /*font-weight: var(--font-weight-700);*/
}

.banner_cta {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0 0 0;
}

    .banner_cta .btn {
        box-shadow: none;
    }

    .banner_cta .banner_video_btn {
        background: var(--white);
        color: var(--black);
        padding: 7px 17px;
        font-size: var(--font-size-14);
        font-weight: var(--font-weight-600);
        border-radius: 100px;
        text-transform: capitalize;
        box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
        -webkit-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
        -moz-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .banner_cta .btn_arrow {
        background: none;
    }
/*main banner end*/

/*video section start*/
.video_section {
    margin: -100px 0 50px 0;
    position: relative;
}

    .video_section::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 350px;
        left: 0;
        bottom: 0;
        background: #ffffff;
        background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }

    .video_section img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .video_section .video_cta {
        position: relative;
        z-index: 9;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: -150px 0 0 0;
    }

    .video_section .video_play_btn {
        border-radius: 100%;
        border: 1px solid var(--border-grey);
        width: 75px;
        height: 75px;
        background: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .video_section h4 {
        color: var(--black);
        font-size: var(--font-size-30);
        font-weight: var(--font-weight-700);
        text-align: center;
    }

/*video section end*/

/*about section start*/
.about_paperhire {
    padding: 60px 0;
}

    .about_paperhire .btn-primary {
        margin: 15px 0 0 0;
        box-shadow: none;
        background-color: #222222;
        padding: 10px 40px;
        font-weight: 600;
        border: none;
    }


    .about_paperhire .section_title_border {
        padding: 3px;
        background: linear-gradient(90deg, #4C7AFA, #AE6ED1, #FDB03C);
        border-radius: 10px;
    }

    .about_paperhire .section_title {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 10px;
    }

    .about_paperhire .section_text {
        float: left;
    }

    .about_paperhire .section_button {
        float: right;
    }

    .about_paperhire .title_initial {
        color: #6c47cd;
    }

    .about_paperhire .title {
        color: #222;
        margin: 0px;
    }

.about_graphic {
    display: flex;
    justify-content: center;
    position: relative;
}

    .about_graphic img {
        position: relative;
        z-index: 9;
    }

    .about_graphic::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        background: #6C47CD;
        background: radial-gradient(circle, rgb(108 71 205 / 21%) 0%, rgba(255, 255, 255, 1) 52%);
    }
    /* .about_graphic img { width:calc(100% - -300px); margin-top: -300px; } */
    .about_graphic .about_nodes {
        width: 50px;
        height: 50px;
        position: absolute;
        z-index: 99;
        border-radius: 10px;
        background: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
        -webkit-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
        -moz-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);
    }

.about_nodes.node_first {
    transform: rotate(-30deg);
    left: 60px;
    top: 150px;
}

.about_nodes.node_second {
    transform: rotate(10deg);
    left: 400px;
    top: -30px;
}

.about_nodes.node_third {
    transform: rotate(73deg);
    right: 60px;
    bottom: 50px;
}
/*about section end*/

/*how it works style start*/
.how_it_work_section {
    position: relative;
    z-index: 9;
}

.how_it_works {
    margin-bottom: 60px;
    padding: 55px 15px 0 15px;
    border-radius: 25px;
    background: #222222;
    background: #222222;
    background: linear-gradient(180deg, #000 0%, rgba(34, 34, 34, 1) 76%, rgba(38, 23, 76, 1) 100%);
    position: relative;
}

    .how_it_works .title {
        font-size: var(--font-size-18);
        color: var(--white);
        /*font-weight: var(--font-weight-600);*/
        line-height: 37px;
        margin: 0 0 10px 0;
    }

    .how_it_works .title_initial {
        color: #fff;
    }

.work_step_area {
    margin: 50px 0;
    padding: 0 70px;
    position: relative;
}

    .work_step_area::after {
        content: '';
        position: absolute;
        width: calc(100% - 120px);
        height: 1px;
        background: #3B3B3B;
        left: 50%;
        bottom: 85px;
        transform: translateX(-50%);
    }

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

    .steps .step_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        position: relative;
        z-index: 9;
    }

    .steps .steps_character {
        /*border: 2px dashed #3B3B3B;
        border-radius: 15px;*/
        background: #353535;
        background: radial-gradient(circle, rgba(53, 53, 53, 0.51) 0%, rgba(36, 36, 36, 1) 100%);
        position: relative;
        width: 180px;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


        .steps .steps_character::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: repeating-linear-gradient(90deg, #3B3B3B 0 1px, transparent 10px 20px), repeating-linear-gradient(180deg, #3B3B3B 0 1px, transparent 10px 20px), repeating-linear-gradient(270deg, #3B3B3B 0 1px, transparent 10px 20px), repeating-linear-gradient(0deg, #3B3B3B 0 1px, transparent 10px 20px);
            background-repeat: no-repeat;
            background-size: 100% 2px, /* top */
            2px 100%, /* right */
            100% 2px, /* bottom */
            2px 100%; /* left */
            background-position: top left, top right, bottom left, top left;
            animation: moveBorder 2s linear infinite;
            pointer-events: none;
        }

        .steps .steps_character::after {
            content: '';
            width: 1px;
            height: 28px;
            border: 1px dashed #5a5a5a;
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
        }

@keyframes moveBorder {
    0% {
        background-position: 0 0, 100% 0, 0 100%, 0 0;
    }

    100% {
        background-position: 20px 0, 100% 20px, -20px 100%, 0 -20px;
    }
}

.steps .steps_count {
    border-radius: 100%;
    width: 25px;
    height: 25px;
    background: var(--black);
    border: 1px solid var(--white);
    color: var(--white);
    display: flex;
    justify-content: center;
    transition: 0.6s all;
}

.steps .step_box:hover .steps_count {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transition: 0.6s all;
}

.steps p {
    width: 70%;
    color: var(--white);
    font-size: var(--font-size-14);
    text-align: center;
}

.how_work_cta {
    position: relative;
}

    .how_work_cta .cutout {
        position: relative;
        top: 36px;
        min-width: 200px;
        background: var(--white);
        border-radius: 22px;
        mix-blend-mode: destination-out;
        padding: 27px 25px 35px 25px;
        display: flex;
        justify-content: center;
    }

        .how_work_cta .cutout .btn-primary {
            padding: 12px 17px;
            margin-top: -5px;
        }

/*        .how_work_cta .cutout::before {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            background-size: contain;
            bottom: 14px;
        }

        .how_work_cta .cutout::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            background-size: contain;
            bottom: 14px;
            transform: scaleX(-1);
        }*/
/*how it works style end*/

/*user profile section start*/
.user_profile_section {
    background: var(--white) url(../images/user_prof_top_shade.svg) no-repeat;
    background-size: contain;
    background-position: center -70px;
    padding: 60px 0;
    /*margin: 80px 0;*/
    position: relative;
    overflow: hidden;
}

    .user_profile_section::before {
        content: '';
        width: 100%;
        height: 0.8px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(222, 210, 255, 1) 52%, rgba(255, 255, 255, 0) 100%);
    }

    .user_profile_section::after {
        content: '';
        width: 1000px;
        height: 600px;
        position: absolute;
        bottom: -200px;
        left: 50%;
        transform: translateX(-50%);
        background: url(../images/user_prof_bottom_shade.svg) no-repeat;
        background-size: contain;
        background-position: center;
    }

.user_profile_listing {
    padding: 30px 0 0 0;
    position: relative;
    z-index: 9;
}

.user_pic {
    width: 68px;
    height: 68px;
    border-radius: 100%;
}

    .user_pic img {
        height: 68px;
        width: 68px;
    }

.profile_one {
    background: var(--primary-color);
    border-radius: var(--border-radius-10);
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .profile_one .user_name {
        color: var(--white);
        font-size: var(--font-size-14);
        font-weight: var(--font-weight-600);
        /*text-transform: capitalize;*/
    }

        .profile_one .user_name span {
            font-size: var(--font-size-10);
            color: var(--white);
            font-weight: normal;
            padding: 0;
            margin: 0;
        }

    .profile_one .user_location {
        color: var(--white);
        font-size: var(--font-size-14);
        font-weight: normal;
        display: flex;
        align-items: center;
        gap: 7px;
    }

.profile_two {
    border-radius: var(--border-radius-10);
    border: 1px solid var(--border-grey);
    /*background: url(../images/profile_two_head.svg) no-repeat;*/
    background-position: top center;
}

    .profile_two .user_pic {
        margin-top: 20px;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-left: 1px;
    }

    .profile_two .user_name {
        color: var(--primary-color);
        font-size: var(--font-size-18);
        font-weight: var(--font-weight-600);
        /*text-transform: capitalize;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 5px 0;
    }

    .profile_two .user_info span {
        color: var(--label-color);
        font-size: var(--font-size-14);
    }

.user_skill_set {
    padding: 10px;
    /*display: flex;
    flex-wrap: wrap;
    gap: 7px;*/
}

.skill_lbl {
    text-align: center;
    color: var(--primary-color);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-600);
    padding: 20px 10px 5px 10px;
}

.user_skill_set .skills {
    color: #222;
    /*background: #E9E9E9;*/
    display: flex;
    flex: 0 0 48%;
    justify-content: center;
    font-size: 14px;
    /*font-weight: var(--font-weight-600);*/
    border-radius: 50px;
    border: 1px solid #efefef;
    padding: 5px 0;
}

.profile_two .user_availability {
    color: var(--white);
    font-size: var(--font-size-12);
    background: var(--text-gradient);
    padding: 4px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    margin: 7px 0 0 0;
}

.profile_three_area {
    display: flex;
    align-items: flex-end;
}

.profile_three {
    border-radius: var(--border-radius-10);
    border: 1px solid var(--border-grey);
    width: 100%;
    animation: zoomPulse 2s ease-in-out infinite;
}

    .profile_three .profile_three_head {
        display: flex;
        padding: 10px;
        align-items: center;
        gap: 10px;
    }

    .profile_three .user_name {
        color: var(--primary-color);
        font-size: var(--font-size-18);
        font-weight: var(--font-weight-600);
        /*text-transform: capitalize;*/
        display: flex;
        flex-direction: column;
        margin: 5px 0;
    }

    .profile_three .user_info span {
        color: var(--label-color);
        font-size: var(--font-size-10);
    }

    .profile_three .user_availability {
        color: var(--white);
        font-size: var(--font-size-12);
        background: var(--black);
        padding: 4px;
        text-align: center;
        margin: 0 0 7px 0;
        text-align: center;
        padding: 8px 0;
    }

.profile_four {
    background: var(--primary-color);
    border-radius: var(--border-radius-10);
    width: 100%;
}

    .profile_four .profile_four_head {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 25px 0;
    }

    .profile_four .user_name {
        color: var(--white);
        font-size: var(--font-size-18);
        font-weight: var(--font-weight-600);
        /*text-transform: capitalize;*/
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 5px 0;
    }

    .profile_four .user_info span {
        color: var(--white);
        font-size: var(--font-size-14);
        font-weight: normal;
    }

    .profile_four .user_location {
        color: var(--white);
        font-size: var(--font-size-14);
        font-weight: normal;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
    }

    .profile_four .user_availability {
        color: var(--white);
        font-size: var(--font-size-12);
        background: var(--black);
        padding: 4px;
        text-align: center;
        border-radius: 0 0 10px 10px;
        margin: 7px 0 0 0;
    }

.profile_five {
    border-radius: var(--border-radius-10);
    border: 1px solid var(--border-grey);
    width: 100%;
}

    .profile_five .profile_five_head {
        display: flex;
        padding: 10px;
        align-items: center;
        gap: 10px;
        background: #222222;
        border-radius: 10px 10px 0 0;
    }

    .profile_five .user_name {
        color: var(--white);
        font-size: var(--font-size-18);
        font-weight: var(--font-weight-600);
        /*text-transform: capitalize;*/
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .profile_five .user_info span {
        color: var(--primary-color);
        font-size: var(--font-size-10);
    }

    .profile_five .user_location {
        color: var(--white);
    }

    .profile_five .user_availability {
        color: var(--white);
        font-size: var(--font-size-12);
        font-weight: normal;
        background: var(--text-gradient);
        border-radius: 10px 10px 0 0;
        padding: 5px 0;
        text-align: center;
        width: calc(100% - 70px);
        margin: 0 auto;
        margin-top: 15px;
    }
/*user profile section end*/

/*technology section start*/
.technology_section {
    padding: 60px 0 0 0;
    position: relative;
    padding-bottom: 160px;
}

    .technology_section::after {
        content: '';
        position: absolute;
        top: 34%;
        transform: translate(-50%);
        left: 50%;
        width: 100%;
        height: 2px;
        background: #FFFFFF;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0.51) 0%, rgba(212, 195, 255, 1) 52%, rgba(255, 255, 255, 1) 100%);
        z-index: -1;
    }

    .technology_section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 200px;
        background: url(../images/technology_bg.svg) no-repeat;
        background-position: center 10px;
        background-size: cover;
    }

.technology_right_panel {
    width: 100%;
    height: 100%;
    background: url(../images/technology_right.png) no-repeat;
    background-position: right center;
    background-size: contain;
    z-index: 9;
}

.technology_left_panel {
    width: 100%;
    height: 100%;
    background: url(../images/technology_left.png) no-repeat;
    background-position: left center;
    background-size: contain;
}

.hiring_cta {
    width: 100%;
    padding: 50px 20px;
    border: 1px solid var(--border-grey);
    border-radius: 15px;
    position: relative;
    z-index: 9;
    background: var(--white) url(../images/hiring_cta_bg.svg) no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    box-shadow: 1px 28px 33px -26px rgba(0,0,0,0.13);
    -webkit-box-shadow: 1px 28px 33px -26px rgba(0,0,0,0.13);
    -moz-box-shadow: 1px 28px 33px -26px rgba(0,0,0,0.13);
}

    /*.hiring_cta::before {
        content: '';
        position: absolute;
        width: 580px;
        height: 580px;
        border-radius: 100%;
        left: -330px;
        top: 50%;
        transform: translateY(-50%);
        background: #6C47CD;
        background: radial-gradient(circle, rgba(108, 71, 205, 0.1) 0%, rgba(255, 255, 255, 0) 52%);
    }

    .hiring_cta::after {
        content: '';
        position: absolute;
        width: 580px;
        height: 580px;
        border-radius: 100%;
        right: -330px;
        top: 50%;
        transform: translateY(-50%);
        background: #6C47CD;
        background: radial-gradient(circle, rgba(108, 71, 205, 0.1) 0%, rgba(255, 255, 255, 0) 52%);
    }*/

    .hiring_cta h3 {
        font-size: var(--font-size-30);
        text-align: center;
        color: var(--black);
        font-weight: var(--font-weight-700);
        padding: 0 50px;
        margin: 15px 0 0 0;
    }

    .hiring_cta .btn-primary {
        margin: 15px 0 0px 0;
    }
/*technology section end*/

/*faq section start*/
.faqs_section {
    background: #F7F7F8;
    padding: 0 0 100px 0;
}

.faq_left_panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .faq_left_panel .title {
        font-size: var(--font-size-22);
        margin-left: 10px;
        font-weight: 700;
    }

.faq_right_panel .accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--border-grey);
    border-radius: var(--border-radius-10);
}

.faq_right_panel .accordion-header {
    border-radius: var(--border-radius-10);
}

    .faq_right_panel .accordion-header .accordion-button {
        border-radius: var(--border-radius-10);
        color: var(--black);
        font-size: var(--font-size-14);
        font-weight: var(--font-weight-600);
    }

        .faq_right_panel .accordion-header .accordion-button:hover {
            color: var(--primary-color);
        }

        .faq_right_panel .accordion-header .accordion-button:focus {
            outline: 0;
            box-shadow: none;
        }

        .faq_right_panel .accordion-header .accordion-button:not(.collapsed) {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            background: var(--white);
            color: var(--primary-color);
            border-bottom: 1px solid var(--border-grey);
        }

    .faq_right_panel .accordion-header .accordion-button {
        border-radius: var(--border-radius-10);
        color: var(--black);
        font-size: var(--font-size-14);
        font-weight: var(--font-weight-600);
    }

.faq_right_panel .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: var(--border-radius-10);
}

.faq_right_panel .accordion-body {
    color: var(--p-color);
    font-size: var(--font-size-14);
    font-weight: normal;
}

.faq_right_panel .accordion-button::after {
    content: '+';
    font-size: var(--font-size-14);
    color: var(--primary-color);
    transform: none;
    background-image: none !important;
    height: 20px;
    width: 20px;
}

.faq_right_panel .accordion-button:not(.collapsed)::after {
    content: '−';
    font-size: var(--font-size-14);
    color: var(--black);
    height: 20px;
    width: 20px;
}
/*faq section end*/

/*blog style start*/
.blog_section {
    padding: 60px 0;
}

.blog_box {
    border-radius: var(--border-radius-10);
    /*border: 1px solid rgba(164, 174, 198, 0.2);*/
    margin: 20px 0 0 0;
    box-shadow: rgba(8, 60, 130, 0.06) 0px 0px 0px 0.05rem, rgba(30, 34, 40, 0.04) 0rem 0rem 1.25rem;
    -webkit-box-shadow: rgba(8, 60, 130, 0.06) 0px 0px 0px 0.05rem, rgba(30, 34, 40, 0.04) 0rem 0rem 1.25rem;
    -moz-box-shadow: rgba(8, 60, 130, 0.06) 0px 0px 0px 0.05rem, rgba(30, 34, 40, 0.04) 0rem 0rem 1.25rem;
}

    .blog_box .blog_img img {
        width: 100%;
        border-top-left-radius: var(--border-radius-10);
        border-top-right-radius: var(--border-radius-10);
    }

    .blog_box .blog_info {
        padding: 20px;
    }

.blog_info h5 {
    color: var(--primary-color);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-600);
    padding: 0;
    margin: 10px 0 5px 0;
    text-transform: capitalize;
}

.blog_info .blog_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .blog_info .blog_title h3 {
        padding: 0;
        margin: 0;
    }

.blog_info a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog_info .blog_title h3, .blog_info a {
    color: var(--black);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-600);
    text-decoration: none;
}

.blog_box:hover .blog_info h3, .blog_box:hover .blog_info a {
    color: var(--primary-color);
}

.blog_box p {
    color: var(--p-color);
    font-size: var(--font-size-14);
    padding: 5px 0;
    margin: 0;
}

.blog_auth {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 20px;
    border-top: 1px solid rgba(164, 174, 198, 0.2);
}

    .blog_auth .blog_auth_pic {
        width: 20px;
        height: 22px;
        border-radius: 100%;
    }

        .blog_auth .blog_auth_pic img {
            width: 100%;
            object-fit: cover;
        }

    .blog_auth .auth_name {
        color: var(--black);
        font-size: var(--font-size-12);
        font-weight: var(--font-weight-600);
    }

    .blog_auth .blog_date {
        color: var(--p-color);
        font-size: var(--font-size-12);
        padding: 5px 0 0 0;
    }
/*blog style end*/

/*footer stryle start*/
footer {
    background: #000;
    padding: 15px 0;
}

.footer_logo {
    height: 100%;
    display: flex;
    align-items: center;
}

footer .footer_nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    footer .footer_nav ul li {
        list-style: none;
        padding: 0;
        margin: 0;
    }

footer .nav-link {
    font-size: 14px;
    color: var(--white);
    /*font-weight: var(--font-weight-600);*/
    text-transform: capitalize;
}

    footer .nav-link:hover {
        color: var(--primary-color);
    }

.footer_social {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.footer_copywrite {
    border-top: 1px solid #404040;
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer_copywrite p {
        color: #acacac;
        font-size: var(--font-size-12);
        font-weight: normal;
        padding: 0;
        margin: 0;
    }

.footer_contact {
    color: var(--white);
    font-size: var(--font-size-14);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

    .footer_contact a {
        color: var(--white);
        font-size: 14px;
    }

        .footer_contact a:hover {
            color: var(--primary-color);
        }
/*footer stryle end*/

/*login page style start*/
.login_page {
    /*background: var(--black) url(../images/login_bg.png);
    background-size: cover;
    background-position: left top;*/
    width: 100%;
    height: 100vh;
    background-color: #f7f7f8;
    border: 1px solid #efefef;
}

.login_box {
    border-radius: var(--border-radius-10);
    background: var(--white);
    padding: 30px 0 0 0;
}

.login_logo {
    /*display: flex;
    align-items: center;
    justify-content: center;*/
    margin: 0 2px 15px 0;
    text-align: center;
}

    .login_logo img {
        width: 35%;
    }

.login_box h5 {
    color: var(--black);
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-600);
    text-align: center;
}

.login_box p {
    color: var(--p-color);
    font-size: 14px;
    font-weight: normal;
    padding: 0;
    margin: 4px 0;
    text-align: center;
}

.login_box .candidate {
    margin: 20px 45px;
    padding: 0;
    text-align: center;
}

    .login_box .candidate .title_c {
        margin-bottom: 15px;
        color: #222222;
        font-weight: 600;
    }

    .login_box .candidate .btn-primary {
        background: var(--white);
        font-size: 14px;
        font-weight: 600;
        border-color: var(--border-grey);
        color: var(--black);
        gap: 5px;
        box-shadow: none !important;
    }

        .login_box .candidate .btn-primary:hover {
            border-color: var(--primary-color);
        }

.login_divider {
    text-align: center;
    text-transform: uppercase;
    color: var(--p-color);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-12);
    position: relative;
    margin: 25px 0 0 0;
}

    .login_divider::after {
        content: '';
        width: calc(100% - 100px);
        height: 1px;
        background: #e8e8e8;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .login_divider span {
        background: var(--white);
        position: relative;
        z-index: 9;
        padding: 0 10px;
    }

.login_form {
    padding: 20px 45px;
}

    .login_form .tc {
        margin-top: 10px;
        font-size: 12px;
    }

.login_box .title_r {
    margin-bottom: 10px;
    color: #222222;
    font-weight: 600;
    text-align: center;
}

.login_form label {
    font-size: var(--font-size-12);
    color: var(--black);
    font-weight: var(--font-weight-600);
}

.login_form input[type="text"], .login_form input[type="email"], .login_form input[type="password"] {
    color: var(--black);
    font-size: var(--font-size-12);
    border-radius: 50px;
    border: 1px solid var(--border-grey);
}

    .login_form input[type="text"]:focus, .login_form input[type="email"]:focus, .login_form input[type="password"]:focus {
        outline: none;
        box-shadow: none;
        border-color: var(--primary-color);
    }

.login_form .btn-primary {
    justify-content: center;
    padding: 7px;
    margin-top: 10px;
    font-size: 14px;
}

.signup_area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222222;
    padding: 20px 0;
    /*   border-top: 1px solid #d9d9d9;*/
    border-radius: 0 0 10px 10px;
    font-size: var(--font-size-12);
    color: #ffffff;
}

    .signup_area a {
        color: var(--primary-color);
        font-weight: var(--font-weight-600);
        margin: 0 0 0 5px;
    }

.login_footer p {
    font-size: var(--font-size-12);
    text-align: center;
    margin: 10px 0;
    padding: 10px 0 0 0;
    color: #7c7c7c;
}
/*login page style end*/

/*custom*/
.highlight {
    background: var(--text-gradient);
    background-clip: text;
    color: transparent;
}

.text-danger {
    font-size: 14px;
}

.alert-danger {
    margin: 0 0 20px 0;
    font-size: 14px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.hideMe {
    display: none;
}

.error {
    color: #dc3545 !important;
    font-weight: normal !important;
    font-size: 14px !important;
}
/*custom end*/
/*responsive start*/
@media (max-width: 991.98px) {
    .navbar-nav {
        margin: 0;
    }
}

@media (max-width:1024px) {
    header {
        padding: 0;
        background: var(--black);
    }

    .header_buttons {
        justify-content: center;
    }

    #mainHeader.is-sticky {
        top: 0px;
    }

    .main_banner {
        margin-top: 0;
        padding: 30px 0 20px 0;
    }

        .main_banner h1 {
            padding: 0;
            font-size: 25px;
            margin: 20px 15px 0px 15px;
        }

        .main_banner P {
            padding: 0;
            font-size: 16px;
            margin: 10px 0 0 0;
        }

    .video_section {
        margin: -100px 0 20px 0;
    }

        .video_section::after {
            display: none;
        }

        .video_section .video_cta {
            margin: -40px 0 0 0;
        }

        .video_section h4 {
            font-size: 22px;
        }

    .work_step_area {
        margin: 50px 0 0 0;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

        .steps .step_box {
            margin: 0 0 50px 0;
        }

        .steps p {
            font-size: 20px;
        }

    .work_step_area::after {
        display: none;
    }

    .about_paperhire .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    .about_paperhire .section_title {
        text-align: center;
        position: relative;
        z-index: 9;
    }

    .about_graphic {
        margin: 80px 0 0 0;
    }

        .about_graphic img {
            margin-top: -200px;
        }

    .about_nodes.node_first {
        left: 110px;
        top: 230px;
    }

    .about_nodes.node_second {
        top: 40px;
    }

    .about_nodes.node_third {
        right: 60px;
    }

    .user_profile_listing .col-md-3 {
        flex: 0 0 auto;
        width: 100%;
    }

    .profile_two {
        background-size: 100%;
        margin-bottom: 20px;
    }

        .profile_two .user_pic img {
            width: 100px;
            height: 100px;
        }

        .profile_two .user_info {
            margin: 50px 0 0 0;
        }

    .profile_three {
        margin-bottom: 20px;
    }

    .profile_four {
        margin-bottom: 20px;
    }

    .profile_five {
        margin-bottom: 20px;
    }

    .col-md-3:has(.technology_right_panel) {
        display: none;
    }

    .col-md-3:has(.technology_left_panel) {
        display: none;
    }

    .technology_section .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    footer .col-md-3, footer .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    footer .footer_logo {
        text-align: center;
    }

    footer .footer_nav ul {
        flex-direction: column;
        padding: 50px 0;
    }

    footer .nav-link {
        font-size: 18px;
    }

    .footer_social {
        justify-content: center;
    }
    /* .footer_copywrite { flex-direction: column; } */
    body {
        overflow-x: hidden;
    }

    .login_page .col-md-4 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width:580px) {
    header {
    }

    .navbar-collapse {
        margin-left: -15px;
        margin-right: -15px;
        /*padding: 20px 0;*/
        background: #222;
        position: absolute;
        width: 100%;
        top: 57px;
        border-top: 1px solid #515151;
    }

    .navbar-nav .nav-link {
        color: var(--white);
        text-align: left;
        padding: 6px 20px;
        font-size: 16px;
    }

    .header_buttons {
        padding: 20px;
        border-bottom: 1px solid #efefef;
    }

        /*.header_buttons .sign_in_btn {
            color: var(--black);
        }*/

        .header_buttons .sign_up_btn {
            background: var(--black);
            color: var(--white);
        }

    .hiring_tag::after {
        width: 45px;
        right: -50px;
    }

    .hiring_tag::before {
        width: 45px;
        left: -50px;
    }

    .banner_cta {
        /*flex-direction: column;*/
        padding: 0 70px 0 70px;
    }

        .banner_cta .btn {
            width: 172px;
        }

        .banner_cta .btn-primary {
            justify-content: center;
        }

        .banner_cta .banner_video_btn {
            justify-content: center;
        }

    .work_step_area {
        padding: 0;
    }

    .steps .steps_character {
        width: 130px;
        height: 130px;
    }

        .steps .steps_character svg {
            width: 60px;
        }

    .steps .steps_count {
        width: 30px;
        height: 30px;
        align-items: center;
    }

    .how_work_cta .cutout {
        min-width: 250px;
    }

        .how_work_cta .cutout::before, .how_work_cta .cutout::after {
            bottom: 13px;
        }

    .about_paperhire {
        padding: 20px 0;
        overflow: hidden;
    }

    .about_graphic img {
        width: 100%;
        margin: 0;
    }

    .about_nodes.node_first {
        left: 10px;
        top: 130px;
    }

    .about_nodes.node_second {
        top: -23px;
        left: 220px;
    }

    .about_nodes.node_third {
        right: 10px;
        bottom: 40px;
    }

    .hiring_cta h3 {
        padding: 0;
    }

    .faq_left_panel {
        align-items: center;
    }

        .faq_left_panel .section_title {
            text-align: center;
        }

    .footer_nav {
        display: none;
    }

    footer .footer_logo {
        justify-content: center;
        margin: 0 0 20px 0;
    }

        footer .footer_logo img {
            /*width: 40%;*/
        }

    .footer_copywrite {
        flex-direction: column-reverse;
        gap: 20px;
    }
}
/*responsive end*/

/*effect*/

.spinning-svg {
    animation: spin 4s linear infinite;
    transform-origin: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg); /* Start at 0 degrees */
    }

    100% {
        transform: rotate(360deg); /* Rotate 360 degrees */
    }
}

.vibrate-svg {
    animation: vibrate 1s ease-in-out infinite;
    animation-delay: 10s; /* Delay between vibration cycles */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes vibratesvg {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px, 2px);
    }

    20% {
        transform: translate(2px, -2px);
    }

    30% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    50% {
        transform: translate(-1px, 1px);
    }

    60% {
        transform: translate(1px, -1px);
    }

    70% {
        transform: translate(-1px, 1px);
    }

    80% {
        transform: translate(1px, -1px);
    }

    90% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}


.vibrate {
    display: inline-block;
    font-size: 48px;
    animation: vibrate 1s ease-in-out infinite;
    animation-delay: 3s; /* Delay between vibration cycles */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes vibrate {
    0% {
        transform: translate(0);
    }

    10% {
        transform: translate(-2px, 2px);
    }

    20% {
        transform: translate(2px, -2px);
    }

    30% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    50% {
        transform: translate(-1px, 1px);
    }

    60% {
        transform: translate(1px, -1px);
    }

    70% {
        transform: translate(-1px, 1px);
    }

    80% {
        transform: translate(1px, -1px);
    }

    90% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1); /* Slight zoom */
    }
}
/*end effect*/

.why_paperhire_different {
    padding-bottom: 60px;
    padding-top: 60px;
    background: linear-gradient(135deg, #f8f6ff, #ede6ff, #f0f0ff);
    backdrop-filter: blur(10px);
}

    .why_paperhire_different .title {
        /*width: 50%;*/
        margin: 0 auto;
    }

    .why_paperhire_different .section_title {
        padding-bottom: 40px;
    }

.why_box_1 {
    width: 100%;
    margin-top: 20px;
    text-align: left;
}

    .why_box_1 .why_box_1_head {
        color: var(--white);
    }

    .why_box_1 .line1 {
        margin-bottom: 20px;
    }

        .why_box_1 .line1 i {
            color: var(--primary-color);
            font-size: 40px;
        }

    .why_box_1 .line2 {
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .why_box_1 .line3 {
        color: var(--black);
        font-size: var(--font-size-14);
        font-weight: normal;
    }

.validation {
    border: 1px solid #6c47cd;
}

.modal-dialog {
    width: 400px;
}

.glossary-header {
    position: relative;
    background: #000; /*var(--text-gradient);*/
    border-bottom: 5px solid #6c47cd;
}

    .glossary-header h1 {
        color: #fff;
        padding: 60px 0;
        font-size: 40px;
    }

.glossary-detail {
    padding: 60px 0;
    background-color: #f7f7f8;
}

    .glossary-detail .sub-title {
        font-size: 16px;
    }

    .glossary-detail .main-box {
        /*display: grid;
        grid-template-columns: repeat(auto-fill, 31.5%);
        grid-gap: 0;
        justify-content: space-between;
        margin: 0 auto;*/
    }

    .glossary-detail .alpha {
        background-color: #6c47cd;
        width: fit-content;
        text-align: center;
        padding: 5px 20px;
        color: #fff;
        font-weight: 700;
        border-radius: 5px;
        font-size: 32px;
        margin: 50px 0 20px 0;
    }

    .glossary-detail .main-box .box {
        margin: 15px 0px;
        box-shadow: rgba(8, 60, 130, 0.06) 0px 0px 0px 0.05rem, rgba(30, 34, 40, 0.04) 0rem 0rem 1.25rem;
        background-color: #fff;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transform: translateY(0);
        /*border: 1px solid rgba(164, 174, 198, 0.2);*/
    }

        .glossary-detail .main-box .box:hover {
            -ms-transform: translateY(-6px);
            transform: translateY(-6px);
            box-shadow: 0 7px 10px 0 rgba(0, 0, 0, .1);
            box-shadow: 0 7px 27px rgba(107, 124, 141, .6);
        }

        .glossary-detail .main-box .box p {
            margin-bottom: 0px;
        }

        .glossary-detail .main-box .box a {
            padding: 30px;
            display: block;
            text-decoration: none !important;
        }

            .glossary-detail .main-box .box a strong {
                font-size: 20px;
                font-weight: 600;
                color: #6c47cd;
                text-transform: capitalize;
                line-height: 1.4;
            }

            .glossary-detail .main-box .box a p span {
                letter-spacing: 0.2px;
                font-weight: 300;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 14px;
                max-width: 400px;
                line-height: 1.6;
                color: #000;
                margin: 10px 0px 20px;
            }

            .glossary-detail .main-box .box a p em {
                letter-spacing: 0.4px;
                font-style: normal;
                font-size: 12px;
                color: #000;
                text-decoration: none;
            }

            .glossary-detail .main-box .box a em:after {
                content: "\f138";
                display: inline-block;
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                line-height: 1;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                margin-left: 7px;
            }

.glossary-page-detail {
    padding: 60px 0;
    background-color: #f7f7f8;
}

    .glossary-page-detail .main-content h3 {
        margin-bottom: 50px;
        font-weight: 600;
    }

    .glossary-page-detail .main-content h2 {
        color: #6c47cd;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .glossary-page-detail .main-content p {
        margin-bottom: 50px;
    }

    .glossary-page-detail .main-content a {
        background: var(--text-gradient);
        color: #fff;
        padding: 10px;
        border-radius: 10px;
    }

.glossary-faq-content {
    margin-top: 70px;
}

    .glossary-faq-content h2 {
        margin-bottom: 10px;
        font-weight: 600;
        display: inline-block;
    }

    .glossary-faq-content .glossary {
        list-style: none;
    }

    .glossary-faq-content .glossary {
        margin-left: 20px;
    }

        .glossary-faq-content .glossary li.h_item {
            list-style-type: decimal;
            margin: 20px 0;
        }

            .glossary-faq-content .glossary li.h_item::marker {
                color: #6c47cd;
                font-size: 18px;
                font-weight: 700;
            }

    .glossary-faq-content li h2 {
        color: #6c47cd;
        font-size: 18px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .glossary-faq-content .sub-bullet {
        margin-top: 20px;
    }

        .glossary-faq-content .sub-bullet li {
            list-style: circle;
            margin-bottom: 5px;
            color: var(--p-color);
        }

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: removes animation delay */
}

.tool-box {
    justify-content: space-between;
    margin: 0 auto;
}


    .tool-box .box {
        margin: 15px 0px;
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
        background-color: #fff;
        border-radius: 10px;
        cursor: pointer;
        position: relative;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transform: translateY(0);
    }

        .tool-box .box h2 {
            color: #6c47cd;
            padding: 30px 30px 0 30px;
            font-size: 20px;
        }

        .tool-box .box a {
            padding: 0 30px 30px 30px;
            display: block;
            text-decoration: none !important;
        }

            .tool-box .box a p span {
                letter-spacing: 0.2px;
                font-weight: 300;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 14px;
                max-width: 400px;
                line-height: 1.6;
                color: #000;
                margin: 10px 0px 20px;
            }

            .tool-box .box a p em {
                letter-spacing: 0.4px;
                font-style: normal;
                font-size: 12px;
                color: #000;
                text-decoration: none;
            }

            .tool-box .box a em:after {
                content: "\f138";
                display: inline-block;
                font-family: FontAwesome;
                font-style: normal;
                font-weight: normal;
                line-height: 1;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                margin-left: 7px;
            }

.notice-calculator {
    background-color: #6c47cd;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

    .notice-calculator label {
        margin: 5px 0;
    }

    .notice-calculator input {
        margin: 5px 0;
    }

.form-head {
    /*margin-right: 20px;*/
}

    .form-head label {
        color: #fff;
    }

.calculate {
    color: #6c47cd;
    background-color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 30px;
    cursor: pointer;
    height: 50px;
}

    .calculate:hover {
        background-color: #6c47cd;
        border: 1px solid #fff;
        color: #fff;
    }

.formula {
    background-color: #f7f7f8;
    width: 650px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #efefef;
    margin: 10px 0;
}

.btn-cta {
    background: #CE4755;
    color: var(--white);
    padding: 7px 17px;
    font-size: var(--font-size-14);
    /* font-weight: var(--font-weight-600); */
    border-radius: 100px;
    border: 1px solid #CE4755;
    overflow: hidden;
    position: relative;
    /* text-transform: capitalize; */
    /*box-shadow: 1px 14px 29px 0px rgba(227, 216, 255, 0.69);
    -webkit-box-shadow: 1px 14px 29px 0px rgba(227, 216, 255, 0.69);
    -moz-box-shadow: 1px 14px 29px 0px rgba(227,216,255,0.69);*/
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-cta:hover {
        background: #A73440;
        color: #fff;
    }

.navbar-nav li.nav-item {
    height: 70px;
    line-height: 55px;
}


.sub-menu-full {
    border: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 0px;
}

    .sub-menu-full li {
        font-size: 14px;
        border-bottom: 1px solid #efefef;
    }

        .sub-menu-full li:last-child {
            border-bottom: none;
        }

        .sub-menu-full li a {
            color: #58524F;
        }

.dropdown-item:hover {
    color: #6c47cd;
    background-color: transparent;
    text-decoration: underline;
}

/*Review Page*/
.candidate-review {
    text-align: center;
}

    .candidate-review h1 {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.1;
        text-align: center;
        padding-top: 60px;
        margin: 0 auto;
    }

    .candidate-review p {
        font-size: 1.2rem;
        text-align: center;
        margin-top: 25px;
        background-color: #6c47cd;
        color: #fff;
        padding: 10px 15px;
        border-radius: 10px;
        display: inline-block;
        max-width: 100%;
        font-weight: 600;
    }

.reviews-container {
    padding: 40px 0 60px;
}

.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e6e6e6;
    cursor: default;
    user-select: none;
    margin-top: 20px;
    min-height: 250px;
}

    .review-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        z-index: 10;
    }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.rating {
    color: #FFC312;
    font-size: 1.2rem;
    user-select: none;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
    color: #444;
}

.review-footer {
    font-size: 0.8rem;
    color: #777;
}

.candidate-name {
    color: var(--primary);
    font-weight: 700;
}
