html, body {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

body {
    font-family: "Be Vietnam Pro", sans-serif;
}

.bg-page-50 {
    background: linear-gradient(to right, white 50%, #00172F 50%);
}

.py-5x {
    padding-top: 50px;
    padding-bottom: 50px;
}

.vh-50 {
    height: 50vh;
}

/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.setting-menu >.row.no-gutters > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-section:before, .menu-section:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    background: rgb(0 0 0 / 10%);
    z-index: -1;
}

.menu-section:after {
    transform: skew(-35deg);
    right: -33.333333%;
}

.menu-section:before {
    left: -33.333333%;
    transform: skew(-35deg);
}

.btn-menu-mobile:before {
    width: 60%;
}

.btn-menu-mobile:hover span {
    width: 60%;
}

.btn-menu-mobile:hover:before {
    width: 30%;
}

.menu-top {
    display: flex;
    justify-content: flex-end;
}

.social {
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
}

.social a {
    background: var(--color-main);
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: white;
}

.search-web .form-control {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.btn-search {
    border: 0;
    width: 5rem;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
    background: white;
}

.rounded-1 {
    border-radius: 1rem !important;
}

.article-menu-title {
    color: white;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

.menu-section .article-item {
    background: none;
}

.menu-section .article-item .inner-content {
    padding: 0;
}

.entire-info-website p svg {
    margin-right: 1rem;
}

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.page-section {
    position: relative;
    height: 100vh;
    /* Each section takes full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-home {
    color: var(--color-main);
}

.intro-text {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    left: -9rem;
    gap: 6rem;
}

.intro-text > span {
    font-size: 45rem;
    font-weight: bold;
    animation: text-intro-big ease 2s;
    line-height: 1;
}

@keyframes text-intro-big {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.intro-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-table;
    font-size: 4rem;
    animation: text-intro ease 3s;
}

@keyframes text-intro {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.intro-text ul li {
    background: white;
    padding: 1rem 4rem 1rem 2rem;
    font-weight: 900;
    text-transform: capitalize;
    transition: all .5s ease-out;
    position: relative;
    display: inherit;
    margin-bottom: 1.5rem;
}

.intro-text ul li:last-child {
    margin: 0;
}

.intro-text ul li:hover {
    padding: 1rem 2rem 1rem 4rem;
}

.find-out {
    font-size: 30px;
    color: #F9F9F9;
    font-weight: 900;
}

.btn-find-out {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-find-out a {
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: normal;
    color: white;
    border: 1px solid;
}

.btn-find-out a:hover {
    color: var(--color-highlight);
}

.btn-scroll {
    display: inline-flex;
    height: 9rem;
    width: 5px;
    background: #D7D7D7;
    overflow: hidden;
    border-radius: 10rem;
    margin-bottom: 1rem;
}

.icon-scroll {
    position: relative;
    display: inherit;
    width: 5px;
    background: var(--color-main);
    animation: scroll ease 2s infinite;
}

@keyframes scroll {
    0% {
        height: 2rem;
    }

    100% {
        height: 100%;
    }
}

.join-us .swiper-main--title {
    color: var(--color-highlight);
    font-size: 36px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.join-us .swiper-main--title:after {
    content: "";
    background: var(--color-highlight);
    display: inline-block;
    height: 3px;
    width: 10rem;
}

.join-us .swiper-main--description {
    font-size: 18px;
}

.join-us-text {
    text-align: right;
    margin-right: 1rem;
    font-size: 5rem;
    font-weight: 900;
}

.join-us-text , .join-us-text a {
    color: #818181;
}

.article-item {
    background: #F7F9FC;
    overflow: hidden;
    border-radius: 1rem;
}

.article-item .inner-content {
    padding: 1rem;
}

.animation-appear {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0%;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: .5;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.animation-left-x {
    animation: left-x linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes left-x {
    from {
        opacity: 0;
        transform: translateX(-100%)
    }

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

.animation-op {
    animation: opacity linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animation-right-x {
    animation: right-x linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes right-x {
    from {
        opacity: 0;
        transform: translateX(100%)
    }

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

#sec4 > div {
    width: 100%;
    height: 100vh;
}

.album-thumb, .ratio-image {
    position: relative;
    height: 100vh;
}

.album-thumb .swiper-slider-main {
    height: 100vh;
}

.ratio-image {
    overflow: hidden;
}

.ratio-image img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.watch-section.active .album-thumb .album-item .inner-image {
    -webkit-animation: slit-out-diagonal-1 0.5s ease-in both;
    animation: slit-out-diagonal-1 0.5s ease-in both;
}

@keyframes slit-out-diagonal-1 {
    0% {
        -webkit-transform: translateZ(-800px) rotate3d(1, 1, 0, 90deg);
        transform: translateZ(-800px) rotate3d(1, 1, 0, 90deg);
        opacity: 0;
    }

    54% {
        -webkit-transform: translateZ(-160px) rotate3d(1, 1, 0, 87deg);
        transform: translateZ(-160px) rotate3d(1, 1, 0, 87deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(0) rotate3d(1, 1, 0, 0);
        transform: translateZ(0) rotate3d(1, 1, 0, 0);
        opacity: 1;
    }
}

.album-thumb .swiper-thumbs {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 55%;
}

.watch-section.active .album-thumb .swiper-thumbs {
    -webkit-animation: scale-up-hor-right 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-hor-right 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes scale-up-hor-right {
    0% {
        -webkit-transform: scaleX(0.4);
        transform: scaleX(0.4);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
        opacity: 0;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
        opacity: 1;
    }
}

.ratio-image a:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 0%, black 100%);
    width: 100%;
    height: 50%;
    z-index: 1;
}

.album-thumb .article-title {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 1;
    font-size: 3rem;
    padding: 0 12% 0 5%;
}

.album-thumb .article-title a {
    color: white;
}

.album-thumb-navigation {
    position: absolute;
    bottom: 2rem;
    left: 2%;
    display: flex;
    z-index: 1;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.album-thumb-navigation > div {
    position: relative;
    top: initial;
    transform: none;
    width: 5rem;
    height: 5rem;
    border: 1px solid;
    color: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-thumb .number {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    color: white;
    z-index: 1;
    font-size: 4.8rem;
    line-height: 1;
}

.album-thumb .swiper-slide-active .number {
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.line-x {
    width: 60%;
    height: 1px;
    background: white;
    position: absolute;
    bottom: 4.5rem;
    right: 15%;
    z-index: 1;
}

.album-thumb .swiper-slide-active .line-x {
    animation: line-w 2s linear;
}

@keyframes line-w {
    0% {
        opacity: 0;
        width: 0%
    }

    40% {
        opacity: 1;
        width: 40%
    }

    100% {
        opacity: 1;
        width: 60%
    }
}

.album-inner {
    padding: 20% 10%;
}

.album-item .album-title .title-section {
    margin: 0;
}

/*Gioi thieu*/
.banner-16-9 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    animation: shrinkBanner 1s ease-in-out 2s forwards;
    margin-bottom: 3rem;
    transform: scale(1.6);
}

.banner-16-9 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@keyframes shrinkBanner {
    0% {
        height: 100vh;
    }

    100% {
        height: 400px;
        transform: scale(1);
    }
}

.about-us-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 2rem;
}

.box-history {
    position: relative;
}

.item-history {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 370px;
    overflow: hidden;
    padding: 2rem;
}

.bg-swiper-history {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-swiper-history img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.on-background:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #00172F;
    z-index: 1;
    opacity: .6;
}

.inner-history {
    position: relative;
    z-index: 2;
}

.swiper-history--title {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--color-highlight);
    border-bottom: 2px solid var(--color-highlight);
    line-height: normal;
    margin-bottom: 1rem;
}

.swiper-history--link {
    display: flex;
    justify-content: space-between;
    color: var(--color-highlight);
}

.swiper-history--description {
    margin: 0;
}

.on-background * {
    color: white;
    border-color: white;
}

.background-bot {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
}

.color-history {
    background: #F3FEFF;
}

.watch-section.active .background-bot {
    animation: move-history 1.25s linear;
}

.i-top-l, .i-top-r, .i-bottom-l, .i-bottom-r {
    position: absolute;
    z-index: 1;
}

.i-top-l {
    top: 1rem;
    left: 1rem;
}

.i-top-r {
    top: 1rem;
    right: 1rem;
}

.i-bottom-l {
    bottom: 1rem;
    left: 1rem;
}

.i-bottom-r {
    bottom: 1rem;
    right: 1rem;
}

@keyframes move-history {
    0% {
        bottom: -200px;
    }

    100% {
        bottom: -80px;
    }
}

.box-m0gsxj8 {
    position: relative;
}

.sub-image-1 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-25%);
    width: 25%;
    z-index: 1;
    border: 1rem solid white;
}

.watch-section.active .sub-image-1 {
    animation: slit-in-vertical 1s ease-out both;
}

@keyframes slit-in-vertical {
    0% {
        -webkit-transform: translateZ(-800px) rotateY(90deg);
        transform: translateZ(-800px) rotateY(90deg);
        opacity: 0;
    }

    54% {
        -webkit-transform: translateZ(-160px) rotateY(87deg);
        transform: translateZ(-160px) rotateY(87deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(-25%) rotateY(0);
        transform: translateZ(-25%) rotateY(0);
    }
}

.sub-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30vh;
    height: 30vh;
}

.watch-section.active .sub-image-2 {
    animation: roll-in-right 1s ease-out both;
}

@keyframes roll-in-right {
    0% {
        -webkit-transform: translateX(800px) rotate(540deg);
        transform: translateX(800px) rotate(540deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

.sub-image-1 img, .sub-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-section.active .image-m0gsxj8 img {
    animation: fade-in-fwd 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.box-m0gsxj8 .inner-history-year:after {
    content: "";
    position: absolute;
    top: 0;
    left: -15px;
    width: 15rem;
    height: 100vh;
    clip-path: polygon(0 0%, 70% 0, 60% 100%, 0% 100%);
    background: var(--color-highlight);
    z-index: 1;
}

.inner-history-year {
    padding: 15vh 8vh 10vh 12vh;
}

.box-m0gsxj8 .inner-history-year .title {
    font-size: 4.2rem;
}

.inner-history-year .title {
    font-size: 3.2rem;
    ; line-height: normal;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 1.5rem;
}

.watch-section.active .inner-history-year .title {
    animation: tracking-in-expand 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.inner-history-year .desc {
    overflow: hidden;
    max-height: 50rem;
}

.watch-section.active .desc {
    animation: tracking-in-contract-bck 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(400px);
        transform: translateZ(400px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes tracking-in-contract-bck {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(400px);
        transform: translateZ(400px);
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.year-fix {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(102, 102, 102, 0.00) 100%);
    backdrop-filter: blur(10px);
    padding: 11rem 1rem 1rem 1rem;
    color: rgb(255 255 255 / 50%);
    font-size: 2rem;
    font-weight: 600;
    list-style: none;
}

.year-fix li:hover {
    color: white;
    cursor: context-menu;
}

.watch-section.active .image-8tny9jv {
    animation: scale-up-tr 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@keyframes scale-up-tr {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
    }
}

.number-year {
    position: absolute;
    bottom: 0;
    font-size: 20vh;
    font-weight: 900;
    color: #EBEBEB;
    line-height: 1;
}

.watch-section.active .box-8tny9jv .number-year {
    animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    left: 0;
}

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.image-l2skeig {
    position: relative;
    top: 10%;
    left: 5%;
}

.image-l2skeig:before, .image-l2skeig:after {
    content: "";
    position: absolute;
    background: var(--color-highlight);
    width: 10rem;
    height: 10rem;
    z-index: -1;
}

.image-l2skeig:before {
    top: -1rem;
    right: -1rem;
}

.image-l2skeig:after {
    bottom: -1rem;
    left: -1rem;
}

.box-l2skeig .number-year, .box-tno1le4 .number-year, .box-xubn4i7 .number-year {
    right: 0;
}

.watch-section.active .box-l2skeig .number-year, .watch-section.active .box-tno1le4 .number-year, .watch-section.active .box-xubn4i7 .number-year {
    animation: slide-in-right 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.watch-section.active .image-l2skeig img, .watch-section.active .image-xubn4i7 img {
    animation: slit-in-horizontal 1s ease-out both;
}

@keyframes slit-in-horizontal {
    0% {
        -webkit-transform: translateZ(-800px) rotateX(90deg);
        transform: translateZ(-800px) rotateX(90deg);
        opacity: 0;
    }

    54% {
        -webkit-transform: translateZ(-160px) rotateX(87deg);
        transform: translateZ(-160px) rotateX(87deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateZ(0) rotateX(0);
        transform: translateZ(0) rotateX(0);
    }
}

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

.watch-section.active .image-tno1le4 img {
    animation: scale-in-ver-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes scale-in-ver-bottom {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        opacity: 1;
    }
}

.box-xubn4i7 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-xubn4i7:after {
    content: "";
    width: 24vh;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-highlight);
    z-index: -1;
}

.image-uylq8wi {
    padding-top: 28%;
    margin: 0 5vw;
}

.box-uylq8wi .number-year {
    font-size: 18vw;
    left: 0;
    right: 0;
    opacity: .4;
}

.box-uylq8wi:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-highlight);
    z-index: -1;
    width: 24vh;
    height: 80%;
    display: block;
}

.watch-section.active .box-uylq8wi:after {
    animation: after-horizontal 2s ease-in-out forwards;
}

@keyframes after-horizontal {
    0% {
        width: 24vh;
        height: 80%;
    }

    100% {
        width: 95%;
        height: 24vh;
        left: 50%;
        transform: translateX(-50%);
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

/* Doi ngu*/
.intro-team {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 4;
}

.intro-team.scale-out-left {
    animation: scale-out-hor-left 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes scale-out-hor-left {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 1;
    }
}

.item-it {
    position: relative;
}

.item-it:before {
    content: "";
    background: rgb(0 23 47 / 70%);
    position: absolute;
    inset: 0;
}

.item-it .text {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 6.4rem;
    color: white;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.item-it .text span {
    font-size: 300%;
}

.item-intro-sub {
    background: var(--color-highlight);
    height: 100vh;
    border-right: 1px solid #007F8F;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.intro-sub.scale-out-top .item-intro-sub:nth-child(1) {
    animation: scale-out-ver-top 0.55s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.intro-sub.scale-out-top .item-intro-sub:nth-child(2) {
    animation: scale-out-ver-top 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.intro-sub.scale-out-top .item-intro-sub:nth-child(3) {
    animation: scale-out-ver-top 0.65s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.intro-sub.scale-out-top .item-intro-sub:nth-child(4) {
    animation: scale-out-ver-top 0.7s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.intro-sub.scale-out-top .item-intro-sub:nth-child(5) {
    animation: scale-out-ver-top 0.75s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@keyframes scale-out-ver-top {
    0% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}

.page-leader {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: flex-end;
}

.module-pwkr1m0 {
    opacity: 0;
}

.show-module {
    opacity: 1;
}

.ratio-image-leader:before {
    content: "";
    background: rgb(0 23 47 / 50%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.swiper-leader-main .swiper-wrapper .item-leader.active .ratio-image-leader:before {
    display: none;
}

.top-leader-main, .top-department-main {
    padding: 5vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-leader-main .title, .top-department-main .title {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-highlight);
    font-size: 6.4rem;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
}

.swiper-leader--wrap {
    height: 100%;
    padding: 5vh;
    background: var(--color-highlight);
    color: white;
    position: relative;
}

.swiper-leader--wrap .name-leader {
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.swiper-leader--wrap .position-leader {
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 400;
}

.swiper-leader--wrap .description-leader {
    font-size: 1.63rem;
    text-align: justify;
    margin-top: 3rem;
}

.show-module .swiper-leader-main .swiper-wrapper > .item-leader:nth-child(1) {
    animation: scale-in-ver-bottom 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.show-module .swiper-leader-main .swiper-wrapper > .item-leader:nth-child(2) {
    animation: scale-in-ver-bottom 1.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.show-module .swiper-leader-main .swiper-wrapper > .item-leader:nth-child(3) {
    animation: scale-in-ver-bottom 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.show-module .swiper-leader-main .swiper-wrapper > .item-leader:nth-child(4) {
    animation: scale-in-ver-bottom 2.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.show-module .swiper-leader-main .swiper-wrapper > .item-leader:nth-child(5) {
    animation: scale-in-ver-bottom 2.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.swiper-leader--wrap img.icon-nh {
    width: 70% !important;
    height: auto !important;
    position: absolute !important;
    bottom: 0;
    right: 0;
    opacity: .1;
}

/* phong ban */
.mt-vh-10 {
    margin-top: 10vh;
}

.my-vh-10 {
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.box-department {
    position: relative;
}

.content-department {
    padding: 3vw;
    height: 100%;
    color: white;
    background: var(--color-highlight);
}

.department--tile {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2rem;
}

.department--description {
    font-size: 2rem;
    font-weight: 300;
}

.cololr-2 .content-department {
    background: #00172F;
}

.cololr-3 .content-department {
    background: #038ACA;
}

.box-department .icon-line {
    position: absolute;
    top: 24%;
    left: 52%;
    transform: translateX(-50%);
    z-index: 1;
    width: 9vw;
}

.row-image-human {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-auto-rows: 130px;
    grid-auto-flow: dense;
    gap: 0;
}

.row-image-human > div:nth-child(6n+1) {
    grid-column: span 4;
    grid-row: span 2;
}

.row-image-human > div:nth-child(6n+2) {
    grid-column: span 3;
    grid-row: span 2;
}

.row-image-human > div:nth-child(6n+3) {
    grid-column: span 4;
    grid-row: span 2;
}

.row-image-human > div:nth-child(6n+4) {
    grid-column: span 3;
    grid-row: span 2;
}

.row-image-human > div:nth-child(6n+5) {
    grid-column: span 5;
    grid-row: span 2;
}

.row-image-human > div:nth-child(6n+6) {
    grid-column: span 3;
    grid-row: span 2;
}

.image-human-nh {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.row-image-human .image-human-nh img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.row-image-human .image-human-nh img:hover {
    transform: scale(1.05);
}

.item-human-nh {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.number-human-nh {
    font-size: 6.4rem;
    line-height: 1;
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-highlight);
    color: transparent;
    width: 11rem;
}

.title-human-nh {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-highlight);
    border-bottom: 1px solid black;
    width: calc(100% - 13rem);
}

.box-human-nh .row > div:nth-child(6n+2) .title-human-nh {
    color: #038ACA;
}

.box-human-nh .row > div:nth-child(6n+3) .title-human-nh {
    color: #9747FF;
}

.box-human-nh .row > div:nth-child(6n+4) .title-human-nh {
    color: #FF9500;
}

.box-human-nh .row > div:nth-child(6n+5) .title-human-nh {
    color: #00B86E;
}

.box-human-nh .row > div:nth-child(6n+6) .title-human-nh {
    color: #2A4DD7;
}

.box-human-nh .row > div:nth-child(6n+2) .number-human-nh {
    -webkit-text-stroke-color: #038ACA;
}

.box-human-nh .row > div:nth-child(6n+3) .number-human-nh {
    -webkit-text-stroke-color: #9747FF;
}

.box-human-nh .row > div:nth-child(6n+4) .number-human-nh {
    -webkit-text-stroke-color: #FF9500;
}

.box-human-nh .row > div:nth-child(6n+5) .number-human-nh {
    -webkit-text-stroke-color: #00B86E;
}

.box-human-nh .row > div:nth-child(6n+6) .number-human-nh {
    -webkit-text-stroke-color: #2A4DD7;
}

.bg-d6vuhzs {
    background: #00172F;
    padding: 5vw;
}

.box-d6vuhzs p {
    font-size: 2vw;
    color: #888888;
}

.box-d6vuhzs .title {
    font-size: 4.5vw;
    color: #FFFFFF;
    font-weight: 700;
    line-height: normal;
}

.box-d6vuhzs i {
    font-size: 3vw;
}

.animation-clippath {
    animation: clip-path 1s linear;
}

@keyframes clip-path {
    from {
        opacity: 0;
        clip-path: inset(100% 0 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.title-module {
    font-size: 4rem;
    color: var(--color-highlight);
    font-weight: 400;
    margin: 0;
}

.decs-module {
    color: #949494;
}

/* Chi tiet bai viet */
.box-article-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box-article-detail .box-article-content {
    flex-basis: calc(100% - 80px);
    max-width: calc(100% - 80px);
}

.box-article-detail .box-article-share {
    flex: 0 0 52px;
    max-width: 52px;
}

.box-article-created .avatar {
    flex: 0 0 50px;
}

.box-article-created .avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-main);
}

.social-share {
    background: #F4F4F4;
    padding: 1rem;
    border-radius: 3rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.social-share > div {
    margin-bottom: 10px;
}

.social-share > div:last-child {
    margin: 0;
}

.btn-social a:hover {
    background: var(--color-main);
}

.btn-social a {
    background: #383838;
    aspect-ratio: 1/1;
    display: flex;
    width: 31px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 100%;
}

.sticky-top {
    z-index: 9;
}

@supports (position: sticky) {
    .sticky-top {
        top: 9rem;
    }
}

.box-article-created {
    display: flex;
    align-items: center;
}

.article-bottom {
    background: #F4F4F4;
    padding: 8px 13px;
    border-radius: 8px;
}

.title-article {
    color: var(--color-main);
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.article-categories {
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
}

.back-link {
    color: black;
}

.back-link i {
    color: #FF8A65;
}

.table-content-icon {
    display: none !important;
}

.title-section-page {
    color: var(--color-highlight);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Lien he */
.text-contact {
    font-size: 9vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--color-main);
    margin-bottom: 5rem;
}

.title-contact {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-contact .form-control {
    border: none;
    border-bottom: 1px solid;
    padding: 0.85rem 0;
}

.box-contact .email, .box-contact .phone {
    color: var(--color-main);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
}

.box-contact .phone a {
    color: var(--color-main);
}

/* Video */
.box-video .swiper-thumbs {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 33rem;
    height: 70rem;
    padding-right: 1rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: rgb(255 255 255) transparent;
}

.box-video .swiper-thumbs::-webkit-scrollbar {
    width: 8px;
    margin-left: 2rem;
}

.content-video {
    position: relative;
}

.content-video .inner-image {
    padding-top: 100vh;
}

.content-video .inner-content {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: white;
    width: 50%;
}

.content-video .album-title {
    font-size: 3.2rem;
}

.album-watch {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.album-watch i {
    font-size: 5rem;
}

.content-video .number {
    font-size: 4.8rem;
}
/* Hinh anh */
.album-image--item {
    background: #FAFAFA;
    padding: 1.5rem;
    border-radius: 1rem;
}

.album-image--iauthor .name .icon-nh {
    border-radius: 100%;
    padding: .8rem;
    background: var(--color-highlight);
    width: 4rem;
    height: 4rem;
}

.album-image--iauthor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.album-image--iauthor .name {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.album-image--iauthor .name img {
    transition: none;
    width: 100%;
    height: 100;
    object-fit: contain;
}

.album-image--title {
    margin-bottom: 1.5rem;
}

.album-image--title a {
    color: var(--color-highlight);
    font-size: 2.4rem;
    font-weight: 700;
    display: block;
}

.album-image--description {
    color: #5E5E5E;
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.album-image--cout {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3vw;
    font-weight: bold;
}

.view-all-action {
    text-align: center;
    position: relative;
}

.view-all-action .btn-expand:before, .view-all-action .btn-expand:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #999999;
    position: absolute;
    top: 50%;
}

.view-all-action .btn-expand:before {    
    right: 120%;
}

.view-all-action .btn-expand:after {
    left: 120%;
}

.view-all-action .btn-expand {
    display: inline-flex;
    border: 1px solid;
    color: black;
    font-size: 1.6rem;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
    border-radius: 6px 0 5px 0;
    background: white;
    position: relative;
    text-transform: uppercase;
}

.view-all-action .btn-expand i {
    font-size: 2.4rem;
    color: #FF8A65;
}

/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
.is-mobile .menu-section.open {
    overflow-y: scroll;
}

.is-mobile .entire-info-website address a {
    color: white !important;
}

@media screen and (max-width: 500px) {
    .bg-page-50 {
        background: linear-gradient(to top, white 50%, #00172F 50%);
    }

    .intro-text {
        flex-direction: column;
        left: 0;
        gap: 0rem;
    }

    .intro-text > span {
        font-size: 32rem;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: #ffffff;
    }

    .intro-text ul {
        font-size: 3rem;
    }

    .intro-text ul li {
        border: 1px solid;
    }

    .find-out {
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: var(--color-main);
        margin: 3rem 0;
    }

    .btn-find-out a {
        border-color: var(--color-main);
    }

    .swiper-navi {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem 0;
        flex-direction: row-reverse;
        gap: 1rem;
    }

    .swiper-navi > div {
        position: relative;
        left: initial;
        right: inherit;
        top: 0;
        transform: translateY(0);
    }

    .join-us-text {
        font-size: 3rem;
        text-align: center;
    }

    .join-us .swiper-main--title {
        align-items: center;
    }

    .join-us .swiper-main--description {
        color: white;
        white-space: pre-wrap;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 10;
        -webkit-box-orient: vertical;
        display: -webkit-box;
    }

    .album-thumb .swiper-slider-main {
        height: initial;
    }

    .album-inner {
        padding: 10% 3rem;
    }

    .album-thumb .swiper-thumbs {
        bottom: 0;
        right: 1rem;
    }

    .album-thumb .article-title {
        font-size: 2.5rem;
        padding: 0 2rem;
    }

    .line-x {
        width: 40%;
        right: 20%;
    }

    header {
        background: rgb(255 255 255 / 80%);
    }

    /*gioi thieu*/
    .banner-16-9 {
        animation: none;
        height: 400px;
        transform: scale(1);
    }

    .box-m0gsxj8 .inner-history-year:after {
        clip-path: none;
        left: 0;
        width: 100%;
        height: 4rem;
        top: 100%;
    }

    .inner-history-year {
        padding: 3vh;
    }

    .number-year {
        position: relative;
        font-size: 10vh;
    }

    .watch-section.active .desc {
        animation: none !important;
    }

    .image-l2skeig {
        inset: 0;
    }

    .box-xubn4i7, .box-uylq8wi {
        height: auto !important;
    }

    .image-uylq8wi {
        padding-top: 50%;
    }

    .box-uylq8wi:after {
        width: 95%;
        height: 9vh;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
    }

    .box-uylq8wi .number-year {
        bottom: inherit;
        top: 0;
        position: absolute;
        z-index: -1;
    }

    /* ban lanh dao */
    .show-module {
        margin-top: 10vh;
    }
    
    .item-it .text {
        font-size: 4rem;
    }

    .top-leader-main, .top-department-main {
        padding: 3vh;
    }

    .top-leader-main .title, .top-department-main .title {
        font-size: 3rem;
    }
    
    .swiper-leader-main .swiper-wrapper {
        height: auto;
    }

    .swiper-leader-main .swiper-wrapper > .item-leader img {
        width: 100%;
        height: 46vh;
        object-fit: cover;
        object-position: 100% 25%;
        position: relative;
    }

    .swiper-leader--wrap {
        padding: 3vh;
    }
    
    .title-section {
        font-size: 4rem;
    }
    
    .menu-section .ul-menu > li:hover > .entry-menu {
        left: 0;
    }
    
    /* video */
    .box-video .swiper-thumbs {
        width: 15rem;
        height: 15rem;
    }
    
    .content-video .inner-content {
        bottom: 11%;
        width: 90% !important;
    }
    
    .content-video .number {
        font-size: 3.8rem;
    }
    
    .content-video .album-title {
        font-size: 2rem;
    }
    
    .box-article-detail {
        display: block;
    }
    
    .box-article-detail .box-article-content {
        max-width: 100%;
    }
    
    .box-article-detail .box-article-share {
        max-width: 100%;
        display: block;
    }
    
    .box-article-detail .box-article-share .social-share {
        border-radius: 8px;
        width: 100%;
        margin-top: 15px;
    }
    
    .box-article-detail .box-article-share .social-share .btn-social {
        margin-right: 10px;
    }
    
    .social-share > div {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .join-us .swiper-thumbs .swiper-wrapper {
        height: 43rem;
    }

    .join-us .swiper-thumbs .swiper-slide {
        overflow: hidden;
        transition: .5s;
        margin: 0 0%;
        position: relative;
        z-index: 1;
        width: calc(20% - 10px) !important;
        border: none !important;
    }

    .join-us .swiper-slide-thumb-active.swiper-slide {
        width: calc(60% - 10px) !important;
    }        

    .join-us img {
        width: 200%;
        height: calc(100%);
        object-fit: cover;
        transition: .5s;
        position: relative;
    }

    .join-us {
        position: relative;
    }   
    
    .join-us .swiper-navi {
        position: absolute;
        bottom: -50px;
        right: -188px;
        transform: translateY(0);
        width: 19rem;
        z-index: 1;
    }  
    
    /* ban lanh dao */
    .swiper-leader-main .swiper-wrapper {
        height: 70vh;
    }
    
    .swiper-leader-main .swiper-wrapper > .item-leader {
        overflow: hidden;
        transition: .5s;
        margin: 0 0%;
        position: relative;
        z-index: 1;
        width: 20% !important;
        cursor: pointer;
    }
    
    .swiper-leader-main .swiper-wrapper .item-leader.active {
        width: 60% !important;
    }
    
    .swiper-leader-main .swiper-wrapper > div .row > div:nth-child(2) {
        display: none;
    }
    
    .swiper-leader-main .swiper-wrapper > div .row > div:nth-child(1) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .swiper-leader-main .swiper-wrapper .item-leader.active .row > div:nth-child(1) {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    
    .swiper-leader-main .swiper-wrapper .item-leader.active .row > div:nth-child(2) {
        display: block;
    }
    
    .swiper-leader-main .swiper-wrapper > .item-leader.non-active {
        width: 10% !important;
    }
    
    .swiper-leader-main .swiper-wrapper > .item-leader img {
        width: 100%;
        height: 70vh;
        object-fit: cover;
        position: relative;
    }
}
@media (min-width: 1200px) {
    body.home, body.page-introduct {
        overflow-y: hidden;
    }

    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1300px;
    }
}


@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {
    .join-us .swiper-navi {
        position: absolute;
        right: -155px;
        transform: translateY(0);
        bottom: -35px;
        width: 17rem;
        z-index: 1;
    }

    .join-us .swiper-navi .swiper-button-prev, .join-us .swiper-navi .swiper-button-next {
        font-size: 16px;
    }
}

/* RESPONSIVE BREAKPOINTS GRID*/
@media (max-width: 1200px) {
    .row-image-human {
        grid-template-columns: repeat(11, 1fr);
        grid-auto-rows: 120px;
    }
}

@media (max-width: 992px) {
    .row-image-human {
        grid-template-columns: repeat(11, 1fr);
        grid-auto-rows: 100px;
    }
}

@media (max-width: 768px) {
    .row-image-human {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 90px;
    }

    .row-image-human > div {
        grid-column: span 2 !important;
        grid-row: span 2 !important;
    }
}

@media (max-width: 576px) {
    .row-image-human {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 80px;
    }

    .row-image-human > div {
        grid-column: span 1 !important;
        grid-row: span 2 !important;
    }
}

/*css bo block*/
.box-bo-loc-page {
    background: #F7F9FC;
    border-radius: 12px;
    padding: 20px 10px 20px 10px;
    /*position: relative;*/
    /*z-index: 3000;*/
}

.box-bo-loc-page .inner-name {
    color: black;
}

.title-op-article {
    font-size: 1.7rem;
}

.flex-op-article-sukientheonam {
    border-top: 1px solid var(--gray);
    padding-top: 15px;
}

.content-filter-head {
    display: none;
}

@media (max-width: 1000px) {
    .btn-filter-mobile {
        background: #000;
        color: #fff;
        padding: 5px 20px;
        border-radius: 5px;
        display: block;
    }
    
    .content-filter-head {
        display: block;
    }
    
    .content-filter-product.open {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .back-drop.open {
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
    }
    
    .content-filter-product {
        width: 100%;
        transform: translate3d(-100%, 0, 0);
    }
    
    .box-bo-loc-page {
        background: transparent;
        padding: 0;
        margin-bottom: 15px;
}
}

/*aaa*/
/*.btn-filter-mobile {*/
/*    display: none;*/
/*    color: var(--color-main);*/
/*}*/

/*.content-filter-head {*/
/*    display: none;*/
/*}*/

/*@media (max-width: 1000px) {*/
/*    .btn-filter-mobile, .content-filter-head {*/
/*        display: block;*/
/*    }*/
/*}*/
