﻿.hero {
    position: relative;
    margin-top: var(--header-offset, 112px);
    min-height: calc(100vh - var(--header-offset, 112px));
    padding: 100px 0;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #fff;
}

    /*.hero::before {*/
        /* lớp phủ xanh theo ảnh mẫu */
        /*content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(12,94,218,) 0%, rgba(12,94,218,.55) 100%);
    }*/

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1110px, 92vw);
    margin: 0 auto;
}

.hero-title {
    margin: 0;
    font-weight: 700;
    line-height: .98;
    text-shadow: 0 4px 16px rgba(0,0,0,.25);
    font-size: clamp(36px, 7vw, 72px);
    color: #ffffff;
}
.outfuture {
    font-size: clamp(44px, 9vw, 96px) ;
    font-weight: 900;
}

.hero-slogan-img {
    max-width: 100%;
    height: auto;
    width: 1110px; 
}

.hero-form {
    /*margin-top: 20px;*/
}

.hero-label {
    font-size: 24px;
    display: block;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.hero-input-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-select {
    width: min(560px, 77vw);
    height: 56px;
    border-radius: 14px;
    border: none;
    padding: 0 45px 0 20px;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    color: #272e4e;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select-wrap::after {
    content: "∟";
    font-size: 16px;
    font-weight: 700;
    color: #272e4e;
    position: absolute;
    right: 20px;
    top: 25%;
    transform: translateY(-50%);
    pointer-events: none;
    display: inline-block;
    transform: rotate(-45deg);
}

    .hero-select:focus {
        outline: 2px solid rgba(255,255,255,.6);
    }
.select-wrap {
    position: relative;
    width: min(560px, 80vw);
}

.hero-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    /*border: 1px solid rgba(0,0,0,1.2);*/
    padding: 4px 0;
    z-index: 1000;
}

    .hero-dropdown.open {
        display: block;
    }

.hero-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

    .hero-option:hover,
    .hero-option[aria-selected="true"] {
        background: #eef5ff;
    }


.hero-search-btn {
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 14px;
    background: #9be7ff; 
    color: #272e4e;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

    .hero-search-btn:hover {
        filter: brightness(1.05);
    }

.hero-quick-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    font-weight: 800;
    font-size: clamp(16px, 2.2vw, 28px);
}

    .hero-quick-cats li {
        position: relative;
    }

        .hero-quick-cats li::after {
            content: "|";
            margin-left: 18px;
            color: white; 
        }

        .hero-quick-cats li:last-child::after {
            content: none;
        }

    .hero-quick-cats a {
        color: #fff;
        text-decoration: none;
        text-shadow: 0 3px 10px rgba(0,0,0,.2);
    }

        .hero-quick-cats a:hover {
            text-decoration: underline;
        }


#jobs .header-title {
    display: flex;
    margin-bottom: 93px;
    height: 8.2%;
    min-height: 118px;
    background: linear-gradient(to right, #2772fa, #020483);
}

    #jobs .header-title img {
        padding: 10px;
    }

    #jobs .header-title h1 {
        margin: auto 0;
        text-align: justify;
    }
#jobs-mb .header-title {
    display: flex;
    margin-bottom: 93px;
    height: 8.2%;
    min-height: 118px;
    background: linear-gradient(to right, #2772fa, #020483);
}

    #jobs-mb .header-title img {
        padding: 10px;
    }

    #jobs-mb .header-title h1 {
        margin: auto 0;
        text-align: justify;
    }

#keySearch {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    /*line-height: 24px;*/
    height: 47px;
    display: block;
}
.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 3.8%;
    gap: 5% 3.1%;
    margin-bottom: 100px;
}


.job-box {
    display: flex;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    height: 100%;
}

.row-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 50px;
}


.job-image {
    flex: 1;
    min-width: 30%;
    max-width: 33%;
    align-self: flex-end;
}

    .job-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
.next-btn-unicode {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: transparent;
    color: white;
    border: 3px solid #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 40px;
}
    .next-btn-unicode:hover {
        background-color: #ffffff;
        color: #0056b3;
        text-decoration: none;
    }

.job-content {
    flex: 2;
    padding: 20px 5px;
    text-align: left;
    color: #ffffff;
}

    .job-content h3 {
        font-size: 26.6667px;
        line-height: 37px;
        font-weight: 700;
        margin-bottom: 25px;
    }
    .job-content p {
        font-size: 21px;
        line-height: 27px;
        font-weight: 700;
        margin-bottom: 22px;
    }

    .job-content ul {
        padding-left: 20px;
        font-size: 21px;
    }

.job-list-section {
    display: flex;
    padding: 80px 0 100px;
    align-items: flex-start;
    position: relative;
    /*background: #ffffff;*/
}

.filter {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
    position: sticky;
    top: 200px;
    z-index: 100;
}
    .filter h2 {
        margin-bottom: 30px;
        font-weight: 700;
    }
.job-listing-result-container h2 {
    margin-bottom: 30px;
    font-weight: 700;
}
.filter button {
    outline: none;
    box-shadow: none;
    border: none;
}

    .filter .arrow-btn {
        display: inline-block;
        transform: rotate(-45deg) translateY(-5px);
    }
.divider {
    width: 2px;
    background-color: #d0d0ce;
    height: 450px;
    flex-shrink: 0;
    margin-top: 50px;
    position: sticky;
    top: 220px;
    z-index: 100;
    margin-left: 115px;
}

.job-list {
    flex: 3;
    padding-left: 115px;
    box-sizing: border-box;
}

    .job-list h2 {
        color: #272e4e;
        font-weight: 700;
        margin-bottom: 15px;
    }

.job-list-item {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    background: #ffffff;
    font-weight: 700;
}
.job-list-item a{
    /*font-size: 22px;*/
    color: #0c5eda;
}

.job-highlight {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-highlight p{
    margin: 0
}

.custom-dropdown {
    position: relative;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.dropdown-toggle {
    background-color: #d0d0ce;
    color: #0c41be;
    display: flex;
    width: 100%;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: left;
    font-weight: 700;
    justify-content: space-between;
}

    .dropdown-toggle .arrow {
        float: right;
    }
    .dropdown-toggle::after {
        display: none !important;
    }

.dropdown-menu {
    display: none;
    position: relative;
    top: 100%;
    width: 100%;
    background: white;
    z-index: 10;
    padding: 10px 0;
    margin: -30px 0 30px;
    border: none;
}

    .dropdown-menu label {
        display: block;
        padding: 8px 15px;
        cursor: pointer;
        color: #2c3e50;
        font-weight: 600;
        margin: 0;
    }

    .dropdown-menu .skills-menu, .dropdown-menu .loc-menu, .dropdown-menu .cat-menu {
        max-height: 200px;
        overflow-y: auto;
    }
.form-control{
    background: #efefee;
    color: #272e4e;
    border: none;
}

.button-clear-search {
    width: 80%;
    max-width: 200px;
}
input[type=checkbox] {
    display: none;
}
input[type="checkbox"] + label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    background-color: #efefee;
    transition: background-color 0.2s ease;
}
input[type="checkbox"]:checked + label::before {
    background-color: #0c5eda;
    content: "✔";
    color: white;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
    text-align: center;
}


.clear {
    background: #ffffff;
    color: #272e4e;
    font-weight: 700;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 6px 0;
    border-radius: 8px;
    border: 4px solid #272e4e !important;
}
    .clear:hover {
        color: #0c41be;
    }

.search {
    background: linear-gradient(to right, #0c41be, #0ac3d1);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /*margin-bottom: 10px;*/
    padding: 5px 0;
    border-radius: 8px;
}
    .search:hover {
        filter: brightness(1.5);
    }
    .search img {
        margin-left: 10px;
        width: 36px;
        padding: 3px;
    }

.job-tags {
    margin: 8px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #1a2c4b;
    border-radius: 6px;
    background-color: #ffffff;
    color: #272e4e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}


.btn-container-sta1 {
    display: flex;
    justify-content: center;
    margin: 0 auto 100px;
}

.btn-more-info-sta1 {
    padding: 25px 0 25px 74px;
    border-radius: 100px;
    font-size: 26.6667px;
    line-height: 37px;
    font-weight: 700;
    background-color: transparent;
    color: #272e4e;
    border: 2px solid #272e4e;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn-more-info-sta1 .btn-arrow {
        width: 100px;
        transform: scaleX(1.5);
        font-weight: 700;
        margin-left: 74px;
        margin-right: 33px;
        font-size: 39px;
        position: relative;
        top: 5px;
    }

    .btn-more-info-sta1:hover {
        background-color: #ffffff;
        text-decoration: none;
    }

.btn-container-sta2 {
    display: flex;
    justify-content: center;
}

.btn-more-info-sta2 {
    padding: 25px 33px 25px 33px;
    border-radius: 100px;
    font-size: 26.6667px;
    line-height: 37px;
    font-weight: 700;
    background-color: transparent;
    color: #272e4e;
    border: 2px solid #272e4e;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 60px;
}

    .btn-more-info-sta2 .btn-arrow {
        width: 100px;
        transform: scaleX(1.5);
        font-weight: 700;
        margin-left: 15px;
        font-size: 39px;
        position: relative;
        top: 5px;
    }

    .btn-more-info-sta2:hover {
        background-color: #ffffff;
        text-decoration: none;
    }
.left-content-header p{
    font-family: sf-display-light;
}
.content-header p {
    font-family: sf-display-light;
    margin-bottom: 20px;
}
.left-content > * {
    margin-bottom: 10px;
}
.left-content hr {
    width: 100%;
    color: #EBF2FD;
}
.right-content {
    text-align: center;
}
.right-content img{
    max-width: 85%;
}
.statistic-des-container {
    display:flex;
}
.statistic-des-container img {
    width: 22px;
    margin-right: 10px;
}
.content-main-item {
    height: 100%;
}
.content-main {
    padding-bottom: 20px ;
}
.content-main .statistic-logo {
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15% 15%;
    width: 100%;
    gap: 2%;
    padding: 0 15px;
}

.statistic-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #F4F8FB;
    height: 40px;
}
.statistic-logo .logo-container {
    text-align: center;
    padding: 15px;
    background: #F4F8FB;
    border-radius: 8px;
}
.statistic-logo img {
    height: 60px;
}

.statistic-number-container {
    display: grid;
    grid-template-columns: auto auto;
    height: inherit;
}
.statistic-num {
    font-size: 3rem;
    color: aliceblue;
    line-height: normal;
    letter-spacing: normal;
    pointer-events: auto;
    font-weight: 700;
    background: linear-gradient(to right, #0873D6 0%, #0835D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.statistic-des {
    color: #565E64;
    font-family: sf-display-light;
}

.statistic-item {
    border-right: 2px solid #fff;
    display: inline-grid;
}

.statistic-item:last-child {
    border: none !important;
}



@media (max-width: 1024px) {
    .hero-inner {
        margin: 50px auto;
    }
    .hero {
        padding: 0;
        margin-top: var(--header-offset, 70px);
        min-height: calc(var(--header-offset, 70px));
    }
    .hero-dropdown {
        max-height: 160px;
    }
    .filter {
        padding-right: 0;
        top: 100px;
    }
    .divider {
        margin-left: 50px;
    }
    .job-list {
        padding-left: 50px;
    }
    .statisticSection .row {
        padding: 0.75rem 0;
        margin-right: 0;
        margin-left: 0;
    }
    .content-header{
        text-align: justify;
        margin: 0;
    }
    .content-header h2{
        text-transform: uppercase;
    }

    .statisticSection .row .first-child {
        border-right: 1px solid #fff;
    }
    .job-list-item a {
        font-size: 18px;
    }
    .pagination{
        justify-content: center;
    }
    .statisticSection .sec-container {
        width: 100%;
        display: block;
        padding: 0;
        /*text-align: center;*/
    }

    .content-main {
        bottom: 5%;
    }
    .content-main .statistic-logo{
        padding:0;
    }

    .row-layout {
        padding: 0 20px;
    }
    .next-btn-unicode {
        height: 45px;
        width: 45px;
        font-size: 26px;
        border: 2px solid #ffffff;
    }
    .job-image {
        align-self: center;
    }
    .job-content h3 {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .job-content p {
        font-size: 19px;
        margin-bottom: 10px;
    }
    .job-content ul {
        font-size: 16px;
    }
    .job-list-item {
        width: 100%;
    }
    .btn-container-sta1 {
        margin: 100px auto;
    }
}
@media (max-width: 767px) {
    .hero {
        padding: 0;
        margin-top: var(--header-offset, 70px);
        min-height: calc(var(--header-offset, 70px));
    }

    .hero-inner {
        margin: 30px auto;
    }

    .hero-dropdown {
        max-height: 120px;
    }
    .hero-select {
        height: 42px;
    }
    .select-wrap::after {
        top: 15%;
    }
    .hero-label {
        font-size: 20px;
    }
    .hero-search-btn {
        width: 42px;
        height: 42px;
    }
    .img-statistic .content-main {
        padding: 0 !important;
    }

    .job-list-section {
        padding: 0;
        gap: 0;
        display: block;
    }

    .job-list {
        width: 100%;
        text-align: left;
        padding: 0;
    }
    .pagination-list{
        padding-bottom: 50px
    }

    .job-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
        margin-bottom: 0;
    }

    .job-content {
        padding: 0;
    }

    .next {
        max-width: 50%;
        height: 50px;
    }

    .btn-more-info-sta1 {
        padding: 25px 0 25px 25px;
    }

        .btn-more-info-sta1 .btn-arrow {
            margin-left: 25px;
            margin-right: 25px;
            top: 0;
        }

    .filter {
        flex: 1;
        padding: 40px 0;
        box-sizing: border-box;
        position: relative;
        top: 0;
    }
        .filter h2 {
            margin-bottom: 15px;
        }
    .dropdown-toggle {
        margin-bottom: 15px;
    }
    #keySearch {
        margin-bottom: 15px;
    }
    .clear {
        margin-bottom: 0;
    }
    .dropdown-menu {
        margin: -15px 0 30px;
    }
    .button-clear-search {
        width: 100%;
        display: flex;
        gap: 20px;
        max-width: 100%;
    }

    .job-cat {
        font-size: 16px;
        height: 44px;
        padding: auto 20px;
    }

    .search {
        height: 44px
    }

        .search img {
            width: 24px;
            height: 24px
        }

    .filter h4 {
        text-align: left;
    }

    .clearMobile {
        background: #ffffff;
        color: #272e4e;
        font-weight: 700;
        display: block;
        width: 100%;
        margin-bottom: 20px;
        padding: 6px 0;
        border-radius: 8px;
        border: 4px solid #272e4e !important;
    }

    .divider {
        width: 0;
        background-color: none;
        height: 0;
        margin-top: 0;
    }
}
@media (min-width: 850px) and (max-width: 1024px) {
    .statistic-num {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .statistic-des {
        font-size: 2rem;
    }
}
@media (max-width: 1024px) {
    .statistic-item {
        justify-content: center;
    }
}

@media (min-width: 550px) and (max-width: 849px) {

    .statistic-num {
        font-size: 2.25rem;
        margin-bottom: 0;
    }

    .statistic-des {
        font-size: 1rem;
    }

    .statisticSection .row {
        padding: 0.25rem 0;
        margin-right: 0;
        margin-left: 0;
    }

}

@media (max-width: 549px) {
    .statisticSection .row {
        padding: 0.25rem 0;
        margin-right: 0;
        margin-left: 0;
    }

    .statistic-num {
        font-size: 1.75rem;
        margin-bottom: 0;
    }
    .content-main .statistic-logo {
        display: grid;
        grid-template-columns: 49% 49%;
        width: 100%;
        gap: 2%;
        margin-top: 20px;
    }
    .statistic-des {
        font-size: 16px;
    }
    .img-statistic .content-main {
        padding: 0 15px 15px 15px;
    }
}
#circle-statistic {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4em;
    color: #dd9d11;
    animation: animate 20s infinite linear;
}
@keyframes animate{
    0%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    
    }
}

.job-info {
    list-style: none;
    margin: 0;
}
.job-count {
    color: #0c41be;
}
.pagination-list .nav-links {
    display: flex;
    /*gap: 25px;*/
    /*padding-bottom: 55px;*/
    align-items: center;
}
    .pagination-list .nav-links h6 {
        margin-right: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
.pagination-list .pagination .nav-links a{
    outline: none;
}
.pagination-list .pagination .nav-links .page-numbers {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    display: inline-block;
    /*margin: 0 5px;*/
    font-weight: 700;
    color: #272e4e;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;/*
    border: 1px solid #DAE2EE;*/
    background: #FFF;
}

    .pagination-list .pagination .nav-links .page-numbers.current {
        color: #0c41be;
        text-decoration: underline;
        /*border: 1px solid #0873D6;*/
    }