@charset "UTF-8";

@font-face {
  font-family: "Roboto";
  src: url("../fonts/RobotoRegular.eot");
  src: url("../fonts/RobotoRegular.eot") format("embedded-opentype"),
    url("../fonts/RobotoRegular.woff2") format("woff2"),
    url("../fonts/RobotoRegular.woff") format("woff"),
    url("../fonts/RobotoRegular.ttf") format("truetype"),
    url("../fonts/RobotoRegular.svg#RobotoRegular") format("svg");
  font-display: swap;
}

@font-face {
  font-family: "UTMHelvetIns";
  src: url("../fonts/UTMHelvetInss.eot");
  src: url("../fonts/UTMHelvetIns.eot") format("embedded-opentype"),
    url("../fonts/UTMHelvetIns.woff2") format("woff2"),
    url("../fonts/UTMHelvetIns.woff") format("woff"),
    url("../fonts/UTMHelvetIns.ttf") format("truetype"),
    url("../fonts/UTMHelvetIns.svg#UTMHelvetIns") format("svg");
  font-display: swap;
}

@font-face {
  font-family: "OpenSansBold";
  src: url("../fonts/OpenSansBolds.eot");
  src: url("../fonts/OpenSansBold.eot") format("embedded-opentype"),
    url("../fonts/OpenSansBold.woff2") format("woff2"),
    url("../fonts/OpenSansBold.woff") format("woff"),
    url("../fonts/OpenSansBold.ttf") format("truetype"),
    url("../fonts/OpenSansBold.svg#OpenSansBold") format("svg");
  font-display: swap;
}

/* Main */

:root {
  --color-body: #ec2d3f;
  --color-red: #ec2d3f;
  --color-medium-red: #cc2c32;
  --color-dark-red: #c31829;
  --color-green: #28a745;
  --color-dark-green: #207d36;
  --color-black: #212529;
  --color-gray: #6c757d;
  --color-web: #ffc20b;
  --color-web1: #f5da88;
}
body {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
img {
  max-width: 100%;
  height: auto !important;
  vertical-align: top;
}
a,
input,
textarea {
  outline: none;
  padding: 0px;
  text-decoration: none !important;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.w-clear:after {
  display: block;
  content: "";
  clear: both;
}
.hidden {
  display: none;
}
.clear {
  clear: both;
}
.none {
  display: none;
}
.hidden-seoh {
  visibility: hidden;
  height: 0px;
  margin: 0px;
  overflow: hidden;
}
.wrap-main,
.wrap-content {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 0px;
}
.wrap-home {
  max-width: 1400px;
  padding: 0px;
  overflow: hidden;
}
.wrap-content {
  margin: auto;
}
.contain_trong {
  max-width: 1180px;
  margin: 0 auto;
}
.inbl {
  display: inline-block;
}
.tieude {
  /* text-align: center; */
  font-size: 32px;
  /* text-transform: uppercase; */
  /* font-weight: 900; */
}
/* Loader */
.loader-wrapper {
  z-index: 99999999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  text-align: center;
}
.loader-wrapper .loader {
  position: relative;
  top: calc(50% - 30px);
}
.loader-wrapper .loader p {
  font-size: 13px;
  margin-top: 10px;
  font-weight: 700;
  color: #444;
}
.loader-wrapper .loader .preloader {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-animation: container-rotate 1568ms linear infinite;
  animation: container-rotate 1568ms linear infinite;
}
.loader-wrapper .loader .preloader .spinner-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-color: #007bff;
  -ms-opacity: 1;
  opacity: 1;
  -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1)
    infinite both;
  animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
}
.loader-wrapper .loader .preloader .spinner-layer .circle-clipper {
  display: inline-block;
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-color: inherit;
}
.loader-wrapper .loader .preloader .spinner-layer .circle-clipper .circle {
  width: 200%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-color: inherit;
  border-bottom-color: transparent !important;
  border-radius: 50%;
  -webkit-animation: none;
  animation: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.loader-wrapper
  .loader
  .preloader
  .spinner-layer
  .circle-clipper.float-left
  .circle {
  left: 0;
  border-right-color: transparent !important;
  -webkit-transform: rotate(129deg);
  transform: rotate(129deg);
  -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
  animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
.loader-wrapper
  .loader
  .preloader
  .spinner-layer
  .circle-clipper.float-right
  .circle {
  left: -100%;
  border-left-color: transparent !important;
  -webkit-transform: rotate(-129deg);
  transform: rotate(-129deg);
  -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite
    both;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}
@-webkit-keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes container-rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}
@keyframes fill-unfill-rotate {
  12.5% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  25% {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  37.5% {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
  50% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
  62.5% {
    -webkit-transform: rotate(675deg);
    transform: rotate(675deg);
  }
  75% {
    -webkit-transform: rotate(810deg);
    transform: rotate(810deg);
  }
  87.5% {
    -webkit-transform: rotate(945deg);
    transform: rotate(945deg);
  }
  to {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}
@-webkit-keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}
@keyframes left-spin {
  from {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(130deg);
    transform: rotate(130deg);
  }
}
@-webkit-keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}
@keyframes right-spin {
  from {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  to {
    -webkit-transform: rotate(-130deg);
    transform: rotate(-130deg);
  }
}
#wpcp-error-message {
  direction: ltr;
  text-align: center;
  transition: opacity 900ms ease 0s;
  z-index: 99999999;
}
.hideme {
  opacity: 0;
  visibility: hidden;
}
.showme {
  opacity: 1;
  visibility: visible;
}
.msgmsg-box-wpcp {
  border: 1px solid #f5aca6;
  border-radius: 10px;
  color: #555;
  font-family: Tahoma;
  font-size: 11px;
  margin: 10px;
  padding: 10px 36px;
  position: fixed;
  width: 255px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -130px;
  -webkit-box-shadow: 0px 0px 34px 2px rgba(242, 191, 191, 1);
  -moz-box-shadow: 0px 0px 34px 2px rgba(242, 191, 191, 1);
  box-shadow: 0px 0px 34px 2px rgba(242, 191, 191, 1);
}
.msgmsg-box-wpcp span {
  font-weight: bold;
  text-transform: uppercase;
}
.warning-wpcp {
  background: #ffecec
    url("https://cmmbvietnam.com/wp-content/plugins/wp-content-copy-protector/images/warning.png")
    no-repeat 10px 50%;
}
/* General */
.title-main {
  margin-bottom: 10px;
  text-align: center;
}
.title-main > span {
  text-transform: uppercase;
  color: #ffae00;
  font-size: 30px;
  font-family: "Open Sans", sans-serif;
}
.time-main {
  margin-bottom: 0.75rem;
  color: #999999;
}
.time-main i {
  vertical-align: top;
  margin: 3px 7px 0px 0px;
}
.time-main span {
  vertical-align: top;
  display: inline-block;
}
.social {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.social li {
  display: inline-block;
  vertical-align: top;
}
.social li:last-child {
  margin-right: 0px;
}
.control-carousel {
  position: absolute;
  top: calc(50% - 30px / 2);
  margin-bottom: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border: 1px solid #eee;
  z-index: 2;
  background-color: #fff;
  color: #ccc;
  cursor: pointer;
}
.control-carousel:hover {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}
.prev-carousel {
  left: 0px;
}
.next-carousel {
  right: 0px;
}

.fix_head {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 123;
  width: 100%;
  animation: animatetop 0.4s;
}
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Header */
.header {
}
.header-top {
  /* display: block; */
  /* float: left; */
  /* width: 100%; */
  overflow: hidden;
  padding: 8px 0px;
  background: #052f45;
  color: #d9edf7;
  font-size: 13px;
  /* border-bottom: 1px solid #99999947; */
}
.header-top .left {
  width: 350px;
  float: left;
  font-weight: 700;
  font-size: 15px;
}
.header-top .right {
  width: calc(100% - 460px);
  float: right;
  text-align: right;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  font-size: 15px;
}
.header-top .right .zalo-follow-only-button {
    height: 20px;
    vertical-align: bottom;
}
.header-top .right > a {
  color: #fff4c2;
  margin: 0px 8px;
  font-weight: 700;
  font-size: 14px;
}
.header-top .right > a.demos {
    display: inline-block;
    /* box-shadow: 0px 0px 5px 3px #fbb100a3; */
    /* padding: 0px 14px; */
    /* border-radius: 10px; */
    /* background: #ef8f00; */
    /* color: #fff; */
}
.header-top .right a:nth-child(2) {
  /* background: linear-gradient(to right, #ea8300, #ffba00, #ea8300); */
  /* transition: all 0.5s; */
  /* padding: 5px 20px; */
  /* border-radius: 23px; */
  /* color: #fff; */
}
.header-top .right a:nth-child(2):hover {
  /* background: linear-gradient(to right, #ffba00, #ea8300, #ffba00); */
}
.header-top .right > a i {
  margin-right: 5px;
}
.header-top .right search {
}
.themheader{
    position: relative;
}

.themheader:hover ul {
    display: block;
}

.themheader ul {
    display: none;
    list-style: none;
    padding-left: 0px;
    position: absolute;
    z-index: 9999;
    right: 0;
    width: 280px;
    text-align: left;
    background: #fff;
    padding: 10px;
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.7s;
}

.themheader ul li {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
}

.themheader ul li >a {
    color: #000;
}

.themheader ul li >a .right {
    max-width: 245px;
    width: calc(100% - 50px);
}

.themheader ul li >a .right span:nth-child(1) {
    max-height: 40px;
    overflow: hidden;
    text-align: left!important;
    float: left;
    margin: 5px 0px 0px 5px;
}

.themheader ul li >a .right span:nth-child(1):hover {
    color: #f00;
}
.themheader ul li >a .right span:nth-child(2){
    max-height: 40px;
}
.header-bottom {padding: 5px 0px;}

.header-bottom .wrap-content {
    position: relative;
}

.header-bottom .logo-header {
  width: 165px;
  /* height: 100px; */
  padding: 5px 10px 5px 0px;
  /* border-right: 1px solid #999; */
}
/* Menu */
.menu_left {
  width: 100%;
}
.menu .contain_trong {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu {
  /* background-color:#0066cc; */
  width: calc(100% - 150px);
  /* position: relative; */
}
.menu ul {
  padding: 0px;
  list-style: none;
  margin: 0px;
}
.menu_top > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /* position: relative; */
  margin-bottom: 0px;
}
.menu_top > ul > li {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  /* flex: 1 0 auto; */
  /* position: relative; */
  line-height: 49px;
}
.menu_top > ul > li > a {
  display: block;
  text-transform: capitalize;
  width: 100%;
  position: relative;
  text-shadow: none;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.menu_top > ul > li > a.nhantuvan span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(255, 194, 11, .22);
    white-space: nowrap;
    height: 40px;
    margin-top: 11px;
}
.menu_top ul li:hover .hienthimenu{
  display: flex;
  justify-content: center;
}
.menu_top ul li .hienthimenu {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0px;
    transition: 0.3s;
    display: none;
}
.menu_top ul li .hienthimenu .wrap-in {
  position: relative;
  background: #ffffff;
  border: 1px solid #e3ebf4;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .16);
  z-index: 1000;
  box-sizing: border-box;
  width: min(1020px, calc(100vw - 32px));
}
.menu_top ul li .hienthimenu .grid1 {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(250px, 0.78fr);
    gap: 18px;
    align-items: stretch;
}
.hienthimenu .grid1 .inner1 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: start;
}
.hienthimenu .grid1 .inner1 .in1 {
    padding: 4px 18px;
    border-right: 1px solid #edf2f7;
}
.hienthimenu .grid1 .in1 .line {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
}
.hienthimenu .grid1 .in1 .line span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #fff4c2;
    color: #8a6200;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 auto;
}
.hienthimenu .grid1 .in1 .line b {
    color: #0b2536;
    font-size: 15px;
    line-height: 1.3;
}
.hienthimenu .grid1 .grid {
    display: grid;
    gap: 4px;
    text-align: left;
}
.hienthimenu .grid1 .grid .box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #344054;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    border: 1px solid transparent;
    background: #ffffff;
}
.hienthimenu .grid1 .grid .box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 11px;
    background: #f6fbff;
    border: 1px solid #d9ebf7;
    color: #0b4770;
    font-size: 15px;
    flex: 0 0 auto;
}
.hienthimenu .grid1 .grid .box .text {
    display: block;
    min-width: 0;
}
.hienthimenu .grid1 .grid .box .text b {
    display: block;
    color: #344054;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}
.hienthimenu .grid1 .grid .box .text b:hover {
    color: #f00;
}
.hienthimenu .grid1 .grid .box .text div {
    display: block;
    color: #667085;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 3px;
}
.hienthimenu .grid1 .inner2 {
    background: linear-gradient(145deg, #fff8dc, #ffffff);
    border: 1px solid #ffe08a;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(255, 194, 11, .10);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    line-height: normal;
}
.hienthimenu .grid1 .inner2 .tieude1 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
}
.hienthimenu .grid1 .inner2 h4 {
    margin: 12px 0 7px;
    color: #082f45;
    font-size: 18px;
    line-height: 1.25;
}
.hienthimenu .grid1 .inner2 h6 {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.6;
}
.hienthimenu .grid1 .inner2 .button {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    background: unset;
    height: auto;
}
.hienthimenu .grid1 .inner2 .button >a:first-child {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 900;
}
.hienthimenu .grid1 .inner2 .button >a:last-child {
    display: block;
    text-align: center;
    background: #052f45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 900;
}
.hienthimenu .grid2 {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.hienthimenu .grid2 span {
    background: #f8fbff;
    border: 1px solid #e6eef6;
    border-radius: 12px;
    padding: 9px 10px;
    color: #344054;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    line-height: normal;
}
.menu_top > ul > li:nth-child(9) ul {
  left: -140px;
}
.menu_top > ul > li > a img {
  margin-top: 10px;
}
.header-top .right .quatang, .quatang {
  position: relative;
}
.header-top .right .quatang i, .quatang i {
  position: absolute;
  top: 12px;
  left: 57%;
  z-index: 9991;
  height: 20px;
  background: #f00;
  line-height: 20px;
  width: 20px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  padding-right: 5px;
}
.quatang i {
	padding-right: 2px;
}
.header-top .right .quatang span, .quatang span {
  animation-name: runglac;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  display: inline-block;
}
@keyframes runglac {
  0% {
    transform: rotateZ(15deg);
  }
  25% {
    transform: rotateZ(-15deg);
  }
  50% {
    transform: rotateZ(15deg);
  }
  75% {
    transform: rotateZ(-15deg);
  }
  100% {
    transform: rotateZ(15deg);
  }
}
.menu_top > ul > li > a.giohang, .giohang{
  position: relative;
  /* right: 30px; */
  /*top: 5px;*/
}
.menu_top > ul > li > a.giohang img, .giohang img {
  height: 36px;
  max-width: 22px;
  margin-top: 0px;
}
.menu_top > ul > li > a.giohang i, .giohang i {
  color: #ffff;
  position: absolute;
  top: 10px;
  width: 20px;
  height: 22px;
  line-height: 21px;
  border-radius: 50%;
  background: #f00;
  padding: 0px 5px;
  font-style: normal;
}
.menu_top > ul > li > a.active {
  color: #ffffff;
}
.menu_top > ul > li a span {
  position: relative;
  z-index: 1234;
  display: block;
  opacity: 1;
  padding: 7px 0px;
}

.menu_top > ul > li a span i {
    font-size: 9px;
    color: #98a2b3;
    line-height: 1;
    padding: 5px 2px;
    font-style: normal;
}
/*.menu_top>ul>li>a>span{padding-top: 5px}*/
.menu_top > ul > li ul {
  list-style: none;
  position: absolute;
  /*width: 350px;*/
  top: 0px;
  left: 251px;
  z-index: 3000;
  /* -webkit-transform: perspective(600px) rotateX(-90deg); */
  /* transform: perspective(600px) rotateX(-90deg); */
  /* -webkit-transform-origin: 0 0 0; */
  /* transform-origin: 0 0 0; */
  opacity: 0;
  visibility: hidden;
  /* transition: all 0.5s; */
}
.menu_top > ul > li > ul {
  top: 50px;
  left: 0px;
  padding-top: 0px !important;
}
.menu_top > ul > li:nth-child(8) > ul {
  left: -200px;
}
.menu ul li:hover > ul {
  /* -webkit-transform: perspective(600px) rotateX(0); */
  /* transform: perspective(600px) rotateX(0); */
  /* -webkit-transform-origin: 0 0 0; */
  opacity: 1;
  visibility: visible;
  /* transition: all 0.7s; */
}
.menu_top > ul > li li {
  width: 350px;
  position: relative;
  background: #fff;
  line-height: 25px;
  padding: 10px 10px;
  text-align: left;
  border-bottom: 1px solid #fff;
}
.menu_top > ul > li li a {
  text-decoration: none;
  font-weight: 500;
  text-transform: none;
  color: #000;
  font-size: 15px;
  display: block;
  line-height: 18px;
  padding: 5px;
}
.menu_top > ul > li li a:hover {
  box-shadow: 0px 0px 10px 5px #ddd;
}
.menu_top > ul > li li a img {
  max-width: 50px;
  display: inline-block;
  margin-right: 5px;
}
.menu_top > ul > li li a .right {
  width: calc(100% - 60px);
  display: inline-block;
}
.menu_top > ul > li a .right span:first-child {
  font-weight: 600;
}
.menu_top > ul > li a .right span:last-child {
  font-size: 12px;
  height: 35px;
}
.menu_top > ul > li > ul li ul {
  box-shadow: 0px 2px 5px #ccc;
  top: 0px;
}
.menu_top > ul > li:hover > a {
  text-decoration: none;
}
.menu_top > ul > li > a.active {
  color: #000;
  background: #e3f3ff;
  border-radius: 5px;
}
.menu_top > ul > li > a.mousego {
  color: #fff !important;
  background: transparent;
}
.menu_top > ul > li > a.act_hover {
  color: #ffffff !important;
  background: #ffcc00;
}
.menu_top > ul > li:after {
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%; /* background: #3385d6; */
  content: "";
  right: 0px;
}
.menu_top > ul > li li:hover {
  /*background: #00293a;*/
}
.menu_top > ul > li:nth-child(9):after {
  display: none;
}
.menu_top > ul > li:nth-child(9):before {
  display: none;
}
.menu_top > ul > li li:last-child {
  border-bottom: 0px solid #fff;
}
.logo-menu-res {
  display: none;
}

.flex_main {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
/* Search */
.search {
  /* width:230px; */
  background: #fff;
  display: inline-block;
  margin-left: 10px;
  margin-right: 12px;
}
.search p {
  float: left;
  width: 35px;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
  text-align: center;
  margin: 0px;
  color: var(--color-gray);
  font-size: 16px;
}
.search input {
  width: calc(100% - 35px);
  height: 35px;
  float: left;
  outline: none;
  padding: 0px;
  border: 0px;
  background: transparent;
  text-indent: 10px;
  font-size: 12px;
}
.search input::-webkit-input-placeholder {
  color: #ccc;
}
.search input:-moz-placeholder {
  color: #ccc;
}
.search input::-moz-placeholder {
  color: #ccc;
}
.search input:-ms-input-placeholder {
  color: #ccc;
}
/* check domain */
.block-checkdomain {
  min-height: 325px;
  padding-bottom: 30px;
  background-size: 100% auto !important;
  overflow: hidden;
  position: relative;
}
.hienthithongtindomain{
    position: relative;
}
.hienthithongtindomain .tenmienchuadung{
    position: absolute;
    left: 15px;
    color: #f00;
}
.block-checkdomain .wrapbox1 {
  padding-top: 40px;
}
.block-checkdomain .wrapbox1 h2 {
  font-size: 32px;
  color: #00293a;
  font-family: UTMHelvetIns;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.block-checkdomain .wrapbox1 h3 {
  font-size: 18px;
  color: #444;
  font-family: UTMHelvetIns;
  margin-bottom: 20px;
  /* text-transform: uppercase;*/
}
.block-checkdomain .wrapbox1 .box {
}

.block-checkdomain .wrapbox1 .box .box {
  overflow: hidden;
  margin-bottom: 20px;
}
.block-checkdomain .wrapbox1 .box input {
  /*max-width: 358px;*/
  max-width: 460px;
  height: 50px;
  border-radius: 28px 0px 0px 28px;
  float: left;
}
.block-checkdomain .wrapbox1 .box select {
  width: 125px;
  height: 50px;
  float: left;
  /* margin-left: -150px; */
  margin: 0px 1px 0px;
  border-radius: 0px;
  /* border: 0px; */
}
.block-checkdomain .wrapbox1 .box button {
  padding: 10px 0px;
  color: #fff;
  border: none;
  outline: none;
  font-size: 20px;
  height: 50px;
  font-weight: bold;
  text-align: center;
  width: 220px;
  cursor: pointer;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  background: linear-gradient(to right, #ea8300, #ffba00, #ea8300);
}
.block-checkdomain .wrapbox1 .box button:hover {
  background: linear-gradient(to right, #ffba00, #ea8300, #ffba00);
}
.block-checkdomain .wrapboxthem {
  overflow: hidden;
  float: left;
  margin: 15px -15px 0px;
}
.block-checkdomain .wrapboxthem > a {
  width: 25%;
  float: left;
  padding: 0px 15px;
}
.block-checkdomain .wrapbox2 {
  max-width: 704px;
  width: 100%;
  overflow-x: auto;
  float: left;
}
.block-checkdomain .wrapbox2::-webkit-scrollbar {
  height: 3px;
}
.block-checkdomain .wrapbox2::-webkit-scrollbar-track {
  background-color: #97d8ff;
}
.block-checkdomain .wrapbox2::-webkit-scrollbar-thumb {
  background-color: #007bff;
}
.block-checkdomain .wrapbox2 .chemat {
}
.block-checkdomain .wrapbox2 .slidedomain {
  overflow: hidden;
  height: 151px !important;
  margin: 20px 0px 0px;
  width: 100%;
  padding-left: 9px;
}
.block-checkdomain .wrapbox2 .slidedomain .slick-list {
  padding: 19px 0px 10px;
}
.block-checkdomain .wrapbox2 .slidedomain .box {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 15px 20px;
  margin: 5px 12px 11px 0px;
  float: left;
  /* width: 156px!important; */
  position: relative;
  color: #000;
  text-decoration: none;
  height: 141px;
  transition: all 0.3s;
  font-size: 13px;
  overflow: hidden;
  border: 1px solid #fff;
  box-shadow: 0px 0px 11px 2px #a3d7f4;
}
.block-checkdomain .wrapbox2 .slidedomain .box .hinh {
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.block-checkdomain .wrapbox2 .slidedomain .box .ten {
  font-size: 30px;
  /*font-weight: 600;*/
  color: #013787;
  font-family: UTMHelvetIns;
  text-transform: uppercase;
}
.block-checkdomain .wrapbox2 .slidedomain .box:hover {
  border: 1px solid;
}
.block-checkdomain .wrapbox2 .slidedomain .box .noidung span {
  display: block;
}
.block-checkdomain .wrapbox2 .slidedomain .box .noidung span:first-child {
  color: #009fff;
  font-size: 21px;
}
.block-checkdomain .wrapbox2 .slidedomain .box .noidung span:nth-child(2) {
  margin: 0px 0px;
  text-decoration: line-through;
  color: #666;
  font-size: 19px;
}
.block-checkdomain .wrapbox2 .slidedomain .box.hinh {
  padding: 0;
  background: transparent;
}
.block-checkdomain .wrapbox2 .slidedomain .box.hinh img {
  margin-top: -18px;
}
.block-checkdomain .wrapbox2 .slidedomain .box p {
  margin-bottom: 1px;
  float: left;
  height: 20px;
  overflow: hidden;
}
.block-checkdomain .wrapthongbao {
  background: #ffffffc7;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  /*overflow: hidden;*/
  float: left;
  margin-top: 15px;
}
.block-checkdomain .wrapthongbao strong {
  background: #ddd;
  padding: 10px 20px;
  border-radius: 10px;
  color: #555;
  cursor: pointer;
}
.block-checkdomain .wrapthongbao .hinh {
  width: 41%;
  float: left;
  text-align: center;
}
.block-checkdomain .wrapthongbao .noidung {
  width: 59%;
  float: left;
}
.block-checkdomain .wrapthongbao .noidung h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.block-checkdomain .wrapthongbao .noidung h4 {
  font-size: 20px;
  position: relative;
}
.block-checkdomain .wrapthongbao .giachuadk {
  /* float: left; */
}
.block-checkdomain .wrapthongbao .giachuadk span:nth-child(1) {
  font-size: 20px;
  text-decoration: line-through;
  color: #666;
}
.block-checkdomain .wrapthongbao .giachuadk span:nth-child(2) {
  font-size: 20px;
  font-weight: 600;
  margin: 0px 10px;
  color: #f00;
}
.block-checkdomain .wrapthongbao .giachuadk span:nth-child(3) {
  font-size: 16px;
}
.block-checkdomain .wrapthongbao .noidung h4 span,
.block-checkdomain .wrapthongbao .noidung h5 span {
  color: #ff0c00;
  font-size: 30px;
  z-index: 9999;
  transition: all 1s;
  transform: translate(0);
}
.block-checkdomain .wrapthongbao .noidung h4 span.hide {
  /*opacity: 0;
    position: absolute;
    z-index: 9999;
    transition: all 1s;
    transform: translate(0);*/
  display: none;
}
.block-checkdomain .wrapthongbao .noidung h4 span.xanh {
  color: #3bc703;
}
.block-checkdomain .wrapthongbao span.dktenmien {
  background: #ffc300;
  padding: 10px 20px;
  color: #fff;
  border-radius: 5px;
  transition: all 0.5s;
  cursor: pointer;
}
.goiytenmien {
  width: 100%;
  float: right;
  overflow: hidden;
  margin-top: 40px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #99999936;
}
.goiytenmien .tieude {
  font-size: 16px;
  background: #eeeeee8f;
  font-weight: 500;
  padding: 10px;
  color: #00293a;
}
.goiytenmien .item {
  overflow: hidden;
  padding: 9px 20px;
}
.goiytenmien .item:hover {
  background: #e2e2e2 !important;
}
.goiytenmien .item:nth-child(2n) {
  background: #eef5fc;
}
.goiytenmien .item .left {
  width: 33%;
  float: left;
  font-size: 18px;
}
.goiytenmien .item .left span:last-child {
  color: #f00;
  margin-left: -3px;
}
.goiytenmien .item .center {
  width: 33%;
  float: left;
  text-align: center;
  line-height: 28px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.goiytenmien .item .center span:first-child {
  font-size: 16px;
  color: #f00;
}
.goiytenmien .item .center span:last-child {
  font-size: 13px;
  text-decoration: line-through;
  color: #888;
}
.goiytenmien .item .right {
  width: 34%;
  float: right;
  text-align: center;
}

.goiytenmien .item .right span {
  background: #00293a;
  display: inline-block;
  padding: 4px 20px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.goiytenmien .item .right span i {
  display: inline-block;
  vertical-align: middle;
}
.goiytenmien .item .right span:hover {
  background: #0062cb;
}
.block-checkdomain .wrapthongbao span.dktenmien:hover {
  background: #e5b013;
}
.block-checkdomain .wrapthongbao .hinh img {
  max-width: 50%;
  text-align: center;
}
.block-checkdomain .thongtinwhois {
  position: fixed;
  z-index: 9999;
  top: 40px;
  background: #fff;
  width: 50%;
  left: calc(50% / 2);
  padding: 20px;
  border-radius: 10px;
  display: none;
}
.block-checkdomain .thongtinwhois .thongtinwrap {
  overflow-y: scroll;
  max-height: 535px;
}
.block-checkdomain .thongtinwhois span.close {
  position: absolute;
  right: 5px;
  top: -35px;
  background: #eee;
  padding: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.block-checkdomain .baophumo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000069;
  z-index: 9998;
  display: none;
}
/* giỏ hàng */
.trangthai {
  overflow: hidden;
  margin-bottom: 20px;
  align-items: start;
  justify-content: space-between;
  display: flex;
  padding: 0px 80px 10px;
}
.trangthai .box {
  text-align: center;
  width: 33%;
  position: relative;
}
.trangthai .box.active {
}
.trangthai .box.active span:nth-child(1) {
  color: #fec10a;
}
.trangthai .box.active span:nth-child(2) {
  background: #fec10a;
  color: #fff;
}
.trangthai .box.active .bar {
  background: #fec10a;
}
.trangthai .box span:nth-child(1) {
  display: block;
  color: #000;
  font-size: 16px;
  height: 42px; /* margin-bottom: 10px; */
}
.trangthai .box span:nth-child(2) {
  display: block;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  padding-top: 9px;
  font-size: 18px;
  color: #000;
  box-shadow: 1px 1px 1px #333;
  margin: auto;
  position: relative;
  z-index: 99;
}
.trangthai .box .bar {
  width: 100%;
  height: 10px;
  background: #ddd;
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: -49%;
}
.giohangtenmien {
  /*background: #eeeeee6b;*/
  padding: 30px 0px;
}

.giohangtenmien .tieude {
  font-size: 20px;
  /* font-family: robotobold; */
  margin-bottom: 20px;
}
.giohangtenmien {
  /*background: #f9f9f9;*/
  padding: 30px 0px;
  overflow: hidden;
}

.giohangtenmien .wrap-main {
  overflow: hidden;
}
.giohangtenmien .tieudegiohangrong {
  font-size: 20px;
  text-align: center;
  color: #666;
}
.giohangtenmien .quayvetrangchu {
  display: block;
  width: 180px;
  margin: 15px auto;
  background: #fff;
  text-align: center;
  border: 1px solid #33333345;
  padding: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  transition: all 0.5s;
  text-decoration: none;
  box-shadow: 0px 0px 4px 1px #00a1ff;
}
.giohangtenmien .quayvetrangchu:hover {
  /* margin-top: -6px; */
  /* margin-bottom: 18px; */
}
.giohangtenmien .tieude {
  font-size: 20px;
  /* font-family: robotobold; */
  margin-bottom: 20px;
}
.giohangtenmien .box1 {
  float: left;
  width: 100%;
  padding: 0px 5px;
}
.giohangtenmien .box1 .left {
  max-width: 70%;
  float: left;
  /*background: #fff;*/
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgb(32 33 36 / 22%);
}
.giohangtenmien .box1 .left .top {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.giohangtenmien .box1 .left h3 {
  font-size: 22px;
  /* font-family: 'RobotoBold'; */
}
.giohangtenmien .box1 .left h3 span {
  color: #f00;
}
.giohangtenmien .box1 .left h6 {
  line-height: 22px;
}
.giohangtenmien .box1 .left .middle h6 {
  margin-bottom: 30px;
}
.giohangtenmien .box1 .left .bottom input {
  margin-right: 10px;
  float: left;
  transform: scale(1.5);
  position: relative;
  top: 10px;
}
.giohangtenmien .box1 .left .bottom .mota {
  /*width: calc(100% - 23px);*/
  width: 100%;
  padding: 8px;
  float: left;
  display: block;
  cursor: pointer;
}
.giohangtenmien .box1 .left .bottom .mota:nth-child(2n - 1) {
  background: #eee;
}
.giohangtenmien .box1 .left .bottom .mota .left {
  padding: 0px;
  box-shadow: unset;
  width: 71%;
  float: left;
}
.giohangtenmien .box1 .left .bottom .mota .left p {
  margin-bottom: 5px;
}
.giohangtenmien .box1 .left .bottom .mota .riht {
  width: 26%;
  float: right;
  text-align: right;
}
.giohangtenmien .box1 .left .bottom .mota .riht span:nth-child(1) {
  display: block;
  text-decoration: line-through;
  font-size: 12px;
}
.giohangtenmien .box1 .left .bottom .mota .riht span:nth-child(2) {
  font-weight: 600;
  color: #f00;
  font-size: 20px;
}
.giohangtenmien .box1 .right {
  width: 25%;
  float: right;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgb(32 33 36 / 22%);
}
.giohangtenmien .box1 .right h3 {
  font-size: 20px;
  /* font-family: 'RobotoBold'; */
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.giohangtenmien .box1 .right .noidung .ten1 {
  margin-bottom: 10px;
}
.giohangtenmien .box2 {
  width: 100%;
  float: left;
  margin: 19px 0px 15px;
  font-size: 20px;
  /* font-family: 'RobotoBold'; */
}
.giohangtenmien .box1 .right .noidung .ten2 {
  font-size: 17px;
  font-weight: 600;
  color: #f00;
  /* font-family: 'RobotoBold'; */
  margin-bottom: 15px;
}
.giohangtenmien .box1 .right .noidung .ten2 span {
  color: #000;
  font-weight: 400;
}
.giohangtenmien .box1 .right .noidung .ten3 .wrap {
  margin-bottom: 10px;
}
.giohangtenmien .box1 .right .noidung .ten3 .wrap i {
  margin-right: 6px;
  color: #1bc107;
}
.giohangtenmien .box2 span {
  font-family: "RobotoRegular";
  font-size: 14px;
  color: #f00;
  cursor: pointer;
}
.giohangtenmien .box2 span:nth-child(1) {
}
.giohangtenmien .box2 span:nth-child(2) {
  display: none;
}
.giohangtenmien .box3 {
  float: left;
  width: 70%;
  margin-left: 5px;
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgb(32 33 36 / 22%);
}
.giohangtenmien .box3 h5 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.giohangtenmien .box3 .noidung {
}
.giohangtenmien .box3 .noidung h6 {
}
.giohangtenmien .box3 .noidung > a {
  display: inline-block;
  margin-right: 2px;
  background: #333;
  border-radius: 8px;
}
.giohangtenmien .box3 .noidung > a img {
  max-height: 30px;
}
.giohangtenmien .box4 {
  margin: 30px 0px;
  max-width: 70%;
  text-align: center;
  display: block;
}
.giohangtenmien .box4 > a {
  background: linear-gradient(to right, #ea8300, #ffba00, #ea8300);
  display: inline-block;
  display: inline-block;
  padding: 10px 50px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.5s;
}
.giohangtenmien .box4 > a:hover {
  background: linear-gradient(to right, #ffba00, #ea8300, #ffba00);
}
.giohangtomtat {
  background: #f9f9f9;
  padding: 40px 0px;
  overflow: hidden;
}
.giohangtomtat h3 {
  font-size: 23px;
  color: #666;
}
.giohangtomtat .wrap1 {
  width: 68%;
  float: left;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.giohangtomtat .wrap1 .box1 {
  border-bottom: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  float: left;
}
.giohangtomtat .wrap1 .box1:nth-child(2n-1) {
  background: #e9f5ff;
}
.giohangtomtat .wrap1 .box1.them {
  padding-top: 10px;
}

.giohangtomtat .wrap1 .box1.them .left {
  margin-top: 10px;
}
.giohangtomtat .wrap1 .box1 .left {
  width: 50%;
  float: left;
}
.giohangtomtat .wrap1 .box1 .left .ten1 {
  font-size: 17px;
  color: #f00;
  /* font-family: 'RobotoBold'; */
  font-weight: 600;
}
.giohangtomtat .wrap1 .box1 .left .ten1 span {
  color: #000;
  font-weight: 400;
}
.giohangtomtat .wrap1 .box1 .left .ten2 {
  color: #666;
  margin: 5px 0px;
}
.giohangtomtat .wrap1 .box1 .left select {
  width: 150px;
  height: 35px;
  font-size: 14px;
}
.giohangtomtat .wrap1 .box1 .right {
  width: 49%;
  float: right;
  text-align: right;
}
.giohangtomtat .wrap1 .box1 .right .ten1 {
  font-size: 16px;
}
.giohangtomtat .wrap1 .box1 .right .ten1 span:nth-child(1) {
  text-decoration: line-through;
  margin-right: 10px;
}
.giohangtomtat .wrap1 .box1 .right .ten1 span:nth-child(2) {
  /* font-family: 'RobotoBold'; */
}
.giohangtomtat .wrap1 .box1 .right .ten2 {
  color: #666;
  margin: 5px 0px;
}
.giohangtomtat .wrap1 .box1 .right .ten3 {
    color: #f00;
    font-size: 12px;
}
.giohangtomtat .wrap1 .box1 .right button {
  border: 0px;
  background: transparent;
}
.giohangtomtat .wrap1 .box1 .right button img {
  height: 25px !important;
}
.giohangtomtat .wrap1 .box2 {
  width: 100%;
  float: left;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.giohangtomtat .wrap1 .box2:nth-child(2n-1) {
  background: #e9f5ff;
}
.giohangtomtat .wrap1 .box2:last-child {
  border-bottom: 0px;
}
.giohangtomtat .wrap1 .box2 .left {
  width: 50%;
  float: left;
}
.giohangtomtat .wrap1 .box2 .left .ten1 {
  font-size: 18px;
  /* font-family: 'RobotoBold'; */
}
.giohangtomtat .wrap1 .box2 .left .ten2 {
  color: #666;
  margin-top: 4px;
}
.giohangtomtat .wrap1 .box2 .right {
  width: 50%;
  float: right;
  text-align: right;
}
.giohangtomtat .wrap1 .box2 .right .ten1 {
  font-size: 16px;
  /* font-family: 'RobotoBold'; */
  margin-bottom: 6px;
}
.giohangtomtat .wrap1 .box2 .right button {
  background: transparent;
  border: 0px;
}
.giohangtomtat .wrap1 .box2 .right button img {
  height: 25px !important;
}
.giohangtomtat .wrap2 {
  width: 28%;
  float: right;
}
.giohangtomtat .wrap2 .box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.giohangtomtat .wrap2 h3 {
  font-size: 19px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  /* font-family: 'Robotobold'; */
}
.giohangtomtat .wrap2 h3 span {
  float: right;
  font-size: 12px;
  cursor: pointer;
  background: #e9f5ff;
  padding: 4px 5px;
  border-radius: 3px;
}
.giohangtomtat .wrap2 h3 span img {
  max-height: 21px !important;
  display: inline-block;
  vertical-align: middle;
}
.giohangtomtat .wrap2 .boxthanhtien {
}
.giohangtomtat .wrap2 .boxthanhtien .ten {
  font-size: 16px;
  margin-bottom: 9px;
}
.giohangtomtat .wrap2 .boxthanhtien .ten span:nth-child(1) {
}
.giohangtomtat .wrap2 .boxthanhtien .ten span:nth-child(2) {
  float: right;
}
.giohangtomtat .wrap2 .boxthanhtien .ten1 {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 17px;
}
.giohangtomtat .wrap2 .boxthanhtien .ten1 span:nth-child(1) {
}
.giohangtomtat .wrap2 .boxthanhtien .ten1 span:nth-child(2) {
  float: right;
  color: #f00;
  /* font-family: 'RobotoBold'; */
}
.giohangtomtat .wrap2 .boxthanhtien .ten2{
    background: #00293a;
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
}
.giohangtomtat .wrap2 > button {
  display: block;
  padding: 10px;
  background: linear-gradient(to right, #ea8300, #ffba00, #ea8300);
  margin-top: 15px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  border: 0px;
  width: 100%;
}
.giohangtomtat .wrap2 > button:hover {
  background: linear-gradient(to right, #ffba00, #ea8300, #ffba00);
}
/* end giỏ hàng */
/* Menu RP */
.menu-res {
  display: none;
  height: 55px;
  width: 100%;
  z-index: 10;
  background: #c7e6ff !important;
  position: fixed;
  top: 0;
  line-height: normal;
}
.menu-bar-res {
  height: 55px;
  padding: 0px 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#menu {
  display: none;
  /* background: #fff; */
}
.hamburger1{
    display: none; 
   width: 40px;
   height: 40px;
   background: #ddd;
}
#menu1{
  position: fixed;
  width: 100%;
  height: calc(100% + 100px);
  z-index: 999999;
  background: #fff;
  top: 0;
  transition: all 0.3s;
  transform: translateX(-100%);
}
#menu1.active {
    transform: translate(0px);
}
#menu1 .close {
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 16px;
    width: 30px;
    height: 30px;
    background: #fff;
    padding: 9px;
    border-radius: 50%;
    line-height: 13px;
}
#menu1 .title {
    background: #00293a24;
    padding: 11px 20px;
    margin-bottom: 3px;
}
#menu1 ul {
    padding: 0px;
    list-style: none;
    overflow: hidden;
    width: 80px;
    height: 100%;
    border-right: 1px solid #ddd;
}
#menu1 ul li >a {
    color: #000;
    font-size: 12px;
    text-align: center;
    display: block;
    font-weight: 600;
    padding: 5px;
}
#menu1 ul li{
    width: 80px;
    /*height: 68px;*/
    margin-bottom: 3px;
}
#menu1 ul li.cap1.active {
    background: #00293a24;
}
#menu1 ul li.cap1 .icon1 {
    max-width: 60px;
    max-height: 22px;
    display: block;
    margin: 5px auto;
}
#menu1 ul li ul.cap2{
    position: absolute;
    left: 84px;
    list-style: none;
    width: calc(100% - 85px);
    top: 50px;
    border-right: 0px;
    display: none;
}
#menu1 ul li.active ul.cap2 {
    display: block;
}
#menu1 ul li ul.cap2 li {
    width: 49%;
    /* height: 80px; */
    display: inline-block;
    vertical-align: top;
    border: 1px solid #eeeeeec9;
    border-radius: 8px;
    margin-bottom: 3px;
    overflow: hidden;
}
#menu1 ul li ul.cap2 li:first-child >a {
    background: #00293a24;
}
#menu1 ul li ul.cap2 li img {
    max-height: 60px;
}
#hamburger {
  display: block;
  width: 33px;
  height: 23px;
  position: relative;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #00293a;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
}
#hamburger:before {
  top: 0px;
}
#hamburger span {
  top: 10px;
}
#hamburger:after {
  top: 20px;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  -webkit-transition: none 0.5s ease 0.5s;
  transition: none 0.5s ease 0.5s;
  -webkit-transition-property: transform, top, bottom, left, opacity;
  transition-property: transform, top, bottom, left, opacity;
}
.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
  top: 10px;
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}
.mm-wrapper_opening #hamburger:before {
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
  transform: rotate(-45deg);
}
.mm-menu_opened {
  display: block !important;
}
.giohangmobile {
  width: 40px;
  height: 40px;
  font-size: 30px;
  /*margin-right: 20px;*/
  position: relative;
  padding: 10px 10px 0px 0px;
}
.giohangmobile span {
  position: absolute;
  background: #f00;
  top: -1px;
  right: 0px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
  padding: 0px;
  text-align: center;
}
/* Search RP */
.search-res {
  position: relative;
}
.search-res .icon-search {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  line-height: 42px;
  color: #fff;
  font-size: 17px;
  margin: 0px;
}
.search-res .icon-search.active {
  color: var(--color-red);
  background: #fff;
  border-radius: 100%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-red);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
}
.search-res .search-grid p {
  float: left;
  width: 35px;
  height: 38px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 17px;
  display: block;
  color: var(--color-red);
  line-height: 40px;
  text-align: center;
}
.search-res .search-grid input {
  width: calc(100% - 35px);
  float: right;
  line-height: 38px;
  outline: none;
  border: none;
  color: var(--color-red);
}
.search-res .search-grid input::-webkit-input-placeholder {
  color: #ccc;
}
.search-res .search-grid input:-moz-placeholder {
  color: #ccc;
}
.search-res .search-grid input::-moz-placeholder {
  color: #ccc;
}
.search-res .search-grid input:-ms-input-placeholder {
  color: #ccc;
}

/* Slideshow */
.slideshow {
  position: relative;
}
.slideshow a {
  display: block;
  cursor: pointer;
}
.slideshow a img {
  width: 100%;
}
.control-slideshow {
  opacity: 0;
}
.control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: calc(50% - 45px / 2);
}
.control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 0px;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin: 0px;
  background-color: #000000;
  border-radius: 3px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.control-owl button:hover {
  opacity: 1;
}
.control-owl button.owl-prev {
  left: 20px;
}
.control-owl button.owl-next {
  right: 20px;
}
.slideshow-item {
  display: block;
  cursor: pointer;
}
.slideshow:hover .control-slideshow {
  opacity: 1;
}

/* Breadcrumb */
.banner {
  height: 200px;
  background: #00293a;
  padding: 0px 30px;
  text-align: center;
  position: relative;
}

.banner span {
  color: #fff;
  font-size: 30px;
  /* position: absolute; */
  margin-top: 70px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
}

.banner .ngaythang {
}

.banner .ngaythang span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: normal;
  padding: 0px 10px;
  text-transform: none;
}

.banner .ngaythang span:first-child {
  border-right: 1px solid #fff;
}

.banner .ngaythang span i {
  margin-right: 10px;
}
.breadCrumbs {
  background-color: #c8e3f9;
  margin-bottom: 40px;
}
.breadCrumbs .wrap-content {
  padding: 0.75rem 10px;
  max-width: 1180px;
}
.breadCrumbs .wrap-content .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
}
.breadCrumbs .wrap-content .breadcrumb-item a {
  color: var(--color-black);
}
.breadCrumbs .wrap-content .breadcrumb-item.active a {
  color: var(--color-gray);
}

.pic_ct {
  margin-bottom: 15px;
}
.btn_ct {
  text-align: center;
  margin-top: 33px;
  position: relative;
}
.btn_ct:after {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #ccc;
  height: 1px;
  content: "";
}
.btn_ct a {
  display: inline-block;
  background: #fff;
  border: 1px solid #cccccc;
  border-top: 0;
  color: #333333;
  font-size: 14px;
  padding: 5px 31px 13px 31px;
  position: relative;
  z-index: 1;
}
.btn_ct a p {
  margin-bottom: 0px;
  font-size: 14px;
}
.btn_ct a p b {
}

.pic_ct img {
  width: 100%;
}
.mw_ct p {
  margin-bottom: 0px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #0066cc;
  text-transform: capitalize;
}
/* index */
.index1 {
    padding: 62px 16px 38px;
    background: radial-gradient(circle at 10% 10%, rgba(255, 194, 11, .28), transparent 25%), radial-gradient(circle at 90% 15%, rgba(14, 165, 233, .17), transparent 28%), linear-gradient(135deg, #eef9ff 0%, #fff8df 55%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.index1 .left {
    padding-right: 30px;
}
.index1 .row {
    align-items: center;
}
.index1 .tieude1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4c2;
    color: #8a6200;
    border: 1px solid #ffe38a;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}
.index1 .tieude2 h1 {
    margin: 0;
    max-width: 700px;
    color: #082f45;
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    font-weight: 900;
}
.index1 .tieude2 h1 span:last-child {
    color: #e39b00;
}
.index1 .tieude3 {
    margin: 18px 0 18px;
    max-width: 700px;
    color: #475467;
    font-size: 17px;
}
.index1 .link >a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    box-shadow: 0 14px 30px rgba(255, 194, 11, .25);
}
.index1 .box {
    margin-top: 18px;
    background: #ffffff;
    border: 1px solid #dbe6ee;
    border-radius: 22px;
    padding: 14px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 30px rgba(8, 47, 69, .08);
    max-width: 760px;
}
.index1 .box .in1 {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #f3fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    color: #0b78b8;
}
.index1 .box .in2 {
    flex: 1 1 240px;
    min-width: 220px;
}
.index1 .box .in3 >a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #70c855;
    color: #ffffff;
    text-decoration: none;
    border-radius: 14px;
    padding: 12px 16px;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}
.index1 .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}
.index1 .bottom span {
    background: #ffffff;
    border: 1px solid #e5edf5;
    border-radius: 999px;
    padding: 8px 12px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}
.index1 .right {
    background: linear-gradient(145deg, #052f45, #0b5f88);
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 24px 56px rgba(5, 47, 69, .20);
    position: relative;
    overflow: hidden;
}
.index1 .line1 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.index1 .line1 b {
    color: #ffffff;
    font-size: 18px;
}
.index1 .line1 span {
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 900;
}
.index1 .right .box{
    background: transparent;
    border: 0px;
    margin-top: 0px;
    padding-top: 0px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}
.index1 .right .box .row {
    /* display: flex; */
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}
.index1 .right .box b{
    margin-top: 7px;
    font-size: 14px;
}

.index1 .right .box div {
    color: #667085;
    font-size: 12px;
    margin-top: 3px;
    line-height: 1.5;
}
.index1 .right .in1 {
    background: #ffffff;
    border-radius: 17px;
    padding: 15px;
    width: unset;
    height: unset;
    display: flex;
    align-items: unset;
    flex: unset;
    flex-direction: column;
    color: #000;
}
.index1 .right .box svg{
    margin-bottom: 6px;
}
.index1 .right .in1 svg {
    color: #000;
}
.index1 .right .in3 svg {
    color: #179c5b;
}
.index1 .right .in4 svg {
    color: #0b78b8;
}
.index1 .right .in2 svg {
    color: #e39b00;
}
.index1 .right .in2 {
    background: #fff9e8;
    border-radius: 17px;
    padding: 15px;
    min-width: unset;
    flex: unset;
}
.index1 .right .in3 {
    background: #ecfdf3;
    border-radius: 17px;
    padding: 15px;
}
.index1 .right .in4 {
    background: #e8fbff;
    border-radius: 17px;
    padding: 15px;
}
.index1 .right .box2 .inner{
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 13px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    box-shadow: 0 10px 24px rgba(5, 47, 69, .15);
}
.index1 .right .box2 .in1 {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #eef8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    color: #0b78b8;
}
.index1 .right .box2 .in2 {
    flex: 1 1 220px;
    min-width: 200px;
    background: unset;
    padding: 0px;
}
.index1 .right .box2 .in2 b {
    display: block;
}
.index1 .right .box2 .in3{
    background: unset;
}
.index1 .right .box2 .in3 >a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #052f45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 13px;
    padding: 11px 15px;
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}
.hotro{
    padding: 26px 16px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-top: 1px solid #edf2f7;
}
.hotro .tieude1 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff4c2;
    color: #8a6200;
    border: 1px solid #ffe38a;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 9px;
}
.hotro h2 {
    margin: 0;
    color: #082f45;
    font-size: clamp(25px, 3.6vw, 32px);
    line-height: 1.18;
    letter-spacing: -.6px;
    font-weight: 900;
}
.hotro h6 {
    margin: 9px 0 23px;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}
.hotro .wrap-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    align-items: stretch;
}
.hotro .box {
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-sizing: border-box;
}
.hotro .box.in1 {
    border: 1px solid #dce8f2;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}
.hotro .box.in2 {
    border: 1px solid #f1df9b;
    box-shadow: 0 10px 24px rgba(255, 194, 11, .06);
}
.hotro .box.in3 {
    border: 1px solid #cfe8f7;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}
.hotro .box .left {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
}
.hotro .box .right {
    min-width: 0;
    flex: 1;
}
.hotro .right b {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.hotro .in1 .right b {
    color: #8a6200;
}
.hotro .in2 .right b {
    color: #8a6200;
}
.hotro .in3 .right b {
    color: #0b4770;
}
.hotro .in1 .left {
    background: linear-gradient(135deg, #fff4c2, #ffdd55);
    color: #8a6200;
}
.hotro .in2 .left {
    background: #fff9e8;
    color: #e39b00;
}
.hotro .in3 .left {
    background: #e8fbff;
    color: #0b78b8;
}
.hotro .right h3{
    color: #0b2536;
    font-size: 18px;
    line-height: 1.3;
}

.hotro .right p {
    margin: 6px 0 9px;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}
.hotro .box .right >a{
    font-size: 13px;
    font-weight: 900;
}
.hotro .in1 .right >a {
    color: #0b4770;
}
.hotro .in2 .right >a{
  color: #8a6200;
}
.hotro .in3 .right >a{
  color: #0b4770;
}
.dichvu{
    color: #10202b;
    font-size: 16px;
    padding: 76px 16px;
    background: radial-gradient(circle at 8% 8%, rgba(255, 194, 11, .20), transparent 24%), radial-gradient(circle at 88% 12%, rgba(14, 165, 233, .18), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
    position: relative;
    overflow: hidden;
}
.dichvu .baotieude{
    text-align: center;
    max-width: 930px;
    margin: 0 auto 34px;
}
.dichvu .tieude1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4c2;
    color: #8a6200;
    border: 1px solid #ffe38a;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 0 10px 24px rgba(255, 194, 11, .18);
}
.dichvu h2 {
    margin: 0;
    color: #082f45;
    font-size: clamp(30px, 4.5vw, 42px);
    line-height: 1.12;
    letter-spacing: -1.3px;
    font-weight: 900;
}
.dichvu .slogan {
    margin: 16px auto 0;
    color: #5b6b7d;
    font-size: 17px;
    max-width: 820px;
}
.dichvu .slogan1 {
    margin: 20px auto 0;
    max-width: 860px;
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 22px;
    padding: 14px 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
    color: #0b2536;
    font-weight: 800;
    font-size: 15px;
}
.dichvu .wrapbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.dichvu .left {
    background: radial-gradient(circle at 14% 12%, rgba(255, 194, 11, .32), transparent 28%), radial-gradient(circle at 88% 0%, rgba(56, 200, 238, .20), transparent 30%), linear-gradient(135deg, #052f45 0%, #073b55 56%, #032333 100%);
    border-radius: 38px;
    padding: 34px;
    color: #ffffff;
    box-shadow: 0 24px 64px rgba(5, 47, 69, .25);
    position: relative;
    overflow: hidden;
    min-height: 520px;
}
.dichvu .left .tieude1 {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .20);
    color: #fff4c2;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}
.dichvu h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(26px, 3.8vw, 34px);
    line-height: 1.12;
    letter-spacing: -1px;
}
.dichvu h6 {
    margin: 16px 0 0;
    color: #d9edf7;
    font-size: 16px;
    line-height: 26px;
}
.dichvu .left .inner {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 26px;
    padding: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}
.dichvu .inner .in {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    color: #10202b;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}
.dichvu .left .in .line1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8eef6;
    padding-bottom: 12px;
    margin-bottom: 14px;
}
.dichvu .left .line1 b {
    color: #082f45;
    font-size: 18px;
}
.dichvu .left .line1 span {
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
}
.dichvu .in .noidung {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.dichvu .noidung .con{
   border-radius: 16px;
    padding: 12px;
}
.dichvu .noidung .con:nth-child(1) {
    background: #f6fbff;
    border: 1px solid #e1edf8;
}
.dichvu .noidung .con b {
    display: block;
}
.dichvu .noidung .con span {
    font-size: 13px;
    color: #667085;
}
.dichvu .noidung .con:nth-child(1) b {
    color: #0b4770;
}
.dichvu .noidung .con:nth-child(2) b {
    color: #8a6200;
}
.dichvu .noidung .con:nth-child(3) b {
    color: #027a48;
}
.dichvu .noidung .con:nth-child(4) b {
    color: #6d28d9;
}
.dichvu .noidung .con:nth-child(2){
    background: #fff9e8;
    border: 1px solid #ffe38a;
}
.dichvu .noidung .con:nth-child(3){
    background: #ecfdf3;
    border: 1px solid #c7f0d8;
}
.dichvu .noidung .con:nth-child(4){
    background: #f5edff;
    border: 1px solid #e6d6ff;
}
.dichvu .bottom{
  position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.dichvu .bottom >a:nth-child(1) {
    display: inline-block;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 194, 11, .28);
}
.dichvu .bottom >a:last-child {
    display: inline-block;
    background: #ffffff;
    color: #052f45;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 255, 255, .16);
}
.dichvu .right{
  display: grid;
    gap: 16px;
    align-content: stretch;
}
.dichvu .right .box {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 28px;
    padding: 24px;
    text-decoration: none;
    color: #10202b;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}
.dichvu .right .box span {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    color: #082f45;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
}
.dichvu .right .in1 span{
    background: linear-gradient(135deg, #fff4c2, #ffdd55);
    box-shadow: 0 10px 22px rgba(255, 194, 11, .22);
}
.dichvu .right .in2 span{
    background: linear-gradient(135deg, #e8fbff, #b7ecf8);
    color: #027a9b;
    box-shadow: 0 10px 22px rgba(56, 200, 238, .18);
}
.dichvu .right .in3 span{
    background: linear-gradient(135deg, #ecfdf3, #bff3d9);
    color: #027a48;
    box-shadow: 0 10px 22px rgba(16, 185, 129, .16);
}
.dichvu .right .box div{
    display: block;
    color: #0b2536;
    font-size: 23px;
    line-height: 1.2;
}
.dichvu .right .box div b {
    display: block;
}
.dichvu .right .box div them {
    display: block;
    color: #667085;
    font-size: 16px;
    line-height: 23px;
    margin-top: 12px;
}
.dichvu .right .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.dichvu .right .grid >a{
  background: #ffffff;
    color: #10202b;
    text-decoration: none;
    border: 1px solid #e8eef6;
    border-radius: 22px;
    padding: 17px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}
.dichvu .right .grid >a:nth-child(1) {
    background: #052f45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 22px;
    padding: 17px;
    box-shadow: 0 12px 30px rgba(5, 47, 69, .14);
}
.dichvu .right .grid >a b {
    display: block;
    font-size: 18px;
    height: 54px;
}
.dichvu .right .grid a span {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}
.dichvu .right .grid a:first-child span{
  color: #d9edf7;
}
.index2 {
  color: rgb(16, 32, 43);
    font-size: 16px;
    padding: 72px 16px;
    background: radial-gradient(circle at 12% 0%, rgba(255, 194, 11, .14), transparent 26%), radial-gradient(circle at 88% 8%, rgba(11, 71, 112, .10), transparent 28%), rgb(246, 251, 255);
    position: relative;
    overflow: hidden;
}

.index2 .baotieude {
    text-align: center;
}
.index2 .tieude {display: inline-block;background: #fff4c2;color: #8a6200;border-radius: 999px;padding: 7px 14px;font-size: 13px;font-weight: 800;margin-bottom: 14px;}
.index2 .slogan {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.22;
  color: #0b2536;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 25px;
}
.index2 .khunggiamgia {
    max-width: 980px;
    margin: 18px auto 0;
    background: linear-gradient(135deg, #fff4c2, #fff9e6);
    border: 1px solid #ffdc73;
    border-radius: 26px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(255, 194, 11, .18);
    box-sizing: border-box;
}

.index2 .khunggiamgia .line1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.index2 .khunggiamgia .line1 span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffc20b;
    color: #082f45;
    font-weight: 900;
    font-size: 20px;
    flex: 0 0 auto;
}

.index2 .khunggiamgia .line1 span:last-child {
    color: #0b2536;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.index2 .khunggiamgia .line2 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.index2 .khunggiamgia .line2 span:nth-child(1) {
    display: inline-block;
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid #f1d37a;
    border-radius: 999px;
    padding: 10px 18px;
    color: #0b4770;
    font-size: 14px;
    font-weight: 900;
    flex: 0 0 auto;
}

.index2 .khunggiamgia .line2 span:nth-child(2) {
    display: inline-block;
    white-space: nowrap;
    background: #052f45;
    border: 1px solid #052f45;
    border-radius: 999px;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    flex: 0 0 auto;
}

.index2 .khunggiamgia .line2 span:nth-child(3) {
    display: inline-block;
    white-space: nowrap;
    background: #e55700;
    border: 1px solid #e55700;
    border-radius: 999px;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    flex: 0 0 auto;
}
.index2 .centernav {
    text-align: center;
    margin-top: 30px;
}
.index2 .nav {
    border: 0;
    display: inline-block;
    margin: 0px auto 25px;
    border-radius: 30px;
}
.index2 .nav li {display: inline-block;}
.index2 .nav li >a {
    display: block;
    padding: 8px 21px;
    font-size: 18px;
    margin: 0px 2px;
    border: 1px solid #dbe7f3;
      border-radius: 999px;
    background: #ffffff;
    color: #0b4770;
    font-weight: 900;
}
.index2 .nav li >a.active, .index2 .nav li >a:hover {
    /* background: var(--color-web); */
    border: 1px solid #052f45;
    background: #052f45;
    color: #fff;
}
.index2 .tab-content .tab-pane .inner{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
}

.index2 .tab-content .tab-pane .inner .box:nth-child(2), .index2 .tab-content .tab-pane .inner .box:hover {
    border: 2px solid #ffdc73;
    box-shadow: 0 18px 50px rgba(255, 194, 11, .18);
}
.index2 .box {
  background: #ffffff;
  border: 2px solid #e8eef6;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .07);
  display: flex;
  flex-direction: column;
}
.index2 .box .hinh {
  position: relative;
  margin-bottom: 20px;
}
.index2 .box .hinh img {
    max-height: 126px;
    margin-top: -34px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.index2 .box .hinh span {
  position: absolute;
  left: 0;
  background: #eb5757;
  font-size: 13px;
  color: #fff;
  border-radius: 5px;
  padding: 1px 8px;
}
.index2 .box .noidung {position: relative;overflow: hidden;}
.index2 .box .noidung h3 {
  font-size: 24px;
    margin: 0 0 12px;
    color: #0b2536;
}
.index2 .box .noidung .phobien {
    position: absolute;
    right: 0px;
    top: 0px;
    background: #fff3c4;
    color: #8a6200;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
}
.index2 .box .noidung h5 {
  font-size: 16px;
  color: #000;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 25px;
}
.index2 .box .noidung .gia {
  border-top: 1px solid #dddddd4a;
  padding: 10px 0px;
  width: 100%;
  float: left;
  display: block;
  font-size: 14px;
  color: #000;
}
.index2 .box .noidung .chenngang {
    float: left;
    font-size: 28px;
    color: #e55700;
    font-weight: 900;
    margin: 26px 0 18px;
    clear: both;
}
.index2 .box .noidung .chenngang span {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-left: 5px;
}
.index2 .box .noidung .gia span:nth-child(1) {
  float: left;
  /* color: #666; */
}
.index2 .box .noidung .gia span:nth-child(2) {
  float: right;
  font-weight: 600;
}
.index2 .box .giam1{
  background: #f8fbff;
  border-radius: 14px;
  padding: 9px 12px!important;
  border: 0px;
  margin-bottom: 8px;
}
.index2 .box .giam2{
  background: #fff8dd;
  border-radius: 14px;
  padding: 9px 12px !important;
  border: 0px;
  margin-bottom: 8px;
}
.index2 .box .giam3{
  background: #fff4c2;
  border-radius: 14px;
  padding: 9px 12px !important;
  border: 0px;
}
.index2 .dk{
    display: inline-block;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
    text-align: center;
    margin-top: 20px;
}
.index2 .dk:hover {
    background: #f8e4a6;
}
.index2 .xemtatca{
  display: block;
  max-width: 357px;
  background: #ffffff;
  color: #0b4770;
  text-decoration: none;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  margin: 25px auto 0px;
  transition: all 0.3s;
}
.index2 .xemtatca:hover{
  background: #ffc616;
  color: #fff;
}
.chungchi{
    color: rgb(16, 32, 43);
    font-size: 16px;
    padding: 74px 16px;
    background: radial-gradient(circle at 14% 12%, rgba(112, 200, 85, .12), transparent 26%), radial-gradient(circle at 86% 10%, rgba(255, 194, 11, .16), transparent 28%), linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 255, 247) 100%);
    position: relative;
    overflow: hidden;
}

.chungchi .baotieude {
    max-width: 820px;
    margin: auto;
    text-align: center;
}

.chungchi .tieude1 {
    display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(255, 194, 11, .18);
}
.chungchi h2 {
    margin: 0 auto;
    max-width: 820px;
    font-size: 38px;
    line-height: 1.18;
    color: #0b2536;
    font-weight: 900;
    letter-spacing: -1px;
}
.chungchi .tieude3{
      margin: 14px auto 0;
    color: #667085;
}
.wrapchungchi {
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    align-items: stretch;
}
.wrapchungchi .box{
  border-radius: 28px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wrapchungchi .box:nth-child(1) {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    border: 2px solid #ffc20b;
    box-shadow: 0 20px 48px rgba(255, 194, 11, .22);
}
.wrapchungchi .box:nth-child(2){
    background: #ffffff;
    border: 1px solid #e8eef6;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}
.wrapchungchi .box:nth-child(3){
    background: #ffffff;
    border: 2px solid #38c8ee;
    box-shadow: 0 18px 45px rgba(56, 200, 238, .16);
}
.wrapchungchi .box .goiy {
  position: absolute;
  right: 18px;
  top: 18px;
  color: #082f45;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 900;
}
.wrapchungchi .box .goiy.e1{
  background: linear-gradient(135deg, #ffc20b, #ffdd55);
  box-shadow: 0 8px 18px rgba(255, 194, 11, .28);
}
.wrapchungchi .box .goiy.e2{
  background: #e8fbff;
    color: #027a9b;
    border: 1px solid #b7ecf8;
}
.wrapchungchi .box .inner{
  background: #f8fafc;
    border: 1px solid #e8eef6;
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 18px;
}
.wrapchungchi .box .inner .tieude {
    height: 46px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    color: #475467;
    font-size: 13px;
    margin-bottom: 12px;
}
.wrapchungchi .box .inner .mota{
      background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
}
.wrapchungchi .mota h3{
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.25;
    color: #0b2536;
}
.wrapchungchi .mota p {
    color: #667085;
    font-size: 14px;
    margin: 0;
}
.wrapchungchi .inner2 {
    border: 1px solid #e8eef6;
    border-radius: 18px;
    padding: 16px;
    margin-top: auto;
}
.wrapchungchi .inner2 .gia div {
    display: block;
    color: #667085;
    font-size: 14px;
    margin-bottom: 4px;
}
.wrapchungchi .box .inner2 .gia1{
  display: inline-block;
  border-radius: 18px;
  padding: 10px 16px;
  color: #2f8f12;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.wrapchungchi .box:nth-child(1) .inner2 .gia1 {
    background: #fff4c2;
    border: 1px solid #ffdc73;
}
.wrapchungchi .chitiet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}
.wrapchungchi .chitiet span {
    color: #0b2536;
    text-decoration: none;
    font-weight: 900;
    cursor: default;
}
.wrapchungchi .chitiet >a {
    display: inline-block;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    border: 1px solid #ffc20b;
    text-decoration: none;
    border-radius: 14px;
    padding: 10px 18px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(255, 194, 11, .26);
    transition: all 0.3s;
}
.wrapchungchi .chitiet >a:hover {
    background: var(--color-web);
}
.wrapchungchi .inner2 .gia1 span {
    font-size: 16px;
    color: #344054;
    font-weight: 800;
}
.combo{
    color: #10202b;
    font-size: 16px;
    padding: 64px 16px;
    background: #ffffff;
}
.combo .wrap-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    align-items: stretch;
}
.combo .left {
    background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .42), transparent 22%), radial-gradient(circle at 78% 0%, rgba(255, 255, 255, .35), transparent 28%), linear-gradient(135deg, #ffe56b, #ffb000);
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 18px 44px rgba(255, 194, 11, .22);
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.combo .left .in1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #ffffff;
    color: #8a6200;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}
.combo .left .in2 {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.12;
    margin: 0;
    color: #211b18;
    letter-spacing: -1px;
}
.combo .left .in3 {
    color: #4b3c00;
    margin: 14px 0 22px;
    font-size: 17px;
    max-width: 620px;
}
.combo .left .in4 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.combo .left .in4 >a:first-child {
    display: inline-block;
    background: #052f45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 23px;
    font-weight: 900;
}
.combo .left .in4 >a:last-child {
    background: #ffffff;
    color: #0b4770;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    border: 1px solid rgba(5, 47, 69, .12);
}
.combo .right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}
.combo .right .inner1 {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.combo .right .inner1 .in1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #052f45;
    color: #fff4c2;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}
.combo .right .inner1 .h3 {
    font-size: 23px;
    margin: 0 0 14px;
    color: #0b2536;
}
.combo .right .inner1 .in2 {
    display: grid;
    gap: 10px;
    color: #344054;
    font-size: 15px;
}
.combo .right .inner2 {
    background: linear-gradient(145deg, #082f45, #0a5b86);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .12);
    color: #ffffff;
}
.combo .right .inner2 .in1{
  display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}
.combo .right .inner2 h3 {
  font-size: 23px;
    margin: 0 0 14px;
    color: #ffffff;
}
.combo .right .inner2 .in2 {
  display: grid;
    gap: 10px;
    color: #d8edf7;
    font-size: 15px;
}
.gioithieu{
  color: #10202b;
    font-size: 16px;
    padding: 78px 16px;
    background: radial-gradient(circle at 10% 6%, rgba(255, 194, 11, .18), transparent 24%), radial-gradient(circle at 90% 12%, rgba(14, 165, 233, .14), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    position: relative;
    overflow: hidden;
}
.gioithieu .wrap-main{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-bottom: 26px;
}
.gioithieu .left{
  background: linear-gradient(135deg, #052f45 0%, #0b5e87 58%, #0a7fb0 100%);
    border-radius: 36px;
    padding: 34px;
    color: #ffffff;
    box-shadow: 0 22px 58px rgba(5, 47, 69, .22);
    position: relative;
    overflow: hidden;
    min-height: 360px;
}
.gioithieu .left .in1{
  display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}
.gioithieu .left h2{
  margin: 0;
    color: #ffffff;
    font-size: clamp(29px, 4.3vw, 39px);
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 900;
}
.gioithieu .left .in2{
  margin: 16px 0 0;
    color: #d9edf7;
    font-size: 17px;
}
.gioithieu .left .in3{
  margin-top: 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    padding: 13px 15px;
    color: #fff4c2;
    font-weight: 900;
    font-size: 15px;
}
.gioithieu .left .in4{
  display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.gioithieu .left .in4 >a:first-child{
  display: inline-block;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 194, 11, .28);
}
.gioithieu .left .in4 >a:last-child{
  display: inline-block;
    background: #ffffff;
    color: #052f45;
    text-decoration: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 255, 255, .16);
}
.gioithieu .right{
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    align-content: stretch;
}
.gioithieu .box{
  background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .07);
}
.gioithieu .box b{
  display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 12px;
}
.gioithieu .box:nth-child(1) b{
      background: #fff4c2;
    color: #8a6200;
}
.gioithieu .box:nth-child(2) b{
  background: #e8fbff;
    color: #027a9b;
}
.gioithieu .box:nth-child(3) b{
  background: #ecfdf3;
    color: #027a48;
}
.gioithieu .box:nth-child(4) b{
  background: #f5edff;
    color: #6d28d9;
}
.gioithieu .box h3{
  margin: 0 0 8px;
    color: #0b2536;
    font-size: 22px;
    line-height: 1.22;
}
.gioithieu .box p{
  margin: 0;
    color: #667085;
    font-size: 15px;
}
.gioithieu .wrap-main:nth-child(2){
}
.gioithieu .bottom{
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 12px;
}
.gioithieu .bottom >a{
  color: #10202b;
    border-radius: 22px;
    padding: 17px;
}
.gioithieu .bottom >a:nth-child(1){
  background: #f6fbff;
    border: 1px solid #dbe7f3;
}
.gioithieu .bottom >a:nth-child(2){
  background: #fff9e8;
    border: 1px solid #ffe38a;
}
.gioithieu .bottom >a:nth-child(3){
  background: #ecfdf3;
    border: 1px solid #c7f0d8;
}
.gioithieu .bottom >a:nth-child(4){
  background: #e8fbff;
    border: 1px solid #b7ecf8;
}
.gioithieu .bottom >a:nth-child(5){
  background: #ffffff;
    border: 1px solid #e8eef6;
}
.gioithieu .bottom >a:nth-child(6){
  background: #ffffff;
    border: 1px solid #e8eef6;
}
.gioithieu .bottom >a:nth-child(7){
  background: #ffffff;
    border: 1px solid #e8eef6;
}
.gioithieu .bottom >a:nth-child(8){
  background: #ffffff;
    border: 1px solid #e8eef6;
}
.gioithieu .bottom >a b{
  display: block;
    color: #0b2536;
    font-size: 18px;
}
.gioithieu .bottom >a span{
  display: block;
    color: #667085;
    font-size: 13px;
    margin-top: 5px;
}
.quytrinh{
  color: #ffffff;
    font-size: 16px;
    padding: 76px 16px;
    background: radial-gradient(circle at 16% 10%, rgba(255, 194, 11, .16), transparent 24%), radial-gradient(circle at 84% 8%, rgba(22, 163, 74, .16), transparent 28%), linear-gradient(135deg, #052f45 0%, #073b55 52%, #032333 100%);
    position: relative;
    overflow: hidden;
}
.quytrinh .baotieude{
  text-align: center;
    max-width: 850px;
    margin: 0 auto 36px;
}
.quytrinh .in1{
  display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}
.quytrinh h2{
  margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.18;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1px;
}
.index4 {
  margin: 50px 0px 0px;
  padding: 72px 16px;
  background: rgb(246, 251, 255);
}
.index4 .slogan {
  display: block;
  max-width: 241px;
  background: #fff4c2;
  color: #8a6200;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 800;
  margin: 0px auto 14px;
}
.quytrinh .in2{
  margin: 14px auto 0;
    color: #c7d9e5;
    font-size: 17px;
}
.quytrinh .wrap{
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: stretch;
}
.quytrinh .box{
  background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 26px;
    padding: 22px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, .12);
}
.quytrinh .box b{
  display: flex;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}
.quytrinh .box:nth-child(1) b{
  background: #ffc20b;
    color: #052f45;
}
.quytrinh .box:nth-child(2) b{
  background: #fff4c2;
    color: #8a6200;
}
.quytrinh .box:nth-child(3) b{
  background: #e8fbff;
    color: #027a9b;
}
.quytrinh .box:nth-child(4) b{
  background: #ecfdf3;
    color: #027a48;
}
.quytrinh .box:nth-child(5) b{
  background: #ffffff;
    color: #052f45;
}
.quytrinh .box h3{
  margin: 0 0 8px;
    color: #ffffff;
    font-size: 21px;
}
.quytrinh .box p{
  margin: 0;
    color: #c9dce8;
    font-size: 14px;
}
.khachluachon{
  color: rgb(16, 32, 43);
    font-size: 16px;
    padding: 72px 16px;
    background: rgb(255, 255, 255);
}
.khachluachon h2{
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.22;
  color: #0b2536;
  font-weight: 900;
  letter-spacing: -1px;
  text-align: center;
}
.khachluachon p{
  max-width: 760px;
  margin: 14px auto 0;
  color: #667085;
  text-align: center;
}
.khachluachon .wrap{
  margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.khachluachon .box{
  background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.khachluachon .box b{
  display: block;
    color: #0b4770;
    font-size: 22px;
}
.khachluachon .box span{
  font-size: 13px;
    color: #667085;
}
.khachtieubieu{
    color: rgb(16, 32, 43);
    font-size: 16px;
    padding: 64px 16px;
    background: rgb(255, 255, 255);
}
.khachtieubieu .baotieude{
    text-align: center;
}
.khachtieubieu .tieude{
  display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.khachtieubieu h2{
  margin: 0;
    font-size: clamp(26px, 3.8vw, 34px);
    line-height: 1.22;
    color: #0b2536;
    font-weight: 900;
    letter-spacing: -1px;
}
.khachtieubieu p{
  max-width: 760px;
    margin: 12px auto 0;
    color: #667085;
}
.khachtieubieu .wrap{
    margin-top: 20px;
}
.khachtieubieu .box{
    background: #ffffff;
    /* border: 1px solid #e8eef6; */
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    /* box-shadow: 0 8px 24px rgba(15, 23, 42, .04); */
}
.khachtieubieu .owl-dots {
   bottom: -54px;
   gap: 9px;
   background: #ffffff;
   border: 1px solid #e8eef6;
   border-radius: 999px;
   padding: 10px 14px;
   box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.khachtieubieu .owl-dots span {
    margin: 0px;
    height: 10px!important;
    width: 10px!important;
}
.khachtieubieu .owl-dots .active span {
    display: inline-block;
    width: 30px!important;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #ffc20b!important;
    box-shadow: 0 5px 14px rgba(255, 194, 11, .45);
    padding: 0;
    touch-action: manipulation;
    pointer-events: auto;
}
.index4 .box .tieude {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: unset;
  font-size: 14px;
}
.index4 .box .tieude div b{
  display: block;
  margin-bottom: 7px;
}
.index4 .box .tieude div div{
  font-size: 13px;
    color: #667085;
}

.index4 .box .sao {
    color: #ffb000;
    letter-spacing: 2px;
    font-size: 18px;
    display: block;
}
.index4 .wrapbox .slidekh {
  /* margin: 0px -15px; */
  max-height: 290px;
  overflow: hidden;
}
.index4 .wrapbox .slidekh .slick-prev {
  left: 0px;
}
.index4 .wrapbox .slidekh .slick-next:before {
  right: 0px;
}
.index4 .wrapbox .slidekh .slick-prev:before,
.index4 .wrapbox .slidekh .slick-next:before {
  opacity: 1;
  color: #000;
  font-family: "Font Awesome 5 free";
}
.index4 .wrapbox .slidekh .slick-dots {
  position: relative;
  bottom: 0px;
  margin-top: 26px;
}
.index4 .wrapbox .slidekh .slick-dots li button:before {
  font-size: 11px;
  color: var(--color-web);
}
.index4 .wrapbox .slidekh .slick-next {
  right: 0px;
}
.index4 .wrapbox .box {
  overflow: hidden;
  font-size: 16px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(232, 238, 246);
  border-radius: 24px;
  padding: 24px;
  box-shadow: rgba(15, 23, 42, 0.07) 0px 8px 24px;
  margin: 5px 10px 20px;
}
.index4 .tieude {
    /* display: flex; */
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.index4 .wrapbox .box img {
  max-width: 64px;
  border-radius: 50%;
}
.index4 .wrapbox .box .noidung {
  margin-top: 7px;
  color: #475467;
}
.index4 .wrapbox .box .noidung h6 {
  font-size: 15px;
  /* font-weight: 300; */
  line-height: 24px;
  max-height: 77px;
  overflow: hidden;
}
.index4 .owl-dots {
   bottom: -54px;
  gap: 9px;
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.index4 .owl-dots span {
    margin: 0px;
    height: 10px!important;
    width: 10px!important;
}
.index4 .owl-dots .active span {
    display: inline-block;
    width: 30px!important;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #ffc20b!important;
    box-shadow: 0 5px 14px rgba(255, 194, 11, .45);
    padding: 0;
    touch-action: manipulation;
    pointer-events: auto;
}
.index5 {
  color: rgb(16, 32, 43);
  font-size: 16px;
  padding: 64px 16px 30px;
  background: rgb(255, 255, 255);
}
.index5 .baotieude{
    text-align: center;
    margin-bottom: 39px;
}
.index5 .tieude {
  display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.index5 h2{
  margin: 0;
    font-size: clamp(26px, 3.8vw, 34px);
    line-height: 1.22;
    color: #0b2536;
    font-weight: 900;
    letter-spacing: -1px;
}
.index5 p{
      max-width: 760px;
    margin: 12px auto 0;
    color: #667085;
}
.index5 .box{
  background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 22px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.index5 .wrapbox {
  overflow: hidden;
  max-height: 457px;
}
.index5 .slidebaochi {
}
.index5 .slidebaochi .slick-prev {
  left: 0;
}
.index5 .slidebaochi .slick-next {
  right: 0;
}
.index5 .slidebaochi .slick-prev:before,
.index5 .slidebaochi .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
}
.index5 .slidebaochi .slick-dots {
  margin-top: 30px;
  position: relative;
  bottom: 0px;
}
.index5 .slidebaochi .slick-dots li button:before {
  color: var(--color-web);
  font-size: 10px;
}
.index5 .box {
  text-align: center;
  margin: 10px 10px 30px;
  /* border: 1px solid #ddd; */
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px 20px;
}
.index5 .box .innerbox {
}
.index5 .box img {
  height: 30px!important;
  display: block;
  margin: 0px auto 15px;
}
.index5 .box .noidung {}
.index5 .box .noidung h3 {
  display: block;color: #667085;font-size: 14px;
}
.index6 {
  color: rgb(16, 32, 43);
  font-size: 16px;
  padding: 68px 16px;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  overflow: hidden;
}
.index6 .baotieude{
  max-width: 760px;
  float: left;
}
.index6 .tieude {
  display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.index6 h2{
  margin: 0;
    font-size: clamp(26px, 3.8vw, 34px);
    line-height: 1.22;
    color: #0b2536;
    font-weight: 900;
    letter-spacing: -1px;
}
.index6 p{
  margin: 12px 0 0;
    color: #667085;
}
.index6 .wrapbox {
  overflow: hidden;
  float: left;
  width: 100%;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.index6 .box {
    background: #ffffff;
    border: 1px solid #e8eef6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.index6 .box .innerbox {}
.index6 .box .hinh{
    height: 165px;
    background: linear-gradient(135deg, #eaf8ff, #fff4c2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.index6 .box img {}
.index6 .box .noidung {
    padding: 20px;
}

.index6 .line1 {
    margin: 10px 0 12px;
    color: #98a2b3;
    font-size: 12px;
    font-weight: 700;
}
.index6 .box .noidung h3 {
    margin: 12px 0 8px;
    font-size: 20px;
    line-height: 1.35;
    color: #0b2536;
}
.index6 .box .noidung h3:hover {
  color: #00c4ff;
}
.index6 .box .noidung h6 {
    margin: 0;
    color: #667085;
    font-size: 14px;
    max-height: 66px;
    line-height: 22px;
    overflow: hidden;
}
.index6 .box .noidung .ngaythang {}
.index6 .xemtatca{
  display: inline-block;
  float: right;
  margin-top: 141px;
}
.index6 .xemtatca >a{
  display: block;
    background: #ffffff;
    color: #0b4770;
    border: 1px solid #dbe7f3;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    cursor: default;
}
.index7 {
  color: rgb(16, 32, 43);
    font-size: 16px;
    padding: 54px 16px;
    background: rgb(246, 251, 255);
}
.index7 .baotieude {
    text-align: center;
    margin-bottom: 30px;
}
.index7 .wrap-main {
  overflow: hidden;
  padding: 0px 5px;
}
.index7 .tieude {
  display: inline-block;
    background: #fff4c2;
    color: #8a6200;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.index7 h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.22;
    color: #0b2536;
    font-weight: 900;
    letter-spacing: -1px;
}
.index7 .baotieude p {
    max-width: 760px;
    margin: 12px auto 0;
    color: #667085;
    font-size: 16px;
}
.index7 .wrapbox {
  max-width: 920px;
  margin: 30px auto 0;
  /* display: grid; */
  /* gap: 12px; */
}

.index7 .nav-tabs {
    border: 0px;
}
.boxcauhoi {
  background: #ffffff;
  border: 1px solid #e8eef6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  width: 100%;
  margin-bottom: 13px;
}
.boxcauhoi > a {
  color: #000;
}
.boxcauhoi > a.active,
.boxcauhoi > a.active span i {
  color: #00293a;
}
.boxcauhoi > a.active span i:first-child {
    display: none;
}
.boxcauhoi > a.active span i:last-child {
    display: block;
}
.boxcauhoi > a.active h3 {
  color: #000;
}
.boxcauhoi h3 {
  padding: 14px 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 17px;
  cursor: pointer;
}
.boxcauhoi h3 .secon i:nth-child(1) {transform: translateY(-7px);}
.boxcauhoi h3 .secon i:nth-child(2) {
  display: none;
}
.boxcauhoi h3 .secon {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  text-align: right;
}
.boxcauhoi h6 {
  padding: 15px 20px;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  /* display: none; */
  box-sizing: border-box;
}
.boxcauhoi > a.active h6 {
  display: block;
  /* height: auto; */
}
.boxcauhoi h6 {
  display: none;
  overflow: hidden;
  /* height: 0px; */
  transition: all 0.3s;
}
.tuvannhanh{
  color: rgb(16, 32, 43);
    font-size: 16px;
    padding: 66px 16px 34px;
    background: rgb(255, 255, 255);
}
.tuvannhanh .wrap-main{
  background: radial-gradient(circle at 12% 18%, rgba(255, 194, 11, .20), transparent 26%), radial-gradient(circle at 88% 20%, rgba(0, 122, 255, .18), transparent 28%), linear-gradient(135deg, #052f45 0%, #075985 100%);
    border-radius: 34px;
    padding: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .16);
    overflow: hidden;
}
.tuvannhanh .left{
  flex: 1 1 600px;
    min-width: 260px;
}
.tuvannhanh .left .tieude{
  display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff4c2;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}
.tuvannhanh .left h2{
  font-size: 34px;
    line-height: 1.16;
    margin: 0 0 10px;
    color: #ffffff;
    letter-spacing: -1px;
}
.tuvannhanh .left p{
  margin: 0;
    color: #d8edf7;
    font-size: 16px;
    max-width: 760px;
}
.tuvannhanh .right{
  display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.tuvannhanh .right >a:first-child{
  display: inline-block;
    background: linear-gradient(135deg, #ffc20b, #ffdd55);
    color: #111827;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(255, 194, 11, .28);
}
.tuvannhanh .right >a:last-child{
  display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 900;
    cursor: default;
}
/* nội dung trang trong*/
.nhieubaiviet {
  overflow: hidden;
}
.bannerhost {
  text-align: center;
}
.contenchung {
}
.contenchung .top {
  text-align: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.contenchung .top .wrap-main {
  align-items: center;
  justify-content: space-between;
  display: flex;
}
.contenchung .top .wrap-main .active {
  border-bottom: 3px solid #00293a;
}
.contenchung .top .wrap-main .active span {
  color: #00293a;
}
.contenchung .top div > a {
  width: 100%;
  padding: 20px 0px 5px;
}
.contenchung .top div > a img {
  max-height: 70px;
}
.contenchung .top div > a span {
  display: block;
  color: #666;
  font-size: 17px;
  font-weight: 600;
}
.contenchung .middle {
  position: relative;
  display: block;
  background-color: #f1f3f6;
  overflow: hidden;
}
.contenchung .middle:before {
  content: "";
  border-top: 500px solid #ffffff;
  border-right-width: 100vw;
  border-right-style: solid;
  border-right-color: transparent;
  width: 0;
  top: 0;
  right: 0;
  position: absolute;
  z-index: 1;
}

.contenchung .middle:after {
  content: "";
  border-bottom: 500px solid #ffffff;
  border-left-width: 100vw;
  border-left-style: solid;
  border-left-color: transparent;
  width: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}
.contenchung .middle .wrap-main {
  position: relative;
  z-index: 2;
}
.contenchung .middle h2 {
  margin-top: 50px;
  text-align: center;
  color: #00293a;
  font-weight: 600;
  font-size: 37px;
}
.contenchung .middle h6 {
  text-align: center;
  font-size: 21px;
  margin-bottom: 45px;
}
.contenchung .middle .thangsudung {
  text-align: center;
}
.contenchung .middle .thangsudung .inner {
  border: 1px solid #ddd;
  display: inline-block;
  padding: 10px 30px;
  margin-bottom: 40px;
  border-radius: 10px;
  background: #fff;
}
.contenchung .middle .thangsudung .inner span:nth-child(4) {
  position: relative;
  background: #eee;
  border-radius: 6px;
}
.contenchung .middle .thangsudung .inner span:nth-child(4) img {
  position: absolute;
  top: -21px;
  left: calc(100% - 109px);
}
.contenchung .middle .thangsudung .inner span {
  display: inline-block;
  padding: 5px 23px;
  font-size: 16px;
  cursor: pointer;
  width: 150px;
  position: relative;
}
.contenchung .middle .thangsudung .inner span:first-child {
  background: #eee;
}
.contenchung .middle .thangsudung .inner span img {
  position: absolute;
  top: -31px;
  left: 25%;
}
.contenchung .middle .thangsudung .inner span:hover {
  border-radius: 6px;
  background: #ddd;
}
.contenchung .middle .thangsudung .inner span i {
  background: #f2994a;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 13px;
  color: #fff;
  font-style: normal;
}
.contenchung .middle .bangthongtin {
}
.contenchung .middle .bangthongtin table {
  width: 100%;
  text-align: center;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  background: #fff;
}
.contenchung .middle .bangthongtin table thead th {
  padding: 10px;
  font-size: 16px;
}
.contenchung .middle .bangthongtin table tr {
  border-bottom: 1px solid #ddd;
}
.contenchung .middle .bangthongtin table tbody tr td {
  padding: 14px 10px;
  font-size: 15px;
}
.contenchung .middle .bangthongtin table tbody tr td img {
  display: block;
  margin: 0px auto 5px;
}
.contenchung .middle .bangthongtin table tbody tr td.giachung img {
  /* display: inline-block;*/
  vertical-align: middle;
  margin-left: 10px;
  width: 30px;
}
.contenchung .middle .bangthongtin table tbody tr td:last-child a {
  border: 2px solid #00293a;
  padding: 5px 15px;
  border-radius: 6px;
  color: #00293a;
  text-transform: capitalize;
  cursor: pointer;
}
.contenchung .middle .bangthongtin table tbody tr td:last-child a:hover {
  background: #00293a;
  color: #fff;
}
.contenchung .middle .bangthongtin table tbody tr td.giachung {
  width: 220px;
}
.contenchung .middle .bangthongtin table tbody tr td .gia {
  /*display: inline-block; */
  vertical-align: middle;
  width: 160px;
  float: left;
}
.contenchung .middle .bangthongtin table tbody tr td .gia2nam {
  display: none;
}
.contenchung .middle .bangthongtin table tbody tr td .gia3nam {
  display: none;
}
.contenchung .middle .bangthongtin table tbody tr td .gia div:first-child {
  color: #f29947;
  font-weight: 600;
}
.contenchung .middle .bangthongtin table tbody tr td .gia div:first-child span {
  background: #eb5757;
  color: #fff;
  padding: 3px 8px;
  font-size: 13px;
  border-radius: 6px;
}
.contenchung .middle .bangthongtin table tbody tr td .gia div:last-child {
  /*text-decoration: line-through;
    color: #888;*/
}
.contenchung .middle .bangthongtin table tbody tr td:first-child {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.contenchung .middle .bangthongtin table tbody tr td:first-child span {
  position: absolute;
  top: 5px;
  background: #feb700;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
  padding: 2px 4px;
}
.contenchung .middle .bangthongtin table tbody tr:nth-child(2n-1) {
  background: #f8fafb;
}
.goihost {
}
.goihost .box {
  box-shadow: 0px 0px 10px 2px #eee;
  margin-bottom: 30px;
  display: block;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}
.goihost .box .x1 {
  width: calc(50% - 2px);
  display: inline-block;
  vertical-align: top;
  padding: 8px 10px;
}
.goihost .box .x1:first-child {
  font-weight: 600;
}
.goihost .box .x1:first-child span {
  display: block;
  background: #feb700;
  color: #fff;
  padding: 2px 10px;
  width: 86px;
  text-align: center;
  font-size: 12px;
  border-radius: 5px;
}
.goihost .box .x1 .gia div:nth-child(1) {
  color: #f00;
  font-weight: 600;
}
.goihost .box .x1 .gia div:nth-child(2) {
  font-size: 13px;
  text-decoration: line-through;
  color: #666;
}
.goihost .box .x1 img {
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}
.goihost .box .x2 > a {
  background: #0d92fc21;
  display: block;
  color: #0d92fc;
  padding: 7px 10px;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  margin: 5px 10px;
  border-radius: 5px;
}
.goihost .box .x1 .gia span {
  background: #f00;
  color: #fff;
  margin-left: 10px;
  display: inline-block;
  padding: 2px 10px;
  font-size: 11px;
  border-radius: 5px;
}
.goihost .box .x1 .gia2nam {
  display: none;
}
.goihost .box .x1 .gia3nam {
  display: none;
}
.contenchung .luuy {
  margin-bottom: 50px;
}
.contenchung .luuy span {
  color: #f2994a;
  font-weight: 600;
}
.contenchung .middle .quatang {
  padding: 30px 30px;
  color: #fff;
  margin-bottom: 40px;
}
.contenchung .middle .quatang img {
  display: inline-block;
  vertical-align: middle;
}
.contenchung .middle .quatang .center {
  display: inline-block;
  max-width: calc(100% - 90px - 280px);
  vertical-align: middle;
  margin: 0px 8px;
}
.contenchung .middle .quatang .center h3 {
  color: #fccb60;
}
.contenchung .middle .quatang .center h4 {
  font-size: 18px;
  line-height: 28px;
  max-height: 56px;
  overflow: hidden;
}
.contenchung .middle .quatang > a {
  display: inline-block;
  padding: 8px 10px;
  background: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 5px;
}
.contenchung .middle .dungthu {
  overflow: hidden;
  margin-bottom: 14px;
}
.contenchung .middle .dungthu .left {
  width: 49%;
  float: left;
  border-radius: 6px;
  overflow: hidden;
}
.contenchung .middle .dungthu .left iframe {
  width: 100%;
}
.contenchung .middle .dungthu .right {
  width: 48%;
  float: right;
}
.contenchung .middle .dungthu .right h2 {
  margin-top: 0px;
  text-align: left;
}
.contenchung .middle .dungthu .right > a.btndungthu {
  background: #00293a;
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 6px;
  text-transform: uppercase;
  margin-top: 0px;
  display: inline-block;
}
.contenchung .middle .bangsosanh {
}
.contenchung .middle .bangsosanh .wrapbox {
  position: relative;
  background: #fff;
  margin-bottom: 60px;
}
.contenchung .middle .bangsosanh table {
  /* position: absolute; */
  width: 595px;
  background: #fff;
}
.contenchung .middle .bangsosanh table:nth-child(1) {
  position: relative;
  z-index: 3;
}
.contenchung .middle .bangsosanh table:nth-child(2) {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 295px;
}
.contenchung .middle .bangsosanh table:nth-child(3) {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 590px;
}
.contenchung .middle .bangsosanh table tr {
  border-bottom: 1px solid #ddd;
}
.contenchung .middle .bangsosanh table tr td {
  padding: 10px 10px;
}
.contenchung .middle .bangsosanh table tbody tr td {
  max-height: 44px;
  overflow: hidden;
}
.contenchung .middle .bangsosanh table tbody tr td:nth-child(1) {
  background: #eeeeee54;
  font-size: 15px;
  font-weight: 600;
}
.contenchung .middle .bangsosanh table tbody tr td:nth-child(1) i {
  margin: 0px 5px;
  width: 20px;
}
.contenchung .middle .bangsosanh table tbody tr td:nth-child(2) {
  border-left: 1px solid #ddd;
}
.contenchung .middle .bangsosanh table thead tr {
  background: #fff;
}
.contenchung .middle .bangsosanh table thead tr th {
  padding: 10px 10px;
  font-size: 16px;
  color: #00293a;
}
.contenchung .middle .bangsosanh table thead tr th:first-child {
  width: 300px;
}
.contenchung .middle .bangsosanh table thead tr th:last-child {
  width: 295px;
}
.sosanhthongso {
  margin-bottom: 60px;
  margin-top: 40px;
}
.sosanhthongso .text-green-600 {
  color: #16a34a;
}
.sosanhthongso h3 {
  text-align: center;
  margin-bottom: 35px;
  color: #274e7d;
  font-weight: 600;
}
.sosanhthongso table {
  background: #fff;
  width: 100%;
  margin-bottom: 20px;
}
.sosanhthongso table thead {
}
.sosanhthongso table thead tr {
}
.sosanhthongso table tr {
  border-bottom: 1px solid #ddd;
}
.sosanhthongso table tr td {
  font-size: 13px;
  text-align: center;
  border-right: 1px solid #eee;
}
.sosanhthongso table tr td:first-child {
  background: #f3f6f97a;
  text-align: left;
  padding: 8px 12px;
  border-right: 0px;
}
.sosanhthongso table thead tr th {
  text-align: center;
  padding: 5px;
  font-size: 13px;
}
.sosanhthongso table thead tr th .ten {
  color: #00293a;
}
.sosanhthongso table thead tr th .gia {
  font-size: 10px;
}
.sosanhthongso table thead tr th .gia div:first-child {
  color: #f2994a;
}
.sosanhthongso table thead tr th .gia div:last-child i {
  color: #999;
  text-decoration: line-through;
}
.sosanhthongso table thead tr th .gia div:last-child span {
  background: #eb5757;
  color: #fff;
  text-decoration: unset;
  padding: 2px;
  border-radius: 4px;
}
.sosanhthongso table thead tr th > a.dk {
  display: block;
  border: 1px solid #00293a;
  margin: 15px auto 8px;
  width: 78px;
  border-radius: 5px;
  color: #00293a;
  font-weight: 500;
  cursor: pointer;
}
.sosanhthongso table thead tr th:first-child {
  text-align: left;
  padding: 5px 20px;
  background: #f3f6f97a;
  font-size: 17px;
}
.sosanhthongso table tbody {
}
/* =================================*/
.sosanhhosting {
}
.sosanhhosting .box {
  background: #fff;
  box-shadow: 0px 0px 10px 2px #ddd;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.sosanhhosting .box.active .inner {
  height: unset;
}
.sosanhhosting .box .inner {
  height: 200px;
  overflow: hidden;
}
.sosanhhosting .box .x1 {
  width: calc(50% - 2px);
  display: inline-block;
  vertical-align: top;
  padding: 5px 10px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.sosanhhosting .box .x1:nth-child(2n-1) {
  background: #f0f7fe;
}
.sosanhhosting .box .x1:nth-child(1),
.sosanhhosting .box .x1:nth-child(2) {
  background: #fff;
  border: 0px;
}
.sosanhhosting .box .x1:nth-child(1) {
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
}
.sosanhhosting .box .x1:nth-child(2) .ten {
  color: #00293a;
  font-weight: 600;
}
.sosanhhosting .box .x1:nth-child(2) .gia div:first-child {
  color: #f2994a;
  font-weight: 600;
}
.sosanhhosting .box .x1:nth-child(2) .gia div:last-child i {
  font-size: 12px;
  color: #666;
  text-decoration: line-through;
}
.sosanhhosting .box .x1:nth-child(2) .gia div:last-child span {
  background: #eb5757;
  color: #fff;
  text-decoration: unset;
  padding: 2px;
  border-radius: 4px;
}
.sosanhhosting .xemchitiet {
}
.sosanhhosting .xemchitiet span {
  display: block;
  text-align: center;
  padding: 10px;
}
.sosanhhosting .box.active .xemchitiet span:nth-child(1) {
  display: none;
}
.sosanhhosting .xemchitiet span:last-child {
  display: none;
}
.sosanhhosting .box.active .xemchitiet span:last-child {
  display: block;
}
.sosanhhosting div > a.dk {
  display: block;
  padding: 8px;
  text-align: center;
  margin: 10px;
  background: #eef7ff;
}
.taisaothue {
  background: #00293a;
  padding: 80px 0px;
  margin-bottom: 60px;
}
.taisaothue h3 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 50px;
}
.taisaothue .box {
  width: calc(25% - 3px);
  display: inline-block;
  padding: 0px 10px;
  vertical-align: top;
  margin-bottom: 20px;
}
.taisaothue .box .inner {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px 20px;
  height: 316px;
}
.taisaothue .box .inner .imgtop {
  max-height: 75px;
  display: block;
  margin: 0px auto 20px;
}
.taisaothue .box img {
}
.taisaothue .box .noidung {
}
.taisaothue .box .noidung h5 {
  color: #00293a;
  font-size: 16px;
  line-height: 21px;
  height: 42px;
  overflow: hidden;
  margin-bottom: 20px;
  font-weight: 600;
}
.taisaothue .box .noidung .mota {
}
.dangkydungthu {
  margin-bottom: 40px;
  overflow: hidden;
}
.dangkydungthu h4 {
  text-align: center;
  font-size: 37px;
  color: #00293a;
  font-weight: 600;
  /*margin-bottom: 30px;*/
}
.dangkydungthu h6 {
  text-align: center;
  margin-bottom: 30px;
}
.dangkydungthu .left {
  width: 403px;
  float: left;
}
.dangkydungthu .left img {
}
.dangkydungthu .right {
  width: calc(100% - 420px);
  float: left;
  padding: 0px 20px;
}
.dangkydungthu .right .slogan {
  font-size: 15px;
  margin-bottom: 20px;
}
.dangkydungthu .right .slogan span {
  font-weight: 600;
}
.dangkydungthu .right form {
}
.dangkydungthu .right form .inputbox {
  margin-bottom: 20px;
  display: block;
  float: left;
  width: 100%;
}
.dangkydungthu .right form .inputbox .box {
  width: 49%;
  float: left;
}
.dangkydungthu .right form .inputbox .box:last-child {
  float: right;
}
.dangkydungthu .right form .inputbox .box input,
.dangkydungthu .right form .inputbox .box select {
  box-shadow: none;
  background: #eee;
  font-size: 14px;
}
.dangkydungthu .right form .inputbox .box label {
}
.dangkydungthu .right form input.dkdt {
  background: #00293a;
  color: #fff;
  width: 190px;
  margin: 0px 0px 50px;
  display: inline-block;
  vertical-align: top;
}
.dangky-ctv {
  background: url(../images/bg-dkctv.png) no-repeat center top;
  overflow: hidden;
  color: #fff;
  padding: 70px 0px;
  margin-bottom: 60px;
}
.dangky-ctv h2 {
  text-align: center;
  background: linear-gradient(180deg, #fedf7a 0%, #fcbd4e 100%);
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 37px;
}
.dangky-ctv h3 {
  text-align: center;
  margin-bottom: 30px;
}
.dangky-ctv .wrapbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dangky-ctv .box {
  display: inline-block;
  /* width: calc(25% - 3px); */
  font-size: 16px;
  font-weight: 600;
  /* border-right: 1px solid #eeeeee3d; */
  padding: 0px 20px;
  text-align: center;
}
.dangky-ctv .box:last-child {
  border-right: 0px;
}
.dangky-ctv .box img {
  max-height: 50px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.dangky-ctv .btndangky {
  display: block;
  margin-top: 40px;
  text-align: center;
}
.dangky-ctv .btndangky > a {
  color: #fff;
  display: inline-block;
}
.dangky-ctv .btndangky > a:first-child {
  background: #00293a;
  padding: 14px 20px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 20px;
}
.dangky-ctv .btndangky > a:last-child {
  font-size: 16px;
  border: 1px solid #fff;
  padding: 12px 20px;
  width: 200px;
  text-align: center;
}
.dangky-ctv .btndangky > a:last-child i {
  margin-right: 10px;
}
.tenmientrong {
}
.tenmientrong .tieude {
  color: #00293a;
  margin-bottom: 30px;
  font-size: 30px;
}

.tenmientrong .slogan {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: -20px 0px 30px;
  color: #274e7d;
}
.tenmientrong .group1 {
  margin: 40px 0px;
}
.slidedktenien1 {
  max-height: 373px;
  overflow: hidden;
  border-radius: 10px;
}
.slidedktenien1 .box {
}
.slidedktenien1 .box img {
  border-radius: 10px;
  overflow: hidden;
}
.tenmientrong .group2 {
  margin-bottom: 50px;
}
.tenmientrong .group2 .box {
  width: calc(25% - 3px);
  display: inline-block;
  vertical-align: top;
}
.tenmientrong .group2 .box .inner {
  margin: 0px 15px;
  box-shadow: 0px 0px 17px 2px #ddd;
  text-align: center;
  border-radius: 15px;
  padding: 30px 20px;
}
.tenmientrong .group2 .box .hinh {
  width: 100px;
  height: 100px;
  background: #00293a;
  padding-top: 25px;
  margin: 0px auto 30px;
  border-radius: 50%;
}
.tenmientrong .group2 .box .ten {
  font-size: 16px;
  height: 72px;
  overflow: hidden;
}
.tenmientrong .group3 {
  margin-bottom: 40px;
}
.tenmientrong .group3 .left {
  width: 49%;
  display: inline-block;
  vertical-align: middle;
  border: 0px;
}
.tenmientrong .group3 .left li > a {
  color: #444;
  margin: 0px 0px 20px 10px;
  display: block;
  box-shadow: -1px 4px 14px 3px #eee;
  padding: 15px;
  border-radius: 5px;
}
.tenmientrong .group3 .left li > a.active .ten {
  color: #00293a;
}
.tenmientrong .group3 .left li > a .ten {
  font-size: 18px;
  margin-bottom: 3px;
  font-weight: 600;
}
.tenmientrong .group3 .left li > a .ten i {
  margin-right: 10px;
  font-size: 21px;
}
.tenmientrong .group3 .left li > a.active .mota {
  display: block;
}
.tenmientrong .group3 .left li > a .mota {
  display: none;
  color: #888;
  padding-left: 29px;
  font-size: 16px;
}
.tenmientrong .group3 .right {
  width: 49%;
  display: inline-block;
  vertical-align: middle;
  margin-left: calc(2% - 4px);
}
.tenmientrong .group4 {
  margin-bottom: 50px;
}
.tenmientrong .group4 .wrapbox {
  text-align: center;
}
.tenmientrong .group5 {
  margin-bottom: 50px;
}
.tenmientrong .group5 .box {
  width: calc((100% / 3) - 3px);
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}
.tenmientrong .group5 .box .inner {
  margin: 0px 10px;
  border: 2px solid #ddd;
  border-radius: 7px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.tenmientrong .group5 .box .ten {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.tenmientrong .group5 .box .ten:hover {
  color: #00293a;
}
.tenmientrong .group5 .box .mota {
  font-size: 13px;
  height: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tenmientrong .group5 .box .discount {
  background: #eb5757;
  padding: 2px 8px;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff;
  font-size: 13px;
}
.tenmientrong .group5 .box .noidung {
  /*width: 150px;*/
  font-size: 15px;
  line-height: 23px;
  float: left;
}
.tenmientrong .group5 .box .noidung span:nth-child(1) {
  font-size: 18px;
  font-weight: 600;
  color: #e21717;
}
.tenmientrong .group5 .box .noidung span:nth-child(2) {
  font-size: 13px;
  text-decoration: line-through;
}
.tenmientrong .group5 .box .noidung p {
  margin-bottom: 0px;
}
.tenmientrong .group5 .box div > a {
  background: #e8f0fa;
  color: #00293a;
  padding: 5px 20px;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 13px;
}
.tenmientrong .group5 > a.xemtatca {
  display: block;
  width: 150px;
  background: #ddd;
  text-align: center;
  font-size: 16px;
  margin: auto;
  border-radius: 5px;
  color: #fff;
  padding: 5px;
  background: #00293a;
  text-transform: capitalize;
}
.tenmientrong .group5 .box div > a:hover {
  background: #00293a;
  color: #fff;
}
.batdautimkiem {
  background: #00293a;
  padding: 40px 0px;
  /* margin-bottom: 40px; */
}

.batdautimkiem .tieude {
  color: #fff;
}

.batdautimkiem .batdautim {
  background: #ddd;
  padding: 10px 30px;
  text-transform: uppercase;
  display: block;
  width: 165px;
  text-align: center;
  color: #fff;
  margin: -20px auto 0px;
  background: linear-gradient(97.32deg, #ffbd2a 5%, #fd7659 170.21%);
  border-radius: 5px;
}
.tenmientrong .group6 {
  background: #f7fafc;
  padding: 40px 0px;
}

.tenmientrong .group6 .box {
  width: calc(50% - 2px);
  display: inline-block;
  margin-bottom: 20px;
}

.tenmientrong .group6 .box .inner {
  margin: 0px 9px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.tenmientrong .group6 img {
  max-width: 94px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.tenmientrong .group6 .noidung {
  width: calc(100% - 110px);
  display: inline-block;
  vertical-align: middle;
}

.tenmientrong .group6 .ten {
  font-weight: 600;
  margin-bottom: 10px;
  color: #274e7d;
  font-size: 20px;
}

.tenmientrong .group6 .ten:hover {
  color: #00293a;
}

.tenmientrong .group6 .mota {
  margin-bottom: 16px;
}

.tenmientrong .group6 .chitiet {
  text-transform: capitalize;
  font-size: 13px;
  color: #00293a;
  font-weight: 600;
}
.tenmientrong .group7 {
  padding: 40px 0px;
}

.tenmientrong .group7 .box {
  overflow: hidden;
  margin-bottom: 30px;
}

.tenmientrong .group7 .box:nth-child(2n) {
}

.tenmientrong .group7 .box .hinh {
  width: 30%;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.tenmientrong .group7 .box .hinh img {
  max-height: 204px;
}

.tenmientrong .group7 .box:nth-child(2n) .hinh {
  float: right;
}

.tenmientrong .group7 .box .noidung {
  width: 49%;
  display: inline-block;
  vertical-align: middle;
}

.tenmientrong .group7 .box:nth-child(2n) .noidung {
  float: right;
  text-align: right;
}

.tenmientrong .group7 .box .noidung .ten {
  font-size: 20px;
  font-weight: 600;
  color: #00293a;
  margin-bottom: 10px;
}

.tenmientrong .group7 .box .noidung .mota {
  font-size: 16px;
}
.tenmientrong .group8 {
  background: url(../images/bg-taisaochon.jpg) #f7fafc no-repeat top;
  background-size: 100%;
  padding: 80px 0px 50px;
}

.tenmientrong .group8 .tieude,
.tenmientrong .group8 .slogan {
  color: #fff;
}

.tenmientrong .group8 .wrapbox {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.tenmientrong .group8 .box {
  width: calc(100% / 3);
  float: left;
  border: 1px solid #ddd;
  padding: 40px 20px;
  text-align: center;
}

.tenmientrong .group8 .box .hinh {
  margin-bottom: 20px;
}

.tenmientrong .group8 .box .noidung {
}

.tenmientrong .group8 .box .ten {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  height: 24px;
  overflow: hidden;
}

.tenmientrong .group8 .box .mota {
  height: 69px;
  overflow: hidden;
  font-size: 15px;
}
.tenmientrong .khachhangnx {
  padding-top: 100px;
}
.banggia-group1 {
  margin: 40px 0px;
}

.banggia-group1 .tieude {
  margin-bottom: 40px;
}

.banggia-group1 .box {
  width: calc(25% - 3px);
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background-image: linear-gradient(to right, #e5f1ff, white);
}
.banggia-group1 .box img {
  max-height: 120px;
  margin-bottom: 20px;
}
.banggia-group2 {
  margin: 80px 0px 40px;
  overflow: hidden;
}
.banggia-group2 .left {
  width: 49%;
  float: left;
  padding-right: 20px;
}
.banggia-group2 .left h6 {
  display: inline-block;
  /* width: 100px; */
  background: #00293a;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
}
.banggia-group2 .left h3 {
  color: #00293a;
  margin-bottom: 25px;
}
.banggia-group2 .left h5 {
  font-size: 15px;
  line-height: 22px;
  color: #555;
}
.banggia-group2 .right {
  width: 49%;
  float: right;
}
.banggia-group2 .right iframe {
  border-radius: 10px;
  overflow: hidden;
}
.banggia-group3 {
  overflow: hidden;
  margin-bottom: 30px;
}
.banggia-group3 .wrapbox1 {
  text-align: center;
  display: inline-block;
  width: 100%;
  border: 0px;
  margin-bottom: 30px;
}
.banggia-group3 .wrapbox1 li {
  display: inline-block;
  margin: 0px 3px;
}
.banggia-group3 .wrapbox1 li > a {
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  background: #00293a99;
  border-radius: 25px;
}
.banggia-group3 .wrapbox1 li > a.active,
.banggia-group3 .wrapbox1 li > a:hover {
  color: #fff;
  /* border-bottom: 3px solid #00293a; */
  background: #00293a;
  border-radius: 25px;
}
.banggia-group3 .wrapbox2 {
  width: 1180px;
  background: #eaf2fa;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  overflow: hidden;
}
.banggia-group3 .wrapbox2 .chatzalo {
  display: block;
  text-align: center;
  padding: 5px;
  background: #00293a;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
}
.banggia-group3 .wrapbox2 .left {
  width: 34%;
  float: left;
}
.banggia-group3 .wrapbox2 .left .box {
  background: #f6f9fd;
}
.banggia-group3 .wrapbox2 .center {
  width: 30%;
  float: left;
  margin: 0px 3%;
}
.banggia-group3 .wrapbox2 .center .giacu {
  color: #666;
  text-decoration: line-through;
}
.banggia-group3 .wrapbox2 .center .gia1nam {
  font-weight: 600;
  color: #eb5757;
  font-size: 16px;
  margin-right: 10px;
}
.banggia-group3 .wrapbox2 .right {
  width: 30%;
  float: right;
}
.banggia-group3 .wrapbox2 .right .giahan {
  font-size: 16px;
  font-weight: 600;
}
.banggia-group3 .wrapbox2 .ten {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  height: 36px;
}
.banggia-group3 .wrapbox2 .ten img {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.banggia-group3 .wrapbox2 .box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 2px #88888826;
}
.banggia-group3 .wrapbox2 .box .items {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  position: relative;
  height: 42px;
}
.banggia-group3 .wrapbox2 .box .items .banchay {
  background: #e8f6e5;
  padding: 0px 5px;
  border-radius: 5px;
  margin-left: 10px;
  color: #3ec620;
}
.banggia-group3 .wrapbox2 .box .items img {
  position: absolute;
  max-height: 18px;
  right: 20px;
}
.tinhnangtenmien {
  overflow: hidden;
  margin-bottom: 40px;
}
.tinhnangtenmien .box {
  width: calc(50% - 2px);
  display: inline-block;
  margin-bottom: 20px;
  vertical-align: top;
}
.tinhnangtenmien .box .line {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.tinhnangtenmien .box .line span {
  background: #ddd;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px 5px 0px 0px;
}
.tinhnangtenmien .box h3 {
  font-size: 21px;
  font-weight: 600;
}
.tinhnangtenmien .box h6 {
}
.group-tenmienvn1 {
  margin: 40px 0px;
}
.group-tenmienvn1 .box {
  margin-top: 60px;
  overflow: hidden;
}
.group-tenmienvn1 .box:nth-child(2n) {
}
.group-tenmienvn1 .box .noidung {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding-right: 40px;
}
.group-tenmienvn1 .box .noidung .chatzalo {
  display: inline-block;
  background: #00293a;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
}
.group-tenmienvn1 .box:nth-child(2n) .noidung {
  float: right;
  padding-left: 40px;
}
.group-tenmienvn1 .box .hinh {
  width: calc(50% - 4px);
  display: inline-block;
  vertical-align: top;
}
.group-tenmienvn1 .box:nth-child(2n) .hinh {
}
.ssl1 {
  margin-bottom: 40px;
}
.ssl1 .tieude {
  margin-top: 40px;
  margin-bottom: 60px;
}
.ssl2 {
  background: #f9f9f9;
  padding: 50px 0px;
  overflow: hidden;
}
.ssl2 .left {
  width: 49%;
  float: left;
}
.ssl2 .left .ten {
  margin-bottom: 20px;
}
.ssl2 .left h3 {
  margin-bottom: 30px;
}
.ssl2 .left h5 {
  font-weight: normal;
  font-size: 16px;
}
.ssl2 .right {
  width: 40%;
  float: right;
}
.ssl3 {
  background: url(../images/bg-taisaochon.jpg) center top no-repeat;
  padding-top: 40px;
}
.ssl3 .slogan {
  margin: 00px 0px 10px;
  color: #fff;
}
.ssl3 .tieude {
  margin-bottom: 50px;
  color: #fff;
}
.ssl3 .box {
  width: calc((100% / 3) - 3px);
  display: inline-block;
  vertical-align: top;
  padding: 0px 10px;
  margin-bottom: 30px;
}
.ssl3 .box .inner {
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  /* padding-bottom: 30px; */
}
.ssl3 .box .hinh {
  text-align: center;
  padding: 20px;
  height: 215px;
}
.ssl3 .box .mota {
  padding: 20px;
}
.ssl3 .box .mota table {
  border: 0px;
}
.ssl3 .box .mota table tr td {
  padding: 5px 10px;
  width: 50%;
}
.ssl3 .box .noidung p {
  margin-bottom: 0px;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
.khachhangnx {
  overflow: hidden;
  margin-bottom: 60px;
  /* padding-bottom: 50px; */
  width: 100%;
  float: left;
}
.khachhangnx .slogan {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
}
.khachhangnx h2 {
  text-align: center;
  font-size: 37px;
  text-transform: uppercase;
  color: #00293a;
  margin-top: 10px;
  margin-bottom: 60px;
  font-weight: 600;
}
.khachhangnx .host-slidekh {
  margin: 0px -15px;
  padding-bottom: 50px;
  overflow: hidden;
}
.khachhangnx .host-slidekh button {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
}
.khachhangnx .host-slidekh button:before {
  background: #eee;
  color: #000;
  font-family: "Font Awesome 5 Free";
  width: 40px !important;
  height: 40px;
}
.khachhangnx .host-slidekh .slick-dots {
  position: relative;
}
.khachhangnx .host-slidekh .slick-dots li button {
  color: #00293a;
  width: auto;
  height: auto;
  background: transparent;
}
.khachhangnx .host-slidekh .slick-dots li button:before {
  font-family: "slick";
  width: 10px !important;
  height: 10px;
  font-size: 15px;
  background: transparent;
  color: #00293a;
}
.khachhangnx .host-slidekh button.slick-prev {
  left: 0px;
}
.khachhangnx .host-slidekh button.slick-next {
  right: 0px;
}
.khachhangnx .host-slidekh .box {
  background: #00293a12;
  margin: 0px 15px;
  border-radius: 10px;
  overflow: hidden;
  padding: 25px;
}
.khachhangnx .host-slidekh .box .hinhkh {
  display: inline-block;
  height: 88px;
  width: 88px;
  max-width: 88px;
  border-radius: 50px;
  overflow: hidden;
  border: 3px solid #4abab9;
  margin-right: 15px;
  /* vertical-align: middle; */
}
.khachhangnx .host-slidekh .box .motabox2 {
  width: calc(100% - 108px);
  display: inline-block;
  padding-top: 10px;
}
.khachhangnx .host-slidekh .box .motabox2 span:first-child {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.khachhangnx .host-slidekh .box .motabox2 span:last-child {
  color: #7e7e7e;
}
.khachhangnx .host-slidekh .box .quote {
  margin-bottom: 15px;
}
.khachhangnx .host-slidekh .box .motabox {
  font-size: 16px;
  line-height: 26px;
  height: 156px;
  overflow: hidden;
  margin-bottom: 20px;
}
.khachhangnx .host-slidekh .box .motabox .mota {
  overflow: hidden;
}
.cauhoithuonggap {
  /* margin-bottom: 60px; */
  background: #f7fafc;
  float: left;
  width: 100%;
  padding: 60px 0px;
}
.cauhoithuonggap h2 {
  text-align: center;
  font-size: 37px;
  text-transform: uppercase;
  color: #00293a;
  font-weight: 600;
  margin-bottom: 30px;
}
.kiemtratenmien {
  margin: 40px 0px;
}
.kiemtratenmien .top {
  margin: 0px 0px 30px;
}
.kiemtratenmien .top > a {
  border: 1px solid #ddd;
  padding: 3px 15px;
  font-size: 20px;
  margin-right: 20px;
  color: #000;
  transition: all 0.3s;
  border-radius: 5px;
}
.kiemtratenmien .top > a:hover {
  background: #00293a;
  border: 1px solid #fff;
  color: #fff;
}
.kiemtratenmien .top span {
  font-size: 20px;
  font-weight: 600;
}
.kiemtratenmien .middle {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0px 0px 10px 2px #ddd;
}
.kiemtratenmien .middle .line1 {
  margin-bottom: 15px;
}
.kiemtratenmien .middle .line1 h3 {
  font-size: 18px;
  display: inline-block;
}
.kiemtratenmien .middle .line1 span {
  font-size: 20px;
  font-weight: 600;
  margin-left: 20px;
}
.kiemtratenmien .middle .line2 {
  /* margin-bottom: 30px; */
  overflow: hidden;
}
.kiemtratenmien .middle .line2 input {
  font-size: 13px;
  height: 39px;
}
.kiemtratenmien .middle .line2 .left {
  width: 98%;
  /*float: left;*/
}
.kiemtratenmien .middle .line2 .right {
  width: 30%;
  float: right;
}
.kiemtratenmien .middle .line3 {
  margin-bottom: 30px;
}
.kiemtratenmien .middle .line3 span {
  color: #00293a;
  font-weight: 600;
}
.kiemtratenmien .middle .line31 {
  text-align: center;
  width: 100%;
  float: left;
  margin-bottom: 20px;
  display: none;
}
.kiemtratenmien .middle .line31 i {
  margin-right: 10px;
  vertical-align: middle;
}
.kiemtratenmien .middle .line4 {
}
.kiemtratenmien .middle .line4 > a {
  padding: 10px 20px;
  border: 1px solid #ddd;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
.kiemtratenmien .middle .line4 .tieptuc {
  width: calc(100% - 132px);
  float: right;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  background: #00293a82;
  color: #fff;
  transition: all 0.3s;
  text-align: center;
  border: 0px;
}
.kiemtratenmien .middle .line4 .tieptuc:hover {
  background: #00293a;
}
#hienthikiemtra .noidung {
  text-align: center;
  padding-top: 20px;
}
#hienthikiemtra .noidung h3 {
  font-size: 20px;
}
#hienthikiemtra .noidung h4 {
}
#hienthikiemtra .noidung h4 span {
  color: #0bc73cdd;
  font-weight: 600;
}
#hienthikiemtra .dktenmien {
  padding: 5px 20px;
  background: #00293a82;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  display: block;
  max-width: 200px;
  text-align: center;
  margin: auto;
}
#hienthikiemtra .dktenmien:hover {
  background: #00293a;
}
#hienthikiemtra .noidung h5 {
}

#hienthikiemtra .noidung h5 span {
  font-size: 20px;
  color: #f00;
  font-weight: 600;
}
#hienthikiemtra .noidung strong {
  padding: 5px 20px;
  background: #00293a82;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
}
#hienthikiemtra .noidung strong:hover {
  background: #00293a;
}
#hienthikiemtra .thongtinwhois {
  width: 100%;
  float: left;
  background: #eeeeeea1;
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0px;
  display: none;
}
#hienthikiemtra .thongtinwhois .close {
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
}
#hienthikiemtra .goiytenmien {
  width: 100%;
  margin-bottom: 30px;
}
.chitietdangky {
  margin: 40px 0px;
  box-shadow: 0px 0px 10px 3px #ddd;
  padding: 20px 30px;
  border-radius: 5px;
}
.chitietdangky .line1 {
}
.chitietdangky .line1 h3 {
  font-size: 16px;
}
.chitietdangky .line1 .wrapbox {
  margin: 20px 0px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.chitietdangky .line1 .box1 {
  width: 50%;
  float: left;
  padding: 20px;
}
.chitietdangky .line1 .box1 img {
  display: inline-block;
  vertical-align: middle;
}
.chitietdangky .line1 .box1 .noidung {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.chitietdangky .line1 .box1 .noidung h5 {
  font-size: 13px;
}
.chitietdangky .line1 .box1 .noidung h6 {
  font-weight: 600;
}

.chitietdangky .line1 .box1 .noidung b {
  font-size: 15px;
  color: #f00;
}
.chitietdangky .line1 .box2 {
  width: 50%;
  float: right;
  text-align: right;
  padding: 29px;
}
.chitietdangky .line1 .box2 > a {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid #ddd;
  color: #000;
  text-transform: uppercase;
  transition: all 0.3s;
}
.chitietdangky .line1 .box2 > a:hover {
  background: #00293a;
  color: #fff;
  border: 1px solid #fff;
}
.chitietdangky .line1-1 {
  overflow: hidden;
}
.chitietdangky .line1-1 .left {
  border-right: 1px solid #ddd;
  width: 50%;
  float: left;
}
.chitietdangky .line1-1 .right {
  width: 50%;
  float: right;
  padding-left: 20px;
}
.chitietdangky .line1-1 div {
  padding: 5px 0px;
  font-size: 16px;
}
.chitietdangky .line1-1 div i {
  color: #ddd;
  font-size: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.chitietdangky .line1-1 div span {
  float: right;
  margin-right: 30px;
  font-weight: 600;
}
.chitietdangky .line2 {
  margin: 10px 0px 30px;
}
.chitietdangky .line2 h3 {
  font-size: 16px;
  margin-bottom: 16px;
}
.quaylai {
  padding: 10px 20px;
  border: 1px solid #ddd;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}
.tieptuc {
  width: calc(100% - 132px);
  float: right;
  vertical-align: top;
  font-size: 15px;
  background: #00293a82;
  color: #fff;
  transition: all 0.3s;
  text-align: center;
  border: 0px;
  padding: 10px 20px;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
}

.tieptuc:hover {
  background: #00293a;
  color: #fff;
}
/* Intro */
.newshome-best {
  width: 43%;
  display: block;
  float: left;
  margin-right: 1.5%;
}
.pic-newshome-best img {
  width: 100%;
}
.name-newshome {
  color: #0066cc;
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 700;
}
.time-newshome {
  color: var(--color-gray);
  margin-bottom: 0.25rem;
}
.desc-newshome {
  color: #333333;
  margin-bottom: 0px;
  font-size: 14px;
  height: 63px;
}
.view-newshome {
  display: inline-block;
  border: 1px solid var(--color-black);
  padding: 8px 15px;
  color: var(--color-black);
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 1rem;
}
.view-newshome:hover {
  background-color: var(--color-black);
  color: #fff;
}
.newshome-scroll {
  width: 100%;
  overflow: hidden;
  height: 380px;
}
.newshome-scroll ul li {
  margin-bottom: 18px !important;
}
.newshome-scroll ul li:nth-child(even) .pic-newshome-normal {
  float: right;
}
.newshome-scroll ul li:nth-child(even) .info-newshome-normal {
  float: left;
}
.newshome-normal {
  display: block;
}
.pic-newshome-normal {
  float: left;
  width: 34.485%;
  margin: 0px;
}
.pic-newshome-normal img {
  width: 100%;
}
.info-newshome-normal {
  float: right;
  width: calc(100% - 37.931%);
}
.video-main {
  position: relative;
  height: 330px;
}
.video-main img {
  width: 100%;
  height: 100%;
}
.video-main iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.listvideos {
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  border: 1px solid #ccc;
  color: var(--color-black);
  margin-top: 10px;
  cursor: pointer;
}
.play_1 span {
  width: 50px;
  height: 35px;
  position: absolute;
  top: calc(50% - 35px / 2);
  left: calc(50% - 50px / 2);
  background: url(../images/play.png) no-repeat center;
}

/* giỏ hàng tên miên*/
.wrap-cart {
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  margin-top: 30px;
  overflow: hidden;
}
.top-cart {
  width: 60%;
  border-right: 1px solid #eee;
  padding-right: 15px;
  margin-right: 15px;
  float: left;
}
.title-cart {
  font-size: 15px;
  text-transform: uppercase;
  color: #f00;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.procart-label {
  border: 0px;
  background: #eee;
  padding: 10px;
  margin: 0px;
  text-transform: capitalize;
}
.procart {
  padding: 10px 10px;
  border: 1px solid #eee;
  border-top: 0px;
  align-items: center !important;
}
.info-procart div:nth-child(2n) {
  background: #eee;
  padding: 3px 0px;
}
.procart .info-procart .tenmienchinh {
  color: #e10d0d;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.procart .info-procart div span{
    color: #153ce9;
    display: block;
    font-weight: 600;
    text-align: center;
}
.quantity-procart {
  max-width: 50%;
  color: #666;
  font-style: italic;
}
.procart div p {
  margin-bottom: 0px;
}
.money-procart {
  margin-top: 15px;
}
.total-procart {
  background: #eee;
  padding: 7px 10px;
  border: 1px solid #dddfe2;
  margin-bottom: -1px;
}
.total-procart p {
  margin-bottom: 0px;
  font-size: 15px;
}
.total-procart p:last-child {
  color: #f00;
}
.bottom-cart {
  width: 38%;
  float: left;
}
.information-cart {
  margin-bottom: 1.5rem;
}
.input-double-cart {
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.input-double-cart .input-cart {
  width: 49%;
  float: left;
  margin-right: 2%;
  margin-bottom: 0px;
}
.input-double-cart .input-cart:last-child {
  margin-right: 0px;
}
.input-triple-cart {
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.input-triple-cart .input-cart {
  width: 32.65%;
  float: left;
  margin-right: 1%;
  margin-bottom: 0px;
}
.input-triple-cart .input-cart:last-child {
  margin-right: 0px;
}
.section-cart input.btn-cart {
  background: linear-gradient(to right, #ea8300, #ffba00, #ea8300);
  border: 0px;
  font-size: 18px;
  text-transform: uppercase;
}
.section-cart input.btn-cart:hover {
  background: linear-gradient(to right, #ffba00, #ea8300, #ffba00);
}
.input-cart {
  margin-bottom: 0.5rem;
  position: relative;
}
.input-cart input,
.input-cart textarea {
  font-size: 14px;
  padding: 0.5rem 0.75rem;
  outline: none;
  height: auto;
}
.input-cart textarea {
  resize: none;
  height: 100px;
}
.input-cart select {
  cursor: pointer;
  font-size: 14px;
  padding: 0.5rem 1.75rem 0.5rem 0.75rem;
  height: auto;
}
.payments-cart {
  text-align: left;
  margin-bottom: 5px;
  min-height: auto;
}
.payments-cart:last-child {
  margin-bottom: 0px;
}
.payments-cart input {
  top: calc(50% - 1.25rem / 2);
}
.payments-label {
  cursor: pointer;
  background: #eee;
  display: block;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 0px;
  color: #313131 !important;
}
.payments-label::before,
.payments-label::after {
  top: calc(50% - 1rem / 2);
}
.payments-label.active {
  background: #ec2d3f;
  color: #ffffff !important;
}
.payments-info {
  opacity: 0;
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  background: #f5efef;
  border-radius: 5px;
}
.payments-info p {
  margin-bottom: 1em;
}
.payments-info.active {
  padding: 10px 15px;
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  height: auto;
}
/* end giỏ hàng tên miền*/

/* Video */
.mg_vs {
  margin: 0px -10px -20px;
}
.detail_video {
  width: 25%;
  padding: 0px 10px 20px;
}
.video {
  text-align: center;
  cursor: pointer;
}
.pic-video {
  position: relative;
}
.pic-video:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 35px;
  top: calc(50% - 50px / 2);
  left: calc(50% - 35px / 2);
  z-index: 1;
  background-repeat: no-repeat;
  background-image: url(../images/play.png);
}
.pic-video img {
  width: 100%;
}
.name-video {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 0px;
}

.video_lst:hover .control-slidevideo {
  opacity: 0.3;
}
.video_lst .control-slidevideo:hover {
  opacity: 0.8;
}
.video_lst {
  position: relative;
  margin-top: 5px;
}
.control-slidevideo {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: calc(50% - 30px / 2);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
  cursor: pointer;
  margin: 0px;
  background-color: #000000;
  border-radius: 3px;
}
.control-slidevideo i {
  color: #ffffff;
}
.prev-slidevideo {
  left: 0px;
  padding-right: 0px;
}
.next-slidevideo {
  right: 0px;
  padding-left: 0px;
}

/* Album */
.album {
  float: left;
  width: 23.5%;
  margin: 0 2% 2% 0;
  text-align: center;
  cursor: pointer;
}
.album:nth-child(4n + 1) {
  clear: both;
}
.album:nth-child(4n) {
  margin-right: 0px;
}
.pic-album {
  position: relative;
}
.pic-album img {
  width: 100%;
}
.name-album {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 0px;
}

/* Brand */
.wrap-brand {
  margin-bottom: 50px;
  padding: 0px 10px;
}
.wrap-brand .wrap-content {
  max-width: 1180px;
  padding: 0px;
  position: relative;
}
.owl-brand {
  padding: 0px 40px;
}
.brand {
  display: block;
  border: 1px solid #eee;
}
.brand img {
  width: 100%;
}

.control-brand {
  opacity: 0;
}
.wrap-brand .control-owl {
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0px;
  top: calc(50% - 45px / 2);
}
.wrap-brand .control-owl button {
  opacity: 0.5;
  top: 0px;
  position: absolute;
  outline: none;
  border: 0px;
  padding: 0px;
  margin: 0px;
  display: block;
  cursor: pointer;
  color: #ffffff;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin: 0px;
  background-color: #000000;
  border-radius: 3px;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.wrap-brand .control-owl button:hover {
  opacity: 1;
}
.wrap-brand .control-owl button.owl-prev {
  left: 20px;
}
.wrap-brand .control-owl button.owl-next {
  right: 20px;
}
.brand-item {
  display: block;
  cursor: pointer;
}
.wrap-brand:hover .control-brand {
  opacity: 1;
}

.contact-form {
}
.contact-form input {
  margin-bottom: 8px;
  font-size: 13px;
}
.contact-form textarea {
  margin-bottom: 8px;
  font-size: 13px;
}
.contact-map iframe {
  width: 100%;
}
/* Sn Phẩm */
.wrap-product {
  margin-bottom: 50px;
}
.mg_sp {
  margin: 0px -10px -20px;
}
.detail_sanpham {
  width: 25%;
  padding: 0px 10px 20px;
}
.product {
  max-width: 280px;
  margin: 0 auto;
}

.box-product {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
.pic-product {
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #eee;
}
.pic-product img {
  width: 100%;
  border-radius: 3px;
}
.name-product {
  font-size: 16px;
  color: var(--color-black);
}
.name-product.text-split {
  -webkit-line-clamp: 1;
}
.price-product {
  margin-bottom: 0px;
}
.price-product span {
  font-weight: 700;
}
.price-new {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-red);
}
.price-old {
  padding-left: 10px;
  font-size: 12px;
  color: var(--color-gray);
}
.price-per {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  background: var(--color-red);
  font-size: 11px;
  border-radius: 2px;
  width: 45px;
  height: 25px;
  text-align: center;
  line-height: 25px;
}
.cart-product {
  margin-bottom: 0px;
}
.cart-product span {
  cursor: pointer;
  width: 49%;
  float: left;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  padding: 7px 5px;
  border-radius: 3px;
}
.cart-add {
  margin-right: 2%;
  background-color: var(--color-red);
}
.cart-add:hover {
  background-color: var(--color-dark-red);
}
.cart-buy {
  background-color: var(--color-green);
}
.cart-buy:hover {
  background-color: var(--color-dark-green);
}

/* Sản Phẩm Detail */
.grid-pro-detail {
  /*margin-bottom:50px;*/
  margin-top: 15px;
}
.left-pro-detail {
  position: relative;
  float: left;
  width: 40%;
  text-align: center; /*margin-right:2%;*/
  background: white;
}
.left-pro-detail .MagicZoom {
  border: 1px solid #eee;
  padding: 7px;
  border-radius: 5px;
}
.right-pro-detail {
  width: calc(100% - 42%);
  float: left;
}
.gallery-thumb-pro {
  position: relative;
  margin-top: 10px;
}
.owl-thumb-pro {
  padding: 0px 40px;
}
.thumb-pro-detail {
  display: block !important;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
}
.thumb-pro-detail.mz-thumb.mz-thumb-selected {
  border-color: #cecfd2;
}
.thumb-pro-detail img {
  box-shadow: none !important;
  filter: brightness(100%) !important;
  border-bottom: 0px !important;
  padding-bottom: 0px !important;
}
.title-pro-detail {
  text-transform: capitalize;
  font-size: 20px;
  display: block;
  font-weight: 700;
}
.social-plugin-pro-detail {
  margin-bottom: 1rem;
  margin-top: 0px !important;
}
.desc-pro-detail {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 190px;
}
.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}
.attr-label-pro-detail {
  margin: 0px 5px 0px 0px;
}
.attr-label-pro-detail.d-block {
  display: block;
  margin: 0px 0px 5px 0px;
}
.attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0px;
}
.price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-red);
}
.price-old-pro-detail {
  font-weight: 500;
  color: var(--color-gray);
  text-decoration: line-through;
  padding-left: 10px;
}
.color-pro-detail {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 35px;
  height: 30px;
  margin: 0px 0px 3px 0px;
  border: 1px solid transparent;
}
.size-pro-detail {
  border: 1px solid #ccc;
  padding: 3px 10px 4px 10px;
  display: inline-block;
  position: relative;
}
.size-pro-detail.active,
.color-pro-detail.active {
  border-color: #e5101d;
  color: #e5101d;
}
.color-pro-detail.active:before,
.size-pro-detail.active:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: auto;
  z-index: 1;
  background-image: url(../images/check-cart.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}
.color-pro-detail input[type="radio"],
.size-pro-detail input[type="radio"] {
  outline: none;
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  border: 0px;
  top: 0px;
  left: 0px;
}
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
}
.cart-pro-detail {
  margin-bottom: 1rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.cart-pro-detail a {
  width: auto;
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  border-radius: 3px;
}
.cart-pro-detail a.addnow {
  margin-right: 10px;
  background: #fd6e1d;
  cursor: pointer;
}
.cart-pro-detail a.buynow {
  background-color: var(--color-green);
  cursor: pointer;
}
.cart-pro-detail a.addnow:hover {
  background-color: var(--color-dark-green);
  color: #fff;
}
.cart-pro-detail a.buynow:hover {
  background-color: var(--color-dark-green);
  color: #fff;
}
.cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}
.tags-pro-detail {
  margin: 1rem 0px 2rem 0px;
}
.tags-pro-detail a {
  float: left;
  font-size: 12px;
  color: #fff;
  padding: 5px 10px 7px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: var(--color-red);
  border-radius: 3px;
}
.tags-pro-detail a:hover {
  background-color: var(--color-medium-red);
}
.tags-pro-detail a i {
  font-size: 10px;
  float: left;
  margin: 5px 5px 0px 0px;
}
.tabs-pro-detail .ul-tabs-pro-detail {
  padding: 0px;
  list-style: none;
  margin: 1rem auto;
  border-bottom: 1px solid #e7e7e7;
}
.tabs-pro-detail .ul-tabs-pro-detail li {
  cursor: pointer;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  background: #eee;
  padding: 5px 10px;
}
.tabs-pro-detail .ul-tabs-pro-detail li.active {
  background: #333;
  color: #fafafa;
}
.tabs-pro-detail .ul-tabs-pro-detail li:last-child {
  margin-right: 0px;
}
.tabs-pro-detail .content-tabs-pro-detail {
  display: none;
}
.tabs-pro-detail .content-tabs-pro-detail.active {
  display: block;
}

/* Toc */
.meta-toc {
  position: relative;
  background-color: #eeeeee;
  margin-bottom: 1.5rem;
}
.meta-toc .left {
  padding: 10px 22px 8px;
  font-size: 20px;
  font-weight: 600;
}
.meta-toc .left i {
  position: relative;
  display: inline-block;
  top: 2px;
  left: -4px;
  font-size: 22px;
  margin-right: 10px;
}
.meta-toc i {
  position: absolute;
  z-index: 1;
  right: 9px;
  top: 9px;
  font-size: 30px;
  background: #eee;
  cursor: pointer;
}
.meta-toc i:hover {
  color: #be0505;
}
.meta-toc i.btn1 {
  display: none;
}
.box-readmore {
  padding: 0px 15px 8px;
  /* border: 1px solid #dedede; */
  /* margin-bottom: 1.5rem; */
  border-radius: 5px;
  /* background-color: #eeeeee; */
  /* height: 48px; */
  overflow: hidden;
  transition: all 0.3s;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0px;
  padding-left: 0px !important;
  margin-top: 0px;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}
.description {
  background: #eaf9fa;
  padding: 30px 20px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 3px 3px 6px 0px #b5b3b3;
}
.description img {
  max-width: 40px;
  position: absolute;
  top: -8px;
}
/* Bài viết */
.news {
  /* width:49%; */
  width: calc(100% / 3);
  padding: 0px 15px; /* float:left; */
  margin-bottom: 25px; /* display:block; */
  overflow: hidden;
}
.news.detail {
  width: 100%;
}
.news .inner {
  border: 1px solid #eee;
  border-radius: 6px;
  /*overflow: hidden;*/
  float: left;
}
.news .news-image {
  margin-bottom: 20px;
  display: block;
}
.news .news-info {
  /* padding: 0px 20px 20px; */
}
.news .news-info h3 {
  padding: 0px 20px;
  line-height: 21px;
  height: 42px;
  overflow: hidden;
}
.news .news-desc {
  padding: 0px 20px;
  margin-bottom: 20px;
}
.news .news-time {
  border-top: 1px solid #eee;
}
.news .news-time span {
  display: block;
  width: 50%;
  float: left;
  border-right: 1px solid #eee;
  text-align: center;
  padding: 10px;
}
.news .news-time span i {
  margin-right: 10px;
  color: #b0b0b0;
}
.news:nth-child(2n) {
  /* float:right; */
}
.news:nth-child(2n + 1) {
  /* clear:both; */
}
.pic-news {
  float: left;
  width: 27.44%;
  margin-bottom: 0px;
}
.pic-news img {
  width: 100%;
}
.info-news {
  float: right;
  width: calc(100% - 30%);
}
.name-news {
  color: #333;
  font-size: 16px;
  display: block;
  line-height: normal;
  margin-bottom: 5px;
  font-weight: 700;
}
.name-news:hover {
  color: #0066cc;
}
.time-news {
  color: var(--color-gray);
  margin-bottom: 0.25rem;
}
.desc-news {
  color: #333333;
  margin-top: 5px;
  line-height: 22px;
}
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: #eeeeee40;
  margin-bottom: 15px;
  border-radius: 5px;
}
.share b {
  display: block;
  margin-bottom: 5px;
}
.othernews b {
  margin-bottom: 10px;
}
.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  text-transform: none;
  color: #333333;
}
.list-news-other li a:hover {
  color: #0066cc;
}
.newsleft {
  width: 70%;
  float: left;
}
.newsleft .a2a_kit.desktop {
  position: fixed;
  top: 100px;
  left: 30px;
}
.newsleft .a2a_kit.desktop > a {
  display: block;
  height: 30px;
  float: unset;
  margin-bottom: 8px;
}
.newsleft .a2a_kit > a span {
  width: 30px;
  height: 30px;
}
.share.mobile .a2a_kit > a span {
  width: 28px;
  height: 28px;
}
.newsleft .zalo.desktop {
  position: fixed;
  top: 63px;
  left: 33px;
}
.ngaythangdetail {
  display: block;
  height: 50px;
  margin: 14px 0px;
}
.ngaythangdetail .icon {
  /*width: 41px;*/
  height: 41px;
  float: left;
  margin-right: 10px;
  /*border-radius: 50%;*/
  /*overflow: hidden;*/
  /* border: 2px solid #00293a; */
}
.ngaythangdetail .icon img {
  height: 41px !important;
}
.ngaythangdetail .noidung {
  max-width: 500px;
  float: left;
}
.ngaythangdetail .noidung .box1 {
}
.ngaythangdetail .noidung .box1 span:nth-child(1),
.ngaythangdetail .noidung .box1 span:nth-child(3) {
  font-size: 15px;
  color: #00293a;
  font-weight: 600;
}
.ngaythangdetail .noidung .box1 > a {
  display: inline-block;
  margin-left: 12px;
  background: #00293a;
  color: #fff;
  font-size: 12px;
  padding: 0px 10px;
  border-radius: 22px;
}
.ngaythangdetail .noidung .box1 > a.zalooa {
  width: 77px;
  text-align: center;
}
.ngaythangdetail .noidung .box2 {
  font-size: 14px;
  font-style: italic;
}
.googlenews {
  max-width: 400px;
  display: inline-block;
  margin-top: 6px;
}
.googlenews > a {
  background: #ddd;
  margin-left: 10px;
  padding: 5px 10px;
  border-radius: 15px;
  color: #000;
  display: block;
}
.googlenews > a:hover {
  color: #f00;
}
.googlenews > a img {
  max-width: 92px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1px;
}
.bonnut {
}
.bonnut > a {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 5px 10px;
  font-size: 13px;
  color: #000;
  background: #eee;
}
.bonnut > a i {
  color: #07ab14;
  margin-right: 5px;
  font-size: 18px;
}
.newsright {
  width: 27%;
  float: right;
  /*border: 1px solid #ddd;*/
  border-radius: 5px;
}
.newsright .inner {
  border: 1px solid #ddd;
  position: sticky;
  top: 10px;
}
.newsright h2 {
  font-size: 20px;
  padding: 20px 15px;
  margin-bottom: 0px;
}
.newsright .box {
  display: block;
  padding: 10px 15px;
  border-top: 1px dashed #ddd;
  color: #000;
  font-size: 15px;
  transition: all 0.5s;
}
.newsright .box:hover {
  color: #00293a;
  background: #eee;
}
.newsright .box i {
  margin-right: 10px;
  color: #666;
}
/* Contact */
.top-contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.top-contact .article-contact {
  width: 48%;
}
.form-contact {
  width: 47%;
}
.input-contact {
  position: relative;
  margin-bottom: 15px;
}
.input-contact input,
.input-contact textarea {
  width: 100%;
  padding: 0px;
  outline: none;
  font-size: 14px;
}
.input-contact input {
  text-indent: 10px;
}
.input-contact textarea {
  resize: none;
  height: 150px;
  padding: 10px;
}
.input-contact .custom-file-label::after {
  content: attr(title);
}
.bottom-contact {
  position: relative;
  height: 500px;
}
.bottom-contact iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100% !important;
  height: 100% !important;
}
.ketnoiclickweb {
}
.ketnoiclickweb .tieude {
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 19px;
}
.ketnoiclickweb .left .navtieude {
  width: 200px;
  box-shadow: 0px -1px 4px 1px #ddd;
  padding: 5px;
  text-align: center;
  text-transform: capitalize;
  font-size: 17px;
}
.ketnoiclickweb .left .box {
  box-shadow: 0px 2px 6px 1px #ddd;
  padding: 20px;
}
.ketnoiclickweb .left .box div {
  margin-bottom: 15px;
  font-size: 15px;
}
.ketnoiclickweb .left .box div img {
  margin-right: 10px;
}
.ketnoiclickweb .right {
  text-align: right;
}
.ketnoiclickweb .right img {
  max-width: 400px;
  margin-top: -50px;
}
.clickxemthem{
    text-align: center;
    margin-bottom: 25px;
}

.clickxemthem span {
    background: #ddd;
    border: 1px solid #33333342;
    padding: 6px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px 5px #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.clickxemthem span:hover {
    background: #333;
    color: #fff;
}
/* planding page thiết kế web */
.thietkeweb1 {
  background: url(../images/shape1-home4.png) no-repeat;
}
.thietkeweb1 .tieude {
  position: relative;
  font-family: OpenSansBold;
}
.thietkeweb1 .tieude:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 1px;
  border-top: 1px solid #ec8800;
  bottom: 0;
  left: calc(50% - 35px);
}
.thietkeweb1 .tieude * {
  font-size: 30px;
  font-weight: 700;
}
.thietkeweb1 .noidung {
  font-size: 13px;
  text-align: center;
  line-height: 25px;
}
.thietkeweb1 .hinh {
  text-align: center;
  position: relative;
}
.thietkeweb1 .hinh .hinhchinh {
  max-width: 70%;
  position: relative;
}
.thietkeweb1 .hinhphu {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.thietkeweb1 .hinhphu img {
  -webkit-animation-name: lolung;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: lolung;
  -moz-animation-duration: 3s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: lolung;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@-moz-keyframes lolung {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(10px);
  }
}
@-webkit-keyframes lolung {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes lolung {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(10px);
  }
}
.thietkeweb1 .hinhphu img:nth-child(1) {
  position: absolute;
  left: 100px;
  top: 150px;
  max-width: 400px;
}
.thietkeweb1 .hinhphu img:nth-child(2) {
  position: absolute;
  right: 100px;
  max-width: 400px;
}
.thietkeweb1 .hinhphu img:nth-child(3) {
  position: absolute;
  left: 100px;
  bottom: 100px;
  max-width: 400px;
}
.thietkeweb1 .hinhphu img:nth-child(4) {
  position: absolute;
  right: 100px;
  bottom: 0px;
  max-width: 400px;
}
.baivietthietkeweb .news span {
    /* height: 150px; */
}
.thietkeweb2 {
  position: relative;
  margin: 60px 0px;
}
.thietkeweb2 .tieude1 {
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  background: #0160e7;
  display: block;
  width: 205px;
  color: #fff;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0px auto 15px;
}

.thietkeweb2 .tieude2 {
  font-size: 28px;
  font-weight: 900;
  color: #414042;
  line-height: 1.261;
  text-transform: uppercase;
  max-width: 50%;
  display: block;
  margin: 0px auto 30px;
  text-align: center;
  font-family: OpenSansBold;
}
.thietkeweb2 .tieude2 span {
  display: block;
}
.pulse-animation {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
}
@keyframes pulsing {
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
.pulse {
  position: relative;
  background-color: #dd1e26;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.ring {
  position: absolute;
  background-color: #dd1e26;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  opacity: 0.8;
  animation: pulsing 4s ease-out infinite;
}
.ring:nth-of-type(1) {
  animation-delay: -1s;
}
.ring:nth-of-type(2) {
  animation-delay: -2s;
}
.ring:nth-of-type(3) {
  animation-delay: -3s;
}
.ring:nth-of-type(4) {
  animation-delay: -4s;
}
.thietkeweb2 .nav-tabs {
  background-color: #898b8e;
  border: 2px solid #898b8e !important;
  width: 389px !important;
  height: 45px;
  margin: auto !important;
  overflow: hidden;
  border-radius: 29px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.thietkeweb2 .nav-tabs li {
  width: 50%;
  margin: 0;
  text-align: center;
}
.thietkeweb2 .nav-tabs li > a.active {
  overflow: hidden;
  background-color: #fff;
  position: relative;
  border-radius: 29px;
  color: #0160e7;
  font-weight: 700;
  margin: 0 -1px;
}
.thietkeweb2 .nav-tabs li > a {
  display: block;
  /* border: initial; */
  line-height: 41px;
  padding: initial;
  color: #fff;
  font-size: 16px;
  text-transform: none;
}
.thietkeweb2 .right {
  margin: 40px 0px 0px;
}
.thietkeweb3 {
  background: url(../images/bg-thietkewebtronggoi.svg) no-repeat right;
  position: relative;
  background-size: 800px 800px;
}
.thietkeweb3:before {
  content: "";
  position: absolute;
  background: url(../images/bg-ban-hang-da-kenh.png) no-repeat;
  width: 100%;
  height: 100%;
}
.thietkeweb3 .right {
  max-height: 535px;
  /* overflow: hidden; */
  text-align: center;
}
.thietkeweb3 .right img {
  margin-top: -50px;
  max-height: 550px;
}
.thietkeweb4 {
  margin: 30px 0px;
}
.thietkeweb4 .khungtongquat{
  margin: 30px 0px;
}
.thietkeweb4 .tieude {
  font-family: OpenSansBold;
}
.thietkeweb4 .tieude1 {
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  background: #0160e7;
  display: block;
  width: 391px;
  color: #fff;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0px auto 15px;
}
.thietkeweb4 .wrapbox .inner {
  display: flex;
}
.thietkeweb4 .wrapbox .hinh {
  display: inline-block;
  width: 900px;
}
.thietkeweb4 .wrapbox .hinh img {
  max-height: 528px;
}
.thietkeweb4 .wrapbox .noidung {
  display: inline-block;
  width: 600px;
  padding-left: 20px;
  position: relative;
}
.thietkeweb4 .wrapbox .noidung svg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  fill: #55c4ee29;
}
.thietkeweb4 .wrapbox .noidung * img {
  max-height: 250px;
  width: auto !important;
}
.thietkeweb5 .tieude {
  margin-bottom: 40px;
  font-family: OpenSansBold;
}
.thietkeweb5 .box {
  display: block;
  background-size: 60%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 452.3 429.1' style='enable-background:new 0 0 452.3 429.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bopacity:0.13;%7D .st1%7Bfill:%2353c4ee;%7D .st2%7Bfill:none;stroke:%236898FF;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0,0,7.54,9.42;%7D .st3%7Bfill:%23FFFFFF;%7D .st4%7Bfill:url(%23SVGID_1_);%7D .st5%7Bfill:url(%23SVGID_00000110428921044285960840000010481460626747405743_);%7D .st6%7Bfill:url(%23SVGID_00000044887847723158335830000008855172864059985081_);%7D .st7%7Bfill:url(%23SVGID_00000013167482355818810230000008589843805427572391_);%7D .st8%7Bfill:url(%23SVGID_00000164478269194975618630000016905962507538998189_);%7D .st9%7Bfill:url(%23SVGID_00000038406327519698958740000007515024386193293962_);%7D .st10%7Bfill:%23E8F5FF;%7D .st11%7Bfill:none;stroke:%23A061FF;stroke-width:3.76;stroke-linecap:round;stroke-linejoin:round;%7D .st12%7Bfill:url(%23SVGID_00000083801318980251512620000006563490973185961125_);%7D .st13%7Bfill:url(%23SVGID_00000089538811332283573110000016549770531789412538_);%7D .st14%7Bfill:url(%23SVGID_00000053533037529552781850000016294173494794205367_);%7D .st15%7Bfill:url(%23SVGID_00000181795911351054946490000000064794359652941206_);%7D .st16%7Bfill:url(%23SVGID_00000067934300898420939280000017428575340554653060_);%7D .st17%7Bfill:url(%23SVGID_00000020357468905584538590000013183706364509075593_);%7D .st18%7Bfill:url(%23SVGID_00000096765224450007231240000012679163353294406051_);%7D .st19%7Bfill:url(%23SVGID_00000016055215612685287690000004408379754794343060_);%7D %3C/style%3E%3Cg id='BACKGROUND'%3E%3Cg class='st0'%3E%3Cpath class='st1' d='M309.6,29.2C257,46.8,269.2,87.8,217,143.1C159.5,204,23.6,202.5,34.2,293.5 c11.7,100.3,165.2,166.8,290.5,86.8c71.6-45.7,129.2-149.2,106.1-233.7C407.7,62.1,341.4,18.6,309.6,29.2L309.6,29.2z'%3E%3C/path%3E%3Cellipse transform='matrix(0.7071 -0.7071 0.7071 0.7071 -85.4769 73.8958)' class='st1' cx='46.5' cy='140.1' rx='30.4' ry='30.4'%3E%3C/ellipse%3E%3Cellipse transform='matrix(0.5657 -0.8246 0.8246 0.5657 16.8949 186.9375)' class='st1' cx='185.9' cy='77.4' rx='79.5' ry='39.2'%3E%3C/ellipse%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.thietkeweb5 .box .hinh {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 2px solid #eee;
  border-radius: 50%;
  transition: all 0.3s;
  margin: auto;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.thietkeweb5 .box .hinh:hover {
  box-shadow: 0px 2px 6px 1px #148ade;
}
.thietkeweb5 .box .hinh img {
      /* min-height: 150px; */
    max-width: 80%;
}
.thietkeweb5 .box .ten {
  margin: 15px 0px 30px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}
.thietkeweb6 {
  padding: 130px 0px 80px;
}
.thietkeweb6 .left img {
  margin-top: 40px;
  max-width: 85%;
}
.thietkeweb6 .right {
}
.thietkeweb6 .right .tieude {
  text-align: left;
  margin-bottom: 30px;
  font-family: OpenSansBold;
}
.thietkeweb6 .right .tieude span {
  display: block;
  line-height: 40px;
}
.thietkeweb6 .box {
  margin-bottom: 40px;
}
.thietkeweb6 .box .buoc {
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
}
.thietkeweb6 .box .ten {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.thietkeweb6 .box .mota {
  font-size: 15px;
}
.thietkeweb7 {
  margin: 50px 0px;
}
.thietkeweb7 .tieude {
  font-family: OpenSansBold;
}
.thietkeweb7 .slogan {
  text-align: center;
  margin-bottom: 60px;
  font-size: 16px;
}
.thietkeweb7 .box {
  margin-bottom: 30px;
}
.thietkeweb7 .box:nth-child(2) {
  margin-top: -15px;
}
.thietkeweb7 .box:nth-child(2) .inner {
  background: #00293a;
  color: #fff;
}
.thietkeweb7 .box .inner {
  box-shadow: 0px 1px 4px 1px #ddd;
  padding: 40px 35px;
  text-align: left;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.thietkeweb7 .box .inner .nutdk button {
  border: 0px;
  background: #00293a;
  color: #fff;
  display: block;
  width: 150px;
  padding: 5px;
  border: 1px solid #fff;
  border-radius: 5px;
  margin: 20px auto -10px;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}
.thietkeweb7 .box .inner .nutdk button:hover {
  background: #035070;
}
.thietkeweb7 .box .inner:before {
  content: "";
  position: absolute;
  background: url(../images/top-price1-1.png) no-repeat;
  width: 200px;
  height: 200px;
  z-index: 0;
  opacity: 0.5;
  top: -24px;
  left: calc(50% - 100px);
}
.thietkeweb7 .box .inner:after {
  content: "";
  position: absolute;
  background: url(../images/bot-price1-1.png) no-repeat;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  width: 200px;
  height: 100px;
}
.thietkeweb7 .box .inner div {
  text-align: unset !important;
  font-size: 16px;
  margin-bottom: 10px;
}
#dktuvan .modal-header {
  background: #00293ac4;
  color: #fff;
}
#dktuvan h6 {
  font-family: roboto;
  font-size: 20px;
  text-transform: capitalize;
}
#dktuvan .inputtext label {
  margin-top: 10px;
  font-weight: 600;
}
#dktuvan .inputtext input {
  font-size: 13px;
}
#dktuvan button {
  border: 0px;
  background: #00293a;
  border-radius: 5px;
}
#dktuvan button:hover {
  background: #00293aba;
}
#dktuvan button input {
  background: transparent;
  color: #fff;
  border: 0px;
}
.thietkeweb8 {
  position: relative;
}
.thietkeweb8 .tieude1 {
  font-size: 18px;
  line-height: 1.5;
  background: #0160e7;
  display: block;
  color: #fff;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 5px;
  width: 323px;
  margin: 20px auto;
}
.thietkeweb8 .tieude {
  margin-bottom: 40px;
  font-family: OpenSansBold;
}
.thietkeweb8 .tieude span {
  display: block;
}
.thietkeweb8 .box {
  text-align: center;
  margin-bottom: 30px;
}
.thietkeweb8 .box .inner {
  box-shadow: 1px -4px 32px 0 #eee;
  padding: 30px 0px;
  border-radius: 10px;
}
.thietkeweb8 .box .hinh {
  max-width: 80px;
  margin: 0px auto 10px;
}
.thietkeweb8 .box .mota {
  font-size: 30px;
  font-weight: 600;
}
.thietkeweb8 .box .ten {
  font-size: 16px;
}
.thietkeweb9 {
  overflow: hidden;
  padding-top: 110px;
  position: relative;
  margin: 40px 0px;
}
.thietkeweb9:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 440px;
  background: #0000008f;
  z-index: 0;
  top: 0;
}
.thietkeweb9 .wrap-main {
  position: relative;
}
.thietkeweb9 .tieude {
  color: #fff;
  font-family: OpenSansBold;
}
.thietkeweb9 .tieude1 {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto 110px;
  background: #0160e7;
  display: block;
  color: #fff;
  width: 356px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 5px;
}
.thietkeweb9 .wrapbox {
  margin: 0px 130px;
  background: #fff;
  padding: 30px 65px 0px;
  border-radius: 0px 30px 0px 0px;
}
.thietkeweb9 .box {
  display: inline-flex;
}
.thietkeweb9 .box .noidung img {
  margin: 60px 0px 20px;
}
.thietkeweb9 .box .mota1 {
  font-size: 15px;
  margin-bottom: 20px;
}
.thietkeweb9 .box .mota2 {
  border-left: 3px solid #00293a;
  padding-left: 15px;
}
.thietkeweb9 .box .hinh {
  max-height: 400px;
  overflow: hidden;
}
.thietkeweb9 .owl-dots {
  position: relative;
  bottom: 0px;
}
.thietkeweb10 {
  padding: 85px 0px;
  color: #fff;
  position: relative;
}
.thietkeweb10:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000c7;
}
.thietkeweb10 .wrap-main {
  position: relative;
}
.thietkeweb10 .tieude {
  text-align: left;
  margin-bottom: 30px;
  font-family: OpenSansBold;
}
.thietkeweb10 form input {
  font-size: 13px;
  margin-bottom: 15px;
  padding: 10px;
  height: 41px;
}
.thietkeweb10 button {
  padding: 0;
  margin: 10px 0px 0px 0px;
  background: #0160e7;
  border: 0px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.thietkeweb10 button:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
  right: 5px;
  top: 4px;
  transition: all 0.2s;
}
.thietkeweb10 button:hover:before {
  border-radius: 0px 5px 5px 0px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.thietkeweb10 button i {
  text-align: center;
  padding: 9px;
  border-radius: 50%;
  position: absolute;
  right: 6px;
  top: 4px;
  font-size: 20px;
}
.thietkeweb10 .tv-btn {
  margin: 0px !important;
  width: 200px;
  text-align: left;
  padding-left: 30px;
  color: #fff;
  background: transparent;
  border: 0px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  height: 50px;
  transition: all 0.5s;
  position: relative;
}
.thietkeweb10 .tv-btn:hover {
  color: #000;
}
.thietkeweb11 {
  margin: 40px 0px;
}
.thietkeweb11 .tieude {
  text-align: left;
  margin-bottom: 10px;
  font-family: OpenSansBold;
}
.thietkeweb12 {
}
.thietkeweb12 .tieude1 {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 auto 10px 0px;
  background: #0160e7;
  display: block;
  color: #fff;
  width: 249px;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 5px;
}
.thietkeweb12 .tieude {
  text-align: left;
  margin-bottom: -48px;
  font-family: OpenSansBold;
}
.thietkeweb12 .nav-tabs {
  max-width: 30%;
  margin: 0px auto 30px;
}
.thietkeweb12 .nav-tabs li {
}
.thietkeweb12 .nav-tabs li > a {
  padding: 5px 10px;
  display: block;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
}
.thietkeweb12 .nav-tabs li > a.active {
  color: #000;
  border-bottom: 3px solid #000;
}
.thietkeweb12 .news h3 {
  padding: 0px;
}
/* Footer */
.footer-article {
  background: linear-gradient(rgb(6, 47, 69) 0%, rgb(4, 41, 61) 100%);
}
.footer .bottom {
  color: #fff;
  padding-bottom: 15px !important;
}
.footer-article .wrap-content {
  color: rgb(215, 232, 242);
  font-size: 16px;
  padding: 44px 0px 24px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.footer .top {
    margin-bottom: 15px;
}
.footer .left{}
.footer .left p {
    margin-bottom: 5px;
}
.footer .left .in1{}
.footer .left .in2{
  margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}
.footer .left .in2 b {
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
}
.footer .left .in2 .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.footer .left .in2 .grid span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d7e8f2;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}
.footer .right .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 22px;
}
.footer .right .grid .box p {
    color: #ffffff;
    margin: 0 0 12px;
    font-size: 16px;
    text-transform: none;
}
.footer .right .box >a {
    display: block;
    color: #c6d8e4;
    text-decoration: none;
    margin: 7px 0;
    font-size: 14px;
    cursor: default;
}

.footer .right .grid1 {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 14px;
    margin-top: 20px;
}

.footer .right .grid1 h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

.footer .right .grid1 >a {
    display: inline-block;
    background: #ffffff;
    border-radius: 12px;
    width: 92px;
    height: 30px;
    /* padding: 8px; */
    overflow: hidden;
}

.footer .grid1 >a img {
    max-width: 100%;
    max-height: 28px;
    width: auto;
    height: auto;
    display: block;
}
.title-footer {
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}
.footer-ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer-ul li {
  margin-bottom: 10px;
}
.footer-ul li:last-child {
  margin-bottom: 0px;
}
.footer-ul li a {
  color: #fff;
  font-size: 13px; /* padding-left: 15px; */ /* background: url(../images/ar.png)no-repeat 0px 3px; */
}
.slogan-newsletter {
  margin-bottom: 0.5rem;
  color: var(--color-gray);
}
.newsletter-input {
  position: relative;
}
.newsletter-input input {
  padding: 0px;
  font-size: 14px;
  text-indent: 40px;
  border-radius: 0px;
  height: 42px;
  border: 1px solid #cccccc;
  color: #fff;
  background: transparent;
  margin-bottom: 13px;
  color: #fff;
}

.newsletter-input input:focus {
  color: #fff;
}
.newsletter-input input::-webkit-input-placeholder {
  color: #fff;
}
.newsletter-input input:-moz-placeholder {
  color: #fff;
}
.newsletter-input input::-moz-placeholder {
  color: #fff;
}
.newsletter-input input:-ms-input-placeholder {
  color: #fff;
}

.newsletter-button {
  margin-top: 5px;
}
.newsletter-button input[type="submit"] {
  border: 0px;
  background-color: #ffcc00;
  color: #fff;
  display: inline-block;
  padding: 11px 21px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}
.footer-tags {
  background: #eee;
}
.footer-tags .wrap-content {
  padding: 30px 10px;
}
.label-tags {
  font-weight: 600;
  font-size: 15px;
}
.list-tags {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.list-tags li {
  float: left;
  margin: 0px 5px 5px 0px;
}
.list-tags li a {
  color: #fff;
  background-color: var(--color-red);
  padding: 6px 15px 8px 15px;
  border-radius: 3px;
  display: block;
}
.list-tags li a:hover {
  background-color: var(--color-medium-red);
}
.footer-powered {
  /* margin-top: 26px; */
  padding: 18px 0px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgb(6, 47, 69) 0%, rgb(4, 41, 61) 100%);
  color: rgb(215, 232, 242);
}

.footer-powered .footer-copyright {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.footer-powered span {
    margin-left: 10px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
}

.footer-powered span >a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
    transition: .2s ease;
    margin-left: 5px;
}
.footer-powered .wrap-content {
  padding: 8px 0px;
}
.copyright {
  margin-bottom: 0px;
  font-size: 14px;
  color: #fff;
}
.statistic {
  margin-bottom: 0px;
  font-size: 14px;
  color: #fff;
}
.statistic span {
  padding-right: 10px;
}
.statistic span:last-child {
  padding-right: 0px;
}

#histats_counter {
 display: none;
 z-index: 99;
 position: relative;
 width: 173px;
 height: 30px;
 bottom: 54px;
 right: calc(-90% + 150px);
}
#histats_counter canvas {
  position: absolute;
  /* top: -200px; */
}
/* trang tên miền */
.pagetenmien {
}
.pagetenmien .background1 {
  background: url(../images/bg_overlay_1.png) no-repeat top;
  background-size: 287%;
}
.pagetenmien .top .box1 {
  max-width: 40%;
  padding: 40px 0px;
}
.pagetenmien .top .box1 span {
  display: block;
}
.pagetenmien .top .box1 span:nth-child(1) {
  text-transform: uppercase;
  font-size: 20px;
  text-align: left;
  width: 100px;
  display: inline-block;
}
.pagetenmien .top .box1 span:nth-child(2) {
  font-size: 50px;
  color: #f6a405;
  text-transform: uppercase;
  line-height: 70px;
  max-width: 200px;
  display: inline-block;
}
.pagetenmien .top .box1 span:nth-child(3) {
  background: #0eadb3;
  font-size: 26px;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}
.pagetenmien .top .box1 span:nth-child(4) {
  font-size: 28px; /* font-family: robotobold; */
  line-height: 35px;
  font-weight: 600;
}
.pagetenmien .top .box2 {
  padding-bottom: 50px;
}
.pagetenmien .top .box2 .block-checkdomain {
  min-height: unset;
}
.pagetenmien .top .box2 .block-checkdomain .wrapbox1 .box {
  max-width: 722px;
  margin: auto;
}
.pagetenmien .morongcohoi {
  overflow: hidden;
}
.pagetenmien .morongcohoi h2 {
  text-align: center;
  font-size: 22px; /* font-family: robotobold; */
  text-transform: uppercase;
  margin-bottom: 61px;
}
.pagetenmien .morongcohoi .wrap {
  margin: 0px -15px;
  overflow: hidden;
}
.pagetenmien .morongcohoi .wrap .box {
  width: 25%;
  float: left;
  padding: 0px 15px;
  margin-bottom: 30px;
}
.pagetenmien .morongcohoi .wrap .box .hinh {
  padding: 0px 35px;
  margin-bottom: 20px;
  height: 179px;
}
.pagetenmien .morongcohoi .wrap .box .hinh img {
  max-width: 100%;
}
.pagetenmien .morongcohoi .wrap .box .noidung {
}
.pagetenmien .morongcohoi .wrap .box .noidung h3 {
  font-size: 20px;
  color: #0eadb3; /* font-family: robotobold; */
  line-height: 25px;
  text-align: center;
}
.pagetenmien .morongcohoi .wrap .box .noidung h4 {
  font-size: 15px;
  line-height: 22px;
  text-align: justify; /* font-family: robotobold; */
}
.pagetenmien .background2 {
  background: url(../images/bg_overlay_2.jpg) no-repeat top;
  margin-top: 100px;
  display: block;
  float: left;
  width: 100%;
}
.pagetenmien .thanhtich {
  position: relative;
  margin-top: -50px;
  margin-bottom: 40px;
}
.pagetenmien .thanhtich .wrap {
  max-width: 70%;
  background: #fff;
  margin: 0px auto 0px;
  overflow: hidden;
  box-shadow: 0 0 5px rgb(34 34 34 / 50%);
}
.pagetenmien .thanhtich .box {
  width: 33%;
  float: left;
  text-align: center;
  margin: 34px 0px 22px -1px;
  border-left: 1px solid #ddd;
  color: #0faeb4; /* font-family: 'RobotoBold'; */
}
.pagetenmien .thanhtich .box h5 {
  font-size: 33px;
}
.pagetenmien .thanhtich h3 {
  display: block;
  float: left;
  font-size: 16px;
  color: #666;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.pagetenmien .huychuong .box {
  color: #fff;
}
.pagetenmien .huychuong .box img {
  max-height: 70px;
  width: auto !important;
}
.pagetenmien .tenmienhoanhao {
  margin-top: 42px;
  margin-bottom: 45px;
}
.pagetenmien .tenmienhoanhao .wrap-main {
  background: url(../images/bg_overlay_2.png) #fff no-repeat;
  background-size: cover;
  display: block;
}
.pagetenmien .tenmienhoanhao h2 {
  text-align: center;
  padding: 25px 0px;
  color: #0faeb4; /* font-family: 'RobotoBold'; */
  font-size: 25px;
}
.pagetenmien .tenmienhoanhao .wrap {
  margin: 0px 100px;
  overflow: hidden;
}
.pagetenmien .tenmienhoanhao .box {
  width: 20%;
  float: left;
  padding: 0px 15px;
  text-align: center;
  margin-bottom: 20px;
}
.pagetenmien .tenmienhoanhao .box .hinh {
  margin-bottom: 18px;
  height: 92px;
  display: flex;
  justify-content: center;
}
.pagetenmien .tenmienhoanhao .box .hinh img {
  max-height: 100%;
  width: auto;
}
.pagetenmien .tenmienhoanhao .box h6 {
  color: #0faeb4; /* font-family: robotobold; */
  line-height: 23px;
}
.pagetenmien .tatcadichvubaogom {
}
.pagetenmien .tatcadichvubaogom h2 {
  text-align: center;
  color: #ffff;
  font-size: 23px; /* font-family: 'RobotoBold'; */
  margin-bottom: 43px;
}
.pagetenmien .tatcadichvubaogom .wrap {
}
.pagetenmien .tatcadichvubaogom .wrap .box {
  width: 25%;
  float: left;
  margin-bottom: 25px;
  text-align: center;
  padding: 0px 15px;
  color: #fff;
  position: relative;
}
.pagetenmien .tatcadichvubaogom .wrap .box .hinh {
  height: 94px;
  margin-bottom: 15px;
}
.pagetenmien .tatcadichvubaogom .wrap .box .hinh img {
  max-height: 100%;
  width: auto;
}
.pagetenmien .tatcadichvubaogom .wrap .box h6 {
  padding: 0px 15px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.pagetenmien .tatcadichvubaogom .wrap .box i {
  font-size: 17px;
  margin-left: 5px;
}

.pagetenmien .tatcadichvubaogom .wrap .box h5 {
  font-size: 14px;
  background: #ffc20b;
  color: #000;
  padding: 10px;
  text-align: justify;
  position: absolute;
  z-index: 9;
  bottom: 69px;
  transition: all 0.5s;
  display: none;
}
.pagetenmien .background3 {
  padding-bottom: 71px;
  background: url(../images/bg_overlay_3.png) no-repeat;
  background-size: cover;
}
.pagetenmien .background3 .hinh {
  padding: 71px 163px 55px;
  text-align: center;
}
.pagetenmien .background3 .hinh img {
  max-width: 100%;
}
.pagetenmien .background3 h3 {
  text-align: center;
  font-size: 24px;
  color: #0faeb4;
  margin-bottom: 20px;
}
.pagetenmien .background3 h3 span {
  font-size: 60px;
  color: #f2b500;
}
.pagetenmien .background3 .link {
  text-align: center;
}
.pagetenmien .background3 .link > a {
  font-size: 27px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 19px 0 18px;
  display: inline-block;
  border-radius: 20px;
  width: 240px;
  background: linear-gradient(
    to right,
    rgba(253, 195, 47, 1) 0%,
    rgba(232, 170, 54, 1) 100%
  );
  text-decoration: none;
}
/* end trang tên miền */
/* Like Share */
.social-plugin {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}
.social-plugin .at-share-btn {
  margin-bottom: 0px !important;
}
.social-plugin .zalo-share-button {
  margin-left: 3px;
}

.page_trong {
  padding: 30px 0px;
  min-height: 550px;
}
.page_trong .title-main > span {
  font-size: 32px;
}
.page_trong .title-main {
  margin-bottom: 20px;
}

/* Phân Trang */
.pagination-home {
  margin-top: 10px;
  margin-bottom: 20px;
}
.pagination-home .pagination .page-item .page-link {
  color: #555555;
  font-size: 0.875rem;
}
.pagination-home .pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #555555;
  border-color: #555555;
}

/* Phân Trang Ajax */
.pagination-ajax {
  text-align: center;
  margin-top: 5px;
}
.pagination-ajax a {
  display: inline-block;
  vertical-align: top;
  margin: 0px 4px 5px 4px;
  color: #666666;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  padding: 0px;
  border-radius: 0px;
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
}
.pagination-ajax a.current,
.pagination-ajax a:hover {
  background: #ffcc00;
  color: #fff;
  border-color: #ffcc00;
}
.pagination-ajax a.prev {
  background: #ffcc00 url(../images/ar_left.png) no-repeat center;
}
.pagination-ajax a.next {
  background: #ffcc00 url(../images/ar_right.png) no-repeat center;
}
.pagination-ajax a.first {
  background: #ffcc00 url(../images/first.png) no-repeat center;
}
.pagination-ajax a.last {
  background: #ffcc00 url(../images/last.png) no-repeat center;
}

/* Popup custom */
.modal-custom .modal-footer {
  padding: 0.5rem;
}
.modal-custom .modal-footer .btn {
  font-size: 14px;
}

/* Popup */
#popup .modal-body {
  padding: 0px;
}

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

/* Hidden Check Grammar Coccoc */
coccocgrammar {
  display: none;
}

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

/* Text Hide */
.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.text-split1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
}
.text-split2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
/* Transition All */
.transition {
  /* -webkit-transition: 0.3s ease-out; */
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  /* transition: 0.3s ease-out; */
}

/* Scale IMG */
.scale-img {
  overflow: hidden;
  display: block;
  height: 206px;
  overflow: hidden;
  text-align: center;
}
.scale-img.demoweb{
  height: auto;
}
.scale-img img {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.scale-img:hover > img {
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.news-name {
  font-size: 16px;
}
.news-name > a {
  color: #000;
}
/* Blink */
.blink {
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.floatlienhe{
     display: none; 
    position: fixed;
    right: 10px;
    top: 30%;
    background: #fff;
    box-shadow: 0px 0px 5px 1px #eee;
    border-radius: 5px;
    transition: all 0.3s;
}

.floatlienhe:before {
    content: '';
    position: absolute;
    width: 20px;
    background: transparent;
    bottom: -14px;
    right: 20px;
    border-left: 10px solid transparent;
    border-top: 14px solid #fff;
    border-right: 14px solid transparent;
}
.floatlienhe >a {
    display: block;
    margin: 5px;
    color: #000;
}
.floatlienhe >a img {
    background: #00293a;
    border-radius: 50%;
    padding: 5px;
    max-width: 33px;
    display: inline-block;
    vertical-align: middle;
}
/* Button Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
  background: #01293a;
    border-radius: 50%;
}
.btn-frame i {
  display: flex;
	display: -ms-flex;
	justify-content: center;
	align-items: center;
	-ms-flex-align: center;
	width: 32px;
	height: 32px;
	margin-left: 12px;
	border-radius: 50%;
	/* background: #00293a; */
	position: relative;
	z-index: 1;
}
.btn-frame span.open {
    font-size: 9px;
    display: block;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 99;
}
.btn-frame span.close {
    width: 50px;
    height: 50px;
    padding-top: 11px;
    text-align: center;
    background: #00293a;
    position: relative;
    z-index: 99;
    margin-top: 0px;
    color: #fff;
    border-radius: 50%;
    display: none;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #00293a;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame .pulse {
  animation-name: pulse;
}

/* Zalo */
.btn-zalo {
  bottom: 315px;
}

/* Phone */
.btn-phone {
  bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-container.closed,
.js-facebook-messenger-tooltip.closed {
  display: none !important;
}
.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}
.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}
.js-facebook-messenger-tooltip {
  display: none;
  position: fixed;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
  z-index: 1e30;
}
.js-facebook-messenger-close-tooltip {
  width: 10px;
  height: 10px;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}
.js-facebook-messenger-box.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
.js-facebook-messenger-box.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}
.js-facebook-messenger-box {
  display: block;
  position: fixed;
  cursor: pointer;
  bottom: 150px;
  right: 17px;
  width: 56px;
  height: 56px;
  text-align: center;
  background: #00293a;
  border-radius: 100%;
  overflow: hidden;
  z-index: 99;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}
.js-facebook-messenger-box.rotate svg#fb-msng-icon {
  transform: rotate(0deg);
}
.js-facebook-messenger-box svg#fb-msng-icon {
  width: 32px;
  height: 33px;
  position: absolute;
  top: 13px;
  left: 12px;
  opacity: 1;
  overflow: hidden;
  -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}
.js-facebook-messenger-box.rotate svg#close-icon {
  transform: rotate(-45deg);
}
.js-facebook-messenger-box svg#close-icon {
  opacity: 0;
  width: 19px;
  height: 20px;
  position: absolute;
  top: 19px;
  left: 19px;
  -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
  transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}
.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 1000;
}
.js-facebook-messenger-container {
  position: fixed;
  opacity: 0;
  transform: translateY(50px);
  bottom: 110px;
  right: 90px;
  border-radius: 10px;
  pointer-events: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
  -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
  transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
}
.js-facebook-messenger-top-header {
  width: 220px;
}
.js-facebook-messenger-top-header {
  color: #fff;
  background: #00293a;
}
.js-facebook-messenger-top-header {
  display: block;
  position: relative;
  width: 220px;
  background: #00293a;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 10px;
  font-size: 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
  z-index: 999;
}
.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
  z-index: 1000;
}
.js-facebook-messenger-top-header {
  color: #fff;
  background: #00293a;
}
.js-facebook-messenger-top-header {
  width: 220px;
}
.js-facebook-messenger-tooltip {
  color: #404040;
  background: #fff;
}
.js-facebook-messenger-container.open {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}
.js-facebook-messenger-tooltip {
  bottom: 97px;
  right: 97px;
}
.js-facebook-messenger-box.open svg#fb-msng-icon {
  opacity: 0;
}
.js-facebook-messenger-box.rotate.open svg#close-icon {
  transform: rotate(0deg);
}
.js-facebook-messenger-box.open svg#close-icon {
  opacity: 1;
}

.tt p {
  margin-bottom: 5px;
  color: #000;
  font-size: 14px;
}
.tt p i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  margin-right: 10px;
  font-size: 18px;
  border-radius: 5px;
}

/* Cart fix */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 390px;
  z-index: 10;
  background: #4b4f56;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff !important;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-fixed i {
  font-size: 20px;
}
.cart-fixed span {
  position: absolute;
  top: 0px;
  right: -5px;
  color: #fff;
  width: 25px;
  height: 25px;
  background: var(--color-red);
  text-align: center;
  line-height: 25px;
  font-size: 11px;
  border-radius: 100%;
}

/* Toolbar */
.toolbar {
  background: var(--color-red);
  width: 100%;
  padding: 3vw;
  bottom: 0px;
  position: fixed;
  z-index: 500;
  height: auto;
  left: 0px;
}
.toolbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
}
.toolbar ul li {
  text-align: center;
  width: 25%;
}
.toolbar ul li a {
  display: block;
  width: 100%;
  cursor: pointer;
}
.toolbar ul li a img {
  height: 6vw;
  width: auto;
}
.toolbar ul li a span {
  font-weight: 400;
  color: #fff;
  font-size: 3.5vw;
  display: none;
}

/* Fixbar */
.fixbar {
  bottom: 0;
  display: block;
  background: #f0eff4;
  border-top: 1px solid #ddd;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  margin: 0;
  z-index: 500;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 50px;
}
.fixbar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.fixbar ul li {
  display: inline-block;
  margin: 0 auto 10px;
  text-align: center;
  width: 25%;
  float: left;
}
.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
  width: 20px;
  height: 20px;
  display: block;
  margin: 8px auto 0;
}
.fixbar .icon-cart-mobile {
  background: url(../images/cart-mobile.png) no-repeat;
}
.cart-total-header-mobile {
  font-size: 10px;
  position: absolute;
  background: red;
  color: #fff !important;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  line-height: 15px;
  top: 5px;
  margin-left: 5px;
}
.fixbar ul li a {
  font-size: 11px;
  text-decoration: none;
  color: #333;
}
.fixbar ul li a i {
  font-size: 20px;
}

/* Plugbar */
.plugbar {
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eae6e6;
  width: 100%;
  right: 0;
  max-width: 767px;
  margin: 0 auto;
  background: #fff;
  padding: 9px 10px 10px 7px;
  z-index: 10;
}
.plugbar ul {
  list-style: none;
  padding: 0;
  margin: 0px;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plugbar ul li {
  width: 20%;
  float: left;
}
.plugbar ul li a {
  display: block;
  color: #696969;
  font-size: 12px;
  text-align: center;
  position: relative;
}
.plugbar ul li a i {
  font-size: 20px;
  color: #696969;
}
.plugbar ul li a span {
  position: absolute;
  width: 50px;
  height: 50px;
  top: -40px;
  left: calc(50% - 50px / 2);
  font-size: 14px;
  display: block;
  border: 1px solid rgba(234, 230, 230, 0.5);
  border-radius: 100%;
}

.rows_1 {
  -webkit-line-clamp: 1;
}
.rows_2 {
  -webkit-line-clamp: 2;
}
.rows_3 {
  -webkit-line-clamp: 3;
}
.rows_4 {
  -webkit-line-clamp: 4;
}
.rows_5 {
  -webkit-line-clamp: 5;
}

/* Combo Phone */

/* Phone Switch */
.widget-mobile {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 9999999;
}
#my-phone-circle {
  position: relative;
  width: 50px !important;
  height: 50px !important;
}
.wcircle-open .wcircle-icon i:before {
  content: "\f00d";
}
.wcircle-icon {
  background: #1282fc;
  border-radius: 50%;
  display: flex !important;
  display: -ms-flex !important;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative !important;
}
.wcircle-icon:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(18, 130, 252, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  -webkit-animation: pulse 1s infinite ease-in-out;
  -moz-animation: pulse 1s infinite ease-in-out;
  -ms-animation: pulse 1s infinite ease-in-out;
  -o-animation: pulse 1s infinite ease-in-out;
  animation: pulse 1s infinite ease-in-out;
}
.wcircle-icon:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(18, 130, 252, 0.5);
  border-radius: 50%;
  left: -15px;
  top: -15px;
  -webkit-animation: zoomIn 2s infinite ease-in-out;
  -moz-animation: zoomIn 2s infinite ease-in-out;
  -ms-animation: zoomIn 2s infinite ease-in-out;
  -o-animation: zoomIn 2s infinite ease-in-out;
  animation: zoomIn 2s infinite ease-in-out;
}
.wcircle-menu {
  position: absolute !important;
  left: 0;
  top: 0;
  display: none;
}
.wcircle-menu-item {
  width: 50px;
  height: 50px;
  background: #1282fc;
  border-radius: 50%;
  display: flex;
  display: -ms-flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wcircle-menu-item img {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
}
.wcircle-menu-item i,
.wcircle-icon i {
  font-size: 25px;
  color: #fff;
  position: relative;
  z-index: 9999;
}
.shake-anim {
  -webkit-animation: shake-anim 1s infinite ease-in-out;
  -moz-animation: shake-anim 1s infinite ease-in-out;
  -ms-animation: shake-anim 1s infinite ease-in-out;
  -o-animation: shake-anim 1s infinite ease-in-out;
  animation: shake-anim 1s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
@-moz-keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes shake-anim {
  0%,
  100%,
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
}
@-o-keyframes shake-anim {
  0%,
  100%,
  50% {
    -o-transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -o-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -o-transform: rotate(25deg) scale(1) skew(1deg);
  }
}
.mobile {
  display: none;
}
.g-recaptcha {
  display: inline-block;
}

.slideshow-imgseo {
  position: absolute;
  top: 200px;
  right: 50px;
  transform: translateY(-50%);
}

.slideshow-imgseo img {
  max-height: 330px;
  -webkit-animation-name: lolung;
  -webkit-animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: lolung;
  -moz-animation-duration: 3s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: lolung;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Responsive */
@media (min-width: 1280px) {
  .goiytenmien .item .right span img {
    margin-right: 5px;
  }
  .tinhnangtenmien .box {
    padding-right: 20px;
  }
  .tinhnangtenmien .box:nth-child(2n) {
    padding-left: 20px;
    padding-right: 0px;
  }
  .index1 h2 {
    font-size: 25px;
  }
  .index6 .box .innerbox .hinh {
    height: 202px;
  }
  .ssl3 .box .hinh img {
    max-height: 100% !important;
  }
  .thietkeweb1 .tieude {
    padding: 30px 0px 20px;
    margin-bottom: 20px;
  }
  .thietkeweb1 .noidung {
    /*max-width: 45%;*/
    margin: auto;
  }
  .kiemtratenmien .top, .kiemtratenmien .middle{
    max-width: 75%;
    margin: auto;
  }
  .kiemtratenmien .top{
    max-width: 75%;
    margin-bottom: 30px;
  }
}

@media (max-width: 1220px) {
  .footer-powered .wrap-content {
    padding: 15px 10px;
  }
  .page_trong {
    padding: 30px 10px;
  }
  .kiemtratenmien .top, .kiemtratenmien .middle{
    max-width: unset;
  }
}
@media (max-width: 1024px) {
  .logo-menu-res img {
    max-height: 55px;
  }
  .block-checkdomain {
    margin-top: 40px;
    padding: 0px 20px;
  }
  .index4 .wrapbox .box {
    margin: 0px 5px;
  }
  .index5 .box {
    margin: 0px 5px;
  }
  .contenchung .middle .bangsosanh .wrapbox {
    background: transparent;
  }
  .contenchung .middle .bangsosanh table {
    width: 100%;
  }
  .contenchung .middle .bangsosanh table:nth-child(2) {
    position: relative;
    left: 0;
    margin: 15px 0px;
  }
  .contenchung .middle .bangsosanh table:nth-child(3) {
    position: relative;
    left: 0;
  }
  .taisaothue .box {
    padding: 0px 5px;
  }

  .khachhangnx .host-slidekh .box {
    margin: 0px 5px;
  }
  .tenmientrong .group2 .box .inner {
    margin: 0px 5px;
  }
  .tenmientrong .group5 .box .inner {
    margin: 0px 5px;
  }
  .tenmientrong .group6 .box .inner {
    margin: 0px 5px;
  }
  .banggia-group3 .wrapbox2 {
    padding: 10px;
    width: 100%;
  }
  .height.mobile {
    clear: both;
    height: 56px;
    width: 100%;
    display: block;
  }
  .menu-res .hotline-header {
    display: inline-block;
    padding-left: 0px;
    background: transparent;
  }
  .menu-res .hotline-header span {
    color: #fff;
    font-size: 22px;
  }
  .title-main > span,
  .page_trong .title-main > span {
    font-size: 30px;
  }
  .thietkeweb1 {
    margin-top: 80px;
  }
  .thietkeweb2 .tieude2 {
    max-width: 100%;
  }
  .newsletter-button {
    text-align: center;
  }
  .footer-article .wrap-content {
    flex-wrap: wrap;
  }
  .footer-news:nth-child(1) {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-powered .wrap-content {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .copyright,
  .statistic {
    display: block;
    width: 100%;
    text-align: center;
  }
  .grid-pro-detail {
    margin-bottom: 20px;
  }
  .menu {
    display: none;
  }
  .menu-res {
    display: block;
  }

  .mm-panel,
  .mm-navbar {
    background: #fff;
  }
  img {
    height: auto !important;
  }
  .pbThumbs img {
    height: 96% !important;
  }
  .toolbar ul li a img {
    height: 6vw !important;
    width: auto;
  }
}
@media (max-width: 850px) {
  .block-checkdomain .wrapbox1 h2 {
    font-size: 20px;
  }
  .index1 .box,
  .index1 .box1 {
    /*width: 20%;*/
    margin-bottom: 10px;
  }
  .tieude {
    /* font-size: 21px !important; */
  }
  .index5 .slidebaochi .slick-dots {
    margin-top: 0px;
  }
  .index6 .xemtatca{
    float: left;
    margin-top: 10px;
}
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .contenchung .middle .quatang .center {
    max-width: calc(100% - 90px);
  }
  .contenchung h2,
  .contenchung .middle .quatang .center h3,
  .dangkydungthu h4,
  .sosanhthongso h3,
  .khachhangnx h2,
  .cauhoithuonggap h2 {
    font-size: 21px !important;
  }
  .contenchung .middle h6,
  .contenchung .middle .quatang .center h4,
  .dangky-ctv h3,
  .ssl3 .tieude {
    font-size: 16px !important;
  }
  .taisaothue .box {
    width: calc(50% - 2px);
  }
  .dangkydungthu .left {
    display: none;
  }
  .dangkydungthu .right {
    width: 100%;
  }
  .dangky-ctv .wrapbox {
    display: block;
  }
  .dangky-ctv .box {
    width: calc(50% - 2px);
    margin-top: 10px;
  }
  .tenmientrong .group2 .box {
    width: calc(50% - 2px);
    margin-bottom: 10px;
  }
  .tenmientrong .group3 .left {
    width: 100%;
  }
  .tenmientrong .group3 .right {
    width: 100%;
  }
  .tenmientrong .group5 .box {
    width: calc(50% - 2px);
  }
  .tenmientrong .group7 .box .noidung {
    width: 69%;
  }
  .banggia-group1 .box {
    width: calc(50% - 2px);
  }
  .banggia-group2 .left {
    width: 100%;
    padding: 0px;
  }
  .banggia-group2 .right {
    width: 100%;
  }
  .banggia-group2 {
    margin: 0px 0px 40px;
  }
  .group-tenmienvn1 .box .noidung {
    width: 100%;
    padding: 0px !important;
    margin-bottom: 20px;
  }
  .ssl1 .tieude {
    margin: 0px 0px 40px;
  }
  .ssl1 .box {
    width: calc(50% - 2px);
  }
  .ssl3 .box {
    width: calc(50% - 2px);
    padding: 0px 5px;
  }
  .news {
    max-width: unset;
    flex: 0 0 50%;
    padding: 0px 5px;
  }
  .boxcauhoi h3 {
    font-size: 15px;
  }
  .thietkeweb6 .right .tieude span {
    line-height: 28px;
  }
  .thietkeweb6 .box {
    margin-bottom: 20px;
  }
  .thietkeweb6 {
    padding: 20px 0px 0px;
  }
  .thietkeweb7 .slogan {
    margin-bottom: 30px;
  }
  .thietkeweb7 .box .inner {
    padding: 20px;
  }
  .thietkeweb7 .box {
    margin-bottom: 20px;
  }
  .thietkeweb7 .box:nth-child(2) {
    margin-top: 0px;
  }
  .thietkeweb9 {
    padding-top: 30px;
  }
  .thietkeweb9 .tieude1 {
    margin-bottom: 30px;
  }
  .thietkeweb9 .wrapbox {
    margin: 0px;
    padding: 30px 20px 0px;
  }
  .thietkeweb9 .box .noidung img {
    margin-top: 10px;
  }
  .footer .top {
    text-align: center;
  }
  .footer .top .info {
    width: 100%;
    text-align: left !important;
    display: block;
    margin-bottom: 10px;
  }
  .footer .middle .box {
    width: 50% !important;
    margin-bottom: 15px;
  }
  .footer-news:nth-child(2),
  .footer-news:nth-child(3) {
    width: 50%;
  }
  .news {
    width: 100%;
    float: none !important;
  }
}
@media (max-width: 769px) {
  .title-main > span,
  .page_trong .title-main > span {
    font-size: 26px;
  }
  .footer-news:nth-child(2) {
    max-width: 100%;
    margin-bottom: 10px;
    width: 100%;
  }
  .footer-news:nth-child(3) {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
  .footer-news:nth-child(4) {
    width: 100%;
  }
  .pic-news {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .info-news {
    width: 100%;
    float: none;
  }
  .top-contact {
    flex-wrap: wrap;
  }
  .left-pro-detail,
  .right-pro-detail,
  .top-contact .form-contact,
  .top-contact .article-contact {
    width: 100%;
    margin: 0px;
  }
  .left-pro-detail,
  .top-contact .article-contact {
    margin-bottom: 30px;
  }
  .newsleft {
    width: 100%;
  }
  .newsright {
    display: none;
  }
  .nhieubaiviet {
    margin: 0px;
  }
  .pagetenmien .top .box1 {
    max-width: 100%;
  }
  .pagetenmien .top .container {
  }
  .pagetenmien .morongcohoi .wrap .box {
    width: 50%;
    margin-bottom: 20px;
  }
  .pagetenmien .thanhtich .wrap {
    max-width: 100%;
  }
  .pagetenmien .tenmienhoanhao .wrap {
    margin: 0px;
  }
  .ketnoiclickweb .right img {
    margin-top: 10px;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .block-checkdomain .wrapbox1 .box input {
    width: calc(100% - 155px);
  }
  .block-checkdomain .wrapbox1 .box button {
    width: 150px;
  }
  .block-checkdomain .wrapthongbao .hinh {
    display: none;
  }
  .block-checkdomain .wrapthongbao .noidung {
    width: 100%;
  }
  .block-checkdomain .thongtinwhois {
    width: 100%;
    left: 0;
  }
  .goiytenmien .item {
    padding: 9px 10px;
  }
  .goiytenmien .item .left {
    width: 45%;
  }
  .goiytenmien .item .center {
    width: 40%;
  }
  .goiytenmien .item .center span {
    display: block;
  }
  .goiytenmien .item .right {
    width: 41px;
  }
  .goiytenmien .item .right span {
    padding: 4px;
  }
  .goiytenmien .item .right span i {
    display: none;
  }
  .goiytenmien {
    width: 100%;
  }
  .index1 .left{
    padding: 15px 10px;
    margin-bottom: 20px;
}
  .index2 .nav{
    /* background: unset; */
    display: flex;
    align-items: center;
  }
  .index2 .nav li {
      width: calc((100% / 3) - 3px);
  }
  .index2 .nav li >a {
    padding: 5px;
    font-size: 14px;
    height: 49px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .index4 .wrapbox .owl-carousel .owl-stage-outer{
    padding: 20px 0px;
}
  .khachhangnx .host-slidekh .box .hinhkh {
    width: 30%;
  }
  .contenchung .middle .dungthu .right {
    width: 100%;
  }
  .contenchung .middle .thangsudung .inner span {
    border: 1px solid #0d92fc;
    margin: 5px;
    border-radius: 5px;
  }
  .trangthai {
    padding: 0px;
    overflow: unset;
    position: relative;
    z-index: 1;
  }
  .trangthai .box span:nth-child(1) {
    font-size: 13px;
  }
  .trangthai .box.active .bar {
    width: calc(160% - 10px);
    left: calc(-69% + 5px);
  }
  .trangthai .box .bar {
    width: 140%;
  }
  .trangthai .box:nth-child(2) .bar {
    left: -94%;
  }
  .trangthai .box:nth-child(1) span:nth-child(2) {
    margin: 0px 5px;
  }
  .trangthai .box:nth-child(3) span:nth-child(2) {
    margin: 0px 5px 0px auto;
  }
  .giohangtenmien .box1 .left {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 15px;
  }
  .giohangtenmien .box1 .left .bottom .mota {
    width: 100%;
  }
  .giohangtenmien .box1 .right {
    width: 100%;
  }
  .giohangtenmien .box3 {
    width: 98%;
    padding: 20px 10px;
  }
  .giohangtenmien .box3 .noidung > a img {
    height: 30px !important;
    border-radius: 8px;
  }
  .giohangtenmien .box4 {
    max-width: 100%;
    text-align: left;
  }
  .giohangtomtat .wrap1 {
    width: 100%;
    margin-bottom: 20px;
  }
  .giohangtomtat .wrap2 {
    width: 100%;
  }
  .top-cart {
    width: 100%;
    border-right: 0px;
    padding-right: 0px !important;
    margin-right: 0px;
  }
  .procart {
    font-size: 12px;
  }
  .procart.desktop {
    display: none !important;
  }
  .procart-1 .info:first-child {
    margin-bottom: 20px;
  }
  .procart-1 .info .tieude {
    background: #c3e1fb !important;
    text-align: left;
    font-size: 15px !important;
    padding: 6px;
    color: #555;
  }
  .procart-1 .info:first-child div:nth-child(2n-1) {
    background: #eee;
    padding: 5px 0px;
  }
  .bottom-cart {
    width: 100%;
    margin-top: 20px;
  }

  .pagetenmien .top .wrap-main {
    background: unset !important;
  }
  .pagetenmien .top .box1 {
    padding: 0px;
    text-align: center;
  }
  .pagetenmien .top .box2 {
    padding-bottom: 0px;
  }
  .pagetenmien .morongcohoi {
    margin-top: 20px;
  }
  .pagetenmien .morongcohoi h2 {
    font-size: 15px;
  }
  .pagetenmien .background2 {
    background: url(../images/bg_overlay_2.jpg) top;
  }
  .pagetenmien .tenmienhoanhao .wrap {
    text-align: center;
  }
  .pagetenmien .tenmienhoanhao .box {
    display: inline-block;
    width: calc(50% - 2px);
    float: unset;
    vertical-align: top;
  }
  .pagetenmien .tatcadichvubaogom {
  }
  .pagetenmien .tatcadichvubaogom .wrap {
    overflow: hidden;
  }
  .pagetenmien .tatcadichvubaogom .wrap .box {
    width: calc(50% - 2px);
    display: inline-block;
    vertical-align: top;
  }
  .group-tenmienvn1 .box .hinh {
    width: 100%;
  }
  .banggia-group3 .tab-content {
    overflow-x: auto !important;
  }
  .banggia-group3 .tab-content > .tab-pane {
    width: 770px;
  }
  .tenmientrong .group5 .box .noidung {
    width: 100%;
  }
  .tenmientrong .group5 .box div > a {
    position: relative;
    bottom: -6px;
    left: 0px;
  }
  .ssl3 .box .hinh img {
    max-height: 100%;
  }
  .ngaythangdetail {
    height: auto;
  }
  .googlenews > a {
    margin-left: 0px;
  }
  
  .thietkeweb4 .wrapbox .inner {
    display: block;
    padding: 0px 10px;
  }
  .thietkeweb4 .wrapbox .hinh {
    width: 100%;
  }
  .thietkeweb4 .wrapbox .noidung {
    width: 100%;
  }
  .thietkeweb4 .wrapbox .noidung svg {
    height: 50%;
  }
  .thietkeweb12 .nav-tabs {
    max-width: 100%;
  }
  .footer-powered {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .footer .middle .box:last-child {
    width: 100% !important;
  }
  #histats_counter{
	position: relative;
    bottom: 150px;
    left: 5px;
    height: 30px;
  }
  .btn-frame{
    bottom: 133px;
  }
  .floatlienhe{
    top: unset;
    bottom: 230px;
  }
}
@media (max-width: 480px) {
  .wrap-main {
      width: unset!important;
  }
  .menu-bar-res .quatang i {
    top: -7px;
    left: unset;
    right: -15px;
    text-align: center;
  }
  .block-checkdomain .wrapbox2 .slidedomain {
    width: calc(156px * 4);
  }
  .block-checkdomain .wrapbox1 h2{
    font-size: 15px;
    margin-bottom: 8px;
  }
  .block-checkdomain .wrapbox1 h3{
    font-size: 14px;
  }
  .block-checkdomain .wrapbox1 .box input {
    /*width: calc(100% - 102px);*/
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0px;
    height: 48px;
  }
  .block-checkdomain .wrapbox1 .box select {
    /* border-radius: 5px; */
    width: 100px;
    height: 48px;
  }
  .block-checkdomain .wrapbox1 .box button {
    width: 100%;
    border-radius: 5px;
  }
  .block-checkdomain .wrapbox2 {
    padding-bottom: 20px;
  }
  .block-checkdomain .wrapbox2 .slidedomain {
    height: 129px !important;
  }
  .block-checkdomain .wrapbox2 .slidedomain .box {
    height: 120px;
  }
  .block-checkdomain .wrapbox2 .slidedomain .box .noidung span:first-child {
    font-size: 17px;
  }
  .block-checkdomain .wrapbox2 .slidedomain .box .noidung span:nth-child(2) {
    font-size: 15px;
  }
  .index1 .right{
    padding: 20px 9px;
}
  .index2{
    padding: 20px 16px;
}
  .index2 .wrap {
    margin: 0px -9px;
  }
  .index2 .centernav{
    padding: 0px 15px;
  }
  .index2 .centernav ul li >a {
      font-size: 13px;
  }
  .index2 .box {
    width: calc(100% - 20px);
    padding: 14px 20px;
    margin: 0px auto 0px;
    display: block;
  }
  .index2 .box .innerbox {
    border-radius: 0px;
  }
  .index2 .box .noidung h5 {
    max-height: 100px;
  }
  .index2 .box .noidung .gia span:nth-child(1) {
    font-size: 12px;
  }
  .index2 .box .noidung .gia span:nth-child(2) {
    font-size: 13px;
  }
  .index2 .tab-content{
    padding: 0px 8px;
}
  .hotro{
    padding: 26px 10px 30px;
}
.dichvu {
    padding: 30px 10px;
}
  .dichvu .left{
    padding: 20px 12px;
}
  .chungchi{
    padding: 20px 10px;
  }
  .combo{
    padding: 20px 10px;
}
  .gioithieu{
    padding: 20px 10px;
}
  .gioithieu .bottom{
    grid-template-columns: auto auto;
}
  .quytrinh, .khachtieubieu, .index4{
    padding: 20px 10px;
  }
  .quytrinh .wrap{
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
  .index6{
    padding: 20px 10px;
}
  .index6 .wrapbox{
    /* grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); */
  }
  .index6 .box {
    width: 100%;
  }
  .index6 .box img {
    width: 100%;
  }
  .index7{
    padding: 20px 10px;
  }
  .index2 .box .hinh img {
    margin-top: 0px;
  }
  .index4 .tieude {
    padding: 0px;
    font-size: 20px;
  }
  .tuvannhanh{
    padding: 20px 10px;
}
  .tuvannhanh .left h2{
    font-size: 20px;
    line-height: 1.5;
}
.tuvannhanh .wrap-main {
    padding: 30px 10px;
}
  .taisaothue .box {
    /*width: 100%;*/
  }
  .dangkydungthu .right form .inputbox .box {
    width: 100%;
  }
  .dangkydungthu .right form .inputbox .box:nth-child(1) {
    margin-bottom: 20px;
  }
  .dangky-ctv .box {
    padding: 0px 3px;
    vertical-align: top;
    line-height: 5px;
  }
  .khachhangnx .host-slidekh .box .noidung {
    padding: 6px;
    width: 100%;
  }
  .contenchung .middle .dungthu .left {
    width: 100%;
  }
  .contenchung .middle .quatang .center {
    width: 100%;
    margin: 0px;
  }
  .khachhangnx .host-slidekh {
    margin: 0px;
  }
  .khachhangnx .host-slidekh .box .hinhkh.mobile {
    display: block;
    width: 100%;
    float: unset;
    margin: auto;
  }
  .khachhangnx .host-slidekh .box .hinhkh.desktop {
    display: none;
  }
  .tenmientrong .group4 .wrapbox iframe {
    width: 100%;
  }
  .tenmientrong .group5 .box {
    width: 100%;
  }
  .tenmientrong .group6 .box {
    width: 100%;
    margin: 0px 0px 20px 0px;
  }
  .tenmientrong .group8 .box {
    width: 50%;
  }
  .tinhnangtenmien .box {
    width: 100%;
  }
  .banggia-group2 .right iframe {
    width: 100%;
  }
  .ssl1 .box {
    width: 100%;
    padding: 0px;
  }
  .ssl2 .left,
  .ssl2 .right {
    width: 100%;
  }
  .ssl3 .box {
    width: 100%;
    padding: 0px;
  }
  .nhieubaiviet .news {
    flex: 100%;
  }
  .desc-newshome {
    font-size: 12px;
    height: 48px;
    line-height: 16px;
  }
  .name-newshome {
    font-size: 14px;
    line-height: 18px;
    height: 36px;
  }
  .name-newshome.text-split {
    -webkit-line-clamp: 2;
  }
  .pic-newshome-normal {
    width: 42%;
  }
  .info-newshome-normal {
    width: calc(100% - 45%);
  }
  .pic-news,
  .info-news {
    display: block;
    width: 100%;
    float: none;
    text-align: center;
    margin: 0px;
  }
  .info-news {
    margin-top: 15px;
  }
  .top-contact .form-contact .button-contact .file-contact span b {
    max-width: 105px;
  }
  .banner {
    display: none;
  }
  .scale-img {
    /*max-height: 170px;*/
  }
  .breadCrumbs {
    margin-bottom: 30px;
  }
  .newsleft h1 {
    font-size: 20px;
  }
  .ngaythangdetail {
    height: auto;
    overflow: hidden;
  }
  .footer-article .wrap-content {
    padding-top: 40px !important;
  }
  .footer-article .bottom .footer-news:nth-child(2),
  .footer-article .bottom .footer-news:nth-child(3) {
    width: 50%;
  }
  .footer-article .bottom .footer-news:nth-child(3) {
    margin-top: 40px;
  }
  .kiemtratenmien .middle .line1 h3 {
    width: 100%;
  }
  .chitietdangky {
    padding: 20px 0px;
  }
  .chitietdangky .line1 .box1 {
    width: 100%;
  }
  .chitietdangky .line1 .box2 {
    width: 100%;
    padding: 0px 25px 25px;
    text-align: left;
  }
  .chitietdangky .line1-1 .left {
    width: 100%;
    border-right: 0px;
  }
  .chitietdangky .line1-1 .right {
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
    margin-top: -5px;
  }
  .pagetenmien .morongcohoi .wrap .box .hinh {
    height: 88px;
  }
  .giohangtenmien .box1 .left .bottom .mota .left {
    width: calc(100% - 30px);
    margin-bottom: 5px;
  }
  .giohangtenmien .box1 .left .bottom .mota .riht {
    width: 100%;
    float: left;
    text-align: left;
    padding-left: 23px;
  }
  .giohangtenmien .box1 .left .bottom .mota .riht span:nth-child(1) {
    display: inline-block;
    margin-right: 10px;
  }
  .giohangtomtat .wrap1 .box1,
  .giohangtomtat .wrap1 .box2 {
    position: relative;
  }
  .giohangtomtat .wrap1 .box1 .right button,
  .giohangtomtat .wrap1 .box2 .right button {
    position: absolute;
    right: 10px;
    top: 50px;
  }
  .giohangtomtat .wrap1 .box1 .left {
    width: 100%;
  }
  .giohangtomtat .wrap1 .box1 .right {
    width: 100%;
    text-align: left;
  }
  .giohangtomtat .wrap1 .box2 .left {
    width: 100%;
  }
  .giohangtomtat .wrap1 .box2 .right {
    width: 100%;
    text-align: left;
  }
  .pagetenmien .background3 .hinh {
    display: none;
  }
  .tenmientrong .group5 .box div > a {
    position: absolute;
    bottom: unset;
    left: unset;
  }
  .thietkeweb1 .tieude *,
  .thietkeweb2 .tieude2 *,
  .thietkeweb5 .tieude * {
    font-size: 20px !important;
  }
  .thietkeweb1 .hinh {
    height: 608px;
  }
  .thietkeweb1 .hinhphu img:nth-child(1),
  .thietkeweb1 .hinhphu img:nth-child(3) {
    left: unset;
    right: 0px;
  }
  .thietkeweb1 .hinhphu img:nth-child(2),
  .thietkeweb1 .hinhphu img:nth-child(4) {
    right: unset;
    left: 0px;
  }
  .thietkeweb2 .tieude1 {
    width: 75%;
  }
  .thietkeweb4 .tieude1 {
    width: 75%;
  }
  .thietkeweb5 .tieude div {
    font-size: 16px !important;
  }
  .thietkeweb8 .tieude1 {
    width: auto;
    text-align: center;
  }
  .thietkeweb9 .tieude {
    margin-bottom: 20px;
  }
  .thietkeweb12 .news .news-image {
    margin-bottom: 10px;
  }
  .thietkeweb12 .news .scale-img {
    max-height: 110px;
  }
  .thietkeweb12 .tieude {
    margin-bottom: 10px;
  }
}
@media (max-width: 369px) {
  .cart-pro-detail {
    flex-wrap: wrap;
  }
  .cart-pro-detail a {
    width: 100%;
    text-align: center;
    margin: 0px !important;
    font-size: 12px;
  }
  .cart-pro-detail a:first-child {
    margin-bottom: 5px !important;
  }
  .cart-pro-detail a i {
    display: none;
  }
}
/* Fix Toc Clickweb - gọn mục lục, hạn chế CLS */
.meta-toc {
  position: relative !important;
  background: #ffffff !important;
  margin: 18px 0 22px !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  min-height: 58px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}

.meta-toc details {
  display: block !important;
}

.meta-toc summary {
  list-style: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 15px 18px !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  background: linear-gradient(90deg, #fff8dc, #ffffff) !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

.meta-toc summary::-webkit-details-marker {
  display: none !important;
}

.meta-toc summary span:first-child {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.meta-toc summary span:last-child {
  font-size: 14px !important;
  color: #666 !important;
  font-weight: 500 !important;
}

.meta-toc summary i {
  position: static !important;
  display: inline-block !important;
  z-index: auto !important;
  right: auto !important;
  top: auto !important;
  font-size: 18px !important;
  background: transparent !important;
  color: #ffc20b !important;
  cursor: pointer !important;
  margin: 0 !important;
}

.meta-toc .left {
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.meta-toc .left i {
  position: static !important;
  display: inline-block !important;
  top: auto !important;
  left: auto !important;
  font-size: 18px !important;
  margin-right: 0 !important;
}

.meta-toc i:hover {
  color: #ffc20b !important;
}

.meta-toc i.btn1,
.meta-toc i.btn2 {
  display: none !important;
}

.box-readmore {
  padding: 12px 18px 16px !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  transition: none !important;
}

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

.box-readmore ul li {
  display: table !important;
  counter-increment: item !important;
  margin-bottom: 8px !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.box-readmore ul li:before {
  content: counters(item, ".") ". " !important;
  display: table-cell !important;
  padding-right: 7px !important;
  color: #ffc20b !important;
  font-weight: 700 !important;
}

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

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

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

.box-readmore ul li a:hover {
  color: #c58d00 !important;
}

.toc-list {
  margin: 0 !important;
  padding-left: 0 !important;
}

@media screen and (max-width: 767px) {
  .meta-toc {
    margin: 14px 0 18px !important;
    border-radius: 12px !important;
    min-height: 56px !important;
  }

  .meta-toc summary {
    padding: 13px 14px !important;
    font-size: 16px !important;
  }

  .meta-toc summary span:last-child {
    font-size: 13px !important;
  }

  .box-readmore {
    padding: 10px 14px 14px !important;
  }

  .box-readmore ul li {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
}
/* Fix dropdown menu desktop bị rớt layout sau khi tối ưu ảnh */
.menu ul li ul,
.menu > ul > li > ul,
.menu ul li:hover > ul {
  z-index: 9999;
}

.menu ul li ul li a,
.menu > ul > li > ul li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  line-height: 1.35 !important;
  white-space: normal !important;
}

.menu ul li ul li a img,
.menu > ul > li > ul li a img,
.menu ul li ul li img,
.menu > ul > li > ul li img {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: cover !important;
  flex: 0 0 42px !important;
  display: inline-block !important;
}

.menu ul li ul li a span,
.menu > ul > li > ul li a span {
  display: inline-block !important;
}

.menu ul li ul li h2,
.menu ul li ul li h3,
.menu ul li ul li .name,
.menu ul li ul li .title {
  font-size: 16px !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

.menu ul li ul li p,
.menu ul li ul li .desc,
.menu ul li ul li .description {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 3px 0 0 !important;
}
/* Desktop dropdown menu Clickweb - bản sạch, ng bộ nền item */
@media screen and (min-width: 768px) {
  .menu .menu_top > ul > li {
    /* position: relative; */
  }

  .menu .menu_top > ul > li > ul {
    padding: 6px !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12) !important;
    background: #ffffff !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: hidden !important;
  }

  .menu .menu_top > ul > li > ul > li {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    opacity: 1 !important;
  }

  .menu .menu_top > ul > li > ul > li + li {
    margin-top: 4px !important;
  }

  .menu .menu_top > ul > li > ul > li > a {
    min-height: 58px !important;
    padding: 6px 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    line-height: 1.25 !important;
    background: #eef7f7 !important;
    opacity: 1 !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  .menu .menu_top > ul > li > ul > li > a:hover,
  .menu .menu_top > ul > li > ul > li > a.active {
    background: #e4f2f2 !important;
  }

  .menu .menu_top > ul > li > ul > li > a img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    object-fit: cover !important;
    border-radius: 7px !important;
    display: block !important;
    flex: 0 0 42px !important;
    margin: 0 !important;
    opacity: 1 !important;
  }

  .menu .menu_top > ul > li > ul > li > a .right {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    opacity: 1 !important;
  }

  .menu .menu_top > ul > li > ul > li > a .right span:first-child {
    font-size: 15px !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #111111 !important;
    opacity: 1 !important;
  }

  .menu .menu_top > ul > li > ul > li > a .right span:last-child {
    font-size: 13.5px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    color: #777777 !important;
    opacity: 1 !important;
  }
}
