@charset "utf-8";
:root {
    --color: #3f3f3f;
    --color-main: #3f3f3f;
    --color-hover: #d70018;
    --color-red: #EC1F28;;
    --bgbar: #d70018;
    --bgnav: #d70018;
    --ftitle: 'SFDisplay', sans-serif;
    --freset: 'SFDisplay', sans-serif;
    --ftitle-spacing: 0;
    --logo-height: 45px;
}

html {
    overflow-x: hidden;
}

body,
html {
    overscroll-behavior-y: none;
    -webkit-overflow-scrolling: none;
    -moz-overflow-scrolling: none;
}

body {
    position: relative;
    font: 400 14px/24px var(--freset);
    color: RGB(0, 8, 28);
    overflow-x: hidden;
    width: 100%;
    background-color: #fff;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

body.modal-fixed {
    overflow: hidden;
    position: fixed;
    width: 100vw;
}

body.loading {
    position: relative;
}

body.loading::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999 !important;
    width: 100%;
    height: 100%;
    overflow: hidden;
    content: '';
    background-color: rgba(0, 0, 0, .75);
}

body.loading::after {
    position: fixed;
    top: calc(50vh - 20px);
    left: calc(50vw - 20px);
    z-index: 9999;
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -.125em;
    --bs-spinner-border-width: .25em;
    --bs-spinner-animation-speed: .75s;
    --bs-spinner-animation-name: spinner-border;
    border: var(--bs-spinner-border-width) solid currentcolor;
    border-right-color: transparent;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), .76) !important;
}


a {
    text-decoration: none;
}

img {
    width: auto;
    height: auto;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.figure {
    margin: 0;
}

.img-full {
    display: block;
    width: 100%;
    height: auto;
}

.bg-gray {
    background: #EAEAEA !important;
    color: #000;
}

.bg-gray .figure-caption {
    color: #000;
    padding: 6px 15px;
}

[type=number]::-webkit-outer-spin-button,
[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

[type=number],
.hide_arrow {
    -moz-appearance: textfield
}

div[type=button],
p[type=button],
a[type=button] {
    border-radius: 0;
    border: none;
    background: none;
    -webkit-appearance: none;
}

.tooltip {
    z-index: 99;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.25;
}

.product-title-tooltip {
    --bs-tooltip-max-width: 220px;
    line-height: 18px;
}
.tooltip .tooltip-arrow::before {
    --bs-tooltip-bg: var(--color-hover);
    border-top-color: var(--color-hover);
}

.tooltip .tooltip-inner {
    background: var(--color-hover);
}
.hr {
    border-color: #CCC;
    margin-top: 20px;
    margin-bottom: 35px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5)
}

.btn-full {
    width: 100%
}

.line-limit {
    --line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp);
    -webkit-box-orient: vertical;
    max-height: calc(var(--line-height, 24px) * var(--line-clamp));
    line-height: var(--line-height, 24px);
}

.line-limit--3 {
    --line-clamp: 3;
}

.line-limit--4 {
    --line-clamp: 4;
}

.line-limit--5 {
    --line-clamp: 5;
}

.line-limit--6 {
    --line-clamp: 6;
}

.text-cap {
    text-transform: capitalize !important;
}

.text-upp {
    text-transform: uppercase;
}

.transition {
    transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

.trans_dis {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
}

.img-hover-zoom .img-zoom {
    transition: all .7s ease-in-out 0s;
    -webkit-transition: all .7s ease-in-out 0s;
    -moz-transition: all .7s ease-in-out 0s;
}

.img-hover-zoom:hover .img-zoom {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.text_hide {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.bold-300 {
    font-weight: 300 !important;
}

.bold-0 {
    font-weight: 400 !important;
}

.bold-500,
.b500 {
    font-weight: 500 !important;
}

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

.color-main,
.color-main.dcontent {
    color: var(--color-main);
}

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

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

.text-black {
    color: #000;
}

.text-red {
    color: var(--color-red) !important;
}

.text-lg {
    font-size: 130%;
}

.bg-none {
    background: none !important;
}

.bg-red {
    background-color: var(--color-red) !important;
}

#pagination {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#pagination>* {
    margin: 0 5px;
    position: relative;
    height: 34px;
    min-width: 34px;
    line-height: 24px;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    background-color: #FFF;
    border-color: #666;
    color: #000;
    transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
}

#pagination>*:last-child::after {
    display: none;
}

#pagination b {
    color: #FFF;
    font-weight: 500;
    background-color: var(--color-hover);
    border-color: var(--color-hover);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

#pagination a:hover {
    border-color: var(--color-hover);
    color: var(--color-hover);
    background: none;
    transform: translateY(-3px);
}

#pagination.pagination--simple>* {
    color: var(--color-red);
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 26px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    border-color: var(--color-red);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

#pagination.pagination--simple a:hover {
    background-color: var(--color-red);
    color: #fff;
    transform: none;
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: rgba(0, 0, 0, .3);
    cursor: progress;
}

.overlay::after {
    --bs-spinner-width: 2rem;
    --bs-spinner-height: 2rem;
    --bs-spinner-vertical-align: -.125em;
    --bs-spinner-border-width: .25em;
    --bs-spinner-animation-speed: .75s;
    --bs-spinner-animation-name: spinner-border;
    position: absolute;
    left: 50%;
    top: 40%;
    z-index: 1;
    content: "";
    display: block;
    margin-left: calc(-.5 * var(--bs-spinner-width));
    display: inline-block;
    width: var(--bs-spinner-width);
    height: var(--bs-spinner-height);
    vertical-align: var(--bs-spinner-vertical-align);
    border-radius: 50%;
    animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
    border: var(--bs-spinner-border-width) solid #fff;
    border-right-color: transparent;
}
/**********************************************
**********************************************/

.owl-theme .owl-nav {
    margin: 0 !important;
}

.owl-theme .owl-dots {
    margin-bottom: 0;
    width: 80%;
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: #fff;
    margin-top: 0;
    margin-bottom: 0;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    border-radius: 16px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-red);
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 46px;
}

#bg-main {
    position: relative;
    z-index: 1;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
}
.bgmain-breadcrumb{
    background-color: #fff;

    padding: .65rem .75rem;
    margin: 0;
    list-style: none;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    color: inherit;
    box-shadow: 0px 2px 5.2px 0px #00000040;

}

.breadcrumb a,
.breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

.breadcrumb a:hover {
    color: var(--color-hover);
    text-decoration: none;
}
/**********************************************
**********************************************/

.dcontent,
.dcontent pre {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    text-align: left;
}

.dcontent pre {
    word-wrap: break-word;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    background: none;
    border: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    margin-bottom: 15px;
}

.dcontent a {
    color: var(--color-red);
    text-decoration: none;
}

.dcontent a:hover {
    color: var(--color-hover);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-hover);
}

.dcontent a.btn {
    padding-top: .5rem;
    color: #FFF;
    background: var(--color-hover);
    font-size: 14px;
    font-weight: bold;
}

.dcontent * {
    max-width: 100% !important;
}

.dcontent img {
    display: inline-block;
    max-width: 100%;
    height: auto !important;
}

.dcontent h1,
.dcontent h2,
.dcontent h3,
.dcontent h4,
.dcontent h5,
.dcontent h6 {
    line-height: 120%;
}

.dcontent img {
    display: inline-block;
    max-width: 100%;
    height: auto !important;
}

.dcontent h1 {
    font-size: 115%;
    line-height: 170%;
}

.dcontent h2 {
    font-size: 110%;
    font-weight: bold;
    line-height: 160%;
}

.dcontent h3 {
    font-size: 105%;
    font-weight: bold;
    line-height: 150%;
}

.dcontent h4 {
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
}

.dcontent h5 {
    font-size: 95%;
    font-weight: normal;
    line-height: 95%;
}

.dcontent h6 {
    font-size: 90%;
    font-weight: normal;
    line-height: 90%;
}

.dcontent p {
    margin-bottom: 15px;
}

.dcontent img,
.dcontent iframe {
    max-width: 100%;
}

.dcontent p:last-child,
.dcontent ul li p:last-child {
    margin: 0 !important;
}

.dcontent table {
    border-collapse: collapse !important;
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px;
}

.dcontent table>thead>tr>th,
.dcontent table>tbody>tr>th,
.dcontent table>tfoot>tr>th,
.dcontent table>thead>tr>td,
.dcontent table>tbody>tr>td,
.dcontent table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
}

.dcontent table>thead>tr>th {
    vertical-align: bottom;
    background-color: #EEE;
}

.dcontent .table[border="1"] tbody,
.dcontent .table[border="1"] td,
.dcontent .table[border="1"] tfoot,
.dcontent .table[border="1"] th,
.dcontent .table[border="1"] thead,
.dcontent .table[border="1"] tr {
    border-width: 1px;
}

.dcontent .table[border="2"] tbody,
.dcontent .table[border="2"] td,
.dcontent .table[border="2"] tfoot,
.dcontent .table[border="2"] th,
.dcontent .table[border="2"] thead,
.dcontent .table[border="2"] tr {
    border-width: 2px;
}

.dcontent .table[border="3"] tbody,
.dcontent .table[border="3"] td,
.dcontent .table[border="3"] tfoot,
.dcontent .table[border="3"] th,
.dcontent .table[border="3"] thead,
.dcontent .table[border="3"] tr {
    border-width: 3px;
}

.dcontent li {
    margin-bottom: 5px;
}

.dcontent-sm {
    font-size: 14px;
    line-height: 24px;
}

.dcontent-sm p {
    margin-bottom: 10px;
}

.dcontent .dcontent-btn {
    padding: .4rem 1rem;
    background-color: var(--color-hover);
    color: #FFF;
    border-color: var(--color-hover);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    min-width: 220px;
    text-align: center;
}

.dcontent .dcontent-btn:hover {
    color: #FFF;
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5);
}

.dcontent .dcontent-figcaption {
    padding: 12px 15px 10px;
    background: #f2f2f2;
    text-align: center;
}

.image-center {
    text-align: center;
}

.image-captioned {
    display: inline-block;
    border: 1px solid #EEE;
}

.image-captioned figcaption {
    background-color: #eee;
    padding: .5rem;
}

.dcontent .dcontent-h2 {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.4;
}

.dcontent .dcontent-h3 {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.4;
}

.dcontent .dcontent-h4 {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
}

.dcontent .dcontent-h5 {
    font-size: 17px;
    font-weight: normal;
    line-height: 1.4;
}

.dcontent .dcontent-h6 {
    font-size: 17px;
    font-weight: normal;
    line-height: 1.4;
}

.dcontent .dcontent-btn1,
.dcontent .dcontent-btn2,
.dcontent .dcontent-btn3 {
    position: relative;
    display: inline-block;
    color: RGB(255, 255, 255);
    font-size: 14px;
    font-weight: bold;
    padding: .6rem 15px;
    margin-bottom: .75rem;
    border-radius: 35px;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.dcontent .dcontent-btn1 a,
.dcontent .dcontent-btn2 a,
.dcontent .dcontent-btn3 a {
    color: #FFF;
    text-decoration: none;
}

.dcontent .dcontent-btn1 {
    background: var(--color-hover);
    color: #FFF;
}

.dcontent .dcontent-btn2 {
    text-align: center;
    background: #111;
    color: #FFF;
}

.dcontent .dcontent-btn3 {
    text-align: center;
    background: var(--bs-blue);
    color: #FFF;
}

.dcontent .dcontent-btn1:hover,
.dcontent .dcontent-btn2:hover,
.dcontent .dcontent-btn3:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transform: translateY(-1px);
    color: #FFF !important;
}

.dcontent .dcontent-btn1 a:hover,
.dcontent .dcontent-btn2 a:hover,
.dcontent .dcontent-btn3 a:hover {
    color: #FFF;
    text-decoration: none;
    border: none;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-4by3::before {
    padding-top: 75%
}
/**********************************************
**********************************************/

.post-title {
    font-size: 27px;
    font-weight: normal;
    line-height: 26px;
    margin: 0 0 15px;
    padding: 0 0 0;
    color: var(--color-main);
}

.title-page {
    font-size: 27px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 15px;
    padding: 0 0 0;
    color: #000;
}

.title-page a {
    color: inherit;
    text-decoration: none;
}

.titlesub-page {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 5px;
    padding: 0 0 0;
    color: #000;
}

.page-quote,
.quote-page {
    margin: 0 auto 20px;
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #000
}
/**********************************************
**********************************************/
body{
    padding-top: var( 1rem + var( --logo-height) + 1px );
}
#header{
    position: fixed; left: 0; top: 0; z-index: 9;
    width: 100%;
    box-shadow: var( --bs-box-shadow-sm);
    background-color: #fff;
}
.header-logo{
    padding-top: .5rem; padding-bottom: .5rem   ;
}
.header-logo img {
    height: var( --logo-height);
    width: 100%;
    object-fit: contain; object-position: center;
    display: inline-block;
    transition: all .2s ease-out 0s;
    -moz-transition: all .2s ease-out 0s;
    -webkit-transition: all .2s ease-out 0s;
}

.header-navigation-list{
    list-style-type: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin: 0; padding: 0;
    list-style-type: none;
    height: 100%;
}

.header-navigation-item{
    flex: 1 0 0;
    width: auto;
    padding: 0rem .75rem;
    margin: 0;
    height: 100%;
    list-style-type: none;
    display: inline-flex;
    justify-content: center;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.header-navigation-link{
    height: 100%;
    display: inline-flex;
    align-items: center; justify-content: center;
    position: relative;
    color: var( --color-red);
}
.header-navigation-link::after{
    position: absolute; left: 0; bottom: 0; z-index: 1;
    content: ""; display: block;
    width: 0%; height: 3px;;
    background-color: var( --color-red);
    transition: width .3s ease;
    -moz-transition: width .3s ease;
    -webkit-transition: width .3s ease;
}
.header-navigation-link:hover::after{

    width: 100%;
}

/**********************************************
**********************************************/
#footer {
    font-size: 13px;
    line-height: 18px;
    color: #000;
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0 1rem;
    color: var(--color);
    background: #f8f8f8;
    box-shadow: 0px 2px 22.9px 0px #00000040;

}
.footer__title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000;
    
}
.footer-info-warpper{
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    text-align: left;
}
.footer-info-warpper p:last-child{
    margin-bottom: 0;
}
.footer-info-warpper address,
.footer-info-warpper p {
    color: #000;
    margin-bottom: 8px;
}
.footer-info-warpper a{
    font-weight: bold;
    color: var( --color-red);
    text-decoration: none;
}
.footer-info-warpper a:hover{
    text-decoration: underline;
}

.footer_ul:not(.row) {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer_ul li {
    clear: both;
    display: block;
    margin-bottom: 8px;
    vertical-align: middle;
}

.footer_ul.row {
    padding: 0;
}
.footer_ul a{
    color: inherit;
    text-decoration: none;
}
.footer__title a:hover,
.footer_ul a:hover {
    color: var(--color-red);
    text-decoration: none;
}
.footer_ul--icon li {
    position: relative;
    background: url(img/icon-send-right.png) no-repeat left 4px;
    background-size: 10px auto;
    padding-left: 18px;
}
.footer_ul_contact a{
    color: var( --color-red);
    text-decoration: none;
    font-weight: 500;
}
.footer_ul_contact a:hover{
    text-decoration: underline;
}

/**********************************************
**********************************************/
.homeslide-figure{
    margin-bottom: 1.5rem;
}
.homeslide-figure-caption{
    margin-top: 1.25rem;
}
.homeslide-figure .title-page{
    margin-bottom: 0;
}
.homeslide-figure-dcontent{
    margin-top: .5rem;
}
/**********************************************
**********************************************/
.category-type-list{
    --bs-gutter-x: .8rem;
    --bs-gutter-y: .8rem;
    padding: 0; list-style: none;
    margin-bottom: 1.5rem;
    justify-content: center;
    line-height: 22px;
    font-size: 14px; font-weight: 500;
}
.category-type-item{
    flex: 0 0 auto;
    width: auto;
    min-width: 150px;
    text-align: center;
}
.category-type-link{
    display: block;
    background-color: #f9f9f9;
    border: 1px solid #f1f1f1;
    box-shadow: 0px 1px 1px 0px #0000001A;
    padding: .25rem 1.25rem;
    border-radius: 32px;
    color: #000;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.category-type-link:hover{
    background-color: var( --color-red);
    color: #fff;
    border-color: var( --color-red);
}
/**********************************************
**********************************************/
.bg-icon-hot{
    --bs-badge-color: #fff;
    --bs-badge-padding-x: .5rem;
    --bs-badge-padding-y: .25rem;
    --bs-badge-border-radius: .25rem;
    background-color: var( --color-red);
    font-size: 13px; line-height: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: .375rem;
    transform: translateY(-2px);
}
.jobdetail-title{
    display: flex;
    align-items: center;
}
.jobdetail-title .bg-icon-hot{
    transform: none;
}
/**********************************************
**********************************************/
.category-title{
    position: relative;
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 1rem;
    padding: 0 0 0 .75rem;
    color: #000;
    text-transform: uppercase;
}
.category-title::before{
    position: absolute; left: 0; top: 50%; z-index: 1;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 100%; height: 12px;
    background-color: var( --color-red);
}
.category-title > *{
    position: relative; z-index: 2;
    padding-right: .75rem;
    padding-left: .5rem;
}
.jobbox-container{
    margin-bottom: 2rem;
}
.joblist-warpper{
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}
.joblist-item{
    display: flex; flex-direction: column;
    background-color: #f9f9f9;
    border: 1px solid #f1f1f1;
    padding: 1rem 1rem 1rem;
    color: #000;
    min-height: 100%;
    box-shadow: 0px 1px 1px 0px #0000001A;
}
.joblist-item-title{
    font-size: 19px; line-height: 26px;
    margin: 0 0 .75rem;
    font-weight: bold;
}
.joblist-item-deslist{
    --bs-gutter-x: .65rem;
    --bs-gutter-y: .65rem;
    margin-bottom: 1.5rem;
    padding: 0; list-style-type: none;
    font-size: 13px; line-height: 18px;
}
.joblist-item-deslist > li{
    list-style-type: none;
    flex: 0 0 auto;
    width: auto;
}
.joblist-item-desitem{
    display: inline-block;
    padding: .25rem .5rem;
    background: #E6E6E6;
    border-radius: .25rem;
}
.joblist-item-desitem--salary{
    color: var( --color-red);
}
.joblist-item-readmore{
    margin: auto 0 0; text-align: right;
}
.joblist-item a{
    color: #000;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.joblist-item a:hover{
    color: var( --color-red);
}
.joblist-item-readmore-btn{
    font-size: 13px; line-height: 18px;
    display: inline-block;
    padding: .175rem .5rem;
    background: var( --color-red);
    color: #fff !important;
    border-radius: .325rem;
    min-width: 80px;
    text-align: center;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.joblist-item-readmore-btn:hover{
    background-color: #000;
    color: #fff !important;
}

/**********************************************
**********************************************/
body.job-detail{
    overflow: visible;
}
.jobdetail-btn-register{
    --bs-btn-bg: var( --color-red);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var( --bs-red);
    width: 100%; height: 100%;
    display: flex;
    align-items: center; justify-content: center;
    text-transform: uppercase;
    font-size: 21px;
    box-shadow: var( --bs-box-shadow-sm);
}
.jobdetail-btn-register.w-auto{
    --bs-btn-padding-y: .5rem;
    width: auto;
    display: inline-flex;
    min-width: 150px;
}
.jobdetail-info-warpper,
.jobdetail-dcontent,
.jobdetail-right-other{
    background-color: #F7F7F7;
    padding: 1.5rem 2rem 1.75rem;

}
.jobdetail-info-warpper{
    margin-bottom: 1.5rem;
}
.jobdetail-title{
    font-size: 29px;
    margin-bottom: .25rem;
}
.jobdetail-dcontent{
    padding: 1.75rem 2.5rem;
}
.jobdetail-list-item-deslist{
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1rem;
    margin-bottom: 0;
    padding: 0; list-style-type: none;
    font-size: 15px; line-height: 22px;

}
.jobdetail-list-item-deslist >li{
    flex: 0 0 auto;
}
.jobdetail-list-item-deslist .joblist-item-desitem{
    display: block;
    background-color: var( --color-red);
    color: #fff;
    padding: .5rem .75rem;
}
.joblist-item-desitem b{
    font-weight: 500;
}

/**********************************************
**********************************************/
.joblist-item-deslist--jobdetail{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    margin-bottom: .5rem;
}
.joblist-item-deslist--jobdetail >li{
    flex: 0 0 auto;
    width: calc( 100% / 4);
}
.joblist-item-deslist--jobdetail .joblist-item-desitem{
    display: block;
    font-size: 15px;
    line-height: 24px;
}
.joblist-item-deslist--jobdetail .joblist-item-desitem{
    background-color: var( --color-red);
    color: #fff;
    padding: .65rem 1rem .5rem;
}
.joblist-item-deslist--jobdetail b{
    display: block;
    line-height: 20px;
}
/**********************************************
**********************************************/
.jobdetail-right-other{
    position: sticky; position: -webkit-sticky;
    top: 100px;
    margin: 0; padding: 1.5rem; list-style: none;
}
.jobdetail-right-other > li + li{
    margin-top: 1.5rem;
}
/**********************************************
**********************************************/
.about-quytrinh-wapper{
    background-color: #F2F2F2;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}
.about-quytrinh-title{
    margin-bottom: 1rem;
    text-align: center;
    color: var( --color-red);
}
.about-quytrinh-list{
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}
.about-quytrinh-item{
    position: relative;
}
.about-quytrinh-item::after{
    position: absolute; left: 100%; top: 0%; z-index: 9;
    transform: translateX(-50%);
    content: "";
    width: 11px; height: 100%;
    background: url( img/icon-quytrinh-right.png) no-repeat center;
    background-size: 11px auto;
}
.about-quytrinh-list .about-quytrinh-item:nth-child( 4n):after{
    display: none;
}
.about-quytrinh-box{
    display: flex; flex-direction: column;
    background-color: #D9D9D9;
    height: 100%;
}
.about-quytrinh-caption{
    padding: 1rem 1.25rem;
}
.about-quytrinh-caption-title{
    margin: 0 0 .5rem;
    font-size: 19px; line-height: 24px;
    text-align: center;
    font-weight: bold;
    color: var( --color-red);
}
.about-quytrinh-caption .dcontent{
    font-size: 15px;
    line-height: 22px;
}
.about-quytrinh-caption .dcontent p{
    margin-bottom: .5rem;
}
.about-quytrinh-caption-step{
    background-color: var( --color-red);
    padding: .65rem .75rem;
    text-align: center;
    font-size: 17px; font-weight: bold;
    line-height: 20px;
    color: #fff;
    text-transform: uppercase;
}
/**********************************************
**********************************************/
.container.about-thread-wapper{
    max-width: 1000px;
}
.about-thread-item{
    margin-bottom: 1.5rem;
}
.about-thread-header{
    margin-bottom: .75rem;
}
.about-thread-title{
    position: relative;
    display: inline-block;
    max-width: calc( 100% - 50px);
    background-color: var( --color-red);
    font-size: 23px; line-height: 30px;
    font-weight: 500;
    color: #fff;
    padding: .5rem .75rem .375rem;
    margin: 0;
    text-transform: uppercase;
}
.about-thread-title:after {
	left: 100%;
	top: 50%;
    transform: translateY(-50%);
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;   
	border-color: rgba(136, 183, 213, 0);
	border-left-color: var( --color-red);
	border-width: 22px
}
/**********************************************
**********************************************/
.checkpage-form-wrapper{
    padding: 1.5rem 3rem 3rem;
    margin: 3rem auto 4rem;
    width: 100%;
    max-width: 660px;
    background-color: #fff;
    box-shadow: var( --bs-box-shadow);
}
.pagecheck-title{
    text-transform: uppercase;
    color: var( --color-red);
    text-align: center;
    font-weight: bold;
    font-size: 29px;
    margin-bottom: 1.5rem;
}

.checkpage-breadcrumb{
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
}
.checkpage-breadcrumb-item{
    display: inline-flex;
    flex: 0 0 auto;
}
.checkpage-breadcrumb-item-label{
    display: block;
    background: url( img/bg-breadcrumb.png) no-repeat center;
    background-size: 100% 100%;
    text-align: center;
    padding: 10px 1.5rem 15px;
    position: relative;
    margin: 0 .25rem 0 0; 
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    min-width: 150px;
    color: var( --color-red);
    text-transform: capitalize;
}
.checkpage-breadcrumb-item-label.active{
    background-image: url( img/bg-breadcrumb-active.png);
    color: #fff;
}

/**********************************************
**********************************************/
.checkpage-ungtuyen-wrapper{
    font-size: 15px;
}
.checkpage-ungtuyen-title{
    font-weight: bold;
    font-size: 17px;
    padding-bottom: .5rem;
    border-bottom: 1px solid #000;
}
.checkpage-ungtuyen-status{
    display: flex; flex-direction: column;
    max-width: 235px;
    margin: 1.5rem auto 0;
    align-items: center; justify-content: center;
    aspect-ratio: 1/1;
    border: 2px solid var( --color-red);
    color: var( --color-red);
    padding: .75rem;
    border-radius: 50%;
    font-size: 1.75em;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}
.checkpage-ungtuyen-status small{
    font-size: .575em;
    margin-bottom: .375rem;
    text-transform: capitalize;
    font-weight: 500;
}
.checkpage-ungtuyen-line{
    margin-bottom: .75rem;
    display: flex; flex-wrap: nowrap;
}
.checkpage-ungtuyen-line-label{
    flex: 0 0 auto;
    width: 150px;
    margin-right: .5rem;
}
.checkpage-ungtuyen-line-value{
    flex: 0 0 auto;
    width: calc( 100% - 150px);
}
[class*=checkpage-ungtuyen-line-label--icon-]{
    background-position: left center;
    background-size: auto 16px;
    background-repeat: no-repeat;
    padding-left: 30px;
}
.checkpage-ungtuyen-line-label--icon-fullname{
    background-image: url( img/icon-fullname.png);
    background-position: 5px center;
}
.checkpage-ungtuyen-line-label--icon-maungtuyen{
    background-image: url( img/icon-maungtuyen.png);
    background-position: 5px center;
}
.checkpage-ungtuyen-line-label--icon-phone{
    background-image: url( img/icon-phone.png);
    background-position: 5px center;
}
.checkpage-ungtuyen-line-label--icon-email{
    background-image: url( img/icon-email.png);
    background-size: auto 14px;
    background-position: 2px center;
}
.checkpage-ungtuyen-line-label--icon-brithday{
    background-image: url( img/icon-brithday.png);
    background-position: 3px center;
}
.checkpage-ungtuyen-line-label--icon-gender{
    background-image: url( img/icon-gender.png);
    background-position: 1px center;
}
/**********************************************
**********************************************/
.checkpage-ungtuyen-information .checkpage-ungtuyen-line-label{
    width: 240px;
}
.checkpage-ungtuyen-information .checkpage-ungtuyen-line-value{
    width: calc( 100% - 240px);
}
/**********************************************
**********************************************/
.checkpage-kinhnghiem-row{
    --bs-dark-rgb: 130, 130, 130;
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 0;
    margin: 0 0 .25rem;
    font-size: 14px;
}
.checkpage-kinhnghiem-col{
    flex: 0 0 auto;
    padding: .45rem calc(var(--bs-gutter-x) * .5);
}
.checkpage-kinhnghiem-datetime{
    width: 180px;
}
.checkpage-kinhnghiem-company{
    width: 350px;
}
.checkpage-kinhnghiem-contact{
    width: 200px;
}
.checkpage-kinhnghiem-quote{
    width: calc( 100% - 730px);

}
.checkpage-kinhnghiem-row--header{
    font-weight: bold;
    background-color: #eee;
}
/**********************************************
**********************************************/
.checkpage-kinhnghiem-bangcap{
    width: 300px;

}
.checkpage-kinhnghiem-location{
    width: calc( 100% - 600px);

}
.checkpage-kinhnghiem-method{
    width: 300px;

}
/**********************************************
**********************************************/
.checkpage-ungtuyen-wrapper .dcontent{
    font-size: 15px; line-height: 26px;
}
.checkpage-ungtuyen-wrapper .dcontent p{
    margin-bottom: .5rem;
}
/**********************************************
**********************************************/
