
/* --- 1.global.css --- */
/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}
:root {
    --cl-white: #fff;
    --cl-text: #333;
    --cl-main: #ff6600;
    --sub-cl: #fff0ee;
    --transition: .4s all ease-in-out;
    --center-translate: translate(-50%, -50%);
}
a {
    text-decoration: none;
    color: inherit;
}
.m-top-60{
    margin-top: 60px;
}
button.link, a.link {
    display: inline-flex;
    background-color: var(--cl-main);
    font-size: 14px;
    line-height: 52px;
    text-transform: uppercase;
    padding: 0;
    border: unset;
    transition: var(--transition);
    font-weight: 700;
    color: var(--cl-white);
}
button.link.link-white, a.link.link-white {
    background-color: var(--cl-white);
    color: var(--cl-main);
}
 button.link:hover, a.link:hover {
    background-color: var(--cl-white);
    color: var(--cl-main);
}
button.link.link-white:hover, a.link.link-white:hover {
    background-color: var(--cl-main);
    color: var(--cl-white);
    box-shadow: 0 0 6px #fff;
}
ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-size: inherit;
}
figure{
    margin: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 227, 227, 0.5);
}
.bg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.bg-fill{
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

h1, h2, h3, h4 {
    line-height: 1.2;
}
.relative{
    position: relative;
}
/* ===== GRID SYSTEM ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75em;
    margin-left: -0.75em;
}

[class*="col-"] {
    padding: 0 0.75rem; /* gutter */
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* Responsive columns */
@media (max-width: 767px) {
    .col-sm-1 { width: 8.33%; }
    .col-sm-2 { width: 16.66%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.33%; }
    .col-sm-5 { width: 41.66%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.33%; }
    .col-sm-8 { width: 66.66%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.33%; }
    .col-sm-11 { width: 91.66%; }
    .col-sm-12 { width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { width: 8.33%; }
    .col-md-2 { width: 16.66%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33%; }
    .col-md-5 { width: 41.66%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33%; }
    .col-md-8 { width: 66.66%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33%; }
    .col-md-11 { width: 91.66%; }
    .col-md-12 { width: 100%; }
}

@media (min-width: 993px) {
    .col-lg-1 { width: 8.33%; }
    .col-lg-2 { width: 16.66%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33%; }
    .col-lg-5 { width: 41.66%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33%; }
    .col-lg-8 { width: 66.66%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33%; }
    .col-lg-11 { width: 91.66%; }
    .col-lg-12 { width: 100%; }
}
@media (min-width: 1200px) {
    .col-xl-1  { width: 8.333333%; }
    .col-xl-2  { width: 16.666667%; }
    .col-xl-3  { width: 25%; }
    .col-xl-4  { width: 33.333333%; }
    .col-xl-5  { width: 41.666667%; }
    .col-xl-6  { width: 50%; }
    .col-xl-7  { width: 58.333333%; }
    .col-xl-8  { width: 66.666667%; }
    .col-xl-9  { width: 75%; }
    .col-xl-10 { width: 83.333333%; }
    .col-xl-11 { width: 91.666667%; }
    .col-xl-12 { width: 100%; }
}
/* Offset columns */
.col-offset-1 {margin-left: 8.33%;}
.col-offset-2 {margin-left: 16.66%;}
.col-offset-3 {margin-left: 25%;}
.col-offset-4 {margin-left: 33.33%;}
.col-offset-5 {margin-left: 41.66%;}
.col-offset-6 {margin-left: 50%;}
.col-offset-7 {margin-left: 58.33%;}
.col-offset-8 {margin-left: 66.66%;}
.col-offset-9 {margin-left: 75%;}
.col-offset-10 {margin-left: 83.33%;}
.col-offset-11 {margin-left: 91.66%;}
/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .col-md-offset-0  { margin-left: 0%; }
    .col-md-offset-1  { margin-left: 8.333333%; }
    .col-md-offset-2  { margin-left: 16.666667%; }
    .col-md-offset-3  { margin-left: 25%; }
    .col-md-offset-4  { margin-left: 33.333333%; }
    .col-md-offset-5  { margin-left: 41.666667%; }
    .col-md-offset-6  { margin-left: 50%; }
    .col-md-offset-7  { margin-left: 58.333333%; }
    .col-md-offset-8  { margin-left: 66.666667%; }
    .col-md-offset-9  { margin-left: 75%; }
    .col-md-offset-10 { margin-left: 83.333333%; }
    .col-md-offset-11 { margin-left: 91.666667%; }
    .col-md-offset-12 { margin-left: 100%; }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .col-lg-offset-0  { margin-left: 0%; }
    .col-lg-offset-1  { margin-left: 8.333333%; }
    .col-lg-offset-2  { margin-left: 16.666667%; }
    .col-lg-offset-3  { margin-left: 25%; }
    .col-lg-offset-4  { margin-left: 33.333333%; }
    .col-lg-offset-5  { margin-left: 41.666667%; }
    .col-lg-offset-6  { margin-left: 50%; }
    .col-lg-offset-7  { margin-left: 58.333333%; }
    .col-lg-offset-8  { margin-left: 66.666667%; }
    .col-lg-offset-9  { margin-left: 75%; }
    .col-lg-offset-10 { margin-left: 83.333333%; }
    .col-lg-offset-11 { margin-left: 91.666667%; }
    .col-lg-offset-12 { margin-left: 100%; }
}

/* Extra large devices (≥1200px) – Optional */
@media (min-width: 1200px) {
    .col-xl-offset-0  { margin-left: 0%; }
    .col-xl-offset-1  { margin-left: 8.333333%; }
    .col-xl-offset-2  { margin-left: 16.666667%; }
    .col-xl-offset-3  { margin-left: 25%; }
    .col-xl-offset-4  { margin-left: 33.333333%; }
    .col-xl-offset-5  { margin-left: 41.666667%; }
    .col-xl-offset-6  { margin-left: 50%; }
    .col-xl-offset-7  { margin-left: 58.333333%; }
    .col-xl-offset-8  { margin-left: 66.666667%; }
    .col-xl-offset-9  { margin-left: 75%; }
    .col-xl-offset-10 { margin-left: 83.333333%; }
    .col-xl-offset-11 { margin-left: 91.666667%; }
    .col-xl-offset-12 { margin-left: 100%; }
}

/* ===== TYPOGRAPHY ===== */


.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-bold { font-weight: bold; }
.text-muted { color: #6c757d; }

/* ===== LAYOUT & CONTAINERS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ===== SPACING UTILITIES ===== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0069d9;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
}

.btn-outline:hover {
    background-color: #007bff;
    color: white;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ===== CARD ===== */
.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1rem;
}

/* ===== RESPONSIVE HELPERS ===== */
@media only screen and (max-width: 1440px) {
    .mt-3 {
        margin-top: 1em;
    }
}
@media only screen and (max-width: 1199px) {
    button.link, a.link {
        font-size: 12px;
        line-height: 46px;
    }
    body button.link i,
    body a.link i{
        font-size: 16px;
        width: 40px;
        height: 46px;
    }
}
@media only screen and (max-width: 991px) {
    button.link, a.link {
        font-size: 9px;
        line-height: 40px;
    }
    body button.link i,
    body a.link i{
        font-size: 14px;
        width: 35px;
        height: 40px;
    }
}
@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
    button.link , a.link {
        font-size: 11px;
        line-height: 40px;
    }
}

@media (min-width: 769px) {
    .desktop-hide {
        display: none;
    }
}

/* ===== VISIBILITY UTILITIES ===== */
.hidden {
    display: none !important;
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}
/* --- 1.header.css --- */
.full-header-top {
  font-size: 13.6px;
}
.left-header-top {
  color: #fff;
  float: left;
  width: 50%;
  line-height: 35px;
  text-align: left;
}
.right-header-top {
  color: #fff;
  float: right;
  width: 50%;
  line-height: 35px;
  text-align: right;
}
.full-header {
  background: #fff;
  z-index: 999;
}

header .inner-header {
  padding: 1em 1.5em;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header-logo {
  float: left;
  max-width: 180px;
  overflow: hidden;
  max-height: 120px;
  transition: all 0.3s;
}
.header-logo a {
  float: left;
  width: 100%;
}
img.site-logo {
  max-width: 100%;
  max-height: 120px;
}
/* menu */
.main-menu {
  float: left;
  transition: margin-top 0.3s;
}
.main-menu
  #mega-menu-wrap-max_mega_menu_1
  #mega-menu-max_mega_menu_1
  > li.mega-menu-flyout
  ul.mega-sub-menu {
  box-shadow: 0px 0px 7px 0px rgba(8, 88, 157, 0.2);
}
.right-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn-click {
  color: var(--cl-main);
  font-weight: 600;
  padding: 0 2px;
  border-bottom: 1px solid var(--cl-main);
  text-transform: uppercase;
  margin: 0 0.75em;
}
.btn-dt .btn {
  border: 0;
  text-transform: uppercase;
  box-shadow: 1px 2px 4px rgba(31, 32, 33, 0.33);
  cursor: pointer;
  font-size: 14px;
  height: 38px;
  line-height: 38px;
  padding: 0 18px;
  text-align: center;
  min-width: 110px;
  display: block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin: 0;
}
/*css menu bên phải*/
.right-header .header-menu {
  height: 40px;
  margin: 0 0.75em;
}
.right-header .header-menu > li.menu-item {
  padding: 0.75em;
}
.right-header .header-menu li.menu-item:hover {
  color: var(--cl-main);
}
.header-menu .sub-menu {
  position: absolute;
  border-radius: 6px;
  top: 100%;
  background: white;
  width: auto;
  max-width: 960px;
  box-shadow: 0 0 7px rgba(8, 88, 157, 0.2);
  z-index: 999;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 15px;

  /* Animation style */
  opacity: 0;
  pointer-events: none;
  display: block;

  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.header-menu li.menu-item-has-children.menu-item {
  padding-right: 1.5em;
}
.header-menu li.menu-item-has-children > a::after {
  content: "\f107"; /* FontAwesome icon xuống (chevron-down) */
  font-family: "Font Awesome 6 Free"; /* hoặc FA4: "FontAwesome" */
  font-weight: 900; /* FA6 dùng 900 cho solid */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.8em;
}
/* Hiện submenu khi hover */
.header-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: perspective(400px) rotateX(0deg);
}

/* Định dạng cha menu có con */
.header-menu li.menu-item-has-children {
  position: relative;
}

/* Cơ bản cho từng item trong submenu */
.header-menu .sub-menu li a {
  color: #333;
  padding: 6px 10px;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.header-menu .sub-menu li:hover a {
  color: var(--cl-main);
}
.language-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0.75em;
  height: 40px;
}

.lang-toggle img {
  width: 30px;
  height: auto;
}

.lang-menu {
  position: absolute;
  border-radius: 6px;
  top: 100%;
  right: 0;
  background: white;
  z-index: 999;
  gap: 5px;
  padding: 5px;
  border: 1px solid #ccc;
  min-width: 150px;
  box-shadow: 0px 0px 7px 0px rgba(8, 88, 157, 0.2);
  /* Animation style */
  opacity: 0;
  pointer-events: none;
  display: block;

  transform: perspective(400px) rotateX(-90deg);
  transform-origin: top;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.lang-menu div {
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-menu div:hover {
  background-color: #f0f0f0;
}

.language-dropdown:hover .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: perspective(400px) rotateX(0deg);
}

/* Search */
.header-search {
  float: right;
  width: 190px;
}
#search-form {
  width: 150px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0;
  border: 1px solid #ddd;
  float: left;
  height: 26px;
  padding: 0px 5px;
  border-radius: 5px 0 0 5px;
}
.search-submit {
  width: 28px;
  margin: 0;
  background-color: #01959f;
  height: 28px;
  float: left;
  border-radius: 0 5px 5px 0;
  border: none;
}
.search-submit i {
  color: #fff;
  font-size: 14px;
}
.full-header-top {
  display: none;
}
.inner-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1100px) {
  .full-header.sticky .header-logo {
    max-width: 140px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-menu {
    float: right;
    margin-top: 0;
    margin-left: 0;
  }
  .header-search {
    margin-top: 0;
  }
  .full-header-top {
    display: block;
    background: var(--sub-cl);
  }
  #mega-menu-wrap-max_mega_menu_1
    #mega-menu-max_mega_menu_1
    > li.mega-menu-item
    > a.mega-menu-link {
    padding: 0 5px 0 5px;
  }
  .left-header *,
  .right-header * {
    font-size: 12px;
  }
  /*.right-header .header-menu > li.menu-item{*/
  /*    padding: 0.5em;*/
  /*}*/
  /*.right-header .header-menu > li.menu-item a{*/
  /*    font-size: 12px;*/
  /*}*/
  /*.header-menu li.menu-item-has-children.menu-item{*/
  /*    padding-right:1em;*/
  /*}*/
  /*.main-menu #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link{*/
  /*    font-size: 12px;*/
  /*    padding: 0px 6px 0px 6px;*/
  /*}*/
}
@media only screen and (max-width: 1100px) {
  .header-logo {
    max-width: 150px;
  }
}
@media (max-width: 1024px) {
  .main-menu
    #mega-menu-wrap-max_mega_menu_1
    #mega-menu-max_mega_menu_1
    > li.mega-menu-item
    > a.mega-menu-link {
    font-weight: 600;
  }

  .header-menu .sub-menu {
    display: none;
    padding-left: 1rem;
  }

  .header-menu .sub-menu.open {
    display: block;
  }

  .header-menu li.menu-item-has-children > a {
    position: relative;
  }
  .header-menu li.menu-item-has-children > a::after {
    position: absolute;
    top: 50%;
    right: -10px; /* Khoảng cách từ bên phải */
    transform: translateY(-50%);
    font-size: 0.8em;
    /* Thay đổi kích thước icon nếu cần */
    color: #333; /* Màu sắc của icon */
    /* Màu sắc của icon */

    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
  }

  .header-menu > li.menu-item {
    transition: none;
    border-radius: 0;
    box-shadow: none;
    background: none;
    border: 0;
    bottom: auto;
    box-sizing: border-box;
    clip: auto;
    color: #666;
    display: block;
    float: none;
    font-size: 14px;
    height: auto;
    left: auto;
    line-height: 1.7;
    list-style-type: none;
    margin: 0;
    min-height: auto;
    max-height: none;
    min-width: auto;
    max-width: none;
    opacity: 1;
    outline: none;
    overflow: visible;
    padding: 0;
    position: relative;
    pointer-events: auto;
    right: auto;
    text-align: left;
    text-decoration: none;
    text-indent: 0;
    text-transform: none;
    transform: none;
    top: auto;
    vertical-align: baseline;
    visibility: inherit;
    width: auto;
    word-wrap: break-word;
    white-space: normal;
  }
  .header-menu > li.menu-item > a {
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    padding: 0px 5px 0px 5px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #000000;
    text-transform: capitalize;
    text-decoration: none;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    outline: none;
  }

  .header-menu .sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    transition: all 0.3s ease;
  }
  .left-header * {
    font-size: 12px !important;
  }
  .main-menu #mega-menu-wrap-max_mega_menu_1 {
    position: relative;
  }

  .main-menu .btn-login.hidden-1200 {
    display: block;
  }
  .btn-login a {
    color: var(--cl-white, #fff);
  }
}
@media screen and (max-width: 1020px) {
  .left-header {
    width: 100%;
  }
  .main-menu {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .left-header {
    width: 100%;
    justify-content: space-between;
  }
  .main-menu {
    float: right;
  }
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-left,
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-right {
    display: none;
  }
  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle {
    justify-content: flex-end;
  }

  #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle .mega-toggle-blocks-center {
    display: block;
  }

  #mega-menu-wrap-max_mega_menu_1
    .mega-menu-toggle
    .mega-toggle-blocks-center
    .mega-toggle-block {
    justify-content: flex-end;
  }
  .sub-menu.open {
    padding: 0 !important;
  }
  .header-menu .sub-menu li a {
    font-weight: 600;
  }
}
@media screen and (max-width: 995px) {
  .left-header * {
    font-size: 14px !important;
  }
  .header-menu li.menu-item-has-children > a::after {
    right: 10px !important;
  }
  .main-menu .btn-login.hidden-1200 {
    background-color: var(--cl-main) !important;
    color: #fff !important;
    padding: 10px 20px !important;
  }
  .btn-click {
    color: #fff;
    text-align: center;
  }
}
@media only screen and (max-width: 900px) {
  .header-menu .sub-menu li a {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
  }
  .menu-item {
    padding-right: 0 !important;
  }
  .sub-menu.open {
    padding: 0 !important;
    box-shadow: 0px 0px 7px 0px rgba(8, 88, 157, 0.2);
  }
  .left-header-top,
  .right-header-top {
    width: 100%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
  }
  .left-header {
    width: 100%;
    justify-content: space-between;
    font-size: 14px !;
  }
  .main-menu .btn-login.hidden-1200 {
    background-color: var(--cl-main) !important;
  }
}

/* --- 1.home.css --- */
.home-box-info-section,
.home-box-du-an,
.home-box-banner-1,
.home-box-tin-tuc,
.home-box-banner-2,
.home-box-kh-danhgia,
.home-box-kh-thanthiet,
.home-box-category {
  float: left;
  width: 100%;
}
.text-title {
  font-size: 2em;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cl-main);
  text-transform: uppercase;
}

.btn {
  background-color: var(--cl-main);
  display: inline-block;
  color: #ffffff;
  position: relative;
  padding: 8px 10px;
  font-size: 1.2em;
  border: 0;
  border-radius: 6px;
  transition: all 0.4s ease;
  z-index: 1;
  -webkit-box-shadow: 0 5px 15px rgba(33, 33, 33, 0.2);
  overflow: hidden;
  margin: 0.5em 0;
  white-space: nowrap;
  align-self: flex-start;
  font-weight: 500;
}
.btn:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background: linear-gradient(90deg, var(--cl-main) 0%, var(--sub-cl) 100%);
  z-index: -1;
  transition: all 1s;
}
.btn:hover:before {
  width: 160%;
}
.btn:hover {
  background-color: var(--cl-main);
  color: #fff;
}
/*css box thông tin*/
.home-box-info-section {
  padding: 50px;
}
.inner-home-box-info {
  display: flex;
  flex-wrap: wrap;
}
.home-box-info-left,
.home-box-info-right {
  padding: 50px 0.75em;
}
.home-box-info-left h2 {
  font-size: 2em;
}
.discount {
  font-size: 1.5em;
  font-weight: bold;
}

.discount .bg-span {
  background: var(--cl-main);
  display: inline-block;
  transform: skewX(335deg);
  padding: 4px 8px;
}
.discount span {
  position: relative;
  color: white;
  transform: skewX(25deg);
  display: inline-block;
}
.home-box-info-left .content ul {
  list-style: none;
  padding: 0;
}

.home-box-info-left .content ul li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
  margin-bottom: 0.5em;
  font-size: 1.2em;
}
.home-box-info-left .content ul li i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--cl-main);
  background: var(--sub-cl);
  border-radius: 4px;
}

.home-box-info-left .price {
  font-size: 1.5em;
}
.home-box-info-left .price span {
  font-size: 1.6em;
  color: var(--cl-main);
  font-weight: 600;
}

.note {
  font-size: 1em;
  margin-top: 0.2em;
  color: #666;
  font-weight: bold;
  font-style: italic;
  text-decoration: underline;
}
.home-box-info-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-box-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Chia làm đúng 2 cột */
  gap: 20px;
}

.info-right-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
  border: 1px solid #42464e;
  padding: 10px;
  display: inline-block;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  line-height: 20px;
  vertical-align: middle;
  letter-spacing: 1px;
  word-spacing: 0px;
  color: #42464e;
  cursor: pointer;
}

.info-right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px var(--sub-cl);
  border-color: var(--cl-main);
  color: var(--cl-main);
}
.home-box-web-desgin .text-title {
  font-size: 2em;
}
.home-box-web-desgin .text-subtitle {
  text-transform: uppercase;
  font-size: 1.3em;
}
/*css box lĩnh vực*/
.field-item {
  margin: 0.75em 0;
  height: 144.13px;
}
.inner-field-item {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 0.8em;
  overflow: hidden;
}
.thumbnail {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.field-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1em;
  color: var(--cl-white);
  margin: 0;
  padding: 0.5em;
  z-index: 5;
}
.inner-field-item .thumbnail:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  background-image: linear-gradient(359deg, #000000, #ffc0cb00);
  z-index: 1;
  width: 100%;
  left: 0;
  pointer-events: none;
}
.field-item:hover img {
  transform: scale(1.2);
}
.home-box-web-desgin .btn-more {
  display: flex;
  gap: 0.75em;
  align-items: center;
}
.home-box-web-desgin .btn-more i {
  font-size: 1.2em;
}
/*css box khách hàng thân thết*/
.home-box-our-clients {
  padding: 0 0.75em;
}
.home-box-our-clients .text-subtitle {
  font-size: 1.2em;
}
.client-list {
  gap: 10px;
}
.client-item {
  width: calc(33.333% - 10px);
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}
.overlay {
  background-color: transparent;
}
.img-bg {
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.client-item .img-bg {
  max-height: 200px;
}
.client-item .inner {
  padding: 1.5em 3em;
  text-align: center;
}
.client-item span.cus-created {
  color: #fff;
  font-size: 1.2em;
}
.client-item h4.client-name {
  color: #ff6600;
  font-size: 1.5em;
  font-weight: 700;
}
.client-item p.client-content {
  font-size: 1.2em;
  line-height: 1.5;
  text-decoration: underline;
}
/*css box câu hỏi*/
.home-box-question {
  padding: 0 0.75em;
}
.question-item {
  background: #fff9f9;
  border: 1px solid var(--cl-main);
  border-radius: 8px;
  margin-bottom: 1.5em;
  overflow: hidden;
}
button.btn-question {
  display: flex;
  background: transparent;
  color: #333333;
  width: 100%;
  text-align: left;
  font-size: 1em;
  border-radius: 0;
  margin: 0;
  padding: 0.75em;
  line-height: 1;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  user-select: none;
  box-shadow: none;
}
button.btn-question span {
  font-weight: 800;
  white-space: normal;
  word-break: break-word; /* Tùy chọn: giúp cắt từ nếu quá dài */
}
.question-content {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  margin: 0 1em;
  height: 0;
  line-height: 1.2;
}
.question-item.active button.btn-question {
  color: var(--cl-main);
}
.question-item.active button.btn-question:hover {
  color: var(--cl-white);
}
.question-item.active .question-content {
  opacity: 1;
  transform: translateY(0);
  margin: 0.75em 1em 1em 1em;
}

.btn-question i {
  transition: transform 0.3s ease;
}

.question-item.active .btn-question i {
  transform: rotate(180deg);
}
.home-box-question-right {
  display: inline-block;
}
.box-image {
  text-align: right;
  position: relative;
  padding-top: 65%;
}
.box-image img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: contain;
  object-position: right;
}
/*css box liên hệ*/
.home-box-hotline {
  padding: 50px 20px;
  position: relative;
}
.home-box-hotline .text-title {
  font-size: 2.4em;
}
.home-box-hotline .text-subtitle {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
}
.home-box-hotline .text-note {
  color: #fff;
}
.hotline-item {
  margin: 10px 0;
  font-size: 2em;
  transition: all 0.3s ease;
}

.hotline-item .icon-phone {
  margin-right: 0.5em;
  width: 36px;
  height: auto;
}

.hotline-number {
  font-size: 1.4em;
  color: var(--cl-main);
  font-weight: bold;
}
.hotline-item:hover .hotline-number {
  text-decoration: underline;
}
.inner-hotline-cta-box {
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
}

.inner-hotline-cta-box .cta-callnow {
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 10px;
}

.cta-note {
  margin-top: 5px;
  opacity: 0.9;
}

@media (min-width: 1200px) {
  .col-cate {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .client-item .img-bg {
    max-height: 100%;
  }
  .client-item .inner {
    color: #ff6600 !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.65);
  }
  .client-item:hover .inner {
    opacity: 1;
  }
  .client-item h4.client-name {
    color: #ff6600 !important;
    font-size: 1.8em;
    font-weight: 700;
  }
  .client-item p.client-content {
    color: #ff6600 !important;
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 1024px) {
  .client-item {
    padding: 0.5em;
    display: flex;
    flex-direction: column;
  }
  .client-item .img-bg {
    height: 200px;
  }
}
@media only screen and (max-width: 993px) {
  * {
    box-sizing: border-box;
  }
  .info-right-item {
    width: 150px;
  }
  .inner-web-desgin {
    justify-content: space-between;
  }
  .inner-web-desgin .field-item {
    width: calc(50% - 10px);
    height: 120px;
    padding: 0;
  }
  .home-box-our-clients {
    padding: 0;
  }
  .client-item {
    width: calc(50% - 5px);
    height: auto;
    box-sizing: border-box;
  }
  .client-item * {
    box-sizing: border-box !important;
  }
  .img-bg {
    position: relative;
  }
  .overlay {
    width: 100%;
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
  }
  .client-click {
    position: relative;
    display: flex;
    align-items: center; /* căn giữa theo chiều dọc */
    justify-content: center; /* căn giữa theo chiều ngang */
  }
  .client-item .inner {
    position: absolute;
    z-index: 100;
    text-align: center;
    margin: 0;
    margin-top: 30px;
    padding: 10px 0;
  }
  .client-item span.cus-created {
    font-size: 12px;
    box-sizing: border-box;
  }
  .client-item h4.client-name {
    font-size: 1.25em;
    box-sizing: border-box;
    font-weight: bold;
  }
  .client-item p.client-content {
    font-size: 12px;
    color: white;
    box-sizing: border-box;
  }
  .field-item {
    height: 200px;
  }
  .thumbnail a {
    width: 100%;
  }
  .home-box-question {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-box-info-left,
  .home-box-info-right {
    padding: 0;
  }
  .home-box-info-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .info-right-item {
    width: 200px;
  }
   .client-item span.cus-created {
    font-size: 12px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 680px) {
  .home-box-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .text-title {
    font-size: 1.5em;
  }
  .home-box-hotline .text-title {
    font-size: 1.8em;
  }
  .home-box-hotline .text-subtitle {
    font-size: 1.2em;
  }
  .hotline-number {
    font-size: 1.2em;
  }
  .hotline-item .icon-phone {
    width: 26px;
  }
  .cta-description,
  .cta-note {
    font-size: 0.9em;
    display: flex;
    white-space: normal; /* Cho phép xuống dòng */
    word-wrap: break-word; /* Tự động ngắt từ nếu dài quá */
    width: 100%; /* Chiếm toàn bộ chiều ngang cha */
    max-width: 100%; /* Không vượt quá cha */
    line-height: 1.4; /* Dễ đọc hơn */
  }
  .inner-hotline-cta-box .cta-callnow {
    font-size: 1.5em;
  }
   .client-item span.cus-created {
    font-size: 12px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 576px) {
  .info-right-item {
    width: 150px;
  }
  .home-box-info-left h2 {
    font-size: 1.5em;
  }
  .home-box-info-left .content ul li {
    font-size: 1em;
  }
  .btn-dangky {
    margin: 15px auto;
  }
  .home-box-info-left .text-title {
    text-align: center;
  }
  .discount {
    font-size: 1.2em;
  }
  .inner-hotline-cta-box .cta-callnow {
    font-size: 1.2em;
  }
   .client-item span.cus-created {
    font-size: 12px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 480px) {
  .home-box-info-left,
  .home-box-info-right {
    padding: 0;
  }
  .home-box-info-grid {
    grid-template-columns: 1fr;
  }
  .info-right-item {
    width: 100%;
  }
  .home-box-info-left h2 {
    font-size: 1.2em;
  }
  .home-box-info-left .content ul li {
    font-size: 0.9em;
  }
   .client-item span.cus-created {
    font-size: 12px;
    box-sizing: border-box;
  }
  .home-box-hotline .text-title {
    font-size: 1.5em;
  }
  .home-box-hotline .text-subtitle {
    font-size: 1em;
  }
  .hotline-number {
    font-size: 1em;
  }
  .hotline-item .icon-phone {
    width: 20px;
  }
}

/* --- 1.layout.css --- */
body {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    font-family: sans-serif;
    font-size: 14px;
    --tw-bg-opacity: 1;
    background-color: rgb(239 242 244 / var(--tw-bg-opacity));
}
.inner-container {max-width: 1240px;margin: auto;box-sizing: border-box;padding: 0 10px;width: 100%;}
.inner-container.row{padding: 0;}
.full-row {float: left;width: 100%;}
.full-content {min-height: 500px;margin-top: 8px;}
img {max-width: 100%;}
main#main.one-sidebar {width: 80%;float: left;}
main#main.two-sidebar {width: 60%;float: left;}
.content-right{width: 74%;float: left; padding-top: 20px;}
#sibar-left {float: left;width: 25%;margin-right: 1%; padding-top: 20px;}
.sidebar-two {float: right;width: 19%;}
.error_404 {color: #018791;text-align: center;margin-top: 120px;}
.error_404 .fa {font-size: 140px;}
ul{margin: 0;}
@media only screen and (max-width: 900px) {
.inner-content{box-sizing: border-box; width: 100%; display: block;}
.inner-container .row{padding: 10px;}
main#main.two-sidebar, main#main.one-sidebar {width: 100%;}
a {
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
  display: inline-block;
  white-space: normal;
}
#sibar-left{width: 100%;}
.content-right{width: 100%;}
}

/* --- 1.sidebar.css --- */
.block-sidebar {
  margin-bottom: 10px;
  float: left;
  width: 100%;
}
/* --- Sidebar Hướng dẫn --- */
#sibar-left .heading_box a {
  font-size: 18px;
  font-weight: bold;
  color: #c75a0b;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

#sibar-left .menu > li {
  margin-bottom: 8px;
  list-style: none;
}

/* Chuyên mục */
#sibar-left .menu > li > a {
  font-weight: bold;
  font-size: 16px;
  color: #c75a0b;
  text-decoration: none;
  display: block;
}
/* Danh sách bài viết */
#sibar-left .sub-menu {
  padding-left: 15px;
  border-left: 1px solid #ddd;
}

#sibar-left .sub-menu li {
  margin: 5px 0;
  list-style: none;
}
#sibar-left .sub-menu > li > a{
    font-weight: bold;
}
#sibar-left .sub-menu li a {
  font-size: 14px;
  color: #c75a0b;
  text-decoration: none;
  display: block;
  position: relative;
  padding-left: 5px;
}

/* Hover link bài viết */
#sibar-left .sub-menu li a:hover {
  color: #007acc;
}

/* Bài viết đang active */
#sibar-left .sub-menu li.isactive a {
  color: #007acc;
  font-weight: bold;
}

#sibar-left .sub-menu li.isactive a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #007acc;
}
ul.post-list{
    padding-left: 10px;
}
ul#menu-sidebar ul {
  list-style: none;
  float: left;
  margin: 0;
  width: 100%;
  padding: 0;
}
#menu-sidebar a:hover {
  background: #018791;
  color: #fff !important;
}
#menu-sidebar a {
  color: #018791;
  text-decoration: none;
  text-transform: uppercase;
  float: left;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(1, 135, 145, 0.6);
}
#menu-sidebar ul a {
  padding-left: 25px;
}
.block-sidebar .item-post {
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  float: left;
  border-bottom: 1px solid rgba(1, 135, 145, 0.6);
}
.block-sidebar .item-post:last-child {
  border-bottom: none;
}
.block-sidebar .item-images {
  width: 23%;
  float: left;
  margin-right: 2%;
  border: 1px solid rgba(1, 135, 145, 0.6);
  box-sizing: border-box;
}
.block-sidebar .item-images img {
  height: auto;
}
.block-sidebar .item-detail {
  float: left;
  width: 75%;
}
.block-sidebar .item-detail h4.title {
  font-size: 13px;
  padding: 0;
  color: #018791;
  margin: 0;
  overflow: hidden;
  max-height: 32px;
}
.block-sidebar a:hover .item-detail h4.title {
  text-decoration: underline;
}
.block-sidebar .item-detail .item-date {
  font-size: 12px;
  color: #018791;
  margin-top: 3px;
}
.block-tag h2.widgettitle {
  display: none;
}
.tagcloud a {
  color: #018791;
  font-size: 16px !important;
  float: left;
  width: 100%;
  text-decoration: none;
  padding: 8px 5px;
  box-sizing: border-box;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tagcloud a:before {
  content: "\f02b";
  float: left;
  margin-right: 8px;
  font: normal normal normal 14px/1 FontAwesome;
  transform: rotate(90deg);
}
.block-cart .widgettitle {
  display: none;
}
.woocommerce .woocommerce-mini-cart-item.mini_cart_item {
  margin-top: 5px;
}
.woocommerce .woocommerce-mini-cart-item.mini_cart_item a {
  color: #018791;
}
.woocommerce.widget_shopping_cart .total {
  text-align: right;
  padding-right: 10px;
}
.woocommerce.widget_shopping_cart .buttons a {
  padding: 5px;
  font-size: 12px;
  margin-left: 10px;
  background: #f37022;
  color: #fff;
}
.woocommerce.widget_shopping_cart .buttons a.checkout {
  background: #018791;
}
.woocommerce.widget_shopping_cart .buttons a.checkout:hover {
  color: #fff;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  font-size: 12px;
  background: #018791;
  color: #fff;
  padding: 5px 8px;
  font-weight: normal;
}
.woocommerce .widget_price_filter .price_slider_amount .button:hover {
  background: #f37022;
}
.widget_shopping_cart_content p.woocommerce-mini-cart__buttons {
  text-align: right;
  margin-top: 10px;
}
.control-sidebar {
  width: 30px;
  position: absolute;
  height: 30px;
  background: #fff;
  text-align: center;
  top: 55%;
  border: 1px solid rgba(1, 135, 145, 0.6);
  cursor: pointer;
  display: none;
}
.sidebar-one .control-sidebar {
  left: auto;
  right: -30px;
  border-left: none;
  border-radius: 0px 5px 5px 0px;
}
.sidebar-two .control-sidebar {
  right: 239px;
  left: auto;
  border-right: none;
  border-radius: 5px 0 0 5px;
}
.sidebar-fa {
  font-size: 18px;
  margin-top: 6px;
  color: #018791;
}
/* yith */
ul.yith-wcan-list li.chosen > a:before {
  display: none;
}
ul.yith-wcan-list li {
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul.yith-wcan-list li:before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f096";
  width: 20px;
  float: left;
  font-size: 16px;
  color: #01959f;
}
ul.yith-wcan-list li.chosen:before {
  content: "\f046";
}
ul.yith-wcan-list li a {
  font-family: Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #018791;
  font-size: 13px;
}
ul.yith-wcan-list li a:hover {
  text-decoration: underline;
}
ul.yith-wcan-color.yith-wcan.yith-wcan-group,
ul.yith-wcan-list {
  margin: 0;
  padding: 0;
}
.yith-woocommerce-ajax-product-filter ul li {
  line-height: 22px;
}
.woocommerce a.yith-wcan-reset-navigation.button {
  background: #018791;
  color: #fff;
  padding: 6px 8px;
  font-size: 12px;
  border: none;
}
.woocommerce a.yith-wcan-reset-navigation.button:hover {
  background: #f37022;
  color: #fff;
}
h1.woocommerce-products-header__title.page-title {
  color: #018791;
  text-transform: uppercase;
  font-size: 21px;
}
.woocommerce .content-wrap .woocommerce-breadcrumb a {
  color: #018791;
  text-decoration: none;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}
.woocommerce .woocommerce-breadcrumb {
  border-bottom: 2px solid #018791;
  padding-bottom: 5px !important;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: left !important;
  width: 23% !important;
  margin-right: 3%;
  border: 1px solid rgba(1, 135, 145, 0.6);
}
.woocommerce ul.cart_list li a span,
.woocommerce ul.product_list_widget li a span {
  float: left;
  width: 70%;
  font-size: 14px;
  color: #018791;
}
.woocommerce ul.cart_list li a:hover span,
.woocommerce ul.product_list_widget li a:hover span {
  text-decoration: underline;
}
.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  border-bottom: 1px solid rgba(1, 135, 145, 0.6);
}
.woocommerce ul.cart_list li:last-child,
.woocommerce ul.product_list_widget li:last-child {
  border-bottom: none;
}
.woocommerce ul.product_list_widget li .woocommerce-Price-amount.amount {
  font-size: 12px;
}
@media only screen and (max-width: 900px) {
  .sidebar-one,
  .sidebar-two {
    width: 240px;
    position: fixed;
    background: #fff;
    top: 0;
    height: 100%;
    z-index: 99;
  }
  .control-sidebar {
    display: block;
  }
  .heading_box{
    text-align: center;
  }
  .sidebar-one {
    top: 0;
    left: -240px;
  }
  .sidebar-two {
    right: -240px;
  }
  .sidebar-content {
    height: 100%;
    overflow-y: scroll;
    width: 100%;
  }
  
}

/* --- 1.woocommerce.css --- */
/* product-category */
.woocommerce ul.products li.product-category, .woocommerce-page ul.products li.product-category {border: 2px solid #ccc;box-sizing: border-box;}
.woocommerce ul.products li.product-category:hover, .woocommerce-page ul.products li.product-category:hover {border: 2px solid rgba(1,149,159,0.6);}
.woocommerce ul.products li.product-category.last, .woocommerce-page ul.products li.product-category.last {margin-right: 0 !important;}
.woocommerce ul.products li.product-category .woocommerce-loop-category__title, .woocommerce ul.products li.product-category .woocommerce-loop-product__title, .woocommerce ul.products li.product-category h3 {background: rgba(255,255,255,0.6);position: absolute;left: 0;color: #01959f;bottom: 0;width: 100%;transition: opacity 0.3s, transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;font-size: 12px !important;text-align: center;min-height: 30px;text-transform: uppercase;}
.woocommerce ul.products li.product-category:hover .woocommerce-loop-category__title, .woocommerce ul.products li.product-category:hover .woocommerce-loop-product__title, .woocommerce ul.products li.product-category:hover h3 {background: rgba(1,149,159,0.6);color: #fff !important;}
.woocommerce ul.products li.product-category span.count {font-weight: normal;display: block;font-size: 11px;}
/* product list */
.woocommerce ul.products li.type-product, .woocommerce-page ul.products li.type-product {border: 1px solid #018791;box-sizing: border-box;transition: transform .3s, box-shadow .3s, background-color .3s, color .3s, opacity .3s, -webkit-transform .3s;box-shadow: 0px 20px 25px 0px rgba(0,0,0,0.2);}
.woocommerce ul.products li.type-product.last, .woocommerce-page ul.products li.type-product.last {margin-right: 0 !important;}
.woocommerce ul.products li.type-product:hover, .woocommerce-page ul.products li.type-product:hover {box-shadow: none;}
.woocommerce ul.products li.type-product .woocommerce-loop-category__title, .woocommerce ul.products li.type-product .woocommerce-loop-product__title, .woocommerce ul.products li.type-product h3 {color: #01959f;width: 100%;font-size: 12px !important;text-align: center;min-height: 30px;text-transform: uppercase;margin: 0 !important;padding: 0 !important;}
.woocommerce ul.products li.product a.button {margin-top: 3px !important;background: #018791;color: #fff;border-radius: 0;text-align: center;width: 50%;box-sizing: border-box;float: left;padding-left: 0;padding-right: 0;}
.woocommerce ul.products li.product a.added_to_cart.wc-forward {position: absolute;left: 18px;bottom: -18px;font-size: 12px;}
.woocommerce ul.products li.product a.yith-wcqv-button {background: #f37022;}
.woocommerce ul.products li.product .price {color: #01959f !important;margin: 0;text-align: center;font-size: 12px !important;}
.woocommerce ul.products li.product .onsale {transform: rotate(35deg);top: 19px !important;right: 4px !important;left: auto !important;}
/* product view */
.woocommerce div.product .product_title {color: #018791;font-size: 21px;}
.woocommerce div.product p.price, .woocommerce div.product span.price {color: #018791 !important;}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {background-color: #018791 !important;}
.woocommerce .quantity .qty {height: 28px;border: 1px solid #018791;}
.woocommerce .product-type-simple span.onsale {transform: rotate(320deg);line-height: 15px;background: #f37022;border-radius: 5px;padding: 3px 5px;min-height: auto;top: 19px !important;left: 4px !important;font-size: 12px;font-weight: normal;}
.woocommerce div.product .woocommerce-tabs .panel {overflow: hidden;}
.kw-box-contact {border: 1px dashed #f37022;border-radius: 5px;box-sizing: border-box;padding: 5px;margin-top: 10px;}
.kw-box-contact p {margin: 0;margin-bottom: 10px;}
section.related.products h2 {color: #018791;}
.box_share {margin-top: 10px;margin-bottom: 10px;width: 100%;float: left;}
.box_share>* {float: left;margin-right: 10px !important;}
.qr-create-cart {margin-top: 10px;}
.qr-create-cart img {width: 100px;transition: 0.5s;}
.qr-create-cart:hover img {width: 300px;}
/* cart */
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {color: #fff !important;background: #018791 !important;}
.woocommerce .cart .button, .woocommerce .cart input.button {color: #fff !important;background: #018791 !important;}
.woocommerce-message {border-top-color: #018791 !important;}
.woocommerce-message::before {color: #018791 !important;}
.woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {border-color: #018791 !important;padding: 8px 6px 8px !important;}
.woocommerce table.shop_table {border-color: #018791 !important;}
.woocommerce table.shop_table td{border-color: #018791 !important;}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th{border-color: #018791 !important;}
.woocommerce table.shop_table td.product-name a {color: #018791;text-decoration: none;font-size: 16px;}
.woocommerce table.shop_table td.product-name a:hover {text-decoration: underline;}
/* checkout */
.woocommerce form.woocommerce-checkout .form-row input.input-text, .woocommerce form.woocommerce-checkout .form-row textarea, .woocommerce form.woocommerce-checkout .form-row select{border: 1px solid #018791;padding: 5px;}
.woocommerce form.woocommerce-checkout .form-row .select2-selection {border: 1px solid #018791;}
/* yith quick-view*/
#yith-quick-view-content div.images {box-sizing: border-box;}
#yith-quick-view-content div.summary {box-sizing: border-box;}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
.woocommerce ul.products li.product a.button {font-size: 12px;}
}
@media only screen and (min-width: 769px) {
.woocommerce ul.products li.product-category, .woocommerce-page ul.products li.product-category {width: 24.05% !important;margin: 0 1.2% 2.992em 0 !important;}
.woocommerce ul.products li.type-product, .woocommerce-page ul.products li.type-product {width: 24.05% !important;margin: 0 1.2% 2.992em 0 !important;}
}
@media only screen and (max-width: 768px) {
.qr-create-cart {display: none;}
/* Fix lỗi small woo bị lỗi khi nén css*/
.woocommerce #content div.product div.images, .woocommerce #content div.product div.summary, .woocommerce div.product div.images, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.images, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.images, .woocommerce-page div.product div.summary {width: 100% !important;}
.woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-1, .woocommerce-page .col2-set .col-2{width: 100% !important;}
}
@media only screen and (max-width: 500px) {
.woocommerce ul.products li.product a.button {font-size: 12px;}
}

/* --- 2.addon.css --- */
/* phone */
.phonering-alo-phone {position: fixed;visibility: hidden;background-color: transparent;width: 75px;height: 75px;cursor: pointer;z-index: 200000 !important;display: block;-webkit-backface-visibility: hidden;-webkit-transform: translateZ(0);transition: visibility .5s;right: 10px;top: 20%;}
.phonering-alo-phone.phonering-alo-show {visibility:visible}
.phonering-alo-phone.phonering-alo-static {opacity:.6}
.phonering-alo-phone.phonering-alo-hover,.phonering-alo-phone:hover {opacity:1}
.phonering-alo-ph-circle {width: 70px;height: 70px;top: 0;left: 0;position: absolute;background-color: transparent;border-radius: 100%;border: 2px solid rgba(30,30,30,0.4);opacity: .1;-webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;transition: all .5s;-webkit-transform-origin: 50% 50%;-ms-transform-origin: 50% 50%;transform-origin: 50% 50%;}
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-circle {-webkit-animation:phonering-alo-circle-anim 1.1s infinite ease-in-out!important;animation:phonering-alo-circle-anim 1.1s infinite ease-in-out!important}
.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle {-webkit-animation:phonering-alo-circle-anim 2.2s infinite ease-in-out!important;animation:phonering-alo-circle-anim 2.2s infinite ease-in-out!important}
.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone:hover .phonering-alo-ph-circle {border-color:#00aff2;opacity:.5}
.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle {border-color:#272d6b;opacity:.5}
.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-circle {border-color:#f00;opacity:.5}
.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-circle,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-circle {border-color:#ccc;opacity:.5}
.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-circle {border-color:#75eb50;opacity:.5}
.phonering-alo-ph-circle-fill {width: 50px;height: 50px;top: 10px;left: 10px;position: absolute;background-color: #000;border-radius: 100%;border: 2px solid transparent;-webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;transition: all .5s;-webkit-transform-origin: 50% 50%;-ms-transform-origin: 50% 50%;transform-origin: 50% 50%;}
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-circle-fill {-webkit-animation:phonering-alo-circle-fill-anim 1.7s infinite ease-in-out!important;animation:phonering-alo-circle-fill-anim 1.7s infinite ease-in-out!important}
.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-circle-fill {-webkit-animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out!important;animation:phonering-alo-circle-fill-anim 2.3s infinite ease-in-out!important;opacity:0!important}
.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone:hover .phonering-alo-ph-circle-fill {background-color:rgba(39,45,107,0.5);opacity:.75!important}
.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-circle-fill {background-color:rgba(39,45,107,0.5);opacity:.75!important}
.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-circle-fill {background-color:rgba(242, 0, 0, 0.5);}
.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-circle-fill,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-circle-fill {background-color:rgba(204,204,204,0.5);opacity:.75!important}
.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-circle-fill {background-color:rgba(117,235,80,0.5);opacity:.75!important}
.phonering-alo-ph-img-circle {width: 30px;height: 30px;top: 20px;left: 20px;position:absolute;background:rgba(30,30,30,0.1) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAABNmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarY6xSsNQFEDPi6LiUCsEcXB4kygotupgxqQtRRCs1SHJ1qShSmkSXl7VfoSjWwcXd7/AyVFwUPwC/0Bx6uAQIYODCJ7p3MPlcsGo2HWnYZRhEGvVbjrS9Xw5+8QMUwDQCbPUbrUOAOIkjvjB5ysC4HnTrjsN/sZ8mCoNTIDtbpSFICpA/0KnGsQYMIN+qkHcAaY6addAPAClXu4vQCnI/Q0oKdfzQXwAZs/1fDDmADPIfQUwdXSpAWpJOlJnvVMtq5ZlSbubBJE8HmU6GmRyPw4TlSaqo6MukP8HwGK+2G46cq1qWXvr/DOu58vc3o8QgFh6LFpBOFTn3yqMnd/n4sZ4GQ5vYXpStN0ruNmAheuirVahvAX34y/Axk/96FpPYgAAACBjSFJNAAB6JQAAgIMAAPn/AACA6AAAUggAARVYAAA6lwAAF2/XWh+QAAAB/ElEQVR42uya7W3CMBCG31QM4A1aNggTlG6QbpBMkHYC1AloJ4BOABuEDcgGtBOETnD9c1ERCH/lwxeaV8oPFGP86Hy+DxMREW5Bd7gRjSDSNGn4/RiAOvm8C0ZCRD5PSkQVXSr1nK/xE3mcWimA1ZV3JYBZCIO4giQANoYxMwYS6+xKY4lT5dJPreWZY+uspqSCKPYN27GJVBDXheVSQe494ksiEWTuMXcu1dld9SARxDX1OAJ4lgjy4zDnFsC076A4adEiRwAZg4hOUSpNoCsBPDGM+HqkNGynYBCuILuWj+dgWysGsNe8nwL4GsrW0m2fxZBq9rW0rNcX5MOQ9eZD8JFahcG5g/iKT671alGAYQggpYWvpEPYWrU/HDTOfeRIX0q2SL3QN4tGhZJukVobQyXYWw7WtLDKDIuM+ZSzscyCE9PCy5IttCvnZNaeiGLNHKuz8ZVh/MXTVu/1xQKmIqLEAuJ0fNo3iG5B51oSkeKnsBi/4bG9gYB/lCytU5G9DryFW+3Gm+JLwU7ehbJrwTjq4DJU8bHcVbEV9dXXqqP6uqO5e2/QZRYJpqu2IUAA4B3tXvx8hgKp05QZW6dJqrLTNkB6vrRURLRwPHqtYgkC3cLWQAcDQGGKH13FER/NATzi786+BPDNjm1dMkfjn2pGkBHkf4D8DgBJDuDHx9BN+gAAAABJRU5ErkJggg==) no-repeat center center;border-radius:100%;border:2px solid transparent;-webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;animation:phonering-alo-circle-img-anim 1s infinite ease-in-out;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%;background-size: 26px 26px;}
.phonering-alo-phone.phonering-alo-active .phonering-alo-ph-img-circle {-webkit-animation:phonering-alo-circle-img-anim 1s infinite ease-in-out!important;animation:phonering-alo-circle-img-anim 1s infinite ease-in-out!important}
.phonering-alo-phone.phonering-alo-static .phonering-alo-ph-img-circle {-webkit-animation:phonering-alo-circle-img-anim 0 infinite ease-in-out!important;animation:phonering-alo-circle-img-anim 0 infinite ease-in-out!important}
.phonering-alo-phone.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone:hover .phonering-alo-ph-img-circle {background-color:#00aff2;}
.phonering-alo-phone.phonering-alo-green.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone.phonering-alo-green:hover .phonering-alo-ph-img-circle {background-color:#272d6b;}
.phonering-alo-phone.phonering-alo-green .phonering-alo-ph-img-circle {background-color:#f00;}
.phonering-alo-phone.phonering-alo-gray.phonering-alo-hover .phonering-alo-ph-img-circle,.phonering-alo-phone.phonering-alo-gray:hover .phonering-alo-ph-img-circle {background-color:#ccc;}
.phonering-alo-phone.phonering-alo-gray .phonering-alo-ph-img-circle {background-color:#75eb50}
@-webkit-keyframes phonering-alo-circle-anim {
0% { -webkit-transform:rotate(0) scale(.5) skew(1deg); -webkit-opacity:.1}
30% { -webkit-transform:rotate(0) scale(.7) skew(1deg); -webkit-opacity:.5}
100% { -webkit-transform:rotate(0) scale(1) skew(1deg); -webkit-opacity:.1}
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
0% { -webkit-transform:rotate(0) scale(.7) skew(1deg); opacity:.2}
50% { -webkit-transform:rotate(0) scale(1) skew(1deg); opacity:.2}
100% { -webkit-transform:rotate(0) scale(.7) skew(1deg); opacity:.2}
}
@-webkit-keyframes phonering-alo-circle-img-anim {
0% { -webkit-transform:rotate(0) scale(1) skew(1deg)}
10% { -webkit-transform:rotate(-25deg) scale(1) skew(1deg)}
20% { -webkit-transform:rotate(25deg) scale(1) skew(1deg)}
30% { -webkit-transform:rotate(-25deg) scale(1) skew(1deg)}
40% { -webkit-transform:rotate(25deg) scale(1) skew(1deg)}
50% { -webkit-transform:rotate(0) scale(1) skew(1deg)}
100% { -webkit-transform:rotate(0) scale(1) skew(1deg)}
}
@-webkit-keyframes phonering-alo-circle-anim {
0% { -webkit-transform:rotate(0) scale(.5) skew(1deg);   transform:rotate(0) scale(.5) skew(1deg); opacity:.1}
30% { -webkit-transform:rotate(0) scale(.7) skew(1deg);   transform:rotate(0) scale(.7) skew(1deg); opacity:.5}
100% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg); opacity:.1}
}
@keyframes phonering-alo-circle-anim {
0% { -webkit-transform:rotate(0) scale(.5) skew(1deg);   transform:rotate(0) scale(.5) skew(1deg); opacity:.1}
30% { -webkit-transform:rotate(0) scale(.7) skew(1deg);   transform:rotate(0) scale(.7) skew(1deg); opacity:.5}
100% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg); opacity:.1}
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
0% { -webkit-transform:rotate(0) scale(.7) skew(1deg);   transform:rotate(0) scale(.7) skew(1deg); opacity:.2}
50% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg); opacity:.2}
100% { -webkit-transform:rotate(0) scale(.7) skew(1deg);   transform:rotate(0) scale(.7) skew(1deg); opacity:.2}
}
@keyframes phonering-alo-circle-fill-anim {
0% { -webkit-transform:rotate(0) scale(.7) skew(1deg);   transform:rotate(0) scale(.7) skew(1deg); opacity:.2}
50% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg); opacity:.2}
100% { -webkit-transform:rotate(0) scale(.7) skew(1deg);   transform:rotate(0) scale(.7) skew(1deg); opacity:.2}
}
@-webkit-keyframes phonering-alo-circle-img-anim {
0% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg)}
10% { -webkit-transform:rotate(-25deg) scale(1) skew(1deg);   transform:rotate(-25deg) scale(1) skew(1deg)}
20% { -webkit-transform:rotate(25deg) scale(1) skew(1deg);   transform:rotate(25deg) scale(1) skew(1deg)}
30% { -webkit-transform:rotate(-25deg) scale(1) skew(1deg);   transform:rotate(-25deg) scale(1) skew(1deg)}
40% { -webkit-transform:rotate(25deg) scale(1) skew(1deg);   transform:rotate(25deg) scale(1) skew(1deg)}
50% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg)}
100% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg)}
}
@keyframes phonering-alo-circle-img-anim {
0% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg)}
10% { -webkit-transform:rotate(-25deg) scale(1) skew(1deg);   transform:rotate(-25deg) scale(1) skew(1deg)}
20% { -webkit-transform:rotate(25deg) scale(1) skew(1deg);   transform:rotate(25deg) scale(1) skew(1deg)}
30% { -webkit-transform:rotate(-25deg) scale(1) skew(1deg);   transform:rotate(-25deg) scale(1) skew(1deg)}
40% { -webkit-transform:rotate(25deg) scale(1) skew(1deg);   transform:rotate(25deg) scale(1) skew(1deg)}
50% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg)}
100% { -webkit-transform:rotate(0) scale(1) skew(1deg);   transform:rotate(0) scale(1) skew(1deg)}
}
/* zalo */
#phonering-zalo-phoneIcon {bottom: 100px;top: 35%;}
#phonering-zalo-phoneIcon .phonering-alo-ph-img-circle {background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAmwSURBVHjavFlpkFTVGT2v94Xunp6dfXGQ1SEmBgUUEYwQU4GgEMAqSWLxB7OpZQRNAiZQEiMGCUoRKSoxpKKJBoMskWCYsGhMJoBgRLaETZaB2Xud7n7dOV/3657XPTPQwzBzizPMvO2e991vOd99iuvlz9CFUUIMISqJW4nBRBFRQChEE1FLnCMOEh8Rp4iL1zuh6Trvm0TMICYQt2nk8h2HiH8Sm4idRLwzEyudtLAQfZq4g3CjayNIVBMria353mTI87qBxFqiirjvWmSV/EzuIO4mthC/IYbdKMLTie3Ewo7YJWRd+SPGxQ2rCfiiRCSBUCyBaDx1LoGrvsU3iL8Qc7vqw98hXiQsuRaUH1ESC0VTTA38z2lW4HaYYDSnmKkkHAqqCETiUBUeMymw8ZyZkCsSiay5JGA3EhXE8ush/BSxIncVDJwpkiQSh9EI3F5kxl0VDowoNKGiwISBbiMcZkOSkFj4nE/FicYojtfHsOe/Yfz7SgS+kAqbwwgricfjbfgsI3oRizsTdGLZlwhj5kIlFc5+XwxGsp53swMPjemFseUWFNnyC4UmusnByxH88eMAXjsSQJD+4nCZxPC51pbxE+LZfAh/lXhL7wYK2UbFqs1RTB5ix7JJBRjXx9qpXJY7/nMlimf+3ogtx4Kw9TLCYlWQaJvgHiF+rT9gtN7/hP7vPsQbWkFIkaXxIvTTSEDFU3d58atphRjiMXWJrIxSpxFzRjrhomvsPhFChMfEt5Ft6du0YKztKEss05w+4wbhlgTioTg2zCjGzyZ64DB1lWp2PDz5RRden10CO40S4DxK9uP7anna2B7hydoSZMhGmaJifhXrpxfjm6Oc6K4x/SY7XptZAgONI6uZQ/p+fboz6DLVkqy0JVHeqOJH93gxf6QD3T1mDLXjxWlehJlVJG/nkP6BVmgyhO8lbteXk2beOHGIDT8c70ZPje/e6sJM+rW/Wc1lfAsxU094FmFLn5VlsYtDMxtYFPToWMo48XDScIuaW5Ele5nkl3JivL6MhcNxTK2wY2xvC3p6VBabMZvxEiGHnFQkumOwVJbhxOj0UfEfAxP61+i3NoOiS/pxnGiIIZY+wOvivNjMa0Zxko6yh1TuhVvrcJnBu3FWCTzmqy+ZnH1ghBMbP/JDJWdj6+Vi2JFCeIz+hjALRKnXgmkD7dl1encjXn23ntLcnCp5ZgkDZpv6KNY+WIqFY9rPIkE+b/PxIOqYx5v50h6z8ZpWvqefBYPKzDhOA7msBn1qniiEx+pTmcrUUjnAgjJHdop+gFFsDRYgwQeIyKklkQ2HfHC7jLizb8euI07n4bMU8jQb8gsIG806oY8Nxy418w+DvphUCuH+WVdTeY0pbKuJpg6yJ5EeT+xqoHVjWP1wOW4pNiePneWyX6TWKKc+KOZEF2nVIrsxubRIKEjzvcQCcYnXynIPZNV0t+MmNxcYUyupQE+43KSV41YH4skCy9XFzLrDfqzaUoe5zNEPawXld0cDeGZbPc41xlBWaEYlrV5dE8F788rgJflgVIWFDN85GcKibXU4yuWWN7i7vxVrWUVH5hipQCzL8zmiyCNXFUIXSELachU3q6ZoeeztWlQMsuKFe73JmvnBpQgWbKrl8xUs+ZIXF5lH1+/3weY2ZYpAKd3ik7oo5vNehau4kprkMKXmb/c14VEaaMfcElh1EdaB7rWbsvoAzcLZKbB1BFiqH2fEt3Cp13yrHP00P3/7aBAtrIorqAkWUxvI8NPH/0wlZiaJGFkX0Pe307pN1Mbr55VjwWhHcsVP+eN4n0F5sDaKO8paYyHSfmtqkBmbcy1cG26f8eKqRrzPpV89rxTTBmTqDFQ1kbz5Jk+rXfpSjUWYHmPUjGJ5mb+GfitROKLElKkGRU4D4rw/HMueqz6U6q1ySnRY7rxADMgcYgAcqou1IbuJEvBl6tcyEhUyb1CAB5hkHXxgOTsN0IIvfNCE/swaJ5nqVh3wwcS0p5JjghMHmH0mDLBiw74Elr7XgNV0ib3nWrB5vx/Dqa3HFGc7wRGuRDIqs324Wa46r7ewmRMfPh/BSS5xRUGrM//pBLtyWqKGFWjW65eZTRKpKGa7s+6R3nh6SiFW7KzHuNPnk33dsFILjlxoSbqXm8FTfSGC+yj+F03xYiUJjz4VTvreEK8Za75SBK+1NdClgd33WQsM2SlNxmUhfIB4MO0R4vgNJLvjbIiEe7XW+HEezKAMNLOiJXQ+r5D0+D5sk0YZMY4Rf4qW+QItNpi9XdW5CD7Hnm/llwtRyx6wLwk8R30yhc85zFapyG7Anf2sqPBkW3fbmRAu0qftPJ7TOR2VFmmapuozJHwMqsl80LY5ZbAZelZLyKLN2VyLtz4NwuVqk64eEjrHJOfr3cLJN991ugVbxA16eFSdDWM7s45dMlB2wPmkFRTCZ4h9WY0e3cLEpV+ypwlBNdFjZEUo/XRvE8JKu/3dXuK4QVuFrfpNOeleHexkj9LPHtvZ0Lndui6MH1Ng7flfCE66Qk4HLdTfJVrSHvoO8XG2MyXgpNOvZ9qRt+5uO69mZVzJqmdjilTaTnZG6+YzHUeAWJX7SkaetbsMWF7VgJf+1dxtZNdU+7BoRwNMtKxkqXY2VV4lruR2zb8n/pZFmjda2K6ofMiuM+EbbuUaVrPv/7Ue39tRjzgrno1zxdtOclgWoD2NwdKCJzVfKdOTltfq5+765kmmlNM/36R++Dld4CAVncOb2q6Ktw0WWdbHtb3kdkWRbOk/p3+j9D6pbPDpxwFO9CGr0fRhDvRhgF4rXctjmlri2MoSv/aQH9VMXzE+0+01tRqmHdcmdl1r9/KXop+Jb2f4JlLyMCnS2f6/Qp97hVohwLK89MNmTOptRWVvM4ZSBw/kStjFXPzXwvJ9loL+BLXJEWacKpb8C9TLYk4H/dVuUDoiCm1/b0m+u5ei89YT8+V5fkrAdVO98LCgLN/ViE8obqy0qpU+F6KoiaY7XMJJMk6tIRXB5ZMdbTUlA01WBTZqBkPHFk2PHVLwtI86eX/jkLq4hg9eaKAlXEzkNU2prtnlMGQ2pNPyT35XGTGiztKBk9zDNiK5Pau/7hrjD8QCsVNnN7RFFD/KiU5ylmdrgnGXKDm7MeUiCbQlIMSMHThzHkRDxPPa7rvalW8cv+BcMxwmZXdy26V7Ksh+Yra2ia3eiK9IVeQ5VUt7n95Aoqe1XfaJoiq74zudDPnS+XVtr0u2uDzX8X3uH9rnrje1jifvoXTh0600dUOJz2sWGq4VHHfOyknyv0Sc1BRXtfa7/3om/b8AAwD3wYvijzx6XwAAAABJRU5ErkJggg==');background-color: #0e93e3;}
/* scroll top */
#bttop {display: none;z-index: 299;position: fixed;width: 40px;height: 40px;font-size: 20px;line-height: 36px;text-align: center;color: #FFF;top: auto;left: auto;right: 30px;bottom: 30px;cursor: pointer;border-radius: 2px;background-color: #ff551f;-webkit-transform: translateZ(0);-ms-transform: translateZ(0);-o-transform: translateZ(0);transform: translateZ(0);opacity: 0.8;}
#bttop:hover {opacity: 1;}
/* popup */
.kw-popup {position: fixed;left: 50%;top: 50%;box-sizing: border-box;z-index: 9999999;display: none;transform: translateX(-50%) translateY(-50%);-webkit-transform: translateX(-50%) translateY(-50%);-ms-transform: translateX(-50%) translateY(-50%);-o-transform: translateX(-50%) translateY(-50%);}
.kw-popup .close-popup {padding: 4px 12px;color: #fff;position: absolute;right: 1px;top: 1px;font-size: 25px;opacity: 0.8;cursor: pointer;}
.kw-popup .close-popup:hover {opacity: 1;}
.kw-popup-overlay {position: fixed;top: 0;right: 0;bottom: 0;left: 0;background: rgba( 0, 0, 0, 0.8);z-index: 999999;display: none;}
.kw-popup-inner {float: left;width: 100%;height: 100%;box-sizing: border-box;}
.close-popup-note {position: absolute;left: 0;width: 100%;text-align: center;z-index: 99999;color: #fff;font-size: 11px;top: 0px;}
.close-popup-note span {font-size: 13px;}
/* facebook */
#phonering-facebook-phoneIcon{
    bottom: 150px;top: 48%;
}
#phonering-facebook-phoneIcon .phonering-alo-ph-img-circle {background-image: url('images/logo-messenger.png');  background-color: #fff !important;background-size: cover !important;}
@media only screen and (max-width: 800px) {
.kw-popup .close-popup {font-size: 28px;}
#phonering-zalo-phoneIcon {bottom: 5px;top: auto;left: 5px;}
#phonering-alo-phoneIcon {bottom: 5px;top: auto;left: 75px;}
#phonering-facebook-phoneIcon {bottom: 5px;top: auto;left: 145px;}
}
@media only screen and (max-width: 500px) {
.kw-popup .close-popup {font-size: 20px;}
}
/* --- 2.archive.css --- */
h4.archive-heading {
    padding: 0;
    margin: 0;
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
/* Phần tìm kiếm */
.blog-search-section {
    margin-bottom: 40px;
    padding: 0 15px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-field {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-field:focus {
    border-color: #00AEEF;
    outline: none;
    box-shadow: 0 2px 15px rgba(0,174,239,0.1);
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #00AEEF;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #0088cc;
}

/* Danh mục bài viết */
.blog-categories {
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-list {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    list-style: none;
    margin: 0;
    flex-wrap: nowrap;
}

.category-list li {
    flex-shrink: 0;
}

.category-list a {
    display: block;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 30px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-list a:hover,
.category-list li.active a {
    background: #00AEEF;
    color: white;
}

/* Responsive */

.highlight-left > a{
    display: flex;
    height: 100%;
    width: 100%;
}
.highlight-right {
    display: flex;
    flex-wrap: wrap;
}
.zoom-img.slow:hover img, .zoom-img:hover img {
    transform: scale(1.05);
}
.zoom-img img {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transition: all .5s cubic-bezier(.4,0,.2,1) !important;
}
.item_post{
    margin-bottom: 30px;
}
.item_post.big{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
}
.item_post.small .item_post_inner{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}
.item_post .item_post_img{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
}
.item_post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item_post .item_post_content{
    position: relative;
    flex: 1;
    padding: 1.5em 0 2em;
    margin: 0 1.2em;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.item_post .item_post_content::after {
    content: ""; /* 🔥 PHẢI CÓ */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 3px;
    background-color: var(--cl-main);
    transition: width 0.3s ease;
}

.item_post .item_post_content:hover::after {
    width: 20%;
}
.load-more-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px 0;
}

.load-more-btn.btn {
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    color: var(--cl-white);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    align-items: center;
}

.load-more-btn:hover {
    opacity: 0.9;
}

.loading-dots {
    margin-top: 15px;
}

.loading-dots .dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 0.6s infinite alternate;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    to {
        transform: translateY(-8px);
    }
}


.item_post h4 {
    color: var(--cl-text);
    text-transform: capitalize;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;     /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item_post.big h4{
    font-size: 24px;
    line-height: 1.5;
    margin:0 0 15px;
}
.item_post.small h4{
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px;
}
.item_post .post_excerpt {
    color: var(--cl-text);
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item_post.big .post_excerpt {
    font-size: 18px;
}
.item_post.small .post_excerpt {
    font-size: 14px;
}
/* single */
.single-post .full-content {
    background-color: #FFFFFF;
}
.single-post .full-content .inner-content {
    padding: 50px 0;
}
.single-post .post-title {
    margin-bottom: 20px;
    line-height: 1.25;
    font-size: 2em;
    --tw-text-opacity: 1;
    color: var(--cl-text);
    font-weight: 700;
}
/*css muc lục*/
.entry-content #ez-toc-container {
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    z-index: 10;
    padding: 10px 20px 20px 20px;
}
.entry-content div#ez-toc-container p.ez-toc-title {
    display: flex;
    width: 100%;
    font-size: 1.5em;
    color: var(--cl-main);
    font-weight: 700;
    position: relative;
    padding: 10px 0;
}
.entry-content div#ez-toc-container p.ez-toc-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
    background-color: #333333;
    width: 100%;
}
.entry-content div#ez-toc-container .ez-toc-title-toggle{
    position: absolute;
    top: 20px;
    right: 20px;
}
.entry-content div#ez-toc-container .ez-toc-pull-right{
    margin: 0;
}
.entry-content #ez-toc-container .ez-toc-toggle label{
    left: 0;
    border-radius: 0;
    border: none;
}
.entry-content #ez-toc-container li,
.entry-content #ez-toc-container ul li,
.entry-content div.ez-toc-widget-container,
.entry-content div.ez-toc-widget-container li {
    margin: 5px 0;
}
.entry-content #ez-toc-container ul > li.ez-toc-heading-level-2 > a.ez-toc-link{
    font-weight: 600;
    color: var(--cl-text);
    font-size: 1.3em;
}
#ez-toc-container a.ez-toc-link{
    font-size: 1.2em;
}
.entry-content #ez-toc-container a.ez-toc-link:hover {
    color: var(--cl-main);
}
body .ez-toc-open-icon {
    top: 50%;
    padding: 10px;
    font-size: 20px;
}
body .ez-toc-open-icon span.arrow {
    display: none;

}
/* Phần entry content */
.entry-content {
    line-height: 1.8;
}

.entry-content p {
    font-size: 16px;
    margin-bottom: 1em;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--cl-text);
    position: relative;
    padding-bottom: 10px;
}

.entry-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--cl-main);
}

/* Sidebar related posts */
.related-posts-sidebar {
    position: relative;
}

.sidebar-inner {
    position: sticky;
    top: 20px;
    background: #f9f9f9;
    padding: 25px 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sidebar-inner:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

h4.sidebar-heading {
    margin-bottom: 25px;
    line-height: 1.25;
    font-size: 18px;
    --tw-text-opacity: 1;
    color: var(--cl-text);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

h4.sidebar-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--cl-main);
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts-list li {
    padding: 15px 0;
    margin: 0;
    position: relative;
    border-bottom: 1px dashed #e0e0e0;
    transition: all 0.3s ease;
}

.related-posts-list li:last-child {
    border-bottom: none;
}

.related-posts-list li:hover {
    padding-left: 5px;
}

.related-posts-list li a {
    font-size: 15px;
    color: var(--cl-text);
    line-height: 1.5;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-posts-list li a:hover {
    color: var(--cl-main);
}

.related-posts-list li:hover::before {
    opacity: 1;
}
.related-posts-list li ul{
    padding-left: 15px;
}
/* page */
.page-heading {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 5px;
    color: rgb(66, 70, 78);
    font-size: 38px;
    font-weight: 600;
    line-height: 52px;
}

/* Phần breadcrumbs */
.breadcrumbs {
    font-size: 16px;
    margin-top: 5px;
    color: #666;
}

.breadcrumbs a {
    line-height: 1.5;
    color: var(--cl-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--cl-main);
    text-decoration: underline;
}

.breadcrumb-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-wrapper .separator {
    margin: 0 8px;
    color: #999;
}
/* Responsive */
@media (max-width: 991px) {
    .related-posts-sidebar {
        padding-left: 0;
        margin-top: 50px;
        border-top: 1px solid #eee;
        border-left: none;
        width: 100%;
    }

    .sidebar-inner {
        padding: 20px;
    }

    .related-posts-list li {
        padding: 12px 0;
    }
}

@media only screen and (max-width: 768px) {
    .post_excerpt {font-size: 11px;}
    .item_post h4 {font-size: 13px;}
    .post_date {font-size: 10px;margin-top: 0px;}
    .post_excerpt p {margin: 0;}
    .search-field {
        padding: 12px 45px 12px 15px;
        font-size: 15px;
    }

    .category-list {
        gap: 8px;
    }

    .category-list a {
        padding: 8px 15px;
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    .blog-search-section {
        margin-bottom: 30px;
    }

    .blog-categories {
        margin-bottom: 30px;
    }
}
/* --- 2.bao_gia_hosting.css --- */
.introduce {
  padding: 0 30px;
  line-height: 2;
  margin: 20px;
}
.list-introduce h4 {
  font-size: 18px;
  padding: 10px 0;
  color: #f55920;
}
.list-introduce-item {
  margin-bottom: 20px;
}

.list-introduce-item .item-content {
  display: flex;
  gap: 20px;
}

.list-introduce-item.reverse .item-content {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}
.content-image img {
  max-width: 300px;
  height: auto;
  display: block;
}
.pricing-hosting-container {
  padding: 100px 0;
}

/* Grid layout */
.pricing-hosting-grid {
  display: flex;
  gap: 10px !important;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.goi-hosting-item {
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.goi-hosting-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.goi-hosting-item * {
  box-sizing: border-box;
}
.goi-header .goi-price {
  font-size: 38px;
}
.thong-tin-hosting,
.thong-tin-cauhinh {
  padding: 0 10px;
  flex-grow: 1;
  margin: 15px 0;
}

.thong-tin-hosting li {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #555;
  box-sizing: border-box;
  font-size: 12px !important;
}
.thong-tin-hosting li i {
  color: #3498db;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: #3498db 2px solid;
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.goi-hosting-item:hover .thong-tin-hosting li i {
  background-color: #3498db;
  color: white;
}
.thong-tin-hosting .label {
  width: 120px;
  font-weight: bold;
  flex-shrink: 0;
  box-sizing: border-box;
}

.thong-tin-hosting .value {
  box-sizing: border-box;
  text-align: right;
}
.goi-cauhinh_hosting-header {
  padding: 15px 0;
}
h3.goi-title {
  font-size: 17px;
}
.text-down{
  margin-bottom: 20px;
  line-height: 1.5;
}

.whyuse-header {
  padding: 15px 0;
  text-align: center;
}
.whyuse-header .whyuse-title {
  font-size: 24px;
  color: #ff6600;
  text-shadow: 1px 1px 0 #000000;
  text-transform: uppercase;
}
.whyuse-content {
  padding: 10px 0;
  line-height: 1.5;
  font-size: 16px;
  display: flex;
  gap: 10px;
}
.whyuse-content-left {
  width: 70%;
}
.whyuse-image {
  width: 30%;
}
.whyuse-image img {
  height: auto;
  max-width: 100%;
}
.whyuse-note span {
  line-height: 1.5;
}
.whyuse-note p {
  margin: 10px 0;
}
.thong-tin-cauhinh li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #555;
  box-sizing: border-box;
  font-size: 12px !important;
}
@media screen and (max-width: 1200px) {
  .goi-hosting-item {
    width: calc(33.333% - 10px);
  }
}
@media screen and (max-width: 900px) {
  .pricing-hosting-container {
    padding: 50px 0;
  }
  .goi-hosting-item {
    width: calc(50% - 10px) !important;
  }
}
@media screen and (max-width: 768px) {
  .introduce{
    line-height: 1.5;
    margin: 0;
  }
  .list-introduce-item{
    margin-bottom: 5px;
  }
  .pricing-hosting-container {
    padding: 20px 0;
  }
  .pricing-hosting-grid {
    padding: 0;
  }
  .goi-hosting-item {
    width: calc(100% - 10px) !important;
  }
  .goi-hosting-item.highlighted {
    transform: none;
    margin-top: 60px;
  }
  .goi_infor {
    max-height: 280px;
    overflow-y: auto;
  }
  .whyuse-content {
    display: block;
  }
  .whyuse-content-left,
  .whyuse-image {
    width: 100%;
  }
}

/* --- 2.baogia.css --- */
.page-header{
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h2.price-title{
    color: #f55920;
    position: relative;
    margin-bottom: 15px;
    z-index: 9;
}
h2.price-title b,
.heading-title b,
.ware-title b {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: #ffb607;
    margin: 14px 10px;
}
h2.price-title .text-cam {
    color: #f55920;
}
.page-subtitle{
    font-size: 18px;
    font-weight: 400;
    margin: 10px 0px 0px;
    color: #848484;
    text-align: center;
    position: relative;
    z-index: 9;
}
.pricing-why-title{
    font-size: 1.5em;
    font-weight: 700;
    margin: 1em 0;
}
.list-why-choose li.item-why-choose {
    background: rgba(0, 0, 0, 0) url(../css/images/keyweb_ok.png) no-repeat scroll 0 4px;
    padding-left: 25px;
    font-size: 18px;
    margin-bottom: 0.5em;
}
.bao-gia-btn{
    display: flex;
    justify-content: center;
}
.bao-gia-btn .btn{
    display: inline-block;
    color: #fff;
    padding: 10px 30px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    margin: 20px 0;
    background: #ff0000;
}
.bao-gia-btn .btn:before {
    background: linear-gradient(90deg, #ff0000 0%, var(--sub-cl) 100%);
}

/* Container chính */
.pricing-container {
    width: 100%;
    padding: 100px 0;
}

/* Grid layout */
.pricing-grid {
     display: flex;
  gap: 10px !important;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 20px;
}

/* Card gói dịch vụ */
.goi-item {
    width: calc(20% - 10px);
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.goi-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.goi-item.highlighted {
    z-index: 2;
}

/* Ribbon cho gói nổi bật */
.ribbon {
    height: 80px;
    position: absolute;
    left: 0;
    color: #fff;
    width: 100%;
    top: -60px;
    overflow: hidden;
    z-index: 2;
}

.ribbon span {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 90px;
    height: 90px;
    padding: 5px 0;
    line-height: 1;
    background: #f39c12;
    color: #fff;
    font-weight: 600;
    text-align: center;
    transform-origin: 0 0;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    transform: rotate(-45deg);
    top: 0px;
    left: -65px;
}
/* Header card */
.goi-header {
    text-align: center;
    min-height: 140px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.goi-price {
    font-size: 38px;
    font-weight: 600;
    display: block;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

.goi-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 5px 0 0;
    letter-spacing: 0.5px;
}

/* Ghi chú gói */
.goi-note {
    width: 100%;
    position: relative;
    background-color: var(--goi-color);
    display: flex;
    overflow: hidden;
    justify-content: center;
    padding: 10px 0;
}

/* Overlay đen mờ khi có highlight */
.goi-note.highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* lớp phủ đen mờ */
    pointer-events: none;
    z-index: 1;
}

.goi-note span{
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Phần nội dung chính */
.features-container {
    padding: 0 15px;
    flex-grow: 1;
    margin: 15px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    line-height: 1.5;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #555;
}

.features-list li i{
    color: #3498db;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: #3498db 2px solid;
    margin-right: 10px;
    font-size: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.goi-item:hover .features-list li i {
    background-color: #3498db;
    color: white;
}
.goi-register-btn{
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}
.goi-register-btn .btn-dang-ky{
    color: #ffffff;
    font-size: 14px;
    padding: 10px;
    font-weight: 500;
    border-radius: 30px;
}
/* Custom scrollbar (chỉ áp dụng khi cuộn) */
.features-container::-webkit-scrollbar {
    width: 6px;
}

.features-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.features-container::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}
/* Base Styles */
.box-faq-pricing {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9fbfd 0%, #f0f5f9 100%);
}

.faq-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    color: #145c92;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #2ecc71);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Timeline */
.faq-timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00AEEF, #2ecc71);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 3px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 item 1 hàng */
    gap: 30px; /* khoảng cách giữa các item */
}

/* FAQ Item */
.faq-item {
    width: 100%;
    background: white;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    overflow: hidden;
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,174,239,0.1) 0%, rgba(46,204,113,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:nth-child(odd) {
    margin-right: auto;
    flex-direction: row-reverse;
}

.faq-item:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

/* Diamond Indicator */
.faq-diamond-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-diamond {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #00AEEF, #2ecc71);
    transform: rotate(45deg);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-diamond {
    transform: rotate(135deg) scale(1.2);
}

/* Content */
.faq-content {
    max-width: 80%;
    position: relative;
    z-index: 2;
}

.faq-content h3 {
    color: #145c92;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-content h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00AEEF, #2ecc71);
    transition: width 0.3s ease;
}

.faq-item:hover .faq-content h3::after {
    width: 100%;
}

.faq-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-content p {
    color: #333;
}

/* Icon */
.faq-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.faq-icon img {
    max-width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item:hover .faq-icon img {
    transform: scale(1.1);
}

/* Base Styles */
.extra-service-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.extra-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
    position: relative;
    font-weight: 700;
}

.extra-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Table Styles */
.extra-service-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.extra-service-table:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.extra-service-table table {
    width: 100%;
    border-collapse: collapse;
}

.extra-service-table th {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.extra-service-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.extra-service-table tr:last-child td {
    border-bottom: none;
}

.extra-service-table tbody tr {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.extra-service-table tbody tr:hover {
    background-color: #f8fafc;
}

.extra-service-table tbody tr:hover td {
    transform: translateX(5px);
}

/* Link Styles */
.extra-service-table td a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.extra-service-table td a:hover {
    color: #1d4ed8;
}

.extra-service-table td a i {
    font-size: 0.8em;
    opacity: 0.7;
}

/* Price Tag Styles */
.price-tag {
    background: #fef2f2;
    color: #ef4444;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}

/* Border Highlight Effect */
.extra-service-table tbody tr {
    position: relative;
}

.extra-service-table tbody tr:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extra-service-table tbody tr:hover:after {
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 20px;
    }

    .goi-item {
        flex: 0 0 300px;
    }
}
/* Responsive */
@media (max-width: 992px) {
    .faq-grid{
        grid-template-columns: repeat(1, 1fr); 
        gap: 20px;
    }
    .faq-item {
        width: calc(50% - 20px);
    }
    .extra-service-section {
        padding: 60px 0;
    }

    .extra-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .page-heading{
        font-size: 22px;
        line-height: 30px;
    }
    .page-heading b{
        display: none !important;
    }
    .faq-grid {
        flex-direction: column;
        align-items: center;
    }

    .faq-diamond-wrapper {
        display: none;
    }

    .faq-item {
        width: 100%;
        margin: 0 auto;
        text-align: left;
        margin-bottom: 10px;
    }

    .faq-content {
        max-width: 100%;
    }

    .faq-timeline-line,
    .arrow {
        display: none;
    }
    .pricing-container {
        padding: 20px 0;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 15px;
    }

    .goi-item {
        width: 100%;
        max-width: 380px;
    }

    .goi-item.highlighted {
        transform: none;
        margin-top: 60px;
    }

    .goi-item.highlighted:hover {
        transform: translateY(-10px);
    }

    .features-container {
        max-height: 280px;
        overflow-y: auto;
    }
    .extra-title {
        font-size: 1.75rem;
    }

    .extra-service-table th,
    .extra-service-table td {
        padding: 14px 20px;
    }

}
@media (max-width: 576px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-content h3 {
        font-size: 18px;
    }

    .faq-content p {
        font-size: 15px;
    }
    .extra-service-section {
        padding: 30px 15px;
        background: #fff; /* Nền trắng cho mobile */
    }

    .extra-service-table th {
        display: none;
    }

    .extra-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
        color: #1e293b;
    }

    .extra-service-table {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .extra-service-table td {
        display: flex;
        flex-direction: column;
        padding: 15px;
        text-align: left !important; /* Đảm bảo căn trái */
    }

    .extra-service-table td:before {
        content: attr(data-label);
        position: relative;
        left: 0;
        width: 100%;
        font-weight: 700;
        color: #3b82f6; /* Màu xanh cho label */
        margin-bottom: 5px;
        font-size: 0.9rem;
        text-transform: uppercase;
    }

    .extra-service-table td:last-child {
        background: #f8fafc; /* Background khác biệt cho giá */
        border-radius: 0 0 8px 8px;
        margin-top: -10px; /* Ghép sát với nội dung */
        padding-top: 12px;
    }

    .price-tag {
        background: transparent;
        color: #ef4444;
        padding: 0;
        font-size: 1rem;
        font-weight: 700;
    }

    /* Hiệu ứng đơn giản cho mobile */
    .extra-service-table tbody tr {
        margin-bottom: 10px;
        display: block;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }

    .extra-service-table tbody tr:hover td {
        transform: none; /* Bỏ hiệu ứng di chuyển trên mobile */
    }

    /* Đảm bảo khoảng cách giữa các mục */
    .extra-service-table tbody tr:not(:last-child) {
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .goi-price {
        font-size: 40px;
    }

    .goi-title {
        font-size: 20px;
    }

    .goi-note span {
        font-size: 15px;
    }

    .features-list li {
        font-size: 15px;
        padding: 12px 0;
    }

    .btn-dang-ky {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* --- 2.footer.css --- */
.full-footer {
    min-height: 100px;
    background: #31353e none repeat scroll 0 0;
    border-bottom: 1px solid #262a33;
    color: #cfcdce;
    padding-top: 15px;
    padding-bottom: 15px;
}
.full-footer-top {
    background: url('images/connect-bg.jpg');
    background-size: 100%;
    margin-top: 15px;
}
.footer-menu-grid {
    padding: 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer-menu-column{
    width: 25%;
}
.footer-menu-toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-toggle-icon{
    display: none;
}
.footer-menu{
    width: 100%;
    padding: 0;
}
.footer-menu h4{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer-menu ul{
    list-style: initial;
}
.footer-menu li{
    margin: 0.2em 0;
    padding: 5px 0;
    list-style: none;
}
.footer-menu ul li a{
    font-size: 13px;
    color: #ffffff;
}
.footer-menu ul li:hover a{
    color: var(--cl-main); /* hoặc màu brand của bạn */
    text-decoration: underline;
}
.footer-middle{
    border-top: 1px dashed #fff;
    float: left;
    padding-top: 20px;
    width: 100%;
}
.footer-socials{
    gap: 0.75em;
    margin-bottom: 10px;
}
.social-icon{
 margin-bottom: 15px;
}
.footer-socials a{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #ffffff; /* hoặc màu chính của text */
    gap: 0.75em;
}
.footer-socials i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #cfcdce;
    color: #31353e;
    font-size: 1.6em;
    display: grid;
    place-items: center;
}
.footer-company{
    border-left: 2px solid #ccc;

    float: right;
}
.footer-company h4{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0.75em;
}
.footer-company p{
    margin-bottom: 0.3em;
}
/* Hiệu ứng hover */
.footer-socials a:hover {
    color: var(--cl-main); /* hoặc màu brand của bạn */
}

.footer-socials a:hover i {
    color: #fff;
    transform: scale(1.05);
}
.footer-socials a:hover i.fa-facebook-f {
    background: #3b5998;
}

.footer-socials a:hover i.fa-youtube {
    background: #ff0000;
}
.link_bct {clear: both;}
/* footer-bottom */
.footer-bottom {
    background: #282a2b none repeat scroll 0 0;
    border-top: 1px solid #4b4c4d;
    float: left;
    text-align: center;
}
.footer-bottom  .copyright {
    color: #cfcdce;
    font-family: arial;
    font-weight: bold;
    margin: 10px 0;
}
#show-sft, #hide-sft {float: right;font-size: 14px;margin: 0;text-align: right;cursor: pointer;}
#show-sft, .active-sft #hide-sft {display: inline-block;}
#hide-sft, .active-sft #show-sft {display: none;}
@media only screen and (max-width: 768px) {
.footer-box {width: 50%;}
.footer-box-3 {clear: both;}
.footer-bottom {width: 100%;text-align: center;}
.footer-box h2 {font-size: 14px;margin-top: 10px;margin-bottom: 10px;}
.footer-menu {
    display: none;
  }
  .footer-menu-grid {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
  .footer-menu-toggle{
    padding: 10px 0;
  }
  .footer-toggle-icon {
    display: block;
  }
  .footer-menu-column {
    width: 100% !important;
    flex: none;
    border-top: 1px solid #fff;
  }
  .footer-menu-column.active .footer-menu {
    display: block;
  }
  .footer-middle-left{
    padding: 0;
  }
  .footer-socials{
    margin: auto;
    text-align: center;
    flex-direction: row;
    margin-bottom: 5px;
  }
  .footer-company{
    border: none;
    text-align: center;
    padding: 0;
  }
  .footer-certifications{
    flex-direction: row;
    align-items: center;
    margin: 10px auto;
  }
}
@media only screen and (max-width: 600px) {
.footer-box {width: 100%;}
}
/* --- 2.huongdan.css --- */
.tags{
    font-weight: bold;
    letter-spacing: 1.2px;
}
.tags a{
    font-weight: normal;
}
.tags a:hover{
    color: #ff6600;
}
.box-related{
    margin-top: 10px;
}
.box-related ul li{
    padding: 2px 10px;
}
.box-related ul li a:hover{
    color: #ff6600;
    letter-spacing: 1.2px;
}
/* --- 2.khogiaodien.css --- */
.select-theme-box-header {
  margin: 30px;
  text-align: center;
}
.select-theme-box-header > div {
  padding: 10px 0;
}
.box-title{
  margin-top: 100px;
}
.box-title h3 {
  font-size: 24px;
  color: #888;
}
.box-content span{
  font-size: 16px;
}
.box-search {
  background-color: #fff;
  width: 500px;
  margin: 20px auto;
  border-radius: 5px;
  padding: 0 !important;
}
.box-search form {
  width: 100%;
  display: flex;
}
.box-search input[type="search"] {
  width: 80%;
  padding: 8px 10px;
  border: none;
  outline: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0;
}
.box-search button {
  width: 20%;
  font-weight: 600;
  background-color: #ff6600;
  color: #fff;
  border: none;
  outline: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.kgd-select-theme {
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.kgd-select-theme li {
  display: inline-block;
  margin: 5px;
}

.kgd-select-theme a {
  display: inline-block;
  padding: 3px 5px;
  border: 1px solid #ff5f00;
  border-radius: 50px;
  color: #ff5f00;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background-color: #fff;
}

.kgd-select-theme a:hover {
  background-color: #ff5f00;
  color: #fff;
}

.kgd-select-theme a.actived {
  background-color: #ff5f00;
  color: #fff;
  font-weight: 600;
}

.box-list-theme {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding: 20px 0;
}

.content-theme-item {
  width: calc(25% - 20px);
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Phần ảnh */
.screen-shoot {
  max-width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.screen-shoot img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 3s ease-in-out 0s;
  -moz-transition: all 3s ease-in-out 0s;
  -ms-transition: all 3s ease-in-out 0s;
  transition: all 3s ease-in-out 0s;
}

/* Khi hover vào content-theme-item thì ảnh trượt lên */
.content-theme-item:hover .screen-shoot img {
  transform: translateY(-50%);
}

/* Tiêu đề + giá */
.content-theme-item .title {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px 5px;
  color: #002f75;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content-theme-item .title .price {
  font-size: 13px;
  font-weight: 400;
  color: #ff6600;
  margin-top: 4px;
}

/* Vùng action */
.content-theme-item .action {
  padding: 8px 12px 12px;
  border-top: 1px solid #eee;
  background: #fafafa;
  text-align: center;
}

/* Các nút */
.theme-links a, .theme-links .demo, .theme-links .choose {
    display: inline-block;
    padding: 6px 12px;
    background: #ff6600;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
    width: 49%;
}

.theme-links a:hover, .theme-links .demo:hover {
  background: #005f8d;
}

.theme-links .choose {
  background: #28a745;
}

.theme-links .choose:hover {
  background: #1f8c39;
}
.pagination-wrap {
  text-align: center;
  margin-top: 30px;
  margin: auto;
}
.pagination {
  list-style: none;
  display: inline-flex;
  gap: 8px;
  padding: 0;
}
.pagination li a {
  padding: 8px 12px;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}
.pagination li.active a {
  background: #ff6600;
  color: #fff;
  font-weight: bold;
}
.form-email{
  width: 600px;
  margin: 15px auto;
  text-align: center;
}
.inner_dat_giao_dien {
  width: 100%;
}
.inner_dat_giao_dien h3, 
.inner_dat_giao_dien h4{
  text-align: center;
}
.inner_dat_giao_dien iframe {
  width: 80%;
  margin: 10px auto;
  display: flex;
  justify-content: center;

}
@media screen and (max-width: 768px) {
  .select-theme-box-header{
    margin: 0 !important;
  }
  .box-search{
    width: 100%;
  }
  .kgd-select-theme li{
    margin: 2px 5px;
  }
  .kgd-select-theme li a{
    font-size: 10px;
  }
  .box-list-theme{
    gap: 10px;
  }
  .content-theme-item{
    width: calc(50% - 10px);
    height: 380px;
  }
  .screen-shoot{
    height: 200px;
  }
.theme-links a, .theme-links .demo, .theme-links .choose{
    display: block !important;
    width: 100% !important;
    margin-bottom: 5px !important;
  }
  .pagination-wrap{
    font-size: 12px;
    margin-bottom: 10px;
  }
}
/* --- 2.landingpage.css --- */
h2.price-ldp-title{
    color: #1b7bcb;
    position: relative;
    margin-bottom: 15px;
    z-index: 9;
}
h2.price-ldp-title b,
.heading-title b,
.ware-title b {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: #ffb607;
    margin: 14px 10px;
}
h2.price-ldp-title .text-cam {
    color: #f55920;
}
.content-text span{
    font-size: 16px;
    font-weight: 600;
}
.introduce-ldp{
    padding: 0 30px;
    line-height: 2;
}
.list-introduce-ldp h4{
    font-size: 18px;
    padding: 10px 0;
    color: #f55920;
}
.pricing-ldp-container {
  padding: 100px 0;
}

/* Grid layout */
.pricing-ldp-grid {
  display: flex;
  gap: 10px !important;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 20px;
}
.goi-ldp-item {
  width: calc(20% - 10px);
  background: #fff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.goi-ldp-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.goi-ldp-item * {
  box-sizing: border-box;
}
.goi-header .goi-price {
  font-size: 38px;
}
.thong-tin-ldp {
  padding: 0 10px;
  flex-grow: 1;
  margin: 15px 0;
}

.thong-tin-ldp li {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #555;
  box-sizing: border-box;
  font-size: 12px !important;
}
.thong-tin-ldp li i {
  color: #3498db;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: #3498db 2px solid;
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.goi-ldp-item:hover .thong-tin-ldp li i {
  background-color: #3498db;
  color: white;
}
.thong-tin-ldp .label {
  width: 120px;
  font-weight: bold;
  flex-shrink: 0;
  box-sizing: border-box;
}

.thong-tin-ldp .value {
  box-sizing: border-box;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .introduce {
    padding: 0 5px;
  }
  .content-image img {
    margin: auto;
  }
  .list-introduce-item .item-content {
    display: block;
  }
  .pricing-ldp-grid {
    padding: 0;
  }
  .goi-ldp-item {
    width: calc(100% - 20px);
  }
  .goi-ldp-item.highlighted {
    margin-top: 60px;
    transform: none;
  }
}
/* --- 2.lienhe.css --- */
.title-box{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.lh-box-title{
    color: #000;
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    word-wrap: break-word;
    -webkit-box-flex: 0;
    margin-right: 20px;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}
.lien-he-top iframe {width: 100%;}
.form-lienhe,
.info-lienhe{
    width: 100%;
    padding: 30px;
    background: #f5f5f5;
    margin-top: 30px;
}
.wpcf7-form-control-wrap {
    display: flex;
    margin-bottom: 15px;
}
span.wpcf7-form-control-wrap.your-email, span.wpcf7-form-control-wrap.your-tel {margin-right: 0;}
.wpcf7-form br {display: none;}
.wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text {
    border: none;
    background: #e4e4e4;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
input.wpcf7-form-control.wpcf7-quiz {width: 120px;border-radius: 3px;box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);border: 1px solid #ddd;padding: 5px;}
span.wpcf7-form-control-wrap.quiz {width: 100%;margin: 0;}
span.wpcf7-form-control-wrap.your-message {width: 100%;}
textarea.wpcf7-form-control.wpcf7-textarea {
    border: none;
    background: #e4e4e4;
    padding: 10px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
input.wpcf7-form-control.wpcf7-submit {
    margin: 0 auto;
    cursor: pointer;
    border: none;
    padding: 10px 30px;
    background: #EE411C;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    overflow: hidden;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
input.wpcf7-form-control.wpcf7-submit:hover {background: #f37022;}
div.wpcf7-response-output {float: left;clear: both;margin: 0;margin-top: 15px;}
.content-lienhe h4 {color: #018791;margin: 0;font-size: 18px;}
.content-lienhe .fa:before {width: 25px;float: left;color: #f7941d;font-size: 16px;}
.content-lienhe p {margin-bottom: 0;margin-top: 6px;}
.wrap-divider{
    flex: 1 1 0;
}
.divider {
    display: block;
    position: relative;
    width: 100%;
    float: left;
    background: #000;
    height: 3px;
}
.outer_dat_giao_dien {
    width: 100%;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 9999;
    text-align: center;
    display: none;
}
.dat_giao_dien {
    background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0;
    width: 700px;
    z-index: 9999;
    box-sizing: border-box;
    padding: 5px;
    display: inline-block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    max-width: 100%;
}
.close_dgd {
    position: absolute;
    right: 12px;
    top: 12px;
    background: url('images/close_dgd.png');
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
}
.inner_kd_giao_dien {
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    float: left;
    border-radius: 5px;
    overflow: hidden;
}
.dat_giao_dien h3 {
    background: #f2f2f2 none repeat scroll 0 0;
    margin: 0;
    padding: 15px 5px 5px 5px;
    color: #2294d2;
    font-size: 24px;
    text-align: center;
}
.dat_giao_dien h4 {
    background: #f2f2f2 none repeat scroll 0 0;
    margin: 0;
    text-align: center;
    padding-bottom: 15px;
    color: #4E4F59;
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
}
.iframe_datgiaodien {
    width: 100%;
    border: none;
    min-height: 340px;
}
.bg_dat_giao_dien {
    display: none;
    background: #093045 none repeat scroll 0 0;
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 9998;
    opacity: 0.9;
}
.show.outer_dat_giao_dien {
    display: block;
}
.show.bg_dat_giao_dien {
    display: block;
}
@media only screen and (max-width: 768px) {
.lien-he-right, .lien-he-left {width: 100%;}
}
/* --- 2.page.css --- */
.entry-heading {
  padding: 15px 0;
}
.entry-heading h1 {
  text-align: center;
  color: #ff6600 !important;
  font-weight: 600 !important;
}
.entry-content-page {
  line-height: 2.2;
  font-size: 16px;
}
.entry-content-page h3{
    padding-bottom: 0;
}
.entry-content-page ul li {
  box-sizing: border-box;
}
.entry-content-page span {
  margin-left: 10px;
  box-sizing: border-box;
  text-justify: inter-word;
}
.tai_sao_keyweb li {
  background: rgba(0, 0, 0, 0) url(images/keyweb_ok.png) no-repeat scroll 0 4px;
  padding-left: 25px;
}

/* --- 2.single.css --- */
.entry-content iframe{
    width: 100%;
}
/* --- 2.tongdaiao.css --- */
h2.price-tdo-title{
    color: #1b7bcb;
    position: relative;
    margin-bottom: 15px;
    z-index: 9;
}
h2.price-tdo-title b,
.heading-title b,
.ware-title b {
    display: inline-block;
    width: 42px;
    height: 2px;
    background: #ffb607;
    margin: 14px 10px;
}
h2.price-tdo-title .text-cam {
    color: #f55920;
}
.introduce-tdo{
    padding: 0 30px;
    line-height: 2;
}
.list-introduce-tdo h4{
    font-size: 18px;
    padding: 10px 0;
    color: #f55920;
}


/* --- 3.page.css --- */
.entry-heading{
    padding: 15px 0;
}
.entry-heading h1{
    text-align: center;
}
/* --- all-footer.css --- */
.box_list_red {
    background: rgb(248, 244, 232);
    border: 0px dashed #C90002;
    padding: 10px;
    font-size: 16px;
    line-height: 28px;
    max-width: 800px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}
.box_list_red p{
    display: flex;
}
.box_list_red span {
    color: rgb(192, 86, 10);
}
.box_list_red span:hover{
    text-decoration: underline;
}
/* --- formcontact.css --- */
body {
	margin: 0;
}
.contact_box form {
	float: left;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.contact_box label {
	display: none;
}
.contact_box .row_contact{
	margin-bottom: 10px;
}

.contact_box .row_contact_1, .contact_box .row_contact_2 {
	flex: 1 1 calc(100%/3 - 15px);
	margin-right: 15px;
}
.contact_box .row_contact_1 {
	order: 2;
	margin-right: 0px;
}
.contact_box .row_contact_2 {
	order: 1;
}
.contact_box .row_contact_3 {
	flex: 100%;
	order: 3;
}
.contact_box .row_contact_4 {
	order: 4;
	flex: 100%;
}
.contact_box .row_contact_5 {
	order: 5;
	margin: 0;
}
.contact_box .row_contact_6 {
	order: 6;
	flex: 100%;
	margin: 0px;
}
.contact_box input:not(.contact-submit) {
	border: none;
	background: #e4e4e4;
	padding: 10px;
	font-size: 14px;
	width: 100%;
}
.contact_box textarea {
	border: none;
	background: #e4e4e4;
	max-height: 120px;
	padding: 10px;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	width: 100%;
}
.contact_box .contact-submit {
	border: none;
	padding: 10px 30px;
	background: #EE411C;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
	overflow: hidden;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
}
.contact_box .contact-submit:hover {
	border-radius: 20px;
	cursor: pointer;
}

/* --- kh-tieubieu.css --- */
