﻿/* ========== Font ========== */
/* Helvetica Neus */
@font-face {
    font-family: 'Helvetica Neus';
    font-weight: 300;
    src: url('../fonts/helvetica-neus/helvetica-neus-light.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Neus';
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/helvetica-neus/helvetica-neus-light-italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Neus';
    font-weight: 400;
    src: url('../fonts/helvetica-neus/helvetica-neus-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Neus';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/helvetica-neus/helvetica-neus-italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Neus';
    font-weight: 700;
    src: url('../fonts/helvetica-neus/helvetica-neus-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica Neus';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/helvetica-neus/helvetica-neus-bold-italic.ttf') format('truetype');
}

/* Helvetica VU */
@font-face {
    font-family: 'Helvetica VU';
    font-weight: 300;
    src: url('../fonts/helvetica-vu/helvetica-light-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/helvetica-vu/helvetica-light-oblique-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 400;
    src: url('../fonts/helvetica-vu/helvetica-regular-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/helvetica-vu/helvetica-oblique-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 700;
    src: url('../fonts/helvetica-vu/helvetica-bold-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/helvetica-vu/helvetica-bold-oblique-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 900;
    src: url('../fonts/helvetica-vu/helvetica-black-vu.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica VU';
    font-weight: 900;
    font-style: italic;
    src: url('../fonts/helvetica-vu/helvetica-black-oblick-vu.ttf') format('truetype');
}

/* ========== Basic ========== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body {
    font-family: 'Helvetica Neus',-apple-system,BlinkMacSystemFont,Roboto,Arial,'Noto Sans','Liberation Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
    color: #3c3c3c;
}

@media only screen and (max-width: 991px) {
    body.show-overlay {
        overflow: hidden;
    }
}

a {
    color: #3c3c3c;
    text-decoration: none;
    transition: color 0.2s linear;
}

a:hover,
a:active,
a:focus {
    color: #c9252c;
    text-decoration: none;
}

::selection {
    background-color: #c9252c;
    color: #fff;
}

/* ========== Override Bootstrap ========== */
.container-fluid {
    max-width: 1440px;
}

@media only screen and (min-width: 1280px) {
    .container {
        max-width: 1250px;
    }
}

/* Button */
.btn {
    border-radius: initial;
    font-weight: 700;
}

@media only screen and (min-width: 768px) {
    .btn {
        padding: 0.625rem 2.25rem;
    }
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.btn-danger {
    background-color: #c9252c;
    border: 2px solid #c9252c;
}

.btn-danger:not(:disabled):hover,
.btn-danger:not(:disabled):active,
.btn-danger:not(:disabled):focus {
    background-color: #fff !important;
    color: #c9252c !important;
}

.btn-primary {
    background-color: #165a9a;
    border: 2px solid #165a9a;
}

.btn-primary:not(:disabled):hover,
.btn-primary:not(:disabled):active,
.btn-primary:not(:disabled):focus {
    background-color: #fff !important;
    color: #165a9a !important;
}

/* Form Control */
.form-control {
    border-radius: initial;
    background-color: #fafafa;
    border-color: #e5e5e5;
}

.form-control:focus {
    background-color: #fafafa;
    border-color: #ccc;
    outline: 0;
    box-shadow: initial;
}

@media only screen and (min-width: 768px) {
    input.form-control,
    select.form-control {
        padding: 0.625rem 0.75rem;
        height: 50px;
    }

    textarea.form-control {
        padding: 0.75rem;
        height: 200px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background-color: initial;
}

.breadcrumb-item.active {
    color: inherit;
    display: none;
}

.breadcrumb.show-active .breadcrumb-item.active {
    display: initial;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '|';
    color: inherit;
}

/* Breadcrumb */
.text-danger {
    color: #c9252c;
}

/* ========== Slide 1 ========== */
.slide-1 .owl-theme .owl-nav {
    margin-top: 0px;
}

.slide-1 .owl-theme .owl-nav [class*="owl-"] {
    font-size: 1rem;
}

.slide-1 .owl-theme .owl-nav [class*="owl-"],
.slide-1 .owl-theme .owl-nav:hover [class*="owl-"] {
    background: none;
    padding: 0px;
    margin: 0px;
}

.slide-1 .owl-dots {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.slide-1 .owl-theme .owl-dots .owl-dot {
    display: flex;
    align-items: center;
}

.slide-1 .owl-theme .owl-dots .owl-dot.active span {
    background: #c9252c;
    height: 10px;
}

.slide-1 .owl-theme .owl-dots .owl-dot span {
    border-radius: initial;
    background: #fff;
    width: 45px;
    height: 4px;
}

.slide-1 .owl-next {
    position: absolute;
    float: left;
    right: 0px;
}

.slide-1 .owl-prev {
    position: absolute;
    float: left;
    left: 0px;
}

.slide-1 .owl-next,
.slide-1 .owl-prev {
    top: 50%;
    transform: translateY(-50%);
}

.slide-1 .owl-nav .button {
    background: rgba(201, 37, 44, 0.5);
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .slide-1 .owl-dots {
        bottom: 30px;
    }

    .slide-1 .owl-nav .button {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}

/* ========== Slide Child Category ========== */
.slide-1.slide-child-category {
    padding: 0px 30px;
    margin: 0px -15px;
}

@media only screen and (min-width: 576px) {
    .slide-1.slide-child-category {
        margin: 0px;
    }
}

.slide-1.slide-child-category .owl-carousel .owl-dots.disabled,
.slide-1.slide-child-category .owl-carousel .owl-nav.disabled {
    display: initial;
}

.slide-1.slide-child-category .owl-nav .button {
    background: transparent;
    color: #c9252c;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

@media only screen and (min-width: 768px) {
    .slide-1.slide-child-category .owl-nav .button {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }
}

.slide-1.slide-child-category .owl-prev {
    left: -25px;
}

.slide-1.slide-child-category .owl-next {
    right: -25px;
}

.slide-1.slide-child-category .list-item .item {
    display: inline-block;
}

.slide-1.slide-child-category .list-item .item span,
.slide-1.slide-child-category .list-item .item a {
    padding: 5px 10px;
}

.slide-1.slide-child-category .list-item .item.active span,
.slide-1.slide-child-category .list-item .item.active a,
.slide-1.slide-child-category .list-item .item a:hover {
    color: #c9252c;
}

/* ========== Slide Bubble ========== */
.slide-bubble .owl-theme .owl-stage {
    display: flex;
}

.slide-bubble .owl-theme .owl-nav {
    margin-top: 0px;
}

.slide-bubble .owl-theme .owl-nav [class*="owl-"] {
    font-size: 1rem;
}

.slide-bubble .owl-theme .owl-nav [class*="owl-"],
.slide-bubble .owl-theme .owl-nav:hover [class*="owl-"] {
    background: none;
    padding: 0px;
    margin: 0px;
}

.slide-bubble .owl-dots {
    display: flex;
    justify-content: center;
}

.slide-bubble .owl-theme .owl-dots .owl-dot {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) {
    .slide-bubble .owl-theme .owl-dots .owl-dot {
        margin-top: 60px;
    }
}

.slide-bubble .owl-theme .owl-dots .owl-dot span {
    border-radius: initial;
    background: #c4c4c4;
    width: 8px;
    height: 8px;
}

.slide-bubble .owl-theme .owl-dots .owl-dot.active span {
    background: #c9252c;
    width: 15px;
}

.slide-bubble .owl-next {
    position: absolute;
    float: left;
    right: 0px;
}

.slide-bubble .owl-prev {
    position: absolute;
    float: left;
    left: 0px;
}

.slide-bubble .owl-next,
.slide-bubble .owl-prev {
    top: 50%;
    transform: translateY(-50%);
}

.slide-bubble .owl-nav .button {
    background: transparent;
    color: #c9252c;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .slide-bubble .owl-nav .button {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .slide-bubble .owl-theme .owl-dots .owl-dot span {
        width: 24px;
        height: 2px;
    }

    .slide-bubble .owl-theme .owl-dots .owl-dot.active span {
        width: 42px;
        height: 5px;
    }
}

.slide-bubble .item .item-wrapper {
    width: 75%;
    padding: 120px 25px;
    transform: scale(0.75);
    transition: all 0.2s linear;
}

.slide-bubble .item.active .item-wrapper {
    transform: scale(1);
}

/* ========== Give Ellipsis ========== */
.give-ellipsis {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.give-ellipsis.after-2-lines {
    -webkit-line-clamp: 2;
}

.give-ellipsis.after-3-lines {
    -webkit-line-clamp: 3;
}

.give-ellipsis.after-4-lines {
    -webkit-line-clamp: 4;
}

.give-ellipsis.after-5-lines {
    -webkit-line-clamp: 5;
}

/* ========== Image Wrapper ========== */
.image-wrapper:after {
    content: '';
    display: block;
    padding-top: 100%;
}

.image-wrapper.image-16-9:after {
    padding-top: 56.25%;
}

.image-wrapper.image-3-2:after {
    padding-top: 66.66667%;
}

.image-wrapper.image-4-3:after {
    padding-top: 75%;
}

.image-wrapper .image {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: no-repeat center center #fff;
    background-size: cover;
}

.image-wrapper-hover-zoom .image-wrapper {
    overflow: hidden;
}

.image-wrapper-hover-zoom .image-wrapper .image {
    transition: transform 2000ms ease-out 0s;
}

.image-wrapper-hover-zoom:hover .image-wrapper .image {
    transform: scale(1.1, 1.1);
}

/* ========== Page Cover  ========== */
.page-cover {
    overflow: hidden;
}

.page-cover a:not(.btn) {
    color: inherit;
}

.page-cover .container {
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
}

@media only screen and (min-width: 768px) {
    .page-cover .container {
        bottom: 70px;
    }
}

.page-cover .image-wrapper:after {
    padding-top: 56.25%;
}

@media only screen and (min-width: 768px) {
    .page-cover .image-wrapper:after {
        padding-top: 32.29167%;
    }
}

.page-cover .main-info .title {
    font-family: 'Helvetica VU';
    font-size: 2rem;
}

@media only screen and (min-width: 768px) {
    .page-cover .main-info .title {
        font-size: 2.5rem;
    }
}

@media only screen and (min-width: 992px) {
    .page-cover .main-info .title {
        font-size: 3.125rem;
    }
}

.page-cover.page-cover-animate .image-wrapper .image {
    transition: transform 2000ms ease-out 0s;
}

.page-cover.page-cover-animate.zoom-in .image-wrapper .image {
    transform: scale(1.2);
}

/* Page Cover 1 */
.page-cover.page-cover-1 .container {
    top: 50%;
    bottom: unset;
    transform: translateX(-50%) translateY(-50%);
}

.page-cover.page-cover-1 .image-wrapper:after {
    padding-top: 100%;
}

@media only screen and (min-width: 768px) {
    .page-cover.page-cover-1 .image-wrapper:after {
        padding-top: 43.75%;
    }
}

.page-cover.page-cover-1 .main-info {
    width: 530px;
    max-width: 100%;
}

/* Page Cover 2 */
.page-cover.page-cover-2 {
    background: url('/Assets/images/bg-metal.jpg?v=0.0.1') center center;
    background-size: cover;
}

.page-cover.page-cover-2.bg-metal-2 {
    background: url('/Assets/images/bg-metal-2.jpg?v=0.0.1') center center;
}

.page-cover.page-cover-2 .container {
    top: 0px;
    bottom: unset;
    left: 0px;
    transform: unset;
}

@media only screen and (min-width: 992px) {
    .page-cover.page-cover-2 .main-info .title {
        font-size: 2.625rem;
    }
}

.page-cover.page-cover-2 .main-info .title.title-horizontal-rule:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 72px;
    height: 5px;
    background-color: #c9252c;
}

/* ========== Popup ========== */
.popup {
    top: calc(100% + 40px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition-duration: 200ms;
    transition-property: opacity, top, visible;
    transition-timing-function: cubic-bezier(.7,1,.7,1);
}

.popup.show {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 15px);
}

@media only screen and (min-width: 992px) {
    .popup {
        max-width: 900px;
    }
}

@media only screen and (min-width: 1280px) {
    .popup {
        max-width: 1200px;
    }
}

.popup .popup-wrapper {
    box-shadow: 0px 10px 15px 0 rgb(0 0 0 / 15%);
}

.popup .popup-body {
    width: 100%;
    min-height: 300px;
}

.popup .btn-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    line-height: 35px;
    color: #3c3c3c;
}

.popup .popup-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.25;
}

.popup .popup-title:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 72px;
    height: 5px;
    background-color: #c9252c;
}

.popup .text-center .popup-title:after,
.popup .popup-title.text-center:after {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 992px) {
    .popup .popup-title {
        margin-bottom: 30px;
        font-size: 2rem;
    }

    .popup .popup-title:after {
        margin-top: 30px;
    }
}

/* ========== Popup Menu ========== */
.popup.popup-menu .popup-body .menu-detail,
.popup.popup-menu .popup-body .menu,
.popup.popup-menu .popup-body .sub-menu {
    height: 500px;
}

.popup.popup-menu .popup-body .menu-detail {
    width: 35%;
    background-color: #f0f0f0;
}

.popup.popup-menu .popup-body .menu {
    width: 28%;
    background-color: #fafafa;
}

.popup.popup-menu .popup-body .sub-menu {
    width: 37%;
}

.popup.popup-menu .popup-body .menu-detail .list-item .item .image:after {
    content: '';
    display: block;
    margin-top: 35px;
    width: 40px;
    height: 3px;
    background-color: #c9252c;
}

.popup.popup-menu .popup-body .menu-detail .list-item .item .description {
    font-size: 0.875rem;
}

.popup.popup-menu .popup-body .menu .list-menu .item.active {
    font-weight: 700 !important;
    color: #c9252c;
}

.popup.popup-menu .popup-body .menu .list-menu .item.active a {
    color: inherit;
}

.popup.popup-menu .popup-body .menu .list-menu .item:not(.active) .icon {
    display: none;
}

.popup.popup-menu .popup-body .sub-menu .list-menu .item {
    text-decoration: underline;
}

/* ========== Popup Search ========== */
.popup.popup-search .popup-body {
    width: 100%;
    min-height: 300px;
}

@media only screen and (min-width: 992px) {
    .popup.popup-search .popup-body {
        width: 750px;
        min-height: 360px;
    }
}

.popup.popup-search .btn-danger {
    background-color: #c9252c;
    border: 2px solid #c9252c;
}

.popup.popup-search .btn-danger:not(:disabled):hover,
.popup.popup-search .btn-danger:not(:disabled):active,
.popup.popup-search .btn-danger:not(:disabled):focus {
    background-color: #c9252c !important;
    color: #fff !important;
    outline: 0;
    box-shadow: initial;
}

.popup.popup-search .form-search input {
    width: calc(100% - 48px);
    height: 48px;
}

.popup.popup-search .form-search button {
    width: 48px;
    height: 48px;
}

.popup.popup-search .list-keyword .item {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    transition: color 0.2s linear, background 0.2s linear;
}

.popup.popup-search .list-keyword .item:hover {
    background-color: #c9252c;
    color: #fff;
}

/* ========== List Article ========== */
.list-article {
    margin: -15px;
}

.list-article [class*="col-"] {
    padding: 15px;
}

@media only screen and (min-width: 992px) {
    .list-article {
        margin: -24px -15px;
    }

    .list-article [class*="col-"] {
        padding: 24px 15px;
    }
}

.list-article .item .main-info .title {
    font-size: 1.125rem;
    line-height: 1.4;
}

.list-article .item .main-info .category {
    font-size: 0.75rem;
    color: #6d7686;
}

.list-article .item .main-info .category a,
.list-article .item .main-info .description a {
    color: inherit;
}

.list-article .item .main-info .publish-date {
    font-size: 0.875rem;
    color: #6d7686;
}

/* ========== List Article Internal ========== */
.list-article-internal .item {
    border-bottom: 1px solid #e5e5e5;
}

.list-article-internal .item {
    padding: 1rem 0px;
}

.list-article-internal .item:first-child {
    padding-top: 0px;
}

.list-article-internal .item .publish-date {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
}

.list-article-internal .item .title {
    font-size: 1.125rem;
    line-height: 1.4;
}

.list-article-internal .item .category {
    font-size: 0.875rem;
    color: #6d7686;
}

/* ========== Social ========== */
.social {
    font-size: 12px;
}

.social .item {
    color: inherit;
}

.social .item:not(:last-child) {
    margin-right: 2px;
}

.social .item .btn-social {
    line-height: 26px;
    height: 26px;
    width: 26px;
}

.social .item .btn-social.facebook {
    background-color: #3c5b9b;
}

.social .item .btn-social.twitter {
    background-color: #1da1f2;
}

.social .item .btn-social.print {
    background-color: #323dd7;
}

.social .item .btn-social.email {
    background-color: #ec1c24;
}

/* ========== Table Data ========== */
.table-data {
    border-collapse: separate;
    border-spacing: 0px 1rem;
}

.table-data {
    width: 800px;
}

@media only screen and (min-width: 768px) {
    .table-data {
        width: 100%;
    }
}

.table-data td,
.table-data th {
    background-color: #f6f6f6;
}

/* ========== Scroll ========== */
.scroll::-webkit-scrollbar {
    width: 6px;
    background-color: #e5e5e5;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: #c9252c;
}

.scroll::-webkit-scrollbar-track {
    background-color: #e5e5e5;
}

/* ========== Modal VnSteel ========== */
.modal-vnsteel .modal-body {
    padding: 40px 15px 15px 15px;
}

.modal-vnsteel .btn-close {
    height: 35px;
    width: 35px;
    top: 5px;
    right: 5px;
    font-size: 1.5rem;
    line-height: 35px;
    color: #3c3c3c;
}

.modal-vnsteel .item .title {
    font-size: 2rem;
}

.modal-vnsteel .item .title.title-horizontal-rule:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 72px;
    height: 5px;
    background-color: #c9252c;
}

@media only screen and (min-width: 992px) {
    .modal-vnsteel .btn-close {
        right: 10px;
    }

    .modal-vnsteel .modal-body {
        padding: 40px;
    }

    .modal-vnsteel .item .item-left,
    .modal-vnsteel .item .item-right {
        height: 348px;
    }

    .modal-vnsteel .item .item-right {
        overflow-y: scroll;
    }
}

@media only screen and (min-width: 1200px) {
    .modal-vnsteel .btn-close {
        top: 10px;
        right: 10px;
    }

    .modal-vnsteel .modal-body {
        padding: 50px 40px 50px 50px;
    }

    .modal-vnsteel .item .item-left,
    .modal-vnsteel .item .item-right {
        height: 339px;
    }
}

@media only screen and (min-width: 1400px) {
    .modal-vnsteel {
        max-width: 1140px;
    }

    .modal-vnsteel .btn-close {
        top: 10px;
        right: 10px;
    }

    .modal-vnsteel .modal-body {
        padding: 80px 40px 80px 80px;
    }

    .modal-vnsteel .item .title {
        font-size: 2.625rem;
    }

    .modal-vnsteel .item .item-left,
    .modal-vnsteel .item .item-right {
        height: 494px;
    }
}

/* ========== Box Adv ========== */
.box-adv img {
    width: 100%;
    height: auto;
}

/* ========== Box Article Latest News ========== */
.box-article-latest-news {
    background-color: #f6f6f6;
}

.box-article-latest-news .box-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.25;
}

.box-article-latest-news .box-title:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 52px;
    height: 3px;
    background-color: #c9252c;
}

.box-article-latest-news .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.box-article-latest-news .section-title:after {
    margin-top: 20px;
    width: 52px;
    height: 3px;
}

.box-article-latest-news .list-item .item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

.box-article-latest-news .list-item .item .title {
    font-size: 1rem;
}

.box-article-latest-news .list-item .item .category {
    color: #999;
    font-size: 0.875rem;
}

.box-article-latest-news .list-item .item .category a {
    color: inherit;
}

/* ========== Main Content & Sidebar ========== */
@media only screen and (min-width: 992px) {
    .main-content {
        float: left;
        width: 70%;
        padding-right: 40px;
    }
    
    .sidebar {
        float: left;
        width: 30%;
    }
}

/* ========== Menu Mobile ========== */
#menu-mobile {
    top: 0px;
    left: 0px;
    z-index: 3;
}

#menu-mobile:not(.show) {
    pointer-events: none;
}

#menu-mobile .menu-mobile {
    width: calc(100% - 70px);
    height: 100%;
    right: -100%;
    overflow-x: hidden;
    box-shadow: 0 4px 32px 0 rgb(0 0 0 / 50%);
    transition: right 0.5s ease-out;
}

@media only screen and (min-width: 576px) {
    #menu-mobile .menu-mobile {
        width: 400px;
    }
}

#menu-mobile.show .menu-mobile {
    overflow-y: scroll;
    right: 0px;
}

#menu-mobile .menu-mobile .btn-close-menu {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 48px;
    transition: background 0.5s ease-out;
}

#menu-mobile .menu-mobile .btn-close-menu:hover,
#menu-mobile .menu-mobile .btn-close-menu:active,
#menu-mobile .menu-mobile .btn-close-menu:focus {
    background-color: #f0f0f0;
    color: inherit;
}

#menu-mobile .menu-mobile ul {
    font-weight: 500;
    font-size: 0.875rem;
}

#menu-mobile .menu-mobile ul li:not(:last-child) {
    border-bottom: 1px solid #ececec;
}

#menu-mobile .menu-mobile ul li .has-child .btn-open-link {
    padding-right: 40px;
}

#menu-mobile .menu-mobile ul li .has-child .btn-open-menu-child {
    right: 0px;
    top: 0px;
    max-width: 40px;
    cursor: pointer;
}

#menu-mobile .menu-mobile ul li .has-child .sub-menu {
    top: 0px;
    right: -100%;
    opacity: 0;
    /* transition: opacity 0.5s ease-out; */
    /* transition: right 0.5s ease-out; */
}

/* #menu-mobile .menu-mobile ul li .has-child.show .sub-menu {
    right: 0px;
} */

#menu-mobile .menu-mobile ul li .has-child.show .sub-menu {
    opacity: 1;
    z-index: 1;
}

#menu-mobile .menu-mobile ul li .has-child .btn-close-menu-child {
    margin-left: -10px;
}

#menu-mobile .menu-mobile .menu {
    top: 0px;
    left: 0px;
    transition: left 0.5s ease-out;
}

#menu-mobile .menu-mobile .menu.show-child {
    left: -100%;
}

#menu-mobile .overlay {
    background-color: rgba(79, 79, 79, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    inline-size: 120vw;
    block-size: 120vh;
    opacity: 0;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease;
}

#menu-mobile.show .overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

/* ========== Header ========== */
#header {
    border-bottom: 1px solid #dedede;
}

#header .header-top {
    background-color: #f4f3f3;
    font-size: 0.8125rem;
}

#header .header-top .list-menu .item {
    padding: 0px 0.75rem;
    height: 37px;
    line-height: 37px;
}

#header .header-top .login {
    background-color: #c9252c;
    height: 37px;
    line-height: 37px;
    margin-left: 30px;
    padding: 0px 24px 0px 10px;
}

#header .header-top .login:after {
    content: '';
    position: absolute;
    border-top: 37px solid;
    border-top-color: transparent;
    border-right: 30px solid #c9252c;
    left: -30px;
}

#header .header-top .login a {
    color: inherit;
}

#header .header-top .login .icon {
    width: 18px;
    height: 18px;
    margin-top: -1px;
}

#header .header-top .login .dropdown-menu {
    font-size: inherit;
    padding: 0px;
}

#header .header-top .login .dropdown-item {
    font-size: inherit;
    padding: 0px 1rem;
}

#header .header-top .login .dropdown-header {
    font-size: 0.8rem;
    padding: 0.15rem 1rem;
    color: #000;
}

#header .header-main .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

@media only screen and (min-width: 768px) {
    #header .header-main .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
}

#header .header-main .header-main-left .logo {
    height: 40px;
}

#header .header-main-right .list-menu .item {
    font-size: 0.875rem;
}

#header .header-main-right .list-menu .item.icon {
    padding: 0px 0.75rem;
}

#header .header-main-right .list-menu .item.language {
    font-weight: 600;
}

#header .header-main-right .list-menu .item.language img {
    vertical-align: sub;
}

#header .header-main-right .list-menu .item.language span {
    text-decoration: underline;
}

@media only screen and (min-width: 992px) {
    #header .header-main .header-main-left .logo {
        height: 50px;
    }

    #header .header-main-right .list-menu .item {
        padding: 0px 0.75rem;
        font-size: 0.75rem;
    }
}

@media only screen and (min-width: 1200px) {
    #header .header-main .header-main-left .logo {
        height: 60px;
    }

    #header .header-main-right .list-menu .item {
        padding: 0px 1.25rem;
        font-size: 0.875rem;
    }
}

/* ========== Main ========== */
#main section,
#main section.bg .container-fluid {
    padding: 50px 0px;
}

#main section {
    overflow: hidden;
}

#main section.bg {
    padding: 0px;
}

#main section.bg.bg-gray .container-fluid {
    background-color: #f9f9f9;
}

#main section.bg.bg-metal .container-fluid {
    background: url('/Assets/images/bg-metal.jpg?v=0.0.1') center no-repeat;
    background-size: cover;
}

@media only screen and (min-width: 992px) {
    #main section,
    #main section.bg .container-fluid {
        padding: 90px 0px;
    }
}

#main section .container {
    max-width: 1440px;
}

@media only screen and (min-width: 1200px) {
    #main section .container {
        padding: 0px 95px;
    }
}

#main section .section-title {
    margin-bottom: 20px;
    font-family: 'Helvetica VU';
    font-size: 2rem;
    line-height: 1.25;
}

#main section .section-title:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 72px;
    height: 5px;
    background-color: #c9252c;
}

#main section .text-center .section-title:after,
#main section .section-title.text-center:after {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 992px) {
    #main section .section-title {
        margin-bottom: 30px;
        font-size: 2.625rem;
    }

    #main section .section-title:after {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 992px) {
    #main section .section-description {
        width: 900px;
    }
}

/* Section Introduction */
@media only screen and (min-width: 992px) {
    #main section.section-introduction .section-description {
        width: 100%;
    }
}

#main section.section-introduction .list-cover:not(.owl-carousel) {
    width: 175%;
}

@media only screen and (min-width: 768px) {
    #main section.section-introduction .list-cover:not(.owl-carousel) {
        width: initial;
    }
}

#main section.section-introduction .list-cover .item .image-wrapper:after {
    padding-top: 160%;
}

@media only screen and (min-width: 992px) {
    #main section.section-introduction .container {
        padding-right: 6px;
    }

    #main section.section-introduction .section-title {
        width: 230px;
    }
}

#main section.section-introduction .section-right {
    overflow-x: scroll;
}

@media only screen and (min-width: 768px) {
    #main section.section-introduction .section-right {
        overflow-x: initial;
    }
}

@media only screen and (min-width: 992px) {
    #main section.section-introduction .section-left {
        padding-right: 15px;
        width: 40%;
    }

    #main section.section-introduction .section-right {
        width: 60%;
    }
}

@media only screen and (min-width: 1200px) {
    #main section.section-introduction .section-left {
        padding-right: 95px;
    }
}

/* Section About us */
#main section.section-about-us .about-us {
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
    #main section.section-about-us .about-us {
        margin-bottom: 3rem;
    }

    #main section.section-about-us .section-title {
        line-height: 1;
    }
}

@media only screen and (min-width: 1200px) {
    #main section.section-about-us .about-us {
        margin-bottom: 5.75rem;
    }
}

/* Section Video */
#main section.section-video .section-title {
    margin-bottom: 50px;
}

@media only screen and (min-width: 992px) {
    #main section.section-video .section-left {
        width: 60%;
        float: left;
        padding-right: 20px;
    }

    #main section.section-video .section-right {
        width: 40%;
        float: left;
    }
}

@media only screen and (min-width: 1200px) {
    #main section.section-video .section-left {
        width: 70%;
    }

    #main section.section-video .section-right {
        width: 30%;
    }
}

#main section.section-video .section-left .video-featured {
    margin-left: -15px;
    margin-right: -15px;
}

#main section.section-video .section-left .video-featured .category {
    font-size: 0.75rem;
}

#main section.section-video .section-left .video-featured .category a {
    color: inherit;
}

#main section.section-video .section-left .video-featured .title {
    font-size: 1.25rem;
    line-height: 1.45;
}

#main section.section-video .section-right .list-video .item:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

#main section.section-video .section-right .list-video .item {
    padding: 22px 0px;
}

#main section.section-video .section-right .list-video .item:first-child {
    padding: 0px 0px 22px 0px;
}

#main section.section-video .section-right .list-video .item:last-child {
    padding: 22px 0px 0px 0px;
}

#main section.section-video .section-right .list-video .item .image-wrapper {
    width: 130px;
}

#main section.section-video .section-right .list-video .item .image-wrapper .icon-play {
    bottom: 5px;
    left: 5px;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.7);
}

#main section.section-video .section-right .list-video .item .image-wrapper .icon-play i {
    line-height: 20px;
    height: 20px;
    font-size: 8px;
}

#main section.section-video .section-right .list-video .item .category {
    font-size: 0.75rem;
    color: #6d7686;
    line-height: 1.5;
}

#main section.section-video .section-right .list-video .item .category a {
    color: inherit;
}

#main section.section-video .section-right .list-video .item .title {
    font-size: 1rem;
    line-height: 1.5;
}

/* List Cover */
#main section .list-cover {
    margin: -3px;
}

#main section .list-cover [class*="col-"] {
    padding: 3px;
}

#main section .list-cover .item .item-wrapper:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(to bottom, transparent 20%, #000 100%);
    z-index: 1;
}

#main section .list-cover .item .main-info {
    z-index: 2;
    bottom: 0px;
    width: 100%;
}

#main section .list-cover .item .main-info .title {
    font-family: 'Helvetica VU';
    font-size: 1.5rem;
    font-weight: 900;
}

#main section .list-cover .item .main-info .sub-title {
    font-size: 1rem;
}

@media only screen and (min-width: 992px) {
    #main section .list-cover .item .main-info .title {
        font-size: 2.25rem;
    }
}

/* ========== Footer ========== */
/* Footer Top */
#footer .footer-top .container-fluid {
    background: url('/Assets/images/bg-metal.jpg?v=0.0.1') no-repeat center;
    background-size: cover;
    padding: 50px 0px;
}

#footer .footer-top .logo {
    width: 160px;
}

@media only screen and (min-width: 768px) {
    #footer .footer-top .logo {
        width: 230px;
    }
}

#footer .footer-top .organization-name {
    font-size: 1.5rem;
    color: #6d7686;
    line-height: 1.3;
}

#footer .footer-top .list-social .item {
    background-color: #c9252c;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 40px;
}

#footer .footer-top .organization .title {
    font-size: 1.125rem;
}

#footer .footer-top .organization .list-item .item .icon {
    width: 25px;
}

#footer .footer-top .organization .list-item .item .content {
    padding-left: 30px;
}

#footer .footer-top .menu .menu-title {
    font-size: 1.125rem;
}

#footer .footer-top .menu .sub-menu {
    font-size: 0.875rem;
}

#footer .footer-top .menu .list-social .item {
    background-color: #c9252c;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    line-height: 20px;
}

/* Footer Main */
#footer .footer-main,
#footer .footer-main h1 {
    font-size: 1rem;
    line-height: 1.5;
}

#footer .container-haft {
    padding: 0px 15px;
}

@media only screen and (min-width: 576px) {
    #footer .container-haft {
        width: 270px;
    }
}

@media only screen and (min-width: 768px) {
    #footer .container-haft {
        width: 360px;
    }
}

@media only screen and (min-width: 992px) {
    #footer .container-haft {
        width: 480px;
    }
}

@media only screen and (min-width: 1200px) {
    #footer .container-haft {
        width: 570px;
    }
}

@media only screen and (min-width: 1280px) {
    #footer .container-haft {
        width: 625px;
    }
}

@media only screen and (min-width: 768px) {
    #footer .footer-main .footer-main-left,
    #footer .footer-main .footer-main-right {
        height: 140px;
    }

    #footer .footer-main .footer-main-left,
    #footer .footer-main .footer-main-right {
        width: calc(50%);
    }

    #footer .footer-main .footer-main-right:before {
        content: '';
        display: block;
        position: absolute;
        border-top: 140px solid;
        border-top-color: #353535;
        border-right: 80px solid transparent;
    }

    #footer .footer-main .footer-main-right .copyright {
        padding-left: 105px;
    }
}

@media only screen and (min-width: 1200px) {
    #footer .footer-main,
    #footer .footer-main h1 {
        font-size: 0.875rem;
    }

    #footer .footer-main .footer-main-left,
    #footer .footer-main .footer-main-right {
        height: 60px;
    }

    #footer .footer-main .footer-main-right:before {
        border-top-width: 60px;
        border-right: 50px solid transparent;
    }

    /*html[lang="en"] #footer .footer-main .footer-main-left,
    html[lang="en"] #footer .footer-main .footer-main-right {
        height: 100px;
    }
    
    html[lang="en"] #footer .footer-main .footer-main-right:before {
        border-top-width: 100px;
        border-right: 70px solid transparent;
    }*/
}

#footer .footer-main .footer-main-left {
    background-color: #353535;
}

#footer .footer-main .footer-main-right {
    background-image: linear-gradient(to right, #c9252c, #90242a);
}

/* ========== Print ========== */
@media print {
    #header,
    #footer,
    .breadcrumb,
    .hidden-on-print {
        display: none;
    }

    .main-content {
        float: none;
        width: 100%;
        padding-right: 0px;
    }
    
    .sidebar {
        display: none;
    }
}