* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --grey: #80929c;
    --blues: #002639;
    --font-carlito: "Carlito",
        sans-serif !important;
    --font-space: "Space Grotesk",
        sans-serif !important;
    --black: #000;
    --white: #ffffff;
    --blue: #0E253A;
    --grey-2: #BEC8CD;
    --light-blue: #00466D;
    --primary-blue: #0d5a8f;
    --dark-blue: #003459;
    --light-gray: #e8ecef;
    --active-green: #D4EDDA;
    --red-button: #e85d4e;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

body {
    font-family: 'Poppins', sans-serif !important;
}

::selection {
    color: #fff;
    background-color: #0E253A;
}


@font-face {
    font-family: "sigmundpro-medium";
    src: url("fonts/sigmundpro-medium.woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "new-order";
    src: url("fonts/new-order.woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Chalfont";
    src: url("fonts/Chalfont.woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "FuturaCyrillicMedium";
    src: url("fonts/FuturaCyrillicMedium.woff");
    font-weight: normal;
    font-style: normal;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transition: all 0.3s ease;
    animation: slideDown 0.5s ease-out;
}

.header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.logo-section img {
    width: 210px;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    animation: fadeInRight 0.8s ease-out;
    margin-bottom: 0;
    margin-right: auto;
}

@keyframes fadeInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-link:focus,
.nav-link:hover {
    background: #00263929 !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    font-size: 17px;
    font-weight: 500;
    color: #002639;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: .2px;
    font-family: var(--font-carlito) !important;

}

.nav-link.ai-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blues);
    transition: width 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blues);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--blues);
    background: #00263929 !important;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.ai-link {
    background: #00263929 !important;
    color: #002639;
}


@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(255, 68, 56, 0.2);
    }

    50% {
        box-shadow: 0 4px 16px rgba(255, 68, 56, 0.4);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu {
    margin-right: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-right a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-right .icon {
    width: 34px;
    height: 34px;
    background: #ffffff;
    color: #002639;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    transition: transform 0.4s ease;
    font-weight: 700;
}

.btn-start {
    background: #002639;
    color: #fff;
    padding: 10px 20px;
}

.nav-right a:hover .icon {
    transform: translateX(6px);
}

.text {
    font-family: 'Space Grotesk' !important;
}

.nav-right a {
    font-family: 'Space Grotesk' !important;
}

.btn-start:hover {
    color: #fff;
    box-shadow: 0 10px 30px rgba(87, 87, 87, 0.35);
}

.btn-call {
    position: relative;
    overflow: hidden;
    padding: 10px 18px 10px 22px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
}

.btn-call::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--blues);
    transform: translateX(100%);
    transition: transform 0.45s ease;
    z-index: 0;
}

.btn-call:hover::before {
    transform: translateX(0);
}

a:hover {
    text-decoration: none !important;
}

.text-wrap {
    position: relative;
    min-width: 59px;
    height: 32px;
    z-index: 1;
}

.text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transition: opacity 0.35s ease;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
    color: #002639;
    letter-spacing: .2px;
}

.default-text {
    opacity: 1;
}

.hover-text {
    opacity: 0;
}

.btn-call:hover .default-text {
    opacity: 0;
}

.btn-call:hover .hover-text {
    opacity: 1;
    color: #fff;
    font-weight: 500;
    letter-spacing: .3px;
}

.btn-call .icon {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    background: var(--blues);
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-call:hover .icon {
    background: #d5d5d5;
    color: var(--blues);
    transform: translateX(6px);
    font-weight: 600;
}

.hero-section {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 25px 50px rgb(0 0 0 / 12%); */
    margin: 0 50px;
    height: 700px;
}

.background {
    position: absolute;
    inset: 0;
}

.background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 75%), rgb(0 0 0 / 10%), transparent);
    z-index: 2;
}

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

.content {
    position: relative;
    z-index: 3;
    padding: 80px 91px;
    height: 700px;
}

.content-wrapper {
    max-width: 700px;
}

.content-wrapper h3 {
    font-size: 34px;
    text-align: left;
    width: 85%;
    margin-left: 10px;
    color: #ffffff;
    line-height: 41px;
    text-shadow: 1px 1px 4px rgb(0 0 0 / 8%);
    font-weight: 600;
}

.content-wrapper p {
    font-size: 18px;
    color: #d4dee5;
    font-weight: 500;
    margin-bottom: 28px;
    margin-left: 12px;
    letter-spacing: .7px;
    line-height: 29px;
    margin-top: 14px;
}

.content-wrapper h1 {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 35px;
    line-height: 79px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}

.tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.tab-button {
    padding: 9px 32px;
    border-radius: 77px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgb(216 220 223);
    color: #002639;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tab-button.active {
    /* background: white; */
    /* color: #1a1a2e; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    background: rgb(216 220 223);
    color: #002639;
    border: 2px solid #002639;
    text-align: center;
}


.tab-content-container {
    border-radius: 16px;
    padding: 41px;
    backdrop-filter: blur(108px) !important;
    background: rgb(14 37 58);
    border: 2px solid hsl(0deg 0% 100% / 60%);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

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

.section-banner {
    margin-top: 129px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 16px 160px 16px 24px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.tabs a {
    width: 100%;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.5);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: #002639;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: .3px;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--blues);
    box-shadow: 0 4px 12px rgba(118, 118, 118, 0.186);
}

.search-icon {
    width: 20px;
    height: 20px;
}

.trusted-by {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0.6;
}

.trusted-by span {
    color: white;
    font-size: 14px;
}

.company-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.company-logos span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.jobs-content h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
    text-shadow: 2px 2px 6px rgb(0 0 0 / 4%);
    text-align: center;
    width: 76%;
    margin: auto;
    line-height: 32px;
}

.button-group {
    display: flex;
    gap: 16px;
}

button.btn.btn-verifirds {
    text-align: center;
    margin: auto;
    margin-top: 18px;
    background: #002639;
    border: none;
    padding: 10px 47px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    letter-spacing: .4px;
    font-size: 19px;
    border-radius: 64px;
}

.tab-button a {
    color: #fff;
}

.process-section {
    padding: 97px 0;
    background: #f5f5f5;
    position: relative;
    margin-top: 50px;
}

.process-section-com {
    text-transform: uppercase;
    font-size: 87px;
    -webkit-text-stroke: 3px #002639;
    color: #002639;
    letter-spacing: 5px;
    position: relative;
    font-weight: 800;
    text-align: center;
    letter-spacing: 4px;
}

.process-section .image-tabs img {
    position: absolute;
    bottom: 0;
    width: 24%;
}

.process-section .tab-btn img {
    width: 30px;
}

.process-section .steps-tabs {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-section .tab-btn.active img {
    filter: invert(1);
}

.process-section .tab-btn:hover img {
    filter: invert(1);
}

.process-section .tab-btn:hover {
    background-color: var(--blues);
    color: #fff;
}

.process-section .tab-btn {
    padding: 12px 28px;
    border: 2px solid #002639;
    background: transparent;
    margin: 0 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    min-width: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #002639;
    font-size: 20px;
}

.process-section .tab-btn.active {
    background: var(--blues);
    color: #fff;
}


.process-section .process-wrapper {
    display: none;
    position: relative;
    border-top: 1px solid #ddd;
    padding-top: 60px;
    margin-top: 108px;
}

.process-section .process-wrapper.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.process-section .process-step {
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.process-section .process-step::after {
    content: '';
    position: absolute;
    right: 0;
    top: -60px;
    height: calc(100% + 60px);
    width: 1px;
    background: #ddd;
}

.process-step:last-child::after {
    display: none;
}

.step-badge {
    position: absolute;
    top: -79px;
    left: 50%;
    transform: translateX(-50%);
    background: #80929c;
    color: #ffffff;
    padding: 5px 18px;
    font-size: 19px;
    font-weight: 600;
}

.process-step h3 {
    font-family: 'General Sans', sans-serif !important;
    color: #0d0d0d;
    line-height: 1.235;
    font-weight: 600;
    max-width: 210px;
    margin: 0px auto 30px;
}

.process-step p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 29px;
    color: #383838;
}

.process-section .step-btn {
    padding: 12px 24px;
    border: 1px solid #002639;
    color: #002639;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 16px;
    letter-spacing: .2px;
    border-radius: 4px;
}

.step-btn:hover {
    background: #002639;
    color: #fff;
}

.step-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border: 2px solid #ddd;
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #002639;
}

.process-step:hover .step-icon {
    background: var(--blues);
    color: #fff;
}

.feature-wrap {
    display: flex;
    gap: 40px;
    background: #ffffff;
    padding: 32px 40px;
    border-radius: 9px;
    position: relative;
    border: 2px solid #80929c8f;
    margin-top: 2rem;
}

section.list-tests {
    margin: 100px 0;
}

.feature-wrap::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--blues);
    border-radius: 12px 0 0 12px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.com-h2-h2 {
    font-size: 57px;
    font-weight: 600;
    color: #002639;
    text-align: center;
    line-height: 79px;
    letter-spacing: .6px;
    font-family: 'new-order' !important;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #b5c0c6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 30px;
    color: #002639;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
}

.feature-box:hover .feature-icon {
    background-color: var(--blues);
    color: #fff;
}

.feature-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.feature-wrap.multi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.orker-make-differnt {
    margin: 80px 0;
}

.values-section {
    width: 100%;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    position: relative;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.orker-make-differnt .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease;
}

.value-card:hover .card-image {
    transform: scale(1.05);
}

.orker-make-differnt .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/dividerxx.png);
    transition: background 0.5s ease;
    opacity: .3;
}

.value-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.orker-make-differnt h4 {
    font-size: 23px;
    color: #262626;
    text-align: center;
    line-height: 34px;
    padding: 0px 0;
    letter-spacing: .5px;
    font-family: 'Carlito' !important;
    margin-bottom: 3rem;
}

.orker-make-differnt .card-icon-wrapper {
    position: absolute;
    bottom: 82px;
    left: 50%;
    transform: translateX(-50%);
    width: 71px;
    height: 71px;
    background: #002639;
    clip-path: polygon(50% 0%, 100% 14%, 100% 60%, 100% 100%, 0 100%, 0 63%, 0 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 2;
}

.value-card:hover .card-icon-wrapper {
    bottom: 273px;
    width: 80px;
    height: 80px;

}

.orker-make-differnt .card-icon {
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

li {
    list-style-type: none;
}

.orker-make-differnt .card-icon i {
    font-weight: 500;
}

.orker-make-differnt .card-description2 ul {
    padding: 0;
}

.orker-make-differnt .card-description2 li {
    list-style-type: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #171717;
    padding: 7px 0;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    text-transform: capitalize;
}

.orker-make-differnt .card-description2 li i {
    font-size: 24px;
    color: #002639;
}

.orker-make-differnt .card-description2 p {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 25px;
    padding-left: 4px;
    margin-bottom: 10px;
}

.value-card:hover .card-content-box {
    text-align: left;
}

.orker-make-differnt .card-content-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px;
    text-align: center;
    transition: all 0.5s ease;
    z-index: 1;
    margin-bottom: 0;
}

.orker-make-differnt .card-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--blues);
    margin: 0;
    margin-bottom: 0;
    transition: all 0.5s ease;
    border-bottom: 2px dotted #80929c;
    display: inline;
}

.orker-make-differnt .card-description2 {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.value-card:hover .card-description2 {
    max-height: 200px;
    opacity: 1;
}

.submit-wrap .find-suoervisor-buttons {
    width: 100%;
    border: none;
    outline: none;
}

.new-aaess {
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    background-color: #fff;
    margin-bottom: 110px;
}

.new-aaess p {
    font-family: var(--font-carlito);
    padding: 5px 0;
    font-size: 17px;
    text-align: left;
    line-height: 27px;
}

.find-suoervisor-buttons {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #002639;
    color: #fff;
    border-radius: 36px;
    margin: auto;
    padding: 12px 35px;
    margin-top: 38px;
    font-weight: 600;
}

.find-suoervisor-buttons:hover {
    color: #fff;
}


/*new-contacts*/
.contact-us-new {
    background: #eeeeee;
    margin: 80px 0 120px;
    background-image: url(../images/banner-bottom.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 80%;
}

.contact-fomr-sec {
    padding-left: 75px;
}

.contact-us-new img {
    width: 100%;
}

.contact-us-new img {
    width: 217px;
    margin-left: 0;
    margin-bottom: -82px;
}

.contact-section {
    padding-left: 112px;
    max-width: 660px;
}

.contact-form-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.main-div-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 625px;
}

.contact-section {
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag {
    display: inline-block;
    background: #002639;
    color: #e2e2e2;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    /* animation: slideInLeft 0.6s ease-out 0.2s both; */
    font-family: 'Carlito';
}

.tag::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 8px;
    height: 100%;
    background: var(--grey);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-heading {
    font-size: 51px;
    font-weight: 900;
    color: var(--blues);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: slideInLeft 0.6s ease-out 0.3s both;
    font-family: 'new-order' !important;
}

.description {
    color: #666666;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 26px;
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.info-box {
    padding: 3px 19px;
    border-left: 4px solid var(--blues);
    margin-bottom: 26px;
    margin-top: 20px;
}

.contact-form-sec2 a.find-suoervisor-buttons {
    text-align: center;
    width: 100%;
}

.info-item {
    margin-bottom: 13px;
    font-size: 21px;
    line-height: 1.8;
    color: #333;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Carlito';
    font-weight: 500;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    font-weight: 700;
    color: #1a1a1a;
}

.info-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blues);
    transition: width 0.4s ease;
}

.info-item:hover::after {
    width: 100%;
}

.info-item:hover {
    color: #000;
}

.call-button {
    display: inline-flex;
    align-items: center;
    background: #80929c;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: slideInLeft 0.6s ease-out 0.6s both;
    border-radius: 42px;
}

.call-button:hover {
    transform: translateX(5px);
}

.phone-icon-box {
    background: #002639;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    border-radius: 83px;
    margin-right: 0;
}

.phone-icon {
    width: 24px;
    height: 25px;
    color: #ffffff;
}

.call-text {
    background: #80929c;
    color: #ffffff;
    padding: 1px 28px 0 8px;
    height: 52px;
    display: flex;
    align-items: center;
    font-size: 21px;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Carlito';
    letter-spacing: 0.5px;
    border-radius: 50px;
}




.contact-form-sec2 {
    width: 600px;
    padding-left: 69px;
}

.form-card {
    max-width: 540px;
    margin: auto;
    background: #fff;
    /* border: 1px solid #e5e5e5; */
    padding: 40px 35px;
    width: 100%;
    min-height: 674px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.form-card h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--blues);
    margin-bottom: 6px;
}

.form-card p {
    color: #666666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
    transition: .2s;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blues);
}

.submit-wrap {
    text-align: center;
    margin-top: 25px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    background: #FFD400;
    border: none;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .3px;
}

.bg-two-box-design h4 {
    font-size: 23px;
    color: #262626;
    text-align: center;
    line-height: 34px;
    padding: 0px 0;
    letter-spacing: .5px;
    font-family: 'Carlito' !important;
    margin-bottom: 3rem;
}

.bg-bottom-cart img {
    width: 126px;
    position: absolute;
    top: -50px;
    left: -56px;
    transform: rotate(312deg);
    z-index: -1;
}



.bg-bottom-cart2 img {
    width: 185px;
    position: absolute;
    bottom: -66px;
    right: -73px;
    transform: rotate(126deg);
    z-index: -1;
}

.bg-two-box-design {
    position: relative;
    padding: 80px 0;
    background-image: url(../images/bg-1-core-value.webp);
    background-position: 91% 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 184%;
}

.submit-btn span {
    padding: 14px 26px;
    color: #000;
}

.submit-btn .arrow {
    background: #000;
    color: #fff;
    padding: 14px 16px;
    font-size: 16px;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
}

.grid-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 38, 57, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 38, 57, 0.5) 1px, transparent 1px);
    background-size: 50px 50px;
}

.pricing-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    border: 2px solid #80929c73;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover .btn-custom {
    color: #fff;
}

.pricing-card:hover .btn-custom::before {
    width: 100%;
}

.pricing-card:hover {
    box-shadow: 0 20px 60px rgba(0, 38, 57, 0.2);
    border: 2px solid #002639;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #86efac;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.plan-title {
    font-size: 31px;
    font-weight: 800;
    color: #002639;
    margin-bottom: 8px;
}

.plan-subtitle {
    color: #6b7280;
    font-size: 20px;
    margin-bottom: 25px;
}

.service-fee img {
    width: 38px;
    margin-right: 11px;
}

.service-fee {
    font-size: 21px;
    font-weight: 600;
    color: #002639;
    margin-bottom: 15px;
}

.includes-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #5d5d5d;
    justify-content: flex-start;
    gap: 5px;
    font-size: 18px;
    font-weight: 500;
}

.features-list li i {
    color: #002639;
    font-size: 21px;
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-icon {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    color: #9ca3af;
}

.btn-custom {
    width: 100%;
    padding: 14px 24px;
    border: 2px solid #002639;
    background: transparent;
    color: #002639;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    letter-spacing: .7px;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #002639;
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-custom:hover {
    color: #ffffff;
}

.btn-custom:hover::before {
    width: 100%;
}

.compare-link {
    text-align: center;
    margin-top: 40px;
}

.compare-link a {
    color: #002639;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.compare-link a:hover {
    text-decoration: underline;
}

/*new-work*/
.customer-sec-padd-new {
    padding: 100px 0 0;
}

.customer-sec-padd-new h4 {
    font-size: 23px;
    color: #262626;
    text-align: center;
    line-height: 34px;
    padding: 0px 0;
    letter-spacing: .5px;
    font-family: 'Carlito' !important;
    margin-bottom: 3rem;
}

.work-flow-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    justify-content: center;
    width: 96%;
    margin: auto;
}

.work-flow-list li {
    margin-bottom: 50px;
}

ul.work-flow-list li p.suffesv3-sub-heading {
    font-size: 27px;
    font-weight: 600;
    margin-left: 45px;
    color: #64747d;
}

ul.work-flow-list li p {
    width: 60%;
    color: #484848;
    font-size: 19px;
    margin-bottom: 11px;
    text-align: left;
}

.div-left-icons p span i {
    font-size: 17px;
    color: #002639;
}

.work-icon-wrap {
    background: #fff;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    margin-right: auto;
}

.work-flow-list h4 {
    font-size: 24px;
    text-align: left;
    margin: 10px 0 2px;
    font-weight: 600;
    color: #002639;
}

.work-icon-wrap img {
    width: 59px;
    margin: auto;
}

.div-left-icons p span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #525252;
    font-size: 18px;
    font-weight: 500;
}

.div-left-icons {
    width: 70%;
    margin-left: auto;
    text-align: left;
}

.work-icon-wrap ul li::after {
    top: 63px;
    background: #000;
}

.work-flow-list li:nth-child(3)::after,
.work-flow-list li:nth-child(4)::after {
    transform: rotate(180deg);
}

.work-flow-list li::after {
    content: "\ea50";
    /* bx-chevron-right */
    font-family: "boxicons";
    font-style: normal;
    font-weight: normal;
    background: #002639;
    border-radius: 50%;
    color: #ffffff;
    text-align: center;
    position: absolute;
    top: 102px;
    right: 68px;
    font-size: 26px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-flow-list li {
    text-align: center;
    position: relative;
    width: 50%;
    z-index: 9;
}

.teledoc-clone-steps .work-flow-list::after {
    height: 459px;
}

.sub-icons2 {
    width: 85px;
    height: 85px;
    background: #002639;
    border-radius: 500%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-custom-new-process2 ul::after {
    height: 375px !important;
    top: 78px;
    border-radius: 0 20px 20px 0;
    border-color: var(--grey);
}

.sub-icons {
    display: flex;
    align-items: center;
    width: 107px;
    background: #ffffff;
    height: 107px;
    border-radius: 50%;
    justify-content: center;
    border: 1px dashed #002639;
}

.work-flow-list::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 308px;
    border-right: 2px dashed var(--grey);
    top: 117px;
    transform: none !important;
    right: 0 !important;
    border-radius: 0 62px 62px 0;
    border-top: 2px dashed var(--grey);
    border-bottom: 2px dashed var(--grey);
    margin-right: 31px;
}

.career-cta {
    padding: 40px 0;
    background: #fff;
}

.career-wrap {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: stretch;
    position: relative;
    background: #002639;
}

.career-img {
    width: 35%;
    position: relative;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
}

.career-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.career-content {
    width: 65%;
    background: #002639;
    color: #fff;
    padding: 50px 80px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
}

.career-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'new-order' !important;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.career-content h2 span {
    color: #bdd0da;
}

.career-content p {
    color: #cfcfcf;
    max-width: 78%;
    font-size: 19px;
    line-height: 29px;
}

.career-arrow {
    position: absolute;
    right: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: #80929c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.icon-arrow:before {
    content: "\2197";
    font-size: 26px;
    color: #ffffff;
    font-weight: bold;
}

.contact-us-new {
    position: relative;
}

/*footer*/
.footer-3,
.footer-2 {
    background-color: #0b2653;
}

.dark-widget {
    background-color: #0b2653;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget-section {
    background-color: #002639;
    border-top: 1px solid rgba(17, 17, 17, 0.05);
    border-bottom: 1px solid rgba(17, 17, 17, 0.05);
    position: relative;
    z-index: 1;
}

.footer-2 .footer-top {
    border-top-width: 0px;
    border-bottom-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
    border-style: solid;
}

.footer-3 .footer-top,
.footer-2 .footer-top {
    position: relative;
    padding: 60px 0;
}

.footer-bottom {
    padding: 18px;
}

.footer-2 .footer-bg {
    opacity: 0.5;
}

.footer-3 .footer-bg,
.footer-2 .footer-bg {
    background-image: url(../images/bg-foot.png);
    background-size: 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.footer-3 .truck,
.footer-2 .truck {
    background-image: url(../images/truck-1.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 70px;
    height: 40px;
    right: 0;
    bottom: 0;
    animation: running-anim 20s linear infinite;
}

.footer-3 .truck-2,
.footer-2 .truck-2 {
    background-image: url(../images/truck-2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 90px;
    height: 40px;
    right: 30%;
    bottom: 0;
    animation: running-anim 30s linear infinite;
}

.footer-3 .truck-3,
.footer-2 .truck-3 {
    background-image: url(../images/truck-3.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 70%;
    bottom: 0;
    animation: running-anim-left 35s linear infinite;
}

.footer-widget {
    padding: 20px 15px;
}

.footer-top .brand {
    margin-bottom: 20px;
    display: block;
}

.footer-2 .footer-icon-box {
    display: flex;
    align-items: center;
    margin-top: 22px;
    margin-bottom: 22px;
    background: #d6dcdf;
    width: fit-content;
    padding: 20px;
    border-radius: 6px;
}

.footer-2 .footer-icon-box svg {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    fill: #002639;
}

.footer-2 .footer-icon-content h3 {
    color: #002639;
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 9px;
    line-height: 1;
    letter-spacing: 0;
    font-family: 'Carlito' !important;
}

.footer-2 .footer-icon-content a {
    color: #2b2b2b;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    font-family: 'Carlito' !important;
    margin-top: -4px;
}

.footer-2 .footer-top .footer-social {
    margin-top: 20px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}

.footer-2 .footer-top .footer-social li {
    display: inline-block;
    margin-right: 3px;
}

.footer-menu-inners ul {
    padding: 0;
    padding-top: 15px;
}

.footer-2 .footer-top .footer-social li a {
    width: 45px;
    height: 45px;
    line-height: 35px;
    text-align: center;
    background-color: #d6dcdf;
    display: inline-block;
    border-radius: 4px;
}

.footer-2 .footer-top .footer-social li a i {
    color: var(--blues);
}

.widget-title {
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.widget_rss .widget-title h3 a:last-child,
.widget-title h3 {
    color: #051441;
    font-size: 24px;
    font-weight: 600;
    font-family: "Teko", sans-serif;
    line-height: normal;
    letter-spacing: -0.2px;
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

.footer-2 .footer-widget.subscribe {
    margin-top: -120px;
    padding: 0;
}

.footer-2 .subscribe-widget {
    padding: 31px;
    padding-top: 32px;
    position: relative;
    z-index: 1;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-top: 10px solid #002639;
    border-radius: 15px;
}

.subscribe .widget-box .widget-title h3 {
    font-size: 32px;
    color: #002639;
    font-family: 'Carlito' !important;
    font-weight: 600;
    border-bottom: 0px double #ddd;
    letter-spacing: .3px;
    padding-bottom: 8px;
    display: inline-block;
    margin-top: 16px;
}

.subscribe .widget-title p {
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    font-size: 17px;
    width: 100%;
    font-weight: 500;
    color: #454545;
    margin-top: 9px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Carlito' !important;
}

.footer-2 .subscribe-widget:before {
    background-color: #fff;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.footer-widget.about-widget {
    padding-left: 56px;
    text-align: left;
}

.widget-title img {
    width: 100%;
}

.footer-bottom .site-info {
    color: #ffffff;
    font-family: 'Carlito' !important;
}

.menu-li a:hover {
    color: #fff;
}

@keyframes running-anim {
    0% {
        right: -30%;
    }

    100% {
        right: 100%;
    }
}

@keyframes running-anim-left {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

.brand img {
    margin-left: -28px;
    width: auto;
}

.about-widget p {
    color: #fff;
    font-size: 19px;
    width: 95%;
    font-family: 'Carlito' !important;
    text-align: left;
}

.widget-box h3 {
    font-size: 26px;
    color: #fff;
    font-family: 'Space Grotesk' !important;
    font-weight: 600;
    border-bottom: 3px double #ddd;
    letter-spacing: .3px;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-menu {
    margin-top: 50px;
    text-align: left;
}

ul .menu-li {
    font-size: 19px;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    padding-bottom: 8px;
    font-family: 'Carlito' !important;
}

.menu-li a {
    color: #ddd;
}

.footer-bottom .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    font-size: 17px;
    letter-spacing: .4px;
    font-family: 'Carlito' !important;
}

.art-board img {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    opacity: .2;
}


.footer-bottom .footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom .sep {
    color: rgba(255, 255, 255, 0.5);
}

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 7px 0;
    box-shadow: 0 2px 16px hsl(0deg 0% 1.73% / 15%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.card-container {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    height: 93vh;
    align-items: center;
    overflow: hidden;
}

.role-card {
    background: white;
    border-radius: 20px;
    padding: 34px 26px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid #b8d4e8;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.card-header-btn {
    width: 100%;
    padding: 9px;
    border-radius: 10px;
    border: none;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 65px;
    cursor: default !important;
    letter-spacing: .5px;
    font-family: 'Roboto';
}

.com-heighs {
    min-height: 254px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.employer-header {
    background-color: #00466D;
    color: white;
}

.supervisor-header {
    background-color: #BEC8CD;
    color: #0E253A;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    color: #00263A;
    margin-bottom: 10px;
    text-align: center;
}

.card-description {
    color: #0C3A63;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    margin-bottom: 60px;
}

.register-btn2 {
    width: 100%;
    padding: 13px;
    border-radius: 15px;
    border: none;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(90deg, #00466D, #0E253A);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-container.card-only-regitsers {
    background-color: #fff !important;
    border-top: 1px solid #ddd;
}

.register-2 {
    background: #00466D;
}

.register-btn2:hover {
    background-color: #003a54;
    transform: scale(1.02);
}

.register-btn2:active {
    transform: scale(0.98);
}

.card-container {
    margin-top: 120px;
}


/*responsive*/
@media (max-width:1700px) {
    .card-container {
        background: #bec8cd;
    }

    .orker-make-differnt .card-icon-wrapper {
        bottom: 77px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .div-left-icons {
        width: 80%;
    }

    .contact-form-sec2 {
        width: 550px;
        padding-left: 0;
    }

    .contact-section {
        padding-left: 46px;
    }

    .nav-link {
        padding: .5rem .7rem !important;
    }

    .logo-section img {
        width: 184px;
    }

    .nav-right {
        gap: 11px;
    }

    .content-wrapper {
        max-width: 592px;
    }

    .content-wrapper h1 {
        font-size: 55px;
        line-height: 61px;
    }

    .content-wrapper h3 {
        font-size: 31px;
        width: 91%;
    }

    .content {
        padding: 70px 64px;
        display: flex;
        align-items: center;
    }

    .tab-content-container {
        padding: 32px
    }

    .values-grid {
        gap: 18px;
    }

    .orker-make-differnt .card-title {
        font-size: 22px;
    }

    .process-section .image-tabs img {
        width: 22%;
        left: -39px;
    }

    .content-wrapper p {
        font-size: 18px;
        margin-bottom: 23px;
        margin-top: 10px;
    }

    .footer-top .col-md-9 {
        flex: 0 0 95%;
        max-width: 95%;
    }


}

.footer-2 .footer-top {
    border-left: 0;
    border-right: 0;
}

@media (min-width: 1599px) {
    .main-custom-new-process2 ul::after {
        height: 350px !important;
    }
}

@media (max-width:1500px) {
    .career-arrow {
        right: -15px;
    }

    .hero-section {
        margin: 0 25px;
        height: 628px;
    }

    .content {
        padding: 61px 47px;
        height: 628px;
    }

    .content-wrapper h1 {
        font-size: 52px;
        line-height: 61px;
        margin-bottom: 20px;
    }

    .content-wrapper h3 {
        font-size: 29px;
        width: 95%;
        line-height: 35px;
    }

    .content-wrapper {
        max-width: 566px;
    }

    .nav-right {
        gap: 8px;
    }

    .nav-menu {
        gap: 0.3rem;
    }

    .nav-left {
        gap: 16px;
    }

    .process-step h3 {
        font-size: 25px;
    }

    .orker-make-differnt .card-description2 p {
        font-size: 17px;
        line-height: 24px;
    }

    .value-card:hover .card-icon-wrapper {
        bottom: 260px;
    }

    .value-card {
        height: 455px;
    }

    a.find-suoervisor-buttons {
        letter-spacing: .3px;
    }

    .div-left-icons {
        width: 85%;
    }

    .features-list li {
        margin-bottom: 10px;
        gap: 5px;
        font-size: 17px;
        font-weight: 500;
    }

    .career-content {
        width: 74%;
    }

    .footer-top .col-md-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .info-item {
        margin-bottom: 4px;
    }

    .footer-bottom .col-md-8 {
        flex: 0 0 88.666667%;
        max-width: 88.666667%;
    }

    .info-item {
        font-size: 19px;
        display: block;
        width: max-content;
    }

    .description {
        width: 80%;
    }

    .contact-fomr-sec {
        padding-left: 52px;
    }

    .footer-menu {
        padding-left: 30px;
    }

    .contact-section {
        padding-left: 51px;
    }

    .contact-section {
        padding-left: 0;
    }

    .contact-form-inner {
        gap: 51px;
    }

    .career-wrap {
        max-width: 91%;
    }

    .plan-subtitle {
        font-size: 19px;
        margin-bottom: 25px;
    }

    .process-section-com {
        font-size: 81px;
    }

    .orker-make-differnt .card-description2 li {
        font-size: 16px;
        padding: 6px 0;
        line-height: 23px;
    }

    .orker-make-differnt .col-md-11 {
        flex: 0 0 95%;
        max-width: 95%;
    }

    .com-h2-h2 {
        line-height: 70px;
        font-size: 55px;
    }

    .nav-link {
        font-size: 16px;
        padding: .5rem .6rem !important;
    }

    .list-tests .col-md-10 {
        flex: 0 0 88%;
        max-width: 88%;
    }
}

@media (max-width:1380px) {
    .nav-link {
        font-size: 16px;
        padding: .5rem .3rem !important;
    }

    .btn-start {
        padding: 6px 14px;
    }

    .orker-make-differnt .col-md-11 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .work-flow-list {
        width: 100%;
    }

    .nav-right a {
        gap: 7px;
        font-size: 17px;
    }

    .nav-container {
        padding: 2px .5rem;
    }

    .nav-right a {
        gap: 7px;
        font-size: 19px;
    }

    .text {
        font-size: 19px;
    }
}

@media (max-width:1280px) {
    .com-h2-h2 {
        line-height: 60px;
        font-size: 52px;
    }

    .values-grid {
        gap: 10px;
    }

    .orker-make-differnt .card-title {
        font-size: 20px;
    }

    .logo-section img {
        width: 167px;
    }

    .process-step h3 {
        font-size: 24px;
    }

    .div-left-icons {
        width: 87%;
    }

    .main-heading {
        font-size: 44px;
        margin-bottom: 13px;
    }

    .footer-2 .subscribe-widget {
        padding: 15px;
        padding-top: 28px;
    }

    .footer-2 .footer-icon-box svg {
        width: 40px;
        height: 40px;
    }

    .footer-2 .footer-icon-content h3 {
        font-size: 22px;
        margin-bottom: 13px;
    }

    .footer-2 .footer-icon-box {
        margin-top: 17px;
        margin-bottom: 20px;
        padding: 16px;
    }

    .about-widget p {
        font-size: 18px;
        width: 100%;
    }

    .brand img {
        margin-left: -28px;
        width: 200px;
    }

    .subscribe .widget-title p {
        font-size: 16px;
    }

    .subscribe .widget-box .widget-title h3 {
        font-size: 29px;
        width: 88%;
    }

    .info-item {
        font-size: 18px;
    }

    .description {
        width: 82%;
        font-size: 18px;
    }

    ul.work-flow-list li p {
        width: 71%;
        font-size: 18px;
    }

    .process-section-com {
        font-size: 61px;
    }

    .feature-content h4 {
        font-size: 20px;
    }

    .nav-link {
        font-size: 16px;
        padding: .5rem .3rem !important;
    }

    .orker-make-differnt .card-icon i {
        font-size: 37px;
    }

    .process-section-com {
        font-size: 71px;
    }

    .contact-us-new img {
        width: 184px;
        margin-left: 0;
        margin-bottom: -120px;
    }

    .bg-bottom-cart2 img {
        width: 146px;
        position: absolute;
        bottom: -50px;
        right: -51px;
        transform: rotate(126deg);
        z-index: -1;
    }

    .contact-form-sec2 {
        max-width: 500px;
        width: 100%;
    }
}

@media only screen and (max-width:1024px) and (min-width:769px) {
    .navigation-wrap .container {
        max-width: 897px;
    }

    a.nav-link {
        font-size: 18px !important;
    }

    .nav-item {
        margin: 0 12px;
    }

    .div-btn2 {
        padding: 5px 20px;
        font-size: 17px;
    }

    .div-btn2 i {
        font-size: 15px;
    }

    .btn-div-3 {
        padding: 5px 17px;
        font-size: 17px;
    }

    .card-container {
        gap: 12px;
    }


}

@media (max-width: 1080px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-container {
        margin-top: 89px;
    }

    .section-banner {
        margin-top: 89px;
    }

    .ai-link {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .nav-menu {
        gap: 0.3rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    li.nav-item {
        margin: 0px 6px;
        padding: 7px 4px !important;
        border-bottom: 1px solid #ddd;
    }

    .btn-div-3 {
        gap: 5px;
        padding: 6px 16px;
        font-size: 16px;
    }

    .btn-div-3 i {
        font-size: 15px;
    }

    .div-btn2 {
        gap: 8px;
        padding: 5px 15px;
        font-size: 16px;
    }

    .div-btn2 i {
        font-size: 13px;
    }

    a.nav-link {
        font-size: 18px !important;
    }

    .btn-div-alls {
        margin-bottom: 21px;
    }

    ul.navbar-nav {
        border-top: 1px solid #000;
        margin-top: 25px;
        padding-top: 5px !important;
    }

    .nav-container {
        height: 78px;
        padding: 1px 4rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        /* transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); */
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
        height: 100%;
    }

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

    .nav-link {
        font-size: 16px;
        padding: .5rem 1rem !important;
    }

    .nav-menu {
        top: 78px;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 1.2rem;
        border-radius: 8px;
    }

    .process-section {
        padding: 65px 0;
        margin-top: 41px;
    }

    .process-section .tab-btn {
        font-size: 19px;
    }

    .orker-make-differnt .col-md-11 {
        flex: 0 0 90%;
        max-width: 90%;
    }

    .bg-two-box-design {
        padding: 65px 0;
        background-size: cover;
    }

    .bg-bottom-cart img {
        width: 95px;
        position: absolute;
        top: -41px;
        left: -34px;
    }

    .plan-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .service-fee img {
        width: 34px;
    }

    .btn-custom {
        padding: 12px 24px;
    }

    .customer-sec-padd-new h4 {
        font-size: 22px;
        width: 78%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-top .col-lg-3 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .footer-widget.about-widget {
        padding-left: 20px;
    }

    .footer-2 .footer-icon-content h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .footer-menu {
        padding-left: 5px;
    }

    .footer-2 .footer-icon-box svg {
        width: 31px;
        height: 31px;
    }

    .about-widget p {
        font-size: 16px;
        width: 100%;
    }

    .subscribe .widget-box .widget-title h3 {
        font-size: 24px;
        width: 81%;
    }

    .contact-us-new img {
        display: none;
    }

    .career-content p {
        max-width: 100%;
        font-size: 19px;
        line-height: 29px;
    }

    .customer-sec-padd-new {
        padding: 65px 0 0;
    }

    .process-section-com {
        font-size: 63px;
        letter-spacing: 2px;
    }

    .service-fee {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .plan-title {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .pricing-card {
        padding: 27px;
    }

    .bg-two-box-design {
        overflow: hidden;
    }

    .process-section .process-step {
        padding: 0 11px;
    }

    .process-step p {
        font-size: 18px;
        line-height: 26px;
    }

    .feature-box {
        gap: 12px;
    }

    .feature-content h4 {
        font-size: 19px;
    }

    .list-tests .col-md-10 {
        flex: 0 0 99%;
        max-width: 99%;
    }


    .nav-item {
        width: 100%;
    }

    .com-h2-h2 {
        line-height: 56px;
        font-size: 46px;
    }

    .breadcrumb-wrap {
        margin: 80px 0 50px;
    }
}

@media(max-width:991px) {
    .process-wrapper.active {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .footer-2 .footer-widget.subscribe {
        margin-top: 0;
        padding: 0;
    }

    .content {
        height: 100%;
        padding: 53px 49px;
    }

    .background::before {
        background: linear-gradient(to right, rgb(0 0 0 / 75%), rgb(0 0 0 / 36%), #00000040);
    }

    .content-wrapper h3 {
        width: 100%;
    }

    .feature-wrap.multi {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper h1 {
        font-size: 48px;
        line-height: 59px;
        margin-bottom: 20px;
    }

    .background img {
        width: 211%;
        height: 100%;
    }

    .com-h2-h2 {
        line-height: 54px;
        font-size: 44px;
    }

    .hero-section {
        height: 100%;
    }

    .process-step::after {
        display: none;
    }

    .step-badge {
        position: static;
        transform: none;
        margin-bottom: 20px;
        display: inline-block;
    }

    .career-wrap {
        flex-direction: column;
    }

    .career-img,
    .career-content {
        width: 100%;
    }

    .career-img {
        clip-path: none;
        height: 220px;
    }

    .career-content {
        padding: 30px;
    }

    .career-arrow {
        right: 15px;
        top: auto;
        bottom: 15px;
        transform: none;
        width: 55px;
        height: 55px;
    }

    .career-content h2 {
        font-size: 26px;
    }

    section.list-tests {
        margin: 82px 0;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .com-h2-h2 {
        line-height: 51px;
        font-size: 42px;
    }

    .value-card {
        height: 450px;
    }

    .orker-make-differnt .card-icon-wrapper {
        bottom: 100px;
        width: 80px;
        height: 80px;
    }

    .orker-make-differnt .card-icon {
        width: 32px;
        height: 32px;
    }

    .orker-make-differnt .card-title {
        font-size: 20px;
    }

    .orker-make-differnt .card-description2 {
        font-size: 14px;
    }

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

    .main-heading {
        font-size: 39px;
    }

    .phone-icon-box {
        width: 52px;
        height: 52px;
    }

    .description {
        font-size: 18px;
    }

    .info-box {
        padding: 8px 0 8px 16px;
    }

    .info-item {
        font-size: 18px;
    }

    .footer-top .col-lg-3 {
        flex: 0 0 97%;
        max-width: 97%;
        margin-bottom: 34px;
    }

    .footer-bottom .site-info {
        text-align: center !important;
    }

    .call-text {
        font-size: 18px;
        padding: 0 17px 0 10px;
    }

    .phone-icon-box {
        width: 70px;
        height: 65px;
    }

    .call-text {
        height: 45px;
    }

    .pricing-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .pricing-card {
        padding: 30px;
        margin-bottom: 30px;
    }

    .popular-badge {
        top: -12px;
        right: 20px;
        font-size: 0.7rem;
        padding: 5px 14px;
    }

    .card-container {
        gap: 20px;
    }

    .role-card {
        min-width: 280px;
        padding: 30px 20px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-description {
        font-size: 14px;
    }

    .content {
        padding: 45px 41px;
    }

    .process-section .steps-tabs {
        margin-bottom: 40px;
        margin-top: 30px;
    }

    .process-section .tab-btn {
        padding: 11px 11px;
        min-width: auto;
        font-size: 18px;
    }

    .process-section .tab-btn img {
        width: 26px;
    }

    .value-card:hover .card-icon-wrapper {
        bottom: 235px;
    }

    .orker-make-differnt .card-icon-wrapper {
        bottom: 77px;
    }

    .orker-make-differnt {
        margin: 80px 0 51px;
    }

    .process-section-com {
        font-size: 49px;
        letter-spacing: 3px;
    }

    .div-left-icons {
        width: 100%;
    }

    .features-list li i {
        color: #002639;
        font-size: 18px;
        font-weight: 500;
    }

    .bg-two-box-design h4 {
        font-size: 20px;
        line-height: 34px;
        margin-bottom: 2rem;
        width: 71%;
        margin-left: auto;
        margin-right: auto;
    }

    a.find-suoervisor-buttons {
        font-size: 17px;
        font-weight: 500;
        padding: 9px 28px;
        margin-top: 37px;
        font-weight: 500;
    }

    .orker-make-differnt h4 {
        font-size: 21px;
        width: 78%;
        margin-left: auto;
        margin-bottom: 2rem;
        margin-right: auto;
    }

    .process-step p {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .process-section .process-wrapper.active {
        grid-template-columns: repeat(1, 1fr);
        gap: 54px;
    }

    .process-section .process-wrapper {
        padding-top: 27px;
        margin-top: 41px;
    }

    .process-section {
        padding: 57px 0;
        margin-top: 30px;
    }

    .content-wrapper h1 {
        font-size: 43px;
        line-height: 55px;
    }

    .tab-content-container {
        padding: 32px 21px 6px;
    }

    .tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }

    .search-input {
        padding-right: 24px;
        margin-bottom: 12px;
    }

    .search-button {
        position: static;
        transform: none;
        width: 100%;
        justify-content: center;
    }

    .search-wrapper {
        display: flex;
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trusted-by {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .company-logos {
        flex-wrap: wrap;
    }

    .supervisor-header {
        font-size: 21px !important;
    }

    .employer-header {
        font-size: 21px !important;
    }

    .card-container {
        padding-top: 70px;
        overflow: auto !important;
        height: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        margin-top: 5rem;
        display: flex;
        gap: 20px;
        padding-left: 11px;
        padding-right: 11px;
        padding-bottom: 2rem;
        padding-top: 3rem;
    }

    .card-header-btn {
        margin-bottom: 4px;
    }

    .card-description {
        margin-bottom: 10px;
    }

    .card-header-btn {
        padding: 8px;
    }

    .btn-div-alls {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        flex-direction: column;
    }

    .work-flow-list {
        width: 100%;
        margin: auto;
        flex-direction: column;
    }

    .work-flow-list::after {
        display: none;
    }

    .work-flow-list li::after {
        display: none;
    }

    .work-flow-list li:nth-child(3) {
        order: 2;
    }

    .customer-sec-padd-new .work-flow-list h4 {
        font-size: 24px;
        width: 100%;
    }

    .work-flow-list li {
        width: 100%;
    }

    .main-div-contacts {
        height: auto;
    }

    .contact-us-new {
        margin: 0;
        padding: 66px 0px;
    }

    .contact-form-inner {
        gap: 24px;
        flex-direction: column;
    }

    .div-left-icons {
        width: 84%;
    }
}

@media (max-width: 576px) {
    .pricing-title {
        font-size: 1.75rem;
    }

    .process-section .steps-tabs {
        margin-bottom: 26px;
        margin-top: 22px;
        flex-direction: column;
        gap: 16px;
    }

    .com-h2-h2 {
        line-height: 45px;
        font-size: 39px;
    }

    .content {
        padding: 36px 22px;
    }

    .content-wrapper h1 {
        font-size: 37px;
        line-height: 42px;
    }

    .feature-wrap.multi {
        grid-template-columns: repeat(1, 1fr);
    }

    .content-wrapper h3 {
        font-size: 25px;
        line-height: 32px;
    }

    .tab-button {
        font-size: 18px;
    }

    .content-wrapper p {
        font-size: 17px;
        margin-bottom: 18px;
        margin-top: 2px;
    }

    .tab-content-container {
        padding: 16px;
    }

    .hero-section {
        margin: 0 0px;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 25px;
    }

    .process-section-com {
        font-size: 42px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .tag {
        font-size: 11px;
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .orker-make-differnt h4 {
        font-size: 19px;
        width: 100%;
        margin-left: auto;
        margin-bottom: 2rem;
        margin-right: auto;
        letter-spacing: 0;
        line-height: 26px;
    }

    .bg-two-box-design {
        padding: 48px 0;
    }

    a.find-suoervisor-buttons {
        font-size: 16px;
    }

    .bg-bottom-cart img {
        display: none;
    }

    .bg-two-box-design h4 {
        font-size: 18px;
        line-height: 34px;
        margin-bottom: 2rem;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        letter-spacing: 0;
        line-height: 28px;
    }

    .features-list li {
        font-size: 16px;
        font-weight: 500;
    }

    .bg-bottom-cart2 img {
        display: none;
    }

    .plan-subtitle {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .btn-custom {
        padding: 9px 24px;
    }

    .value-card:hover .card-icon-wrapper {
        bottom: 259px;
    }

    .pricing-card {
        padding: 25px 17px 0;
    }

    .pricing-container {
        padding: 0 0px;
    }

    .div-left-icons {
        width: 98%;
    }

    .div-left-icons p span {
        font-size: 18px;
        font-weight: 500;
    }

    ul.work-flow-list li p.suffesv3-sub-heading {
        font-size: 27px;
        margin-left: 38px;
    }

    .work-flow-list li {
        margin-bottom: 35px;
    }

    ul.work-flow-list li p {
        width: 100%;
        font-size: 18px;
    }

    .career-content h2 {
        font-size: 26px;
        line-height: 38px;
    }

    .tag::before {
        width: 9px;
        left: -8px;
    }

    .info-item {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .call-button {
        width: max-content !important;
    }

    .call-text {
        height: 47px;
        font-size: 18px;
        padding: 0 10px;
        flex: 1;
        justify-content: center;
        display: flex;
        justify-content: flex-start;
    }

    .phone-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .phone-icon-box {
        width: 48px !important;
        height: 48px !important;
    }

    .info-box {
        padding: 8px 0 8px 10px !important;
        margin-bottom: 30px;
    }

    a.career-arrow {
        display: none;
    }

    .contact-fomr-sec {
        padding-left: 14px;
    }

    .career-content p {
        max-width: 100%;
        font-size: 17px;
        line-height: 25px;
    }

    .career-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        clip-path: none;
    }

    .customer-sec-padd-new .work-flow-list h4 {
        font-size: 23px;
        width: 100%;
        margin-bottom: 9px;
    }

    ul.work-flow-list li p {
        width: 95%;
        font-size: 18px;
    }

    .process-step p {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .customer-sec-padd-new h4 {
        font-size: 19px;
        width: 100%;
        letter-spacing: 0;
        margin-left: auto;
        margin-right: auto;
        line-height: 28px;
    }

    .com-h2-h2 {
        line-height: 40px !important;
        font-size: 35px !important;
    }

    .tag::before {
        width: 20px;
        left: -20px;
    }

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

    .description {
        font-size: 17px;
        margin-bottom: 21px;
        width: 100%;
        line-height: 25px;
    }

    .info-box {
        padding: 20px 0 20px 20px;
        margin-bottom: 30px;
    }

    .info-item {
        font-size: 16px;
        margin-bottom: 9px;
    }

    .call-button {
        width: 100%;
    }

    .phone-icon-box {
        width: 65px;
        height: 60px;
    }

    .call-text {
        height: 46px !important;
        font-size: 17px !important;
        padding: 0px 14px !important;
        flex: 1;
        justify-content: flex-start;
    }

    .phone-icon {
        width: 28px;
        height: 28px;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .role-card {
        min-width: 100%;
    }

    .card-header-btn {
        font-size: 18px;
        padding: 12px;
    }

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

    .register-btn2 {
        font-size: 16px;
    }

    .form-card {
        padding: 37px 19px;
        min-height: auto;
    }

    .form-card h3 {
        font-size: 27px !important;
    }

    .widget-box h3 {
        font-size: 22px;
        letter-spacing: .6px;
    }

    .orker-make-differnt .col-md-11 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .form-card p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .menu-li a {
        font-size: 17px;
    }

    ul .menu-li {
        font-size: 17px;
    }

    .footer-widget.about-widget {
        padding-bottom: 0;
    }

    .footer-2 .footer-icon-box {
        width: auto;
    }

    .footer-top .col-lg-3 {
        margin-bottom: 7px;
    }

    .tag::before {
        width: 6px !important;
        left: -3px !important;
    }

    .footer-bottom .footer-links a {
        margin-top: 20px;
        font-size: 14px;
    }

    .footer-menu {
        margin-top: 25px;
        text-align: left;
        margin-left: 20px;
    }

    .customer-sec-padd-new {
        overflow: hidden;
    }

    .career-cta {
        padding: 0 0 40px 0;
    }

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

    .content-wrapper h3 {
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .main-heading {
        font-size: 28px;
    }

    .footer-menu {
        margin-top: 25px;
        text-align: left;
        margin-left: 20px;
    }

    .orker-make-differnt .col-md-11 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .call-text {
        font-size: 14px;
        padding: 0 15px;
    }

    .plan-title {
        font-size: 1.4rem;
    }
}

.breadcrumb-wrap {
    background: #002639;
    padding: 52px 0;
    color: #fff;
    margin: 120px 0 50px;
}

.breadcrumb-wrap .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.new-aaess h1 {
    font-size: 34px;
    font-weight: 600;
    margin: 14px 0;
    text-align: center;
    font-family: var(--font-carlito);
    color: #000;
}

.page-title {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-carlito);
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb li {
    color: #002639;
    font-family: var(--font-carlito);
    font-weight: 600;
}

.breadcrumb li a {
    color: #002639;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb li::after {
    content: "/";
    margin-left: 8px;
    color: #002639;
}

.breadcrumb li:last-child::after {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-wrap .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb-wrap {
        padding: 40px 0;
    }

    .page-title {
        font-size: 27px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .breadcrumb {
        padding: .5rem 1rem;
        margin-top: 8px;
    }

    .new-aaess h1 {
        font-size: 28px;
    }

    .new-aaess p {
        font-size: 16px;
        text-align: justify;
        line-height: 26px;
    }

    .new-aaess {
        margin-bottom: 60px;
    }
}