﻿@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* IMAGE */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* COLOR OPACITY */
/* BORDER COLOR OPACITY */
/* BORDER RADIUS */
/* User-select*/
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/*///////////////////////////////////ANIMATION//////////////////////////////////*/
/*/////////////////////////////////////SCREEN////////////////////////////////////////*/
/*/////////////////////////////////////DIV////////////////////////////////////////*/
/*@import url(icons.css);*/

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

/******common******/
.mgt-0 {
    margin-top: 0px;
}

.mgt-5 {
    margin-top: 5px;
}

.mgt-10 {
    margin-top: 10px;
}

.mgt-15 {
    margin-top: 15px;
}

.mgt-20 {
    margin-top: 20px;
}

.mgr-0 {
    margin-right: 0px;
}

.mgr-5 {
    margin-right: 5px;
}

.mgr-10 {
    margin-right: 10px;
}

.mgr-15 {
    margin-right: 15px;
}

.mgr-20 {
    margin-right: 20px;
}

.mgb-0 {
    margin-bottom: 0px;
}

.mgb-5 {
    margin-bottom: 5px;
}

.mgb-10 {
    margin-bottom: 10px;
}

.mgb-15 {
    margin-bottom: 15px;
}

.mgb-20,
.mb-20 {
    margin-bottom: 20px;
}

.mgb-24,
.mb-24 {
    margin-bottom: 24px;
}

.mgb-32,
.mb-32 {
    margin-bottom: 32px;
}

.mt-12 {
    margin-top: 12px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-24 {
    margin-bottom: 1.5rem;
}

.mgl-0 {
    margin-left: 0px;
}

.mgl-5 {
    margin-left: 5px;
}

.mgl-10 {
    margin-left: 10px;
}

.mgl-15 {
    margin-left: 15px;
}

.mgl-20 {
    margin-left: 20px;
}

.my-6px {
    margin-top: 6px;
    margin-bottom: 6px;
}

.pdl-0 {
    padding-left: 0px;
}

.pdl-15 {
    padding-left: 15px;
}

.pdl-40 {
    padding-left: 40px;
}

.pdl-50 {
    padding-left: 50px;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pd0 {
    padding: 0 !important;
}

.p-24 {
    padding: 1.5rem;
}

@media screen and (max-width: 767px) {
    .p-24 {
        padding: 1rem;
    }
}

.py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
    .py-24 {
        padding-top: 1rem;
        padding-top: 1rem;
    }
}

.px-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media screen and (max-width: 767px) {
    .px-24 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.pb-24 {
    padding-bottom: 1.5rem;
}

.p-16 {
    padding: 1rem;
}

.px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.pb-16 {
    padding-bottom: 1rem;
}

.p-12 {
    padding: 0.75rem;
}

.pb-12 {
    padding-bottom: 0.75rem;
}

.p-8 {
    padding: 0.5rem;
}

.pb-8 {
    padding-bottom: 0.5rem;
}

.mb-16 {
    margin-bottom: 1rem;
}

a {
    color: #2A80B9;
    transition: all 0.2s;
}

img {
    max-width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

body,
html {
    background-color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

/*************/
.container {
    --bs-gutter-x: 1rem;
}

@media screen and (min-width: 1353px) {
    .container {
        max-width: 1352px;
    }
}

@media screen and (max-width: 1350px) {
    .container {
        max-width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        --bs-gutter-x: 0.875rem;
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .container {
        --bs-gutter-x: 0.875rem;
        max-width: 100%;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
}

@media screen and (max-width: 1200px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .row {
        --bs-gutter-x: 1.25rem;
    }
}

.row-sm {
    --bs-gutter-x: 0.75rem;
}

.wrapper {
    position: relative;
    min-height: 100vh;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
}

.text-primary {
    color: #2A80B9 !important;
}

.text-orange {
    color: #FE7B05 !important;
}

.text-red {
    color: #dc3545 !important;
}

.text-yellow {
    color: #FF9230 !important;
}

.btn-block {
    width: 100%;
}

.btn {
    /*padding: 0.25rem 1rem;
    height: 2.75rem;
    line-height: 2.25rem;
    transition: all 0.2s;*/
}

    .btn.gradient-orange:hover, .btn.btn-orange:hover, .btn.btn-outline-orange:hover, .btn-outline-orange > span .btn:hover, .btn.text-gradient-orange:hover, .btn-orange-light span.btn:hover, .tabs-general .nav-item .btn.nav-link:hover:after, .tabs-general .nav-item .nav-link.active span.btn:hover, .btn.back-to-top:hover, .card-general .btn.card-header:hover, .simple-page-container .btn.page-heading:hover:before {
        color: #ffffff;
    }

    .btn.gradient-blue:hover, .btn.btn-blue:hover, .btn.btn-outline-blue:hover, .btn-outline-blue > span .btn:hover, .card-general .btn.card-header.card-header-blue:hover, .company-box .view-detail i.btn:hover {
        color: #ffffff;
    }

.btn-sm {
    height: 2rem;
    line-height: 1.25rem;
}

.btn-around {
    border-radius: 2rem;
}

.btn-red {
    color: #ffffff;
    background-color: #FC1942;
}

    .btn-red:hover {
        color: #ffffff;
        background-color: #dc3545;
    }

.btn-primary {
    background-color: #2A80B9;
    border-color: #2A80B9;
    color: #ffffff;
}

    .btn-primary:hover {
        background-color: #236997;
        border-color: #236997;
        color: #ffffff;
    }

    .btn-primary.disabled,
    .btn-primary:disabled {
        background-color: #2A80B9;
        border-color: #2A80B9;
        color: #ffffff;
    }

.btn-primary-dark {
    background-color: #236997;
    border-color: #236997;
    color: #ffffff;
}

    .btn-primary-dark:hover {
        background-color: #1C71AA;
        border-color: #1C71AA;
        color: #ffffff;
    }

.btn-transparent, .navbar-toggler {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none !important;
}

.btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.btn-circle-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
}

.btn-has-icon {
    position: relative;
    padding-right: 2.5rem;
}

    .btn-has-icon i {
        font-size: 1.25rem;
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.2s;
    }

    .btn-has-icon:hover i {
        right: 0.5rem;
    }

    .btn-has-icon.center {
        padding: 0.5rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .btn-has-icon.center > span {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-has-icon.center i {
            position: unset;
            margin-right: 0.5rem;
            transform: unset;
        }

.btn-yellow {
    background-color: #FF9230;
    border-color: #FF9230;
    color: #ffffff !important;
}

    .btn-yellow:hover {
        background-color: #FE7B05;
        border-color: #FE7B05;
        color: #ffffff !important;
    }

.btn-orange {
    color: #ffffff;
    box-shadow: none !important;
}

    .btn-orange:hover {
        color: #ffffff;
    }

.btn-blue {
    color: #ffffff;
    box-shadow: none !important;
}

    .btn-blue:hover {
        color: #ffffff;
    }

.btn-orange-light {
    color: #FE7B05;
    box-shadow: none !important;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-outline-orange {
    padding: 2px;
    border-radius: 5px;
    border: none;
    box-shadow: none !important;
}

    .btn-outline-orange > span {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        padding: 6px 8px;
        border-radius: 4px;
        transition: all 0.2s;
    }

        .btn-outline-orange > span * {
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-outline-orange > span i {
            font-size: 1.5rem;
            margin-left: 0.5rem;
        }

    .btn-outline-orange:hover > span {
        background-color: transparent;
        transition: all 0.2s;
    }

        .btn-outline-orange:hover > span * {
            -webkit-background-clip: text;
            -webkit-text-fill-color: unset;
        }

.btn-outline-blue {
    padding: 2px;
    border-radius: 5px;
    border: none;
    box-shadow: none !important;
}

    .btn-outline-blue > span {
        display: flex;
        align-items: center;
        background-color: #ffffff;
        padding: 6px 8px;
        border-radius: 4px;
        transition: all 0.2s;
    }

        .btn-outline-blue > span * {
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-outline-blue > span i {
            font-size: 1.5rem;
            margin-left: 0.5rem;
        }

    .btn-outline-blue:hover > span {
        background-color: transparent;
        transition: all 0.2s;
    }

        .btn-outline-blue:hover > span * {
            -webkit-background-clip: text;
            -webkit-text-fill-color: unset;
        }

.border-radius-0 {
    border-radius: 0;
}

.border-radius-4 {
    border-radius: 4px;
}

.opacity-2 {
    opacity: 0.2;
}

.opacity-4 {
    opacity: 0.4;
}

.opacity-6 {
    opacity: 0.6;
}

.opacity-7 {
    opacity: 0.7;
}

.opacity-8 {
    opacity: 0.8;
}

.opacity-9 {
    opacity: 0.9;
}

.heading-title {
    display: flex;
    align-items: center;
}

    .heading-title i {
        font-size: 1.5rem;
        min-width: 2rem;
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #2A80B9;
}

@media screen and (min-width: 768px) {
    .visible-sm {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .hidden-sm {
        display: none;
    }
}

.font-xl,
.text-xl {
    font-size: 2.5rem;
}

.font-lg,
.text-lg {
    font-size: 2rem;
}

.font-md,
.text-md {
    font-size: 1.5rem;
}

.font-lmd,
.text-lmd {
    font-size: 1.25rem;
}

.font-sdf,
.text-sdf {
    font-size: 1.125rem;
}

.font-def,
.text-def {
    font-size: 1rem;
}

.font-smd,
.text-smd {
    font-size: 0.875rem;
}

.font-sm,
.text-sm,
small {
    font-size: 0.75rem;
}

@media screen and (max-width: 1200px) {
    .font-xl,
    .text-xl {
        font-size: 2.125rem;
    }

    .font-lg,
    .text-lg {
        font-size: 1.75rem;
    }

    .font-md,
    .text-md {
        font-size: 1rem;
    }

    .font-def,
    .text-def {
        font-size: 0.9375rem;
    }

    .font-smd,
    .text-smd {
        font-size: 0.875rem;
    }

    .font-sm,
    .text-sm,
    small {
        font-size: 0.75rem;
    }
}

.text-white {
    color: #fff;
}

.text-black {
    color: #1A1C1D;
}

.text-gray {
    color: #666666;
}

.text-green {
    color: #00b887;
}

.text-orange {
    color: #FE7B05;
}

.text-gradient-orange, .btn-orange-light span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-bold,
.bold {
    font-weight: bold;
}

.font-normal {
    font-weight: normal;
}

.ilatic,
.font-ilatic,
.font-italic {
    font-style: italic;
}

.flex-center, .company-box .view-detail, .company-box .view-detail i {
    display: flex;
    align-items: center;
}

.gradient-orange, .btn-orange, .btn-outline-orange, .btn-outline-orange > span *, .text-gradient-orange, .btn-orange-light span, .tabs-general .nav-item .nav-link:after, .tabs-general .nav-item .nav-link.active span, .back-to-top, .card-general .card-header, .simple-page-container .page-heading:before {
    background-color: #ee7730;
    background-image: -webkit-gradient(linear, left top, right top, from(#ee7730), to(#f09f39));
    background-image: -webkit-linear-gradient(left, #ee7730, #f09f39);
    background-image: -moz-linear-gradient(left, #ee7730, #f09f39);
    background-image: -ms-linear-gradient(left, #ee7730, #f09f39);
    background-image: -o-linear-gradient(left, #ee7730, #f09f39);
    background-image: linear-gradient(left, #ee7730, #f09f39);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ee7730', endColorStr='#f09f39', gradientType='1');
    color: #fff;
}

.gradient-orange-light, .btn-orange-light {
    background-color: rgba(238, 119, 48, 0.16);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(238, 119, 48, 0.16)), to(rgba(240, 159, 57, 0.16)));
    background-image: -webkit-linear-gradient(left, rgba(238, 119, 48, 0.16), rgba(240, 159, 57, 0.16));
    background-image: -moz-linear-gradient(left, rgba(238, 119, 48, 0.16), rgba(240, 159, 57, 0.16));
    background-image: -ms-linear-gradient(left, rgba(238, 119, 48, 0.16), rgba(240, 159, 57, 0.16));
    background-image: -o-linear-gradient(left, rgba(238, 119, 48, 0.16), rgba(240, 159, 57, 0.16));
    background-image: linear-gradient(left, rgba(238, 119, 48, 0.16), rgba(240, 159, 57, 0.16));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(238, 119, 48, 0.16)', endColorStr='rgba(240, 159, 57, 0.16)', gradientType='1');
    color: #fff;
}

    .gradient-orange-light:hover, .btn-orange-light:hover {
        background-color: rgba(240, 159, 57, 0.16);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(240, 159, 57, 0.16)), to(rgba(238, 119, 48, 0.16)));
        background-image: -webkit-linear-gradient(left, rgba(240, 159, 57, 0.16), rgba(238, 119, 48, 0.16));
        background-image: -moz-linear-gradient(left, rgba(240, 159, 57, 0.16), rgba(238, 119, 48, 0.16));
        background-image: -ms-linear-gradient(left, rgba(240, 159, 57, 0.16), rgba(238, 119, 48, 0.16));
        background-image: -o-linear-gradient(left, rgba(240, 159, 57, 0.16), rgba(238, 119, 48, 0.16));
        background-image: linear-gradient(left, rgba(240, 159, 57, 0.16), rgba(238, 119, 48, 0.16));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(240, 159, 57, 0.16)', endColorStr='rgba(238, 119, 48, 0.16)', gradientType='1');
    }

.gradient-blue, .btn-blue, .btn-outline-blue, .btn-outline-blue > span *, .card-general .card-header.card-header-blue, .company-box .view-detail i {
    background-color: #1b60f8;
    background-image: -webkit-gradient(linear, left top, right top, from(#1b60f8), to(#1e92f9));
    background-image: -webkit-linear-gradient(left, #1b60f8, #1e92f9);
    background-image: -moz-linear-gradient(left, #1b60f8, #1e92f9);
    background-image: -ms-linear-gradient(left, #1b60f8, #1e92f9);
    background-image: -o-linear-gradient(left, #1b60f8, #1e92f9);
    background-image: linear-gradient(left, #1b60f8, #1e92f9);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#1b60f8', endColorStr='#1e92f9', gradientType='1');
    color: #fff;
}

.gradient-orange-revert, .btn.gradient-orange:hover, .btn.btn-orange:hover, .btn.btn-outline-orange:hover, .btn-outline-orange > span .btn:hover, .btn.text-gradient-orange:hover, .btn-orange-light span.btn:hover, .tabs-general .nav-item .btn.nav-link:hover:after, .tabs-general .nav-item .nav-link.active span.btn:hover, .btn.back-to-top:hover, .card-general .btn.card-header:hover, .simple-page-container .btn.page-heading:hover:before, .btn-orange:hover {
    background-color: #f09f39;
    background-image: -webkit-gradient(linear, left top, right top, from(#f09f39), to(#ee7730));
    background-image: -webkit-linear-gradient(left, #f09f39, #ee7730);
    background-image: -moz-linear-gradient(left, #f09f39, #ee7730);
    background-image: -ms-linear-gradient(left, #f09f39, #ee7730);
    background-image: -o-linear-gradient(left, #f09f39, #ee7730);
    background-image: linear-gradient(left, #f09f39, #ee7730);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f09f39', endColorStr='#ee7730', gradientType='1');
    color: #fff;
}

.gradient-blue-revert, .btn.gradient-blue:hover, .btn.btn-blue:hover, .btn.btn-outline-blue:hover, .btn-outline-blue > span .btn:hover, .card-general .btn.card-header.card-header-blue:hover, .company-box .view-detail i.btn:hover, .btn-blue:hover {
    background-color: #1e92f9;
    background-image: -webkit-gradient(linear, left top, right top, from(#1e92f9), to(#1b60f8));
    background-image: -webkit-linear-gradient(left, #1e92f9, #1b60f8);
    background-image: -moz-linear-gradient(left, #1e92f9, #1b60f8);
    background-image: -ms-linear-gradient(left, #1e92f9, #1b60f8);
    background-image: -o-linear-gradient(left, #1e92f9, #1b60f8);
    background-image: linear-gradient(left, #1e92f9, #1b60f8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#1e92f9', endColorStr='#1b60f8', gradientType='1');
    color: #fff;
}

.form-control {
    border: 1px solid #F1F3F5;
    height: 2.125rem;
    border-radius: 0.5rem;
}

    .form-control::placeholder {
        color: #999999;
    }

.form-control-gray {
    border-color: #F1F3F5;
    background-color: #F1F3F5;
}

.form-control-sm {
    height: 2.5rem;
}

select.form-control {
    padding-right: 2.5rem;
}

    select.form-control:after {
        width: 10px;
        height: 10px;
        background-color: red;
        content: "\e94a";
        color: #1A1C1D;
    }

    select.form-control.gray {
        border-color: #e2e2e2;
        background-color: #f4f6f8;
        color: #4d4d4d;
    }

.form-control-border-bottom {
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    padding-left: 0;
    border-bottom-color: #2A80B9;
    box-shadow: none;
}

    .form-control-border-bottom:focus {
        box-shadow: 0px 1px 0px 0px #2A80B9;
        border-bottom-color: #2A80B9;
    }

    .form-control-border-bottom.is-invalid, .form-control-border-bottom.is-valid {
        background-position: right 0 center;
    }

        .form-control-border-bottom.is-invalid:focus {
            box-shadow: 0px 1px 0px 0px #dc3545;
        }

        .form-control-border-bottom.is-valid:focus {
            box-shadow: 0px 1px 0px 0px #198754;
        }

    .form-control-border-bottom::placeholder {
        color: #666666;
    }

.input-has-icon {
    position: relative;
}

    .input-has-icon .icon,
    .input-has-icon i {
        position: absolute;
        z-index: 1;
        color: #666666;
        font-size: 1.5rem;
        top: 50%;
        left: 1rem;
        transform: translate(0, -50%);
    }

    .input-has-icon .form-control {
        padding: 1rem 1rem 1rem 3.5rem;
    }

    .input-has-icon .select2-container .select2-selection .select2-selection__rendered {
        padding-left: 3.5rem !important;
        padding-right: 2rem !important;
    }

        .input-has-icon .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
            color: #1A1C1D;
        }

.select2-container--default
.select2-selection--single
.select2-selection__placeholder {
    color: #1A1C1D;
}

.select2-container {
    color: #1A1C1D;
    font-size: 0.875rem;
}

@media screen and (max-width: 991px) {
    .select2-container {
        min-width: 100%;
    }
}

.select2-container .select2-selection {
    min-height: 3rem;
    height: 3rem !important;
    font-size: 1rem;
    color: #1A1C1D;
    border: 1px solid #e2e2e2 !important;
}

    .select2-container .select2-selection .select2-selection__rendered {
        height: 3rem !important;
        line-height: 3rem !important;
        color: #1A1C1D;
        padding-left: 1rem !important;
        padding-right: 2rem !important;
    }

    .select2-container .select2-selection .select2-selection__arrow {
        height: 3rem !important;
        width: 2rem !important;
    }

        .select2-container .select2-selection .select2-selection__arrow b {
            border: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 3rem !important;
            width: 2rem !important;
            margin: 0 !important;
            position: relative !important;
            top: 0 !important;
            left: 0 !important;
            font-size: 1.25rem;
        }

            .select2-container .select2-selection .select2-selection__arrow b:before {
                content: "\e94a";
                color: #1A1C1D;
            }

.select2-container .select2-search--dropdown {
    padding: 8px;
}

    .select2-container .select2-search--dropdown .select2-search__field {
        padding: 8px;
        border: 1px solid #F1F3F5 !important;
        border-radius: 4px;
        outline: none;
    }

        .select2-container .select2-search--dropdown .select2-search__field:focus {
            border-color: #2A80B9 !important;
        }

.select2-container .select2-results__message {
    display: none;
}

.select2-container .select2-results__group {
    color: #1A1C1D;
    font-weight: normal;
}

.select2-container .select2-results__option {
    border-bottom: 1px solid #F1F3F5;
}

    .select2-container .select2-results__option .select2-results__options {
        display: flex;
        flex-wrap: wrap;
    }

        .select2-container .select2-results__option .select2-results__options li {
            font-size: 0.875rem;
            color: #2A80B9;
            white-space: nowrap;
        }

        .select2-container .select2-results__option .select2-results__options .select2-results__option {
            border-bottom: none;
        }

            .select2-container .select2-results__option .select2-results__options .select2-results__option--highlighted[aria-selected],
            .select2-container .select2-results__option .select2-results__options .select2-results__option[aria-selected="true"] {
                background-color: transparent;
                color: #2A80B9;
                font-weight: bold;
            }

.select2-dropdown {
    border-color: #F1F3F5 !important;
    z-index: 1100 !important;
}

.section-heading .section-title {
    color: #FE7B05;
    font-weight: bold;
    font-size: 2rem;
}

.bg-gray {
    background-color: #f5f5f5;
}

.bg-grey {
    background-color: #f4f6f8;
}

.bg-primary {
    background-color: #2A80B9;
}

.bg-primary-100 {
    background-color: #E7F5FF;
}

.bg-primary-200 {
    background-color: #1C71AA;
}

.badge {
    padding: 0.5em 0.75em;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
}

    .badge.bg-primary-100 {
        color: #236997;
    }

@media screen and (max-width: 991px) {
    .badge {
        font-size: 0.875rem;
    }
}

a.badge:hover {
    text-decoration: underline;
}

.vldn-icon, select.form-control:after, .select2-container .select2-selection .select2-selection__arrow b, .breadcrumb-box .breadcrumb .breadcrumb-item:before, .slick-slider .slick-prev:before,
.slick-slider .slick-next:before {
    font-family: "vldn-ic" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scrollbar-small, .card-general .card-body {
    overflow: auto;
}

    .scrollbar-small::-webkit-scrollbar, .card-general .card-body::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .scrollbar-small::-webkit-scrollbar-track, .card-general .card-body::-webkit-scrollbar-track {
        background: transparent;
    }

    .scrollbar-small::-webkit-scrollbar-thumb, .card-general .card-body::-webkit-scrollbar-thumb {
        background: #999999;
        border-radius: 10px;
    }

        .scrollbar-small::-webkit-scrollbar-thumb:hover, .card-general .card-body::-webkit-scrollbar-thumb:hover {
            background: #8f9bb3;
        }

.breadcrumb-box {
    position: relative;
    z-index: 3;
}

    .breadcrumb-box .breadcrumb {
        padding: 1rem 0;
        margin: 0;
        font-size: 0.875rem;
    }

        .breadcrumb-box .breadcrumb .breadcrumb-item:before {
            color: #1A1C1D;
            line-height: unset;
            content: "\e965";
        }

        .breadcrumb-box .breadcrumb .breadcrumb-item:first-child::before {
            display: none;
        }

        .breadcrumb-box .breadcrumb .breadcrumb-item a {
            text-decoration: none;
        }

        .breadcrumb-box .breadcrumb .breadcrumb-item.active {
            color: #1A1C1D;
        }

.paginations .pagination {
    display: flex;
    margin: 0;
}

    .paginations .pagination .page-item,
    .paginations .pagination li {
        margin: 3px;
        border-radius: 0.25rem;
        padding: 1px;
    }

        .paginations .pagination .page-item:last-child,
        .paginations .pagination li:last-child {
            margin-right: 0;
        }

        .paginations .pagination .page-item .page-link,
        .paginations .pagination .page-item a,
        .paginations .pagination li .page-link,
        .paginations .pagination li a {
            width: 2.5rem;
            height: 2.5rem;
            margin: 0;
            padding: 0;
            border-radius: 0.25rem;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1rem;
            border: 1px solid transparent;
            color: #FE7B05;
            text-decoration: none;
            background-color: #f4f6f8;
            color: #4d4d4d;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }

        .paginations .pagination .page-item.active .page-link,
        .paginations .pagination .page-item.active a,
        .paginations .pagination li.active .page-link,
        .paginations .pagination li.active a {
            color: #ffffff;
            background-color: #2A80B9;
        }

.tabs-general {
    border: none;
    flex-wrap: nowrap;
}

    .tabs-general .nav-item {
        margin-right: 2rem;
    }

        .tabs-general .nav-item:last-child {
            margin-right: 0;
        }

@media screen and (max-width: 767px) {
    .tabs-general .nav-item {
        margin-right: 1rem;
    }
}

.tabs-general .nav-item .nav-link {
    border: none;
    border-radius: 0;
    color: #1A1C1D;
    position: relative;
    padding: 0.75rem 0;
}

    .tabs-general .nav-item .nav-link:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 0;
        transition: all 0.3s;
    }

    .tabs-general .nav-item .nav-link.active {
        background-color: transparent;
    }

        .tabs-general .nav-item .nav-link.active:after {
            width: 100%;
            transition: all 0.3s;
        }

        .tabs-general .nav-item .nav-link.active span {
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


.form-group {
    margin-bottom: 1rem;
}

    .form-group .text-muted,
    .form-group .invalid-feedback {
        font-size: 0.75rem !important;
        color: #dc3545 !important;
    }

    .form-group label {
        font-weight: bold;
    }

        .form-group label.required:after {
            content: "*";
            color: #dc3545;
            font-size: 0.875rem;
            margin-left: 3px;
        }
/*
    .form-group textarea.form-control {
        height: auto;
    }

    .form-group.form-group-sm .form-control {
        font-size: 0.875rem;
        height: 2.875rem;
        border-radius: 0.25rem;
    }

    .form-group.form-group-sm .label-control-sm {
        font-weight: bold;
        font-size: 0.75rem;
    }

    .form-group .label-small {
        font-size: 0.75rem;
        font-weight: bold;
    }*/

.form-group-flat {
    position: relative;
}

    .form-group-flat .label-control {
        position: absolute;
        top: 0.675rem;
        left: 1.5rem;
        z-index: 2;
    }

    .form-group-flat .form-icon {
        position: absolute;
        right: 1.5rem;
        font-size: 1.5rem;
        top: 1.25rem;
    }

    .form-group-flat .form-control {
        background-color: #edf1f7;
        border: none;
        min-height: 3.875rem;
        padding: 1.675rem 1.5rem 0.75rem 1.5rem;
        font-size: 0.875rem;
        background-position: right 0.5rem center;
    }

    .form-group-flat .select2-container .select2-selection {
        border: none !important;
        min-height: 3.875rem !important;
        background-color: #edf1f7;
        border-radius: 0.5rem;
    }

        .form-group-flat .select2-container .select2-selection .select2-selection__rendered {
            min-height: 3.875rem !important;
            height: 3.875rem !important;
            line-height: 1.675rem !important;
            padding: 1.675rem 1.5rem 0.75rem 1.5rem !important;
            font-size: 0.875rem;
        }

        .form-group-flat .select2-container .select2-selection .select2-selection__arrow {
            height: 3.875rem !important;
            width: 1.5rem !important;
            right: 1.5rem;
        }

            .form-group-flat .select2-container .select2-selection .select2-selection__arrow b {
                font-size: 1.5rem;
                height: 3.875rem !important;
                width: 1.5rem !important;
            }

                .form-group-flat .select2-container .select2-selection .select2-selection__arrow b:before {
                    font-size: 1.75rem;
                }

        .form-group-flat .select2-container .select2-selection .select2-selection__placeholder {
            color: #F1F3F5;
        }

.form-check .form-check-label {
    font-size: 0.875rem;
}

.col-20 {
    flex: 0 0 auto;
    width: 20%;
}

.text-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-decoration: none;
    gap: 0.5rem;
}

    .text-icon i {
        font-size: 1.375rem;
        margin-right: 0.5rem;
        min-width: 22px;
    }

    .text-icon ._text {
        display: flex;
        align-items: center;
        color: #666666;
    }

    .text-icon ._content {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem 0px;
        color: #2A80B9;
    }

.checkbox-custom .filter-name-item {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 2rem;
}

    .checkbox-custom .filter-name-item input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

    .checkbox-custom .filter-name-item label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
        display: inline-block;
        color: #4d4d4d;
    }

        .checkbox-custom .filter-name-item label::before {
            position: absolute;
            top: 0;
            left: -2rem;
            display: block;
            width: 20px;
            height: 20px;
            pointer-events: none;
            content: "";
            background-color: #fff;
            border: #dfdfdf solid 1px;
            border-radius: 0.25rem;
        }

        .checkbox-custom .filter-name-item label::after {
            position: absolute;
            top: 0;
            left: -2rem;
            display: block;
            width: 20px;
            height: 20px;
            content: "";
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 50% 50%;
        }

.checkbox-custom input:checked ~ label::before {
    color: #fff;
    border-color: #2A80B9;
    background-color: #2A80B9;
}

.checkbox-custom input:checked ~ label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7' fill='none'%3e%3cpath d='M7.33967 0.21967C7.63256 -0.0732233 8.10744 -0.0732233 8.40033 0.21967C8.6666 0.485936 8.6908 0.9026 8.47295 1.19621L8.40033 1.28033L3.65433 6.02633C3.3881 6.29256 2.97151 6.3168 2.6779 6.09903L2.59378 6.02644L0.219782 3.65344C-0.0731733 3.36061 -0.0732733 2.88574 0.219558 2.59278C0.485769 2.32646 0.902427 2.30217 1.19608 2.51996L1.28022 2.59256L3.1231 4.4348L7.33967 0.21967Z' fill='white' /%3e%3c/svg%3e");
}

.radio-custom .filter-name-item {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 2rem;
}

    .radio-custom .filter-name-item input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

    .radio-custom .filter-name-item label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
        display: inline-block;
        color: #4d4d4d;
    }

        .radio-custom .filter-name-item label::before {
            position: absolute;
            top: 0;
            left: -2rem;
            display: block;
            width: 20px;
            height: 20px;
            pointer-events: none;
            content: "";
            background-color: #fff;
            border: #dfdfdf solid 1px;
            border-radius: 50%;
        }

        .radio-custom .filter-name-item label::after {
            position: absolute;
            top: 5px;
            left: calc(-2rem + 5px);
            display: block;
            width: 10px;
            height: 10px;
            content: "";
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 50% 50%;
            opacity: 0;
            background-color: #fff;
            border-radius: 50%;
        }

.radio-custom input:checked ~ label::before {
    color: #fff;
    border-color: #2A80B9;
    background-color: #2A80B9;
}

.radio-custom input:checked ~ label::after {
    opacity: 1;
}

.nav-tabs-custom {
    border-bottom: 1px solid #2A80B9;
}

    .nav-tabs-custom .nav-link {
        color: #666666;
        border-radius: 0.5rem 0.5rem 0 0;
        font-weight: 600;
        padding: 0.5rem 2rem;
        position: relative;
        margin-bottom: 0;
    }

        .nav-tabs-custom .nav-link:hover {
            border-color: transparent;
        }

        .nav-tabs-custom .nav-link.active {
            background-color: #2A80B9;
            color: #fff;
            border-color: #2A80B9;
        }

            .nav-tabs-custom .nav-link.active:before {
                content: "";
                width: 1rem;
                height: 1rem;
                background-color: #2A80B9;
                position: absolute;
                right: calc(-1rem - 1px);
                bottom: -1px;
            }

            .nav-tabs-custom .nav-link.active:after {
                content: "";
                width: 1rem;
                height: 1rem;
                background-color: #fff;
                position: absolute;
                right: calc(-1rem - 1px);
                bottom: -1px;
                border-radius: 0 0 0 0.5rem;
            }

.group-password {
    position: relative;
}

    .group-password .toggle-password {
        position: absolute;
        cursor: pointer;
        top: 24px;
        right: 0;
        font-size: 1.25rem;
        height: 20px;
        width: 20px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(0%, -50%);
    }

        .group-password .toggle-password .password-show {
            display: block;
        }

        .group-password .toggle-password .password-hide {
            display: none;
        }

        .group-password .toggle-password.show-password .password-show {
            display: none;
        }

        .group-password .toggle-password.show-password .password-hide {
            display: block;
        }

.agree-checkbox {
    display: flex !important;
    flex-direction: column-reverse;
}

    .agree-checkbox .is-invalid ~ label:before {
        border-color: #dc3545;
    }

.share-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.list-social-share {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .list-social-share li {
        margin: 0px 5px 5px 0;
    }

        .list-social-share li a {
            padding: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50%;
        }

            .list-social-share li a i {
                transform: scale(1);
                transition: all 0.1s;
                font-size: 1.25rem;
            }

            .list-social-share li a:hover {
                color: #ffffff;
                text-decoration: none !important;
            }

                .list-social-share li a:hover i {
                    transform: scale(1.1);
                }

            .list-social-share li a:before {
                display: none;
            }

            .list-social-share li a.facebook {
                background-color: #2d5f9a;
            }

            .list-social-share li a.twitter {
                background-color: #53c7ff;
            }

            .list-social-share li a.linkedin {
                background-color: #10427d;
            }

            .list-social-share li a.pinterest {
                background-color: #a41719;
            }

            .list-social-share li a.instagram {
                background-color: #f52ae2;
            }

            .list-social-share li a.youtube {
                background-color: #bb0000;
            }

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

/* toggle button */
.navbar-toggler {
    padding: 10px 0;
    margin: 0;
    background-image: none;
    border-radius: 0.5rem;
    outline: none !important;
    border: none !important;
    width: 3rem;
    height: 3rem;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media screen and (max-width: 991px) {
    .navbar-toggler {
        display: flex;
        position: absolute;
        right: 1rem;
        z-index: 2;
        top: 1rem;
    }
}

.navbar-toggler:focus {
    outline: none !important;
    border: none !important;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 0;
    background: #2A80B9;
}

.navbar-toggler.navbar-toggler-white .icon-bar {
    background-color: #ffffff;
}

.navbar-toggler .icon-bar + .icon-bar {
    margin-top: 5px;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* end toggle button */
@keyframes headerFixed {
    from {
        margin-top: -80px;
        transition: all 0.2s;
    }

    to {
        margin-top: 0;
        transition: all 0.2s;
    }
}

@keyframes footerFixed {
    from {
        margin-bottom: -80px;
        transition: all 0.2s;
    }

    to {
        margin-bottom: 0;
        transition: all 0.2s;
    }
}

.wrapper {
    padding-top: 120px;
}

@media screen and (max-width: 767px) {
    .wrapper {
        padding-top: 80px;
    }
}

.header {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
}

    .header.header-fixed {
        animation-name: headerFixed;
        animation-duration: 0.5s;
        box-shadow: 0 2px 6px 0 rgba(51, 51, 51, 0.2);
    }

@media screen and (max-width: 767px) {
    .header.header-fixed .top-bar {
        display: none;
    }
}

.header .top-bar {
    background-color: #2A80B9;
    position: relative;
    z-index: 3;
}

    .header .top-bar .top-bar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

@media screen and (max-width: 1200px) {
    .header .top-bar .top-bar-inner {
        justify-content: flex-end;
    }
}

@media screen and (max-width: 1200px) {
    .header .top-bar .top-bar-inner .top-bar-left {
        display: none !important;
    }
}

.header .top-bar .top-bar-inner .top-bar-right {
    display: flex;
    align-items: center;
}

    .header .top-bar .top-bar-inner .top-bar-right .top-bar-social {
        display: flex;
        gap: 1rem;
        margin: 0;
    }

        .header .top-bar .top-bar-inner .top-bar-right .top-bar-social a {
            color: #ffffff;
            opacity: 0.7;
            text-decoration: none;
            font-size: 1.25rem;
        }

            .header .top-bar .top-bar-inner .top-bar-right .top-bar-social a:hover {
                opacity: 1;
            }

    .header .top-bar .top-bar-inner .top-bar-right .top-bar-action {
        display: flex;
        margin-left: 1.5rem;
    }

        .header .top-bar .top-bar-inner .top-bar-right .top-bar-action .btn {
            height: 2.5rem;
        }

@media screen and (max-width: 767px) {
    .header .top-bar {
        display: none;
    }
}

.header .top-bar .top-bar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    display: flex;
    justify-content: flex-end;
}

    .header .top-bar .top-bar-menu ul li {
        padding: 0;
        margin-left: 1.5rem;
    }

        .header .top-bar .top-bar-menu ul li a {
            color: #1A1C1D;
            padding: 0.5rem 0;
            text-decoration: none;
            display: block;
        }

            .header .top-bar .top-bar-menu ul li a:hover {
                color: #2A80B9;
            }

.header .header-logo {
    position: relative;
    background-color: #fff;
}

    .header .header-logo .container {
        z-index: 2;
        position: relative;
    }

    .header .header-logo .header-logo-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        padding-top: 10px;
        padding-bottom: 10px;
    }

        .header .header-logo .header-logo-container .navbar-brand {
            display: block;
            padding: 0;
        }

        .header .header-logo .header-logo-container .navbar-logo img {
            max-height: 60px;
        }

@media screen and (max-width: 991px) {
    .header .header-logo .header-logo-container .navbar-logo img {
        max-height: 55px;
    }
}

@media screen and (max-width: 767px) {
    .header .header-logo .header-logo-container .navbar-logo img {
        height: 50px;
        width: 50px;
        object-fit: cover;
        object-position: left;
    }
}

@media screen and (max-width: 767px) {
    .header .header-logo .header-logo-container .navbar-logo .navbar-brand {
        margin-right: 0;
    }
}

.header .header-logo .header-logo-container .header-logo-right {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .header .header-logo .header-logo-container .header-logo-right {
        width: calc(100% - 70px);
        justify-content: space-between;
    }
}

.header .header-logo .header-logo-container .header-logo-right .navbar-toggler {
    position: relative;
    padding: 0;
    top: auto;
    right: auto;
    margin-left: 0.5rem;
}

.header .dropdown-language img {
    height: 16px;
    margin-right: 5px;
}

.header .dropdown-language .dropdown-toggle {
    font-weight: bold;
    padding: 0 25px 0 0;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

    .header .dropdown-language .dropdown-toggle:after {
        content: "\f107";
        display: inline-block;
        font: normal normal normal 1.125rem/1 FontAwesome !important;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-transform: none;
        line-height: 1;
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        color: #2A80B9;
        border: none;
    }

.header .dropdown-language .dropdown-item {
    font-size: 0.875rem;
}

.header .header-search .open-search {
    font-size: 1.25rem;
}

    .header .header-search .open-search .icon-close {
        display: none;
    }

    .header .header-search .open-search.active .icon-search {
        display: none;
    }

    .header .header-search .open-search.active .icon-close {
        display: block;
    }

.header .form-search {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 1;
    border-top: 1px solid #F1F3F5;
}

@media screen and (max-width: 991px) {
    .header .form-search {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

@media screen and (max-width: 767px) {
    .header .form-search {
        padding: 2rem 0rem;
    }
}

.header .form-search.open {
    top: 100%;
    box-shadow: 0 2px 6px 0 rgba(51, 51, 51, 0.2);
    visibility: visible;
    transition: all 0.2s;
}

.header .form-search .form-search-group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

    .header .form-search .form-search-group .form-control {
        border-radius: 0;
        border-right: none;
        height: 50px;
        padding: 0.75rem 1rem;
        width: calc(100% - 150px);
    }

@media screen and (max-width: 767px) {
    .header .form-search .form-search-group .form-control {
        width: calc(100% - 130px);
    }
}

.header .form-search .form-search-group .btn {
    display: flex;
    align-items: center;
    width: 150px;
    height: 50px;
    padding: 0.75rem 1rem;
}

    .header .form-search .form-search-group .btn i {
        margin-left: 1rem;
    }

@media screen and (max-width: 767px) {
    .header .form-search .form-search-group .btn {
        width: 130px;
        font-size: 0.875rem;
        padding: 0.75rem;
    }
}

.header .header-menu {
    background-color: #fff;
    position: relative;
    height: 80px;
}

.header .navbar-header {
    padding: 0;
    flex-wrap: nowrap;
    position: unset;
    height: 80px;
}

    .header .navbar-header .backdrop {
        background-color: rgba(0, 0, 0, 0.75);
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1040;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
    }

        .header .navbar-header .backdrop.active {
            display: block;
        }

    .header .navbar-header .logo {
        margin-right: 1rem;
        display: flex;
    }

@media screen and (max-width: 991px) {
    .header .navbar-header .logo {
        margin: 0;
    }
}

.header .navbar-header .logo img {
    max-height: 40px;
    width: auto;
}

.header .navbar-header .header-menu-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navbar-header .navbar-center {
    margin: 0 auto;
}

.header .navbar-header .navbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header .navbar-header .navbar-mobile .sign-in-up {
    display: flex;
}

    .header .navbar-header .navbar-mobile .sign-in-up a {
        width: 50%;
        justify-content: center;
    }

.header .navbar-header .navbar-mobile .action-button {
    width: 100%;
    border-radius: 0;
}

.header .navbar-header .header-action {
    min-width: 230px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .header .navbar-header .header-action {
        min-width: 190px;
    }
}

@media screen and (max-width: 991px) {
    .header .navbar-header .header-action {
        padding-right: 4rem;
    }
}

@media screen and (max-width: 767px) {
    .header .navbar-header .header-action {
        display: none;
    }
}

.header .navbar-header .header-action .action-button {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .header .navbar-header .header-action .action-button i {
        margin-right: 5px;
    }

    .header .navbar-header .header-action .action-button span {
        display: inline-block;
        transition: all 0.3s ease 0s;
    }

        .header .navbar-header .header-action .action-button span:after {
            content: attr(data-hover);
            left: 0;
            padding: 0;
            position: absolute;
            top: 100%;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            visibility: hidden;
            transition: all 0.3s ease 0s;
        }

    .header .navbar-header .header-action .action-button:hover span {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        transition: all 0.3s ease 0s;
    }

        .header .navbar-header .header-action .action-button:hover span:after {
            visibility: visible;
        }

.header .navbar-header .header-action .for-employer {
    position: relative;
    color: #ffffff;
    margin-left: 0.5rem;
    height: 100%;
    padding-left: 1.5rem;
    padding-right: 2.5rem;
}

    .header .navbar-header .header-action .for-employer p {
        margin-bottom: 0;
    }

    .header .navbar-header .header-action .for-employer i {
        position: absolute;
        right: 1rem;
        transition: all 0.2s;
        font-size: 1.25rem;
    }

    .header .navbar-header .header-action .for-employer:hover i {
        right: 0.75rem;
    }

.header .navbar-header .main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
    width: 100%;
}

    .header .navbar-header .main-menu > li {
        display: inline-block;
        padding: 0;
        font-size: 1rem;
    }

        .header .navbar-header .main-menu > li .child-menu-toggle {
            display: none;
        }

@media screen and (max-width: 1200px) {
    .header .navbar-header .main-menu > li {
        padding: 0;
    }
}

.header .navbar-header .main-menu > li a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    color: #1A1C1D;
    line-height: 1.5;
}

@media screen and (max-width: 1200px) {
    .header .navbar-header .main-menu > li a {
        padding: 1rem 0.75rem;
    }
}

.header .navbar-header .main-menu > li a:hover {
    color: #2A80B9;
}

@media screen and (max-width: 991px) {
    .header .navbar-header .main-menu > li a {
        color: #fff;
    }

        .header .navbar-header .main-menu > li a:hover {
            color: #FE7B05;
        }
}

.header .navbar-header .main-menu > li.current-menu-item > a {
    color: #2A80B9;
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .header .navbar-header .main-menu > li.current-menu-item > a {
        color: #FE7B05;
    }
}

.header .navbar-header .main-menu > li ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .header .navbar-header .main-menu > li ul li a {
        padding: 0.75rem 1rem;
        line-height: 1.5;
        font-weight: 400;
    }

.header .navbar-header .main-menu > li.menu-item-has-children {
    position: relative;
}

    .header .navbar-header .main-menu > li.menu-item-has-children .sub-menu {
        padding: 0;
        position: absolute;
        left: 0;
        right: auto;
        top: calc(100% + 10px);
        opacity: 0;
        visibility: hidden;
        min-width: 240px;
        border: none;
        text-align: left;
        background-color: #fff;
        border-radius: 0.25rem;
        box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);
    }

@media screen and (max-width: 1200px) {
    .header .navbar-header .main-menu > li.menu-item-has-children .sub-menu {
        left: 0;
    }
}

.header .navbar-header .main-menu > li.menu-item-has-children .sub-menu li {
    font-size: 0.875rem;
}

    .header .navbar-header .main-menu > li.menu-item-has-children .sub-menu li + li {
        border-top: 1px solid #F1F3F5;
    }

.header .navbar-header .main-menu > li.menu-item-has-children:hover > a {
    color: #2A80B9;
}

@media screen and (max-width: 991px) {
    .header .navbar-header .main-menu > li.menu-item-has-children:hover > a {
        color: #FE7B05;
    }
}

.header .navbar-header .main-menu > li.menu-item-has-children:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
}

.header .navbar-header .main-menu > li:last-child.menu-item-has-children .sub-menu {
    right: 0;
    left: auto;
}

@media screen and (max-width: 991px) {
    .header .navbar-header .header-menu-right {
        background-color: #0C3251;
        position: fixed;
        width: 350px;
        max-width: 100%;
        height: 100vh;
        padding: 0;
        top: 0;
        bottom: 0;
        right: -350px;
        display: inline-block;
        z-index: 1050;
        overflow: auto;
        padding: 5rem 0 0 0;
    }

        .header .navbar-header .header-menu-right .navbar-toggler {
            right: 1rem;
            top: 1rem;
        }

        .header .navbar-header .header-menu-right .main-menu {
            margin-top: 0;
            width: 100%;
            justify-content: flex-start;
            flex-direction: column;
            max-height: calc(100vh - 5rem);
            padding-bottom: 1rem;
            overflow: auto;
        }

            .header .navbar-header .header-menu-right .main-menu > li {
                display: inline-block;
                width: 100%;
                text-align: left;
                padding: 0;
                position: relative;
                border-bottom: 1px solid #999999;
            }

                .header .navbar-header .header-menu-right .main-menu > li:first-child {
                    border-top: 1px solid #999999;
                }

                .header .navbar-header .header-menu-right .main-menu > li .child-menu-toggle {
                    position: absolute;
                    right: 8px;
                    top: 8px;
                    display: flex;
                    width: 30px;
                    height: 30px;
                    align-items: center;
                    justify-content: center;
                }

                    .header .navbar-header .header-menu-right .main-menu > li .child-menu-toggle i {
                        color: #fff;
                        font-size: 1.5rem;
                        transform: rotate(0deg);
                        transition: all 0.2s;
                    }

                .header .navbar-header .header-menu-right .main-menu > li > a {
                    display: inline-block;
                    font-size: 1rem;
                    padding: 0.75rem 1rem !important;
                    border-bottom: none;
                    font-weight: normal;
                    text-align: left;
                    width: 100%;
                    color: #1A1C1D;
                    padding: 0.75rem 1rem;
                    text-transform: uppercase;
                    font-weight: bold;
                }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
    .header .navbar-header .header-menu-right .main-menu > li > a {
        color: #fff;
    }
}

@media screen and (max-width: 991px) {
    .header .navbar-header .header-menu-right .main-menu > li > a:after {
        display: none;
    }

    .header .navbar-header .header-menu-right .main-menu > li .sub-menu {
        min-width: 100%;
        width: 100%;
        order: 3;
        padding-left: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 20px;
        position: relative;
        left: 0;
        opacity: 1;
        visibility: visible;
        width: 100%;
        text-align: left;
        background: transparent;
        display: none;
        position: relative;
        top: auto;
        margin-bottom: 0;
    }

        .header .navbar-header .header-menu-right .main-menu > li .sub-menu li {
            border-top: 1px solid #999999;
            font-size: 0.875rem;
        }

            .header .navbar-header .header-menu-right .main-menu > li .sub-menu li a {
                font-size: 0.875rem;
            }

        .header .navbar-header .header-menu-right .main-menu > li .sub-menu.active {
            display: block;
        }

    .header .navbar-header .header-menu-right .main-menu > li.menu-item-has-children {
        position: relative;
    }

        .header .navbar-header .header-menu-right .main-menu > li.menu-item-has-children > a {
            padding: 0.75rem 2.5rem 0.75rem 1rem !important;
        }

        .header .navbar-header .header-menu-right .main-menu > li.menu-item-has-children > ul.sub-menu {
            min-width: 100%;
            width: 100%;
            order: 3;
            padding-left: 0;
            padding-top: 0;
            padding-bottom: 0;
            margin-bottom: 20px;
            position: relative;
            left: 0;
            opacity: 1;
            visibility: visible;
            width: 100%;
            text-align: left;
            background: transparent;
            position: relative;
            top: auto;
            margin-bottom: 0;
        }

        .header .navbar-header .header-menu-right .main-menu > li.menu-item-has-children.active i {
            transform: rotate(-180deg);
            transition: all 0.2s;
        }

        .header .navbar-header .header-menu-right .main-menu > li.menu-item-has-children.active > ul.sub-menu {
            display: block;
        }

        .header .navbar-header .header-menu-right .main-menu > li.menu-item-has-children:after {
            display: none;
        }

    .header .navbar-header .header-menu-right .header-action {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        border-top: 1px solid #999999;
    }

        .header .navbar-header .header-menu-right .header-action a {
            width: 50%;
        }

            .header .navbar-header .header-menu-right .header-action a:first-child {
                border-right: 1px solid #999999;
            }

        .header .navbar-header .header-menu-right .header-action .for-employer {
            width: 100%;
            margin: 0;
        }

    .header .navbar-header .header-menu-right.active {
        right: 0;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }
}

@media screen and (max-width: 574px) {
    .header .navbar-header .header-menu-right {
        width: 100%;
        right: -100%;
    }
}

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

.footer {
    background-color: #0C3251;
    color: #fff;
}

    .footer .footer-border-bottom {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .footer a {
        color: rgba(255, 255, 255, 0.7);
    }

        .footer a:hover {
            color: #FE7B05;
        }

    .footer .logo-footer {
        display: inline-block;
    }

        .footer .logo-footer img {
            height: 40px;
            max-height: 40px;
        }

    .footer .footer-widget {
        margin-bottom: 1.5rem;
        color: #fff;
    }

        .footer .footer-widget .footer-intro ul li {
            display: flex;
            margin-bottom: 0.75rem;
        }

            .footer .footer-widget .footer-intro ul li i {
                font-size: 1.5rem;
                width: 1.5rem;
                margin-right: 1rem;
            }

            .footer .footer-widget .footer-intro ul li span,
            .footer .footer-widget .footer-intro ul li a {
                width: calc(100% - 2.5rem);
                text-decoration: none;
            }

        .footer .footer-widget .footer-widget-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: bold;
            color: #fff;
        }

        .footer .footer-widget .footer-widget-content {
            font-size: 0.875rem;
        }

            .footer .footer-widget .footer-widget-content ul {
                padding: 0;
                margin-bottom: 1rem;
            }

                .footer .footer-widget .footer-widget-content ul li {
                    list-style: none;
                    margin-bottom: 0.75rem;
                }

                    .footer .footer-widget .footer-widget-content ul li a {
                        text-decoration: none;
                    }

                        .footer .footer-widget .footer-widget-content ul li a:hover {
                            text-decoration: underline;
                        }

            .footer .footer-widget .footer-widget-content .list-social {
                display: flex;
                flex-wrap: wrap;
            }

                .footer .footer-widget .footer-widget-content .list-social li {
                    margin: 0px 3px 3px 0;
                }

                    .footer .footer-widget .footer-widget-content .list-social li a {
                        padding: 0;
                        width: 36px;
                        height: 36px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: #ffffff;
                        text-decoration: none;
                        border-radius: 0.5rem;
                    }

                        .footer .footer-widget .footer-widget-content .list-social li a i {
                            transform: scale(1);
                            transition: all 0.1s;
                            font-size: 2rem;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a:hover {
                            color: #ffffff;
                            text-decoration: none;
                        }

                            .footer .footer-widget .footer-widget-content .list-social li a:hover i {
                                transform: scale(1.1);
                            }

                        .footer .footer-widget .footer-widget-content .list-social li a:before {
                            display: none;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a.facebook {
                            background-color: #2d5f9a;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a.twitter {
                            background-color: #53c7ff;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a.linkedin {
                            background-color: #10427d;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a.pinterest {
                            background-color: #a41719;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a.instagram {
                            background-color: #f52ae2;
                        }

                        .footer .footer-widget .footer-widget-content .list-social li a.youtube {
                            background-color: #bb0000;
                        }

    .footer .footer-hotline {
        margin-bottom: 1rem;
    }

    .footer .list-social {
        display: flex;
    }

        .footer .list-social li {
            margin: 0 0.5rem 0 0;
        }

            .footer .list-social li a i {
                font-size: 2rem;
            }

    .footer .hotline-box {
        background-color: #0F3A5E;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

        .footer .hotline-box ._title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer .hotline-box .hotline-box-left {
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0 2rem;
        }

@media screen and (max-width: 1200px) {
    .footer .hotline-box .hotline-box-left {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 991px) {
    .footer .hotline-box .hotline-box-left {
        border-right: none;
    }
}

.footer .hotline-box .hotline-box-right {
    padding: 0 2rem;
}

@media screen and (max-width: 1200px) {
    .footer .hotline-box .hotline-box-right {
        padding: 0 1rem;
    }
}

.footer .hotline-box .hotline-item {
    display: flex;
    align-items: center;
}

    .footer .hotline-box .hotline-item ._icon {
        font-size: 2.5rem;
        margin-right: 1rem;
        opacity: 0.8;
    }

    .footer .hotline-box .hotline-item p {
        margin-bottom: 0;
    }

.footer .top-footer {
    padding: 40px 0 10px 0;
}

    .footer .top-footer .footer-link ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .top-footer .footer-link ul li {
            margin-bottom: 0.75rem;
        }

            .footer .top-footer .footer-link ul li a {
                text-decoration: none;
            }

.footer .bottom-footer {
    text-align: left;
    color: #1A1C1D;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-size: 0.875rem;
}

    .footer .bottom-footer .bottom-footer-content {
        padding: 1.5rem 0 3rem;
        background-color: #fff;
        border-top: 1px solid #999999;
    }

        .footer .bottom-footer .bottom-footer-content p {
            margin-bottom: 0.5rem;
        }

    .footer .bottom-footer .list-info-icon li {
        position: relative;
        padding-left: 2rem;
    }

        .footer .bottom-footer .list-info-icon li i {
            position: absolute;
            font-size: 1.25rem;
            left: 0;
            top: 2px;
        }

        .footer .bottom-footer .list-info-icon li a {
            color: #fff;
        }

.back-to-top {
    position: fixed;
    bottom: 0;
    right: 20px;
    z-index: 9;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

    .back-to-top i {
        margin-top: -5px;
    }

    .back-to-top.active {
        bottom: 80px;
        opacity: 1;
        visibility: visible;
    }

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

.search-box {
    padding: .75rem;
    background-color: rgba(8, 19, 27, 0.5);
    border-radius: 0.5rem;
}

    .search-box .open-advance-search .btn {
        color: #fff;
    }

    .search-box .button-search {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .search-box .button-search i {
            font-size: 1.75rem;
            margin-right: 0.75rem;
        }

    .search-box .row {
        --bs-gutter-x: .75rem;
    }

    .search-box .input-box {
        margin-bottom: 0.75rem;
    }

    .search-box .select2-container .select2-selection {
        border-color: #F1F3F5 !important;
        border-radius: 0.5rem;
        width: 100%;
    }

@media screen and (max-width: 991px) {
    .search-box .search-basic .col-20 {
        width: 50%;
    }

        .search-box .search-basic .col-20.search-submit {
            width: 100%;
        }
}

@media screen and (max-width: 574px) {
    .search-box .search-basic .col-20 {
        width: 100%;
    }
}

.search-box .search-basic .form-control,
.search-box .search-basic .select2-container .select2-selection,
.search-box .search-basic .btn {
    height: 3.5rem !important;
    border-color: #F1F3F5 !important;
    border-radius: 0.5rem;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .search-box .search-basic .form-control,
    .search-box .search-basic .select2-container .select2-selection,
    .search-box .search-basic .btn {
        height: 3rem !important;
    }
}

.search-box .search-basic .select2-container .select2-selection .select2-selection__rendered {
    height: 3.5rem !important;
    border: none !important;
    line-height: 3.5rem !important;
}

@media screen and (max-width: 991px) {
    .search-box .search-basic .select2-container .select2-selection .select2-selection__rendered {
        height: 3rem !important;
        line-height: 3rem !important;
    }
}

.search-box .search-basic .select2-container .select2-selection .select2-selection__arrow,
.search-box .search-basic .select2-container .select2-selection .select2-selection__arrow b {
    height: 3.5rem !important;
}

@media screen and (max-width: 991px) {
    .search-box .search-basic .select2-container .select2-selection .select2-selection__arrow,
    .search-box .search-basic .select2-container .select2-selection .select2-selection__arrow b {
        height: 3rem !important;
    }
}

.search-box .search-basic .select2 {
    width: 100% !important;
}

.search-box .search-basic .btn {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border: none;
}

.search-box .search-basic .input-has-icon .icon {
    color: #1A1C1D;
}

.search-box .search-advance-recommend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

    .search-box .search-advance-recommend .list-cate-recommend {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

@media screen and (max-width: 991px) {
    .search-box .search-advance-recommend .list-cate-recommend {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
}

.search-box .search-advance-recommend .list-cate-recommend li {
    font-size: 0.875rem;
}

    .search-box .search-advance-recommend .list-cate-recommend li a {
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        .search-box .search-advance-recommend .list-cate-recommend li a i {
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        .search-box .search-advance-recommend .list-cate-recommend li a:hover {
            color: #ffffff;
        }

.search-box .search-advance {
    display: none;
}

    .search-box .search-advance .search-advance-inner .input-box {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }

    .search-box .search-advance .search-advance-inner label {
        margin-bottom: 0.75rem;
        white-space: nowrap;
    }

@media screen and (max-width: 574px) {
    .search-box .search-advance .search-advance-inner .input-box {
        min-width: 100%;
        width: 100%;
        margin-right: 0;
    }
}

.search-box .search-advance .search-advance-inner .select2-container {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 574px) {
    .search-box .search-advance .search-advance-inner .select2-container {
        margin-right: 0;
    }
}

.search-box .search-advance .select2-container .select2-selection .select2-selection__rendered,
.search-box .search-advance .select2-container .select2-selection {
    min-height: 2.5rem !important;
    height: 2.5rem !important;
    line-height: 2.5rem !important;
}

    .search-box .search-advance .select2-container .select2-selection .select2-selection__arrow,
    .search-box .search-advance .select2-container .select2-selection .select2-selection__arrow b {
        height: 2.5rem !important;
    }

.search-box .open-advance-search {
    display: flex;
    gap: 1.5rem;
}

@media screen and (max-width: 991px) {
    .search-box .open-advance-search {
        margin-left: auto;
        gap: 1rem;
    }
}

.search-box .open-advance-search .btn {
    height: auto;
    color: #fff;
    display: flex;
    align-items: center;
    margin: 0 auto;
    line-height: 1rem;
}

    .search-box .open-advance-search .btn span {
        margin-left: 0.5rem;
    }

    .search-box .open-advance-search .btn i {
        transform: rotate(0);
        transition: all 0.2s;
    }

    .search-box .open-advance-search .btn.active i {
        transform: rotate(180deg);
    }

.search-box .select2-container .select2-selection {
    border: none !important;
}

.search-box .search-basic .form-control,
.search-box .search-basic .select2-container .select2-selection,
.search-box .search-basic .btn {
    border: none !important;
}

    .search-box .search-basic .select2-container .select2-selection .select2-selection__rendered {
        height: 3.5rem !important;
        border: none !important;
        line-height: 3.5rem !important;
    }

@media screen and (max-width: 991px) {
    .search-box .search-basic .select2-container .select2-selection .select2-selection__rendered {
        height: 3rem !important;
        line-height: 3rem !important;
    }
}

.search-box .search-basic .input-has-icon .icon {
    color: #F1F3F5;
}

.search-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 32, 49, 0.8);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

    .search-container .search-inner .search-title {
        margin-bottom: 2rem;
    }

@media screen and (max-width: 991px) {
    .search-container .search-inner .search-title ._title {
        font-size: 1.5rem;
    }
}

.search-container .search-inner .search-title ._description {
    font-size: 1.125rem;
}

@media screen and (max-width: 991px) {
    .search-container .search-inner .search-title ._description {
        font-size: 0.875rem;
    }
}

.search-slider {
    position: relative;
}

    .search-slider .home-title h1 {
        font-size: 2rem;
        font-weight: bold;
    }

@media screen and (max-width: 991px) {
    .search-slider .home-title h1 {
        font-size: 1.75rem;
    }
}

.search-slider .home-title p {
    font-size: 1.5rem;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .search-slider .home-title p {
        font-size: 1.125rem;
    }
}

.search-slider .page-header-title {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 1.25rem;
}

@media screen and (max-width: 991px) {
    .search-slider .page-header-title {
        padding-bottom: 1rem;
    }
}

.search-slider .page-header-title .page-title {
    font-size: 2rem;
    color: #ffffff;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .search-slider .page-header-title .page-title {
        font-size: 1.5rem;
    }
}

.section-slider {
    overflow: hidden;
    position: relative;
}

    .section-slider .slider_text {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 30px 15px;
    }

        .section-slider .slider_text .slider_text-title {
            font-size: 2.5rem;
            font-weight: normal;
            line-height: 1.4;
            margin-bottom: 1.5rem;
        }

        .section-slider .slider_text p {
            font-size: 1.125rem;
            margin-bottom: 1rem;
        }

        .section-slider .slider_text .btn {
            padding-left: 30px;
            padding-right: 30px;
        }

    .section-slider .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    .section-slider .item {
        position: relative;
        overflow: hidden;
    }

        .section-slider .item img {
            width: 100%;
            height: 20vw;
            min-height: 380px;
            object-fit: cover;
            object-position: center;
        }

@media screen and (max-width: 991px) {
    .section-slider .item img {
        min-height: 500px;
        height: 70vw;
    }
}

@media screen and (max-width: 767px) {
    .section-slider .item img {
        min-height: 760px;
        height: calc(100vh - 120px);
    }
}

.slick-dots {
    bottom: 20px;
    z-index: 2;
}

    .slick-dots li {
        width: 10px;
        height: 10px;
        margin: 2px 5px;
    }

        .slick-dots li button {
            width: 10px;
            height: 10px;
            padding: 0;
            border-radius: 50%;
            background-color: #d9d9d9;
        }

            .slick-dots li button:before {
                font-size: 0;
                display: none;
            }

        .slick-dots li.slick-active button {
            background-color: #2A80B9;
        }

.section-page-header {
    position: relative;
}

    .section-page-header .breadcrumb-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        background: rgba(0, 0, 0, 0.3);
    }

    .section-page-header .slider_text {
        background: rgba(0, 0, 0, 0.5);
    }

        .section-page-header .slider_text .slider_text-title {
            font-size: 3rem;
            line-height: 1.4;
            font-weight: 500;
            letter-spacing: 5px;
            text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        }

            .section-page-header .slider_text .slider_text-title p {
                margin-top: 10px;
                letter-spacing: 2px;
            }

@media screen and (max-width: 1200px) {
    .section-page-header .slider_text .slider_text-title {
        font-size: 2rem;
    }
}

.section-page-header .form-search .input-group .form-control {
    height: 50px;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
    .section-page-header .form-search .input-group .form-control {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

.section-page-header .form-search .input-group .form-control:focus {
    box-shadow: none;
}

.section-page-header .form-search .input-group .input-group-append .btn-seach {
    background-color: #2A80B9;
    color: #ffffff;
    height: 50px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 0;
    border: none;
}

@media screen and (max-width: 767px) {
    .section-page-header .form-search .input-group .input-group-append .btn-seach {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.section-page-header .form-search .input-group .input-group-append .btn-seach:focus, .section-page-header .form-search .input-group .input-group-append .btn-seach:active {
    box-shadow: 0 0 0 0.2rem rgba(232, 35, 41, 0.35);
}

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

/**
 * 1.0 Text Elements
 * ----------------------------------------------------------------------------
 */
.entry-content {
    text-align: justify;
}

    .entry-content a {
        text-decoration: underline;
    }

    .entry-content dfn {
        font-style: italic;
    }

    .entry-content em {
        font-style: italic;
    }

    .entry-content p {
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .entry-content h1 {
        font-size: 1.5rem;
    }

    .entry-content h2 {
        font-size: 1.25rem;
    }

    .entry-content h3 {
        font-size: 1.125rem;
    }

    .entry-content h4 {
        font-size: 1rem;
    }

    .entry-content h5 {
        font-size: 0.875rem;
    }

    .entry-content h6 {
        font-size: 0.875rem;
    }

    .entry-content h1,
    .entry-content h2,
    .entry-content h3 {
        margin-bottom: 1.5rem;
    }

    .entry-content h4,
    .entry-content h5,
    .entry-content h6 {
        margin-bottom: 1rem;
    }

    .entry-content ol {
        margin: 16px 0;
        padding: 0 0 0 40px;
        list-style: decimal outside;
    }

    .entry-content ul {
        margin: 16px 0;
        padding: 0 0 0 40px;
        list-style-type: square;
        line-height: 1.8;
    }

    .entry-content li > ul {
        margin: 0;
    }

    .entry-content li > ol {
        margin: 0;
    }

    .entry-content dl {
        margin: 0 20px;
    }

    .entry-content dt {
        font-weight: bold;
    }

    .entry-content dd {
        margin: 0 0 20px;
    }

    .entry-content code {
        font-size: 14px;
    }

    .entry-content kbd {
        font-size: 14px;
    }

    .entry-content pre {
        font-size: 14px;
        font-size: 15px;
        overflow: auto;
        white-space: pre-wrap;
        word-wrap: break-word;
        border-radius: 0;
        line-height: 1.8;
        border: 0;
        background: #f5f5f5;
        padding: 10px;
        border-left: 5px solid #ddd;
        margin: 20px 0;
        font-family: "Segoe-Ui-Semibold";
    }

    .entry-content samp {
        font-size: 14px;
    }

    .entry-content blockquote {
        quotes: none;
        position: relative;
        font-size: 1.5rem;
        font-weight: normal;
        margin: 1.25rem 0;
        background: #2A80B9;
        color: #fff;
        padding: 1.25rem 4rem;
        display: inline-flex;
    }

        .entry-content blockquote a {
            color: #fff;
        }

        .entry-content blockquote:before {
            font-size: 3rem;
            position: absolute;
            top: 25px;
            height: 30px;
            line-height: 30px;
            font-weight: bold;
            content: "“";
            left: 1.25rem;
        }

        .entry-content blockquote:after {
            font-size: 3rem;
            position: absolute;
            top: 25px;
            height: 30px;
            line-height: 30px;
            font-weight: bold;
            content: "”";
            right: 1.25rem;
        }

        .entry-content blockquote blockquote {
            margin-right: 0;
        }

        .entry-content blockquote cite {
            font-size: 15px;
            font-weight: normal;
            text-transform: uppercase;
        }

        .entry-content blockquote small {
            font-size: 15px;
            font-weight: normal;
            text-transform: uppercase;
        }

    .entry-content q {
        quotes: none;
        position: relative;
    }

        .entry-content q:before {
            font-size: 3rem;
            position: absolute;
            top: 25px;
            font-size: 3rem;
            height: 30px;
            line-height: 30px;
            font-weight: bold;
            content: "“";
            left: 1.25rem;
        }

        .entry-content q:after {
            font-size: 3rem;
            position: absolute;
            top: 25px;
            font-size: 3rem;
            height: 30px;
            line-height: 30px;
            font-weight: bold;
            content: "”";
            right: 1.25rem;
        }

    .entry-content cite {
        border-bottom: 0;
    }

    .entry-content abbr[title] {
        border-bottom: 1px dotted;
    }

    .entry-content address {
        font-style: italic;
        margin: 0 0 24px;
    }

    .entry-content del {
        color: #333;
    }

    .entry-content ins {
        background: #fff9c0;
        border: none;
        color: #333;
        text-decoration: none;
    }

    .entry-content sub {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
        bottom: -0.25em;
    }

    .entry-content sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
        top: -0.5em;
    }

    .entry-content cite {
        font-style: italic;
    }

    .entry-content img {
        margin-bottom: 1rem;
    }

    /**
 * 4.0 Links
 * ----------------------------------------------------------------------------
 */
    /**
 * 5.0 Alignment
 * ----------------------------------------------------------------------------
 */
    .entry-content .alignleft {
        float: left;
        margin: 5px 20px 5px 0;
    }

    .entry-content .alignright {
        float: right;
        margin: 5px 0 5px 20px;
    }

    .entry-content .aligncenter {
        display: block;
        margin: 5px auto;
    }

    .entry-content img.alignnone {
        display: block;
        margin: 5px auto;
    }

    /**
 * 6.0 Tables
 * ----------------------------------------------------------------------------
 */
    .entry-content table {
        border: 1px solid #ededed;
        border-collapse: collapse;
        border-spacing: 0;
        font-size: 14px;
        line-height: 2;
        margin: 0 0 20px;
        width: 100%;
    }

    .entry-content caption,
    .entry-content th,
    .entry-content td {
        font-weight: normal;
        border: 1px solid #ededed;
        text-align: left;
        padding: 6px 10px;
    }

    .entry-content caption {
        font-size: 16px;
        margin: 20px 0;
    }

    /**
 * 7.0 Images
 * ----------------------------------------------------------------------------
 */
    .entry-content img {
        height: auto;
        max-width: 100%;
        vertical-align: middle;
    }

    .entry-content .wp-caption {
        background: transparent;
        border: none;
        padding: 0;
        text-align: center;
    }

        .entry-content .wp-caption.alignleft {
            margin: 5px 10px 5px 0;
        }

        .entry-content .wp-caption.alignright {
            margin: 5px 0 5px 10px;
        }

    .entry-content .wp-caption-dt {
        margin: 0;
    }

    .entry-content .wp-caption .wp-caption-text,
    .entry-content .wp-caption-dd {
        color: #666;
        font-size: 16px;
        font-style: italic;
        font-weight: 300;
        line-height: 2.5;
        margin-bottom: 20px;
        padding: 0;
    }

    .entry-content .mceTemp + ul,
    .entry-content .mceTemp + ol {
        list-style-position: inside;
    }

    .entry-content a[href^="tel:"] {
        background: #009f4a;
        display: inline-flex;
        line-height: 2.5;
        padding-right: 5px;
        color: #fff;
        border-radius: 3px;
    }

        .entry-content a[href^="tel:"]:hover {
            color: #fff;
        }

        .entry-content a[href^="tel:"]:before {
            font-family: FontAwesome;
            content: "\f10b";
            margin-right: 0.5em;
            color: #fff;
            background: rgba(0, 0, 0, 0.13);
            width: 35px;
            text-align: center;
        }

.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #f44336;
}

.wpcf7-display-none {
    display: none;
}

span.wpcf7-not-valid-tip {
    font-family: sans-serif;
    font-size: 14px;
}

div.wpcf7-response-output {
    margin: 15px 0 10px 0 !important;
    background-color: #f2dede !important;
    border: 1px solid #ebcccc !important;
    color: #a94442 !important;
    padding: 10px !important;
    font-family: sans-serif;
    font-size: 14px;
}

div.wpcf7-mail-sent-ok {
    background-color: #dff0d8 !important;
    border: 1px solid #d0e9c6 !important;
    color: #3c763d !important;
}

.empty-data {
    color: #f44336;
}

.single-container {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: calc(100vh - 160px);
}

    .single-container .page-header {
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

.top-section,
.page .top-section,
.single .top-section {
    background-attachment: fixed;
    height: auto;
    min-height: 100vh;
    max-height: 999999px;
}

.post-share {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .post-share .share-handler-wrap .social-item {
        margin: 0 4px 6px 0;
    }

        .post-share .share-handler-wrap .social-item a {
            border-radius: 30px;
            min-width: 30px;
            padding: 0 5px;
            line-height: 30px;
            display: inline-block;
            text-align: center;
            color: #fff;
            text-decoration: none;
        }

            .post-share .share-handler-wrap .social-item a i {
                font-size: 16px;
                margin-right: 5px;
            }

        .post-share .share-handler-wrap .social-item.facebook a {
            background-color: #2d5f9a;
        }

        .post-share .share-handler-wrap .social-item.twitter a {
            background-color: #53c7ff;
        }

        .post-share .share-handler-wrap .social-item.google_plus a {
            background-color: #d93b2b;
        }

        .post-share .share-handler-wrap .social-item.pinterest a {
            background-color: #a41719;
        }

    .post-share .post-share-btn {
        background: #fff;
        border: 1px solid #e2e2e2;
        line-height: 30px;
        display: inline-block;
        padding: 0 10px;
        border-radius: 30px;
        font-size: 12px;
        color: #4d4d4d;
        margin-right: 10px;
        margin-bottom: 6px;
        vertical-align: top;
    }

        .post-share .post-share-btn i {
            margin: 0 5px;
        }

        .post-share .post-share-btn b {
            font-size: 12px;
            line-height: 30px;
        }

    .post-share .btn-count-commnet {
        background: #fff;
        border: 1px solid #e2e2e2;
        line-height: 30px;
        display: inline-block;
        padding: 0 10px;
        border-radius: 30px;
        font-size: 12px;
        color: #4d4d4d;
        margin-bottom: 6px;
        vertical-align: top;
    }

        .post-share .btn-count-commnet i {
            margin: 0 5px;
        }

        .post-share .btn-count-commnet b {
            font-size: 12px;
            line-height: 30px;
        }

        .post-share .btn-count-commnet:hover {
            border: 1px solid #7d7d7d;
        }

.post-share-bot .share-handler-wrap .social-item a {
    padding: 0 10px;
}

.post-tags {
    margin-bottom: 7px;
}

    .post-tags .terms-label {
        line-height: 20px;
        border: 1px solid #444;
        background: #444;
        color: #fff;
        font-size: 10px;
        float: left;
        border-radius: 30px;
        padding: 0 10px;
        display: inline-block;
        margin-right: 4px;
    }

    .post-tags a {
        background: #fff;
        border: 1px solid #d4d4d4;
        padding: 0 9px;
        display: inline-block;
        line-height: 20px;
        margin-right: 3px;
        font-size: 12px;
        float: left;
        margin-bottom: 3px;
        color: #5f5f5f;
        border-radius: 33px;
        text-decoration: none;
    }

        .post-tags a:hover {
            background-color: #000;
            color: #fff;
            border-color: #000;
        }

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

/*box news*/
.post-box {
    margin-bottom: 1.5rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
    .post-box {
        margin-bottom: 1rem;
    }
}

.post-box .post-box-thumb {
    min-height: 180px;
    overflow: hidden;
    border-radius: 0;
    padding-top: 60%;
    position: relative;
}

    .post-box .post-box-thumb img {
        min-height: 180px;
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: scale(1, 1);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 100%;
    }

.post-box .post-box-inner {
    overflow: hidden;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .post-box .post-box-inner .post-box-inner-text {
        background-color: #fff;
        padding: 1rem 0;
        border-radius: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        color: #1A1C1D;
        text-decoration: none;
    }

        .post-box .post-box-inner .post-box-inner-text .post-text-date {
            font-size: 0.75rem;
            color: #F1F3F5;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

            .post-box .post-box-inner .post-box-inner-text .post-text-date span a {
                color: #F1F3F5;
            }

        .post-box .post-box-inner .post-box-inner-text h4,
        .post-box .post-box-inner .post-box-inner-text .post-title {
            margin-bottom: 0.5rem;
            font-size: 1rem;
            line-height: 1.5;
            font-weight: bold;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

            .post-box .post-box-inner .post-box-inner-text h4 a,
            .post-box .post-box-inner .post-box-inner-text .post-title a {
                color: #1A1C1D;
                width: 100%;
                text-decoration: none;
                background: linear-gradient(to right, #2A80B9 0%, #2A80B9 100%);
                background-size: 0px 1px;
                background-repeat: no-repeat;
                background-position: left 100%;
                transition: all 0.3s ease-in-out;
            }

                .post-box .post-box-inner .post-box-inner-text h4 a:hover,
                .post-box .post-box-inner .post-box-inner-text .post-title a:hover {
                    text-decoration: none;
                    color: #2A80B9;
                    background-size: 100% 1px;
                    transition: all 0.3s ease-in-out;
                }

            .post-box .post-box-inner .post-box-inner-text h4.post-title-sm,
            .post-box .post-box-inner .post-box-inner-text .post-title.post-title-sm {
                font-size: 0.875rem;
                font-weight: 500;
            }

        .post-box .post-box-inner .post-box-inner-text p {
            margin-bottom: 0;
            color: #666666;
            font-size: 0.875rem;
            line-height: 1.3;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .post-box .post-box-inner .post-box-inner-text .read-more {
            color: #2A80B9;
        }

            .post-box .post-box-inner .post-box-inner-text .read-more i {
                font-size: 12px;
            }

.post-box.post-box-round .post-box-inner {
    border-radius: 4px;
}

.post-box:hover .post-box-inner {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .post-box:hover .post-box-inner .post-box-inner-text .post-title a {
        text-decoration: none;
        color: #2A80B9;
        background-size: 100% 1px;
        transition: all 0.3s ease-in-out;
    }

    .post-box:hover .post-box-inner .post-box-thumb img {
        transform: scale(1.1, 1.1);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

/*box research*/
.category-box a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: block;
}

.category-box .category-box-thumb {
    min-height: 280px;
    overflow: hidden;
    border-radius: 0;
    padding-top: 80%;
    position: relative;
}

    .category-box .category-box-thumb img {
        min-height: 280px;
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

@media screen and (max-width: 767px) {
    .category-box .category-box-thumb {
        min-height: 200px;
    }

        .category-box .category-box-thumb img {
            min-height: 200px;
        }
}

.category-box .category-box-title {
    padding: 1.25rem 1.75rem;
    color: #fff;
    font-size: 1.375rem;
    margin-bottom: 0;
    background-color: rgba(42, 128, 185, 0.8);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s;
    min-height: 94px;
}

@media screen and (max-width: 991px) {
    .category-box .category-box-title {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .category-box .category-box-title {
        font-size: 1rem;
        padding: 1rem;
    }
}

.category-box:hover .category-box-title {
    min-height: 130px;
}

/*event-box*/
.event-box {
    padding: 1rem 1.5rem;
    background-color: #edf1f7;
    height: 100%;
}

    .event-box a {
        color: #1A1C1D;
        text-decoration: none;
    }

        .event-box a:hover {
            color: #2A80B9;
        }

    .event-box .event-title {
        font-size: 1.375rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

@media screen and (max-width: 991px) {
    .event-box .event-title {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .event-box .event-title {
        font-size: 1rem;
    }
}

.event-box .event-info ul {
    padding: 0;
    margin: 0;
}

    .event-box .event-info ul li {
        display: flex;
        margin-top: 0.75rem;
    }

        .event-box .event-info ul li i {
            font-size: 1.5rem;
            width: 1.5rem;
            margin-right: 0.5rem;
            color: #2A80B9;
        }

        .event-box .event-info ul li span {
            width: calc(100% - 2rem);
        }

.section {
    padding: 50px 0;
}

@media screen and (max-width: 991px) {
    .section {
        padding: 35px 0;
    }
}

.section-lg {
    padding: 80px 0;
}

@media screen and (max-width: 991px) {
    .section-lg {
        padding: 40px 0;
    }
}

.section-background {
    background-size: cover;
}

.section-gray {
    background-color: #edf1f7;
}

.section-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

    .section-heading .section-title {
        color: #FE7B05;
        font-size: 2rem;
        font-weight: bold;
        position: relative;
        margin: 0;
    }

        .section-heading .section-title.section-title-md {
            font-size: 1.5rem;
        }

@media screen and (max-width: 1200px) {
    .section-heading .section-title {
        font-size: 1.75rem;
    }

        .section-heading .section-title.section-title-md {
            font-size: 1.25rem;
        }
}

@media screen and (max-width: 767px) {
    .section-heading .section-title {
        font-size: 1.5rem;
    }

        .section-heading .section-title.section-title-md {
            font-size: 1rem;
        }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
    .section-header {
        font-size: 0.875rem;
    }

        .section-header .tab-simple a {
            margin: 0 0.5rem;
        }
}

.section-header .section-header-title {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .section-header .section-header-title .title-icon {
        font-size: 2rem;
        margin-right: 0.75rem;
        display: flex;
    }

    .section-header .section-header-title .title-text {
        font-size: 1.5rem;
        font-weight: 500;
        margin: 0;
    }

@media screen and (max-width: 991px) {
    .section-header .section-header-title .title-text {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .section-header .section-header-title .title-text {
        font-size: 1rem;
    }
}

.section-header .section-header-action .btn-transparent, .section-header .section-header-action .navbar-toggler {
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
}

@media screen and (max-width: 767px) {
    .section-header .section-header-action .btn-transparent, .section-header .section-header-action .navbar-toggler {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 767px) {
    .section-header .section-header-action {
        overflow: auto;
        max-width: 100%;
    }
}

.section-header .nav {
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
    .section-header .nav {
        flex-wrap: nowrap;
    }

        .section-header .nav .nav-link {
            white-space: nowrap;
        }
}

.section-header.section-header-md {
    padding: 0.875rem 1rem;
    border-radius: 0.25rem;
}

    .section-header.section-header-md .section-header-title .title-text {
        font-size: 1.25rem;
    }

@media screen and (max-width: 991px) {
    .section-header.section-header-md .section-header-title .title-text {
        font-size: 1rem;
    }
}

.section-header.section-two-row {
    flex-direction: column;
    align-items: flex-start;
}

    .section-header.section-two-row .section-header-title .title-text {
        font-size: 1.25rem;
    }

@media screen and (max-width: 991px) {
    .section-header.section-two-row .section-header-title .title-text {
        font-size: 1rem;
    }
}

.section-header.section-two-row .tab-simple a:first-child {
    margin-left: 0;
}

.section-header.bg-gray {
    background-color: #f1f3f5;
}

.section-header.bg-orange {
    background-color: #ff9230;
    color: #fff;
}

.tab-simple a {
    color: #666666;
    padding: 0.25rem 0;
    margin: 0 1rem;
}

    .tab-simple a.active {
        color: #FE7B05;
        border-bottom: 2px solid #FE7B05;
    }

.profession-box {
    background-color: rgba(254, 123, 5, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 0.5rem;
    text-decoration: none;
    padding: 1rem;
}

    .profession-box ._icon {
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        border-radius: 50%;
        margin-bottom: 1rem;
    }

        .profession-box ._icon img {
            width: 1.5rem;
            height: 1.5rem;
            object-fit: cover;
        }

    .profession-box ._text {
        text-align: center;
    }

        .profession-box ._text ._title {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
            color: #1A1C1D;
        }

        .profession-box ._text ._total-job {
            font-weight: 500;
        }

.slider-featured-profession {
    margin-left: -1rem;
    margin-right: -1rem;
}

@media screen and (max-width: 1200px) {
    .slider-featured-profession {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .slider-featured-profession {
        margin-left: -0.625rem;
        margin-right: -0.625rem;
    }
}

.slider-featured-profession .slider-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media screen and (max-width: 1200px) {
    .slider-featured-profession .slider-item {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .slider-featured-profession .slider-item {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
    background-color: #FE7B05;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    z-index: 1;
}

    .slick-slider .slick-prev:before,
    .slick-slider .slick-next:before {
        font-size: 1.5rem;
    }

.slick-slider .slick-prev {
    left: -2.75rem;
}

    .slick-slider .slick-prev:before {
        content: "\e91e";
    }

.slick-slider .slick-next {
    right: -2.75rem;
}

    .slick-slider .slick-next:before {
        content: "\e965";
    }

.slick-slider.hover-show-nav .slick-prev,
.slick-slider.hover-show-nav .slick-next {
    opacity: 0;
    transition: all 0.2s;
}

.slick-slider.hover-show-nav:hover .slick-prev,
.slick-slider.hover-show-nav:hover .slick-next {
    opacity: 1;
}

@media screen and (max-width: 1440px) {
    .slick-slider .slick-prev {
        left: 0;
    }

    .slick-slider .slick-next {
        right: 0;
    }
}

@media screen and (max-width: 991px) {
    .slick-slider .slick-prev {
        left: 0;
    }

    .slick-slider .slick-next {
        right: 0;
    }
}

.card-general {
    border: none;
}

    .card-general .card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        min-height: 3rem;
        color: #fff;
        border-bottom: none;
    }

        .card-general .card-header .card-title {
            display: flex;
            align-items: center;
            font-size: 1rem;
            margin-bottom: 0;
        }

            .card-general .card-header .card-title img {
                width: 32px;
                height: 32px;
                object-fit: cover;
                margin-right: 0.5rem;
            }

        .card-general .card-header a.view-more {
            font-size: 0.875rem;
            text-decoration: underline;
            color: #fff;
        }

    .card-general .card-body {
        padding: 0;
    }

.top-company {
    margin-left: -1rem;
    margin-right: -1rem;
}

@media screen and (max-width: 1200px) {
    .top-company {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .top-company {
        margin-left: -0.625rem;
        margin-right: -0.625rem;
    }
}

.top-company .slider-item {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media screen and (max-width: 1200px) {
    .top-company .slider-item {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .top-company .slider-item {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}

.slider-news,
.slider-research {
    margin-left: -1rem;
    margin-right: -1rem;
}

@media screen and (max-width: 1200px) {
    .slider-news,
    .slider-research {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .slider-news,
    .slider-research {
        margin-left: -0.625rem;
        margin-right: -0.625rem;
    }
}

.slider-news .slider-item,
.slider-research .slider-item {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media screen and (max-width: 1200px) {
    .slider-news .slider-item,
    .slider-research .slider-item {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media screen and (max-width: 991px) {
    .slider-news .slider-item,
    .slider-research .slider-item {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }
}

.box-job-company {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 2px solid #999999;
}

    .box-job-company .job-logo {
        min-width: 3rem;
        width: 3rem;
        margin-right: 1rem;
    }

        .box-job-company .job-logo img {
            width: 3rem;
            height: 3rem;
            object-fit: cover;
            border-radius: 0.25rem;
            border: 1px solid #F1F3F5;
            display: flex;
            margin-bottom: 0.25rem;
            overflow: hidden;
            object-fit: contain;
            background: #ffffff;
        }

        .box-job-company .job-logo .job-label {
            width: 3rem;
            height: 1.25rem;
            font-size: 0.875rem;
            color: #fff;
            text-transform: uppercase;
            padding: 0;
            line-height: 1.25rem;
        }

    .box-job-company .job-content {
        width: calc(100% - 4rem);
    }

        .box-job-company .job-content .company-info {
            position: relative;
            padding-right: 2.5rem;
        }

            .box-job-company .job-content .company-info .btn-like {
                position: absolute;
                right: 0.25rem;
                top: 0.25rem;
            }

            .box-job-company .job-content .company-info .company-name {
                margin-bottom: 0.5rem;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

                .box-job-company .job-content .company-info .company-name a {
                    color: #1A1C1D;
                    font-size: 1.25rem;
                    font-weight: bold;
                    text-decoration: none;
                }

                    .box-job-company .job-content .company-info .company-name a:hover {
                        color: #2A80B9;
                    }

            .box-job-company .job-content .company-info .localtion {
                font-size: 0.875rem;
                margin-bottom: 0.5rem;
            }

                .box-job-company .job-content .company-info .localtion i {
                    font-size: 1rem;
                }

        .box-job-company .job-content .job-company-info ul {
            display: flex;
        }

            .box-job-company .job-content .job-company-info ul li {
                flex: 1;
            }

                .box-job-company .job-content .job-company-info ul li p {
                    margin: 0;
                }

        .box-job-company .job-content .job-lists .job-list-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            flex-wrap: wrap;
        }

            .box-job-company .job-content .job-lists .job-list-item:nth-child(odd) {
                background-color: #edf1f7;
            }

            .box-job-company .job-content .job-lists .job-list-item .job-title {
                width: 66%;
            }

                .box-job-company .job-content .job-lists .job-list-item .job-title a {
                    text-decoration: none;
                }

                    .box-job-company .job-content .job-lists .job-list-item .job-title a:hover {
                        text-decoration: underline;
                    }

            .box-job-company .job-content .job-lists .job-list-item ._salary,
            .box-job-company .job-content .job-lists .job-list-item ._date {
                width: 17%;
            }

                .box-job-company .job-content .job-lists .job-list-item ._salary i,
                .box-job-company .job-content .job-lists .job-list-item ._date i {
                    color: #F1F3F5;
                    font-size: 1rem;
                    margin-right: 0.125rem;
                }

@media screen and (max-width: 991px) {
    .box-job-company .job-content .job-lists .job-list-item {
        padding: 0.5rem;
    }

        .box-job-company .job-content .job-lists .job-list-item .job-title {
            width: 100%;
            margin-bottom: 0.25rem;
        }

        .box-job-company .job-content .job-lists .job-list-item ._salary,
        .box-job-company .job-content .job-lists .job-list-item ._date {
            width: 50%;
        }
}

.box-job-small {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ffffff;
    border-bottom: 1px solid #999999;
}

    .box-job-small:last-child {
        border-bottom: none;
    }

    .box-job-small .job-logo {
        min-width: 3rem;
        width: 3rem;
        margin-right: 1rem;
    }

        .box-job-small .job-logo img {
            width: 3rem;
            height: 3rem;
            object-fit: cover;
            border-radius: 0.25rem;
            border: 1px solid #F1F3F5;
            display: flex;
            margin-bottom: 0.25rem;
            overflow: hidden;
            object-fit: contain;
            background: #ffffff;
        }

        .box-job-small .job-logo .job-label {
            width: 3rem;
            height: 1.25rem;
            font-size: 0.875rem;
            color: #fff;
            text-transform: uppercase;
            padding: 0;
            line-height: 1.25rem;
        }

    .box-job-small .job-content {
        width: calc(100% - 4rem);
    }

        .box-job-small .job-content .job-info .job-name {
            margin-bottom: 0.5rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            font-size: 1rem;
            font-weight: bold;
        }

            .box-job-small .job-content .job-info .job-name a {
                color: #1A1C1D;
                font-size: 1rem;
                font-weight: bold;
                text-decoration: none;
            }

                .box-job-small .job-content .job-info .job-name a:hover {
                    color: #2A80B9;
                }

        .box-job-small .job-content .job-info .job-company {
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            display: block;
            text-decoration: none;
        }

            .box-job-small .job-content .job-info .job-company:hover {
                text-decoration: underline;
                color: #2A80B9;
            }

        .box-job-small .job-content .job-info-detail {
            display: flex;
            flex-wrap: wrap;
        }

            .box-job-small .job-content .job-info-detail ._salary {
                white-space: nowrap;
            }

            .box-job-small .job-content .job-info-detail ._salary,
            .box-job-small .job-content .job-info-detail ._date {
                width: 50%;
                font-size: 0.75rem;
            }

                .box-job-small .job-content .job-info-detail ._salary i,
                .box-job-small .job-content .job-info-detail ._date i {
                    color: #F1F3F5;
                    font-size: 1rem;
                    margin-right: 0.125rem;
                }

@media screen and (max-width: 767px) {
    .box-job-small .job-content .job-info-detail ._salary,
    .box-job-small .job-content .job-info-detail ._date {
        margin-right: 0;
        margin-top: 0.5rem;
    }
}

.box-job-md {
    display: flex;
    justify-content: space-between;
    background-color: #F1F3F5;
    border: 1px solid #F1F3F5;
    border-radius: 0.25rem;
}

@media screen and (max-width: 991px) {
    .box-job-md {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .box-job-md {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

.box-job-md .job-logo {
    min-width: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0.25rem 0 0 0.25rem;
}

@media screen and (max-width: 991px) {
    .box-job-md .job-logo {
        min-width: 60px;
        width: 60px;
        margin: 0.75rem 0.75rem 0;
    }
}

@media screen and (max-width: 767px) {
    .box-job-md .job-logo {
        margin: 0;
        min-width: 80px;
        width: 80px;
    }
}

.box-job-md .job-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.25rem;
    display: flex;
    overflow: hidden;
    object-fit: contain;
    padding: 1rem;
}

@media screen and (max-width: 991px) {
    .box-job-md .job-logo img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        padding: 0.25rem;
        object-fit: contain;
    }
}

@media screen and (max-width: 767px) {
    .box-job-md .job-logo img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        padding: 0.5rem;
        object-fit: contain;
    }
}

.box-job-md .job-logo .job-label {
    width: 3rem;
    height: 1.25rem;
    font-size: 0.875rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    line-height: 1.25rem;
}

.box-job-md .job-content {
    width: calc(100% - 100px);
    padding: 0.5rem 1rem;
}

@media screen and (max-width: 991px) {
    .box-job-md .job-content {
        width: calc(100%);
        padding: 0.5rem 0.75rem;
    }
}

.box-job-md .job-content .job-info .job-name {
    margin-bottom: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A1C1D;
    font-size: 1.125rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .box-job-md .job-content .job-info .job-name {
        margin-bottom: 0.25rem;
    }
}

.box-job-md .job-content .job-info .job-name i {
    font-size: 1.75rem;
}

.box-job-md .job-content .job-info .job-name a {
    color: #1A1C1D;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 991px) {
    .box-job-md .job-content .job-info .job-name a {
        font-size: 0.875rem;
    }
}

.box-job-md .job-content .job-info .job-name a:hover {
    color: #2A80B9;
}

.box-job-md .job-content .job-info .job-company {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #1A1C1D;
    display: block;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .box-job-md .job-content .job-info .job-company {
        margin-bottom: 0.25rem;
    }
}

.box-job-md .job-content .job-info .job-company:hover {
    text-decoration: underline;
    color: #2A80B9;
}

@media screen and (max-width: 991px) {
    .box-job-md .job-content .job-info .job-company {
        font-size: 0.75rem;
    }
}

.box-job-md .job-content .job-info-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .box-job-md .job-content .job-info-detail ._salary {
        white-space: nowrap;
    }

    .box-job-md .job-content .job-info-detail ._salary,
    .box-job-md .job-content .job-info-detail ._date {
        width: 50%;
        font-size: 0.75rem;
    }

        .box-job-md .job-content .job-info-detail ._salary i,
        .box-job-md .job-content .job-info-detail ._date i {
            color: #2A80B9;
            font-size: 1rem;
            margin-right: 0.25rem;
        }

@media screen and (max-width: 767px) {
    .box-job-md .job-content .job-info-detail ._salary,
    .box-job-md .job-content .job-info-detail ._date {
        margin-right: 0;
        margin-top: 0.25rem;
    }
}

.box-job-md.job-hot {
    border-color: #FFAC30;
    background-color: #FFF4EB;
}

    .box-job-md.job-hot .job-content .job-info .job-name a {
        color: #FE7B05;
    }

.box-job-horizontal {
    display: flex;
    justify-content: space-between;
    background-color: #F1F3F5;
    border: 1px solid #F1F3F5;
    border-radius: 0.25rem;
    position: relative;
}

    .box-job-horizontal .label-vip {
        width: 52px;
        height: 52px;
        background-image: url(../images/vip-label.svg);
        background-repeat: no-repeat;
        background-size: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

@media screen and (max-width: 991px) {
    .box-job-horizontal {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .box-job-horizontal {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

.box-job-horizontal .job-logo {
    min-width: 116px;
    width: 116px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0.25rem 0 0 0.25rem;
}

@media screen and (max-width: 991px) {
    .box-job-horizontal .job-logo {
        min-width: 60px;
        width: 60px;
        margin: 0.75rem 0.75rem 0;
    }
}

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-logo {
        margin: 0;
        min-width: 80px;
        width: 80px;
    }
}

.box-job-horizontal .job-logo img {
    width: 116px;
    height: 116px;
    object-fit: cover;
    border-radius: 0.25rem;
    display: flex;
    overflow: hidden;
    object-fit: contain;
    padding: 1rem;
}

@media screen and (max-width: 991px) {
    .box-job-horizontal .job-logo img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        padding: 0.25rem;
        object-fit: contain;
    }
}

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-logo img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        padding: 0.5rem;
        object-fit: contain;
    }
}

.box-job-horizontal .job-logo .job-label {
    width: 3rem;
    height: 1.25rem;
    font-size: 0.875rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    line-height: 1.25rem;
}

.box-job-horizontal .job-content {
    width: calc(100% - 116px);
    padding: 0.875rem 1rem;
}

@media screen and (max-width: 991px) {
    .box-job-horizontal .job-content {
        width: calc(100%);
        padding: 0.5rem 0.75rem;
    }
}

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-content {
        position: relative;
        padding-bottom: 40px;
    }
}

.box-job-horizontal .job-content .job-info .job-name {
    margin-bottom: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #1A1C1D;
    font-size: 1.125rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-content .job-info .job-name {
        margin-bottom: 0.25rem;
    }
}

.box-job-horizontal .job-content .job-info .job-name a {
    color: #1A1C1D;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 991px) {
    .box-job-horizontal .job-content .job-info .job-name a {
        font-size: 0.875rem;
    }
}

.box-job-horizontal .job-content .job-info .job-name a:hover {
    color: #2A80B9;
}

.box-job-horizontal .job-content .job-info .job-company {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #666666;
    display: block;
    text-decoration: none;
}

    .box-job-horizontal .job-content .job-info .job-company:hover {
        text-decoration: underline;
        color: #2A80B9;
    }

@media screen and (max-width: 991px) {
    .box-job-horizontal .job-content .job-info .job-company {
        font-size: 0.75rem;
    }
}

.box-job-horizontal .job-content .job-content-top {
    display: flex;
    justify-content: space-between;
}

    .box-job-horizontal .job-content .job-content-top .job-action {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

        .box-job-horizontal .job-content .job-content-top .job-action .btn-count-job {
            height: auto;
            min-height: 2rem;
        }

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-content .job-content-top .job-action {
        position: absolute;
        bottom: 8px;
        left: 8px;
    }
}

.box-job-horizontal .job-content .job-content-top .job-action .job-type {
    color: #666666;
    font-size: 0.875rem;
    padding: 7px 12px;
    background-color: #fff;
    border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-content .job-content-top .job-action .job-type {
        font-size: 0.75rem;
    }
}

.box-job-horizontal .job-content .job-content-top .job-action .save-job {
    background-color: #fff;
    color: #b5c3d2;
    font-size: 1.125rem;
    box-shadow: none;
}

    .box-job-horizontal .job-content .job-content-top .job-action .save-job.saved {
        color: #ec216a;
    }

.box-job-horizontal .job-content .job-info-detail {
    display: flex;
    justify-content: space-between;
    color: #666666;
    flex-wrap: wrap;
}

    .box-job-horizontal .job-content .job-info-detail ._left {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .box-job-horizontal .job-content .job-info-detail ._right {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-content .job-info-detail ._right {
        justify-content: flex-start;
    }
}

.box-job-horizontal .job-content .job-info-detail ._salary {
    white-space: nowrap;
}

.box-job-horizontal .job-content .job-info-detail ._salary,
.box-job-horizontal .job-content .job-info-detail ._date,
.box-job-horizontal .job-content .job-info-detail ._location,
.box-job-horizontal .job-content .job-info-detail ._exp {
    font-size: 0.875rem;
    margin-right: 0.75rem;
}

@media screen and (max-width: 767px) {
    .box-job-horizontal .job-content .job-info-detail ._salary,
    .box-job-horizontal .job-content .job-info-detail ._date,
    .box-job-horizontal .job-content .job-info-detail ._location,
    .box-job-horizontal .job-content .job-info-detail ._exp {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
}

.box-job-horizontal .job-content .job-info-detail ._salary i,
.box-job-horizontal .job-content .job-info-detail ._date i,
.box-job-horizontal .job-content .job-info-detail ._location i,
.box-job-horizontal .job-content .job-info-detail ._exp i {
    color: #2A80B9;
    font-size: 1rem;
    margin-right: 0.375rem;
}

.box-job-horizontal.job-hot {
    border-color: #FFAC30;
    background-color: #FFF4EB;
}

    .box-job-horizontal.job-hot .job-content .job-info .job-name a {
        color: #FE7B05;
    }

.box-job-horizontal.job-vip .job-content .job-info .job-name a {
    color: #FE7B05;
}

    .box-job-horizontal.job-vip .job-content .job-info .job-name a:hover {
        color: #f15700;
    }

.box-job-horizontal.box-job-count .job-content .job-content-top .job-action {
    align-items: center;
    min-width: 185px;
    justify-content: flex-end;
}

@media screen and (max-width: 991px) {
    .box-job-horizontal.box-job-count .job-content .job-content-top .job-action {
        align-items: flex-start;
    }
}

.box-job-horizontal.box-job-count .job-content .job-meta .text-icon {
    font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
    .box-job-horizontal.box-job-count .job-content .job-meta .text-icon {
        font-size: 0.75rem;
    }
}

.company-box {
    background-color: #fff;
    border: 1px solid #F1F3F5;
    padding: 1rem;
    border-radius: 0.5rem;
}

    .company-box a {
        text-decoration: none;
    }

    .company-box .company-logo {
        padding-bottom: 0.75rem;
        margin-bottom: 0.75rem;
        border-bottom: 1px solid #F1F3F5;
    }

        .company-box .company-logo img {
            width: 100%;
            height: 50px;
            object-fit: contain;
        }

    .company-box .view-detail {
        text-align: center;
        justify-content: center;
    }

        .company-box .view-detail i {
            justify-content: center;
            min-width: 14px;
            width: 14px;
            min-height: 14px;
            height: 14px;
            font-size: 8px;
            border-radius: 50%;
            margin-left: 0.5rem;
            transition: all 0.2s;
        }

    .company-box:hover .view-detail i {
        margin-left: 1rem;
        margin-right: -0.5rem;
    }

.list-general {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list-general li {
        padding: 1rem 0;
        border-bottom: 1px solid #999999;
        font-size: 0.875rem;
    }

        .list-general li a {
            text-decoration: none;
            color: #1A1C1D;
            line-height: 1;
        }

        .list-general li:last-child {
            border-bottom: none;
        }

    .list-general.border-dashed li {
        padding: 0.75rem 0;
        font-size: 0.875rem;
        border-bottom: 1px dashed #C6D5E4;
    }

        .list-general.border-dashed li a {
            color: #2A80B9;
            line-height: 1;
        }

.featured-employer-box {
    position: relative;
}

    .featured-employer-box .background img {
        width: 100%;
        border-radius: 0.5rem;
        height: 310px;
        min-height: 300px;
        object-fit: cover;
    }

@media screen and (max-width: 991px) {
    .featured-employer-box .background img {
        height: 200px;
        min-height: 200px;
    }
}

.featured-employer-box .employer-content {
    position: relative;
    top: -90px;
    left: 0;
    width: 84%;
    margin: 0 auto;
    margin-bottom: -30px;
    display: flex;
}

@media screen and (max-width: 991px) {
    .featured-employer-box .employer-content {
        width: calc(100% - 30px);
    }
}

.featured-employer-box .employer-content .employer-content-box {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #1A1C1D;
    width: 100%;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
}

    .featured-employer-box .employer-content .employer-content-box .employer-info {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

@media screen and (max-width: 767px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info {
        flex-direction: column;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._logo {
    display: block;
    width: 144px;
    margin-right: 1rem;
}

@media screen and (max-width: 991px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._logo {
        width: 100px;
    }
}

@media screen and (max-width: 767px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._logo {
        margin-bottom: 1rem;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._logo img {
    width: 144px;
    height: 144px;
    object-fit: cover;
    object-fit: contain;
    border-radius: 0.25rem;
}

@media screen and (max-width: 991px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._logo img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._content {
    width: calc(100% - 144px - 1rem);
    color: #1A1C1D;
    position: relative;
    padding-right: 130px;
}

@media screen and (max-width: 991px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._content {
        width: calc(100% - 100px - 1rem);
    }
}

@media screen and (max-width: 767px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._content {
        width: 100%;
        padding: 0;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._content .btn {
    border: none;
    position: absolute;
    right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    top: 50%;
    transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._content .btn {
        display: none;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._content ._title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

    .featured-employer-box .employer-content .employer-content-box .employer-info ._content ._title a {
        display: block;
        text-decoration: none;
        color: inherit;
    }

@media screen and (max-width: 991px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._content ._title {
        font-size: 1.125rem;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._content ._content-list-job {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
    .featured-employer-box .employer-content .employer-content-box .employer-info ._content ._content-list-job {
        font-size: 0.875rem;
    }
}

.featured-employer-box .employer-content .employer-content-box .employer-info ._content ._content-list-job li {
    width: 50%;
}

    .featured-employer-box .employer-content .employer-content-box .employer-info ._content ._content-list-job li a {
        text-decoration: none;
        font-weight: 500;
    }

.featured-employer-box .employer-content .employer-content-box .employer-info ._content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.featured-employer-box .employer-content .employer-content-box .employer-description {
    margin-bottom: 2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.featured-employer .slick-prev {
    left: -40px;
    top: 155px;
    height: 60px;
    border-radius: 0.5rem 0 0 0.5rem;
}

@media screen and (max-width: 1440px) {
    .featured-employer .slick-prev {
        left: 0px;
        border-radius: 0 0.5rem 0.5rem 0;
    }
}

.featured-employer .slick-next {
    right: -40px;
    top: 155px;
    height: 60px;
    border-radius: 0 0.5rem 0.5rem 0;
}

@media screen and (max-width: 1440px) {
    .featured-employer .slick-next {
        right: 0px;
        border-radius: 0.5rem 0 0 0.5rem;
    }
}

.text-gradient-orange, .btn-orange-light span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-job-hot .card-body,
.card-job-new .card-body {
    max-height: 800px;
}

.card-job-localtion,
.card-job-profession {
    background-color: #f1f3f5;
}

    .card-job-localtion .section-header,
    .card-job-profession .section-header {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-bottom: 0;
    }

@media screen and (max-width: 991px) {
    .card-job-localtion .section-header,
    .card-job-profession .section-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.card-job-localtion .card-body,
.card-job-profession .card-body {
    padding: 0 1.5rem 1.5rem;
}

@media screen and (max-width: 991px) {
    .card-job-localtion .card-body,
    .card-job-profession .card-body {
        padding: 0 1rem 1.5rem;
    }
}

.card-job-localtion .scrollbar-small, .card-job-localtion .card-general .card-body, .card-general .card-job-localtion .card-body,
.card-job-profession .scrollbar-small,
.card-job-profession .card-general .card-body,
.card-general .card-job-profession .card-body {
    max-height: 400px;
}

    .card-job-localtion .scrollbar-small .list-general, .card-job-localtion .card-general .card-body .list-general, .card-general .card-job-localtion .card-body .list-general,
    .card-job-profession .scrollbar-small .list-general,
    .card-job-profession .card-general .card-body .list-general,
    .card-general .card-job-profession .card-body .list-general {
        padding-top: 0 !important;
    }

.card-job-profession {
    background-color: #f1f3f5;
}

    .card-job-profession .scrollbar-small, .card-job-profession .card-general .card-body, .card-general .card-job-profession .card-body {
        max-height: 200px;
    }

.card-job-hight-salary .card-body {
    max-height: 580px;
}

/************* begin about page **********/
.page-header {
    position: relative;
}

    .page-header .page-header-background img {
        width: 100%;
    }

    .page-header .page-header-title {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

        .page-header .page-header-title .page-header-text {
            background-color: rgba(42, 128, 185, 0.8);
            padding: 1.25rem 1.5rem;
        }

            .page-header .page-header-title .page-header-text h1 {
                margin-bottom: 0;
                font-weight: bold;
            }

.page-main-container {
    padding-bottom: 1.5rem;
}

    .page-main-container .page-sidebar {
        padding-top: 60px;
    }

        .page-main-container .page-sidebar .menu-sidebar li {
            border-bottom: 1px solid #1C71AA;
        }

            .page-main-container .page-sidebar .menu-sidebar li:first-child {
                border-top: 1px solid #1C71AA;
            }

            .page-main-container .page-sidebar .menu-sidebar li a {
                padding: 1rem 0.5rem;
                color: #1A1C1D;
                font-weight: 600;
                text-decoration: none;
                display: block;
                font-size: 1rem;
                transition: all 0.2s;
            }

                .page-main-container .page-sidebar .menu-sidebar li a:hover {
                    background-color: rgba(42, 128, 185, 0.8);
                    color: #fff;
                }

            .page-main-container .page-sidebar .menu-sidebar li.active {
                border-color: #2A80B9;
            }

                .page-main-container .page-sidebar .menu-sidebar li.active a {
                    background-color: #2A80B9;
                    color: #fff;
                }

    .page-main-container .breadcrumb {
        margin-bottom: 0;
    }

    .page-main-container .page-content .section-heading {
        margin-top: 0.25rem;
    }

        .page-main-container .page-content .section-heading .section-title {
            text-transform: none;
        }

/************* end about page ***********/
/*********** begin faculty ***********/
.post-box-simple .post-title {
    color: #1A1C1D;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
}

    .post-box-simple .post-title:hover {
        color: #2A80B9;
        text-decoration: underline;
    }

.post-box-simple .post-time {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    font-family: "Roboto";
}

    .post-box-simple .post-time i {
        font-size: 1.5rem;
        color: #2A80B9;
        margin-right: 0.5rem;
    }

/*********** end faculty ***********/
/*********** begin section search ***********/
.section-search {
    position: relative;
}

/*********** begin section search ***********/
.page-main-content {
    padding: 1.5rem 0;
}

.sort-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .sort-box p {
        font-weight: 500;
    }

    .sort-box .form-control {
        width: auto;
        border: none;
    }

.list-jobs-search .box-job-small {
    border-bottom: 2px solid #edf1f7;
}

    .list-jobs-search .box-job-small:last-child {
        border: none;
    }

    .list-jobs-search .box-job-small .job-content {
        padding-right: 2rem;
        position: relative;
    }

        .list-jobs-search .box-job-small .job-content .btn-like {
            position: absolute;
            right: -0.25rem;
            top: 50%;
            transform: translate(0, -50%);
        }

        .list-jobs-search .box-job-small .job-content .job-info-detail ._salary,
        .list-jobs-search .box-job-small .job-content .job-info-detail ._date {
            width: auto;
            margin-right: 1.25rem;
            white-space: nowrap;
        }

.list-jobs-search .box-job-apply .job-content {
    padding-right: 160px;
}

    .list-jobs-search .box-job-apply .job-content .btn-apply-job {
        position: absolute;
        right: -0.25rem;
        top: 50%;
        transform: translate(0, -50%);
    }

@media screen and (max-width: 991px) {
    .list-jobs-search .box-job-apply .job-content {
        padding-right: 0;
    }

        .list-jobs-search .box-job-apply .job-content .btn-apply-job {
            position: relative;
            right: 0;
            top: 0;
            transform: unset;
            width: 100%;
            margin-top: 1rem;
        }
}

.pagination-total-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .pagination-total-box .paginations {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
        margin-left: auto;
    }

.card-widget .card-body {
    max-height: 326px;
}

.table-of-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .table-of-content ul li {
        margin-bottom: 0.125rem;
    }

        .table-of-content ul li a {
            padding: 0.5rem;
            border-left: 4px solid transparent;
            color: #1A1C1D;
            display: flex;
            width: 100%;
            font-size: 0.875rem;
            text-decoration: none;
        }

        .table-of-content ul li.current > a {
            border-left-color: #FE7B05;
            color: #dd7415;
            background-color: #ffe3ca;
        }

        .table-of-content ul li ul {
            padding-left: 1rem;
        }

.table-of-content-2 {
    background-color: #f2f9ff;
    padding: 1.25rem;
    border-radius: 0.25rem;
}

    .table-of-content-2 ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .table-of-content-2 ul li {
            margin-bottom: 0.5rem;
        }

            .table-of-content-2 ul li a {
                color: #2A80B9;
                display: flex;
                width: 100%;
                font-size: 1rem;
                text-decoration: none;
                font-weight: bold;
            }

            .table-of-content-2 ul li.current > a {
                color: #2A80B9;
            }

            .table-of-content-2 ul li ul {
                padding-left: 0.75rem;
                margin-top: 0.5rem;
            }

                .table-of-content-2 ul li ul li a {
                    color: #666666;
                    font-size: 0.875rem;
                    font-weight: normal;
                }

.detail-content .button-toggle {
    color: #2A80B9;
    height: auto;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

    .detail-content .button-toggle i {
        margin-right: 0.5rem;
        transform: rotate(0deg);
        transition: all 0.2s;
        display: block;
    }

    .detail-content .button-toggle span {
        text-decoration: underline;
    }

    .detail-content .button-toggle .text-less {
        display: none;
    }

    .detail-content .button-toggle .text-more {
        display: block;
    }

    .detail-content .button-toggle.active .text-less {
        display: block;
    }

    .detail-content .button-toggle.active .text-more {
        display: none;
    }

    .detail-content .button-toggle.active i {
        transform: rotate(180deg);
        transition: all 0.2s;
    }

.detail-content .entry-content {
    height: 750px;
    overflow: hidden;
}

    .detail-content .entry-content.active {
        height: auto;
    }

.detail-content .table-of-content {
    position: sticky;
    top: 3.5rem;
}

@media screen and (max-width: 767px) {
    .detail-content .detail-content-box .detail-entry-content {
        order: 0;
    }

    .detail-content .detail-content-box .detail-sidebar {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

.box-job-heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
    .box-job-heading {
        padding: 20px;
    }
}

@media screen and (max-width: 991px) {
    .box-job-heading {
        padding: 1rem;
        flex-direction: column;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .box-job-heading {
        margin-bottom: 3.5rem;
    }
}

.box-job-heading .job-logo {
    min-width: 10rem;
    width: 10rem;
    margin-right: 1.5rem;
}

    .box-job-heading .job-logo img {
        width: 10rem;
        height: 10rem;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #F1F3F5;
        display: flex;
        overflow: hidden;
        object-fit: contain;
        background: #ffffff;
        padding: 1rem;
    }

    .box-job-heading .job-logo .job-label {
        width: 100%;
        height: 1.25rem;
        font-size: 0.875rem;
        color: #fff;
        text-transform: uppercase;
        padding: 0;
        line-height: 1.25rem;
    }

@media screen and (max-width: 1200px) {
    .box-job-heading .job-logo {
        min-width: 5rem;
        width: 5rem;
        margin-right: 1rem;
    }

        .box-job-heading .job-logo img {
            width: 5rem;
            height: 5rem;
            object-fit: cover;
            margin-bottom: 0;
            padding: 0.5rem;
            object-fit: contain;
        }
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-logo {
        margin: 0 auto 1rem auto;
    }
}

@media screen and (max-width: 767px) {
    .box-job-heading .job-logo {
        margin: 0 auto 1rem auto;
        min-width: 5rem;
        width: 5rem;
    }

        .box-job-heading .job-logo img {
            width: 5rem;
            height: 5rem;
            object-fit: cover;
            object-fit: contain;
            margin-bottom: 0;
        }
}

.box-job-heading .job-content {
    width: calc(100% - 11.5rem);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .box-job-heading .job-content {
        width: calc(100% - 5rem);
    }

        .box-job-heading .job-content .text-icon,
        .box-job-heading .job-content .btn,
        .box-job-heading .job-content .badge {
            font-size: 0.875rem;
        }
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .box-job-heading .job-content {
        width: 100%;
        padding-top: 1.5rem;
    }
}

.box-job-heading .job-content .job-content-left {
    width: 50%;
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-left {
        width: 100%;
    }
}

.box-job-heading .job-content .job-content-right {
    width: calc(50% - 1.5rem);
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-right {
        width: 100%;
        flex-wrap: wrap;
    }
}

.box-job-heading .job-content .job-content-right .job-feature-label .btn {
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-right .job-feature-label {
        position: absolute;
        right: 0;
        top: 0;
    }
}

@media screen and (max-width: 991px) and (max-width: 767px) {
    .box-job-heading .job-content .job-content-right .job-feature-label {
        left: 0%;
        text-align: center;
    }
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-right .job-feature-label .btn {
        color: red;
        padding: 0;
        margin: 0;
        border-radius: 0;
        background-color: transparent;
        height: auto;
        line-height: 1;
    }
}

.box-job-heading .job-content .job-content-right .btn-save-job {
    background: #e9eef2;
    border-radius: 6px;
    color: #666666;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border: none;
}

    .box-job-heading .job-content .job-content-right .btn-save-job i {
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e7e7e7;
        background-color: #ffffff;
        font-size: 1.25rem;
        border-radius: 50%;
    }

    .box-job-heading .job-content .job-content-right .btn-save-job.saved i {
        color: #dc3545;
    }

.box-job-heading .job-content .job-content-right .btn-apply {
    height: 60px;
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-right ._left {
        width: 100%;
    }
}

.box-job-heading .job-content .job-content-right ._right {
    width: 200px;
    min-width: 180px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

    .box-job-heading .job-content .job-content-right ._right form .btn {
        width: 100%;
    }

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-right ._right {
        width: 100%;
        flex-direction: row;
    }

        .box-job-heading .job-content .job-content-right ._right .btn {
            width: calc(50% - 8px);
            height: 44px;
            padding-left: 6px;
            padding-right: 6px;
        }

        .box-job-heading .job-content .job-content-right ._right form {
            width: calc(50% - 8px);
            height: 44px;
            padding-left: 6px;
            padding-right: 6px;
        }

            .box-job-heading .job-content .job-content-right ._right form .btn {
                width: 100%;
            }
}

.box-job-heading .job-content .job-name .job-name-title {
    color: #2A80B9;
    text-decoration: none;
    margin-bottom: 0.25rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.25rem;
    font-weight: bold;
}

    .box-job-heading .job-content .job-name .job-name-title:hover {
        color: #FE7B05;
    }

@media screen and (max-width: 1200px) {
    .box-job-heading .job-content .job-name .job-name-title {
        font-size: 1.125rem;
    }
}

.box-job-heading .job-content .job-name .job-company {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    display: inherit;
    font-weight: 500;
    text-decoration: none;
    gap: 0.25rem;
}

@media screen and (max-width: 1200px) {
    .box-job-heading .job-content .job-name .job-company {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .box-job-heading .job-content .job-name {
        text-align: center;
    }
}

.box-job-heading .job-content .job-company {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #FE7B05;
}

@media screen and (max-width: 1200px) {
    .box-job-heading .job-content .job-company {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .box-job-heading .job-content .job-company {
        text-align: center;
    }
}

@media screen and (max-width: 1200px) {
    .box-job-heading .job-content .job-content-detail .text-icon {
        font-size: 0.875rem;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 991px) {
    .box-job-heading .job-content .job-content-detail {
        font-size: 0.875rem;
    }
}

.box-company-heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
    .box-company-heading {
        padding: 20px;
    }
}

@media screen and (max-width: 991px) {
    .box-company-heading {
        padding: 1rem;
        flex-direction: column;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .box-company-heading {
        margin-bottom: 3.5rem;
    }
}

.box-company-heading .company-logo {
    min-width: 10rem;
    width: 10rem;
    margin-right: 1.5rem;
}

    .box-company-heading .company-logo img {
        width: 10rem;
        height: 10rem;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid #F1F3F5;
        display: flex;
        overflow: hidden;
        object-fit: contain;
        background: #ffffff;
        padding: 1rem;
    }

@media screen and (max-width: 1200px) {
    .box-company-heading .company-logo {
        min-width: 5rem;
        width: 5rem;
        margin-right: 1rem;
    }

        .box-company-heading .company-logo img {
            width: 5rem;
            height: 5rem;
            object-fit: cover;
            margin-bottom: 0;
            padding: 0.5rem;
            object-fit: contain;
        }
}

@media screen and (max-width: 991px) {
    .box-company-heading .company-logo {
        margin: 0 auto 1rem auto;
    }
}

@media screen and (max-width: 767px) {
    .box-company-heading .company-logo {
        margin: 0 auto 1rem auto;
        min-width: 5rem;
        width: 5rem;
    }

        .box-company-heading .company-logo img {
            width: 5rem;
            height: 5rem;
            object-fit: cover;
            object-fit: contain;
            margin-bottom: 0;
        }
}

.box-company-heading .company-content {
    width: calc(100% - 11.5rem);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

@media screen and (max-width: 1200px) {
    .box-company-heading .company-content {
        width: calc(100% - 6rem);
    }

        .box-company-heading .company-content .text-icon,
        .box-company-heading .company-content .btn,
        .box-company-heading .company-content .badge {
            font-size: 0.875rem;
        }
}

@media screen and (max-width: 991px) {
    .box-company-heading .company-content {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .box-company-heading .company-content {
        width: 100%;
    }
}

.box-company-heading .company-content .company-content-left {
    width: calc(100% - 200px);
}

@media screen and (max-width: 991px) {
    .box-company-heading .company-content .company-content-left {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.box-company-heading .company-content .company-content-right {
    width: 185px;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

@media screen and (max-width: 991px) {
    .box-company-heading .company-content .company-content-right {
        width: 100%;
        flex-wrap: wrap;
    }
}

.box-company-heading .company-content .company-content-right .btn-follow {
    height: 60px;
    width: 100%;
    font-weight: bold;
}

@media screen and (max-width: 991px) {
    .box-company-heading .company-content .company-content-right .btn-follow {
        max-width: 500px;
        height: 44px;
        margin: 0 auto;
    }
}

.box-company-heading .company-content .company-name {
    margin-bottom: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 1.25rem;
}

@media screen and (max-width: 1200px) {
    .box-company-heading .company-content .company-name {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .box-company-heading .company-content .company-name {
        text-align: center;
    }
}

.box-company-heading .company-content .company-name a {
    color: #2A80B9;
    font-weight: bold;
    text-decoration: none;
}

    .box-company-heading .company-content .company-name a:hover {
        color: #FE7B05;
    }

.job-heading {
    position: relative;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .job-heading {
        margin-bottom: -30px;
    }
}

.job-heading .search-container {
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: transparent;
}

.job-heading .job-heading-banner {
    position: relative;
}

    .job-heading .job-heading-banner:after {
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(8, 32, 49, 0.8);
        position: absolute;
        z-index: 1;
    }

    .job-heading .job-heading-banner img {
        min-height: 320px;
        position: relative;
        z-index: 0;
        object-fit: cover;
    }

@media screen and (max-width: 991px) {
    .job-heading .job-heading-banner img {
        min-height: 340px;
    }
}

@media screen and (max-width: 767px) {
    .job-heading .job-heading-banner img {
        min-height: 380px;
    }
}

@media screen and (max-width: 574px) {
    .job-heading .job-heading-banner img {
        min-height: 500px;
    }
}

.job-heading .job-heading-content {
    position: relative;
    width: 100%;
    top: -110px;
    margin-bottom: -30px;
    left: 0;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .job-heading .job-heading-content {
        top: 20px;
        margin-bottom: -10px;
    }

        .job-heading .job-heading-content.is-fixed {
            position: fixed;
            left: 0;
            background: #ffffff;
            bottom: 0;
            z-index: 100;
            top: auto;
            box-shadow: none;
            margin: 0;
            animation-name: footerFixed;
            animation-duration: 0.3s;
        }

            .job-heading .job-heading-content.is-fixed .box-job-heading,
            .job-heading .job-heading-content.is-fixed .box-company-heading {
                box-shadow: none;
                padding-left: 0;
                padding-right: 0;
                margin: 0;
                box-shadow: none;
                align-items: center;
            }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content {
                    padding: 0;
                    max-width: 500px;
                    margin: 0 auto;
                }

                .job-heading .job-heading-content.is-fixed .box-company-heading .company-content .company-name {
                    margin-bottom: 0;
                }

            .job-heading .job-heading-content.is-fixed .job-logo,
            .job-heading .job-heading-content.is-fixed .job-content .job-content-left,
            .job-heading .job-heading-content.is-fixed .job-content .job-content-right ._left,
            .job-heading .job-heading-content.is-fixed .company-content .company-content-left,
            .job-heading .job-heading-content.is-fixed .company-logo {
                display: none;
            }
}

@media screen and (min-width: 992px) {
    .job-heading .job-heading-content.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        background: #ffffff;
        bottom: auto;
        z-index: 100;
        animation-name: headerFixed;
        animation-duration: 0.3s;
        box-shadow: 0 2px 6px 0 rgba(51, 51, 51, 0.2);
        display: flex;
        align-items: center;
        height: 120px;
    }

        .job-heading .job-heading-content.is-fixed .box-job-heading,
        .job-heading .job-heading-content.is-fixed .box-company-heading {
            padding: 1rem 0;
            border-radius: 0;
            box-shadow: none;
        }

            .job-heading .job-heading-content.is-fixed .box-job-heading .job-logo,
            .job-heading .job-heading-content.is-fixed .box-job-heading .company-logo,
            .job-heading .job-heading-content.is-fixed .box-company-heading .job-logo,
            .job-heading .job-heading-content.is-fixed .box-company-heading .company-logo {
                min-width: 4rem;
                width: 4rem;
                margin-right: 1rem;
            }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-logo img,
                .job-heading .job-heading-content.is-fixed .box-job-heading .company-logo img,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-logo img,
                .job-heading .job-heading-content.is-fixed .box-company-heading .company-logo img {
                    width: 4rem;
                    height: 4rem;
                    object-fit: cover;
                    margin-bottom: 0;
                    border-radius: 0.25rem;
                    overflow: hidden;
                    object-fit: contain;
                    background: #ffffff;
                    padding: 0.25rem;
                }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-logo .job-label,
                .job-heading .job-heading-content.is-fixed .box-job-heading .company-logo .job-label,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-logo .job-label,
                .job-heading .job-heading-content.is-fixed .box-company-heading .company-logo .job-label {
                    display: none;
                }

            .job-heading .job-heading-content.is-fixed .box-job-heading .job-content,
            .job-heading .job-heading-content.is-fixed .box-company-heading .job-content {
                width: calc(100% - 5rem);
            }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-left,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-left {
                    width: calc(100% - 400px);
                }

                    .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-left .job-company,
                    .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-left .job-company {
                        margin-bottom: 0;
                    }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-right,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-right {
                    width: 400px;
                }

                    .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-right ._right,
                    .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-right ._right {
                        width: 100%;
                        display: flex;
                        justify-content: space-between;
                        flex-direction: row;
                        align-items: center;
                    }

                        .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-right ._right .btn,
                        .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-right ._right .btn {
                            width: calc(50% - 8px);
                            height: 44px;
                        }

                        .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-right ._right form,
                        .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-right ._right form {
                            width: calc(50% - 8px);
                            height: 44px;
                        }

                            .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-right ._right form .btn,
                            .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-right ._right form .btn {
                                width: 100%;
                            }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-info-detail,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-info-detail {
                    display: none;
                }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-right ._left,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-right ._left {
                    display: none;
                }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-content-detail,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-content-detail {
                    display: none;
                }

                .job-heading .job-heading-content.is-fixed .box-job-heading .job-content .job-info .job-name,
                .job-heading .job-heading-content.is-fixed .box-company-heading .job-content .job-info .job-name {
                    font-size: 1.125rem;
                }

            .job-heading .job-heading-content.is-fixed .box-job-heading .job-action .btn,
            .job-heading .job-heading-content.is-fixed .box-company-heading .job-action .btn {
                margin-bottom: 0;
            }

            .job-heading .job-heading-content.is-fixed .box-job-heading .job-info .job-company,
            .job-heading .job-heading-content.is-fixed .box-company-heading .job-info .job-company {
                margin-bottom: 0;
            }

            .job-heading .job-heading-content.is-fixed .box-company-heading .company-content .company-name {
                margin-bottom: 0;
            }

        .job-heading .job-heading-content.is-fixed .box-company-heading {
            padding: 1rem 0;
            align-items: center;
        }

            .job-heading .job-heading-content.is-fixed .box-company-heading .company-content {
                align-items: center;
            }

            .job-heading .job-heading-content.is-fixed .box-company-heading .company-logo {
                min-width: 3rem;
                width: 3rem;
                margin-right: 1rem;
            }

                .job-heading .job-heading-content.is-fixed .box-company-heading .company-logo img {
                    width: 3rem;
                    height: 3rem;
                    object-fit: cover;
                    object-fit: contain;
                    margin-bottom: 0;
                }

                .job-heading .job-heading-content.is-fixed .box-company-heading .company-logo .job-label {
                    display: none;
                }

            .job-heading .job-heading-content.is-fixed .box-company-heading .company-content {
                width: calc(100% - 4rem);
            }

                .job-heading .job-heading-content.is-fixed .box-company-heading .company-content .company-info-detail,
                .job-heading .job-heading-content.is-fixed .box-company-heading .company-content .company-content-left .company-content-detail {
                    display: none;
                }

                .job-heading .job-heading-content.is-fixed .box-company-heading .company-content .company-info .company-name {
                    font-size: 1.125rem;
                    margin-bottom: 0;
                }

            .job-heading .job-heading-content.is-fixed .box-company-heading .company-action .btn {
                margin-bottom: 0;
            }

            .job-heading .job-heading-content.is-fixed .box-company-heading .subscribe-count {
                display: none;
            }
}

.job-detail-container .jd-list {
    display: flex;
    flex-wrap: wrap;
}

    .job-detail-container .jd-list li {
        width: 50%;
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        font-size: 0.875rem;
    }

@media screen and (max-width: 991px) {
    .job-detail-container .jd-list li {
        width: 100%;
    }
}

.job-detail-container .jd-list li ._icon {
    min-width: 1.75rem;
    color: #F1F3F5;
    font-size: 1.25rem;
}

.job-detail-container .jd-list li strong {
    min-width: 185px;
}

.job-detail-container .jd-row .jd-row-heading i {
    font-size: 1.5rem;
    min-width: 2rem;
}

.job-detail-container .jd-row .entry-content {
    font-size: 0.875rem;
}

    .job-detail-container .jd-row .entry-content p {
        margin-bottom: 0;
    }

.job-detail-container .jd-action .btn {
    margin-right: 1rem;
    margin-top: 0.5rem;
}

    .job-detail-container .jd-action .btn:last-child {
        margin-right: 0;
    }

@media screen and (max-width: 991px) {
    .job-detail-container .jd-action {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #ffffff;
        width: 100%;
        padding: 1rem 0;
        z-index: 100;
        display: flex;
        justify-content: center;
    }

        .job-detail-container .jd-action .btn {
            margin-top: 0;
        }
}

@media screen and (max-width: 574px) {
    .job-detail-container .jd-action .btn:not(.btn-apply) > span {
        padding: 10px 12px;
    }

        .job-detail-container .jd-action .btn:not(.btn-apply) > span span {
            display: none;
        }

        .job-detail-container .jd-action .btn:not(.btn-apply) > span i {
            margin-left: 0;
        }
}

.job-detail-container .job-detail-sidebar {
    padding-top: 3rem;
}

@media screen and (max-width: 767px) {
    .job-detail-container .job-detail-sidebar {
        padding-top: 0;
    }
}

.job-detail-container .job-detail-sidebar .card-body {
    max-height: 300px;
}

.job-detail-container .job-detail-sidebar .card-job-list .card-body {
    max-height: 460px;
}

.card-job-detail {
    padding: 20px 30px;
    border: none;
    box-shadow: none;
}

@media screen and (max-width: 991px) {
    .card-job-detail {
        padding: 1rem;
    }
}

.card-job-detail .text-icon {
    color: #2D2D2D;
}

    .card-job-detail .text-icon ._text {
        color: #2D2D2D;
    }

.card-job-detail .entry-content {
    line-height: 1.75;
}

    .card-job-detail .entry-content p {
        margin-bottom: 0;
        line-height: 1.75;
    }

.card-job-detail .sub-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9e9e9;
}

    .card-job-detail .sub-heading i {
        font-size: 1.25rem;
    }

    .card-job-detail .sub-heading ._text {
        font-weight: bold;
        font-size: 1.25rem;
        margin-bottom: 0;
    }

.card-job-detail .btn-apply-now {
    width: 100%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    height: 60px;
    margin: 0 auto;
}

    .card-job-detail .btn-apply-now small {
        font-size: 0.875rem;
        opacity: 0.8;
    }

.card-common {
    padding: 20px 30px;
    border: none;
    box-shadow: none;
}

@media screen and (max-width: 991px) {
    .card-common {
        padding: 1rem;
    }
}

.job-related .box-job-md:not(.job-hot),
.list-job-company .box-job-md:not(.job-hot) {
    background-color: #fff;
}

    .job-related .box-job-md:not(.job-hot) .job-content,
    .list-job-company .box-job-md:not(.job-hot) .job-content {
        border-left: 1px solid #F1F3F5;
    }

.company-detail-container {
    margin-top: 3.5rem;
}

    .company-detail-container .company-detail-sidebar .card-body {
        max-height: 300px;
    }

    .company-detail-container .company-detail-sidebar .card-job-list .card-body {
        max-height: 460px;
    }

    .company-detail-container .company-detail-content .list-jobs-search {
        border-bottom: 2px solid #edf1f7;
    }

        .company-detail-container .company-detail-content .list-jobs-search .box-job-small {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

@media screen and (max-width: 991px) {
    .company-detail-container .company-detail-content .list-jobs-search .box-job-small {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.card-company-info {
    padding: 1rem 1.5rem;
}

@media screen and (max-width: 991px) {
    .card-company-info {
        padding: 1rem;
    }
}

.card-company-info .section-header .section-header-title {
    align-items: flex-start;
}

.card-company-info .text-icon {
    color: #666666;
    font-size: 0.875rem;
    align-items: flex-start;
    flex-wrap: nowrap;
}

    .card-company-info .text-icon ._text {
        white-space: nowrap;
    }

.activity-gallery .activity-gallery-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -3px;
    margin-right: -3px;
}

.activity-gallery .gallery-item {
    padding: 0 3px;
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
    margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
    .activity-gallery .gallery-item {
        flex: 0 0 50%;
        width: 50%;
    }
}

.activity-gallery .gallery-item a {
    width: 100%;
    display: flex;
    padding-top: 70%;
    position: relative;
}

    .activity-gallery .gallery-item a img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }

    .activity-gallery .gallery-item a .gallery-number {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(26, 28, 29, 0.5);
        color: #ffffff;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

@media screen and (max-width: 991px) {
    .activity-gallery .gallery-item a .gallery-number {
        font-size: 2rem;
    }
}

.simple-page-container .page-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

    .simple-page-container .page-heading:before {
        content: "";
        width: 60px;
        height: 4px;
        border-radius: 5px;
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
    }

    .simple-page-container .page-heading .page-title {
        font-weight: bold;
        font-size: 1.75rem;
        margin-bottom: 0;
    }

.list-has-icon {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

    .list-has-icon li {
        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
    }

        .list-has-icon li span:not(._label) {
            max-width: calc(100% - 126px);
        }

        .list-has-icon li + li {
            margin-top: 0.5rem;
        }

        .list-has-icon li .icon {
            font-size: 1.25rem;
            margin-right: 0.25rem;
        }

            .list-has-icon li .icon .text-primary::before {
                color: #2A80B9 !important;
            }

        .list-has-icon li ._label {
            min-width: 110px;
            width: 110px;
            margin-right: 1rem;
        }

        .list-has-icon li a {
            color: #1A1C1D;
            text-decoration: none;
        }

.card-contact {
    border: none;
    box-shadow: 0 0 15px rgba(241, 243, 245, 0.3);
}

    .card-contact .row {
        margin: 0;
    }

        .card-contact .row .col-12 {
            padding: 0;
        }

    .card-contact iframe {
        margin-bottom: -6px;
    }

    .card-contact .contact-content {
        background-color: #f8f9fa;
    }

/*Form apply*/
.modal-apply .modal-content {
    border: none;
}

.modal-apply .modal-header {
    padding: 1.5rem;
    border-bottom: none;
}

    .modal-apply .modal-header .btn-close {
        background: #F1F3F5;
        width: 1.5rem;
        height: 1.5rem;
        color: #ffffff;
        font-size: 0.75rem;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        margin: 0;
    }

    .modal-apply .modal-header .modal-title {
        color: #FE7B05;
        font-weight: bold;
    }

.modal-apply .modal-body {
    padding: 0 1.5rem;
}

.modal-apply .modal-footer {
    border-top: none;
    padding: 0rem 1.5rem 1.5rem 1.5rem;
}

.modal-apply .apply-content .apply-job {
    background-color: rgba(254, 123, 5, 0.16);
    border-radius: 0.25rem;
}

    .modal-apply .apply-content .apply-job .job-meta {
        display: flex;
        align-items: center;
    }

        .modal-apply .apply-content .apply-job .job-meta li {
            display: flex;
            align-items: center;
        }

            .modal-apply .apply-content .apply-job .job-meta li i {
                font-size: 1rem;
                margin-right: 0.25rem;
            }

            .modal-apply .apply-content .apply-job .job-meta li + li {
                margin-left: 1.5rem;
            }

.modal-apply .apply-content .apply-form .input-file .file-uploaded {
    display: none;
}

    .modal-apply .apply-content .apply-form .input-file .file-uploaded .file-uploaded-inner {
        background-color: #E4E9F2;
        border-radius: 0.5rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .modal-apply .apply-content .apply-form .input-file .file-uploaded .file-uploaded-text {
        display: flex;
        align-items: center;
    }

        .modal-apply .apply-content .apply-form .input-file .file-uploaded .file-uploaded-text i {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }

    .modal-apply .apply-content .apply-form .input-file .file-uploaded .btn-close {
        background: transparent;
        font-size: 1.5rem;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }

.modal-apply .apply-content .apply-form .input-upload {
    position: relative;
}

    .modal-apply .apply-content .apply-form .input-upload .file-area {
        border: 2px dashed #FE7B05;
        border-radius: 0.5rem;
        padding: 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

        .modal-apply .apply-content .apply-form .input-upload .file-area i {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }

        .modal-apply .apply-content .apply-form .input-upload .file-area .select-file {
            color: #0066ff;
            text-decoration: underline;
            margin-left: 3px;
        }

    .modal-apply .apply-content .apply-form .input-upload .file-upload {
        opacity: 0;
        width: 1px;
        height: 1px;
        visibility: hidden;
        position: absolute;
    }

.modal-apply .apply-content .apply-form .file-desc {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: 500;
}

.list-has-icon li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

    .list-has-icon li i {
        font-size: 1.5rem;
        position: absolute;
        top: 0;
        left: 0;
    }

/*list company*/
.box-company {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.25rem;
}

    .box-company .company-logo {
        min-width: 5.5rem;
        width: 5.5rem;
        margin-right: 1rem;
    }

        .box-company .company-logo img {
            width: 5.5rem;
            height: 5.5rem;
            object-fit: cover;
            border-radius: 0.5rem;
            border: 1px solid #F1F3F5;
            display: flex;
            margin-bottom: 0;
            overflow: hidden;
            object-fit: contain;
            background-color: #ffffff;
        }

@media screen and (max-width: 991px) {
    .box-company .company-logo {
        min-width: 3rem;
        width: 3rem;
        margin-right: 1rem;
    }

        .box-company .company-logo img {
            width: 3rem;
            height: 3rem;
            object-fit: cover;
            margin-bottom: 0;
            border-radius: 0.25rem;
        }
}

.box-company .company-content {
    width: calc(100% - 6.5rem);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
    .box-company .company-content {
        width: calc(100% - 4rem);
    }
}

.box-company .company-content .company-action {
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .box-company .company-content .company-action .btn {
        height: 2.75rem;
        display: flex;
        align-items: center;
    }

@media screen and (max-width: 991px) {
    .box-company .company-content .company-action {
        width: 100%;
        justify-content: flex-start;
    }

        .box-company .company-content .company-action .btn {
            height: 2rem;
            font-size: 0.75rem;
        }
}

.box-company .company-content .company-info {
    width: calc(100% - 200px);
}

@media screen and (max-width: 991px) {
    .box-company .company-content .company-info {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .box-company .company-content .company-info {
        margin-bottom: 0;
    }
}

.box-company .company-content .company-info .company-name {
    margin-bottom: 0.125rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 991px) {
    .box-company .company-content .company-info .company-name {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
}

@media screen and (max-width: 767px) {
    .box-company .company-content .company-info .company-name {
        font-size: 1rem;
    }
}

.box-company .company-content .company-info .company-name a {
    color: #1A1C1D;
    font-weight: bold;
    text-decoration: none;
}

    .box-company .company-content .company-info .company-name a:hover {
        color: #2A80B9;
    }

.box-company .company-content .company-info-detail {
    display: flex;
    flex-wrap: wrap;
}

    .box-company .company-content .company-info-detail .company-detail-row {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

        .box-company .company-content .company-info-detail .company-detail-row:last-child {
            margin-bottom: 0;
        }

        .box-company .company-content .company-info-detail .company-detail-row ._icon {
            font-size: 1.25rem;
            min-width: 1.75rem;
            color: #F1F3F5;
        }

        .box-company .company-content .company-info-detail .company-detail-row ._content {
            width: calc(100% - 1.75rem);
        }

            .box-company .company-content .company-info-detail .company-detail-row ._content .badge {
                margin-bottom: 0.25rem;
            }

@media screen and (max-width: 767px) {
    .box-company .company-content .company-info-detail .company-detail-row:last-child {
        margin-bottom: 0.5rem;
    }

    .box-company .company-content .company-info-detail .company-detail-row ._icon {
        font-size: 1rem;
        min-width: 1.25rem;
        color: #F1F3F5;
    }

    .box-company .company-content .company-info-detail .company-detail-row ._content {
        font-size: 0.75rem;
        width: calc(100% - 1.25rem);
    }
}

.list-company-search .box-company {
    margin-bottom: 2px;
}

.section-action .row {
    --bs-gutter-x: 1.25rem;
}

    .section-action .row .col {
        margin-bottom: 1.25rem;
    }

    .section-action .row .action-box {
        padding: 1.25rem;
        text-align: center;
        border-radius: 0.5rem;
    }

        .section-action .row .action-box i {
            font-size: 3rem;
            margin-bottom: 1.25rem;
            display: block;
            color: inherit;
        }

        .section-action .row .action-box ._title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: inherit;
            text-decoration: none;
            display: block;
        }

@media screen and (max-width: 991px) {
    .section-action .row .action-box ._title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
}

.section-action .row .action-box p {
    max-width: 200px;
    margin: 0 auto;
}

.section-action .row .action-box._blue {
    background-color: #dbedf9;
    color: #2A80B9;
}

.section-action .row .action-box._orange {
    background-color: #ffead7;
    color: #FE7B05;
}

.section-action .row .action-box._red {
    background-color: #ffdddd;
    color: #ed3131;
}

.slider-job .slick-dots {
    bottom: -20px;
}

.box-post {
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(26, 28, 29, 0.05);
    transition: all 0.2s;
}

    .box-post:hover {
        box-shadow: 0px 4px 8px rgba(26, 28, 29, 0.2);
    }

    .box-post .box-post-thumb {
        position: relative;
        padding-top: 60%;
        display: block;
        border-radius: 0.25rem 0.25rem 0 0;
    }

        .box-post .box-post-thumb img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .box-post .box-post-content {
        padding: 1rem;
        background-color: #fff;
        border-radius: 0 0 0.25rem 0.25rem;
    }

@media screen and (max-width: 991px) {
    .box-post .box-post-content {
        padding: 1rem;
    }
}

.box-post .box-post-content .post-title {
    font-size: 1.125rem;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 991px) {
    .box-post .box-post-content .post-title {
        font-size: 1rem;
    }
}

.box-post .box-post-content .post-title a {
    text-decoration: none;
    color: #1A1C1D;
}

    .box-post .box-post-content .post-title a:hover {
        color: #FE7B05;
        text-decoration: underline;
    }

.box-post .box-post-content .post-desc {
    font-size: 0.875rem;
    color: #666666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

#slider_news {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

@media screen and (max-width: 991px) {
    #slider_news {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
}

#slider_news .slider-item {
    padding: 0 0.75rem;
}

@media screen and (max-width: 991px) {
    #slider_news .slider-item {
        padding: 0 0.5rem;
    }
}

.search-result-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .search-result-box .search-result-header {
        position: relative;
        padding-left: 1.5rem;
    }

        .search-result-box .search-result-header:before {
            content: "";
            position: absolute;
            height: 100%;
            width: 6px;
            border-radius: 4px;
            background-color: #2A80B9;
            left: 0;
        }

        .search-result-box .search-result-header ._title {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }

@media screen and (max-width: 991px) {
    .search-result-box .search-result-header ._title {
        font-size: 1.25rem;
    }
}

.search-result-box .search-result-header ._subtitle {
    color: #999999;
    margin-bottom: 0;
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    .search-result-box .search-result-header ._subtitle {
        font-size: 0.875rem;
    }
}

.job-sidebar .filter-button {
    position: fixed;
    width: 100%;
    border-radius: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
}

@media screen and (min-width: 992px) {
    .job-sidebar .filter-button {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .job-sidebar .sidebar-filter {
        position: fixed;
        right: -100%;
        width: 100%;
        top: 0;
        height: 100vh;
        overflow: auto;
        z-index: 99;
        transition: all 0.2s;
        padding-bottom: 60px;
        background-color: #f1f3f5;
    }
}

.job-sidebar .sidebar-filter.open {
    right: 0;
    transition: all 0.2s;
}

.section-heading-simple {
    background-size: cover;
}

    .section-heading-simple .section-heading-simple-inner {
        background-color: rgba(8, 32, 49, 0.4);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 240px;
    }

@media screen and (max-width: 991px) {
    .section-heading-simple .section-heading-simple-inner {
        min-height: 200px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading-simple .section-heading-simple-inner {
        min-height: 160px;
    }
}

.section-heading-simple .section-heading-simple-inner .page-title {
    margin: 0;
    font-size: 2rem;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .section-heading-simple .section-heading-simple-inner .page-title {
        font-size: 1.5rem;
    }
}

.box-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .box-icon ._icon {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .box-icon ._icon img {
            width: 70px;
        }

    .box-icon ._content {
        width: calc(100% - 150px);
    }

        .box-icon ._content ._title {
            font-size: 1.5rem;
        }

        .box-icon ._content ._subtitle {
            font-size: 1rem;
            margin-bottom: 0;
        }

.card-content-detail {
    padding: 1.5rem;
    border-radius: 0.25rem;
}

@media screen and (max-width: 991px) {
    .card-content-detail {
        padding: 1rem;
    }
}

.card-content-detail .table-of-content {
    position: relative !important;
    top: 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F1F3F5;
    margin-bottom: 1.5rem;
}

.card-post {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.card-post__thumb {
    width: 50%;
    border-radius: 0.5rem 0 0 0.5rem;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .card-post__thumb {
        width: 100%;
        border-radius: 0.5rem 0.5rem 0 0;
    }
}

.card-post__thumb a {
    position: relative;
    padding-top: 60%;
    display: block;
    max-height: 300px;
}

@media screen and (max-width: 991px) {
    .card-post__thumb a {
        padding-top: 33vw;
    }
}

.card-post__thumb .post-thumb-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    object-fit: cover;
}

.card-post__content {
    width: 50%;
    padding: 1rem;
    border: 1px solid #F1F3F5;
    border-left: none;
    border-radius: 0 0.5rem 0.5rem 0;
}

@media screen and (max-width: 991px) {
    .card-post__content {
        width: 100%;
        border-radius: 0 0 0.5rem 0.5rem;
    }
}

.card-post .post-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-weight: 600;
    color: #1A1C1D;
    margin-bottom: 0.25rem;
}

@media screen and (max-width: 991px) {
    .card-post .post-title {
        font-size: 1.125rem;
    }
}

.card-post .post-title a {
    color: #1A1C1D;
    text-decoration: none;
}

    .card-post .post-title a:hover {
        color: #2A80B9;
        text-decoration: underline;
    }

.card-post .post-description {
    color: #666666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 991px) {
    .card-post .post-description {
        font-size: 0.875rem;
    }
}

.card-post .post-meta {
    display: flex;
    align-items: center;
}

.card-post:hover {
    box-shadow: 0 2px 6px 0 rgba(51, 51, 51, 0.2);
    transition: all 0.2s;
}

#relatedpost_slider {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

@media screen and (max-width: 991px) {
    #relatedpost_slider {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
}

#relatedpost_slider .item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.75rem;
}

@media screen and (max-width: 991px) {
    #relatedpost_slider .item {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

#relatedpost_slider .slick-dots {
    bottom: -25px;
}

@media screen and (max-width: 767px) {
    .box-job-horizontal.box-job-count.mb-12,
    .slick-slider .slider-item .mb-12,
    .box-job-horizontal.mb-12 {
        margin-bottom: 0.5rem !important;
    }
}

:root {
    --bs-primary-rgb: 0, 102, 255;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 0, 184, 135;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 254, 203, 46;
    --bs-danger-rgb: 219, 73, 86;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
}

.section-login {
    padding: 80px 0;
}

@media screen and (max-width: 991px) {
    .section-login {
        padding: 40px 0;
    }
}

.login-container {
    background-color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    overflow: hidden;
}

    .login-container > .row {
        --bs-gutter-x: 0;
    }

    .login-container .login-banner-left {
        padding: 0;
        background-repeat: no-repeat;
        background-size: cover;
    }

        .login-container .login-banner-left .login-banner-inner {
            padding: 150px 80px;
            height: 100%;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.6);
        }

@media screen and (max-width: 991px) {
    .login-container .login-banner-left .login-banner-inner {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 767px) {
    .login-container .login-banner-left .login-banner-inner {
        padding: 40px 15px;
    }
}

.login-container .login-banner-left .list-box-icon {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media screen and (max-width: 991px) {
    .login-container .login-banner-left .list-box-icon {
        gap: 1.5rem;
    }

        .login-container .login-banner-left .list-box-icon .box-icon ._icon {
            width: 80px;
            height: 80px;
        }

            .login-container .login-banner-left .list-box-icon .box-icon ._icon img {
                width: 50px;
            }

        .login-container .login-banner-left .list-box-icon .box-icon ._content {
            width: calc(100% - 90px);
        }

            .login-container .login-banner-left .list-box-icon .box-icon ._content ._title {
                font-size: 1rem;
            }

            .login-container .login-banner-left .list-box-icon .box-icon ._content ._subtitle {
                font-size: 0.875rem;
            }
}

.login-container .login-form-right .login-form-inner {
    padding: 40px 50px;
}

@media screen and (max-width: 991px) {
    .login-container .login-form-right .login-form-inner {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {
    .login-container .login-form-right .login-form-inner {
        padding: 30px 15px;
    }
}

.login-container .login-form-right .nav-tabs-custom .nav-link {
    width: 165px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .login-container .login-form-right .nav-tabs-custom .nav-link {
        padding-left: 12px;
        padding-right: 12px;
        width: 140px;
    }
}

.login-container .login-form-right .btn-submit {
    height: 52px;
    font-weight: 600;
}

.login-social .btn {
    width: 100%;
    height: 52px;
    color: #fff;
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.5;
}

    .login-social .btn i {
        font-size: 1.25rem;
    }

@media screen and (max-width: 767px) {
    .login-social .btn {
        height: 44px;
    }

        .login-social .btn i {
            font-size: 1rem;
        }
}

.login-social .btn-facebook {
    background-color: #1877F2;
    border-color: #1877F2;
}

.login-social .btn-google {
    background-color: #D0404F;
    border-color: #D0404F;
}

.text-or {
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .text-or div {
        width: calc(50% - 30px);
        height: 1px;
        background-color: #F1F3F5;
    }

@media (max-width: 480px) {
    .mobile-hide {
        display: none !important;
    }
}

.tab-title {
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-tabs-mobile .nav-link {
        padding: 5px 7px;
    }
}
