 @charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Century Gothic";
    src: url("../../gothic.eot"); /* IE9 Compat Modes */
    src: url("../../gothic.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../../gothic.woff") format("woff"), /* Modern Browsers */ url("../../gothic.ttf") format("truetype"); /* Safari, Android, iOS */
}
/* CSS Cơ bản để định hình bố cục trực quan */
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}
/* Thẻ wrapper bao bọc toàn bộ trang để giới hạn chiều rộng và căn giữa */
.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
header {
    background: white;
    color: #000;
}
main {
    flex: 3;
    padding-right: 20px;
}
section {
    width: 100%;
    padding: 0 20px;
    margin: 50px auto;
}
.topbar_blue {
    background-color: #0b3795;
    color: white;
    font-family: "Century Gothic";
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0px;
}
.contactbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex: 2;
}
.contactbar_detail {
    display: flex;
    align-items: center;
    gap: 8px;
    /*    padding: 0 35px;*/
    position: relative;
    text-decoration: none;
}
.AAAcontactbar_detail:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: red;
}
.divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
}
.howtobar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}
.howtobar a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 5px;
}
.howtobar a::before {
    content: "●";
    margin-right: 8px;
    color: #ffffff;
    font-size: 1em;
}
.howtobar a:hover {
    color: yellow;
}
.topbar {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
}
.topbar_logo {
    display: flex;
    width: 30%;
    padding-left: 20px;
}
.topbar_shields {
    width: 70%;
    padding-right: 20px;
}
.topbar_shields ul {
    list-style-type: none;
    /*    width: 100%;*/
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
}
/* Thanh navbar chính */
.navbar {
    background-color: #0b1a57;
    /* Màu xanh đậm */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    position: relative;
    background: linear-gradient(180deg, #003cc9 0%, #021646 100%);
}
/* Danh sách menu */
		
.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.main-menu> li {
    position: relative;/* Điểm tựa cho menu con */
}
/*		block*/
		
.main-menu> li> a {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: -0.2px;
    transition: color 0.3s;
}
.main-menu> li> a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    /* Thickness of the underline */
    bottom: 6px;
    left: 0;
    background-color: #007bff;
    /* Color of the underline */
    transform: scaleX(0);
    /* Hidden by default */
    transform-origin: bottom left;
    transition: transform 0.2s ease-out;/* Smooth transition speed */
}
/* Reveal the underline on hover */
		
.main-menu> li> a:hover::after {
    transform: scaleX(1);
}
/* Hiệu ứng hover đổi màu chữ sang vàng */
		
.main-menu> li:hover> a {
    color: #ffeb3b;
}
.main-menu> li.active> a {
    color: #ffeb3b;/*			display: inline-block; */
}
/* Cấu trúc menu con (Submenu) */
		
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #07113b;
    min-width: 220px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
}
.submenu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.2s;
}
.submenu li a:hover {
    background-color: #1a3294;
    color: #ffeb3b;
}
/* Nút hamburger mặc định ẩn trên máy tính */
		
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}
#breadcum {
    color: white;
    display: none;
}
/*for menu area END*/

.feature-bar {
    display: flex;
    justify-content: center;
    background-color: #f1f1f1;/*    padding-bottom: 10px;*/
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 35px;
    position: relative;
}
/* Vertical divider lines between columns */
.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #535353;
}
/* Monochrome Unicode character icon styling */
.feature-unicode-icon {
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 40px;
    user-select: none;
}
.feature-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    font-family: "Century Gothic";
    user-select: none;
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 60px;
    user-select: none;
}
.feature-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.feature-desc {
    font-size: 14px;
    font-weight: 400;
}
/*fotter */
footer {
    background-color: #021950;
    color: #fff;
    padding: 10px 30px;
    margin-top: 20px;
    font-family: "Tahoma";
    font-size: 1em;
}
.bottombar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;/*    padding-top: 20px;*/
}
#slogan_column {
    padding: 0px 20px 10px 0px;
    flex: 1.5;
    display: flex;
    flex-direction: column;
}
.common_column {
    padding: 5px 10px 10px 5px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.bottombar .col_name {
    color: greenyellow;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.bottombar .common_column a {
    text-decoration: none;
    color: white;
    margin-bottom: 8px;
}
#contact_column {
    padding: 5px 10px 10px 5px;
    display: flex;
    flex: 1.2;
    flex-direction: column;
}
#bottomlogo {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}
#contact_column > div {
    margin-bottom: 15px;
}
.contacti {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}
#footer-slogan {
    text-align: justify;
    width: 100%;
    min-width: 270px;
}
/*footer end */


.white {
    color: white!important;
}
/*for menuicon*/
#menuicon {
    display: none;
    align-content: center;
    text-align: center;
    min-width: 44px;
    height: 44px;
    position: relative;
    top: 1px;
    right: 1px;
    background: white;
    line-height: 0.8;
    cursor: pointer;
    user-select: none;
    flex-direction: column;
}
#menuicon:hover {
    background: yellow;
}
#menuicon i {
    font-size: 16px;
}
#menuicon span {
    font-size: 10px;
}
#carticon {
    display: block;
    height: 44px;
    min-width: 100px;
    position: relative;
    top: 1px;
    right: 1px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    padding: 0px 10px 0px 10px;
    justify-content: flex-end;
    align-items: center;
}
#carticon:hover {
    background: #001d61;
}
#kart {
    font-size: 28px;
    position: absolute;
    top: 10px;
    right: 48px;
}
#kartnote {
    /*	font-family: tahoma;*/
    font-size: 12px;
    color: white;
    position: absolute;
    top: 22px;
    right: 4px;
}
#cartnum {
    font-size: 12px;
    font-weight: 800;
    color: #000000;
    border-radius: 100% 100%;
    border: #002f9e 1px solid;
    background: #ffca08;
    padding: 4px 4px;
    position: absolute;
    top: 1px;
    right: 36px;
    z-index: 10;
}
/*for menuicon end*/

#copyrightbar p {
    margin: 0px;
}

/* Responsive adjustments */
@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1200px) {
.divider {
    display: none;
}
.feature-desc {
    display: none;
}
.feature-item {
    padding: 0 5px;
    gap: 5px;
}
.topbar_logo {
    width: 50%;
}
.topbar_shields {
    width: 50%;
}
#li_sitelock {
    display: none;
}
}

@media screen and (max-width: 1024px) {
#logo-img {
    width: 100%;
    min-width: 250px;
    max-width: 432px;
}
#union-img1, #union-img2 {
    width: 100%;
    min-width: 122px;
}
}

@media (min-width: 769px) {
.main-menu> li:hover .submenu {
    display: block;
}
}

@media screen and (max-width: 768px) {
#SA_wrapper_aa0Md1w8gGxJ {
    display: block!important;
}
#SA_wrapper_6880scTJ2zGt {
    display: none!important;
}
.topbar {
    flex-direction: column;
}
.topbar_logo {
    width: 100%;
    padding: 0px;
    justify-content: center;
}
.topbar_shields {
    /*    width: 60%;*/
    padding: 0px;
}
.topbar_shields ul {
    justify-content: center;
    padding: 0px;
}
.feature-icon {
    max-width: 30px;
    ;
}
.feature-title {
    font-size: 12px;
}
#top-add, #top-email {
    display: none;
}
.contactbar {
    flex: 1;
}
footer {
    padding: 10px 10px;
    margin-top: 10px;
    font-family: "Century Gothic";
    font-size: 0.8em;
}
#footer-divcompany, #footer-divinfo, #slogan-column {
    display: none;
}
#slogan_column {
    flex: 0.8;
}
#bottomlogo {
    width: 100%;
    min-width: 120px;
}
.navbar {
    justify-content: space-between;
}
#breadcum {
    display: block;
}
.menu-toggle {
    display: flex;
    /* Hiện nút 3 gạch */
    padding: 10px 0;
}
/* Chuyển menu ngang thành menu dọc tràn màn hình */
.main-menu {
    display: none;
    /* Mặc định ẩn trên mobile */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0b1a57;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
/* Khi bấm nút 3 gạch sẽ thêm class này để hiện menu */
.main-menu.active {
    display: flex;
    z-index: 999;
}
.main-menu> li> a {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.submenu {
    position: static;
    /* Không đè lên các phần tử khác mà đẩy dòng xuống */
    background-color: #07113b;
    box-shadow: none;
    padding-left: 20px;/* Thụt lề vào trong */
}
/* Class kích hoạt hiển thị bằng JavaScript khi nhấn trên điện thoại */
.submenu.open {
    display: block;
}
}

@media screen and (max-width: 480px) {
.topbar_logo {
    width: 70%;
}
.topbar_blue {
    flex-direction: column;
}
#slogan_column {
    display: none;
}
}

@media screen and (max-width: 412px) {
.feature-bar {
    display: none;
}
}
