@charset "UTF-8"; /* Set the encoding of the style sheet to Unicode UTF-8 */
/* Fonts */
@font-face {
   font-family: 'Inter';
   src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
   font-weight: 600;
   font-style: normal;
}

@font-face {
   font-family: 'Roboto';
   src: url('../fonts/Roboto-Regular.woff2') format('woff2');
   font-weight: 400;
   font-style: normal;
}

@font-face {
   font-family: 'Roboto';
   src: url('../fonts/Roboto-Medium.woff2') format('woff2');
   font-weight: 500;
   font-style: normal;
}

@font-face {
   font-family: 'Roboto';
   src: url('../fonts/Roboto-SemiBold.woff2') format('woff2');
   font-weight: 600;
   font-style: normal;
}

@font-face {
   font-family: 'Roboto';
   src: url('../fonts/Roboto-Bold.woff2') format('woff2');
   font-weight: 700;
   font-style: normal;
}

@font-face {
   font-family: 'Roboto';
   src: url('../fonts/Roboto-Black.woff2') format('woff2');
   font-weight: 900;
   font-style: normal;
}

@font-face {
   font-family: 'SVN-Poppins';
   src: url('../fonts/SVN-PoppinsLight.woff2') format('woff2');
   font-weight: 300;
   font-style: normal;
}

@font-face {
   font-family: 'SVN-Poppins';
   src: url('../fonts/SVN-PoppinsRegular.woff2') format('woff2');
   font-weight: 400;
   font-style: normal;
}

@font-face {
   font-family: 'SVN-Poppins';
   src: url('../fonts/SVN-PoppinsMedium.woff2') format('woff2');
   font-weight: 500;
   font-style: normal;
}

@font-face {
   font-family: 'SVN-Poppins';
   src: url('../fonts/SVN-PoppinsSemiBold.woff2') format('woff2');
   font-weight: 600;
   font-style: normal;
}

@font-face {
   font-family: 'SVN-Poppins';
   src: url('../fonts/SVN-PoppinsBold.woff2') format('woff2');
   font-weight: 700;
   font-style: normal;
}

:root {
   --color-main: #0E76BD;
   --color-social: #0E76BD;
   --color-hover: #0E76BD;
   --color-text: #0E76BD;
   --color-red: #E00A0D;
}

body {
   font-size: 14px;
   line-height: 1.5;
   font-family: 'Roboto';
}
tbody, td, tfoot, th, thead, tr {
    border-width: inherit;
}
.max-width,
.wrap-content {
   width: calc(100% - 30px);
   max-width: 1600px;
   margin: 0px auto;
}

img {
   max-width: 100%;
   display: initial;
}

p{
   margin-bottom: 0;
}
* {
   box-sizing: border-box;
}

a {
   text-decoration: none;
}

.content-main p{
   margin-bottom: revert;
}
.content-main iframe {
   max-width: 100% !important;
}

.content-main img {
   height: auto !important;
}

.content-main * {
   max-width: 100% !important;
}

.content-main table {
   display: block;
   overflow-y: auto;
}
.content-main table td{
    border-width: initial;
    border-color: initial;
    border-style: inset;
}
.content-main ul li {
   margin-bottom: 0.75rem;
   list-style-type: disc;
}

.content-main ol li {
   margin-bottom: 0.75rem;
   list-style-type: decimal;
}

.content-main ul,
.content-main ol {
   list-style: initial;
}

.content-main img {
   margin: auto;
}

h3 a:hover {
   color: var(--color-hover);
}

.title-main,
.title-detail {
   position: relative;
   text-align: center;
   margin-bottom: 30px;
}

.title-main h2,
.title-detail h1 {
   text-align: center;
   font-size: 45px;
   font-family: 'SVN-Poppins';
   color: var(--color-main);
   text-transform: uppercase;
   font-weight: bold;
   margin-bottom: 0;
   padding-bottom: 20px;
   background: url(../images/deco.png) no-repeat bottom;
   line-height: normal;
}
.title-main .slogan {
}

.page-link {
   color: var(--color-main);
}

.page-item.active .page-link {
   background-color: var(--color-main);
   border-color: var(--color-main);
}
.social-title {
}
.social {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 5px;
}
.social p{}
.footer-ul {
   padding-left: 20px;
   color: #fff;
}

.footer-ul li {
   margin-bottom: 10px;
}

.footer-ul li a {
   color: #fff;
   font-size: 15px;
}

.footer-ul li a:hover {
   color: #EEFF00;
}

.social-plugin {
   display: flex;
   margin-top: 10px;
}

/* .scale-img {
   overflow: hidden;
}
.scale-img img, .scale-img picture {
   transition: all 0.5s;
}

.scale-img:hover > img, .scale-img:hover > picture {
   transform: scale(1.2, 1.2);
} */

.scale-img {
   position: relative;
   width: 100%;
   overflow: hidden;
}

.scale-img::before {
   bottom: 0;
   content: "";
   left: 0;
   position: absolute;
   right: 0;
   top: 0;
   -webkit-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
   -o-transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
   transition: all 0.8s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
   z-index: 1;
   border: 100px double rgba(0, 0, 0, 0);
   border-radius: inherit;
   opacity: 1;
   filter: alpha(opacity=100);
   visibility: visible;
   box-sizing: border-box;
   pointer-events: none;
}

.scale-img img {
   transform: unset !important;
}

.scale-img:hover::before {
   opacity: 0;
   filter: alpha(opacity=0);
   border: 0 double rgba(255, 255, 255, 0.7);
   visibility: hidden;
}

.text-split {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
   -webkit-box-orient: vertical;
   display: -webkit-box;
   -webkit-line-clamp: 3;
}

/* Transition All */

/* Transition All */
.transition, .btn-frame .kenit-alo-circle-fill, .control-owl button, .carousel-comment-media .carousel-control a span, .menu ul li a.has-child:after, .menu ul li ul, .menu ul li:hover > ul, .scale-img img, .scale-img:hover > img, .support-online .kenit-alo-circle-fill {
    transition: 0.3s all;
}

.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1182fc;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-frame i img {
    vertical-align: middle;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: #1182fc;
    opacity: 0.5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    border-radius: 100%;
    border: 2px solid transparent;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}

.btn-frame .pulse {
    animation-name: pulse;
}

@media (min-width: 1025px) {
   .slideshow-video{}
   .slideshow-video video{
      height: 615px !important;
      object-fit: cover;
   }
   .slideshow-item{}
   .slideshow-item img{}
}

/* slideshow */
.slideshow {
   position: relative;
}
.slideshow-video{}
.slideshow-item{}

.slideshow-info{}
.slideshow-name{}
.slideshow-desc{}
.slideshow-hotline{}

/* Search */
.search {
   width: 50%;
   position: relative;
   border-radius: 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-radius: 50px;
   border: 1px solid #D1D1D1;
   background: #E9E9E9;
}

.search input {flex: 1;border: 0;background: transparent;color: #666;font-size: 14px;}

.search input:focus {
   border: none;
   box-shadow: none;
}

.search label {font-size: 14px;color: #666;border-radius: 50px;background: var(--tile, #1A1A1A);width: 50px;height: 45px;display: flex;align-items: center;justify-content: center;cursor: pointer;}

.search label i {
}

/* Mmenu */
.offcanvas-body {
   flex-grow: 1;
   padding: 1rem 1rem;
   overflow: scroll;
}

.offcanvas-body::-webkit-scrollbar {
   width: 4px;
   height: 4px;
   transition: all 1s;
}

.offcanvas-body::-webkit-scrollbar-thumb {
   background-color: var(--color-main);
   border-radius: 5px;
   transition: all 1s;
}

.offcanvas-body::-webkit-scrollbar-track {
   background: #fff;
   width: 4px;
   height: 4px;
   transition: all 1s;
}

.btn-close-menu {
   position: absolute;
   right: 20px;
   top: 20px;
}

.menu-mobile ul {
   padding: 0px;
   list-style: none;
}

.menu-mobile ul li {
   position: relative;
}

.menu-mobile ul li > span i {
   transition: transform 0.3s ease;
   /* Adjust duration and easing as needed */
}

/* .menu-mobile ul li:last-child a{
   border-bottom: none;
} */
.menu-mobile ul li a {
   display: block;
   padding-right: 30px;
   color: #333;
   font-size: 15px;
   padding: 10px 0px;
   border-bottom: 1px solid #f1f1f1;
}

.menu-mobile ul li a i {
   margin-right: 10px;
}

.menu-mobile ul li li a {
   font-weight: normal;
}

.menu-mobile ul li a:hover {
   color: #f00;
}

.menu-mobile ul li .scroll {
   position: absolute;
   right: 0px;
   top: 9px;
   background: var(--color-main);
   font-size: 17px;
   line-height: 18px;
   height: 25px;
   color: #fff;
   width: 35px;
   border-radius: 5px;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
}

.menu-mobile ul li:hover {
   color: #f00;
}

.menu-mobile ul ul li .scroll {
   background: none;
   color: var(--color-main);
}

.menu-mobile ul li ul {
   padding-left: 10px;
}

.company {
   border-bottom: 1px solid #f1f1f1;
   padding-bottom: 10px;
}

.company p {
   margin-bottom: 5px;
   font-size: 13px;
}

.company p span {
   color: var(--color-text);
}

.search-menu {
   width: 100%;
   position: relative;
   margin: 10px 0px;
}

.search-menu input {
   width: 100%;
   background: #f5f5fa;
   border: 1px solid #f1f1f1;
   height: 40px !important;
   font-size: 13px;
}

.search-menu p {
   position: absolute;
   right: 10px;
   bottom: 8px;
}

/* Menu */
#menu {
   display: none;
}

#hamburger {
   display: none;
   width: 35px;
   height: 23px;
   position: relative;
   cursor: pointer;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
   background: var(--color-main);
   content: "";
   display: block;
   width: 100%;
   height: 2px;
   position: absolute;
   left: 0px;
}

#hamburger:before {
   top: 0px;
}

#hamburger span {
   top: 10px;
}

#hamburger:after {
   top: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
   -webkit-transition: none 0.5s ease 0.5s;
   transition: none 0.5s ease 0.5s;
   -webkit-transition-property: transform, top, bottom, left, opacity;
   -webkit-transition-property: top, bottom, left, opacity, -webkit-transform;
   transition-property: top, bottom, left, opacity, -webkit-transform;
   transition-property: transform, top, bottom, left, opacity;
   transition-property: transform, top, bottom, left, opacity, -webkit-transform;
}

/* Menu-wrapper */
.fix_menu {
   position: fixed !important;
   box-shadow: 0 0 1px #999;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 999;
}

.menu-wrapper {
   background: var(--color-main);
}

.menu-wrapper .wrap-content {
   position: relative;
}


.menu_category-box{
    position: relative;
    width: 270px;
}

.menu_category-box:hover .menu_category-pos {
    margin: 0;
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.menu_category-box .menu_sanpham-wrapper {
    border-radius: 0 !important;
    padding: 5px !important;
}

.menu_category-box .menu_sanpham-title {
    display: none !important;
}

.menu_category-box .menu_sanpham-list{
   max-height:555px;
   overflow:auto;
}
.menu_category-title{
    margin: 0;
    line-height: normal;
    height: 50px;
    background: #E6DE0C;
    font-size: 15px;
    font-family: 'BT-BeauSans-ExtraBold';
    text-transform: uppercase;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.menu_category-pos{
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    z-index: 9;
    margin-left: -60px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

nav.menu {
   position: relative;
   z-index: 99;
}

.fix_menu nav.menu {
}

.menu .wrap-content {
   position: relative;
}

.menu .ulmn {
   /* white-space: nowrap; */
   /* overflow: auto; */
   /* overflow-y: hidden; */
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}



.menu .ulmn::-webkit-scrollbar-track
{

}

.menu .ulmn::-webkit-scrollbar
{
   background-color: #fff;
   height: 5px;
   width: 5px;
}

.menu .ulmn::-webkit-scrollbar-thumb
{
   background-color: var(--color-red);
   border-radius:100px;
}

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

.menu ul li {
   position: relative;
   z-index: 99;
}

.menu ul.ulmn > li {
   display: inline-flex;
   align-items: center;
}

.menu ul.ulmn > li span.line {
    margin: 0 10px;
    display: block;
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
}

.menu ul li.line {
   width: 1px;
   height: 15px;
   background-color: rgba(255, 255, 255, 0.5);
   flex: none;
}

.menu ul li a {
   font-size: 14px;
   font-weight: bold;
   color: #fff;
   margin: 0px;
   padding: 0 20px;
   position: relative;
   z-index: 1;
   text-align: center;
   text-decoration: none !important;
   display: block;
   text-transform: capitalize;
   transition: all 0.4s ease;
   line-height: 50px;
}

.menu ul li a img {
   vertical-align: middle;
}

.menu > ul > li > a.active,
.menu > ul > li > a:hover {
   background: var(--color-red);
}

.menu ul li ul {
   position: absolute;
   min-width: 250px;
   left: 0;
   top: 100%;
   background: #fff;
   box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
   -webkit-transform: perspective(600px) rotateX(-90deg);
   transform: perspective(600px) rotateX(-90deg);
   -webkit-transform-origin: 0 0 0;
   transform-origin: 0 0 0;
   opacity: 0;
   visibility: hidden;
   transition: all 0.5s;
}

.menu ul li:hover > ul {
   -webkit-transform: perspective(600px) rotateX(0);
   transform: perspective(600px) rotateX(0);
   -webkit-transform-origin: 0 0 0;
   opacity: 1;
   visibility: visible;
   transition: all 0.7s;
}

.menu ul li ul li {
   text-align: left;
   border-bottom: 1px solid rgb(173 173 173 / 32%);
}

.menu ul li ul li:last-child {
   border-bottom: 0px;
}

.menu ul li ul li a {
   font-size: 14px;
   padding: 10px;
   display: block;
   text-decoration: none !important;
   line-height: 20px;
   text-align: left;
   font-weight: 500;
   text-transform: capitalize;
   color: #333;
}

.menu ul li ul li ul {
   top: 0px;
   left: 100%;
}

.menu ul li ul li a:before {
   position: absolute;
   content: "";
   top: 50%;
   left: 0;
   width: 0;
   height: 1px;
   background: #fed402;
   transition: all 0.3s linear;
   -webkit-transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   -ms-transition: all 0.3s linear;
   visibility: hidden;
   opacity: 0;
}

.menu ul li ul li a:hover:before,
.menu ul li ul li > a.active:before {
   left: 0;
   visibility: visible;
   opacity: 1;
   width: 30px;
}

.menu ul li ul li a:hover {
   padding-left: 40px;
}

.share {
   padding: 17px 10px 10px 10px;
   line-height: normal;
   background: rgba(128, 128, 128, 0.15);
   margin-top: 15px;
   border-radius: 5px;
}

.share b {
   display: block;
   margin-bottom: 5px;
}

/* Toc */
.box-readmore {
   padding: 8px 15px;
   border: 1px solid var(--color-main);
   margin-bottom: 2rem;
   border-radius: 5px;
   background: var(--color-main);
   color: #fff;
}

.tt-toc {
   position: relative;
   font-size: 18px;
   text-transform: uppercase;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   color: #fff;
}

.box-readmore li ul > li {
   margin: 0;
   margin-bottom: 8px;
}

.box-readmore li ul > li:before {
   content: counters(item, ".") " ";
}

.box-readmore ul {
   list-style-type: none;
   counter-reset: item;
   margin-bottom: 0px;
   padding-left: 0px !important;
   margin-top: 8px;
   display: none;
}

.box-readmore ul li {
   display: table;
   counter-increment: item;
   margin-bottom: 5px;
}

.box-readmore ul li:before {
   content: counters(item, ".") ". ";
   display: table-cell;
   padding-right: 5px;
}

.box-readmore ul li a {
   color: #333333;
   cursor: pointer;
   font-weight: 600;
}

.box-readmore ul li a:hover {
   color: #767676;
}

/* Footer */
.footer-wrapper {
   overflow: hidden;
   background: url(../images/ft-bg.png) no-repeat;
   background-size: cover;
}

.footer-info {padding: 50px 0px 60px 0px;}

.footer-info .wrap-content {display: flex;flex-wrap: wrap;justify-content: space-between;gap: 60px 0px;}

.footer-flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 20px;
}

.footer-title {
   font-size: 20px;
   font-weight: 800;
   color:#fff;
   text-transform:uppercase;
   margin-bottom: 25px;
   position: relative;
   padding-left: 12px;
   border-left: 3px solid var(--color-main);
}

.footer-box:nth-child(1) {
   width: 100%;
}

.footer-box:nth-child(2) {
   width: 30%;
}

.footer-box:nth-child(3) {
   width: 16%;
}

.footer-box:nth-child(4) {
   width: 26%;
}

.footer-box:nth-child(4) .footer-ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-logo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-logo .info {
}

.footer-logo .info p {
    font-size: 34px;
    color: #fff;
    font-weight: bold;
}

.footer-logo .info span {
    -webkit-text-stroke: 1.5px #fff;
    font-family: SVN-Poppins;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 83.333% */
    text-transform: uppercase;
   /* 1. Set a background gradient */
  background-image: linear-gradient(to right, #0256AA, #00A3FF);
   color:transparent;

  /* 2. Clip the background to the shape of the text */
  background-clip: text;
  -webkit-background-clip: text; /* For broader browser compatibility */

  /* 3. Make the text transparent so the background shows through */
  color: transparent;
  -webkit-text-fill-color: transparent; /* For broader browser compatibility */
}
.footer-name{}
.footer-desc{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.footer-content{}

.footer-optsetting{
}
.footer-optsetting p{
   display:flex;
   align-items: flex-start;
   color:#fff;
   gap: 15px;
   margin-bottom: 10px;
}
.footer-optsetting p{}
.footer-optsetting b{}
.footer-optsetting span{}

.footer_map-wrapper{}
.footer_map-wrapper .wrap-content{
    background: linear-gradient(90deg, #FBD184 0%, #FFF0AF 25%, #FBD184 50%, #FFF0AF 75%, #FBD184 100%);
    position: relative;
    border-radius: 1000px;
    padding: 1px;
}
.footer_map-title{
    font-size: 29px;
    font-family: 'SVN-GilroyXBold';
    text-transform: uppercase;
    font-style: italic;
    position: absolute;
    top: -20px;
    left: 365px;
    background: #F9F6EE;
    padding: 0 25px;
}
.footer_map-box{
    background: #F9F6EE;
}
.footer_map-box iframe{
    width: 100%;
    height: 380px;
}

.footer-powered {
}

.footer-powered .wrap-content {padding: 21px 0px;border-top: 1px #fff solid;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}

.footer-copyright {text-align: center;font-size: 14px;color: #fff;}

.footer-copyright b {
}
.footer-statistic{}
.footer-statistic span {
   position: relative;
   padding: 0px 5px;
}

.footer-hotline {
}

.footer-hotline p {
   margin-bottom: 15px;
   font-size: 18px;
   font-weight: 600;
}

.footer-hotline a {
   border-radius: 50px;
   background: var(
      --Vng-gold,
      linear-gradient(
         270deg,
         #c89a2a 0.84%,
         #f3ed9f 28.21%,
         #c89a2a 52.49%,
         #f3ed9f 80.37%,
         #c89a2a 100%
      )
   );
   display: inline-flex;
   align-items: center;
   padding: 10px 15px;
   gap: 10px;
}

.footer-hotline a span {
   font-size: 20px;
   color: #131b4a;
   font-weight: bold;
}

/* Sort */
.sort-select {
   display: flex;
   justify-content: end;
   margin: 20px 0px;
   position: relative;
}

.sort-select .click-sort {
   border: 1px solid #e0e0e0;
   border-radius: 4px;
   cursor: pointer;
   font-size: 14px;
   padding: 6px 10px 6px 8px;
   margin: 0px;
}

.sort-select-main {
   display: grid;
   background-color: #fff;
   border-radius: 4px;
   box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
   position: absolute;
   padding: 0 7px;
   top: 30px;
   right: 0;
   width: 160px;
   z-index: 2;
}

.sort-select-main p {
   border-bottom: 1px solid #f1f1f1;
   margin: 0px;
   order: 2;
}

.sort-select-main p:has(.check) {
   order: 1;
}

.sort a {
   color: #000;
   font-size: 14px;
   line-height: 17px;
   padding: 11px 3px;
   display: block;
   cursor: pointer;
}

.sort a.check i {
   box-sizing: border-box;
   position: relative;
   display: inline-block;
   transform: scale(var(--ggs, 1));
   width: 22px;
   height: 16px;
   border: 2px solid transparent;
   border-radius: 100px;
   vertical-align: middle;
}

.sort a.check i::after {
   content: "";
   display: block;
   box-sizing: border-box;
   position: absolute;
   left: 3px;
   top: -4px;
   width: 6px;
   height: 10px;
   border-width: 0 2px 2px 0;
   border-style: solid;
   transform-origin: bottom left;
   transform: rotate(45deg);
}

.sort-select .sort-show {
   padding-right: 12px;
   position: relative;
}

.sort-select .sort-show::before {
   content: "";
   border-left: 4px solid transparent;
   border-right: 4px solid transparent;
   border-top: 4px solid #333;
   content: "";
   height: 0;
   position: absolute;
   top: 6px;
   right: 0;
   width: 0;
}

/* Product */
.filter {
   position: absolute;
   right: 0px;
   top: 0px;
   padding: 5px 10px;
   background: #f1f1f1;
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 10px;
   text-transform: uppercase;
   border-radius: 5px;
   cursor: pointer;
   border: 1px solid #ddd;
   display: none;
}

.grid-product {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}
.product-card{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #E3E3E3;
    background: var(--trang, #FFF);
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 4px;
}
.product-image{}
.product-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 15px;
}
.product-name{
    height: 48px;
    margin-bottom: 0;
}
.product-name a{
    font-size: 18px;
    color: #1A1A1A;
    font-family: 'Roboto';
    line-height: 24px;
    -webkit-line-clamp: 2;
}
.product-code_price{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
}
.product-code{
    font-size: 16px;
    color: #666;
}
.product-price_container{}
.product-price_new{
    color: #E00A0D;
}
.product-price_old{
    color: #333;
    font-weight: 500;
    font-size: 15px;
    text-decoration: line-through;
}
.product-price_discount{}
.product-btn{
    border-radius: 50px;
    border: 1px solid var(--color-main);
    background: #E5F5FF;
    padding: 8px 14px;
}
.product-btn span{
    color: var(--color-main);
}

/* product detail */
.grid-pro-detail {
   display: flex;
   justify-content: space-between;
   align-items: start;
}

.grid-pro-detail .left-pro-detail {
   width: 41%;
}

.grid-pro-detail .right-pro-detail {
   width: 57%;
}

.tabs-pro-detail .tab-content {
   border: 1px solid #ddd;
   border-top: none;
   padding: 20px;
}

.nav-tabs li a {
   text-transform: uppercase;
   font-weight: 500;
   color: #333;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
   color: #f00;
}

.cursor-pointer {
   cursor: pointer;
}

/*  breadCrumbs */
.breadCrumbs {
   padding: 10px 0px;
   background: var(--color-main);
}

.breadCrumbs ol {
   margin: 0px;
}

.breadCrumbs ol li a {
   color: #fff !important;
}

.breadCrumbs ol li a:hover {
   color: var(--color-hover);
}

/* paging */
.paging-product {
   position: relative;
}

.pagination {
   margin: 20px 0px;
   width: 100%;
   justify-content: center;
}

.pagination li span {
   cursor: pointer;
}

.grid-properties {
   display: flex;
   gap: 10px;
}

.grid-properties span {
   position: relative;
   border: 1px solid #ddd;
   padding: 5px 15px;
   cursor: pointer;
}

.grid-properties span:hover,
.grid-properties span.active {
   border: 1px solid #f00;
   color: #f00;
}

.grid-properties span:hover:after,
.grid-properties span.active:after {
   content: "";
   border: 0.9375rem solid transparent;
   border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
   bottom: 0;
   position: absolute;
   right: -0.9375rem;
}

.grid-properties span.outstock {
   pointer-events: none;
   background-color: #fafafa;
   color: rgba(0, 0, 0, 0.26);
   cursor: not-allowed;
}

/* scrollToTop */
.scrollToTop {
   width: 41px;
   height: 41px;
   text-align: center;
   font-weight: bold;
   color: #444;
   text-decoration: none;
   position: fixed;
   bottom: 65px;
   right: 25px;
   display: none;
   z-index: 10;
   cursor: pointer;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
   display: none !important;
   width: 0px !important;
   height: 0px !important;
   visibility: hidden !important;
   overflow: hidden;
}

[x-cloak] {
   display: none !important;
}

/* CSSS T */
a.views_dm {
   width: 140px;
   height: 38px;
}

.effect_button {
   transform-style: preserve-3d;
   transform: translateZ(-25px);
   transition: transform 0.25s;
   position: relative;
   display: inline-flex;
   z-index: 1;
}

.effect_button:after,
.effect_button:before {
   position: absolute;
   content: attr(data-text);
   height: 100%;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 1px solid #f00;
   box-sizing: border-box;
   border-radius: 5px;
   z-index: -1;
   text-transform: uppercase;
   font-weight: 700;
   font-size: 15px;
}

.effect_button:before {
   color: #fff;
   background: #f00;
   transform: rotateY(0deg) translateZ(25px);
}

.effect_button:after {
   color: #f00;
   transform: rotateX(90deg) translateZ(25px);
}

.effect_button:hover {
   transform: translateZ(-25px) rotateX(-90deg);
}


.menu_sanpham-aside{}
.menu_sanpham-wrapper {
    min-height: 100%;
}
.menu_sanpham-title{}
.menu_sanpham-list{}
.menu_sanpham-submenu{}
.menu_sanpham-sublink{}

.menu_sanpham-link {
   color: #212529;
   transition: all 0.3s ease;
}

.menu_sanpham-link:hover,
.menu_sanpham-link:focus,
.menu_sanpham-link[aria-expanded="true"] {
box-shadow: 0px 3px 10px var(--color-main);
background-color: var(--color-main) !important;
color: #fff;
}
.menu_sanpham-link:hover a{
color: #fff !important;
}

.menu_sanpham-link i[aria-expanded="true"] {
transform: rotate(180deg);
}

.menu_sanpham-link i {
transition: transform 0.3s ease;
}

.menu_sanpham-sublink {
font-size: 0.95rem;
}

.menu_sanpham-sublink:hover {
color: #0d6efd;
text-decoration: underline;
}


/* News */
.grid-news {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

a.btn_link {
   position: relative;
   margin: 5px;
   height: 36px;
   width: 140px;
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before {
   content: "facebook";
}

.btn_link.effect_button:first-child:after,
.btn_link.effect_button:first-child:before,
.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
   border-width: 1px;
   border-style: solid;
   --tw-border-opacity: 1;
   border-color: rgb(0 165 217 / var(--tw-border-opacity));
   --tw-bg-opacity: 1;
   background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}

.btn_link.effect_button:nth-child(2):after,
.btn_link.effect_button:nth-child(2):before {
   content: "google map";
}

div.slick.in-page:not(.slick-initialized) {
   display: flex;
   gap: 10px;
   overflow: hidden;
   white-space: nowrap;
}

.tags-pro-detail{
}
.tags-pro-detail a {
   background: transparent;
   border-color: #fff;
   background: var(--color-main);
   margin: 0 !important;
}

.tags-pro-detail a:hover {
   background: #0085DE;
   border-color: #fff;
}

.attr-pro-detail {
   margin: auto;
   padding: 0;
}

.price-new-pro-detail {
   font-weight: 700;
   font-size: 20px;
   color: #ff2e00;
}

.price-old-pro-detail {
   font-weight: 500;
   color: #666;
   text-decoration: line-through;
   padding-left: 10px;
}

.color-pro-detail.active,
.size-pro-detail.active,
.size-pro-detail:hover {
   color: #fff !important;
   background: #232323;
}

.quantity-pro-detail {
   width: 100%;
   max-width: 110px;
   line-height: normal;
   display: flex;
   align-items: center;
   justify-content: space-between;
   text-align: center;
   margin-right: 20px;
   font-weight: 500;
}

.quantity-pro-detail span {
   line-height: 40px;
   padding: 0;
   width: 30px;
   height: 40px;
   color: #000;
   cursor: pointer;
   font-size: 22px;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
   border-left: 0;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
   border-right: 0;
}

.quantity-pro-detail input {
   height: 40px;
   width: calc(100% - 60px);
   text-align: center;
   font-size: 20px;
   padding: 5px;
   font-weight: 700;
}

.cart-pro-detail {
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   justify-content: flex-start;
}

.cart-pro-detail a {
   text-align: center;
   color: #fff;
   padding: 8px 15px;
   cursor: pointer;
   border-radius: 5px;
   font-weight: bold;
}

.cart-pro-detail a.addnow {
   margin-right: 10px;
   color: #fff;
   border-radius: 5px;
}

.cart-pro-detail a.addnow:hover {
   background-color: #f00;
   color: #fff;
   border-color: #f00;
}

.cart-pro-detail a.buynow {
   background-color: #000;
}

.cart-pro-detail a.buynow:hover {
   background-color: #f00;
   color: #fff;
}

.cart-pro-detail a i {
   vertical-align: top;
   margin-top: 3px;
   margin-right: 8px;
}

/* Swipper */
.swiper .swiper-wrapper {
   width: inherit;
   height: inherit;
}

.swiper.swiper-initialized .swiper-wrapper {
   margin: 0;
   width: 100%;
   height: 100%;
}

.swiper.swiper-initialized .swiper-slide {
   padding: 0;
   margin: 0px;
   overflow: hidden;
}

.swiper-pagination {
   position: initial;
   margin-top: 30px;
}

.swiper-pagination .swiper-pagination-bullet {
   width: 30px;
   border-radius: 5px;
   background: var(--color-main);
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
}

.general-pagination {
   text-align: center;
   margin: auto;
   margin-top: 20px;
   transform: unset !important;
}

.general-pagination .swiper-pagination-bullet {
   width: 30px;
   border-radius: 5px;
   background: var(--color-main);
}

.general-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
}

/* Popup */
.modal-title {
   font-size: 20px;
}

/* CSS cho loading */
.loading-overlay {
   display: none;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.7);
   justify-content: center;
   align-items: center;
   z-index: 999;
}

.loading {
   width: 50px;
   height: 50px;
   border: 5px solid rgba(0, 0, 0, 0.1);
   border-radius: 50%;
   border-top: 5px solid #3498db;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/* search2 */
.search-icon {
   cursor: pointer;
}

.search_custom.active {
   opacity: 1;
   visibility: visible;
   transform: scale(1);
}

.search_custom {
   width: 230px;
   background: #ffffff;
   position: absolute;
   bottom: -50px;
   right: 0;
   opacity: 0;
   visibility: hidden;
   transform: scale(0);
   transition: all 0.5s;
   display: flex;
   align-items: center;
   border: 1px #1c9aea solid;
   padding-right: 10px;
   border-radius: 100px;
   z-index: 3;
}

.search_custom input:focus {
   box-shadow: unset;
}

.search_custom img {
}

.search_custom p {
   width: 35px;
   height: 35px;
   line-height: 35px;
   cursor: pointer;
   text-align: center;
   margin: 0px;
   color: #000;
   font-size: 16px;
   background: #7c0807 url(../images/search-icon.png) no-repeat center;
}

.search_custom input {
   width: calc(100% - 35px);
   height: 35px;
   outline: none;
   padding: 0px;
   border: 0px;
   background: transparent;
   text-indent: 10px;
   font-size: 12px;
}

.search_custom input::-webkit-input-placeholder {
   color: #000;
}

.search_custom input:-moz-placeholder {
   color: #000;
}

.search_custom input::-moz-placeholder {
   color: #000;
}

.search_custom input:-ms-input-placeholder {
   color: #000;
}

.toolbar{
   display: none !important;
}

/*Toolbar 2*/
.toolbar_custom {
   width: 100%;
   bottom: 0px;
   position: fixed;
   z-index: 500;
   left: 0px;
   -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
   -moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
   -ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
   -o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
   display: none;
}

.toolbar_custom.is-active .list-phone {
   display: block;
   -webkit-animation: quickShow 0.2s cubic-bezier(0.66, 0.45, 0.76, 1.53)
      forwards;
   animation: quickShow 0.2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

.toolbar_custom .list-phone {
   position: absolute;
   bottom: 100%;
   left: 30px;
   opacity: 0;
   transform: scale(0);
   transform-origin: 50% 100%;
   display: none;
   min-width: 200px;
}

.toolbar_custom .list-phone a {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   background: #fff;
   padding: 10px 20px;
   margin: 10px 0;
   border-radius: 50px;
   padding-right: 30px;
}

.toolbar_custom .list-phone img {
   max-width: 30px;
   max-height: 30px;
}

.toolbar_custom ul li a#chatfb svg {
   filter: invert(100%) sepia(40%) saturate(2%) hue-rotate(17deg)
      brightness(109%) contrast(100%);
   fill: unset;
}

.toolbar_custom .list-phone span {
   display: block;
   width: calc(100% - 40px);
   color: #333;
   font-weight: 700;
}

.toolbar_custom .phone {
   position: relative;
   width: 50px;
   height: 50px;
   z-index: 99;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--color-main);
   border-radius: 50%;
   margin: 0 0px -25px 30px;
   transition: transform 0.2s ease-in-out;
}

.toolbar_custom .phone a {
   color: #333;
   display: block;
   position: relative;
}

.toolbar_custom .phone a:before,
.toolbar_custom .phone a:after {
   position: absolute;
   content: "";
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) rotate(135deg);
   width: 30px;
   height: 3px;
   border-radius: 2rem;
   background-color: #0f4334;
   opacity: 0;
   transition: opacity 0.2s ease-in-out;
}

.toolbar_custom .phone a:after {
   transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar_custom .phone img {
   max-width: 27px;
   max-height: 27px;
   display: block;
   position: relative;
   fill: #0f4334;
}

.toolbar_custom.is-active .phone {
   transform: rotate(-180deg);
}

.toolbar_custom.is-active .phone img {
   opacity: 0;
}

.toolbar_custom.is-active .phone a:before,
.toolbar_custom.is-active .phone a:after {
   opacity: 1;
}

.toolbar_custom ul {
   list-style: none;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0px;
   margin: 0px;
   -webkit-mask: radial-gradient(33px at 55px 0px, #0000 99%, #fff 101%) 100%;
   background: var(--color-main);
   padding: 10px 0px;
   padding-left: 100px;
   border-radius: 10px 10px 0px 0px;
}

.toolbar_custom ul li {
   text-align: center;
   width: 25%;
   line-height: 1;
}

.scrollToTopMobile img {
    width: 30px;
}

.toolbar_custom ul li a {
   display: block;
   width: 100%;
   font-size: 27px;
   color: #ffff;
}

.toolbar_custom ul li .icon {
   position: relative;
   margin: 0 auto;
   text-align: center;
}

.toolbar_custom ul li a span {
   display: none;
   font-weight: 400;
   font-size: 11px;
   margin-top: 5px;
   color: #333;
   text-transform: capitalize;
}

.toolbar_custom ul li a img,
.toolbar_custom ul li svg {
   width: 30px;
   object-fit: cover;
}

.toolbar_custom .phone img {
   animation: tada 1.2s infinite;
   /* fill: #0f4334; */
   /* filter: brightness(100); */0); */
}

.tada {
   animation: tada 1.2s infinite;
}

.lang-toolbar {
   display: flex;
   justify-content: center;
   align-items: center;
}

.toolbar_custom ul li.lang-toolbar a {
   display: inline-block;
   width: unset;
   margin: 0px 2px;
   font-size: unset;
}

.toolbar_custom ul li.lang-toolbar a img {
   height: 10% !important;
}

.ex6 path {
   fill: transparent;
   stroke: #0f4334;
   stroke-width: 0.5;
   stroke-dasharray: 1500;
   stroke-dashoffset: 1500;
   -webkit-animation: dash 5s ease forwards;
   animation: dash 5s ease forwards;
}

.flex_inner_hotline {display: flex;flex-wrap: wrap;gap: 10px;}

.flex_inner_hotline a {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
   background: var(--color-main);
   border-radius: 5px;
   color: #fff;
   padding: 5px 15px;
   font-size: 16px;
   font-weight: 600;
   transition: 0.3s ease-out;
}

.flex_inner_hotline a i {
   font-size: 20px;
}

.inner_zalo {
   background-color: #009dff !important;
}

/* Long CSS */
.header-wrapper {
}



.header-top .wrap-content {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: flex-end;
   align-items: center;
   position: relative;
}
.header-left{}
.header-right{}
.header-top {
   background: var(--color-main);
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 2px 0px;
}

.header-info {
   display: flex;
   align-items: center;
   color: #fff;
   gap: 10px;
}
.header-info img{}
.header-info .info{}
.header-info .info p{}
.header-info .info b{}
.header-slogan {
}

.header-bottom {padding: 15px 0px;background: #fff;}

.header-bottom .wrap-content {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: flex-end;
    align-items: center;
}

.header-logo {margin-right: auto;}

.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    background: linear-gradient(270deg, #1990E2 0%, #0256AA 100%);
    padding: 3px 28px;
    padding: 3px 17px;
    color: #fff !important;
    margin-left: 55px;
}

.header-btn:nth-child(5) {
    background: var(--color-red);
    margin-left: 8px;
}

.header-btn:nth-child(5) span{
   color: #FFA8A8;
}

.header-btn b {
    font-weight: 900;
    text-transform: uppercase;
}

.header-btn span {
    color: #B0EAF5;
}

.header-banner {
}

.header-hotline {
   display: flex;
   /* flex-wrap: wrap; */
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   margin-left: 20px;
}
.header-hotline img{

}
.header-hotline .info {
}

.header-hotline p {color: #333;}

.header-hotline b {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-red);
}

.header-hotline span {
}

/* newsHot */

/* Album */
.album-item {
}

.album-pic {
}

.album-name {
   margin-top: 10px;
   text-align: center;
}

.album-name a {
   font-size: 16px;
   font-weight: bold;
   color: #000;
}

/*contact*/
.contact-section {
   padding: 4rem 0;
   animation: fadeIn 1s ease-in;
}

.contact-card {
   background: #fff;
   border-radius: 1.25rem;
   box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
   overflow: hidden;
   display: flex;
   flex-wrap: wrap;
}

.contact-title {
   font-size: 2rem;
   font-weight: 700;
   color: var(--color-main);
   margin-bottom: 1.5rem;
   animation: slideDown 0.7s ease-out;
}

.contact-left,
.contact-right {
   flex: 1 1 100%;
   padding: 2rem;
}

@media (min-width: 992px) {
   .contact-left,
   .contact-right {
      flex: 1 1 50%;
   }
}

.contact-section .form-control,
.contact-section textarea {
   border-radius: 0.75rem;
   border: 1px solid #ddd;
   padding: 1rem;
   transition: all 0.3s ease-in-out;
   background-color: #f9f9f9;
}

.contact-section .form-control:focus,
.contact-section textarea:focus {
   background-color: #fff;
   border-color: var(--color-main);
   box-shadow: 0 0 0 0.2rem rgba(245, 124, 0, 0.2);
}

.contact-section .form-floating label {
   color: #999;
}

.contact-section .btn-primary {
   background: var(--color-main);
   border: none;
   font-weight: 600;
   padding: 0.75rem 2rem;
   border-radius: 2rem;
   transition: transform 0.2s;
}

.contact-section .btn-primary:hover {
   transform: scale(1.05);
   opacity: 0.9;
}

.contact-section .btn-outline-secondary {
   border-radius: 2rem;
}

.othernews b{margin-bottom:10px;}
.list-news-other{padding-left:17px;list-style:square;}
.list-news-other li{margin-bottom:2px;}
.list-news-other li a{text-transform:none;color:#333333;}
.list-news-other li a:hover{color:var(--color-red);}


/*Chi nhÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡nh*/
.branch-wrapper{
    position: relative;
    padding: 60px 0px 80px 0px;
    background: url(../images/cn-bg.png) no-repeat;
    background-size: cover;
}
.branch-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.branch-items{width: 38.75%;max-height: 715px;overflow: auto;padding-right: 10px;}

.branch-items::-webkit-scrollbar-track
{

}

.branch-items::-webkit-scrollbar
{
   background-color: #000;
   height: 5px;
   width: 5px;
}

.branch-items::-webkit-scrollbar-thumb
{
   background-color: var(--color-red);
   border-radius:100px;
}

.branch-item{
    border-radius: 20px;
    border: 1px solid #0E76BD;
    background: linear-gradient(174deg, #FFF 43.18%, #E6F9FF 95.41%);
    padding: 55px 10px 30px 30px;
    margin-top: 36px;
    cursor: pointer;
}
.branch-name{
    border-radius: 50px;
    background: linear-gradient(270deg, #1990E2 0%, #0256AA 100%);
    text-align: center;
    color: #fff;
    width: fit-content;
    margin: auto;
    font-size: 18px;
    font-weight: 800;
    padding: 9px 32px;
    margin-top: -80px;
    margin-bottom: 20px;
}
.branch-desc{
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    margin-bottom: 15px;
}
.branch-content{
    font-size: 18px;
    font-weight: 800;
    color: var(--color-main) !important;
}
.branch-ajax{
    width: 87.0833333333%;
}
.branch-map{
  width: 60.625%;
  height: 715px;
  border-radius: 20px;
  border: 1px solid var(--chu-dao, #0E76BD);
  background: var(--trang, #FFF);
  padding: 10px;
  }
.branch-box{
  display: none;
  height: 100%;
}

.branch-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.branch-box.active {
  display: block;
}

/*video*/
.video-item {
}

.video-pic {
    position: relative;
    cursor: pointer;
}

.video-pic span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video-pic span i {
    filter: brightness(100);
}

.video-name {
    margin: 0;
    font-size: 16px;
    font-family: 'SVN-GilroyBold';
    margin-top: 15px;
}


/* Newsletter Modal */
.newsletter-modal.modal-backdrop {
   background-color: rgba(15, 23, 42, 0.8);
   backdrop-filter: blur(8px);
   -webkit-backdrop-filter: blur(8px);
}

.newsletter-modal .modal-dialog {
   max-width: 600px;
   margin: 2rem auto;
}

.newsletter-modal .modal-content {
   border: none;
   border-radius: var(--newsletter-radius-lg);
   box-shadow: var(--newsletter-shadow);
   background-color: var(--newsletter-background);
   overflow: hidden;
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
}

/* Newsletter Modal Header */
.newsletter-modal .modal-header {
   background: var(--color-main);
   border-bottom: none;
   padding: 2rem 2rem 1.5rem;
   position: relative;
   color: white;
}

.newsletter-modal .modal-header::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: var(--color-main);
   animation: newsletter-drift 30s ease-in-out infinite;
}

@keyframes newsletter-drift {
   0%,
   100% {
      transform: translateX(0) translateY(0);
   }
   33% {
      transform: translateX(-10px) translateY(-10px);
   }
   66% {
      transform: translateX(10px) translateY(-5px);
   }
}

.newsletter-modal .modal-title {
   font-size: 1.75rem;
   font-weight: 700;
   letter-spacing: -0.025em;
   margin: 0;
   position: relative;
   z-index: 1;
   color: white;
}

.newsletter-modal .btn-close {
   position: absolute;
   top: 1.5rem;
   right: 1.5rem;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   width: 44px;
   height: 44px;
   padding: 0;
   opacity: 1;
   filter: none;
   backdrop-filter: blur(10px);
   -webkit-backdrop-filter: blur(10px);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   z-index: 2;
}
.newsletter-modal .btn-close i {
   color: #fff;
   font-size: 50px;
}
.newsletter-modal .btn-close:hover {
   background: rgba(255, 255, 255, 0.2);
   border-color: rgba(255, 255, 255, 0.3);
   transform: rotate(90deg);
}

.newsletter-modal .btn-close:focus {
   box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}


/* Newsletter Modal Body */
.newsletter-modal .modal-body {
   padding: 2rem;
   /* background-color: #EEFF00; */
   /* color: var(--newsletter-text); */
}

.newsletter-modal .modal-body p {
   color: var(--newsletter-text-muted);
   font-size: 1rem;
   line-height: 1.6;
   margin-bottom: 1.5rem;
}

/* Newsletter Buttons */
.newsletter-modal .btn {
   padding: 0.875rem 2rem;
   font-size: 1rem;
   font-weight: 600;
   border-radius: var(--newsletter-radius);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   border: none;
}

.newsletter-modal .btn-primary {
   background: #553B2C;
   color: white;
   box-shadow: var(--newsletter-shadow-sm);
}

.newsletter-modal .btn-primary:hover {
   background: linear-gradient(
      135deg,
      var(--newsletter-primary-dark) 0%,
      #ffba00 100%
   );
   transform: translateY(-2px);
   box-shadow: 0 10px 25px -5px rgb(213 46 3 / 54%);
   color: white;
}

.newsletter-modal .btn-primary:focus {
   box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.2);
   color: white;
}

.newsletter-modal .btn-primary:active {
   transform: translateY(0);
   color: white;
}

.newsletter-modal .btn-outline-secondary {
   border: 2px solid var(--newsletter-border);
   color: var(--newsletter-text);
   background-color: transparent;
}

.newsletter-modal .btn-outline-secondary:hover {
   background-color: var(--newsletter-surface);
   border-color: var(--newsletter-secondary);
   color: var(--newsletter-text);
   transform: translateY(-1px);
}

.newsletter-modal .btn-outline-secondary:focus {
   box-shadow: 0 0 0 0.25rem rgba(100, 116, 139, 0.1);
   border-color: var(--newsletter-secondary);
   color: var(--newsletter-text);
}

/* Newsletter Form Validation */
.newsletter-modal .form-control.is-invalid {
   border-color: #ef4444;
   box-shadow: 0 0 0 0.25rem rgba(239, 68, 68, 0.1);
}

.newsletter-modal .form-control.is-valid {
   border-color: #10b981;
   box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.1);
}

.newsletter-modal .invalid-feedback {
   color: #ef4444;
   font-size: 0.875rem;
   margin-top: 0.5rem;
}

.newsletter-modal .valid-feedback {
   color: #10b981;
   font-size: 0.875rem;
   margin-top: 0.5rem;
}

/* Newsletter Modal Footer */
.newsletter-modal .modal-footer {
   background-color: transparent;
   padding: 1.5rem 2rem;
   border: 0;
}

/* Newsletter Responsive Design */
@media (max-width: 576px) {
   .newsletter-modal .modal-dialog {
      margin: 1rem;
      max-width: calc(100% - 2rem);
   }

   .newsletter-modal .modal-header,
   .newsletter-modal .modal-body,
   .newsletter-modal .modal-footer {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
   }

   .newsletter-modal .modal-title {
      font-size: 1.5rem;
   }

   .newsletter-modal .btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
   }
}

/* Newsletter Animation Enhancements */
.newsletter-modal.fade .modal-dialog {
   transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   transform: scale(0.9) translateY(-2rem);
}

.newsletter-modal.show .modal-dialog {
   transform: scale(1) translateY(0);
}

/* newsletter form*/
.newsletter-form{}
.newsletter-form form{}

.newsletter-input {
   height: 50px;
   margin-bottom: 10px;
}
.newsletter-input *{
   height: 100% !important;
}
.newsletter-input input {}

.newsletter-input input.fullname{
   background: #fff url(../images/dk-fullname.png) no-repeat 98%;
}
.newsletter-input input.address{
   background: #fff url(../images/dk-address.png) no-repeat 98%;
}
.newsletter-input input.email{
   background: #fff url(../images/dk-mail.png) no-repeat 98%;
}
.newsletter-input input.phone{
   background: #fff url(../images/dk-phone.png) no-repeat 98%;
}
.newsletter-textarea textarea.content{
   background: #fff url(../images/dk-content.png) no-repeat 98% 25%;
}

.newsletter-textarea {
    margin-bottom: 10px;
    height: 80px;
}

.newsletter-textarea * {
    height: 100% !important;
}
.newsletter-textarea textarea {}

.newsletter-button {
   background: #E00A0D;
   height: 50px;
   text-align: center;
}
.newsletter-button input {
   width: 100%;
   height: 100%;
   border:0;
   font-size: 16px;
   font-weight: bold;
   color: #fff;
   text-transform: uppercase;
}

.newsletter-input label,
.newsletter-textarea label{}

.newsletter-input input:focus,
.newsletter-textarea textarea:focus {}
.newsletter-input input ,
.newsletter-textarea textarea
{
   border: 0;
   border-radius: 0;
}

.header-ul{
    width: 23%;
    padding: 0;
    list-style: none;
    margin: 0;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.header-ul li{}

.header-ul span {
    width: 2px;
    height: 15px;
    background: #fff;
}
.header-ul li a{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.chinhanh-link{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.chinhanh-link span {
    color: #EEFF00;
    font-weight: 600;
    text-decoration: underline;
}

.chinhanh-ul{
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 0;
}


.chinhanh-ul::-webkit-scrollbar-track
{
}

.chinhanh-ul::-webkit-scrollbar
{
   background-color: #fff;
   height: 5px;
   width: 5px;
}

.chinhanh-ul::-webkit-scrollbar-thumb
{
   background-color: #EEFF00;
   border-radius:100px;
   cursor:pointer;
}


.chinhanh-ul li{
    display: inline-block;
    margin: 2px;
    border-radius: 5px;
    border: 0.5px solid rgba(255, 255, 255, 0.00);
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    box-shadow: 0px 1px 1px #fff inset;
}

.chinhanh-ul li:nth-child(odd) {
    box-shadow: 0px -1px 1px #fff inset;
}
.chinhanh-ul li a{
    color: #fff;
    font-weight: 600;
}

/*proListHot*/
.proListHot-wrapper{
    padding: 60px 0px 40px 0px;
    background: linear-gradient(7deg, #FFF 46.92%, #CDEBFF 94.76%), linear-gradient(180deg, #E6F9FF 0%, #FFF 100%);
}
.proListHot-wrapper .wrap-content{}
.proListHot-swiper{
    /* margin-bottom: 65px; */
}

.proListHot-card {
    margin-bottom: 20px;
}
.proListHot-pagination{}
.proListHot-item{
    padding: 0px 15px 35px 15px;
    position: relative;
}

.proListHot-item > * {
    position: relative;
    z-index: 2;
}

.proListHot-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 85px);
    background: linear-gradient(358deg, #F3FCFF 35.96%, #1990E2 98.06%);
    border-radius: 20px;
    left: 0;
    bottom: 0;
}

.proListHot-pic{
    display: block;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}
.proListHot-name{
    margin-bottom: 0;
    height: 48px;
    text-align: center;
}
.proListHot-name a{
    font-family: 'SVN-Poppins';
    font-size: 20px;
    font-weight: bold;
    color: var(--color-main);
    line-height: 24px;
    -webkit-line-clamp: 2;
    text-transform: uppercase;
}
.proListHot-pagination{}
.proListHot-load{}
.proListHot-show{}

.proListHot-heading{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.proListHot-title{
    margin-bottom: 0;
    position: relative;
    height: 51px;
    background: linear-gradient(270deg, #1990E2 29.03%, #0256AA 100%);
    border: 1px #fff solid;
    padding: 0 15px;
    border-radius: 5px 0px 0px 5px;
}

h2.proListHot-title::before {
    content: "";
    position: absolute;
    background: url(../images/title.png);
    width: 40px;
    height: 50px;
    left: 100%;
    top: 0;
}
.proListHot-title span{
    font-size: 18px;
    font-family: 'SVN-Poppins';
    font-weight: bold;
    color: #fff;
    line-height: 50px;
}
.proListHot-control{}

/*newsHot*/
.newsHot-wrapper{
    padding: 70px 0px 80px 0px;
    background: url(../images/tt-bg.png) no-repeat;
    background-size: cover;
}
.newsHot-wrapper .wrap-content{}
.newsHot-swiper{}
.newsHot-pagination{}
.newsHot-card{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.newsHot-pic{
    position: relative;
}

.newsHot-pic {}

.newsHot-pic a:first-child {
    -webkit-mask-image: url(../images/tt-mask.png);
    mask-image: url(../images/tt-mask.png);
    mask-repeat: no-repeat;
    mask-size: calc(100% - 15px);
    display: block;
    position: relative;
}

.newsHot-pic a:first-child::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    background: #00000096;
    bottom: 0;
    left: 0;
}
.newsHot-date{
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 56px;
   line-height: 56px;
   padding: 0 10px;
}
.newsHot-date span{font-family: 'Inter';font-size: 17px;font-weight: 600;color: #fff;position: relative;padding-left: 40px;}

.newsHot-date span::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background: #fff;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.newsHot-btn{
    position: absolute;
    bottom: 0;
    right: 0;
}
.newsHot-name{
    margin-bottom: 0;
    font-size: unset;
    height: 48px;
}

.newsHot-name a {
    font-size: 16px;
    font-weight: bold;
    color: #011F51;
    line-height: 24px;
    -webkit-line-clamp: 2;
}
.newsHot-desc{
    color: #333;
    -webkit-line-clamp: 4;
    line-height: 25px;
}

.tagSEO-ul{
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.tagSEO-ul li{}
.tagSEO-ul li a{
    color: #fff;
    padding: 10px;
    display: block;
    border: 1px solid var(--color-main);
    border-radius: 5px;
}

.chinhsach_sanpham-box{
    padding: 15px;
    border: 1px var(--color-main) solid;
    border-radius: 15px;
}
.chinhsach_sanpham-ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.chinhsach_sanpham-ul li{
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.chinhsach_sanpham-ul li span{
    font-size: 15px;
    font-weight: 500;
}