@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    /* list-style: none; */
    box-sizing: border-box;
    font-family: "Poppins", serif;
    text-decoration: none;
}

p a {
    color: #ffffff !important;
}

:root {
    --primary: rgba(0, 134, 127, 1);
    --primaryYellow: rgba(242, 189, 84, 1);
    --primaryGrey: #f5f5f5;
    --primaryNavy: rgba(22, 42, 89, 1);
    --yellow-text: rgba(178, 119, 0, 1);
}

a.detail-btn {
    padding: 7px 0;
    width: 100%;
    background-color: var(--primaryYellow);
    border: none;
    outline: none;
    font-weight: 400;
    margin-top: 10px;
    border-radius: 8px;
    text-align: center;
}

/* navbar */

a {
    color: rgba(0, 0, 0, 1);
}

nav ul {
    list-style: none;
}

/* Top bar removed – single header only */
.topbar {
    display: none;
}

.main-header {
    position: sticky;
    top: 15;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 10px;
    z-index: 1000;
    margin-top: 18px;
    margin: 14px;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.header-logo {
    flex-shrink: 0;
    padding-right: 0;
}

.header-logo img {
    display: block;
    height: 30px;
    width: auto;
    object-fit: scale-down;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
}

.header-nav a {
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 0;
    background: transparent;
    transition: color 0.2s;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary);
}

/* Active link: green underline like reference (no background) */
.header-nav a.active {
    color: #006b63;
    background: transparent;
}

.header-nav a.active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 2px;
    background: #006b63;
    border-radius: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding-left: 0;
}

.header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    border-radius: 8px;
    transition:
        background 0.2s,
        color 0.2s;
}

.header-icon:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(180deg, #00a39b 0%, #006b63 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 107, 99, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 107, 99, 0.3);
    color: #fff !important;
}

.header-profile {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 100px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition:
        box-shadow 0.2s,
        border-color 0.2s;
}

.header-profile:hover {
    border-color: #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-profile .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
}

.header-profile:hover .dropdown,
.header-profile .dropdown:hover {
    display: block;
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    .small_screen {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 16px 20px 20px;
    }
    .header-inner {
        gap: 16px;
    }
    .header-actions {
        gap: 8px;
    }
}

@media (min-width: 993px) {
    .main-header .small_screen {
        display: none;
    }
}

.small_screen {
    padding: 0;
    display: none;
    gap: 10px;
    position: relative;
    align-items: center;
}

.small_screen i {
    color: var(--primary);
    cursor: pointer;
    font-size: 18px;
}

.menu {
    height: 0;
    position: absolute;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    top: 48px;
    right: 0;
    background: #fff;
    transition: all 0.3s;
    overflow: hidden;
    border-radius: 10px;
    z-index: 20;
}

.menu p {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 13px;
    cursor: pointer;
    margin: 0;
}

.menu p a {
    color: #1a1a1a !important;
}

.menu p:hover a {
    color: var(--primary) !important;
}

.main-header .profile_nav {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.main-header .profile_nav img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.profile_nav .text_loged b {
    font-size: 13px;
    display: block;
}

.profile_nav .text_loged small {
    font-size: 11px;
    color: #666;
}

.profile_nav .text_loged {
    text-align: left;
    line-height: 1;
}

.register_btn {
    background: linear-gradient(180deg, #00a39b 0%, #006b63 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.login_btn {
    background: transparent;
    color: #1a1a1a !important;
    border: 1px solid #ddd !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
}

/* -------- */

.filter_main {
    padding: 20px 80px;
    display: flex;
    background-color: var(--primaryGrey);
    justify-content: space-between;
    align-items: center;
}

.filter_main h2 {
    font-size: 16px;
    color: var(--primaryNavy);
    white-space: nowrap;
}

.filter-bar {
    display: flex;
    /* padding: 10px; */
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    gap: 10px;
}

.filter-item {
    padding: 10px 15px;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    background: rgba(239, 239, 239, 1);
    cursor: pointer;
    position: relative;
}

.filter-item:hover {
    background: #e0e0e0;
}

.dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0px;
    background: white;
    border: 1px solid #ddd;
    width: 150px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}

.dropdown a:hover {
    background: #f0f0f0;
}

.filter-item:focus-within .dropdown {
    display: block;
}

.yellow_btn {
    background-color: rgba(255, 227, 172, 1);
}

.Search_btn {
    background-color: var(--primaryYellow);
}

.Search_btn:hover {
    background-color: var(--primaryYellow);
    opacity: 0.9;
}

@media screen and (max-width: 600px) {
    .filter-item {
        font-size: 10px;
    }
}

/* login popup */

.login_popup_prnt {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--primaryGrey);
}

.login_popup {
    width: 500px;
    padding: 30px 30px;
    border: 1px solid rgba(45, 45, 45, 0.2);
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.login_popup label {
    text-align: left;
    font-size: 14px;
    margin-top: 20px;
}

.login_popup h1 {
    font-size: 25px;
}

.login_popup > p {
    font-size: 14px;
    margin-top: 8px;
}

.login_popup input {
    margin-top: 10px;
    border-radius: 15px;
    padding: 10px 15px;
    outline: none;
    border: none;
    border: 1px solid rgba(230, 230, 230, 1);
}

.login_popup input:focus {
    outline-width: 1px;
    outline-style: solid;
    outline-color: var(--primary);
}

.login_popup button {
    width: 100%;
    padding: 10px 0;
    color: white;
    font-size: 14px;
    border-radius: 15px;
    border: none;
    outline: none;
    background-color: var(--primary);
    margin-top: 20px;
    cursor: pointer;
}

.account_options {
    width: 500px;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.account_options p {
    font-size: 14px;
}

.account_options p:nth-child(1) {
    color: var(--yellow-text);
    text-decoration: underline;
    cursor: pointer;
}

.account_options span a {
    color: var(--primary) !important;
    text-decoration: underline;
    cursor: pointer;
}

/* registration form */

.main_form {
    height: auto;
    width: 100%;
    background-color: var(--primaryGrey);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 80px 0 80px;
}

.pb_80 {
    padding-bottom: 80px;
}

.main_form form {
    width: 100%;
    height: auto;
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 50px;
}

.field_register,
.checks_register {
    width: calc(33.33% - 50px);
    /* border:1px solid; */
    height: auto;
}

.field_register label,
.checks_register label {
    font-size: 12px;
    color: rgba(45, 43, 50, 1);
}

.field_register input::placeholder {
    font-size: 12px;
}

.field_register input,
.field_register select {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    color: rgba(127, 125, 131, 1);
    outline: none;
    border: 1px solid rgba(230, 230, 230, 1);
    font-size: 12px;
}

.checks_register > div {
    gap: 10px;
    width: max-content;
    height: 30px;
}

.checks_register div {
    display: flex;
    align-items: center;
}

.checks_register input ~ label {
    margin-left: 5px;
}

.differnt_checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
    align-self: flex-end;
}

.main_form button {
    padding: 7px 80px;
    margin-top: 50px;
    background-color: var(--primaryYellow);
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

/* find your match */

.find_your_match {
    height: auto;
    width: 100%;
    background-color: var(--primaryGrey);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 66px;
    padding: 80px;
}

.match_profile {
    height: auto;
    width: calc(25% - 50px);
    background-color: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
}

.match_profile img {
    width: 50%;
}

.match_profile h3 {
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    margin-top: 10px;
}

.match_profile > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.match_profile b,
.match_profile p {
    width: 50%;
    font-size: 12px;
    color: rgba(0, 0, 0, 1);
    margin-top: 7px;
}

.match_profile button {
    padding: 7px 0;
    width: 100%;
    background-color: var(--primaryYellow);
    border: none;
    outline: none;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 8px;
}

/* contact_candidate */

.contact_candidate {
    height: auto;
    width: 100%;
    background-color: var(--primaryGrey);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding: 80px;
}

.info_box_candidate {
    height: max-content;
    width: calc(50% - 50px);
    padding: 20px 30px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 30px;
}

.info_box_candidate p {
    color: rgba(99, 99, 99, 1);
    font-size: 14px;
    white-space: nowrap;
}

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

.box_about {
    background-color: var(--primaryGrey);
    display: flex;
    align-items: center;
    width: max-content;
    border-radius: 20px;
    padding: 8px 10px;
}

.box_about img {
    width: 15px;
}

.box_about b {
    font-size: 10px;
    margin-left: 10px;
}

.box_about p {
    font-size: 10px;
    margin-left: 5px;
}

.title_info {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.title_info h2 {
    color: var(--primary);
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--primaryYellow);
}

.info_box_candidate .detail_user {
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    margin-top: 10px;
    padding: 5px 0;
    justify-content: flex-start;
}

.info_box_candidate .detail_user b,
.info_box_candidate .detail_user p {
    width: 50%;
    font-size: 12px;
}

.info_box_candidate .detail_user b {
    font-weight: 600;
}

.mid_box_detail {
    margin-top: -75px;
}

.btn_center {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.contact_candidate button {
    padding: 8px 70px;
    background-color: var(--primaryYellow);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.popup_Contact {
    background-color: rgba(245, 245, 245, 0.5);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.inner_popup {
    height: auto;
    width: max-content;
    border: 0.88px solid rgba(245, 245, 245, 1);
    background-color: white;
    filter: blur(0) !important;
    padding: 30px 50px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner_popup h2 {
    color: var(--primary);
    font-size: 22px;
}

.inner_popup p {
    color: rgba(66, 66, 66, 1);
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
}

.two_buttons {
    margin-top: 15px;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.two_buttons button {
    padding: 10px 50px;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 10px;
    font-weight: 500;
}

.two_buttons a:nth-child(1) button {
    background-color: var(--primaryYellow);
}

.two_buttons a:nth-child(2) button {
    background-color: var(--primary);
    color: white;
}

/* Home Page – hero with image slider background */

.banner {
    position: relative;
    height: 730px;
    min-height: 730px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 150px 24px 64px;
    border-radius: 0 0 80px 80px;
    margin-top: -119px;
}

.banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

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

.banner-slide-active {
    opacity: 1;
}

/* Subtle depth with CSS-only shapes */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Pure black overlay with slight vignette for text visibility */
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.85) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
    pointer-events: none;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
    display: none; /* hide arrows as requested */
}

.banner-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.banner-arrow-left {
    left: 24px;
}

.banner-arrow-right {
    right: 24px;
}

.banner-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.banner-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition:
        background 0.2s,
        transform 0.2s;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.banner-dot-active {
    background: #ffffff;
    transform: scale(1.2);
}

.banner::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(242, 189, 84, 0.12) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero_text::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.hero_text {
    position: relative;
    z-index: 1;
    height: auto;
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 32px 56px;
    text-align: center;
}

.hero_text_inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.hero_text .hero_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero_text .hero_badge .hero_stars {
    display: inline-flex;
    gap: 4px;
    color: var(--primaryYellow);
}

.hero_text .hero_badge .hero_stars i {
    font-size: 14px;
}

.hero_text h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    text-shadow: none;
}

.hero_text h1 + h1 {
    margin-top: 6px;
    font-weight: 600;
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    color: rgba(255, 255, 255, 0.95);
}

.hero_text p {
    margin-top: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.65;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
    text-shadow: none;
}

.hero_text button {
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    background-color: var(--primaryYellow);
    cursor: pointer;
    border: none;
    border-radius: 8px;
    outline: none;
}

/* about sec */

.aboutsec {
    height: auto;
    width: 100%;
    background-image: linear-gradient(#fef85117, #fef85117);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: -93px;
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
}

.left_about,
.right_about {
    /*width: 50%;*/
    /* border: 1px solid red; */
}

.left_about {
    padding-right: 0px;
    width: 100%;
}

.right_about {
    display: flex;
    padding-left: 40px;
    justify-content: center;
    align-items: flex-start;
}

.right_about img {
    width: 100%;
}

.left_about p {
    color: rgba(136, 136, 136, 1);
    margin-top: 10px;
}

.left_about h1 {
    color: var(--primaryNavy);
}

.left_about button {
    border: none;
    background-color: var(--primaryYellow);
    font-weight: 500;
    border-radius: 8px;
    padding: 7px 20px;
    margin-top: 10px;
    cursor: pointer;
}

.whyus_Sec {
    padding: 100px 80px 120px;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.whyus_obj {
    padding: 20px 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    width: calc(33.33% - 50px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 15px;
    gap: 10px;
}

.whyus_obj h3 {
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

.whyus_obj p {
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
}

/* get started */

.getStarted {
    padding: 100px 80px 120px;
}

.inner_started {
    width: 100%;
    padding: 80px 40px;
    background-image: linear-gradient(
        rgba(215, 255, 255, 1),
        rgba(223, 244, 255, 1)
    );
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner_started button {
    padding: 10px 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    background-color: var(--primaryYellow);
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

/* thanks */

.thanks {
    height: auto;
    width: 100%;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background-color: var(--primaryGrey);
}

.thanks h3 {
    text-align: center;
}

.thanks button {
    background-color: var(--primaryYellow);
    padding: 10px 40px;
    border: none;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    font-weight: 600;
}

/* matched_profiles */

.matched_profiles {
    height: auto;
    width: 100%;
    padding: 50px 80px;
    background: rgba(255, 227, 172, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.container_matched {
    height: auto;
    width: 100%;
    overflow-x: scroll;
}

.container_matched::-webkit-scrollbar {
    display: none;
}

.matched_profiles h2 {
    color: var(--primaryNavy);
}

.slider_profiles {
    width: max-content;
    padding: 50px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 30px;
}

.slider_profiles .match_profile {
    width: 300px;
}

/* ------------------------------ */

.main_body {
    padding: 40px 80px;
}

.main_body h2 {
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.855);
}

.main_body h3 {
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.855);
}

.main_body p {
    margin-top: 20px;
    color: rgba(0, 0, 0, 0.855);
}

.main_body li {
    margin-top: 10px;
    margin-left: 20px;
    color: rgba(0, 0, 0, 0.855);
}

/* about us */

.about_us {
    padding: 40px 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

.left_About,
.right_About {
    width: 100%;
    height: auto;
}

.objects {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.objects > div {
    width: calc(25% - 30px);
}

.right_About .right_About {
    align-items: center;
}

/**/

right_About a,
right_About a:active,
right_About a:focus {
    color: #333;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
}

right_About ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
right_About img {
    max-width: 100%;
    height: auto;
}
right_About span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.section-head {
    margin-bottom: 30px;
}
.section-head h4 {
    position: relative;
    padding: 0;
    color: var(--primaryYellow);
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}
.section-head h4:before {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--primaryYellow);
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: #2f2f2f;
}
p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}
.section-head p,
p.awesome_line {
    color: #818181;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}
.extra-text::before {
    content: "";
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.extra-text span {
    font-weight: 700;
    color: #f91942;
}
.item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all 0.5s ease 0;
    transition: all 0.5s ease 0;
    transition: all 0.5s ease 0s;
}
.item:hover {
    /*background:#f91942;*/
    box-shadow: 0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.5s ease 0;
    transition: all 0.5s ease 0;
    transition: all 0.5s ease 0s;
}
/*.item:hover .item, .item:hover span.icon{*/
/*    background:#fff;*/
/*    border-radius:10px;*/
/*    -webkit-transition: all .5s ease 0;*/
/*    transition: all .5s ease 0;*/
/*    transition: all 0.5s ease 0s;*/
/*}*/
/*.item:hover h6, .item:hover p{*/
/*    color:#fff;*/
/*    -webkit-transition: all .5s ease 0;*/
/*    transition: all .5s ease 0;*/
/*    transition: all 0.5s ease 0s;*/
/*}*/
.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #f91942;
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}
.item .feature_box_col_one {
    background: rgba(247, 198, 5, 0.2);
    color: #f91942;
}
.item .feature_box_col_two {
    background: rgba(255, 77, 28, 0.15);
    color: #f91942;
}
.item .feature_box_col_three {
    background: rgba(0, 147, 38, 0.15);
    color: #f91942;
}
.item .feature_box_col_four {
    background: rgba(0, 108, 255, 0.15);
    color: #f91942;
}
.item .feature_box_col_five {
    background: rgba(146, 39, 255, 0.15);
    color: #f91942;
}
.item .feature_box_col_six {
    background: rgba(23, 39, 246, 0.15);
    color: #f91942;
}
.item p {
    font-size: 15px;
    line-height: 26px;
}
.item h6 {
    margin-bottom: 20px;
    color: #2f2f2f;
    font-size: 14px;
}
.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}
.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}
.skills {
    padding-top: 0px;
}
.skills .prog-item {
    margin-bottom: 25px;
}
.skills .prog-item:last-child {
    margin-bottom: 0;
}
.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
}
.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}

/**/
.right_About b {
    font-size: small;
    color: rgba(0, 0, 0, 0.9);
}

.left_About img {
    width: 100%;
    border-radius: 20px;
}

.right_About {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.right_About button {
    padding: 6px 50px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    border: none;
    background-color: var(--primaryYellow);
}

/* ------  howWeWork  -------- */

.howWeWork {
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.howWeWork > p {
    width: 700px;
    text-align: center;
}

.steps {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
}

.step {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    text-align: center;
    height: auto;
    padding: 0 20px;
    gap: 15px;
}

.step h1 {
    font-weight: bolder;
    font-size: 40px;
    text-align: center;
    color: var(--primaryYellow);
}

.step h2 {
    color: rgba(0, 0, 0, 0.9);
}

.steps > img {
    width: 20px;
}

/* ------------------------- */

.standout {
    padding: 50px 80px;
    background-color: white;
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.standout h1 {
    font-weight: 700;
    font-size: 48px;
    /* line-height: 56px; */
    letter-spacing: -2%;
    text-align: center;
}

.standout > p {
    font-weight: 400;
    font-size: 18px;
    line-height: 165%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(48, 48, 48, 1);
    width: 1100px;
    margin-top: 20px;
}

.accordians {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordian_center {
    width: 50%;
}

.accordion {
    width: 100%;
    margin-top: 50px;
}

.accordion-item {
    border: 1px solid black;
    margin-bottom: 10px;
}

.accordion-header {
    background-color: white;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: white;
}

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

.toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.toggle-icon.active {
    transform: rotate(0deg);
}

/* ------------ */

.contact_form {
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.contact_manage {
    display: flex;
    margin-bottom: 30px;
}

.contact_manage iframe {
    width: 50%;
}

.contact_form input,
.contact_form textarea {
    padding: 10px;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.contact_form textarea {
    height: 100px;
}

.contact_form button {
    padding: 8px 60px;
    background-color: var(--primaryYellow);
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.contact {
    margin-top: 0;
    padding-top: 30px;
}

.contact-section {
    width: 50%;
    padding: 20px;
}

.contact-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 30px 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.contact-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-box h2 {
    margin-bottom: 10px;
    font-size: 28px;
}

.contact-box .intro {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    font-size: 18px;
    margin-right: 10px;
}

@media screen and (max-width: 600px) {
    .contact-box {
        padding: 10px;
    }
    .contact-info li span {
        font-size: 14px;
    }

    .icon {
        font-size: 14px;
    }

    .contact-box h2 {
        font-size: 16px;
    }
}

/* -------------- */

.career {
    width: 100%;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.career_body {
    /* border: 1px solid red; */
    height: auto;
    width: 800px;
}

.career_self {
    width: 100%;
    height: auto;
    background-color: #f9f9ff;
    display: flex;
    gap: 15px;
    padding: 20px;
    align-items: flex-start;
}

.left_cr {
    width: max-content;
}

.right_cr {
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.like {
    border: 1px solid #eee;
    cursor: pointer;
    padding: 5px 10px;
    background-color: white;
}

.right_cr > span {
    color: #777777;
    font-size: 14px;
    font-weight: 300;
    margin-top: 10px;
}

.right_cr > p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.861);
    margin-top: 10px;
}

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

.left_inn p {
    font-size: 14px;
}

.right_inn {
    display: flex;
}

.btn_job {
    margin-left: 5px;
    background-color: white;
    border: 1px solid #eee;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Footer – redesign (dark, multi-column, CTA, bottom legal/social) */

/* Footer AIG-style */

/* Footer color scheme: match site brand (teal + dark) */
.footer-aig {
    background: linear-gradient(313deg, #032220 0%, #006b63 40%, #00867f 100%);
    color: #ffffff;
    padding: 64px 48px 32px;
}

.footer-aig__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-aig__logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}

.footer-aig__brandTagline {
    font-size: 13px;
    max-width: 260px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-aig__sectionTitle {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #ffffff;
}

.footer-aig__form {
    display: flex;
    align-items: stretch;
    margin-bottom: 8px;
    max-width: 320px;
}

.footer-aig__input {
    flex: 1;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 6px 0;
    font-size: 13px;
    color: #ffffff;
}

.footer-aig__input:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.footer-aig__inputBtn {
    width: 40px;
    border: none;
    background: #ffffff;
    color: #004d47;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-aig__note {
    font-size: 11px;
    max-width: 260px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-aig__map .footer-aig__link,
.footer-aig__contacts .footer-aig__text {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-aig__link {
    color: inherit;
}

.footer-aig__link:hover {
    text-decoration: underline;
}

.footer-aig__text a {
    color: inherit;
}

.footer-aig__policies {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
}

@media (max-width: 600px) {
    .footer-aig__policies {
        grid-template-columns: 1fr;
    }
}

.footer-aig__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 32px;
}

.footer-aig__social {
    display: flex;
    gap: 12px;
}

.footer-aig__social a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-aig {
        padding: 48px 24px 24px;
    }
    .footer-aig__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer-aig__bottom {
        align-items: center;
    }
    .footer-aig__bottom {
        text-align: left;
    }
}

.footer-aig__topRow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-aig__headline {
    text-align: right;
}

.footer-aig__headlineSmall {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 500;
}

.footer-aig__headlineMain {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
}

.footer-aig__middle {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-aig__topRow {
        flex-direction: column;
        gap: 24px;
    }
    .footer-aig__headline {
        text-align: left;
    }
    .footer-aig__middle {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-aig__middle {
        grid-template-columns: 1fr;
    }
}

/* collective */

.flex_just {
    display: flex !important;
}

.blur {
    filter: blur(5px);
}

.cursor {
    cursor: pointer;
}

.show_menu {
    height: auto;
}

/* responsive */

@media screen and (max-width: 1300px) {
    .match_profile b,
    .match_profile p {
        font-size: 10px;
        white-space: nowrap;
    }

    .find_your_match h3 {
        font-size: 18px;
    }

    .find_your_match button {
        font-size: 12px;
        padding: 5px;
    }

    .find_your_match {
        gap: 20px;
    }

    .match_profile {
        width: calc(25% - 20px);
    }
}

@media screen and (max-width: 1200px) {
    .standout > p {
        width: auto;
        font-size: 16px;
    }

    .objects > div {
        width: calc(50% - 30px);
    }

    .standout h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1100px) {
    nav ul li {
        font-size: 13px;
    }

    .accordian_center {
        width: 80%;
    }

    .left_About,
    .right_About {
        /*width: 50%;*/
    }

    .authentication button {
        font-size: 12px;
        padding: 8px 10px;
    }

    .find_your_match h3 {
        font-size: 16px;
    }

    .contact_candidate {
        gap: 50px 30px;
    }

    .info_box_candidate {
        width: calc(50% - 30px);
        padding-left: 20px;
        padding-right: 20px;
    }

    .about_boxes_prnt {
        gap: 8px;
    }

    .box_about b,
    .box_about p {
        font-size: 8px;
    }

    .left_about h1 {
        font-size: 30px;
    }

    .left_about p {
        font-size: 14px;
    }

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

    .thanks img {
        width: 80%;
    }
}

@media screen and (max-width: 1000px) {
    .topbar {
        padding: 0 40px;
    }

    nav,
    footer,
    .main_form,
    .find_your_match,
    .contact_candidate,
    .aboutsec,
    .whyus_Sec,
    .getStarted,
    .thanks,
    .matched_profiles,
    .filter_main,
    .about_us,
    .howWeWork,
    .standout,
    .main_body,
    .career {
        padding-left: 40px;
        padding-right: 40px;
    }

    .career_body {
        width: 100%;
    }

    .right_About p,
    .step p {
        font-size: 14px;
    }

    .steps > img {
        width: 15px;
    }

    .filter-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .main_form form {
        gap: 20px 30px;
    }

    .main_form form .checks_register,
    .main_form form .field_register {
        width: calc(33.33% - 30px);
    }

    .topbar ul li:nth-child(1) img {
        width: 10px;
    }

    .topbar ul li:nth-child(2) img {
        width: 15px;
    }

    .mail_icon {
        width: 13px !important;
    }

    .topbar ul li p {
        font-size: 10px;
    }

    .account_options p {
        font-size: 10px;
    }

    .whyus_obj img {
        width: 25px;
    }

    .whyus_obj h3 {
        font-size: 16px;
    }

    .thanks h3 {
        font-size: 16px;
    }

    footer > div {
        flex-wrap: wrap;
    }

    footer > div div:nth-child(1) {
        width: 100%;
    }

    .other_3 {
        width: 40%;
    }
}

@media screen and (max-width: 900px) {
    nav ul,
    nav > .authentication {
        display: none;
    }

    .small_screen .authentication {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .small_screen .authentication a button {
        width: 100%;
    }

    nav ul,
    nav > .profile_nav {
        display: none;
    }

    .match_profile {
        width: calc(33.33% - 20px);
    }

    .small_screen {
        display: flex;
    }

    .login_popup {
        width: 50%;
    }

    .info_box_candidate {
        width: 100%;
    }

    .mid_box_detail {
        margin-top: 0;
    }

    .account_options {
        width: 50%;
    }

    .main_form form .checks_register,
    .main_form form .field_register {
        width: calc(50% - 20px);
    }

    .main_form form {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .match_profile {
        width: calc(50% - 20px);
    }

    .contact_manage {
        flex-direction: column;
        margin-bottom: 0;
    }

    .contact_manage iframe,
    .contact_manage .contact-section {
        width: 100%;
    }

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

    .hero_text h1 + h1 {
        font-size: 28px;
    }

    .hero_text p {
        font-size: 15px;
    }

    .hero_text button {
        font-size: 13px;
    }

    .hero_text_inner {
        padding: 0;
    }

    .aboutsec {
        gap: 50px;
        flex-direction: column;
    }

    .left_about,
    .right_about {
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .left_about p,
    .left_about h1 {
        text-align: center;
    }

    .whyus_obj {
        width: calc(50% - 30px);
    }

    .thanks h3 br {
        display: none;
    }

    .about_us {
        flex-direction: column;
    }

    .right_About {
        width: 100%;
    }

    .left_About {
        width: 60%;
    }

    .howWeWork > h1 {
        font-size: 25px;
    }

    .howWeWork > p {
        font-size: 14px;
        width: auto;
    }

    .step {
        padding: 0 10px;
        gap: 10px;
    }

    .step h1 {
        font-size: 25px;
    }

    .step h2 {
        font-size: 18px;
    }

    .topbar ul li:nth-child(1) {
        display: none;
    }

    .topbar ul {
        justify-content: flex-end;
    }

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

    .left_cr img {
        width: 150px;
    }

    .left_inn h2 {
        font-size: 16px;
    }

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

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

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

    .main_body h1 {
        font-size: 22px;
    }

    .main_body h2 {
        font-size: 18px;
    }

    .main_body p,
    .main_body li {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .topbar {
        padding: 0 20px;
    }

    .standout {
        padding: 0 0 30px 0;
    }

    .main_body {
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    nav,
    footer,
    .main_form,
    .find_your_match,
    .contact_candidate,
    .hero_text,
    .aboutsec,
    .whyus_Sec,
    .getStarted,
    .inner_started,
    .thanks,
    .matched_profiles,
    .filter_main,
    .about_us,
    .howWeWork,
    .standout,
    .contact_form,
    .main_body,
    .career {
        padding-left: 20px;
        padding-right: 20px;
    }

    .career_self {
        flex-direction: column;
        padding: 10px;
    }

    .btn_job {
        font-size: 10px;
        padding: 3px 10px;
    }

    .left_inn h2 {
        font-size: 14px;
    }

    .right_cr span {
        line-height: 10px;
    }

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

    .left_About {
        width: 100%;
    }

    .standout h1 {
        font-size: 22px;
    }

    .standout > p {
        font-size: 14px;
    }

    .accordian_center {
        width: 100%;
    }

    .accordion-header span {
        font-size: 12px;
    }

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

    .steps {
        flex-direction: column;
        gap: 10px;
    }

    .steps img {
        transform: rotate(90deg);
    }

    .step {
        width: 100%;
        padding: 0 10px;
    }

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

    footer > div:nth-child(1) {
        padding: 0;
    }

    .match_profile {
        width: 100%;
    }

    .slider_profiles .match_profile {
        width: 100%;
    }

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

    .main_form form .checks_register,
    .main_form form .field_register {
        width: 100%;
    }

    .main_form button {
        padding: 5px 50px;
        font-size: 10px;
        border-radius: 5px;
        align-self: flex-end;
    }

    .getStarted,
    .whyus_Sec {
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

    nav img {
        width: 180px;
    }

    .btn_center {
        justify-content: flex-end;
    }

    .btn_center button {
        font-size: 10px;
        padding: 5px 10px;
        width: 100%;
    }

    .hero_text h1 {
        font-size: 26px;
    }

    .hero_text h1 + h1 {
        font-size: 22px;
    }

    .hero_text p {
        font-size: 13px;
    }

    .hero_text button {
        padding: 10px 18px;
    }

    .hero_text_inner {
        padding: 0;
    }

    .banner {
        min-height: 420px;
        height: auto;
        padding: 40px 16px;
    }

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

    .login_popup,
    .account_options {
        width: 90%;
    }

    .login_popup h1 {
        font-size: 18px;
    }

    .login_popup p {
        font-size: 12px;
    }
    p a {
        color: #ffffff;
    }
    .login_popup label,
    .login_popup input,
    .login_popup button {
        font-size: 12px;
    }

    .login_popup {
        padding: 30px 15px;
    }

    .other_3 {
        width: 100%;
        padding: 0;
    }

    .inner_popup h2 {
        font-size: 16px;
    }

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

    .popup_Contact {
        padding: 0 20px;
    }

    .inner_popup p br {
        display: none;
    }

    .inner_popup {
        padding: 20px;
    }

    .two_buttons button {
        padding: 7px 30px;
        font-size: 10px;
        border-radius: 8px;
    }

    .howWeWork > h1 {
        font-size: 22px;
    }

    .howWeWork > p {
        font-size: 12px;
    }

    .whyus_obj {
        width: 100%;
    }

    .thanks img {
        width: 90%;
    }

    .thanks h3 {
        font-size: 14px;
    }

    .thanks button {
        font-size: 10px;
        padding: 8px 30px;
    }

    .inner_started h2 {
        font-size: 22px;
        text-align: center;
    }

    .inner_started button {
        font-size: 12px;
        padding: 6px 20px;
    }

    .inner_started img {
        width: 100px;
    }

    /* legacy footer selectors (footer/footer_bar) no longer used */

    .left_about h1 {
        font-size: 22px;
    }

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

    .left_about button {
        font-size: 10px;
    }
}

@media screen and (max-width: 425px) {
    .about_boxes_prnt {
        flex-direction: column;
        align-items: flex-start;
    }

    .info_box_candidate .detail_user p,
    .info_box_candidate .detail_user b {
        font-size: 10px;
    }
}

/* ---------- */
