﻿body, html {
    min-height: 100%; /* on your example link it is 100hv, make it 100% */
}

.pulse {
    height: 100px;
    width: 100px;
    background: #249bef;
    position: fixed;
    margin: auto;
    right: 50px;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}

    .pulse img {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .pulse span {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #249bef;
        border-radius: 50%;
        animation: pulse 3s ease-out infinite;
        animation-delay: calc(1s * var(--i));
    }

@keyframes pulse {
    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}
/* nav-overlay hpbd */
.nav-overlay-hbpd {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    animation: zoom-in-zoom-out linear 0.75s;
    margin: 0;
    min-height: 100%;
    z-index: 10;
    transform: scale(0);
    transition: transform 0.75s ease;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}
/* close background */
.background-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #36f6f2;
}

    .background-close .close-icon {
        font-size: 25px;
        color: floralwhite;
    }

/* backgound margin auto hpbd */
.background-image-hbpd {
    position: relative;
    margin: 8% 25%;
}

    .background-image-hbpd .background-hpbd {
        position: relative;
        width: 100%;
        height: 70%;
    }

.background-text-hbpd {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: -30px;
}

    .background-text-hbpd .text-hpbd {
        position: relative;
        width: 80%;
    }

    .background-text-hbpd .name-calendar-hpbd {
        margin: 0;
        font-size: 20px;
        color: #e03e89;
    }

    .background-text-hbpd marquee {
        position: relative;
        left: -10px;
    }
/* hpbd employee*/
.hpbd-employee {
    display: flex;
    position: relative;
    align-items: center;
}

    .hpbd-employee .image-hpbd-person {
        width: 88px;
        height: 88px;
        background: bisque;
        border-radius: 50%;
        position: relative;
    }

.text-job {
    padding-left: 15px;
    padding-top: 15px;
}

    .text-job h1 {
        font-size: 20px;
        color: #e03e89;
        font-weight: 700;
        text-transform: uppercase;
    }

    .text-job h3 {
        font-size: 16px;
        color: #e03e89;
        font-weight: 300;
        text-transform: uppercase;
    }
/*animation scroll loop*/
.scroller {
    max-height: 255px;
}

.scroller__inner {
    position: relative;
    left: 38px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(180deg, transparent, white 6%, white 100%, transparent);
    mask: linear-gradient(180deg, transparent, white 6%, white 85%, transparent);
}

    .scroller[data-animated="true"] .scroller__inner {
        width: max-content;
        flex-wrap: nowrap;
        animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
    }

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 10s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 15s;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-50% - 0.5rem));
    }
}

/* song hpbd */
.song-hbpd {
    position: absolute;
    bottom: 30px;
    right: 164px;
}

    .song-hbpd audio {
        height: 30px;
        width: 265px;
    }
/* css custom swiper */
.main-swiper {
    display: none;
}

.main-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
    display: none;
}

.swiper6-button-next::after,
.swiper6-button-prev::after {
    content: "";
    display: none;
}

.button-unit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .button-unit .swiper6-button-prev,
    .button-unit .swiper6-button-next {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background-color: #233a7a;
        width: 50px;
        height: 50px;
        background-repeat: no-repeat;
        position: absolute;
        transition: .3s ease;
        z-index: 1;
    }

        .button-unit .swiper6-button-prev:hover,
        .button-unit .swiper6-button-next:hover {
            background-color: #5bcbf5;
        }

    .button-unit .swiper6-button-prev {
        left: 0;
        top: 58%;
    }

    .button-unit .swiper6-button-next {
        right: 60px;
        top: 58%;
    }

.button-event {
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .button-event .swiper-button-prev,
    .button-event .swiper-button-next {
        font-size: 1.6rem;
        color: #fff;
        background-color: #233a7a;
        width: 50px;
        height: 50px;
        background-repeat: no-repeat;
        position: relative;
        transition: .3s ease;
        z-index: 1;
    }

    .button-event .swiper-button-prev {
        left: auto;
        top: 22px;
    }

    .button-event .swiper-button-next {
        right: auto;
        top: 50px;
    }

        .button-event .swiper-button-prev:hover,
        .button-event .swiper-button-next:hover {
            background-color: #5bcbf5;
        }

.history-year .swiper-button-prev,
.history-year .swiper-button-next {
    font-size: 1.6rem;
    color: #bbb;
    background-repeat: no-repeat;
    position: relative;
    transition: .3s ease;
    z-index: 1;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

.history-year .swiper-button-prev,
.history-year .swiper-button-next {
    font-size: 56px;
}

.button-swiper-products .products-button-prev,
.button-swiper-products .products-button-next {
    font-size: 16px;
    color: #fff;
    background-color: #233a7a;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    position: absolute;
    transition: .3s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .button-swiper-products .products-button-prev:hover,
    .button-swiper-products .products-button-next:hover {
        background-color: #5bcbf5;
    }

.button-swiper-products .products-button-prev {
    left: 0;
    top: 5%;
}

.button-swiper-products .products-button-next {
    right: 0;
    top: 5%;
}

.swiper-container {
    height: 100%;
    position: relative;
    z-index: 1;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    overflow: hidden;
    list-style: none;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

    .swiper-slide img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }

.swiper-pagination {
    bottom: -5px !important;
}

.section-newsdetail {
    padding-top: 20px !important;
}
/* base css */
.section {
    padding-top: 30px;
    scroll-margin-top: 70px;
}

.main-title {
    position: relative;
    margin: 0 0 20px 0;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-background {
    background-image: url('../img/main-background.png');
    position: relative;
    height: 500px;
    display: block;
    background-position: 63% 61px;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-breakcumb {
    position: relative;
}

.content-breakcumb {
    position: relative;
    scroll-margin-top: 90px;
}

.content-breakcumb-title {
    position: absolute;
    display: flex;
    align-items: center;
    padding-right: 60px;
    margin: 0;
    font-size: 30px;
    color: #fff;
    max-height: 80px;
    height: calc(100% + 10px);
    z-index: 1;
    text-transform: uppercase;
}

    .content-breakcumb-title::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        background-color: #233a7a;
        width: 3000px;
        height: 100%;
        z-index: -1;
        transform: skewX(-45deg);
    }

.content-breakcumb-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 22px 0;
    font-size: 16px;
}

    .content-breakcumb-list::before {
        content: '';
        position: absolute;
        background-color: #f5f5f5;
        width: 450%;
        height: 100%;
        top: 50%;
        left: 100%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

.content-breakcumb-item {
    position: relative;
}

    .content-breakcumb-item:first-child {
        color: #999;
    }

    .content-breakcumb-item a {
        color: #999;
    }

    .content-breakcumb-item:last-child a {
        padding: 0;
        color: #000;
    }

.right-icon {
    padding-left: 20px;
    padding-right: 20px;
}

.right-icon-1 {
    padding-left: 20px;
    padding-right: 20px;
}

.right-icon-2 {
    padding-left: 20px;
    padding-right: 20px;
}

/* menu display mobile*/
.nav-overlay {
    position: fixed;
    top: 62px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    animation: fadeIn linear 0.2s;
    margin: 0;
    min-height: 100%;
}

.nav-mobile-tablet {
    position: fixed;
    top: 62px;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 100%;
    min-height: 100%;
    background-color: #233a7a;
    transform: translateX(100%);
    opacity: 1;
    transition: transform linear 0.2s, opacity linear 0.2s;
    z-index: 1;
}

.nav-mobile-list-parent {
    list-style: none;
    padding: 14px 30px;
    margin: 0;
}

    .nav-mobile-list-parent .header-item:first-child .header-link {
        margin-left: 0;
    }

.nav-mobile-menu {
    position: relative;
    bottom: 0px;
    right: -6px;
    display: none;
    width: 30px;
    z-index: 2;
    background-color: #fff;
    margin: 0;
}

/*.nav-input:checked ~ .nav-overlay {
    display: block;
}

.nav-input:checked ~ .nav-mobile-tablet {
    transform: translateX(0%);
    opacity: 1;
}*/


.bars .line {
    fill: none;
    stroke: #333;
    stroke-width: 4;
    stroke-linecap: square;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
}

    .bars .line.top {
        stroke-dasharray: 40 172;
    }

    .bars .line.middle {
        stroke-dasharray: 40 111;
    }

    .bars .line.bottom {
        stroke-dasharray: 40 172;
    }

.bars.active .top {
    stroke-dashoffset: -132px;
}

.bars.active .middle {
    stroke-dashoffset: -71px;
}

.bars.active .bottom {
    stroke-dashoffset: -132px;
}

/*show menu css*/
.box-content-drop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-menu-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 30px;
    height: 50px;
}

    .show-menu-child .drop-icon-menu {
        font-size: 20px;
        color: #fff;
        transition: transform 250ms ease;
    }

.rotate-drop-icon {
    transform: rotate(180deg);
}

.nav-mobile-list-child {
    display: none;
    list-style: none;
}

    .nav-mobile-list-child li a {
        display: block;
        color: #fff;
        padding: 8px 0;
        font-size: 14px;
    }

.show-menu-level {
    display: block;
}

/* main css */
.header-main {
    display: flex;
    height: 92px;
}

.header-fixed {
    position: fixed;
    top: 0;
    z-index: 10;
    left: 0;
    right: 0;
}

.header-left {
    position: relative;
    height: 100%;
    z-index: 10;
}

    .header-left::after {
        content: '';
        position: absolute;
        background-color: #fff;
        top: 0;
        right: -95px;
        width: 3000px;
        height: 100px;
        z-index: 0;
        clip-path: polygon( 0% 0, 100% 0%, 100% 20%, 50% 1800%, 0 75%, 0 25% );
    }

.header-block {
    position: relative;
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.1);
    height: 10px;
    width: 10px;
}

    .header-block::before {
        content: "";
        position: absolute;
        background-color: #ff0000;
        width: 100px;
        top: 0;
        bottom: 0;
        z-index: -1;
    }

.header-image {
    position: relative;
    z-index: 1;
    margin-top: 6px;
}

    .header-image img {
        width: 100%;
        max-width: 180px;
        max-height: 95px;
    }

.header-right {
    width: 100%;
}

.right-top {
    background-color: #e1e1e1;
    display: flex;
    align-items: center;
    position: relative;
}

    .right-top::before {
        content: "";
        position: absolute;
        background-color: #e1e1e1;
        width: 500%;
        top: 0;
        bottom: 0;
        left: -30px;
        z-index: -1;
        height: 62px;
    }


.right-langue {
    width: 100%;
    display: flex;
    justify-content: right;
    padding: 6px 0;
}

.icon-langue {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 0;
    cursor: pointer;
}

    .icon-langue img {
        width: 18px;
        height: 12px;
    }

.right-search {
    display: flex;
    align-items: center;
}

.input-search {
    outline: none;
    border: none;
    height: 30px;
    padding: 0 10px;
}

.search-icon {
    color: #fff;
}

.btn-search {
    background-color: #005fae;
    padding: 10px;
    border-radius: 0;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 16px;
}

.right-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-list {
    display: flex;
    list-style: none;
    margin: 0;
    background-color: #005faf;
    position: relative;
}

    .header-list::before {
        content: "";
        position: absolute;
        background-color: #005faf;
        width: 800%;
        top: 0;
        bottom: 0;
        z-index: -1;
    }

.header-item {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    margin-right: 15px;
}

    .header-item:first-child .header-link {
        margin-left: 40px;
    }

.header-link {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    padding: 15px 0;
    display: block;
}

.header-link-mobile {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 15px 0;
    display: block;
}

.header-item-login {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid #fff;
}

.header-item-account {
    line-height: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.header-link-mobile:hover {
    color: #fff;
}

.header-link:hover {
    color: #deeb53;
}

.item-active {
    color: #deeb53;
}

    .item-active .header-link {
        color: #deeb53;
    }

    .item-active .header-link-mobile {
        color: #deeb53;
    }

.header-user {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

    .header-user .icon-user-login {
        display: flex;
        width: 30px;
        height: 30px;
        justify-content: center;
        align-items: center;
        color: #fff;
    }

.header-list-account {
    list-style: none;
    margin: 0;
    position: relative;
    padding-left: 0;
}

    .header-list-account .has-dropdown {
        position: relative;
    }

        .header-list-account .has-dropdown .dropdown {
            width: 140px;
            -webkit-box-shadow: 0px 14px 33px -9px rgba(0, 0, 0, 0.75);
            -moz-box-shadow: 0px 14px 33px -9px rgba(0, 0, 0, 0.75);
            box-shadow: 0px 14px 33px -9px rgba(0, 0, 0, 0.75);
            z-index: 1002;
            visibility: hidden;
            opacity: 0;
            position: absolute;
            top: 37px;
            right: 0px;
            text-align: left;
            background: #fff;
            padding: 20px;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            -ms-border-radius: 4px;
            border-radius: 4px;
            -webkit-transition: 0s;
            -o-transition: 0s;
            transition: 0s;
            border-bottom: 2px solid #f9a61a;
            min-width: 140px;
        }

            .header-list-account .has-dropdown .dropdown li {
                display: block;
                margin-bottom: 10px;
                border-bottom: 1px solid #3333334d;
                padding-bottom: 10px;
            }

                .header-list-account .has-dropdown .dropdown li .info-yourself {
                    padding: 2px 0;
                    color: #131212;
                    line-height: 1.2;
                    text-transform: none;
                    font-size: 13px;
                    letter-spacing: 0;
                }

                .header-list-account .has-dropdown .dropdown li .content-info {
                    padding: 2px 0;
                    display: block;
                    color: #131212;
                    line-height: 1.2;
                    text-transform: none;
                    font-size: 13px;
                    letter-spacing: 0;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }

                    .header-list-account .has-dropdown .dropdown li .info-yourself:hover,
                    .header-list-account .has-dropdown .dropdown li .content-info:hover {
                        color: #005faf;
                    }

.header-account {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

    .header-account:hover {
        color: #deeb53;
    }

    .header-account i {
        margin-right: 13px;
    }

.user-login {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    padding: 15px 0;
    display: block;
}
/* body */
/* banner slider */
.app-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide .banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 84px;
}

caption-content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 30;
    width: 100%;
}

.captionbg-text {
    position: sticky;
    z-index: 11;
    background: transparent;
    overflow: hidden;
}

.caption-title {
    position: relative;
    color: #fff;
    font-weight: 300;
    margin: 0;
    width: fit-content;
    padding: 32px 0;
    line-height: 40px;
}

    .caption-title::before {
        content: "";
        position: absolute;
        bottom: 0;
        background-image: url('../img/caption-text.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        right: 0;
        z-index: -1;
        width: 100vw;
        height: 100%;
        transform: skewX(40deg) translateX(20vw);
    }

.not-strong {
    font-weight: 700;
    text-transform: none;
}

.swiper-pagination > .swiper-pagination-bullet {
    opacity: 1;
    background-color: white;
    margin-right: 30px !important;
}

.swiper-pagination > .swiper-pagination-bullet-active {
    background-color: black;
}

.swiper-dot-hpbd {
    position: relative;
    left: 44% !important;
    z-index: 5;
    top: 10px !important;
}

    .swiper-dot-hpbd > .swiper-pagination-bullet {
        opacity: 1;
        background-color: white;
        margin-right: 30px !important;
        border: 1px solid #333;
    }

    .swiper-dot-hpbd > .swiper-pagination-bullet-active {
        background-color: black;
    }

.swiper-pagination-unit {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .swiper-pagination-unit > .swiper-pagination-bullet {
        opacity: 1;
        background-color: #e4dddd;
        margin-right: 15px !important;
    }

    .swiper-pagination-unit > .swiper-pagination-bullet-active {
        background-color: black;
    }

/* hot news */
.section-bg {
    background-color: #f5f5f5;
    padding-top: 30px;
    padding-bottom: 30px;
}

.news-title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 22px;
}

.slide-vertical {
    height: 90px;
}

.news-item {
    display: flex;
    align-items: center;
}

.news-item-time {
    position: relative;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
    padding-right: 10px;
    width: 80px;
    min-width: 80px;
    font-weight: 300;
    pointer-events: none;
}

    .news-item-time::before {
        content: '';
        display: block;
        position: absolute;
        border-left: 1px solid #e5e5e5;
        height: 18px;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
    }

.news-item-title {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

    .news-item-title:hover,
    .news-item-title:focus {
        background-color: transparent;
        color: #333;
    }

    .news-item-title::before {
        content: "";
        position: absolute;
        width: 100%;
        top: 0;
        bottom: 0;
        background-image: linear-gradient(180deg, transparent 95%, #333 0);
        background-size: 0 100%;
        background-repeat: no-repeat;
        background-position: left bottom;
        transition: background-size .6s ease;
    }

    .news-item-title:hover::before {
        background-size: 100% 100%;
    }

.news-hpbd-detail {
    display: flex;
    height: 150px;
}

.news-hpbd-image img {
    width: 150px;
    height: 150px;
}

.news-hpbgbg-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url('../img/cmsn.png');
    width: 100%;
    height: 100%;
    background-position: center 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

    .news-hpbd-image img, .news-hpbgbg-title img {
        position: relative;
    }

.news-hpbd-title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ee4e4e;
    margin: 0;
}

.news-hpbd-main-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

.news-hpbd-icon {
    color: #ee4e4e;
    font-size: 30px;
    padding-right: 10px;
    padding-bottom: 4px;
}

.news-name-hpbd {
    color: #ee4e4e;
}

    .news-name-hpbd b {
        font-weight: 700;
    }

/* branch */
.branch-establish {
    background-image: url('../img/branch.png');
    padding-top: 40px;
    padding-bottom: 40px;
    background-size: cover;
    background-position: center center;
}

.branch-establish-title {
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 45px;
    color: #111;
}

.branch-establish-item {
    text-align: center;
}

.branch-establish-item--icon {
    margin-bottom: 15px;
}

.branch-establish-item--count {
    font-size: 44px;
    color: #0082c4;
    font-weight: 600;
}

.branch-establish-item--title {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.branch-establish-item--vnd {
    font-size: 14px;
    color: #666;
}

/* vision-mision */
.vision-mission {
    position: relative;
}

.img-vision--mission img {
    width: 100%;
    height: 100%;
}

.content-vision--mission {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 0;
    width: 100%;
}

.box-vision--mission {
    width: 60%;
    background-image: linear-gradient(180deg, #9bc4e2, #e2e2ec);
    padding: 40px;
    box-shadow: -2px 2px 4px 1px rgba(0, 0, 0, 0.3);
}

.about-vision {
    display: flex;
    align-items: center;
}

    .about-vision img {
        border: thin solid #233a7a;
        padding: 10px;
        width: 100px;
        height: 100px;
        object-fit: scale-down;
        box-shadow: 1px 0 0 1px rgba(0, 0, 0, 0.3);
    }

    .about-vision + .about-vision {
        margin-top: 30px;
    }

.box-vision {
    padding-left: 20px;
    max-width: 420px;
}

.title-vision {
    font-size: 30px;
    color: #233a7a;
    margin: 0 0 15px 0;
}

.description-vision {
    margin: 0;
    font-size: 18px;
    color: #111;
    text-align: justify;
}

.img-vision--mission img {
    max-width: 100%;
    height: 100%;
}

/* value */
.row-center {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.value-content {
    position: relative;
    width: 100%;
}

.value-caption {
    position: absolute;
    width: 100%;
    padding: 15px;
    text-align: center;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.image-value {
    padding-top: 133.33333%;
    width: 100%;
    height: 100%;
    background-color: #000;
}

    .image-value img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.value-title {
    margin: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

    .value-title::first-letter {
        color: #5bcbf5;
    }

.value-description-hunger p,
.value-description-standard p,
.value-description-quality p,
.value-description-professional p,
.value-description-responsibility p {
    margin: 0;
    font-size: 12px;
    color: #fff;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.value-content:hover img {
    opacity: .5;
}

.value-content:hover .value-description-hunger p {
    overflow: visible;
    max-height: 200px;
    opacity: 1;
}

.value-content:hover .value-description-standard p {
    overflow: visible;
    max-height: 185px;
    opacity: 1;
}

.value-content:hover .value-description-quality p {
    overflow: visible;
    max-height: 120px;
    opacity: 1;
}

.value-content:hover .value-description-professional p {
    overflow: visible;
    max-height: 160px;
    opacity: 1;
}

.value-content:hover .value-description-responsibility p {
    overflow: visible;
    max-height: 160px;
    opacity: 1;
}

/* product */
.product-background {
    background-image: url(../img/bg-product.png);
    display: flex;
    align-items: center;
    background-position: 40% 55%;
    background-size: cover;
    height: 900px;
}

.content-center {
    display: flex;
    align-items: center;
}

.product-content-title {
    height: 40px;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

.product-content-description {
    /*    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;*/
    display: -webkit-box;
    height: 350px;
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    color: #fff;
}

    .product-content-description p {
        text-align: justify;
    }

#showcase {
    width: 930px;
    height: 930px;
    z-index: 1;
    position: relative;
}

.image-center {
    position: absolute;
    top: 22%;
    left: 28%;
}

#showcase .image-slider {
    cursor: pointer;
    filter: grayscale(100%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}

    #showcase .image-slider:hover {
        filter: grayscale(0);
        transition: box-shadow .3s ease;
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.5);
    }

#showcase .active {
    filter: grayscale(0);
}

/* unit */
.title-unit {
    margin: 0 0 28px 0;
}

.swiper-6 {
    padding-top: 45px;
}

.brand-pvndb {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .brand-pvndb img {
        object-fit: contain;
    }


/* news - event */
.event-bg {
    position: relative;
}

    .event-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-image: url('../img/bg-content-event.png');
        width: 100%;
        height: 160%;
        max-height: 158%;
        background-size: cover;
        background-position: 47% -120px;
        background-repeat: no-repeat;
    }

.event-tabs {
    padding: 15px 15px 0 15px;
}

.event-tab-pane {
    display: none;
}

    .event-tab-pane.active {
        display: block;
    }


.event-tabs-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    position: relative;
    margin: 0 0 20px 0;
}

.event-tab-item {
    position: relative;
    display: flex;
    align-items: center;
}

    .event-tab-item:first-child::before {
        display: none;
    }

    .event-tab-item::before {
        content: '';
        position: absolute;
        display: block;
        border-left: 1px solid #b5b5b5;
        top: 50%;
        left: -8px;
        height: 18px;
        transform: translateY(-55%);
    }

    .event-tab-item p {
        --bottom-distance: 0px;
        display: block;
        font-size: 16px;
        text-transform: uppercase;
        color: #233a7a;
        font-weight: 400;
        cursor: pointer;
        background-size: 0% 2px;
        background-repeat: no-repeat;
        background-image: linear-gradient(#233a7a, #233a7a);
        background-position: 50% calc(100% - var(--bottom-distance));
        transition: background-size 0.3s;
        text-decoration: none;
        margin-right: 15px;
        -webkit-tap-highlight-color: transparent;
    }

    .event-tab-item:hover p {
        background-size: 100% 2px;
    }

.active .event-tab-heading {
    background-size: 100% 2px;
}

.event-image-caption {
    display: block;
    text-decoration: none;
    transition: all .3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
}

.event-image {
    position: relative;
    padding-top: 55.55556%;
    overflow: hidden;
}

.event-card-image {
    transition: transform .2s;
}

.event-caption {
    background-color: #f8f8f8;
    padding: 15px 15px 15px;
    height: 211px;
    transition: all .1s ease-in-out;
}

.event-caption-title {
    margin: 0;
    height: 40px;
    font-size: 14px;
    color: #999;
}

.event-caption-new {
    min-width: 260px;
    min-height: 90px;
    margin: 25px 0 0 0;
    font-size: 17px;
    line-height: 23px;
    color: #333;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.event-read-continue p {
    margin: 10px 0 0 0;
    font-style: italic;
    color: #333;
    font-size: 14px;
    text-align: end;
}
/* fotter */
.footer-home {
    background-image: url('../img/footer-bg-2.png');
    background-size: cover;
    position: relative;
    padding-bottom: 30px;
    padding-top: 60px;
}

.footer-image {
    display: flex;
    justify-content: center;
}

    .footer-image img {
        width: 100%;
        max-width: 120px;
        max-height: 120px;
        object-fit: cover;
    }

.footer-icon {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .footer-icon i {
        margin: 0 10px;
    }

        .footer-icon i.custom-icon-facebook {
            display: inline-block;
            border-radius: 60px;
            padding: 0.5em 0.6em;
            background-color: #0866ff;
            color: #fff;
        }

        .footer-icon i.custom-icon-email {
            display: inline-block;
            border-radius: 60px;
            padding: 0.5em 0.6em;
            background-color: #0f0d0e;
            color: #fff;
        }

        .footer-icon i.custom-icon-phone {
            display: inline-block;
            border-radius: 60px;
            padding: 0.5em 0.6em;
            background-color: #53cc59;
            color: #fff;
        }

        .footer-icon i.custom-icon-youtube {
            display: inline-block;
        }

i.custom-icon-youtube::before {
    color: #ff3d3d;
    font-size: 30px;
}

.footer-title {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.footer-title-list {
    padding-left: 16px;
}

.footer-title-item {
    margin-bottom: 10px;
}

    .footer-title-item::marker {
        color: #fff;
    }

    .footer-title-item span {
        text-decoration: none;
        font-size: 1.4rem;
        color: #fff;
        -webkit-tap-highlight-color: transparent;
    }

.footer-title-link {
    text-decoration: none;
    font-size: 1.4rem;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}

    .footer-title-link:hover {
        color: #fff !important;
    }

    .footer-title-link span {
        --bottom-distance: 0px;
        font-weight: 400;
        cursor: pointer;
        background-size: 0% 2px;
        background-repeat: no-repeat;
        background-image: linear-gradient(#fff, #fff);
        background-position: 50% calc(100% - var(--bottom-distance));
        transition: background-size 0.3s;
        text-decoration: none;
    }

    .footer-title-link:hover span {
        background-size: 100% 2px;
    }

/*introduce*/

.title-child {
    font-size: 35px;
    color: #5bcbf5;
    font-weight: 600;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.title-description {
    font-size: 14px;
    margin: 0;
}

.title-background {
    position: relative;
    width: 100%;
    height: 350px;
}

/* leadership */
/* v1 */
.leadership-bg {
    background-image: url('/img/leadership-bg.png');
    background-size: cover;
    background-position: center center;
}

.leadership-image {
    text-align: center;
}

    .leadership-image img {
        width: 40%;
        height: 100%;
    }

.center-text {
    display: flex;
    align-items: center;
}

.leadership-name {
    font-size: 36px;
    color: #fff;
    font-weight: 300;
}

.leadership-job {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.leadership-line {
    background: #5bcbf5;
    width: 100%;
    height: 5px;
    margin-bottom: 16px;
}

.leadership-description p {
    font-size: 18px;
    color: #fff;
}

.leadership-bot {
    padding: 20px 0;
    background-color: #f5f5f5;
}

.leadership-bot-image {
    position: relative;
}

.image-staff {
    display: flex;
    justify-content: center;
}

    .image-staff img {
        position: relative;
        width: 100%;
        object-fit: cover;
        height: 450px;
        background: linear-gradient(#4c98dc, #fdfdfc);
    }

.leadership-bot-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .33);
    height: 100px;
    padding: 16px;
}

.leadership-bot-title {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.leadership-bot-description {
    text-align: center;
    color: #fff;
    margin: 0;
}

/* v2 */
.shadow-hexagon {
    width: 20%;
    position: relative;
}

    .shadow-hexagon::before {
        content: '';
        width: 92%;
        height: 90%;
        position: absolute;
        background-image: linear-gradient(150deg, rgb(5 42 85) -60%, rgba(255, 255, 255, 1) 66%, rgba(255, 255, 255, 1) 100%);
        clip-path: polygon(25% 0, 74% 0%, 100% 53%, 79% 100%, 24% 100%, 0% 48%);
        transform: translate(34%, 53%);
        z-index: -1;
    }

.hexagon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #005faf;
    clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    padding: 5px;
    margin-bottom: 5px;
    line-height: 50px;
}

.leadership-box {
    display: flex;
}

.space-bottom {
    margin-bottom: 55px;
}

.image-box {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    clip-path: polygon(27% 1%, 73% 1%, 97% 50%, 73% 99%, 27% 99%, 3% 50%)
}

.image-tower {
    position: absolute;
    width: 100%;
    height: 100%;
}

.image-leader {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    transform: translateX(11%);
}

.line-leadership {
    position: relative;
    width: 80%;
    padding: 20px 0;
}

.background-line-name {
    position: relative;
    background-color: #0171b9
}

    .background-line-name::before {
        content: "";
        position: absolute;
        background-color: #0171b9;
        width: 120%;
        top: 0;
        height: 100%;
        right: 0;
        z-index: -1;
    }

.name-leadership {
    text-transform: uppercase;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: 700;
    padding: 20px;
}

.background-line-job {
    position: relative;
    background-color: #233a7a;
    width: 846px;
    float: right;
}

.job-leadership {
    text-transform: uppercase;
    font-size: 36px;
    color: #fff;
    text-align: center;
    margin: 0;
    font-weight: 700;
    padding: 20px;
}

/*slash*/
.box-slash {
    position: absolute;
    display: flex;
    top: 0;
    left: 15px;
    width: 50px;
    height: 90%;
    background: #fff;
    transform: skewX(30deg) translateY(2%);
}

    .box-slash > div {
        margin-right: 20px;
    }

        .box-slash > div:last-child {
            margin: 0;
        }

.slash-1 {
    position: absolute;
    width: 10px;
    height: 100%;
    color: #005591;
    background-color: currentColor;
}

.slash-2 {
    position: absolute;
    width: 10px;
    height: 100%;
    color: #005591;
    background-color: currentColor;
}

.slash-3 {
    position: absolute;
    width: 10px;
    height: 100%;
    color: #005591;
    background-color: currentColor;
}

    .slash-3::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10px;
        border-bottom: 16px solid currentColor;
        border-right: 10px solid transparent;
        filter: brightness(60%);
    }

    .slash-3::after {
        content: '';
        position: absolute;
        left: 10px;
        bottom: 0px;
        border-left: 15px solid currentColor;
        border-bottom: 10px solid transparent;
        filter: brightness(60%);
    }
/* introduce-value */
.introduce-value-bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.container-content {
    width: 100%;
}

.introduce-value-bg::before {
    content: '';
    position: absolute;
    background-image: url('/img/introduce-value-bg.png');
    width: 100%;
    height: 93%;
    background-size: cover;
    background-repeat: no-repeat;
    left: -30%;
    z-index: -1;
}

.introduct-title {
    color: #fff;
    padding-top: 10px;
}

.introduce-serial {
    color: #da1741;
    font-size: 40px;
    position: relative;
    left: -17px;
    top: -18px;
}

.space {
    padding-left: 30px;
}

.introduce-value-title {
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.introduce-value-description {
    color: #fff;
    margin-bottom: 30px;
    text-align: justify;
    width: 300px;
}

.image-electric-introduct {
    width: 1%;
    height: 100%;
    position: relative;
    display: block;
}

    .image-electric-introduct img {
        width: 522px;
        height: 746px;
        position: relative;
        display: block;
        top: 27px;
        right: 505px;
    }

/* history */

.image-history {
    /*    padding-top: 33.85417%;*/
    position: relative;
}

.history-caption {
    position: relative;
    background-image: url('/img/bg-content-history.png');
    background-size: cover;
    background-position: center center;
    padding: 10px 40px 25px;
    height: 275px;
}

.history-year {
    display: flex;
    justify-content: center;
    align-items: center;
}

.year-text {
    font-size: 70px;
    margin: 0 40px;
    font-weight: 700;
    color: #233a7a;
    position: relative;
}

    .year-text:after {
        content: "";
        position: absolute;
        z-index: 0;
        top: 74%;
        bottom: 0;
        width: 120%;
        height: 8px;
        left: -10%;
        right: -10%;
        background: radial-gradient(ellipse at 50% -3%, rgba(00, 00, 00, 0.5), rgba(97, 97, 97, 0.0) 40%);
    }

.year-description {
    display: flex;
    flex-direction: column;
    margin: auto;
    font-size: 18px;
    max-width: 878px;
    text-align-last: center;
    height: 150px;
    text-align: justify;
}

    .year-description p {
        margin: 0;
    }

.thumb-year {
    position: relative;
    text-align: center;
    font-size: 18px;
    padding: 21px;
    -webkit-tap-highlight-color: transparent;
}

    .thumb-year span {
        cursor: pointer;
        color: #bbb;
        transition: all .3s ease-in-out;
        font-weight: 700;
    }

        .thumb-year span:hover {
            color: #233a7a;
        }

.swiper-slide-thumb-active span {
    color: #233a7a;
}

.content-center-thumb-year {
    justify-content: center;
}
/*Home*/
.image-new-details {
    width: 100%;
    height: 100%;
    margin-top: 68px;
}
/* new content */
.new-item {
    position: relative;
}

.new-image img {
    width: 100%;
    height: 240px;
}

.new-title {
    margin: 0;
    padding: 8px;
    line-height: 20px;
    font-size: 15px;
    min-height: 60px;
}

.new-time {
    position: absolute;
    top: 0px;
    left: -8px;
    color: #337ab7;
    background-color: currentColor;
    font-size: 15px;
    font-weight: 500;
    padding-right: 4px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

    .new-time::after {
        content: '';
        position: absolute;
        left: 0px;
        bottom: -10px;
        border-top: 10.5px solid currentColor;
        border-left: 8.5px solid transparent;
        filter: brightness(60%);
    }

.new-item span {
    color: #fff;
    padding-left: 4px;
}

/* new-pagination */
.new-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-pagination {
    margin-top: 20px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 5px;
}

.pagination-item {
    list-style: none;
    margin: 0 12px;
}

.pagination-item-active .pagination-item-link {
    color: #000;
}


.pagination-item-link {
    --height: 30px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    color: #5a87a8;
    min-width: 40px;
    line-height: var(--height);
    height: var(--height);
}
/*detail*/
/* content */
.title-detail {
    font-size: 26px;
    line-height: 33px;
    margin: 0;
}

.time-detail, .seen-detail {
    display: flex;
    align-items: center;
}

    .time-detail img, .seen-detail img {
        width: 16px;
        margin-right: 6px;
    }

.time-date {
    position: relative;
}

    .time-date span:first-child {
        margin-right: 10px;
    }

    .time-date::after {
        content: '';
        display: block;
        position: absolute;
        border-left: 1px solid #444444;
        height: 14px;
        right: 77px;
        top: 50%;
        transform: translateY(-50%);
    }

.content-detail b {
    display: block;
    text-align: justify;
}

.content-detail p {
    margin-bottom: 20px;
    text-align: justify;
}

.content-detail img {
    width: 100%;
    height: 100%;
}

.content-detail em {
    display: block;
    text-align: center;
}

/*.content-detail strong {
    display: block;
}*/

.comment-detail {
    color: #0072c6;
    font-weight: 700;
}

.table-comment {
    width: 100%;
}

    .table-comment td {
        padding-bottom: 5px;
    }

    .table-comment input {
        width: 50%;
    }

    .table-comment .img-capcha img:first-child {
        width: 70px;
        height: 20px;
    }

    .table-comment .img-capcha img:last-child {
        width: 20px;
        height: 20px;
    }

    .table-comment textarea {
        height: 80px;
        width: 100%;
    }

.btn-submit {
    background: #0557A3;
    color: #fff;
    padding: 7px 15px 8px 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 5px;
    width: 14%;
}

.new-same-title, .libary-image-title, .associate-title, .fanpage-title {
    background-image: url('../img/bg-new-same.png');
    border-left: 3px solid #007EC0;
    color: #282925;
    display: inline-block;
    padding: 6px 6px 6px 9px;
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}


.new-list {
    list-style: none;
    padding-left: 0;
}

    .new-list .col-lg-3 {
        padding-left: 0px;
        padding-right: 0px;
    }

    .new-list .col-lg-9 {
        padding-left: 20px;
        padding-right: 0px;
        color: #0072c6;
    }

    .new-list li {
        display: flex;
        align-items: center;
        padding-bottom: 10px;
        min-height: 79px;
        height: auto;
        overflow: hidden;
        border-bottom: 1px dashed #d0cece;
    }

.new-link {
    display: flex;
    align-items: center;
    line-height: 18px;
}

    .new-link img {
        width: 120%;
    }

.libary-image span {
    color: #282925
}

.libary-image img {
    width: 100%;
}

.show-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.associate-link img, .fanpage-link img {
    width: 100%;
    border: 1px solid;
    margin-top: 2px;
    margin-bottom: 1px;
}

.col-first {
    width: 20%;
}

.col-second {
    width: 80%;
}

/*imageList-videoList*/
.imagelist-content img {
    width: 100%;
    height: 200px;
}

.imagelist-content:hover .imagelist-title {
    color: #007bff;
}

.imagelist-content .imagelist-title {
    margin: 0;
    padding: 14px 10px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.videolist-content img {
    width: 100%;
    height: 200px;
}

.videolist-content:hover .videolist-title {
    color: #007bff;
}

.videolist-content .videolist-title {
    margin: 0;
    padding: 14px 10px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 16px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
/*eventCalendarRoom*/
.event-calendar-box {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.event-calendar-choice-my {
    display: flex;
    align-items: center;
}

    .event-calendar-choice-my .btn {
        margin-left: 15px;
        font-size: 18px;
    }

        .event-calendar-choice-my .btn:hover {
            color: #deeb53;
        }

.event-calendar-title {
    text-align: center;
}

.arrow-left-icon,
.arrow-right-icon {
    font-size: 30px;
}

#month, #year {
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}


.event-calendar-month, .event-calendar-year {
    display: flex;
    align-items: center;
    margin: 0 15px 0 15px;
}

    .event-calendar-month .event-calendr-month-text,
    .event-calendar-year .event-calendr-year-text {
        margin: 0 15px 0 0;
        font-size: 18px;
    }

.event-bg-color-top {
    background-color: #0262ac;
}

    .event-bg-color-top th {
        font-size: 18px;
        color: #fff;
    }

.event-bg-color-bottom {
    background-color: #f8f9fb;
}

.event-calender-info-space {
    padding: 10px 20px;
}

.event-calender-info-center {
    text-align: center;
}

.event-bg-color-bottom + .event-bg-color-bottom {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.btn-more-calender {
    background: #0262ac;
    color: #fff;
}

.event-calendar-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
}

.event-calendar-pagination-item-link {
    font-size: 20px;
    display: flex;
    width: 30px;
    height: 30px;
    background-color: #2D6CDF;
    color: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
}

    .event-calendar-pagination-item-link:hover {
        color: #fff;
    }

/*room calendar*/
.calendar-choice-dmy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.room-icon {
    font-size: 25px;
    color: #005dc4;
    cursor: pointer;
}

.input-choice {
    padding: 5px 0;
    margin: 0 15px;
    width: 130px;
    text-align: center;
}

.room-calendar-col {
    padding: 20px;
    background-color: #0574c3;
}

.room-calendar-center {
    display: flex;
}

.room-icon-calendar {
    font-size: 20px;
    color: #fff;
}

.room-calendar-title {
    margin: 0 0 0 15px;
    font-size: 20px;
    color: #fff;
}

/*ucImagelist*/
.description-link {
    display: block;
    font-size: 16px;
    padding-top: 5px;
    color: #000;
    transition: .3s ease-in-out;
}

    .description-link:hover {
        color: #2D6CDF;
    }

/*infoWeb*/
.policy-title {
    font-size: 44px;
    color: #233a7a;
    margin-bottom: 10px;
}

/*responsive*/
@media (min-width: 1780px) and (max-width: 1920px) {
    .image-electric-introduct img {
        width: 700px;
        right: 678px;
    }

    .background-text-hbpd {
        right: 80px;
    }

        .background-text-hbpd .text-hpbd {
            width: 100%;
        }

        .background-text-hbpd .name-calendar-hpbd {
            font-size: 25px;
        }

    .scroller {
        position: relative;
        left: 8px;
        max-height: 320px;
    }

    .hpbd-employee .image-hpbd-person {
        width: 100px;
        height: 100px;
    }

    .text-job h1 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .text-job h3 {
        font-size: 20px;
    }

    .song-hbpd {
        right: 210px;
        bottom: 50px;
    }
}

@media (min-width: 1700px) and (max-width: 1780px) {
    .image-electric-introduct img {
        width: 660px;
        right: 640px;
    }

    .scroller {
        position: relative;
        left: 25px;
        max-height: 290px;
    }

    .background-text-hbpd .text-hpbd {
        width: 100%;
    }

    .background-text-hbpd {
        right: 78px;
    }

    .song-hbpd {
        bottom: 46px;
        right: 202px;
    }
}

@media (min-width: 1620px) and (max-width: 1700px) {
    .image-electric-introduct img {
        width: 620px;
        right: 600px;
    }

    .scroller {
        position: relative;
        left: 25px;
        max-height: 264px;
    }

    .background-text-hbpd .text-hpbd {
        width: 100%;
        right: -20px;
    }

    .scroller__inner {
        left: 66px;
    }

    .background-text-hbpd {
        right: 78px;
    }

    .song-hbpd {
        bottom: 46px;
        right: 202px;
    }
}

@media (min-width: 1537px) and (max-width: 1620px) {
    .image-electric-introduct img {
        width: 590px;
        right: 570px;
    }

    .background-text-hbpd {
        right: 50px;
    }

    .scroller {
        position: relative;
        left: 25px;
        max-height: 240px;
    }

    .background-text-hbpd .text-hpbd {
        width: 100%;
    }

    .song-hbpd {
        bottom: 38px;
        right: 182px;
    }
}

@media (max-width: 1537px) {
    .hpbd-employee .image-hpbd-person {
        width: 78px;
        height: 78px;
    }

    .song-hbpd {
        bottom: 40px;
        right: 162px;
    }
}

@media (min-width: 1500px) and (max-width: 1537px) {
    .hpbd-employee .image-hpbd-person {
        width: 78px;
        height: 78px;
    }

    .background-text-hbpd .text-hpbd {
        width: 90%;
        left: 45px;
    }

    .background-text-hbpd {
        right: 50px;
    }

    .scroller {
        position: relative;
        left: 50px;
        max-height: 208px;
    }

    .background-text-hbpd .text-hpbd {
        width: 100%;
    }
}

@media (min-width: 1440px) and (max-width: 1479px) {
    .scroller {
        max-height: 230px;
    }
}

@media (min-width: 1400px) and (max-width: 1440px) {
    .scroller {
        max-height: 218px;
    }
}

@media (min-width: 1400px) and (max-width: 1479px) {
    .image-center {
        left: 26%;
    }

    #showcase .image-slider {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 1420px) {
    .image-electric-introduct img {
        width: 500px;
        right: 478px;
    }

    .background-image-hbpd {
        position: relative;
        margin: 8% 23%;
    }

        .background-image-hbpd .background-hpbd {
            position: relative;
            width: 100%;
            height: 520px;
        }

    .background-text-hbpd .text-hpbd {
        width: 70%;
        left: 25px;
    }

    .scroller {
        max-height: 272px;
    }

    .scroller__inner {
        left: 25px;
    }
}

@media (max-width: 1360px) {
    .image-electric-introduct img {
        width: 465px;
        right: 440px;
    }
}

@media (max-width: 1320px) {
    .hpbd-employee .image-hpbd-person {
        width: 68px;
        height: 68px;
    }

    .text-job h1 {
        margin-bottom: 10px;
    }

    .scroller__inner {
        left: 55px;
    }
}
/* Tablet */
@media (min-width: 740px) and (max-width: 1399px) {
    .main-slide,
    #product-content {
        display: none;
    }

    .main-swiper {
        display: block;
    }

    .product-background {
        background-size: cover;
        background-position: center center;
        overflow: hidden;
        height: unset;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main-swiper .swiper-image {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: auto;
        margin-bottom: 15px;
        margin-left: auto;
        box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
        border-radius: 50%;
        background: #fff;
        width: 160px;
        height: 160px;
        overflow: hidden;
    }

    .swiper-image .image-slider {
        position: unset;
        transition: all .2s ease-in-out;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-caption .title {
        text-align: center;
        font-size: 18px;
        margin: 0;
        color: #fff;
        min-height: 46px;
        font-weight: 300;
    }

    .swiper-caption {
        min-height: 200px;
    }

        .swiper-caption .description {
            font-size: 14px;
            color: #fff;
        }
}

@media (max-width: 1280px) {
    .image-electric-introduct img {
        width: 430px;
        right: 400px;
    }

    .background-image-hbpd {
        margin: 8% 20%;
    }

    .background-text-hbpd .text-hpbd {
        width: 70%;
        left: 25px;
    }

    .scroller__inner {
        left: 28px;
    }
}

@media (max-width: 1240px) {
    .scroller {
        max-height: 275px;
    }
}

@media (max-width: 1160px) {
    .background-text-hbpd .text-hpbd {
        width: 60%;
        left: 70px;
    }

    .hpbd-employee .image-hpbd-person {
        width: 48px;
        height: 48px;
    }

    .text-job h1 {
        font-size: 18px;
    }

    .text-job h3 {
        font-size: 14px;
    }

    .scroller__inner {
        gap: 0;
    }

    .scroller__inner {
        left: 70px;
    }

    .scroller {
        max-height: 300px;
    }

    .song-hbpd {
        right: 138px;
    }
}

@media (max-width: 1030px) {
    .background-image-hbpd {
        margin: 10% 15%;
    }
}
/* 1024px 64em -> 1279px 79.9375em */
@media (min-width: 770px) and (max-width: 1200px) {
    .header-link, .header-account {
        font-size: 10px;
    }

    .flex-colume-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .button-event {
        flex-direction: unset;
        justify-content: center;
        margin-top: 10px;
    }

        .button-event .swiper-button-next {
            right: -8px;
            top: 22px;
        }

        .button-event .swiper-button-prev {
            left: -5px;
        }
}
/* Mobile & tablet */
@media (max-width: 1200px) {
    /*base*/
    .section .row > * {
        margin-top: 15px;
    }
    /* slider banner */
    .swiper-pagination {
        display: none;
    }

    .caption-title {
        padding: 10px 0;
        line-height: 30px;
        font-size: 20px;
    }

    /*tam nhin*/
    .box-vision--mission {
        width: 65%;
    }

    .about-vision img {
        width: 70px;
        height: 70px;
    }

    .title-vision {
        font-size: 20px;
    }

    .description-vision {
        font-size: 16px;
    }
    /*gia tri*/
    .value-description-hunger p,
    .value-description-standard p,
    .value-description-quality p,
    .value-description-professional p,
    .value-description-responsibility p {
        opacity: 1;
        max-height: 100%;
        font-size: 16px;
    }

    .value-content:hover .value-description-hunger p,
    .value-content:hover .value-description-standard p,
    .value-content:hover .value-description-quality p,
    .value-content:hover .value-description-professional p,
    .value-content:hover .value-description-responsibility p {
        max-height: 100%;
    }

    .image-value img {
        opacity: .5;
    }

    /*doi tac*/
    .button-unit .swiper6-button-next {
        right: 200px;
    }

    /*Gioi thieu*/
    /* ban lanh dao v2 */
    .background-line-job {
        width: 686px;
    }

    .box-slash {
        transform: skewX(26deg) translateY(2%);
    }

    .shadow-hexagon::before {
        clip-path: polygon(25% 0, 74% 0%, 100% 50%, 79% 100%, 32% 100%, 0% 40%);
    }
    /*thư ngỏ*/
    .space-top {
        margin-top: -15px;
    }

    .title-background {
        height: 100%;
    }

        .title-background img {
            position: relative;
            height: 100%;
            top: 0;
        }
    /*gia tri*/
    .image-electric-introduct img {
        display: none;
    }

    .space {
        padding-left: 15px;
    }

    .introduce-value-bg::before {
        left: 0;
        height: 98%;
    }

    .introduce-serial {
        font-size: 30px;
        left: 17px;
        top: -13px;
    }

    /*phonebook*/
    .phonebook-detail-contact ul {
        padding-left: 20px;
    }

    /*new-details*/
    .new-list li {
        display: flex;
        align-items: center;
        padding-bottom: 15px;
        min-height: 220px;
        overflow: hidden;
        border-bottom: 1px dashed #d0cece;
    }

    .new-link img {
        width: 300px;
        height: 180px;
        object-fit: cover;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .header-link, .header-account {
        font-size: 7px;
    }
    /*tin noi bat*/
    .news-title {
        font-size: 30px;
    }
    /*tam nhin*/
    .box-vision--mission {
        width: 70%;
        padding: 20px;
    }

    .description-vision {
        font-size: 14px;
    }
    /*doi tac*/
    .title-and-button {
        display: flex;
        align-items: center;
    }

    .button-unit .swiper6-button-prev, .button-unit .swiper6-button-next {
        position: unset;
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }

    .title-unit {
        margin: 0 0 0 -15px;
    }

    .button-unit {
        margin: 0 0 0 5px;
    }

    /*new-details*/
    .btn-submit {
        width: 100%;
        text-align: center;
    }

    /* ban lanh dao v2*/
    .shadow-hexagon {
        width: 25%;
    }

    .line-leadership {
        width: 75%;
    }

    .hexagon {
        height: 180px;
    }

    .image-leader {
        height: 100%;
    }

    .name-leadership {
        font-size: 25px;
    }

    .job-leadership {
        font-size: 25px;
    }

    .background-line-job {
        width: 474px;
    }

    .slash-3::before {
        border-bottom: 17px solid currentColor;
    }

    .slash-3::after {
        border-bottom: 16px solid transparent;
    }
}

@media (max-width: 887px) {
    .background-image-hbpd {
        margin: 10% 10%;
    }
}

/* Mobile */
@media (max-width: 770px) {
    .background-text-hbpd .text-hpbd {
        width: 55%;
        left: 109px;
    }

    .scroller__inner {
        left: 105px;
    }

    .scroller {
        max-height: 310px;
    }

    .header-link, .header-account {
        font-size: 14px;
    }
    /*slider banner home*/
    .swiper-slide .banner-slide {
        margin-top: 62px;
    }

    .main-background {
        height: 300px;
        background-position: 67% 38px;
    }

    .image-new-details {
        margin-top: 38px;
    }
    /*base*/
    .content-breakcumb-title {
        padding-right: 40px;
        font-size: 20px;
    }

    .section-bg {
        padding-bottom: 30px;
    }

    .main-title {
        font-size: 28px;
    }

    .title-child {
        font-size: 28px;
    }

    .header-left::after {
        height: 70px;
        right: -60px;
    }

    .header-image img {
        width: 100%;
        max-width: 94px;
        max-height: 55px;
        object-fit: contain;
    }

    .right-langue {
        padding: 16px 0;
    }

    .right-bottom {
        display: none;
    }

    .nav-mobile-menu {
        display: flex;
    }

    .caption-title {
        padding: 4px 0;
        font-size: 15px;
        line-height: 20px;
    }

        .caption-title::before {
            transform: skewX(25deg) translateX(20vw);
        }

    .header-item-account {
        border-top: 1px solid #fff;
    }
    /*ucTinNoiBat*/
    .news-title {
        margin-top: 0;
        font-size: 24px;
    }

    .news-item-time {
        margin-right: 0;
        padding-right: 0;
        font-size: 12px;
    }

        .news-item-time::before {
            right: 10px;
        }

    .news-item-title {
        font-size: 12px;
    }

    /*branch-establish*/
    .branch-establish {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .branch-establish-title {
        font-size: 16px;
    }

    .branch-establish-item--count {
        font-size: 24px;
    }

    .branch-establish-item--title {
        font-size: 12px;
    }

    .branch-establish-item--vnd {
        font-size: 10px;
    }

    /*vision--mission*/
    .box-vision--mission {
        padding: 15px;
    }

    .about-vision img {
        width: 50px;
        height: 50px;
    }

    .title-vision {
        font-size: 10px;
    }

    .description-vision {
        font-size: 12px;
    }

    /*giá trị*/

    .value-content img {
        opacity: 0.5;
    }

    .value-description-hunger p,
    .value-description-standard p,
    .value-description-quality p,
    .value-description-professional p,
    .value-description-responsibility p {
        opacity: 1;
        max-height: 100%;
        font-size: 16px;
    }

    /*sản phẩm*/
    .main-slide,
    #product-content {
        display: none;
    }

    .main-swiper {
        display: block;
    }

    .product-background {
        background-size: cover;
        background-position: center center;
        overflow: hidden;
        height: unset;
    }

    .main-swiper .swiper-image {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: auto;
        margin-bottom: 15px;
        margin-left: auto;
        box-shadow: 0 0 10px 1px rgba(0, 0, 0, .1);
        border-radius: 50%;
        background: #fff;
        width: 160px;
        height: 160px;
        overflow: hidden;
    }

    .swiper-image .image-slider {
        position: unset;
        transition: all .2s ease-in-out;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-caption .title {
        text-align: center;
        font-size: 18px;
        margin: 0;
        color: #fff;
        min-height: 46px;
        font-weight: 300;
    }

    .swiper-caption {
        min-height: 200px;
    }

        .swiper-caption .description {
            font-size: 14px;
            color: #fff;
        }

    .content-center {
        display: unset;
    }

    /* đối tác*/
    .title-and-button {
        display: flex;
        align-items: center;
    }

    .button-unit .swiper6-button-prev, .button-unit .swiper6-button-next {
        position: unset;
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }

    .button-unit {
        margin: 0 0 0 5px;
    }

    .title-unit {
        margin: 0;
        line-height: 30px;
    }

    /*tin tuc - su kien*/
    .flex-colume-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .button-event {
        flex-direction: unset;
        justify-content: center;
        margin-top: 10px;
    }

        .button-event .swiper-button-next {
            right: -8px;
            top: 22px;
        }

        .button-event .swiper-button-prev {
            left: -5px;
        }

    .footer-image {
        padding-top: 30px;
    }

    /*gioi thieu*/
    .leadership-name {
        font-size: 26px;
    }

    /*hinh thanh phat trien*/
    .introduce-value-description {
        width: 100%;
        margin-bottom: 15px;
    }

    .introduce-serial {
        left: 0px;
        top: 0px;
    }

    .content-center-thumb-year {
        display: flex;
        justify-content: unset;
    }

    /*tin tức + chi tiết*/
    h1.entry-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-main {
        height: 62px;
    }

    .section {
        scroll-margin-top: 50px;
    }

    .content-breakcumb {
        scroll-margin-top: 60px;
    }
    /*banh lanh dao v2*/
    .background-line-job {
        width: 100%;
        background-color: unset;
    }

        .background-line-job::before {
            content: "";
            position: absolute;
            background-color: #233a7a;
            width: 70%;
            top: 0;
            height: 100%;
            left: 72px;
            z-index: -1;
            transform: skewX(26deg);
        }

        .background-line-job::after {
            content: "";
            position: absolute;
            background-color: #233a7a;
            width: 20%;
            top: 0;
            height: 100%;
            right: 0;
            z-index: -1;
        }

    .name-leadership {
        font-size: 20px;
    }

    .job-leadership {
        font-size: 20px;
    }

    .box-slash {
        height: 84%;
    }

    .song-hbpd {
        right: 120px;
    }

        .song-hbpd audio {
            height: 30px;
            width: 230px;
        }
}

@media (max-width: 699px) {
    /*Tầm nhìn sứ mệnh*/

    .box-vision--mission {
        width: 65%;
    }

    .about-vision + .about-vision {
        margin-top: 15px;
    }

    .box-vision {
        max-width: 100%;
    }

    .title-vision {
        margin: 0 0 6px 0;
    }

    .title-vision {
        font-size: 14px;
    }

    .description-vision {
        font-size: 12px;
    }

    .about-vision img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 670px) {
    /*ban lanh dao v2*/
    .name-leadership {
        font-size: 16px;
    }

    .job-leadership {
        font-size: 16px;
    }

    .box-slash {
        height: 82%;
    }

    .slash-3::after {
        border-bottom: 20px solid transparent;
    }

    .shadow-hexagon::before {
        clip-path: polygon(25% 0, 74% 0%, 100% 48%, 79% 100%, 29% 100%, 0% 40%);
    }
}

@media (max-width: 640px) {
    /*ban lanh dao v2*/
    .hexagon {
        height: 160px;
    }

    .name-leadership {
        font-size: 16px;
    }

    .job-leadership {
        font-size: 16px;
    }

    .box-slash {
        height: 92%;
        transform: skewX(24deg) translateY(2%);
    }

    .slash-3::after {
        border-bottom: 20px solid transparent;
    }

    .shadow-hexagon::before {
        clip-path: polygon(25% 0, 74% 0%, 100% 50%, 79% 100%, 29% 100%, 0% 40%);
    }

    .background-image-hbpd {
        margin: 10% 4%;
    }

    .history-caption {
        height: 340px;
    }
}

@media (max-width: 599px) {
    .pulse {
        height: 70px;
        width: 70px;
        right: 30px;
        bottom: 28px;
        top: unset;
        z-index: 1;
    }

    .about-vision + .about-vision {
        margin-top: 10px;
    }

    .title-vision {
        margin: 0 0 6px 0;
    }

    .title-vision {
        font-size: 12px;
    }

    .description-vision {
        font-size: 10px;
    }

    .about-vision img {
        width: 35px;
        height: 35px;
    }

    .image-staff img {
        height: 315px;
    }
}

@media (min-width: 576px) {
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .caption-title {
        font-size: 12px;
    }

    /*Gioi thieu*/
    /*lich su hinh thanh*/
    .center-text {
        display: block;
    }

    .leadership-name {
        font-size: 20px;
        text-align: center;
    }

    .leadership-job {
        font-size: 14px;
        text-align: center;
    }

    .leadership-description p {
        font-size: 14px;
        text-align: center;
    }

    .leadership-bot-content {
        padding: 5px;
    }

    .leadership-bot-title {
        font-size: 12px;
        height: 25px;
    }

    .leadership-bot-description {
        font-size: 12px;
    }

    .year-text {
        font-size: 50px;
        margin: 0 20px;
    }

    .history-year .swiper-button-prev, .history-year .swiper-button-next {
        font-size: 38px;
    }

    /*new-details*/
    .new-list li {
        min-height: 166px;
    }

    .new-link img {
        width: 180px;
        height: 100px;
        object-fit: cover;
        margin-right: 0;
    }
}

@media (max-width: 550px) {
    .background-text-hbpd .text-hpbd {
        width: 50%;
        left: 164px;
    }

    .scroller__inner {
        left: 150px;
    }

    .scroller {
        max-height: 320px;
    }

    .text-job h1 {
        font-size: 16px;
    }

    .text-job h3 {
        font-size: 12px;
    }

    .song-hbpd audio {
        height: 30px;
        width: 208px;
    }

    .song-hbpd {
        right: 74px;
        bottom: 34px;
    }
    /*ban danh lao v2*/
    .hexagon {
        height: 140px;
    }

    .name-leadership {
        font-size: 14px;
        padding: 16px;
    }

    .job-leadership {
        padding: 16px;
        font-size: 14px;
    }

    .box-slash {
        height: 91%;
        transform: skewX(24deg) translateY(2%);
    }

    .slash-3::before {
        border-bottom: 18px solid currentColor;
    }
}

@media (max-width: 510px) {
    .box-vision--mission {
        width: 100%;
    }

    .title-vision {
        font-size: 10px;
    }

    .description-vision {
        font-size: 8px;
    }

    .about-vision img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 500px) {
    .pagination a {
        padding: 7px;
    }

    .content-breakcumb-title {
        padding-right: 20px;
        font-size: 15px;
    }

    .content-breakcumb-item {
        padding-right: 5px;
    }

    .right-icon {
        padding-right: 5px;
    }

    .right-icon-1 {
        padding-right: 5px;
    }

    .right-icon-2 {
        padding-right: 5px;
    }

    .content-breakcumb-list {
        font-size: 12px;
        padding: 11px 0;
    }
    /*ban lanh dao v2*/
    .hexagon {
        height: 120px;
    }

    .name-leadership {
        padding: 12px;
        font-size: 12px;
    }

    .job-leadership {
        padding: 12px;
        font-size: 12px;
    }

    .box-slash {
        height: 89%;
        transform: skewX(24deg) translateY(2%);
    }
}

@media (max-width: 450px) {
    .background-image-hbpd .background-hpbd {
        height: 390px;
    }

    .background-image-hbpd {
        margin: 28% 4%;
    }

    .background-text-hbpd .text-hpbd {
        width: 40%;
        left: 164px;
    }

    .scroller {
        max-height: 240px;
    }

    .text-job h1 {
        font-size: 10px;
    }

    .text-job h3 {
        font-size: 8px;
    }

    .song-hbpd {
        right: 46px;
        bottom: 18px;
    }

    .year-description p {
        font-size: 16px;
    }

    .col-first {
        width: 35%;
    }

    .table-comment input {
        width: 100%;
    }
    /* ban lanh dao v2 */
    .shadow-hexagon::before {
        transform: translate(31%, 46%);
    }

    .hexagon {
        height: 100px;
    }

    .name-leadership {
        padding: 12px;
        font-size: 10px;
        margin-left: 30px;
    }

    .job-leadership {
        padding: 12px;
        font-size: 10px;
        margin-left: 34px;
    }

    .line-leadership {
        padding: 10px 0;
    }

    .background-line-job::before {
        width: 65%;
    }

    .space-bottom {
        margin-bottom: 30px;
    }

    .box-slash {
        transform: skewX(27deg) translateY(2%);
    }

    .slash-3::before {
        border-bottom: 8px solid currentColor;
    }

    .slash-3::after {
        border-bottom: 16px solid transparent;
    }
}

@media (max-width: 425px) {
    /*header search*/
    .header-left::after {
        right: -40px;
    }

    .right-langue {
        width: 50%;
    }

    .input-search {
        width: 70%;
    }

    /*slider banner home*/

    .main-title {
        font-size: 20px;
    }

    .title-child {
        font-size: 20px;
    }

    .caption-title {
        font-size: 9px;
    }

        .caption-title::before {
            transform: skewX(25deg) translateX(16vw);
        }

    /*tin noi bat*/
    .slide-vertical {
        margin-top: -15px;
    }

    /*tam nhin*/
    .img-vision--mission img {
        height: 200px;
    }

    /* tin tuc*/
    .event-tab-item p {
        font-size: 14px;
    }

    .event-caption-new {
        font-size: 16px;
    }

    /*gioi thieu*/
    /*ban lanh dao*/
    .image-staff img {
        height: 200px;
    }

    /*hinh thanh phat trien*/
    .history-caption {
        padding: 10px 20px 25px;
    }

    .leadership-bot-content {
        height: 60px;
        padding: 5px;
    }

    /*lich su kien*/
    .event-bg-color-top th {
        font-size: 12px;
    }

    .event-bg-color-bottom td {
        font-size: 10px;
    }

        .event-bg-color-bottom td:last-child {
            text-align: center;
        }

    .event-calendar-choice-my .event_fillter_cell {
        padding: 0 3px;
    }

    .container .list-search-title {
        font-size: 16px;
    }


    #danhbaContent .phonebook-companytitle {
        font-size: 16px;
    }

    .phonebookcontainer ol {
        padding-left: 15px;
    }

    .group-padding .select-unit,
    .group-padding .select-group,
    .group-padding .enter-search {
        width: 200px;
    }
}

@media (max-width: 376px) {
    .pulse {
        height: 50px;
        width: 50px;
    }

    .background-close {
        width: 30px;
        height: 30px;
    }

        .background-close .close-icon {
            font-size: 16px;
        }

    .background-text-hbpd .text-hpbd {
        width: 40%;
        left: 152px;
    }

    .scroller {
        max-height: 256px;
    }

    .scroller__inner {
        left: 130px;
    }
    /*header*/
    .icon-langue {
        margin: 0;
    }

    /*tin tuc - su kien*/
    .event-caption-new {
        min-width: 230px;
    }

    /*Gioi thieu*/
    .main-background {
        height: 300px;
        background-position: 74% 36px;
    }

    /*ban lãnh đạo*/

    .center-text {
        display: block;
    }

    .leadership-name {
        font-size: 20px;
        text-align: center;
    }

    .leadership-job {
        font-size: 14px;
        text-align: center;
    }

    .leadership-description p {
        font-size: 14px;
        text-align: center;
    }

    .leadership-bot-title {
        font-size: 12px;
        height: 25px;
    }

    .leadership-bot-description {
        font-size: 12px;
    }

    /*gia tri*/
    .space {
        padding-left: 15px;
    }

    .introduce-serial {
        top: 0;
        left: 0;
        font-size: 30px;
    }

    .introduce-value-description {
        width: 100%;
        margin-bottom: 10px;
    }

    .year-text {
        font-size: 35px;
    }

    .history-year .swiper-button-prev, .history-year .swiper-button-next {
        font-size: 40px;
    }

    .year-description {
        font-size: 16px;
    }
    /*new-details*/
    .new-list li {
        min-height: 100px;
    }

    .new-link img {
        width: 130px;
        height: 80px;
    }
    /* ban lanh dao v2 */
    .hexagon {
        height: 80px;
    }

    .background-line-job::before {
        width: 58%;
        left: 64px;
    }

    .line-leadership {
        padding: 8px;
    }

    .name-leadership {
        font-size: 7px;
    }

    .job-leadership {
        font-size: 7px;
    }

    .box-slash {
        height: 89%;
    }

    .slash-3::before {
        border-bottom: 7px solid currentColor;
    }

    .slash-3::after {
        border-bottom: 7px solid transparent;
    }
}

@media (max-width: 340px) {
    .background-text-hbpd .text-hpbd {
        left: 136px;
    }

    .hpbd-employee .image-hpbd-person {
        width: 38px;
        height: 38px;
    }

    .scroller__inner {
        left: 110px;
    }
}
