<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*Có kết hợp css với style.css file*/
@import url("https://fonts.googleapis.com/css2?family=Beau+Rivage&amp;family=Koulen&amp;family=Lora&amp;family=Mulish:wght@300&amp;family=Prata&amp;family=Water+Brush&amp;display=swap");
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  font-family: "Arial";
  font-size: 14px;
}

* {
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}


.title_page {
  text-transform: uppercase;
  color: #1D2749;
  font-size: 23px;
  text-align: center;
  font-weight: 600;
  padding-bottom: 20px;
}

:root {
  --color-red: #ec2d3f;
  --color-medium-red: #cc2c32;
  --color-dark-red: #c31829;
  --color-green: #28a745;
  --color-dark-green: #207d36;
  --color-black: #212529;
  --color-gray: #6c757d;
}

#main_header-top {
  width: 100%;
  background-color: #009900;
  color: #fff;
}

#main_header-top .header-top {
  max-width: 1366px;
  margin: 0 auto;
  padding: 10px 0;
}

#main_header-top .header-top .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#main_header-top .header-top .inside .right {
  display: flex;
  align-items: center;
  width: 29%;
  justify-content: space-between;
}

#main_header-top .header-top .inside .right p {
  font-size: 16px;
}

#main_header-top .header-top .inside .right ul {
  padding-left: 0;
  margin: 0;
  display: flex;
}

#main_header-top .header-top .inside .right ul li {
  list-style: none;
  padding: 0 5px;
}

#main_header-top .header-top .inside .right ul li a {
  text-decoration: none;
}

#header .header {
  max-width: 1366px;
  margin: 0 auto;
}

#header .header .left p {
  font-size: 16px;
}

@keyframes animateH2 {
  0% {
    transform: scale(0.2);
  }
  100% {
    transform: scale(1);
  }
}

#main_product-latest {
  width: 100%;
  background: #f7f7f7;
  padding: 20px;
}

#main_product-latest .product-latest {
  max-width: 1366px;
  margin: 0 auto;
}

#main_product-latest .product-latest .title h2 {
  text-align: center;
  text-transform: uppercase;
  color: #1D2749;
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
}

#main_product-latest .product-latest .slogan {
  display: block;
  margin: 0;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #5c5c5c;
  text-align: center;
}

#main_product-latest .product-latest .list .image img {
  width: 100%;
}

#main_product-latest .product-latest .list .name {
  height: 50px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

#main_product-latest .product-latest .list .name a {
  color: #333;
  font-size: 16px;
}

#main_product-latest .product-latest .list .show-price {
  height: 40px;
  padding-top: 10px;
}

#main_product-latest .product-latest .list .show-price .chietkhau {
  background-color: #1D2749;
  border-radius: 5px;
  padding: 5px;
  color: #fff;
  text-align: center;
}

#main_product-latest .product-latest .list .contact {
  padding-top: 30px;
}

#main_product-latest .product-latest .list .contact a {
  transition: .5s all ease;
  color: #fff;
  background-color: #1D2749;
  display: block;
  font-size: 17px;
  border-radius: 25px;
  text-align: center;
  padding: 10px 0;
}

#main_product-latest .product-latest .list .contact a:hover {
  background-color: #5063a3;
}

/*css for product list*/
.list {
  padding-top: 14px;
}

.list .item {
  transition: 0.5s all ease;
  border-radius: 5px;
  width: calc(20% - 10px);
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 7px;
  overflow: hidden;
  box-shadow: 0 0 3px 2px darkgray;
}

.list .item:hover {
  transform: translateY(-10px);
}

.list .item .image a {
  overflow: hidden;
  display: block;
}

.list .item .image a img {
  transition: 0.5s all ease;
  width: 100%;
}

.list .item .image a img:hover {
  transform: scale(1.1);
}

.list .item .name {
  text-align: center;
  display: -webkit-box;
  overflow: hidden;
  height: 40px;
  -webkit-line-clamp: 2;
}

.list .item .name a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
  width: 100%;
  transition: 0.5s all ease;
}

.list .item .name a h3 {
  color: #333333;
  font-size: 17px;
  font-weight: bold;
  line-height: 25px;
}

.list .item .name a h3:hover {
  color: red;
}

.list .item .size {
  color: darkgray;
  font-size: 17px;
  padding: 2px 0;
}

.list .item .show-price {
  padding-top: 4px;
  font-size: 17px;
  min-height: 40px;
}

.list .item .show-price .chietkhau {
  background-color: red;
  border-radius: 5px;
  padding: 2px 6px;
  color: #fff;
  text-align: center;
}

.list .item .cart-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
  padding: 5px 0;
}

.list .item .cart-buy .fa-shopping-cart {
  font-size: 20px;
  color: #fff;
  background-color: #1D2749;
  width: 50%;
  border-radius: 25px;
  padding: 10px 10px;
  transition: .5s all ease;
  cursor: pointer;
  text-align: center;
}

.list .item .cart-buy .fa-shopping-cart:hover {
  background-color: #5063a3;
}

.list .item .contact {
  width: 50%;
}

.list .item .contact {
  transition: .5s all ease;
  color: #fff;
  background-color: #1D2749;
  display: block;
  font-size: 17px;
  border-radius: 25px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
}

.list .item .contact:hover {
  background-color: #5063a3;
}

.list .item-list {
  transition: 0.5s all ease;
  border-radius: 5px;
  width: calc(33% - 10px);
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 7px;
  overflow: hidden;
  box-shadow: 0 0 3px 2px darkgray;
}

.list .item-list:hover {
  transform: translateY(-10px);
}

.list .item-list .image a {
  overflow: hidden;
  display: block;
}

.list .item-list .image a img {
  transition: 0.5s all ease;
  width: 100%;
}

.list .item-list .image a img:hover {
  transform: scale(1.1);
}

.list .item-list .image img {
  width: 100%;
}

.list .item-list .name {
  height: 50px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.list .item-list .name a {
  padding: 10px 0;
  display: block;
}

.list .item-list .name a h3 {
  color: #333;
  font-size: 17px;
  text-align: center;
  font-weight: bold;
}

.list .item-list .show-price {
  height: 40px;
  padding-top: 10px;
}

.list .item-list .show-price .chietkhau {
  background-color: #1D2749;
  border-radius: 5px;
  padding: 5px;
  color: #fff;
  text-align: center;
}

.list .item-list .contact {
  padding-top: 30px;
}

.list .item-list .contact a {
  transition: .5s all ease;
  color: #fff;
  background-color: #1D2749;
  display: block;
  font-size: 14px;
  border-radius: 25px;
  text-align: center;
  padding: 10px 0;
}

.list .item-list .contact a:hover {
  background-color: #5063a3;
}

/*end css for product list*/
.daiphancach {
  text-align: center;
  padding: 5px 0;
}

.daiphancach img {
  width: inherit !important;
}

.visit_hidden {
  visibility: hidden;
  height: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a,
input,
textarea {
  outline: none;
  padding: 0px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.w-clear:after {
  display: block;
  content: "";
  clear: both;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.none {
  display: none;
}

.hidden-seoh {
  visibility: hidden;
  height: 0px;
  margin: 0px;
  overflow: hidden;
}

/*-------------*/
.fix_head {
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}

.wow {
  visibility: hidden;
}

#container {
  width: 100%;
  overflow: hidden;
}

.wrapper {
  max-width: 1366px;
  margin: 0 auto;
}

.page-link.current {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/*---------Header-------*/
#header {
  width: 100%;
}

#header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo {
  max-width: 255px;
}

#header .header {
  position: relative;
  padding: 10px 0;
}

.menu_top {
  margin-bottom: 15px;
}

.menu_top ul {
  padding-left: 0;
  list-style: none;
}

.menu_top ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 9999;
  position: relative;
}

.menu_top ul &gt; li {
  position: relative;
  background: url("../images/line_menu.jpg") no-repeat center right;
  padding: 0 22px 0 20px;
}

.menu_top ul &gt; li:last-child {
  background: none;
  padding-right: 0;
}

.menu_top ul &gt; li &gt; a {
  color: #2e2e2e;
  text-decoration: none;
  font-size: 14px;
  font-family: "Arial";
  text-transform: capitalize;
  padding: 5px 0 5px 0;
  border-bottom: 1px solid transparent;
}

.menu_top ul &gt; li:hover &gt; a {
  color: #009900;
  border-color: #009900;
}

.menu_top ul &gt; li.active &gt; a {
  color: #009900;
  border-color: #009900;
}

#header .hotline {
  display: flex;
  align-items: center;
  line-height: 25px;
  position: relative;
  float: right;
}

#header .hotline img {
  margin-right: 10px;
}

#header .hotline span {
  font-family: "RobotoRegular";
  font-size: 14px;
  color: #2e2e2e;
  display: block;
}

#header .hotline p {
  font-family: "RobotoBold";
  font-size: 20px;
  color: #d70000;
  display: block;
}

/* Menu */
#menu {
  width: 100%;
  background: #1D2749;
}

#menu .menu {
  max-width: 1366px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  display: flex;
  justify-content: space-between;
}

#menu .menu .right {
  width: 100%;
  text-align: end;
}

#menu .menu .left {
  width: 280px;
  position: relative;
  z-index: 99;
  float: left;
}

#menu .menu .left .menu-bars-res-toggle {
  background: #009900;
  position: sticky;
  height: 47px;
  display: flex;
  justify-content: space-between;
  top: 0;
  align-items: center;
}

#menu .menu .left .menu-bars-res-toggle #hambuger-menu {
  width: 22px;
  color: #ff1;
  font-size: 30px;
  margin-left: 10px;
}

#menu .menu .left .none {
  display: none;
}

#menu .menu .left:hover .dm-product-ul {
  display: block;
}

#menu .menu .left .dm-product-ul {
  position: absolute;
  top: 48px;
  margin-right: 0px;
  z-index: 9;
  transition: all 0s;
  width: 280px;
  border: 1px solid #cccccc;
  background: #ffffff;
}

#menu .menu .left .dm-product-ul .mainmenu {
  width: 100%;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 li {
  padding: 10px 0;
  border-bottom: 1px solid darkgray;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 li img {
  padding-left: 7px;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 li a {
  padding: 0 10px;
  color: #333333;
  font-size: 15px;
  font-weight: 550;
  display: inline;
  width: 100%;
  text-transform: uppercase;
  font-family: "Myriad Pro";
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 li:hover &gt; a {
  color: red;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 .submenu-cap2 {
  left: 280px;
  top: 261px;
  z-index: 100;
  background: #ffffff;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 .submenu-cap2 li:hover &gt; a {
  color: red;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 .submenu-cap3 {
  background: #ffffff;
  z-index: 100;
}

#menu .menu .left .dm-product-ul .mainmenu .submenu-cap1 .submenu-cap3 li:hover &gt; a {
  color: red;
}

#menu .menu .left .lb-tabdm {
  color: #ffffff;
  width: calc(100% - 24px);
  font-weight: 700;
  margin-left: 26px;
  font-size: 16px;
  text-transform: uppercase;
}

.menu_mobile {
  display: none;
}

.menu_mobile i {
  font-size: 35px;
}

.menu_mobile a {
  color: #fff;
  text-transform: uppercase;
  line-height: normal;
  display: inline-block;
}

.hotline_mobile a {
  font-size: 20px;
  color: #fff;
}

.cart_mobile a {
  color: #fff;
  position: relative;
  font-size: 16px;
}

.cart_mobile i {
  font-size: 24px;
}

.menu_fix {
  position: fixed;
  left: 5px;
  top: 200px;
  z-index: 999;
  transition: all 0.5s;
}

.menu_fix.fix_head {
  top: 60px;
  width: auto;
  background: none;
}

.menu_fix ul {
  padding-left: 0;
}

.menu_fix ul li {
  list-style: none;
}

.menu_fix li a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  position: relative;
  transition: all 0.5s;
}

.menu_fix ul li a:hover img {
  filter: brightness(0) invert(1);
}

.menu_fix ul li a:hover {
  background: #00a850;
}

.menu_fix li a:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  right: 1px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/*----------Tìm kiếm-----*/
.search-menu {
  max-width: 528px;
  width: 300px;
  position: relative;
  z-index: 1;
}

.form_search {
  width: 100%;
  height: 44px;
  position: relative;
}

.form_search input {
  width: 100%;
  border: 1px solid #1D2749;
  height: 44px;
  outline: none;
  padding-left: 14px;
  color: #767676;
  border-radius: 25px;
  background: none;
  border-radius: 5px;
}

.form_search button {
  position: absolute;
  top: 0px;
  right: 0;
  width: 85px;
  height: 44px;
  outline: none;
  border: 0;
  background: #1D2749;
  font-family: "RobotoRegular";
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 5px 5px 0;
}

.form_search button img {
  margin-left: 5px;
}

.form_search input::-webkit-input-placeholder {
  color: #767676;
  font-size: 14px;
  font-family: "RobotoRegular";
}

.form_search input:-moz-placeholder {
  color: #767676;
  font-size: 14px;
  font-family: "RobotoRegular";
}

.form_search input::-moz-placeholder {
  color: #767676;
  font-size: 14px;
  font-family: "RobotoRegular";
}

.form_search input:-ms-input-placeholder {
  color: #767676;
  font-size: 14px;
  font-family: "RobotoRegular";
}

/*------Slider---------*/
#slider {
  width: 100%;
  position: relative;
}

#slider .slider .parent-slider {
  width: 100%;
}

#slider a {
  display: block;
  position: relative;
}

/* Tại sao */
.camket {
  width: 100%;
  padding: 30px 0;
}

.items_ck {
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 22px;
  flex-direction: column;
  transition: 0.5s all ease;
  cursor: pointer;
}

.items_ck .img_ck img {
  transition: 1.5s all ease;
}

.items_ck .des_ck {
  flex-grow: 1;
  text-align: center;
  padding-top: 15px;
  padding-left: 10px;
}

.items_ck .des_ck h3 a {
  font-family: "RobotoBold";
  font-size: 15px;
  color: #1D2749;
  display: block;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.items_ck .des_ck h3 a:hover {
  color: #5063a3;
}

.items_ck .des_ck p {
  font-family: "RobotoRegular";
  font-size: 14px;
  text-align: center;
  color: #1D2749;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

/*-------Sản phẩm-------*/
.content .list {
  text-align: center;
}

.content ul {
  position: relative;
}

.content ul li {
  list-style: none;
  padding: 10px;
  position: relative;
  display: inline-block;
}

.content ul li a {
  font-size: 17px;
  display: block;
  color: #333;
  cursor: pointer;
  transition: .5s all ease;
  text-transform: uppercase;
  font-weight: 550;
  padding: 5px 0;
}

.content ul li a.active,
.content ul li a:hover {
  color: #5063a3 !important;
  border-bottom: 2px solid darkgray;
}

.title_main {
  padding: 10px 0 10px 10px;
  border-radius: 6px 0 0 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.title_main h2 {
  font-family: "RobotoBold";
  font-size: 18px;
  color: #333;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  min-width: 280px;
  border-radius: 5px;
}

.icon_down {
  position: absolute;
  right: 10px;
  top: 15px;
  display: none;
}

.icon_down i {
  font-size: 20px;
  color: #00a80f;
}

.icon_down.active i:before {
  content: "\f00d";
}

.transition {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product_home {
  width: 100%;
  padding: 40px 0;
}

.product_home .left_pro {
  width: 60.8%;
  float: left;
}

.product_home .right_pro {
  width: 39.2%;
  float: right;
  padding-left: 10px;
}

.product_list_index {
  padding: 20px;
}

.product_list_index .list{
  padding: 12px;
}

.product_list {
  padding: 20px;
}

.product_list ul li a.active {
  color: yellow;
}

.product_list .left {
  box-shadow: 0 0 3px 2px darkgray;
  border-radius: 5px;
}

.product_list img {
  width: 100%;
}

.product_list .a_readmore {
  margin-top: 20px;
}

.items_list {
  padding: 20px 0;
}

.items_list:last-child {
  padding-bottom: 0;
}

.margin-pr {
  margin: 0 -6px;
}

.item_pr_l {
  padding: 0 6px;
}

.item_pr_mg {
  padding: 0 6px;
  margin-bottom: 12px;
}

.product_home .margin-pr {
  margin: 0 -5px;
}

.product_home .item_pr_mg {
  padding: 0 5px;
  margin-bottom: 10px;
}

.item_pr {
  position: relative;
}

.item_pr .images_pr {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.item_pr .images_pr img {
  vertical-align: top;
  width: 100%;
}

.item_pr:hover .images_pr img {
  transform: scale(1.1, 1.1);
}

.item_pr .des_pr {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  background: url("../images/bg_des.png") repeat-x bottom left;
}

.item_pr .des_pr {
  padding: 10px 20px;
}

.item_pr a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.item_pr .des_pr div {
  width: 100%;
}

.item_pr .des_pr h3 {
  font-family: "RobotoRegular";
  font-size: 15px;
  color: #fff;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  margin-bottom: 5px;
  transition: all 0.5s;
}

.item_pr .des_pr p {
  font-family: "RobotoBold";
  font-size: 15px;
  color: #07c762;
}

.item_pr:hover .des_pr h3 {
  color: #07c762;
}

.banner_qc {
  width: 100%;
  padding-bottom: 40px;
  text-align: center;
}

.banner_qc a img {
  width: 100%;
}

#main_resgiter-news-recive {
  background: url("../images/noithat-thuhuong/bg-form.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
}

#main_resgiter-news-recive .resgister-news-recive {
  padding: 50px 75px;
  background: #2d271c;
  opacity: 0.8;
  float: right;
  width: 50%;
}

#main_resgiter-news-recive .resgister-news-recive p {
  color: #fff;
  text-align: center;
}

#main_resgiter-news-recive .resgister-news-recive h3 {
  text-align: center;
  color: #fff;
}

#main_resgiter-news-recive .resgister-news-recive .form_register form {
  text-align: center;
}

#main_resgiter-news-recive .resgister-news-recive .form_register input[type="email"] {
  width: 50%;
  margin: 0 auto;
}

#main_resgiter-news-recive .resgister-news-recive .form_register button[type="submit"] {
  border: none;
  border-radius: 5px;
  background-color: #1D2749;
  color: #fff;
  padding: 10px;
  transition: .5s all ease;
}

#main_resgiter-news-recive .resgister-news-recive .form_register button[type="submit"]:hover {
  background-color: #5063a3;
  color: #fff;
}

#main_video {
  padding: 20px 10px;
}

.main-catalog {
  width: 100%;
}

.main-catalog .catalog {
  max-width: 1366px;
  margin: 0 auto;
}

.main-catalog .catalog .item .image {
  position: relative;
  overflow: hidden;
}

.main-catalog .catalog .item .image img {
  transition: .5s all ease;
  width: 100%;
}

.main-catalog .catalog .item .image img:hover {
  transform: scale(1.1);
}

.main-catalog .catalog .item .image a {
  display: flex;
  justify-content: center;
}

.main-catalog .catalog .item .image h4 {
  position: absolute;
  bottom: 15px;
  font-weight: 550;
  color: #fff;
  font-size: 2rem;
  padding: 5px;
  border-radius: 5px;
  background-color: #1D2749;
}

#main_album {
  width: 100%;
}

#main_album .album {
  max-width: 1366px;
  margin: 0 auto;
  padding: 20px 10px;
}

#main_album .album .image a {
  display: block;
  overflow: hidden;
}

#main_album .album .image img {
  transition: .5s all ease;
  width: 100%;
}

#main_album .album .image img:hover {
  transform: scale(1.1);
}

.content_fanpage {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.content_fanpage iframe {
  width: 100%;
  height: 250px;
}

/*------Tin tức----------*/
#news-home {
  width: 100%;
  position: relative;
  padding: 0 10px 40px 10px;
}

#news-home .image a {
  display: block;
  overflow: hidden;
}

#news-home .image img {
  transition: .5s all ease;
}

#news-home .image img:hover {
  transform: scale(1.1);
}

#news-home .name {
  padding: 10px 0;
  height: 41px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

#news-home .name a {
  color: #000;
  font-weight: 550;
  font-size: 18px;
}

#news-home .name a:hover {
  color: red;
}

#news-home .description {
  height: 41px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

#news-home .item_news_main {
  line-height: 20px;
  font-size: 14px;
  font-family: 'Mulish';
  color: #5c5c5c;
  text-align: justify;
}

#news-home .item_news_main h3 {
  line-height: 20px;
  font-size: 15px;
  margin: 0 0 7px;
  padding: 0;
  display: -webkit-box;
  font-family: 'Mulish';
  font-weight: 700;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#news-home .item_news_main h3 a {
  color: #333;
  font-size: 16px;
}

#news-home .item_news_main h3 a:hover {
  color: red;
}

#news-home .item_news_main .box-newsi-more {
  color: #5c5c5c;
}

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

#news-home .item_news_main .img_main_news {
  float: left;
  margin-right: 20px;
}

#news-home .item_news_main .img_main_news img {
  transition: .5s all ease;
}

#news-home .item_news_main:hover .img_main_news img {
  transform: scale(1.1, 1.1);
}

#news-home .item_news_main .img_main_news a {
  display: block;
  overflow: hidden;
}

#news-home .item_news_main .right_main_news {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  background: url("../images/bg_des.png") bottom left repeat-x;
}

#news-home .item_news_main .right_main_news div {
  padding: 10px 20px;
}

#news-home .item_news_main h3 {
  font-family: "RobotoRegular";
  color: #fff;
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
  max-height: 44px;
  overflow: hidden;
  font-weight: normal;
}

#news-home .item_news_main span {
  font-family: "RobotoRegular";
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

#news-home .item_news_main span i {
  margin-right: 5px;
}

#news-home .item_news_main:hover h3 {
  color: yellow;
}

/* Công trình */
.congtrinh_home {
  padding: 40px 0 0;
}

.margin-ct {
  margin: 0 -8px;
}

.item_ct_l {
  padding: 0 8px;
  margin-bottom: 16px;
}

.item_ct .images_ct a {
  display: block;
  overflow: hidden;
}

.item_ct .images_ct a:hover img {
  transform: scale(1.1);
}

.item_ct .des_ct {
  padding-top: 10px;
  text-align: center;
}

.item_ct .des_ct h3 a {
  font-family: "RobotoRegular";
  color: #343434;
  font-size: 15px;
  font-weight: normal;
  max-height: 43px;
  overflow: hidden;
  display: block;
}

.item_ct .des_ct h3 a:hover {
  color: #00692f;
}

a.a_readmore {
  width: 111px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #00692f;
  transition: all 0.5s;
  font-family: "RobotoRegular";
  color: #fff;
  font-size: 13px;
  margin: auto;
}

a.a_readmore img {
  margin-left: 5px;
}

a.a_readmore:hover {
  background-color: red;
}

/* Contact */
.top-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.top-contact .row {
  margin: 0 -15px;
}

.top-contact .article-contact {
  width: 48%;
}

.form-contact {
  width: 47%;
}

.input-contact {
  position: relative;
  margin-bottom: 15px;
}

.input-contact input,
.input-contact textarea {
  width: 100%;
  padding: 10px 0;
  outline: none;
  font-size: 14px;
}

.input-contact input {
  text-indent: 10px;
}

.input-contact textarea {
  resize: none;
  height: 150px;
  padding: 10px;
}

.input-contact .custom-file-label::after {
  content: attr(title);
}

.bottom-contact {
  position: relative;
  height: 500px;
}

.bottom-contact iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100% !important;
  height: 100% !important;
}

/*----------------------Đối tác-----------------*/
.partner {
  width: 100%;
  background-color: #f7f7f7;
  padding: 40px 0;
}

.partner .item_partner a {
  display: block;
  overflow: hidden;
  text-align: center;
  border: 1px solid #d1d1d1;
  background: #fff;
}

.partner .item_partner img {
  max-width: 100%;
  vertical-align: top;
}

.partner .item_partner:hover a img {
  transform: scale(1.1, 1.1);
}

/* Footer */
#footer {
  width: 100%;
}

#footer .footer {
  width: 100%;
  position: relative;
}

#footer .footer .box_footer {
  padding: 40px 0;
  background-color: #1D2749;
  opacity: 1;
  border-radius: 20px;
}

#footer .footer .logo_footer {
  margin-bottom: 10px;
}

#footer .footer .content_footer p {
  font-size: 15px;
  color: #fff;
  line-height: 30px;
  font-weight: 600;
}

#footer .footer .content_footer p img {
  margin-right: 10px;
}

#footer .footer .content_footer p:last-child {
  margin-bottom: 0;
}

#footer .footer h3 {
  font-family: "RobotoBold";
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

#footer .footer .footer1 {
  width: 33%;
  float: left;
  padding-right: 40px;
}

#footer .footer .footer2 {
  width: 21%;
  float: left;
  padding-right: 40px;
}

#footer .footer .footer3 {
  width: 25%;
  float: left;
}

.ul_footer ul {
  padding-left: 0;
}

.ul_footer ul li {
  list-style: none;
}

.ul_footer ul li a {
  font-size: 14px;
  color: #fff;
  font-family: "RobotoRegular";
  display: block;
  margin-bottom: 15px;
}

.ul_footer ul li:last-child a {
  margin-bottom: 0;
}

.ul_footer ul li a img {
  margin-right: 10px;
}

.ul_footer ul li:hover a {
  text-decoration: underline;
}

.social_footer {
  width: 100%;
  padding-top: 15px;
}

.social_footer img {
  max-width: 40px;
  transition: all 0.5s;
  margin-right: 10px;
  border-radius: 50%;
}

.social_footer img:hover {
  transform: rotate(25deg);
}

.copyright {
  width: 100%;
  padding: 15px 0;
  opacity: 0.9;
  background: #1D2749;
}

.copyright .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  font-family: "RobotoRegular";
  font-size: 12px;
  color: #fff;
  position: relative;
}

.copyright p span {
  color: #fffc00;
}

.copyright .copy-r p {
  display: inline-block;
  padding: 0 10px;
  line-height: 10px;
  border-left: 1px solid #fff;
}

.copyright .copy-r p img {
  margin-top: -2px;
  margin-right: 5px;
}

.copyright .copy-r p:first-child {
  border-left: 0;
}

.copyright .copy-r p:last-child {
  padding-right: 0;
}

#map_footer {
  width: 100%;
}

#map_footer iframe {
  width: 100%;
  height: 430px;
  vertical-align: top;
}

/*--------Đăng ký nhận mail---------*/
.newsletter {
  width: 100%;
  padding: 30px 0;
  background: url("../images/bg_dangky.jpg") no-repeat top left;
  background-size: cover;
}

.newsletter .wrapper {
  display: flex;
  align-items: center;
}

.newsletter .title_newsletter h2 {
  font-size: 30px;
  color: #fff;
  font-family: "QuicksandBold";
  text-transform: uppercase;
  margin-bottom: 5px;
}

.newsletter .title_newsletter p {
  font-size: 14px;
  color: #fff;
  font-family: "QuicksandRegular";
}

.form_tin {
  padding-left: 50px;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.form_tin input {
  width: calc(100% - 55px);
  outline: none;
  padding-left: 15px;
  background: #fff;
  color: #fff;
  height: 40px;
  border: 0;
}

.form_tin button {
  width: 40px;
  height: 40px;
  background: #ffc600;
  outline: none;
  border: 0;
  font-family: "RobotoBold";
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  display: block;
  transition: all 0.5s;
}

.form_tin button:hover {
  background: #ff0000;
  color: #fff;
}

.form_tin input::-webkit-input-placeholder {
  color: #808080;
  font-size: 14px;
  font-family: "RobotoRegular";
}

.form_tin input:-moz-placeholder {
  color: #808080;
  font-size: 14px;
  font-family: "RobotoRegular";
}

.form_tin input::-moz-placeholder {
  color: #808080;
  font-size: 14px;
  font-family: "RobotoRegular";
}

.form_tin input:-ms-input-placeholder {
  color: #808080;
  font-size: 14px;
  font-family: "RobotoRegular";
}

/*---------------------Chi tiết tin tức--------*/
.noidung img {
  max-width: 100% !important;
  height: auto !important;
}

.noidung table {
  max-width: 100% !important;
}

.order_news {
  margin-bottom: 5px;
  padding-left: 25px;
}

.order_news a {
  font-size: 15px;
  color: #666;
  margin-bottom: 5px;
}

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

.order_news span {
  color: #0099ff;
}

.span_orther {
  width: 100%;
  font-size: 20px;
  font-family: "RobotoBold";
  display: block;
  text-transform: uppercase;
  margin: 15px 0;
}

.ngaydang {
  color: #666;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.title_detail {
  text-align: center;
  margin-bottom: 20px;
}

.h2_detail {
  font-size: 20px;
  font-family: "RobotoBold";
}

.title_detail h1 {
  font-size: 30px;
}

.note_nd {
  width: 100%;
  color: #000;
  font-size: 16px;
}

.share_social {
  margin: 10px 0;
}

.share_social .flex-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.zalo-share-button {
  margin-top: -5px;
  margin-left: 5px;
}

.download a {
  display: inline-block;
  padding: 7px 20px;
  background: #3399ff;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-family: "MuliRegular";
  margin-top: 20px;
  transition: all 0.5s;
}

.download i {
  margin-right: 5px;
}

.download a:hover {
  background: red;
}

/*-----------map--------*/
#map_canvas iframe {
  width: 100%;
  height: 400px;
}

#map_canvas1 {
  position: relative;
}

#map_canvas1 iframe {
  width: 100%;
  height: 440px;
  vertical-align: top;
}

/*----------Video-----------*/
.margin_video {
  margin: -10px;
}

.video_item {
  padding: 10px;
}

.video_item h3 {
  text-transform: uppercase;
  text-align: center;
  padding-top: 10px;
  color: #3e3e3e;
  font-family: "RobotoBold";
  font-size: 16px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video_item:hover h3 {
  text-decoration: underline;
}

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

/*-------Album-------*/
.margin-ab {
  margin: 0 -10px;
}

.items_ab {
  padding: 0 10px;
}

#content .items_ab {
  margin-bottom: 20px;
}

.items_ab .img_ab {
  overflow: hidden;
  position: relative;
}

.items_ab:hover .img_ab img {
  transform: scale(1.1, 1.1);
}

.items_ab .img_ab span {
  display: block;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  font-family: "RobotoBold";
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.margin_hinhanh {
  margin: -10px;
}

.grid {
  margin: -10px !important;
}

.album_item a {
  display: block;
  overflow: hidden;
  position: relative;
}

.items_hinhanh_box {
  padding: 10px;
}

.items_hinhanh {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.items_hinhanh img {
  width: 100%;
}

.items_hinhanh .des_hinhanh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transform: scale(0, 0);
}

.items_hinhanh:hover .des_hinhanh {
  transform: scale(1, 1);
}

.items_hinhanh .des_hinhanh h3 {
  font-weight: normal;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}

.items_hinhanh:hover img {
  transform: scale(1.1, 1.1);
}

.images-lq {
  display: none;
}

.grid-image-item a {
  display: block;
  overflow: hidden;
}

/*----Tin tức-----*/
.margin-cn-l {
  margin: 0 -14px;
}

.items_cn-l,
.items_cn-t {
  padding: 0 14px;
  margin-bottom: 20px;
}

.items_cn-t:nth-child(2n + 1) {
  clear: both;
}

.item_sub_cn .des-sub_cn {
  width: 65%;
  float: left;
  padding-left: 15px;
}

.item_sub_cn .img_sub_cn {
  width: 35%;
  float: left;
  border: 1px solid #ccc;
  padding: 5px;
}

.item_sub_cn .img_sub_cn a {
  display: block;
  overflow: hidden;
}

.item_sub_cn .img_sub_cn img {
  max-width: 100%;
}

.item_sub_cn h3 a {
  font-family: "RobotoBold";
  font-size: 15px;
  color: #000;
  margin-bottom: 10px;
  display: block;
  max-height: 45px;
  overflow: hidden;
}

.item_sub_cn p {
  font-family: "RobotoRegular";
  font-size: 13px;
  color: #5f5f5f;
  line-height: 25px;
  max-height: 50px;
  overflow: hidden;
}

.item_sub_cn span {
  font-family: "RobotoRegular";
  font-size: 13px;
  color: #5f5f5f;
  display: block;
  margin-bottom: 5px;
}

.item_sub_cn .des-sub_cn img {
  margin-right: 5px;
  float: left;
  margin-top: 2px;
}

.item_sub_cn:hover .img_sub_cn img {
  transform: scale(1.1, 1.1);
}

.item_sub_cn:hover h3 {
  text-decoration: underline;
}

.fb-comments {
  width: 100% !important;
}

#content {
  width: 100%;
  background: #fff;
}

#content .box_container {
  width: 100%;
}

.slick-slide,
.slick-slide * {
  outline: none !important;
}

.lazy {
  opacity: 0;
  transition: all 0.5s;
}

.lazy.loaded {
  opacity: 1;
}

/*----------------------Loading------------------*/
#loadding {
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999999;
  display: none;
}

#floatingBarsG {
  position: absolute;
  width: 60px;
  height: 75px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.blockG {
  position: absolute;
  background-color: white;
  width: 10px;
  height: 23px;
  border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  transform: scale(0.4);
  -o-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  animation-name: fadeG;
  -o-animation-name: fadeG;
  -ms-animation-name: fadeG;
  -webkit-animation-name: fadeG;
  -moz-animation-name: fadeG;
  animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  -ms-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
}

#rotateG_01 {
  left: 0;
  top: 27px;
  animation-delay: 0.45s;
  -o-animation-delay: 0.45s;
  -ms-animation-delay: 0.45s;
  -webkit-animation-delay: 0.45s;
  -moz-animation-delay: 0.45s;
  transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
}

#rotateG_02 {
  left: 8px;
  top: 10px;
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
}

#rotateG_03 {
  left: 25px;
  top: 3px;
  animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
}

#rotateG_04 {
  right: 8px;
  top: 10px;
  animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

#rotateG_05 {
  right: 0;
  top: 27px;
  animation-delay: 1.05s;
  -o-animation-delay: 1.05s;
  -ms-animation-delay: 1.05s;
  -webkit-animation-delay: 1.05s;
  -moz-animation-delay: 1.05s;
  transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}

#rotateG_06 {
  right: 8px;
  bottom: 7px;
  animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -ms-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}

#rotateG_07 {
  bottom: 0;
  left: 25px;
  animation-delay: 1.35s;
  -o-animation-delay: 1.35s;
  -ms-animation-delay: 1.35s;
  -webkit-animation-delay: 1.35s;
  -moz-animation-delay: 1.35s;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

#rotateG_08 {
  left: 8px;
  bottom: 7px;
  animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
}

@keyframes fadeG {
  0% {
    background-color: black;
  }
  100% {
    background-color: white;
  }
}

/*----------Gọi điện right----*/
.blink_me {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blinker;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----------Gọi điện right----*/
.blink_me {
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blinker;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*=========================*/
.quick-alo-phone.quick-alo-show {
  visibility: visible;
}

.quick-alo-phone {
  position: fixed;
  visibility: hidden;
  background-color: transparent;
  width: 82px;
  height: 64px;
  cursor: pointer;
  z-index: 2 !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  right: 100px;
  bottom: 300px;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle {
  border-color: #2aa3d4;
  opacity: 0.5;
}

.quick-alo-ph-circle {
  width: 140px;
  height: 140px;
  top: 25px;
  left: 25px;
  position: absolute;
  background-color: transparent;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  border-radius: 100%;
  animation: quick-alo-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);
  background-color: #a6e3fa 9;
  opacity: 1 !important;
}

.quick-alo-ph-circle-fill {
  width: 90px;
  height: 90px;
  top: 50px;
  left: 50px;
  position: absolute;
  background-color: #000;
  border: 2px solid transparent;
  opacity: 0.1;
  border-radius: 100%;
  animation: quick-alo-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green .quick-alo-ph-img-circle {
  background-color: #2aa3d4;
}

.quick-alo-ph-img-circle {
  width: 50px;
  height: 50px;
  top: 70px;
  left: 70px;
  position: absolute;
  background: rgba(30, 30, 30, 0.1) url("../images/phone.png") no-repeat center center;
  border: 2px solid transparent;
  opacity: 1;
  border-radius: 100%;
  animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
}

.quick-alo-phone.quick-alo-green.quick-alo-hover .quick-alo-ph-img-circle,
.quick-alo-phone.quick-alo-green:hover .quick-alo-ph-img-circle {
  background-color: #75eb50;
}

@keyframes quick-alo-circle-anim {
  0% {
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
  }
}

@keyframes quick-alo-circle-fill-anim {
  0% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}

@keyframes quick-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

/*----------ChatFace-----------*/
.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
  border: 2px solid transparent;
  transition: all 0.5s;
  background-color: rgba(15, 133, 43, 0.45);
  opacity: 0.75;
  right: -10px;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(64, 72, 204, 0.8);
  opacity: 0.1;
  border-color: #4048cc;
  opacity: 0.5;
}

#btn-zalo {
  display: block;
  width: 40px;
  height: 40px;
  z-index: 9999;
}

#btn-zalo i {
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0ba4ca;
  position: relative;
  z-index: 999;
}

#btn-zalo i img {
  vertical-align: middle;
  max-width: 100%;
}

.kenit-alo-circle-fill {
  width: 60px;
  height: 60px;
  top: -10px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  border-radius: 100%;
  border: 2px solid transparent;
  transition: all 0.5s;
  background-color: rgba(15, 133, 43, 0.45);
  opacity: 0.75;
  right: -10px;
}

.kenit-alo-circle {
  width: 50px;
  height: 50px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(15, 133, 43, 0.8);
  opacity: 0.1;
  border-color: #0f852b;
  opacity: 0.5;
}

.js-facebook-messenger-container.closed,
.js-facebook-messenger-tooltip.closed {
  display: none !important;
}

.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}

.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-tooltip {
  display: none;
  position: fixed;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
  z-index: 1e30;
}

.js-facebook-messenger-close-tooltip {
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}

.js-facebook-messenger-box.rubberBand {
  animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.js-facebook-messenger-box {
  bottom: 70px;
  margin: 8px;
  right: 15px;
}

.js-facebook-messenger-box {
  background: #419bf3;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-box {
  width: 60px;
  height: 60px;
  display: block;
  cursor: pointer;
  text-align: center;
  line-height: 60px;
  background: #b08015;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
  transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  left: 15px;
  opacity: 1;
  overflow: hidden;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
  transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-container {
  transform: translateY(50px);
  bottom: 110px;
  right: 35px;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 999999999999999999999999999999;
}

.js-facebook-messenger-container {
  position: fixed;
  opacity: 0;
  border-radius: 10px;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
}

.js-facebook-messenger-top-header {
  width: 300px;
}

.js-facebook-messenger-top-header {
  color: #fff;
  background: #419bf3;
}

.js-facebook-messenger-top-header {
  display: block;
  position: relative;
  width: 300px;
  background: #419bf3;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 10px;
  font-size: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 99999999999999999999999999999999999999999;
}

.js-facebook-messenger-top-header {
  color: #fff;
  background: #0e55a5;
}

.js-facebook-messenger-box {
  background: #0e55a5;
}

.js-facebook-messenger-top-header {
  width: 300px;
}

.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}

.js-facebook-messenger-container {
  transform: translateY(50px);
  bottom: 200px;
  right: 35px;
}

.js-facebook-messenger-container.open {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}

.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
  opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
  transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
  opacity: 1;
}

.shake-anim {
  animation: shake-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
}

#btn-zalo .kenit-alo-circle {
  border-color: #0ba4ca;
}

#btn-zalo .kenit-alo-circle-fill {
  background-color: rgba(11, 164, 202, 0.45);
}

.count-cart {
  position: absolute;
  top: -16px;
  background: red;
  color: #fff;
  border-radius: 100%;
  font-size: 13px;
  width: 23px;
  padding: 2px;
  text-align: center;
  line-height: 17px;
  right: -23px;
  z-index: 9999;
  font-weight: 600;
}

#btn-cart {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  right: 25px;
  bottom: 426px;
  z-index: 9999;
}

#btn-cart i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #009900;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 9999;
}

.shake-anim {
  animation: shake-anim 1s infinite ease-in-out;
  transform-origin: 50% 50%;
}

@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

/*----------Popup-----------*/
#popub {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  text-align: center;
}

.noidung_popup {
  max-width: 700px;
  min-width: 500px;
  background: white;
  float: left;
  padding: 20px;
}

#popub .popub {
  position: relative;
  max-width: 80%;
  margin: auto;
  display: inline-block;
}

#popub .popub .close_popup {
  position: absolute;
  background: url(../images/close.png) center center no-repeat;
  width: 60px;
  height: 60px;
  right: -33px;
  top: -33px;
  z-index: 999999;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

.close_popup,
.list-group-item &gt; .badge {
  float: right;
}

.close_popup {
  font-size: 21px;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 1;
}

#popub {
  width: 100%;
  height: 100%;
  display: none;
}

#popub .popub .close_popup:hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

/*----------Gọi điện-----------*/
.toolbar2 {
  display: none;
  background: #009900;
  padding: 5px;
  bottom: 0;
  right: 0;
  left: 0;
  position: fixed;
  z-index: 500;
  height: auto;
  border-top: 1px solid #cbcbcb;
}

.toolbar2 ul {
  list-style: none;
  padding-left: 0;
}

.toolbar2 ul li {
  text-align: center;
  float: left;
  width: 25%;
}

.toolbar2 ul li a {
  display: inline-block;
  width: 100%;
}

.toolbar2 ul li a span {
  color: #fff;
  font-size: 3vw;
  font-weight: 400;
}

.icon-m {
  background: url(../images/icon_m.png) no-repeat;
  display: inline-block;
}

.icon-t1 {
  background-position: 5px -3px;
  width: 30px;
  height: 25px;
  background-size: 180px;
}

.icon-t2 {
  background-position: -37px -3px;
  width: 30px;
  height: 25px;
  background-size: 180px;
}

.icon-t3 {
  background-position: -80px -3px;
  width: 58px;
  height: 25px;
  background-size: 180px;
}

.icon-t4 {
  background-position: -150px 0px;
  width: 30px;
  height: 26px;
  background-size: 180px;
}

#nhantin .fa {
  background: none;
  color: #fff;
  font-size: 23px;
  margin-bottom: 5px;
  padding-top: 2px;
}

#direct {
  display: block;
  width: 55px;
  height: 55px;
  position: fixed;
  right: 20px;
  bottom: 295px;
  z-index: 9999;
}

/*----------Gọi điện-----------*/
div.widget-mobile {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 9999999;
  display: none;
}

div#my-menu {
  position: relative;
  width: 50px !important;
  height: 50px !important;
}

div.wcircle-open .wcircle-icon i:before {
  content: "\f00d";
}

div.wcircle-icon {
  background: #cc0000;
  border-radius: 50%;
  display: flex !important;
  display: -ms-flex !important;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  position: relative !important;
}

div.wcircle-icon:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  animation: pulse 1s infinite ease-in-out;
}

div.wcircle-icon:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.5);
  border-radius: 50%;
  left: -15px;
  top: -15px;
  animation: zoomIn 2s infinite ease-in-out;
}

div.wcircle-menu {
  position: absolute !important;
  left: 0;
  top: 0;
  display: none;
}

div.wcircle-menu-item {
  width: 50px;
  height: 50px;
  background: #cc0000;
  border-radius: 50%;
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
}

div.wcircle-menu-item img {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
}

div.wcircle-menu-item i,
div.wcircle-icon i {
  font-size: 25px;
  color: #fff;
  position: relative;
  z-index: 9999;
}

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

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
  font-size: 14px;
  color: #333 !important;
}

.breadcrumb .active a {
  color: #1D2749 !important;
}

/* Left */
#left {
  width: 273px;
  float: left;
}

#left .left {
  width: 100%;
}

#left .left ul {
  padding-left: 0;
}

#left .left ul li {
  list-style: none;
}

#left .left ul li a {
  display: block;
  padding: 10px 10px 10px 0;
  font-size: 14px;
  background: url(../images/right-arrow.png) center right 6px no-repeat;
  border-bottom: 1px solid #cacaca;
  font-family: "MuliRegular";
  color: #333;
}

#left .left ul li:hover a {
  color: #d2232a;
  text-decoration: underline;
}

.content_right {
  width: calc(100% - 273px);
  float: right;
  padding-left: 40px;
}

/* Phân Trang Ajax */
.pagination-ajax {
  text-align: center;
}

.pagination-ajax a {
  display: inline-block;
  vertical-align: top;
  margin: 0px 2px 3px 2px;
  color: #333;
  background: #eee;
  border: 1px solid rgba(161, 161, 161, 0.4);
  font-size: 12px;
  cursor: pointer;
  padding: 3px 10px 5px 10px;
  border-radius: 2px;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
}

.breadCrumbs {
  background: #e9ecef;
  padding: 10px 0;
  margin-bottom: 20px;
}

.content_fanpage {
  overflow: hidden;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}

/*css responsive*/
#menu-responsive {
  display: flex;
  align-items: center;
}

#menu-responsive a {
  padding-left: 20px;
  font-size: 30px;
  color: #1D2749;
}

#menu-responsive .logo {
  display: flex;
  width: 100%;
  justify-content: center;
}

.ws-title span{
  text-transform: uppercase !important;
  color : red;
}

/* seemore product */

.p-see-more{
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 30px;
  padding: 8px 24px;
  border: 1px solid #1D2749;
  transition: all 0.25s linear;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;

}

.p-see-more:hover{
  background-color: #1D2749;
  color: white;
}

#home-category .home-category-title h2{
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: black;
  padding: 20px 0;
}

#home-category .home-category-content .hc-item{
  position: relative;
}

#home-category .home-category-content .hc-item a{
  overflow: hidden;
  display: block;
  border-radius: 8px;

}

#home-category .home-category-content .hc-image{
  border-radius: 8px;
  transition: all 0.25s linear;
  width: 100%;
}

#home-category .home-category-content .hc-image:hover{
  transform: scale(1.1);
}

#home-category .home-category-content .hc-title{
 
  background-color: #1D2749;
  padding: 8px 16px;
  border-radius: 12px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-transform: uppercase;
  text-align: center;
}

#home-category .home-category-content .hc-title h3{
  font-size: 22px;
  font-weight: 600;
  color: white;
}

#home-tieuchi .ht-item {
  text-align: center;
  color : black;
}

#home-tieuchi .ht-item .ht-title{
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

#home-tieuchi .ht-item .ht-des{
  font-size: 16px;
}

/* responsive */

@media only screen and (max-width: 600px){
  .list .item .contact{
    font-size: 13px;
  }

  .list .item .show-price{
    padding: 4px;
    margin-bottom: 12px;
  }
  .list .item .show-price .chietkhau{
    padding: 2px 2px;
    font-size: 14px;
  }
  #home-category .home-category-content .hc-title h3{
    font-size: 18px;
  }
}</pre></body></html>