/**
 * NukeViet Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/nukeviet The NukeViet CMS GitHub project
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --nv-border-color: #dddddd;
    --nv-image-style-spacing: 20px;
    --nv-inline-image-style-spacing: calc(var(--nv-image-style-spacing) / 2);
    --nv-highlight-marker-blue: hsl(201, 97%, 72%);
    --nv-highlight-marker-green: hsl(120, 93%, 68%);
    --nv-highlight-marker-pink: hsl(345, 96%, 73%);
    --nv-highlight-marker-yellow: hsl(60, 97%, 73%);
    --nv-highlight-pen-green: hsl(112, 100%, 27%);
    --nv-highlight-pen-red: hsl(0, 85%, 49%);
    --nv-font-size-xs: 10px;
    --nv-font-size-sm: 12px;
    --nv-font-size-md: 14px;
    --nv-font-size-lg: 16px;
    --nv-font-size-xxl: 22px;
    --ck-z-default: 100;
    --ck-z-panel: calc(var(--ck-z-default) + 999);
}

.ck {
    --ck-content-font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    --ck-content-font-size: 13px;
    --ck-content-font-color: #333;
    --ck-content-line-height: 1.42857143;
}

/* ===================== HERO BANNER TUYỂN SINH ===================== */
.section-hero-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
}
.section-hero-banner a {
    display: block;
    line-height: 0;
}
.section-hero-banner .hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
}
@media (max-width: 767px) {
    .section-hero-banner .hero-banner-img {
        max-height: 220px;
    }
}

/* ===================== ADMISSIONS SHOWCASE ===================== */
.section-admissions-showcase {
    padding: 18px 0 26px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.admissions-ticker {
    position: relative;
    overflow: hidden;
    border: 1px solid #d7e8fb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(33, 86, 168, 0.08);
    margin-bottom: 18px;
}

.admissions-ticker__track {
    display: flex;
    width: max-content;
    gap: 26px;
    padding: 12px 0;
    animation: admissionsTickerMove 30s linear infinite;
}

.admissions-ticker__track span {
    position: relative;
    flex: 0 0 auto;
    padding-left: 18px;
    color: #9b1f11;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.admissions-ticker__track span:before {
    content: '\f0a4';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font: normal normal normal 14px/1 FontAwesome;
    color: #2196f3;
}

.admissions-panel {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.admissions-panel__intro {
    min-height: 100%;
    padding: 22px 22px 24px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(180deg, #ef9624 0%, #db7413 100%);
    box-shadow: 0 18px 32px rgba(206, 113, 18, 0.24);
}

.admissions-panel__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admissions-panel__kicker:before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.85);
}

.admissions-panel__title {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 800;
}

.admissions-panel__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.admissions-panel__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #cf6612 !important;
    background: #fff;
    font-weight: 700;
    text-decoration: none !important;
}

.admissions-slider {
    --admissions-visible: 4;
    position: relative;
    min-width: 0;
}

.admissions-slider__viewport {
    overflow: hidden;
}

.admissions-slider__track {
    display: flex;
    gap: 18px;
    will-change: transform;
}

.admissions-card {
    flex: 0 0 calc((100% - (18px * (var(--admissions-visible) - 1))) / var(--admissions-visible));
    min-width: 0;
}

.admissions-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #21354f !important;
    text-decoration: none !important;
}

.admissions-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1.08;
    background: linear-gradient(135deg, #dbeafd 0%, #8fc5fb 100%);
}

.admissions-card__media:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 61, 138, 0.02) 0%, rgba(15, 61, 138, 0.26) 100%);
}

.admissions-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.admissions-card__media--blue {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.admissions-card__media--navy {
    background: linear-gradient(135deg, #e0ecff 0%, #7aa2e3 100%);
}

.admissions-card__media--gold {
    background: linear-gradient(135deg, #fef0cb 0%, #f3b650 100%);
}

.admissions-card__media--teal {
    background: linear-gradient(135deg, #dff6f4 0%, #75c5be 100%);
}

.admissions-card__media--red {
    background: linear-gradient(135deg, #ffe1db 0%, #ef8d7f 100%);
}

.admissions-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 7px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(16, 65, 143, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admissions-card__body {
    padding: 12px 4px 0;
}

.admissions-card__body h3 {
    margin: 0;
    color: #34404d;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.admissions-card a:hover .admissions-card__body h3 {
    color: #0f3d8a;
}

.admissions-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.admissions-slider__btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #2156a8;
    box-shadow: 0 10px 18px rgba(33, 86, 168, 0.24);
}

.admissions-slider__btn:hover {
    background: #173f8a;
}

.admissions-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admissions-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9d9ef;
}

.admissions-slider__dot.is-active {
    background: #c56e18;
    transform: scale(1.15);
}

@keyframes admissionsTickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1199px) {
    .admissions-panel {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .admissions-panel__title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .section-admissions-showcase {
        padding-top: 14px;
    }

    .admissions-panel {
        grid-template-columns: 1fr;
    }

    .admissions-panel__intro {
        padding: 18px 18px 20px;
    }
}

@media (max-width: 767px) {
    .admissions-ticker__track span {
        font-size: 14px;
    }

    .admissions-panel__title {
        font-size: 24px;
    }

    .admissions-card__body h3 {
        font-size: 15px;
    }
}

/* ===================== ADMISSIONS EVENT ===================== */
.section-admissions-event {
    padding: 0 0 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.admissions-event {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 26px;
    padding: 28px 30px;
    border: 1px solid #d6e6f9;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff8e7 0%, #fefcf4 40%, #eef7ff 100%);
    box-shadow: 0 18px 34px rgba(33, 86, 168, 0.08);
}

.admissions-event__summary {
    min-width: 0;
}

.admissions-event__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #8f2717;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.admissions-event__kicker:before {
    content: '';
    width: 15px;
    height: 24px;
    border-radius: 3px;
    background: linear-gradient(180deg, #f1b24f 0%, #df6e12 100%);
    box-shadow: 8px 0 0 rgba(241, 178, 79, 0.35);
}

.admissions-event__title {
    margin: 0 0 16px;
    color: #7b241a;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
}

.admissions-event__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.admissions-event__meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #36485f;
    font-size: 16px;
    line-height: 1.5;
}

.admissions-event__meta-item .fa {
    color: #54b878;
    font-size: 18px;
}

.admissions-event__meta-item + .admissions-event__meta-item .fa {
    color: #ff7f6f;
}

.admissions-event__countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 18px;
    border: 1px solid #f0c9b2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(221, 127, 47, 0.12);
}

.admissions-event__timebox {
    text-align: center;
}

.admissions-event__timebox strong {
    display: block;
    color: #ea8a1f;
    font-size: 40px;
    line-height: 1;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.admissions-event__timebox span {
    display: block;
    margin-top: 10px;
    color: #535353;
    font-size: 15px;
}

.admissions-event__poster {
    display: block;
    min-height: 390px;
    padding: 24px;
    border-radius: 18px;
    color: #1e2f4d !important;
    text-decoration: none !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(232, 243, 255, 0.88) 48%, rgba(230, 240, 200, 0.84) 100%),
        url('../images/banner/banner_tuyensinh.jpg') center/cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 18px 32px rgba(78, 121, 188, 0.14);
}

.admissions-event__poster-frame {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(1px);
}

.admissions-event__poster-badge {
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, #ffb74d 0%, #ef7b16 100%);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admissions-event__poster-title {
    max-width: 620px;
    margin: 0 0 12px;
    color: #16376f;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
}

.admissions-event__poster-text {
    max-width: 560px;
    margin: 0 0 18px;
    color: #4b5f7d;
    font-size: 16px;
    line-height: 1.6;
}

.admissions-event__poster-cta {
    align-self: flex-start;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #2156a8;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .admissions-event {
        grid-template-columns: 320px minmax(0, 1fr);
        padding: 22px;
    }

    .admissions-event__poster-title {
        font-size: 32px;
    }

    .admissions-event__timebox strong {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .admissions-event {
        grid-template-columns: 1fr;
    }

    .admissions-event__poster {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .section-admissions-event {
        padding-bottom: 22px;
    }

    .admissions-event {
        gap: 18px;
        padding: 18px;
        border-radius: 18px;
    }

    .admissions-event__title {
        font-size: 18px;
    }

    .admissions-event__meta-item {
        font-size: 15px;
    }

    .admissions-event__countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admissions-event__timebox strong {
        font-size: 30px;
    }

    .admissions-event__poster {
        min-height: 260px;
        padding: 14px;
    }

    .admissions-event__poster-frame {
        padding: 18px;
    }

    .admissions-event__poster-title {
        font-size: 24px;
    }

    .admissions-event__poster-text {
        font-size: 14px;
    }
}

/* ===================== ACTIVITY NEWS ===================== */
.section-activity-news {
    padding: 0 0 34px;
    background: #f5f5f5;
}

.activity-news__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.activity-news__title {
    position: relative;
    margin: 0;
    padding-left: 28px;
    color: #7a2318;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.activity-news__title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 12px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f5b449 0%, #df6f11 100%);
    box-shadow: 8px 0 0 rgba(245, 180, 73, 0.45);
}

.activity-news__more {
    color: #7a2318 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
}

.activity-news-slider {
    --activity-visible: 4;
    position: relative;
}

.activity-news-slider__viewport {
    overflow: hidden;
}

.activity-news-slider__track {
    display: flex;
    gap: 26px;
    will-change: transform;
}

.activity-news-card {
    flex: 0 0 calc((100% - (26px * (var(--activity-visible) - 1))) / var(--activity-visible));
    min-width: 0;
}

.activity-news-card a {
    display: block;
    border: 1px solid #e3cdb8;
    border-radius: 12px;
    color: #7a2318 !important;
    text-decoration: none !important;
    overflow: hidden;
    background: #f8f6f4;
    min-height: 100%;
}

.activity-news-card__media {
    aspect-ratio: 1.52;
    overflow: hidden;
}

.activity-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
}

.activity-news-card__body {
    padding: 14px 16px 16px;
}

.activity-news-card__date {
    margin-bottom: 8px;
    color: #ef8a1e;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

.activity-news-card__body h3 {
    margin: 0;
    color: #7a2318;
    font-size: 16px;
    line-height: 1.42;
    font-weight: 700;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-news-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.activity-news-slider__btn {
    width: 34px;
    height: 34px;
    border: 1px solid #d7c4b2;
    border-radius: 50%;
    color: #7a2318;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.activity-news-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.activity-news-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #e9c16d;
    padding: 0;
    opacity: 0.8;
}

.activity-news-slider__dot.is-active {
    background: #7a2318;
    opacity: 1;
}

/* ===================== TRAINING FIELDS ===================== */
.section-training-fields {
    padding: 8px 0 34px;
    background: #f5f5f5;
}

.training-fields__head {
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.training-fields__title {
    position: relative;
    display: inline-block;
    margin: 0 0 14px;
    padding-left: 30px;
    color: #7a2318;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.training-fields__title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 12px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f5b449 0%, #df6f11 100%);
    box-shadow: 8px 0 0 rgba(245, 180, 73, 0.45);
}

.training-fields__text {
    margin: 0;
    color: #2d3f57;
    font-size: 18px;
    line-height: 1.7;
}

.training-fields__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.training-field-card {
    min-width: 0;
}

.training-field-card a {
    position: relative;
    display: block;
    min-height: 540px;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none !important;
    overflow: hidden;
    box-shadow: 0 6px 0 rgba(67, 78, 95, 0.2);
    background-size: cover;
    background-position: center;
}

.training-field-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.training-field-card__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px;
}

.training-field-card h3 {
    margin: 56px 0 14px;
    color: #fff;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.training-field-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.training-field-card li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 9px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.training-field-card li .fa {
    color: #ffc43d;
    font-size: 22px;
    flex: 0 0 auto;
    transform: translateY(2px);
}

.training-field-card__cta {
    margin-top: auto;
    min-height: 40px;
    border-radius: 8px;
    background: rgba(52, 20, 8, 0.4);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.training-field-card--college a {
    background-image: url('../images/banner/banner_tuyensinh.jpg');
}

.training-field-card--college .training-field-card__overlay {
    background: linear-gradient(180deg, rgba(152, 97, 32, 0.45) 0%, rgba(130, 74, 18, 0.72) 100%);
}

.training-field-card--intermediate a {
    background-image: url('../images/banner/banner_tuyensinh.jpg');
}

.training-field-card--intermediate .training-field-card__overlay {
    background: linear-gradient(180deg, rgba(45, 92, 170, 0.45) 0%, rgba(29, 62, 122, 0.75) 100%);
}

.training-field-card--elementary a {
    background-image: url('../images/banner/banner_tuyensinh.jpg');
}

.training-field-card--elementary .training-field-card__overlay {
    background: linear-gradient(180deg, rgba(23, 124, 47, 0.45) 0%, rgba(13, 93, 37, 0.74) 100%);
}

.training-field-card--regular a {
    background-image: url('../images/banner/banner_tuyensinh.jpg');
}

.training-field-card--regular .training-field-card__overlay {
    background: linear-gradient(180deg, rgba(116, 63, 45, 0.5) 0%, rgba(89, 41, 27, 0.78) 100%);
}

@media (max-width: 1199px) {
    .activity-news-card__date {
        font-size: 24px;
    }

    .activity-news-card__body h3 {
        font-size: 15px;
    }

    .training-fields__text {
        font-size: 17px;
    }

    .training-fields__grid {
        gap: 18px;
    }

    .training-field-card a {
        min-height: 460px;
    }

    .training-field-card h3 {
        font-size: 29px;
    }

    .training-field-card li,
    .training-field-card__cta {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .activity-news-slider {
        --activity-visible: 2;
    }

    .training-fields__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .training-field-card a {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .section-activity-news,
    .section-training-fields {
        padding-bottom: 24px;
    }

    .activity-news__heading {
        margin-bottom: 14px;
    }

    .activity-news__title,
    .training-fields__title {
        font-size: 26px;
    }

    .activity-news-slider {
        --activity-visible: 1;
    }

    .activity-news-slider__track {
        gap: 14px;
    }

    .activity-news-card {
        flex-basis: 100%;
    }

    .activity-news-card__date {
        font-size: 22px;
    }

    .activity-news-card__body h3 {
        font-size: 15px;
    }

    .training-fields__text {
        font-size: 15px;
        line-height: 1.6;
    }

    .training-fields__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .training-field-card a {
        min-height: 420px;
    }

    .training-field-card h3 {
        margin-top: 44px;
        font-size: 27px;
    }

    .training-field-card li,
    .training-field-card__cta {
        font-size: 14px;
    }

    .training-field-card li .fa {
        font-size: 18px;
    }
}

/* ===================== TOP HEADER IMAGE LOCKUP ===================== */
.section-header {
    background: linear-gradient(90deg, #ffffff 0%, #eaf5ff 42%, #2196f3 100%);
}

/* ===================== HOMEPAGE CLEAN LAYOUT ===================== */
html.is-homepage .section-body .third-nav {
    display: none;
}

html.is-homepage .layout-sidebar-left,
html.is-homepage .layout-sidebar-right {
    display: none;
}

html.is-homepage .layout-main-content {
    float: none;
    width: 100%;
    left: auto;
    right: auto;
}

#header {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 8px;
    padding-bottom: 8px;
}

.official-branding__home {
    min-height: 96px;
    gap: 12px;
    padding: 4px 0;
}

.official-branding__logo {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
    filter: none;
}

.official-branding__name {
    display: block;
    width: auto;
    max-width: min(640px, 66vw);
    height: auto;
}

.official-header-tools {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    max-width: none;
    min-width: 0;
    padding: 0;
    justify-content: center;
}

.official-header-tools__site-name,
.official-header-tools__site-desc {
    display: none !important;
}

@media (max-width: 991px) {
    .official-branding__name {
        max-width: min(500px, 70vw);
    }
}

@media (max-width: 767px) {
    .official-branding__home {
        gap: 8px;
        min-height: 72px;
    }

    .official-branding__logo {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .official-branding__name {
        max-width: calc(100vw - 120px);
    }
}

/* ===================== FULL-WIDTH BLUE MENU STRIP ===================== */
.section-nav {
    width: 100%;
    background: #173f8a;
}

.section-nav .wraper {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#menusite {
    margin: 0;
}

#menusite .container,
#menusite .row {
    margin: 0;
    padding: 0;
    width: 100%;
}

#menusite .bg.box-shadow {
    width: 100%;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #173f8a !important;
}

#menusite .navbar-default {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #173f8a !important;
}

@font-face {
    font-family: 'NukeVietIcons';
    src: url('../fonts/NukeVietIcons.woff2') format('woff2'),
        url('../fonts/NukeVietIcons.woff') format('woff'),
        url('../fonts/NukeVietIcons.ttf') format('truetype'),
        url('../fonts/NukeVietIcons.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^='icon-'],
[class*=' icon-'] {
    display: inline-block;
    font: normal normal normal 14px/1 NukeVietIcons;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    vertical-align: -10%;
}

.icon-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -25%;
}

.icon-horizon {
    width: 14px;
}

.icon-lg.icon-horizon {
    width: 22px;
}

.icon-nukeviet:before {
    content: '\e607';
}

.icon-nukeviet_sm:before {
    content: '\e608';
}

.icon-callcenter:before {
    content: '\e609';
}

.icon-today:before {
    content: '\e600';
}

.icon-qrcode:before {
    content: '\e601';
}

.icon-enter:before {
    content: '\e602';
}

.icon-exit:before {
    content: '\e603';
}

.icon-yahoo:before {
    content: '\e604';
}

.icon-old-phone:before {
    content: '\e606';
}

.icon-icq:before {
    content: '\e605';
}

.icon-viber:before {
    content: '\e60a';
}

.icon_new {
    background: url('../images/icons/new.gif') no-repeat;
    display: inline-block;
    width: 33px;
    height: 15px;
}

.icon_new_small {
    background: url('../images/squared-blue.png') no-repeat 0 8px;
}

.icon_list {
    background: url('../images/arrow_left_orange.png') no-repeat 0 7px;
}

/* Fonts Color */

.text-black {
    color: #000 !important;
}

.text-white {
    color: #fff !important;
}

/* Fonts Weight */

.text-normal {
    font-weight: 400;
}

.text-bold {
    font-weight: 800;
}

/* Fix bootstrap */

.form-horizontal .control-label {
    margin-bottom: 0;
    padding-top: 7px;
    text-align: right;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-ss-block,
.visible-ss-inline,
.visible-ss-inline-block {
    display: none;
}

.hidden-ss-block {
    display: block !important;
}

.hidden-ss-inline {
    display: inline !important;
}

.hidden-ss-inline-block {
    display: inline-block !important;
}

.margin {
    margin: 10px;
}

.mr-1 {
    margin-right: 5px;
}

.margin-right,
.mr-2 {
    margin-right: 10px;
}

.margin-left {
    margin-left: 10px;
}

.margin-top {
    margin-top: 10px;
}

.margin-bottom,
.mb-2 {
    margin-bottom: 10px;
}

.margin-sm {
    margin: 4px;
}

.margin-right-sm {
    margin-right: 4px;
}

.margin-left-sm {
    margin-left: 4px;
}

.margin-top-sm {
    margin-top: 4px;
}

.margin-bottom-sm {
    margin-bottom: 4px;
}

.margin-lg {
    margin: 15px;
}

.margin-right-lg {
    margin-right: 15px;
}

.margin-left-lg {
    margin-left: 15px;
}

.margin-top-lg {
    margin-top: 15px;
}

.margin-bottom-lg {
    margin-bottom: 15px;
}

.padding-top {
    padding-top: 10px;
}

.padding-left {
    padding-left: 10px;
}

.padding-right {
    padding-right: 10px;
}

.padding-bottom {
    padding-bottom: 10px;
}

.boder-top {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #ccc;
}

.boder-bottom {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ccc;
}

.border-left {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #ccc;
}

.border-right {
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #ccc;
}

.column-margin-left {
    margin-left: 10px !important;
}

.bg-gainsboro {
    background-color: #dcdcdc;
}

.bg-lavender {
    background-color: #eee;
}

ul.list-items {
    padding-left: 0;
}

ul.list-items > li {
    margin-bottom: 10px;
}

ul.list-items > li:last-child {
    margin-bottom: 0;
}

/*Load_Bar*/

.load-bar {
    display: inline-block;
    vertical-align: middle;
    width: 33px;
    height: 8px;
    background: transparent url(../../../assets/images/load_bar.gif);
    margin: auto 10px;
}

/*Center DIV*/

.centered {
    display: flex;
    justify-content: center;
}

/*nv-info*/

.nv-info {
    border-width: 1px;
    border-style: solid;
    border-color: #dcdcdc;
    border-radius: 3px;
    background-color: #f7f7f7;
    color: #333;
    padding: 10px;
}

.nv-info.error {
    background-color: #efd7d7 !important;
    border-color: #dca8a6 !important;
}

.nv-info.success {
    background-color: #edf4fa !important;
    border-color: #82b2dc !important;
}

.nv-info.info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
}

.nv-info:before {
    display: inline-block;
    font-family: FontAwesome;
    font-size: 20px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 5px;
}

.nv-info.error:before {
    content: ' \f057 ';
    color: #de495b;
}

.nv-info.success:before {
    content: ' \f13a ';
    color: #68d044;
}

.nv-info.info:before {
    content: '\f05a';
    color: #31708f;
}

.clear {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.pointer {
    cursor: pointer;
}

.middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}

.align-top {
    vertical-align: top;
}

ul,
ol {
    list-style: none;
}

.input-group-btn {
    font-size: 14px !important;
}

.radius-top-left {
    border-top-left-radius: 5px;
}

.radius-top-right {
    border-top-right-radius: 5px;
}

.radius-bottom-left {
    border-bottom-left-radius: 5px;
}

.radius-bottom-right {
    border-bottom-right-radius: 5px;
}

.radius {
    border-radius: 5px;
}

.bg-gradient {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjgiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjMiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background-image: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.3) 100%);
}

.box-shadow {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.fix-box {
    position: inherit !important;
    margin-left: 0 !important;
}

.well {
    padding: 8px;
    line-height: 18px;
}

.well p {
    margin: 0;
}

input[type='text'].required,
input[type='password'].required,
input[type='email'].required,
input[type='number'].required,
input[type='search'].required,
input[type='tel'].required,
input[type='time'].required,
input[type='url'].required,
input[type='url'].required,
textarea.required,
select.required,
label.required {
    background-image: url(../images/icons/required.png);
    background-position: right center;
    background-repeat: no-repeat;
}

textarea.required {
    background-position: right 10px;
}

select.required {
    background-position: calc(100% - 15px) 10px;
}

label.required {
    padding-right: 20px;
}

label.radio-box,
label.check-box {
    font-weight: normal;
    margin-right: 20px;
    cursor: pointer;
}

div.radio-box,
div.check-box {
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    padding: 10px;
}

.has-error div.radio-box,
.has-error div.check-box {
    border-color: #de495b;
}

div.radio-box label,
div.check-box label {
    margin-bottom: 0;
}

div.radio-box label [type='radio'],
div.check-box label [type='radio'] {
    margin-top: -2px;
}

.display-inline-block {
    display: inline-block;
}

.display-table {
    display: table;
}

.display-table > * {
    display: table-row;
}

.display-table > * > * {
    display: table-cell;
    padding: 5px;
}

/*tooltip*/

.tooltip-inner {
    max-width: 250px;
    padding: 10px;
    color: #fff;
    text-align: left !important;
    background-color: #255986;
    border-radius: 4px;
    height: auto;
    overflow: auto;
}

.tooltip.top .tooltip-arrow,
.tooltip.top-left .tooltip-arrow,
.tooltip.top-right .tooltip-arrow {
    border-top-color: #255986;
}

.tooltip.right .tooltip-arrow {
    border-right-color: #255986;
}

.tooltip.left .tooltip-arrow {
    border-left-color: #255986;
}

.tooltip.bottom .tooltip-arrow,
.tooltip.bottom-left .tooltip-arrow,
.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: #255986;
}

.tooltip-inner img.pull-left {
    margin: 3px 5px 1px 0;
}

.tooltip-inner img.pull-right {
    margin: 3px 1px 0 5px;
}

/* Fixed Jquery UI Style */

.ui-widget {
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
}

.ui-datepicker {
    width: 18em !important;
}

.ui-datepicker select.ui-datepicker-month {
    width: 59% !important;
    font-weight: normal !important;
}

.ui-datepicker select.ui-datepicker-year {
    width: 39% !important;
    font-weight: normal !important;
}

/* CKEditor 4 contents css */
figure:not(.table):not(.media):not(.nv-media) {
    position: relative;
    margin: 5px auto 10px auto;
    text-align: center;
}

figure.image.image-left,
img.image-left {
    margin-right: 15px;
    float: left !important;
}

figure.image.image-right,
img.image-right {
    margin-left: 15px;
    float: right !important;
}

.image-center figure.image,
.image-center {
    text-align: center;
    float: none !important;
}

div.image-center,
p.image-center {
    margin-bottom: 10px;
}

figure.article {
    background-color: #939393;
}

figure.left {
    float: left;
    margin: 5px 10px 10px 0;
}

figure.right {
    float: right;
    margin: 5px 0 10px 10px;
}

figure.center {
    float: none;
    background: transparent;
    margin: 0 auto 10px;
    padding-top: 0;
    text-align: center;
}

figure.noncaption {
    background: transparent;
    padding: 0;
}

figcaption {
    text-align: center;
    margin-top: 5px;
    font-weight: 700;
}

figure figcaption {
    font-size: 12px;
    font-weight: normal;
}

figure.article figcaption {
    color: #fff;
}

figure.article.center figcaption {
    color: inherit;
}

figure.avatar {
    margin-top: 0 !important;
}

figure.avatar figcaption {
    position: absolute;
    bottom: 12px;
    left: 3px;
    width: calc(100% - 6px);
    background-color: #357ebd;
    color: #fff;
    font-size: 11px;
}

.nv-docviewer {
    margin-bottom: 8px;
}

/* CKEditor 5 supported */
/* Table */
figure.table .ck-table-resized {
    table-layout: fixed;
}

figure.table table {
    overflow: hidden;
}

figure.table td,
figure.table th {
    overflow-wrap: break-word;
    position: relative;
}

figure.table {
    margin: 5px auto 10px auto;
    display: table;
}

figure.table table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    border: 1px double var(--nv-border-color);
}

figure.table table td,
figure.table table th {
    min-width: 5px;
    padding: 7px;
    border: 1px solid var(--nv-border-color);
}

figure.table table th {
    font-weight: bold;
    border-bottom-width: 2px;
}

figure.table > figcaption {
    display: table-caption;
    caption-side: top;
    word-break: break-word;
    text-align: center;
    outline-offset: -1px;
    margin-top: 0;
}

/* Media */
figure.media {
    clear: both;
    margin: 5px 0 10px 0;
    display: block;
    min-width: 10px;
}

/* NV-Media */
figure.nv-media {
    clear: both;
    margin: 5px 0 10px 0;
    display: block;
    min-width: 10px;
}

figure.nv-media video,
figure.nv-media audio {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* Image */
img.image_resized {
    height: auto;
}

figure.image.image_resized {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

figure.image.image_resized img {
    width: 100%;
}

figure.image.image_resized > figcaption {
    display: block;
}

figure.image {
    display: table!important; /* Fix conflicts with Google Docs */
    clear: both;
    text-align: center;
    margin: 5px auto 10px auto;
    min-width: 10px;
}

figure.image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    min-width: 100%;
    height: auto;
}

figure.image-inline {
    display: inline-flex;
    max-width: 100%;
    align-items: flex-start;
}

figure.image-inline picture {
    display: flex;
}

figure.image-inline picture,
figure.image-inline img {
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
}

figure.image > figcaption {
    display: table-caption;
    caption-side: bottom;
    word-break: break-word;
    padding: 7px 7px 0 7px;
    font-size: 13px;
    outline-offset: -1px;
    margin-top: 0;
}

/* Image Style */
.image-style-block-align-left,
.image-style-block-align-right {
    max-width: calc(100% - var(--nv-image-style-spacing));
}

.image-style-align-left,
.image-style-align-right {
    clear: none;
}

.image-style-side {
    float: right;
    margin-left: var(--nv-image-style-spacing);
    max-width: 50%;
}

.image-style-align-left {
    float: left;
    margin-right: var(--nv-image-style-spacing);
}

.image-style-align-center {
    margin-left: auto;
    margin-right: auto;
}

.image-style-align-right {
    float: right;
    margin-left: var(--nv-image-style-spacing);
}

.image-style-block-align-right {
    margin-right: 0 !important;
    margin-left: auto !important;
}

.image-style-block-align-left {
    margin-left: 0 !important;
    margin-right: auto !important;
}

p + .image-style-align-left,
p + .image-style-align-right,
p + .image-style-side {
    margin-top: 0;
}

.image-inline.image-style-align-left,
.image-inline.image-style-align-right {
    margin-top: var(--nv-inline-image-style-spacing);
    margin-bottom: var(--nv-inline-image-style-spacing);
}

.image-inline.image-style-align-left {
    margin-right: var(--nv-inline-image-style-spacing);
}

.image-inline.image-style-align-right {
    margin-left: var(--nv-inline-image-style-spacing);
}

/* Highlight */
.marker-yellow {
    background-color: var(--nv-highlight-marker-yellow);
}

.marker-green {
    background-color: var(--nv-highlight-marker-green);
}

.marker-pink {
    background-color: var(--nv-highlight-marker-pink);
}

.marker-blue {
    background-color: var(--nv-highlight-marker-blue);
}

.pen-red {
    color: var(--nv-highlight-pen-red);
    background-color: transparent;
}

.pen-green {
    color: var(--nv-highlight-pen-green);
    background-color: transparent;
}

/* Font size */
.text-tiny {
    font-size: var(--nv-font-size-xs);
}

.text-small {
    font-size: var(--nv-font-size-sm);
}

.text-big {
    font-size: var(--nv-font-size-lg);
}

.text-huge {
    font-size: var(--nv-font-size-xxl);
}

/* NV Iframe */
.nvck-iframe {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.nvck-iframe>.nvck-iframe-inner>.nvck-iframe-element {
    border: none;
    margin: 0 auto;
    display: block;
}

.nvck-iframe.nvck-iframe-responsive {
    height: 0;
}

.nvck-iframe.nvck-iframe-responsive>.nvck-iframe-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nvck-iframe.nvck-iframe-responsive>.nvck-iframe-inner>.nvck-iframe-element {
    width: 100%;
    height: 100%;
}

/* NV Docs */
.nvck-docs {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.nvck-docs>.nvck-docs-inner>.nvck-docs-element {
    border: none;
    margin: 0 auto;
    display: block;
}

.nvck-docs.nvck-docs-responsive {
    height: 0;
}

.nvck-docs.nvck-docs-responsive>.nvck-docs-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nvck-docs.nvck-docs-responsive>.nvck-docs-inner>.nvck-docs-element {
    width: 100%;
    height: 100%;
}

/* Global */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    background-color: #eeeeee;
}

a,
a:link,
a:active,
a:visited {
    color: #1a3f5e;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #0e2132;
}

a.dimgray {
    color: #707070;
}

a.dimgray:hover {
    color: #0e2132;
}

a.black {
    color: #333;
}

a.black:hover {
    color: #0e2132;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.title {
    font-size: 22px;
}

.hometext {
    font-weight: 700;
}

.bodytext {
    word-break: keep-all;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    line-height: 1.7em;
}

.bodytext p {
    margin-bottom: 15px !important;
}

.bodytext ol {
    list-style-type: decimal !important;
}

.bodytext ul {
    list-style-type: disc !important;
    padding-left: 40px !important;
    margin-bottom: 10px !important;
}

.bodytext li {
    margin-bottom: 0 !important;
}

.bodytext div.alert {
    margin-bottom: 7px;
    margin-top: 4px;
}

iframe {
    border: 0;
}

.m-bottom {
    margin-bottom: 10px !important;
}

.wraper {
    position: relative;
    width: 1080px;
    margin: 0 auto;
}

.container,
.rel {
    position: relative;
}

.fa-fix {
    margin-right: -5px;
}

.fa-pointer {
    cursor: pointer;
}

.fa-horizon {
    width: 14px;
}

.fa-lg.fa-horizon {
    width: 22px;
}

h3.sm {
    font-size: 16px;
}

span.keyword {
    background-color: yellow;
}

.nv-fullbg {
    min-height: 100%;
    background-color: #fff;
}

a.btn {
    color: #fff;
}

.section-header-bar {
    background-image: linear-gradient(to bottom,
            #428bca 0,
            #245682 100%,
            rgba(255, 255, 255, 1) 100%,
            rgba(255, 255, 255, 1) 100%);
}

/* Header */

.site-banner {
    position: absolute;
    width: 100%;
    background-size: cover;
    z-index: -10;
    background-position: center center;
    height: 300px;
}

#header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

#header .logo {
    padding: 20px 10px 20px 0;
}

#header .logo img {
    max-height: 120px;
    width: auto;
}

#header .logo h1,
#header .logo .site_name {
    display: none;
}

#header .logo h2,
#header .logo .site_description {
    color: #707070;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    font-family: 'Times New Roman';
    line-height: 1.1;
    margin: 0;
    padding: 0;
    display: block;
}

#header .right-ads {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding: 10px 0;
}

#header .right-ads > .nv-block-banners:last-child {
    margin-bottom: 0;
}

/* breadcrumb */

.breadcrumbs-wrap {
    position: relative;
}

.breadcrumbs-wrap .display {
    height: 35px;
    overflow: hidden;
}

.breadcrumbs {
    display: inline-block;
}

.breadcrumbs li {
    float: left;
    margin: 0 0.5em 0 1em;
}

.breadcrumbs a,
.show-subs-breadcrumbs {
    background-color: #dcdcdc;
    padding: 0.6em 1em;
    float: left;
    text-decoration: none;
    color: #333;
    position: relative;
}

.breadcrumbs a:hover,
.show-subs-breadcrumbs:hover {
    background-color: #a6c8e6;
}

.breadcrumbs a:before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-width: 1.5em 0 1.5em 1em;
    border-style: solid;
    border-color: #dcdcdc #dcdcdc #dcdcdc transparent;
    left: -1em;
    padding-right: 1px;
}

.breadcrumbs a:hover:before {
    border-color: #a6c8e6 #a6c8e6 #a6c8e6 transparent;
}

.breadcrumbs a:after,
.show-subs-breadcrumbs:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-top-width: 1.5em;
    border-top-style: solid;
    border-top-color: transparent;
    border-bottom-width: 1.5em;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    border-left-width: 1em;
    border-left-style: solid;
    border-left-color: #dcdcdc;
    right: -1em;
    padding-right: 1px;
}

.breadcrumbs a:hover:after,
.show-subs-breadcrumbs:hover:after {
    border-left-color: #a6c8e6;
}

/*.breadcrumbs li:last-child a,
.breadcrumbs li:last-child a:hover {
    font-weight:bold;
    background:none;
}

.breadcrumbs li:last-child a:after,
.breadcrumbs li:last-child a:before {
    content:normal;
}

*/

.subs-breadcrumbs {
    margin: 0;
    padding: 0;
    background-color: #fff linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0.1) 100%);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0 0;
    position: absolute;
    left: 0;
    top: 40px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-top: none;
    box-shadow: 0 0.063em 0.25em rgba(7, 20, 34, 0.25);
    display: none;
    z-index: 999999;
}

.subs-breadcrumbs.open {
    display: block;
}

.subs-breadcrumbs li {
    background-color: #eee;
}

.subs-breadcrumbs li:last-child,
.subs-breadcrumbs li:last-child a,
.subs-breadcrumbs {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.subs-breadcrumbs li,
.subs-breadcrumbs a {
    display: block;
    float: none;
}

.subs-breadcrumbs a {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    padding: 0 10px;
}

.subs-breadcrumbs li:not(:last-child) a {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.subs-breadcrumbs a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.subs-breadcrumbs a em {
    display: inline-block;
    margin-right: 5px;
    color: #707070;
}

.show-subs-breadcrumbs {
    padding-right: 5px;
    margin-right: 7px;
    width: 30px;
    text-align: center;
}

.fix_banner_left {
    width: 120px;
    height: 480px;
    position: fixed;
    top: 2px;
    left: 2px;
    display: none;
}

.fix_banner_right {
    width: 120px;
    height: 480px;
    position: fixed;
    top: 2px;
    right: 2px;
    display: none;
}

/* SECOND NAV */

.second-nav {
    z-index: 3;
}

.second-nav .bg {
    background: #cccccc;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0) 100%) !important;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

/* THIRD NAV */

.third-nav {
    position: relative;
    margin-bottom: 6px;
}

.third-nav .row {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #dcdcdc;
}

.third-nav .bg {
    background-color: #eeeeee;
    padding: 5px 5px 3px;
}

.third-nav .current-time {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    line-height: 37px;
}

.third-nav ul + .current-time {
    float: right;
    margin-top: -35px;
}

.headerSearch {
    margin: 0.15em 0;
}

.headerSearch input {
    border-color: #cccccc;
    background-color: #fff !important;
}

.headerSearch input:hover,
.headerSearch input:focus {
    background-color: #fff !important;
}

.headerSearch .btn-info {
    background-color: #428bca;
    border-color: #428bca;
    color: #fff;
}

.headerSearch .btn-info:focus,
.headerSearch .btn-info.focus,
.headerSearch .btn-info:hover,
.headerSearch .btn-info:active,
.headerSearch .btn-info.active {
    background-color: #e6b902;
    border-color: #caa202;
    color: #333333;
}

.headerSearch .form-control,
.headerSearch .btn {
    z-index: 0;
}

/* Bootstrap Menu */

#menusite .navbar-default {
    background-color: #428bca;
    border-bottom-color: #428bca;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 1;
}

#menusite .navbar-default .navbar-nav > li {
    margin-left: 1px;
}

#menusite .navbar-default .navbar-nav > li:first-child {
    margin-left: 4px;
}

#menusite .navbar-default .navbar-nav > li:last-child {
    margin-right: 4px;
}

#menusite .navbar-default .navbar-nav > li > a {
    color: #fff;
}

#menusite .navbar-nav > li > a {
    white-space: nowrap;
}

#menusite .dropdown-menu {
    background-color: #dcdcdc !important;
    border-color: #aaaaaa !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

#menusite .dropdown-menu > li {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

#menusite .dropdown-menu > li:last-child {
    border-bottom: none;
}

#menusite .dropdown-menu > li > a {
    color: #333;
    line-height: 30px;
    padding: 3px 15px;
}

#menusite .navbar-default .navbar-nav > li > a:hover,
#menusite .navbar-default .navbar-nav > li > a:focus,
#menusite .navbar-default .navbar-nav > .active > a,
#menusite .navbar-default .navbar-nav > .active > a:hover,
#menusite .navbar-default .navbar-nav > .active > a:focus,
#menusite .navbar-default .navbar-nav > .open > a,
#menusite .navbar-default .navbar-nav > .open > a:hover,
#menusite .navbar-default .navbar-nav > .open > a:focus {
    background: linear-gradient(to bottom, #82b2dc 0%, #428bca 100%) !important;
    color: #fff;
}

#menusite .dropdown-menu > li > a:hover,
#menusite .dropdown-menu > li > a:focus,
#menusite .dropdown-menu > .active > a,
#menusite .dropdown-menu > .active > a:hover,
#menusite .dropdown-menu > .active > a:focus,
#menusite .navbar .navbar-nav .open .dropdown-menu > li > a:hover,
#menusite .navbar .navbar-nav .open .dropdown-menu > li > a:focus,
#menusite .navbar .navbar-nav .open .dropdown-menu > .active > a,
#menusite .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
#menusite .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 100%) !important;
    color: #333;
}

#menusite .dropdown-submenu {
    position: relative;
    display: none;
}

#menusite .open .dropdown-submenu {
    display: block;
}

#menusite .dropdown-submenu li a {
    color: #333;
    display: block;
}

#menusite .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 0 5px 5px 5px;
}

#menusite .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

#menusite .dropdown-submenu > a:after {
    display: block;
    content: ' ';
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #333;
    margin-top: 10px;
    margin-right: -5px;
}

#menusite .dropdown-submenu.pull-left {
    float: none;
}

#menusite .dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    border-radius: 5px 0 5px 5px;
}

/* Head-Nav */

.header-nav,
.header-nav-inner {
    color: #dcdcdc;
    position: relative;
}

.header-nav-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0;
}

.header-nav a {
    color: #dcdcdc;
}

.header-nav a:hover {
    color: #ffffff;
}

.header-nav a.button {
    display: block;
    position: relative;
    padding: 8px;
    color: #dcdcdc;
    line-height: 1;
    background-color: #428bca;
    border-radius: 5px;
    width: 34px;
    height: 34px;
}

.header-nav a.button.active,
.header-nav a.button:hover,
.header-nav a.button:focus {
    background-color: #245682;
    color: #fff;
}

.header-nav a.button .fa {
    position: relative;
    transform: translate3d(-50%, -50%, 0px);
    left: 50%;
    top: 50%;
}

/* TIP POPUP and FTIP POPUP */

#tip,
#ftip {
    position: absolute;
    color: #333 !important;
    background-color: #eee;
    max-width: 485px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

#tip {
    top: 100%;
    right: 0;
    min-height: 50px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ftip {
    bottom: 25px;
    left: 5px;
    min-height: 51px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#tip .bg,
#ftip .bg {
    padding: 15px;
    border-bottom-color: #aaaaaa;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

#tip .bg {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#ftip .bg {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#tip .tip-footer,
#ftip .tip-footer {
    background-color: #e5e5e5;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    padding: 10px;
}

#tip .tip-footer {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 10px -15px -16px;
}

#ftip .ftip-footer {
    margin: 10px -15px -15px;
}

#tip h3,
#ftip h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

#tip ul {
    margin: 0;
    padding: 0;
}

#tip a {
    color: #333;
}

#tip .socialList a {
    color: #fff;
}

/* Blocks social-icons,contactDefault and personalArea */

.contactDefault {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.social-icons {
    padding-left: 30px;
}

.personalArea {
    padding-left: 50px;
}

.personalArea a.button.user,
.personalArea a.button.user:hover {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: transparent;
    background-size: contain;
}

/* block counter */

.counter.display-table {
    width: 100%;
}

.counter span + span {
    text-align: right;
}

.socialList,
.contactList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.socialList li,
.contactList li {
    display: inline-block;
    margin-right: 10px;
}

.socialList li:last-child,
.contactList li:last-child {
    margin-right: 0 !important;
}

.socialList {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.socialList li a {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #428bca;
    color: #dcdcdc;
    font-size: 16px;
    border-radius: 3px;
    position: relative;
}

.enable-animate .socialList li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.socialList li a[href*='facebook']:hover {
    background-color: #3d5d8c;
}

.socialList li a[href*='google']:hover,
.socialList li a[href*='youtube']:hover {
    background-color: #dd4b39;
}

.socialList li a[href*='twitter']:hover {
    background-color: #50a0d7;
}

.socialList li a[href*='feeds']:hover {
    background-color: #ff9900;
}

.socialList li a .fa {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Social share */
.social-share-container {
    display: flex;
    align-items: center;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.social-share-buttons button {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    line-height: 1;
    font-size: 12px;
}

.social-share-buttons button.social-share-facebook {
    background-color: #1877F2;
}

.social-share-buttons button.social-share-twitter {
    background-color: #1DA1F2;
}

.social-share-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}

/* Body */

#body {
    background-color: #fff;
    border-color: #dcdcdc;
    border-style: solid;
    border-width: 0 1px 0 1px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

/* Footer-NAV2 */

.footerNav2 {
    position: relative;
    width: 100%;
    background-color: #193c5a;
    padding: 10px 0;
    color: #dcdcdc;
}

.footerNav2 .theme-change {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    height: 40px;
}

.footerNav2 .theme-change a,
.footerNav2 .theme-change span {
    display: inline-block;
    margin-top: 5px;
    margin-right: 10px;
    background-color: #245682;
    color: #428bca;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    position: relative;
}

.footerNav2 .theme-change span {
    color: #dcdcdc;
    background-color: #428bca;
}

.footerNav2 .theme-change a:hover,
.footerNav2 .theme-change span:hover {
    color: #fff;
    background-color: #428bca;
}

.footerNav2 .theme-change .fa,
.footerNav2 .bttop a .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0px);
}

.footerNav2 .theme-change .fa-mobile {
    font-size: 140%;
}

.footerNav2 .bttop {
    float: right;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footerNav2 .bttop a {
    display: block;
    background-color: #245682;
    color: #428bca;
    font-size: 14px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    width: 40px;
    height: 40px;
}

.footerNav2 .bttop a:hover {
    color: #fff;
    background-color: #428bca;
}

/* ===================== FOOTER SHOWCASE ===================== */
.section-footer-showcase {
    padding: 28px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.footer-maps {
    margin-bottom: 30px;
}

.footer-maps__head {
    max-width: 880px;
    margin: 0 auto 22px;
    text-align: center;
}

.footer-maps__title {
    position: relative;
    display: inline-block;
    margin: 0 0 14px;
    padding-left: 30px;
    color: #7a2318;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-maps__title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 12px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f5b449 0%, #df6f11 100%);
    box-shadow: 8px 0 0 rgba(245, 180, 73, 0.45);
}

.footer-maps__text {
    margin: 0;
    color: #405067;
    font-size: 16px;
    line-height: 1.7;
}

.footer-maps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.footer-map-card {
    min-width: 0;
}

.footer-map-card__title {
    margin: 0 0 6px;
    color: #335ed6;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-map-card__address {
    margin: 0 0 14px;
    color: #335ed6;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.footer-map-card__frame {
    overflow: hidden;
    border-radius: 12px;
    background: #dbe4f1;
    box-shadow: 0 12px 28px rgba(27, 53, 99, 0.08);
}

.footer-map-card__frame iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.footer-gallery {
    margin-bottom: 28px;
}

.footer-gallery__head {
    text-align: center;
    margin-bottom: 18px;
}

.footer-gallery__title {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-left: 30px;
    color: #7a2318;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-gallery__title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 12px;
    height: 24px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f5b449 0%, #df6f11 100%);
    box-shadow: 8px 0 0 rgba(245, 180, 73, 0.45);
}

.footer-gallery-slider {
    --footer-gallery-visible: 4;
    position: relative;
}

.footer-gallery-slider__viewport {
    overflow: hidden;
}

.footer-gallery-slider__track {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.footer-gallery-card {
    flex: 0 0 calc((100% - (16px * (var(--footer-gallery-visible) - 1))) / var(--footer-gallery-visible));
    min-width: 0;
}

.footer-gallery-card a {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(28, 49, 88, 0.12);
}

.footer-gallery-card__media {
    aspect-ratio: 1.32;
    background: #dce7f4;
}

.footer-gallery-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.footer-gallery-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 44px 14px 14px;
    background: linear-gradient(180deg, rgba(8, 20, 45, 0) 0%, rgba(8, 20, 45, 0.84) 100%);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.footer-gallery-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.footer-gallery-slider__btn {
    width: 36px;
    height: 36px;
    border: 1px solid #d9c7b8;
    border-radius: 50%;
    background: #fff;
    color: #7a2318;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-gallery-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-gallery-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #efc363;
    opacity: 0.75;
}

.footer-gallery-slider__dot.is-active {
    background: #7a2318;
    opacity: 1;
}

.footer-partners {
    padding: 8px 0 26px;
}

.footer-partners__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px 22px;
    align-items: center;
}

.footer-partners__item {
    min-height: 88px;
    padding: 12px 16px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(27, 53, 99, 0.08);
}

.footer-partners__item img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1199px) {
    .footer-maps__title,
    .footer-gallery__title {
        font-size: 28px;
    }

    .footer-map-card__title {
        font-size: 22px;
    }

    .footer-map-card__address {
        font-size: 16px;
    }

    .footer-partners__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .footer-maps__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-gallery-slider {
        --footer-gallery-visible: 2;
    }
}

@media (max-width: 767px) {
    .section-footer-showcase {
        padding-top: 22px;
    }

    .footer-maps {
        margin-bottom: 24px;
    }

    .footer-maps__title,
    .footer-gallery__title {
        font-size: 24px;
    }

    .footer-maps__text {
        font-size: 14px;
        line-height: 1.6;
    }

    .footer-map-card__title {
        font-size: 19px;
    }

    .footer-map-card__address {
        font-size: 15px;
    }

    .footer-map-card__frame iframe {
        height: 280px;
    }

    .footer-gallery-slider {
        --footer-gallery-visible: 1;
    }

    .footer-gallery-card__caption {
        font-size: 13px;
    }

    .footer-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .footer-partners__item {
        min-height: 74px;
        padding: 10px 12px;
    }
}

/* Footer */

#footer {
    position: relative;
    min-height: 300px;
    width: 100%;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #428bca;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #245682;
    background-color: #245682;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0,
            rgba(0, 0, 0, 0) 100%);
    padding: 20px 0;
    font-size: 13px;
}

#footer,
#footer a {
    color: #dcdcdc;
}

#footer h3 {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #dcdcdc;
}

#footer h3 a {
    color: inherit;
}

#footer p {
    margin: 0;
    padding: 0;
}

/* Block Footer-Menu */

#footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .menu li {
    position: relative;
    display: inline-block;
    width: 49%;
    padding: 0;
    margin: 0;
}

#footer .menu li:nth-child(2n + 1) {
    padding-right: 8px;
}

#footer .menu li:nth-child(2n) {
    padding-left: 7px;
}

#footer .menu li a {
    display: block;
    white-space: nowrap;
    border-bottom-width: 1px;
    border-bottom-color: #6aa3d5;
    border-bottom-style: dotted;
    padding: 8px 0;
}

#footer .menu li a:before {
    content: '\f111';
    color: #dcdcdc;
    font-family: FontAwesome;
    font-size: 5px;
    padding-right: 6px;
    vertical-align: middle;
}

#footer .menu li a:hover {
    border-bottom-color: #fff;
    color: #fff;
}

#footer .menu li a:hover:before {
    color: #fff;
}

/* Block copyright*/

.copyright {
    color: #dcdcdc;
}

.copyright span a {
    color: #dcdcdc !important;
}

.copyright span a:hover {
    color: #ffffff !important;
}

/* Block Company info */

.company_info {
    padding: 0;
}

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

.company_info li:last-child {
    margin-bottom: 0;
}

.company_info .company_name {
    text-transform: uppercase;
    font-weight: 500;
}

.company_info li em {
    text-align: center;
    width: 2em;
}

.company-map {
    width: 100%;
    height: 300px;
}

/* Page break line */

.nv-hr {
    clear: both;
    height: 1px;
    border-bottom-width: 1px;
    border-bottom-color: #dcdcdc;
    border-bottom-style: solid;
    margin: 10px 0;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.nv-hr.nv-hr-lg {
    margin: 20px 0;
}

.nv-hr.nv-hr-sm {
    margin: 5px 0;
}

/* Social share,social button */

.nv-social-share {
    list-style: none;
    margin: 0;
    padding: 4px 5px 0 5px !important;
}

.nv-social-share li {
    display: inline-block;
    margin-bottom: 0 !important;
    height: 20px;
}

.nv-social-share li.facebook {
    position: relative;
    top: -4px;
    padding-right: 40px;
}

/* Form control */

.nv-captcha {
    vertical-align: middle;
}

.nv-recaptcha-default {
    margin: 0 auto;
    width: 304px;
    height: 78px;
}

.nv-recaptcha-compact {
    margin: 0 auto;
    width: 164px;
    height: 144px;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* List item */

.nv-list-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nv-list-item li {
    padding: 4px;
    margin: 0 !important;
}

.nv-list-item.sm li {
    padding: 2px;
}

.nv-list-item.xsm li {
    padding: 1px;
}

.nv-list-item.lg li {
    padding: 10px;
}

.page .nv-list-item li {
    display: flex;
}

.page .nv-list-item li em {
    position: relative;
    top: 2px;
}

/* sub-list-icon */

.sub-list-icon > li:first-child > *:before,
.cat-icon:before {
    content: ' \f114 ';
    font-family: FontAwesome;
    font-size: inherit;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    margin-top: -3px;
}

.sub-list-icon > li + li > *:before {
    content: ' \f10c ';
    font-family: FontAwesome;
    font-size: 8px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.sub-list-icon > li:first-child + li > *:before {
    content: ' \f101 ';
    font-size: 12px;
    margin-top: -2px;
}

/* List none */

.list-none {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Block global */

.nv-block-banners {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.nv-block-banners img {
    max-width: 100%;
    height: auto;
}

.nv-block-rss li {
    border-bottom-width: 1px;
    border-bottom-color: #dcdcdc;
    border-bottom-style: solid;
}

.nv-block-rss li:last-child {
    border: none;
    padding-bottom: 0;
}

.nv-block-rss li:first-child {
    padding-top: 0;
}

.nv-block-rss img {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #dcdcdc;
    border-radius: 4px;
    display: inline-block;
    max-width: 100%;
    height: auto;
    position: relative;
    top: 4px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.enable-animate .nv-block-rss img {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Info die */

.nv-infodie {
    margin: 0 auto;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    border-width: 1px;
    border-color: #dcdcdc;
    border-style: solid;
    background-color: #fff;
    position: absolute;
    min-height: 300px !important;
    min-width: 300px !important;
    display: table;
}

.nv-infodie .panel-body {
    display: table-cell;
    vertical-align: middle;
}

.nv-infodie .logo {
    max-width: 90%;
    margin-bottom: 10px;
    height: auto;
}

/* Form */

input,
input[type='file'],
input[type='radio'],
input[type='checkbox'],
button,
.btn,
.form-control,
textarea,
input:focus,
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus,
button:focus,
.btn:focus,
.form-control:focus,
textarea:focus,
input:focus:active,
input[type='file']:focus:active,
input[type='radio']:focus:active,
input[type='checkbox']:focus:active,
button:focus:active,
.btn:focus:active,
.form-control:focus:active,
textarea:focus:active,
input.active:focus,
input[type='file'].active:focus,
input[type='radio'].active:focus,
input[type='checkbox'].active:focus,
button.active:focus,
.btn.active:focus,
.form-control.active:focus,
textarea.active:focus,
input:active,
input[type='file']:active,
input[type='radio']:active,
input[type='checkbox']:active,
button:active,
.btn:active,
.form-control:active,
textarea:active {
    outline-width: 0;
    outline-style: none;
}

input[type='checkbox'],
input[type='radio'] {
    border-width: 1px;
    border-style: solid;
    border-color: #aaaaaa;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 16px;
    margin: 3px 4px 0 0;
    outline: 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    width: 16px;
    min-width: 16px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #707070;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

input[type='radio'] {
    border-radius: 50%;
    margin-right: 4px;
    line-height: inherit;
}

input[type='checkbox']:disabled,
input[type='radio']:disabled,
input[type='checkbox']:disabled:checked:before,
input[type='radio']:disabled:checked:before {
    opacity: 0.7;
}

input[type='checkbox']:checked:before,
input[type='radio']:checked:before {
    float: left;
    vertical-align: middle;
    width: 14px;
    font: normal 14px/1 'FontAwesome';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input[type='checkbox']:checked:before {
    content: '\f00c';
    margin: 0 0 0 0;
    color: #333333;
}

input[type='radio']:checked:before {
    content: '\2022';
    text-indent: -9999px;
    border-radius: 50px;
    font-size: 24px;
    width: 6px;
    height: 6px;
    margin: 4px;
    line-height: 16px;
    background-color: #333333;
}

.img-thumbnail {
    background-color: #cccccc;
    border: none;
    border-radius: 3px;
    max-width: 100%;
    padding: 1px;
}

.fb-like {
    margin-right: 50px;
}

.navbar-inverse {
    background-color: #d9e8f4;
    border-color: #2a6496;
}

.navbar-inverse .navbar-nav > li > a {
    color: #ffffff;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #ffffff;
    background-color: #2a6496;
}

.panel-heading {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0) 100%) !important;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 10px;
}

.panel-primary > .panel-heading > a {
    color: #fff;
}

.panel-primary > .panel-heading > a:hover {
    color: #dcdcdc;
}

table caption {
    color: #357ebd;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    padding: 0 0 5px 2px;
}

blockquote {
    font-size: 13px;
}

.modal-header .close {
    margin-top: -2px;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
}

.modal-body {
    padding: 15px;
}

#sitemodal .modal-dialog {
    position: relative;
    width: auto !important;
    max-width: 600px;
    text-align: center;
    font-size: 0;
}

#sitemodal .modal-content {
    width: auto;
    display: inline-block;
    font-size: 14px;
    text-align: left;
}

#sitemodal .close,
#sitemodalTerm .close {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 24px;
    height: 24px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    opacity: 0.8;
    border-width: 2px;
    border-style: solid;
    border-color: #cccccc;
    border-radius: 12px;
}

#sitemodal .close:hover {
    opacity: 1;
}

@media (max-width: 619px) {
    #sitemodal .modal-dialog {
        margin-left: 10px;
        margin-right: 10px;
    }

    #sitemodal .modal-content {
        display: block;
    }
}

#sb-container {
    z-index: 99999999 !important;
}

.chromeframe {
    position: fixed !important;
    top: 0 !important;
    right: 0;
    left: 0;
    width: 100% !important;
    z-index: 99999999999999 !important;
    background-color: #ffff00 !important;
    color: #000 !important;
    height: 25px;
    line-height: 25px;
    padding: 0.2em 0;
    text-align: center !important;
}

#timeoutsess {
    display: none;
}

#timeoutsess a {
    color: #2f70a7 !important;
}

/* Block featured-products */

.featured-products > .row {
    margin-bottom: 35px;
}

.featured-products > .row:last-child {
    margin-bottom: 0;
}

.featured-products .img-thumbnail {
    margin-top: 3px;
    margin-bottom: 10px;
    background-color: #fff !important;
    border-width: 1px !important;
    padding: 0 !important;
}

.featured-products ul {
    margin: 0;
    padding: 0;
}

.featured-products ul > li {
    margin-bottom: 5px;
}

.featured-products ul > li:before {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 5px;
}

/* Account Level */

[class^='lev-'],
[class*=' lev-'] {
    display: inline-block;
}

[class^='lev-']:before,
[class*=' lev-']:before {
    font-family: FontAwesome;
    font-size: inherit;
    margin-right: 5px;
}

.lev-1:before {
    content: ' \f005 \f005 \f005 ';
}

.lev-2:before {
    content: ' \f005 \f005 \f006 ';
}

.lev-3:before {
    content: ' \f005 \f006 \f006 ';
}

.lev-user:before {
    content: ' \f007 ';
}

/* module Contact*/

.contact-result {
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    float: left;
    z-index: 2;
    padding: 30px 20px;
    display: none;
}

/* Block module-menu */

.module-menu {
    display: block;
    float: left;
    width: 100%;
    background-color: #333;
}

.module-menu ul {
    margin: 0;
    padding: 0;
}

.module-menu a {
    display: block;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    background-color: #428bca;
    background-image: linear-gradient(to right, #428bca 4px, #428bca 4px);
    background-repeat: repeat-x;
    color: #fff;
    text-decoration: none;
    margin: 0;
    padding: 9px 10px 9px 20px;
    cursor: pointer;
}

.module-menu a:before {
    font-family: 'FontAwesome';
    content: ' \f105 ';
    margin-right: 5px;
}

.module-menu a.home:before {
    content: ' \f07c ';
}

.module-menu a.active {
    background-color: #a6c8e6;
}

.module-menu a:hover,
.module-menu a.active,
.module-menu a:focus {
    color: #333;
    text-decoration: none;
    background-image: linear-gradient(to right,
            #42cac5 4px,
            rgba(0, 0, 0, 0) 4px);
}

.calendar-icon {
    background-image: url(../../../assets/images/calendar.jpg);
    background-position: right 6px center;
    background-repeat: no-repeat;
    padding-right: 26px;
}

/*alert*/

.nv-alert {
    position: fixed !important;
    top: 25% !important;
    right: 0;
    left: 0;
    width: 350px !important;
    margin: auto;
    z-index: 99999999999999 !important;
    text-align: center !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.select2-container--default .select2-selection--single,
.select2-container--bootstrap .select2-selection--single {
    height: 32px !important;
    padding-top: 2px;
}

.voting-col-2 {
    border-left: 1px solid #ccc;
    padding: 0px 10px;
}

.padding-voting ul li {
    margin: 0px 10px;
    padding: 10px 0px;
    list-style: disc;
    text-align: justify;
}

.sum-voting {
    margin-top: 5px;
}

/*cookie-notice popup*/

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    z-index: 99999999999999;
    background-color: #eee;
    border: solid 1px #dedede;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.cookie-notice a {
    color: #1a3f5e;
    text-decoration: underline;
}

.cookie-notice div {
    position: relative;
    width: 100%;
    padding: 20px;
    color: #333;
}

.cookie-notice button {
    float: right;
    margin-top: -20px;
    margin-right: -20px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    font-size: 24px;
}

/* Blue override theme */
:root {
    --cd-blue-dark: #004080;
    --cd-blue: #007bff;
    --cd-blue-deep: #003366;
    --cd-bg: #f4f7fb;
    --cd-surface: #ffffff;
    --cd-text: #1f2d3d;
    --cd-muted: #6c7a89;
    --cd-yellow-line: #f4cf67;
    --cd-border: #dbe6f2;
    --cd-shadow: 0 10px 24px rgba(0, 64, 128, 0.12);
}

html,
body,
input,
button,
select,
textarea {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
}

body {
    color: var(--cd-text);
    background: var(--cd-bg);
}

a {
    color: var(--cd-blue);
    transition: color .2s ease;
}

a:hover,
a:focus {
    color: var(--cd-blue-dark);
}

/* Main menu */
#menusite .navbar-default {
    background: var(--cd-blue-dark) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .06);
}

#menusite .navbar-default .navbar-nav>li>a {
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .3px;
    padding-top: 14px;
    padding-bottom: 14px;
    position: relative;
}

#menusite .navbar-default .navbar-nav>li>a::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: var(--cd-yellow-line);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}

#menusite .navbar-default .navbar-nav>li>a:hover,
#menusite .navbar-default .navbar-nav>li>a:focus,
#menusite .navbar-default .navbar-nav>.active>a,
#menusite .navbar-default .navbar-nav>.active>a:hover,
#menusite .navbar-default .navbar-nav>.active>a:focus,
#menusite .navbar-default .navbar-nav>.open>a,
#menusite .navbar-default .navbar-nav>.open>a:hover,
#menusite .navbar-default .navbar-nav>.open>a:focus {
    background: linear-gradient(180deg, #0050a0 0%, #004080 100%) !important;
    color: #fff !important;
}

#menusite .navbar-default .navbar-nav>li>a:hover::after,
#menusite .navbar-default .navbar-nav>.active>a::after,
#menusite .navbar-default .navbar-nav>.open>a::after {
    transform: scaleX(1);
}

#menusite .dropdown-menu {
    border: 1px solid var(--cd-border) !important;
    background: #fff !important;
    border-radius: 0 0 8px 8px !important;
}

#menusite .dropdown-menu>li>a {
    color: var(--cd-text);
    font-weight: 600;
}

#menusite .dropdown-menu>li>a:hover,
#menusite .dropdown-menu>li>a:focus {
    background: #eef5ff !important;
    color: var(--cd-blue-dark);
}

/* Panel heading */
.panel {
    border-color: var(--cd-border);
    box-shadow: 0 4px 14px rgba(0, 41, 82, 0.06);
}

.panel-heading,
.panel-primary>.panel-heading,
div.news_column .panel-heading {
    background: linear-gradient(180deg, #0057ad 0%, var(--cd-blue-dark) 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    border-radius: 8px 8px 0 0 !important;
    padding: 12px 14px !important;
}

.panel-heading a,
.panel-primary>.panel-heading>a {
    color: #fff !important;
    font-weight: 700;
}

/* News: square cards + shadow */
.news_column .thumbnail {
    background: var(--cd-surface);
    border: 1px solid var(--cd-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 64, 128, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    margin-bottom: 20px;
    padding: 0;
}

.news_column .thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: var(--cd-shadow);
}

.news_column .thumbnail>a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eaf2fb;
}

.news_column .thumbnail>a img,
.news_column .thumbnail img.img-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    transition: transform .35s ease;
}

.news_column .thumbnail:hover img {
    transform: scale(1.04);
}

.news_column .thumbnail .caption {
    padding: 14px 14px 16px;
    text-align: left !important;
}

.news_column .thumbnail .caption h4 {
    margin: 0 0 8px;
    line-height: 1.4;
    font-weight: 700;
    min-height: 44px;
}

.news_column .thumbnail .caption h4 a {
    color: var(--cd-blue-dark);
}

.news_column .thumbnail .caption h4 a:hover {
    color: var(--cd-blue);
}

.list-group {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cd-border);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 64, 128, 0.06);
    margin-bottom: 20px;
}

.list-group>a.show.h4 {
    display: block;
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f8;
    background: #fff;
    transition: background .2s ease, padding-left .2s ease;
}

.list-group>a.show.h4:last-child {
    border-bottom: 0;
}

.list-group>a.show.h4:hover {
    background: #f5f9ff;
    padding-left: 20px;
}

.list-group-item-heading {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--cd-blue-dark);
}

/* News spacing */
div.news_column .panel-body,
div.news_column .featured,
div.news_column .items,
.content-box {
    padding: 18px !important;
}

div.news_column .text-muted {
    color: var(--cd-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

div.news_column .imghome {
    margin: 0 14px 10px 0;
    border-radius: 8px;
    overflow: hidden;
}

/* Slider and banner */
.sliderwrapper,
.sliderwrapper .contentdiv {
    width: 100%;
    height: auto;
    min-height: 240px;
}

.sliderwrapper .contentdiv img {
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 520px;
    object-fit: cover;
    border: 0 !important;
    padding: 0 !important;
    display: block;
    border-bottom: 4px solid rgba(0, 64, 128, 0.16) !important;
}

.site-banner {
    width: 100%;
    left: 0;
    right: 0;
}

.bg-white,
.panel,
.thumbnail,
.well {
    background-color: #fff;
}

.breadcrumbs-wrap,
.section-header-bar {
    background-image: linear-gradient(180deg, #0b4d90 0%, var(--cd-blue-deep) 100%);
}

/* Responsive */
@media (max-width: 991px) {
    #menusite .navbar-default .navbar-nav>li>a {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .news_column .thumbnail>a {
        aspect-ratio: 16 / 10;
    }

    .sliderwrapper .contentdiv img {
        min-height: 200px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .panel-heading,
    .panel-primary>.panel-heading,
    div.news_column .panel-heading {
        padding: 10px 12px !important;
    }

    .news_column .thumbnail .caption {
        padding: 12px;
    }

    .list-group>a.show.h4 {
        padding: 12px;
    }

    .list-group-item-heading {
        font-size: 15px;
    }

    .sliderwrapper .contentdiv img {
        min-height: 170px;
    }
}

/* Blue override theme - phase 2 (stronger layout refresh) */
.site-banner {
    display: none !important;
}

.nv-fullbg {
    background: linear-gradient(180deg, #eef4fb 0%, #f7f9fc 45%, #f1f5fa 100%) !important;
}

.wraper {
    width: 1160px;
}

.section-header-bar {
    background: linear-gradient(90deg, #003366 0%, #004080 55%, #0056ad 100%) !important;
}

#header {
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(0, 43, 87, 0.12);
    margin-bottom: 10px;
}

#header .logo .site_description,
#header .logo h2 {
    color: #004080 !important;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
}

.second-nav .bg {
    background: #e9f2fb !important;
    border-radius: 8px 8px 0 0;
}

.third-nav .bg {
    background: #f3f8ff !important;
    border: 1px solid #d8e5f4;
    border-radius: 0 0 8px 8px;
}

.headerSearch input {
    border-color: #c7d9ee !important;
}

.headerSearch .btn-info,
.headerSearch .btn-info:focus,
.headerSearch .btn-info:hover,
.headerSearch .btn-info:active {
    background: #007bff !important;
    border-color: #007bff !important;
    color: #fff !important;
}

#container,
.main-content,
.theme-body {
    background: transparent !important;
}

.panel,
.well,
.module-menu,
.nv-block-banners,
.list-group {
    border-radius: 10px;
}

.module-menu {
    background: #004080;
    overflow: hidden;
}

.module-menu a {
    background: #004a94 !important;
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

.module-menu a:hover,
.module-menu a:focus,
.module-menu a.active {
    background: #007bff !important;
    color: #fff !important;
}

/* Home news block (NukeViet default) */
#hot-news {
    background: #fff;
    border: 1px solid #d7e4f3;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 64, 128, 0.08);
    padding: 14px;
}

#hot-news .hot-news-main {
    padding-right: 14px;
}

#hot-news .hot-news-main img {
    border: 0 !important;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

#hot-news .hot-news-others ul li {
    border-bottom: 1px solid #e4edf8;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

#hot-news .hot-news-others a {
    color: #003d78;
    font-weight: 700;
    line-height: 1.45;
}

#hot-news .hot-news-others a:hover {
    color: #007bff;
}

/* Footer visual cleanup */
#footer,
.footer {
    background: #003366;
    color: #d9e8f8;
}

#footer a,
.footer a {
    color: #ffffff;
}

@media (max-width: 1199px) {
    .wraper {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    #header {
        border-radius: 0;
        padding: 8px 10px;
    }

    #header .logo .site_description,
    #header .logo h2 {
        font-size: 16px;
    }

    .third-nav .current-time {
        display: none;
    }
}

/* Blue override theme - phase 3 (homepage structure match) */
#hot-news {
    padding: 18px !important;
}

#hot-news .panel {
    border: 0 !important;
    box-shadow: none !important;
}

#hot-news .panel-body {
    padding: 0 !important;
}

#hot-news .col-md-14 .margin-bottom.text-center {
    margin-bottom: 12px !important;
    overflow: hidden;
    border-radius: 10px;
}

#hot-news .col-md-14 h2 {
    margin: 0 0 8px;
    font-size: 29px;
    line-height: 1.28;
    font-weight: 800;
}

#hot-news .col-md-14 h2 a {
    color: #043b75 !important;
}

#hot-news .col-md-14 h2 a:hover {
    color: #007bff !important;
}

#hot-news .text-right a {
    color: #005ebd !important;
    font-weight: 700;
}

#hot-news .hot-news-others {
    background: #f4f9ff;
    border: 1px solid #d7e6f7;
    border-radius: 10px;
    padding: 8px 10px 0;
}

#hot-news .hot-news-others ul {
    margin: 0;
}

#hot-news .hot-news-others ul li {
    margin: 0;
    padding: 10px 0;
}

#hot-news .hot-news-others ul li:last-child {
    border-bottom: 0;
}

#hot-news .hot-news-others a.show {
    font-size: 15px;
    font-weight: 700;
}

#hot-news .hot-news-others a.show img {
    border-radius: 6px;
    border: 1px solid #dbe8f6;
}

.news_column {
    margin-bottom: 18px;
}

.news_column > .panel.panel-default {
    border: 1px solid #d7e4f3 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 60, 120, 0.08) !important;
    overflow: hidden;
}

.news_column > .panel > .panel-heading {
    background: linear-gradient(90deg, #004080 0%, #0061c2 100%) !important;
    border: 0 !important;
    padding: 12px 14px !important;
}

.news_column > .panel > .panel-heading h4,
.news_column > .panel > .panel-heading h4 a,
.news_column > .panel > .panel-heading li h4 a,
.news_column > .panel > .panel-heading a,
.news_column > .panel > .panel-heading span {
    color: #fff !important;
    font-weight: 700;
}

.news_column > .panel > .panel-body {
    background: #fff;
    padding: 14px !important;
}

.news_column > .panel > .panel-body .col-md-16 > a .imghome,
.news_column > .panel > .panel-body .col-md-24 > a .imghome {
    width: 120px !important;
    height: 84px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #d9e7f6;
}

.news_column > .panel > .panel-body h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.35;
}

.news_column > .panel > .panel-body h3 a {
    color: #073e77 !important;
    font-weight: 800;
}

.news_column > .panel > .panel-body h3 a:hover {
    color: #007bff !important;
}

.news_column .text-muted {
    background: #f3f8fe;
    border: 1px solid #e2ecf7;
    border-radius: 6px;
    padding: 4px 8px;
    display: inline-block;
    margin-bottom: 10px;
}

.news_column ul.related {
    margin: 0;
    background: #f8fbff;
    border: 1px solid #e0ebf7;
    border-radius: 10px;
    padding: 8px 10px !important;
}

.news_column ul.related li {
    border-bottom: 1px dashed #ccddf1;
    padding: 8px 0;
    margin: 0;
}

.news_column ul.related li:last-child {
    border-bottom: 0;
}

.news_column ul.related li a.show {
    color: #0f4c8a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.news_column ul.related li a.show:hover {
    color: #007bff;
}

/* Sidebar blocks */
.col-sm-6 .panel.panel-primary,
.col-md-5 .panel.panel-primary,
.col-md-6 .panel.panel-primary {
    border: 1px solid #d5e4f3 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 18px rgba(0, 53, 108, 0.08) !important;
    overflow: hidden;
    margin-bottom: 16px;
}

.col-sm-6 .panel.panel-primary > .panel-heading,
.col-md-5 .panel.panel-primary > .panel-heading,
.col-md-6 .panel.panel-primary > .panel-heading {
    background: linear-gradient(90deg, #004080 0%, #005fbf 100%) !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 11px 12px !important;
}

.col-sm-6 .panel.panel-primary > .panel-body,
.col-md-5 .panel.panel-primary > .panel-body,
.col-md-6 .panel.panel-primary > .panel-body {
    background: #fff;
    padding: 12px !important;
}

.metismenu {
    border: 1px solid #d4e5f6 !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 47, 94, 0.08);
}

.metismenu > h5,
.metismenu .panel-title {
    background: linear-gradient(90deg, #004080 0%, #0065c9 100%);
    color: #fff !important;
    margin: 0;
    padding: 12px 13px;
    font-weight: 700;
}

.metismenu ul li a {
    border-bottom: 1px solid #e4eef8;
    padding: 10px 13px;
    color: #08437d;
    font-weight: 700;
}

.metismenu ul li a:hover,
.metismenu ul li a[aria-expanded="true"] {
    background: #edf5ff;
    color: #007bff;
}

.nv-block-banners img,
.panel-body img.img-thumbnail {
    border-radius: 8px;
    border-color: #dbe8f7 !important;
}

/* Desktop rhythm closer to cdhue */
@media (min-width: 1200px) {
    .col-sm-12.col-md-13.col-sm-push-6.col-md-push-5 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .col-sm-6.col-md-6.col-sm-push-6.col-md-push-5,
    .col-sm-6.col-md-5.col-sm-pull-18.col-md-pull-19 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 991px) {
    #hot-news .col-md-14 h2 {
        font-size: 24px;
    }

    .news_column > .panel > .panel-body .col-md-16 > a .imghome,
    .news_column > .panel > .panel-body .col-md-24 > a .imghome {
        width: 110px !important;
        height: 76px;
    }
}

@media (max-width: 767px) {
    #hot-news {
        padding: 12px !important;
    }

    #hot-news .col-md-14 h2 {
        font-size: 21px;
    }

    #hot-news .hot-news-others {
        margin-top: 10px;
    }

    .news_column > .panel > .panel-body h3 {
        font-size: 19px;
    }

    .news_column > .panel > .panel-body .col-md-16 > a .imghome,
    .news_column > .panel > .panel-body .col-md-24 > a .imghome {
        width: 100px !important;
        height: 72px;
    }

    .news_column ul.related {
        margin-top: 10px;
    }
}

/* Blue override theme - phase 4 (official portal framing) */
.official-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    color: #e7f1ff;
    gap: 16px;
}

.official-topbar__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.official-topbar__actions {
    margin-left: auto;
}

.official-topbar__actions .personalArea,
.official-topbar__actions a,
.official-topbar__actions .btn {
    color: #fff !important;
}

#header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
}

.official-branding {
    flex: 1 1 auto;
}

.official-branding__home {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 136px;
    padding: 8px 2px;
    text-decoration: none !important;
}

.official-branding__logo {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 54, 108, 0.16));
}

.official-branding__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.official-branding__eyebrow {
    color: #9b6a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.official-branding__title {
    color: #004080;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.official-branding__subtitle {
    color: #315b84;
    font-size: 15px;
    line-height: 1.5;
    max-width: 720px;
}

.official-header-tools {
    min-width: 250px;
    max-width: 290px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f3f8ff 0%, #e5f0fb 100%);
    border: 1px solid #d6e5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.official-header-tools__site-name {
    color: #003b75;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.official-header-tools__site-desc {
    color: #496987;
    font-size: 14px;
    line-height: 1.5;
}

.official-header-tools .right-ads {
    margin-top: 4px;
}

#header .logo,
#tip,
.contactDefault,
.social-icons {
    display: none !important;
}

#menusite .bg.box-shadow {
    border-radius: 14px 14px 0 0;
}

.third-nav .bg {
    border-radius: 0 0 14px 14px;
}

#body > .row:first-of-type {
    margin-top: 8px;
}

.col-sm-6.col-md-5.col-sm-pull-18.col-md-pull-19,
.col-sm-6.col-md-6.col-sm-push-6.col-md-push-5 {
    padding-top: 2px;
}

#footer {
    margin-top: 24px;
    border-top: 1px solid #d09045;
    border-bottom: 1px solid #a25c11;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 186, 89, 0.12) 0, rgba(255, 186, 89, 0.12) 140px, transparent 141px),
        radial-gradient(circle at 74% 28%, rgba(255, 201, 125, 0.08) 0, rgba(255, 201, 125, 0.08) 30px, transparent 31px),
        radial-gradient(circle at 88% 84%, rgba(255, 201, 125, 0.1) 0, rgba(255, 201, 125, 0.1) 34px, transparent 35px),
        linear-gradient(135deg, #c57115 0%, #c87416 45%, #b7630c 100%);
    padding: 18px 0 14px;
}

.official-footer {
    display: grid;
    grid-template-columns: minmax(320px, 500px) 1fr;
    gap: 36px;
    align-items: start;
}

.official-footer__brand {
    padding: 2px 0 0;
}

.official-footer__brand h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.official-footer__address,
.official-footer__subsites,
.official-footer__contact-row,
.official-footer__email {
    color: #fff4de;
    font-size: 16px;
    line-height: 1.55;
}

.official-footer__subsites {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 6px;
    color: #fff4de !important;
    text-decoration: none !important;
}

.official-footer__contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 8px 0 4px;
    font-weight: 700;
}

.official-footer__email {
    margin-bottom: 16px;
    font-weight: 700;
}

.official-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    color: #fff !important;
    background: rgba(102, 44, 0, 0.42);
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
}

.official-footer__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 16px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.official-footer__stats strong {
    font-size: 20px;
}

.official-footer__content {
    min-width: 0;
}

.official-footer__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 0.72fr;
    gap: 28px;
}

.official-footer__column h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.official-footer__links {
    margin: 0;
    padding: 0;
}

.official-footer__links li {
    margin-bottom: 8px;
}

.official-footer__links a {
    position: relative;
    display: inline-block;
    padding-left: 14px;
    color: #fff7e8 !important;
    text-decoration: none !important;
    font-size: 15px;
    line-height: 1.45;
}

.official-footer__links a:before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.official-footer__badge {
    margin-top: 14px;
    max-width: 220px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
}

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

.official-footer__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 226, 184, 0.4);
    color: #fff8ec;
    font-size: 14px;
}

.official-footer__credit strong {
    color: #fff;
}

.official-footer__legacy {
    display: none;
}

.footerNav2 {
    background: #a95c10 !important;
}

@media (max-width: 991px) {
    #header {
        flex-direction: column;
    }

    .official-branding__title {
        font-size: 28px;
    }

    .official-header-tools {
        max-width: none;
        min-width: 0;
    }

    .official-footer {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .official-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .official-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .official-branding__home {
        align-items: flex-start;
        gap: 14px;
        min-height: 0;
    }

    .official-branding__logo {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .official-branding__title {
        font-size: 22px;
    }

    .official-branding__subtitle,
    .official-header-tools__site-desc {
        font-size: 14px;
    }

    .official-footer__brand h3 {
        font-size: 22px;
    }

    .official-footer__address,
    .official-footer__subsites,
    .official-footer__contact-row,
    .official-footer__email,
    .official-footer__links a {
        font-size: 14px;
    }

    .official-footer__grid {
        grid-template-columns: 1fr;
    }

    .official-footer__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .official-footer__stats {
        font-size: 15px;
    }
}

/* Blue override theme - phase 5 (wider full-width layout) */
.wraper {
    width: 100% !important;
    max-width: 1680px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
}

.section-header .wraper,
.section-nav .wraper,
.section-body .wraper,
.section-footer-top .wraper,
.footerNav2 .wraper {
    width: 100% !important;
    max-width: 1680px;
}

.section-header .container,
.section-nav .container,
.section-body .container,
.section-footer-top .container,
.footerNav2 .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0;
    padding-right: 0;
}

#body {
    width: 100%;
    border-width: 0 1px 1px;
}

.section-body,
.section-nav,
.section-header,
.section-footer-top,
.footerNav2 {
    width: 100%;
}

@media (min-width: 1400px) {
    .wraper {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 767px) {
    .wraper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ===================== ADDRESS DROPDOWN (HEADER RIGHT) ===================== */
.official-header-tools {
    position: relative;
    align-items: flex-end;
}

.official-address-dropdown {
    position: relative;
    z-index: 2000;
}

.official-address-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #0f3d8a;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}

.official-address-dropdown__toggle .fa-angle-down {
    opacity: 0.85;
}

.official-address-dropdown__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    width: min(560px, 80vw);
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #0f3d8a;
    box-shadow: 0 10px 24px rgba(8, 37, 87, 0.24);
    display: none;
    z-index: 2100;
}

.official-address-dropdown__menu li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #1e3556;
    font-size: 13px;
    line-height: 1.45;
    padding: 6px 2px;
}

.official-address-dropdown__menu li .fa {
    color: #0f3d8a;
    margin-top: 2px;
}

.official-address-dropdown:hover .official-address-dropdown__menu {
    display: block;
}

@media (max-width: 991px) {
    .official-header-tools {
        align-items: flex-start;
        margin-top: 6px;
    }

    .official-address-dropdown__toggle {
        font-size: 12px;
        padding: 8px 11px;
    }

    .official-address-dropdown__menu {
        left: 0;
        right: auto;
        width: min(620px, 94vw);
    }
}

/* ===================== OFFICIAL HEADER CONTACT + WIDTH LIMIT ===================== */
.wraper,
.section-header .wraper,
.section-nav .wraper,
.section-body .wraper,
.section-footer-top .wraper,
.footerNav2 .wraper {
    max-width: 1200px !important;
}

#header {
    align-items: center;
    gap: 20px;
}

.official-branding {
    flex: 0 1 auto;
}

.official-branding__home {
    gap: 10px;
}

.official-header-tools {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 50px;
}

.official-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    line-height: 1.35;
    color: #1f3553;
    max-width: 640px;
    margin-top: 8px;
    text-align: left;
}

.official-contact__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.official-contact__item .fa {
    width: 18px;
    color: #0f3d8a;
    text-align: center;
    margin-right: 6px;
}

.official-contact__item a {
    color: #1f3553;
    text-decoration: none;
}

.official-contact__item a:hover {
    color: #0f3d8a;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .official-contact {
        font-size: 14px;
        max-width: 560px;
    }
}

@media (max-width: 991px) {
    #header {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .official-header-tools {
        width: auto;
        padding-right: 0;
        justify-content: flex-start;
    }

    .official-contact {
        max-width: 100%;
        text-align: left;
    }

    .official-contact__item {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .official-contact {
        font-size: 13px;
        gap: 4px;
    }
}

/* ===================== COMPACT HEADER (80% HEIGHT) ===================== */
#header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4px;
    padding-bottom: 4px;
    gap: 6px;
    overflow: visible;
}

.section-header {
    position: relative;
    z-index: 1000;
}

.official-branding {
    flex: 0 0 auto;
    min-width: 0;
    margin-left: 0;
    margin-right: auto;
}

.official-branding__home {
    display: inline-flex;
    min-height: 76px;
    gap: 8px;
    padding: 2px 0;
    width: fit-content;
    max-width: 100%;
    margin: 0;
}

.official-branding__logo {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
}

.official-branding__name {
    flex: 0 1 auto;
    width: auto;
    height: 74px;
    max-width: min(420px, 38vw);
}

.official-header-tools {
    flex: 0 0 auto;
    margin-left: auto;
    min-width: 0;
    white-space: nowrap;
    text-align: left;
}

.official-address-dropdown__toggle {
    padding: 8px 12px;
    font-size: 12px;
}

.official-contact {
    margin-top: 5px;
    gap: 3px;
    font-size: 13px;
    line-height: 1.25;
}

.official-contact__item .fa {
    margin-right: 5px;
}

@media (max-width: 1160px) {
    .official-branding__name {
        max-width: min(340px, 34vw);
    }

    .official-address-dropdown__toggle {
        padding: 6px 10px;
        font-size: 11px;
    }

    .official-contact {
        font-size: 12px;
        margin-top: 4px;
    }
}

@media (max-width: 991px) {
    #header {
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
    }

    .official-branding__home {
        min-height: 68px;
    }

    .official-branding__logo {
        flex: 0 0 62px;
        width: 62px;
        height: 62px;
    }

    .official-branding__name {
        width: auto;
        height: 62px;
        max-width: min(360px, 46vw);
    }
}

@media (max-width: 991px) {
    #header,
    .section-header .wraper,
    .section-header .container {
        text-align: left;
    }

    .official-header-tools {
        display: none;
    }

    .official-branding__name {
        width: auto;
        max-width: min(448px, 72vw);
    }
}
