/* .adm-glyphicon span {
  background: url("./img/setting.png");
  background-size: cover;
  width: 12px;
  height: 12px;
  display: block;
  float: left;
} */

/* ── Reset & Base ─────────────────────────────────────── */
* {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #333;
  margin: 0;
  background: #fff;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  /* padding: 0 15px; */
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none !important;
}
a:hover {
  text-decoration: none;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.h1-hide {
  height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.sec-heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: 35px;
  letter-spacing: 1px;
  color: #395b9a;
}
.sec-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #CD2326;
  margin: 10px auto 0;
}
.sec-heading--light {
  color: #fff;
}
.sec-heading--light::after {
  background: #CD2326;
}

/* ── NAVBAR TOP ────────────────────────────────────────── */
.navbar-top {
  background: #28256A;
  height: 40px;
  overflow: hidden;
}
.navbar-top .row {
  height: 40px;
}
.navbar-top__item {
  color: #bbb;
  font-size: 12px;
  margin-right: 18px;
  display: inline-block;
  line-height: 40px;
}
.navbar-top__item i {
  color: #CD2326;
  margin-right: 5px;
}
.navbar-top__item a {
  color: #bbb;
}
.navbar-top__item a:hover {
  color: #CD2326;
}
.navbar-top .col-xs-6 {
  line-height: 40px;
}
.navbar-top__lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
.navbar-top__lang a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #bbb;
  font-size: 12px;
}
.navbar-top__lang a img {
  height: 14px;
  vertical-align: middle;
}
.navbar-top__lang a:hover {
  color: #CD2326;
}
@media (max-width: 767px) {
  .navbar-top {
    display: none;
  }
}

/* ── HEADER ───────────────────────────────────────────── */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .navbar {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  min-height: 70px;
}
.site-header .navbar-brand {
  padding: 12px 0;
  height: 70px;
}
.site-header .navbar-brand img {
  height: 46px;
  width: auto;
}
.site-header .navbar-nav > li > a {
  color: #28256A;
  font-size: 13px;
  font-weight: 600;
  padding: 24px 10px;
  line-height: 22px;
  text-transform: uppercase;
}
.site-header .navbar-nav > li > a:hover,
.site-header .navbar-nav > li.open > a {
  color: #CD2326;
  background: transparent;
}
.site-header .dropdown-menu {
  border-radius: 0;
  border-top: 3px solid #CD2326;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  min-width: 210px;
  padding: 5px 0;
}
.site-header .dropdown-menu > li > a {
  font-size: 14px;
  color: #333;
  padding: 7px 16px;
}
.navbar-nav > li.active > a {
  color: #CD2326 !important;
}
.site-header .dropdown-menu > li > a:hover,
.dropdown-menu > .active > a {
  color: #CD2326 !important;
  background: #f9f9f9;
}
.site-header .navbar-toggle {
  margin-top: 18px;
  border-color: #28256A;
}
.site-header .navbar-toggle .icon-bar {
  background: #28256A;
}
.menu-item {
  position: relative;
}
.menu-item ul {
  position: absolute;
  top: 105%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  padding: 15px;
  text-align: left;
}
.menu-item:hover ul {
  top: 100%;
  pointer-events: all;
  opacity: 1;
}

.menu-item ul li a {
  white-space: nowrap;
  display: block;
  padding: 8px 0;
}

.menu-item ul li a:hover,
.menu-item ul li.active a {
  color: #CD2326;
}

/* Center nav, search right */
@media (min-width: 768px) {
  .site-header .navbar-collapse {
    text-align: center;
  }
  .site-header .navbar-nav {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .header-search {
    padding: 18px 0;
  }
}
/* Search */
.header-search .input-group {
  width: 170px;
}
.header-search .form-control {
  height: 32px;
  font-size: 12px;
  border-radius: 3px 0 0 3px;
  border: 1px solid #ddd;
  padding: 4px 10px;
}
.header-search .btn-search {
  background: #28256A;
  border: 1px solid #28256A;
  color: #fff;
  padding: 5px 10px;
  border-radius: 0 3px 3px 0;
  height: 32px;
}
.header-search .btn-search:hover {
  background: #CD2326;
  border-color: #CD2326;
}
@media (max-width: 767px) {
  .site-header .navbar-nav > li > a {
    padding: 10px 15px;
    display: inline-block;
  }
  .header-search {
    display: block;
    padding: 10px 15px;
  }
  .header-search .input-group {
    width: 100%;
  }
}

/* ── SLIDER ───────────────────────────────────────────── */
.hero-slider {
  position: relative;
}
.hero-slider .owl-carousel .item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-slider .owl-prev,
.hero-slider .owl-next {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.35) !important;
  color: #fff !important;
  line-height: 44px;
  text-align: center;
  font-size: 18px;
  border-radius: 2px;
}
.hero-slider .owl-prev {
  left: 15px;
}
.hero-slider .owl-next {
  right: 15px;
}
/* Dots 40px from bottom */
.hero-slider .owl-theme .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-slider .owl-carousel .item img {
    height: 540px;
  }
}

/* ── GIẢI PHÁP ───────────────────────────────────────── */
.giai-phap {
  padding: 40px 0;
  position: relative;
  background: url("https://s5t.com.vn/wp-content/uploads/2023/02/pexels-pixabay-371900.jpg")
    center/cover no-repeat;
}
.giai-phap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 37, 106, 0.84);
}
.giai-phap .wrap {
  position: relative;
  z-index: 1;
}
.giai-phap__item {
  padding: 18px 10px;
}
.giai-phap__icon {
  width: 48px;
  height: 48px;
  background: #CD2326;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.giai-phap__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.giai-phap__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── VỀ CHÚNG TÔI ──────────────────────────────────── */
.about {
  background: #fff;
  padding: 60px 0;
}
.about__heading {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #395b9a;
  margin: 0 0 25px;
  text-align: center;
}
.about__heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #CD2326;
  margin: 10px auto 0;
}
.about__text {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.about__btn {
  display: inline-block;
  background: #CD2326;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 3px;
}
.about__btn:hover {
  background: #d98200;
}
.about__img {
  text-align: center;
}
.about__img img {
  /* max-width: 340px; */
  width: 100%;
}
@media (max-width: 767px) {
  .about__img {
    margin-top: 30px;
  }
}

/* ── CON SỐ ─────────────────────────────────────────── */
.stats {
  background: #28256b;
  padding: 45px 0;
}
.stats__item {
  text-align: center;
  padding: 20px 10px;
}
.stats__number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
}
.stats__number span {
  font-size: 32px;
}
.stats__label {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .stats__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stats__number {
    font-size: 36px;
  }
}

/* ── SẢN PHẨM TIÊU BIỂU ───────────────────────────── */
.products {
  padding: 40px 0;
}
.products .sec-heading {
  color: #395b9a;
}
.products .sec-heading::after {
  background: #CD2326;
}
.product-card {
  background: #fff;
  border: 1px solid #eee;
  /* margin: 5px; */
}
.product-card__img {
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 250px;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: 0.2s linear;
}
.product-card__img:hover img {
  transform: scale(1.05);
}
.product-card__body {
  border-top: 1px solid #ddd;
  padding: 14px 12px;
}
.product-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #395b9a;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.product-card__title:hover a {
  color: #d98200;
}

/* ── DỊCH VỤ ─────────────────────────────────────── */
.services {
  padding: 40px 0;
  background: #f7f7f7;
}
.services .sec-heading {
  color: #395b9a;
}
.service-card {
  background: #fff;
  border: 1px solid #ddd;
  margin: 5px;
}
.service-card__img {
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: 0.2s linear;
}
.service-card__img:hover img {
  transform: scale(1.05);
}
.service-card__body {
  border-top: 1px solid #ddd;
  padding: 14px 12px;
  text-align: center;
}
.service-card__title {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 10px 0;
  display: block;
  font-weight: 600;
  color: #395b9a;
  display: -webkit-box;
  height: 54px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.service-card__title:hover a {
  color: #d98200;
}
.service-card__readmore {
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  border: 1px solid #bbb;
}
/* ── KHÁCH HÀNG ─────────────────────────────────── */
.clients {
  background: #fff;
  padding: 45px 0;
}
.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 10px 20px;
}
.clients__logo img {
  max-height: 65px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: all 0.3s;
}
.clients__logo img:hover{
  transform: scale(1.1);
}
.clients__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ── DỰ ÁN TIÊU BIỂU ───────────────────────────── */
.projects {
  background: #28256b;
  padding: 40px 0;
}
.project-card {
  background: #fff;
  margin: 5px;
}
.project-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.project-card__body {
  padding: 14px 12px;
}
.project-card__title {
  font-size: 13px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* ── ĐỐI TÁC ────────────────────────────────────── */
.partners {
  background: #fff;
  padding: 40px 0;
}
.partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 10px 20px;
  background: #e3e3e3;
  margin: 5px;
}
.partners__logo img {
  max-height: 65px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.3s;
}
.partners__logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ── ĐĂNG KÝ ─────────────────────────────────────── */
.register {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: url("https://s5t.com.vn/wp-content/uploads/2023/02/5112664-modern-application-technology-1.jpg")
    center/cover no-repeat;
}
.register::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 144, 33, 0.88);
}
.register .wrap {
  position: relative;
  z-index: 1;
}
.register__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.3;
}
.register__phone {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 4px;
}
.register__phone i {
  margin-right: 8px;
}
.register__phone-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-bottom: 25px;
}
.register__btn {
  display: inline-block;
  background: #fff;
  color: #395b9a !important;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 12px;
}
.register__btn:hover {
  background: #f0f0f0;
}
.register__img img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .register__img {
    margin-top: 30px;
  }
}

/* ── NGÔN NGỮ ───────────────────────────────────── */
.language-bar {
  background: #fff;
  padding: 14px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.language-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.language-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 13px;
}
.language-bar__item img {
  height: 16px;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.language-bar__item:hover {
  color: #CD2326;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: #28256b;
  color: #fff;
  padding: 50px 0 30px;
}

.footer__company {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer__label {
  font-size: 14px;
  color: #CD2326 ;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 12px 0 3px;
}

.footer__text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 4px;
}

.footer__contact {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 6px;
}

.footer__contact i {
  color: rgba(246, 144, 33, 1)s;
  margin-right: 6px;
  width: 14px;
}

.footer__social {
  margin-top: 16px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  border-radius: 3px;
  font-size: 14px;
  margin-right: 6px;
}

.footer__social a:hover {
  background: #CD2326;
  color: #fff;
}
.footer__nav-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(246, 144, 33, 1);
  padding-bottom: 8px;
  margin-bottom: 12px;
  display: inline-block;
  margin-top: 0;
}
.footer__nav li {
  margin-bottom: 7px;
}
.footer__nav li a {
  font-size: 14px;
  color: #aaa;
}
.footer__nav li a:hover {
  color: #CD2326;
}
.footer__nav li a::before {
  content: "›";
  margin-right: 5px;
  color: #fff;
}
.footer__map {
  margin-top: 20px;
}
.footer__map iframe {
  width: 100%;
  height: 180px;
  border: none;
  opacity: 0.85;
  display: block;
}
.footer__divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 25px 0 0;
}

/* ── COPYRIGHT ────────────────────────────────────── */
.copyright {
  background: #0a1d3f;
  padding: 12px 0;
}
.copyright p {
  color: #aaa;
  font-size: 13px;
  margin: 0;
}

/* ── Owl overrides ────────────────────────────────── */
.owl-theme .owl-nav [class*="owl-"] {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
  border-radius: 3px;
  font-size: 18px;
  padding: 4px 12px !important;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #CD2326 !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: #ccc !important;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: #CD2326 !important;
}
.product-list {
  padding-top: 50px;
}
.product-list .product-card {
  margin-bottom: 30px;
}
.page-heading {
  background-color: #f2f2f2;
  padding: 25px 0;
}
.page-heading ol {
  padding-left: 0;
}
.page-heading ol,
.page-heading li {
  list-style: none;
}
.page-heading li {
  display: inline-block;
  position: relative;
  font-size: 16px;
}
.page-heading li:first-child a {
  color: #CD2326;
}
.page-heading li + li {
  padding-left: 30px;
}
.page-heading li + li::after {
  content: ">>";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translate(0, -50%);
}
.page-title h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 32px;
}
.paging-n {
  padding-left: 0;
  text-align: center;
  margin: 15px 0 30px;
}

.paging-n,
.paging-n li {
  list-style: none;
}
.paging-n li {
  display: inline-block;
}
.paging-n li a {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 8px;
  color: #333;
  text-align: center;
  font-size: 16px;
  line-height: 25px;
}
.paging-n li.active a,
.paging-n li:hover a {
  background: #CD2326;
  color: white;
}
/* sidebar-product */
.sidebar-product {
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 0.13);
  padding: 0 0 15px 0;
  z-index: 0;
}
.sidebar-product h2 {
  padding: 16px;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  background-color: #395b9a;
  color: white;
  margin: 0;
}
.home-cate-list {
  padding: 25px;
}
.sidebar-product .home-cate-list > li {
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}
.sidebar-product .home-cate-list .home-cate-child {
  list-style: circle;
}

.sidebar-product .home-cate-list .home-cate-child li {
  margin-bottom: 10px;
}
/* product-detail */
.product-detail {
  margin-top: 50px;
}

.product-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3em;
  color: #d98200;
  padding-left: 15px;
  border-left: 2px solid #d98200;
  margin-bottom: 30px;
}
.description {
  font-size: 16px;
  line-height: 24px;
}
.product-category span {
  color: #395b9a;
  font-weight: 600;
  font-size: 16px;
}
.product-category a {
  color: #d98200;
  font-style: 16px;
}
.product-content {
  margin-top: 30px;
}
.product-content-head {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #02163c;
  color: #395b9a;
  padding-bottom: 5px;
  margin-bottom: 25px;
}

.product-content-head .product-content-txt {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.product-content-head .product-content-txt img {
  max-width: 100% !important;
  height: auto !important;
}
.product-content-txt h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}
.product-content-txt h3 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 0;
}
.product-content-txt h4,
.product-content-txt h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.product-content-txt ul,
.product-content-txt ol {
  list-style: revert;
  padding-left: 20px;
  margin-bottom: 10px;
}
.product-content-txt li {
  list-style: unset;
}
.product-related > h3 {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #02163c;
  color: #395b9a;
  padding-bottom: 8px;
  margin-bottom: 25px;
}
.product-contact-form {
  border-style: dotted;
  border-width: 2px 2px 2px 2px;
  border-color: #395b9a;
  margin-top: 0;
  border-radius: 10px;
  margin-bottom: 0;
}
.product-contact-form-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background-color: #395b9a;
  padding: 0 0 13px 0;
  padding: 16px 13px 16px 13px;
  border-radius: 10px 10px 0 0;
}
.product-contact-form form {
  padding: 16px 13px 16px 13px;
  border-radius: 0 0 10px 10px;
}
.product-contact-form form .form-des {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.form-group input {
  width: 100%;
  border: 1px solid #69727d;
  background-color: #fff;
  line-height: 1.4;
  font-size: 15px;
  min-height: 40px;
  padding: 0 15px;
  outline: none;
  color: #333;
}

.form-group textarea {
  width: 100%;
  border: 1px solid #69727d;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  min-height: 90px;
  padding: 10px 15px;
  outline: none;
}
.form-group select {
  width: 100%;
  border: 1px solid #69727d;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  min-height: 40px;
  padding: 0 15px;
}
.btn-form-submit {
  width: 100%;
  color: #fff;
  font-size: 15px;
  height: 40px;
  padding: 0 15px;
  background-color: #395b9a;
  margin-top: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
/* news-page */
.news-page {
  margin-top: 50px;
}
.news-page .item {
  margin-bottom: 30px;
}
.news-img img {
  width: 100%;
}
/* news-detail-page */
.news-detail-page {
  margin: 50px 0;
}
.news-infor li {
  display: inline-block;
  padding-right: 15px;
}
.news-infor li i {
  display: inline-block;
  margin-right: 5px;
}
.news-infor {
  margin-bottom: 15px;
}

.news-detail-page .content {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.news-detail-page .content img {
  max-width: 100% !important;
  height: auto !important;
}
.news-detail-page .content h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}
.news-detail-page .content h3 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 0;
}
.news-detail-page .content h4,
.news-detail-page .content h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}
.news-detail-page .content ul,
.news-detail-page .content ol {
  list-style: revert;
  padding-left: 20px;
  margin-bottom: 10px;
}
.news-detail-page .content li {
  list-style: unset;
}
.new-title {
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0;
}
.news-relate {
  background-color: #bbb;
  padding: 50px 0;
  margin-top: 30px;
}
.news-relate-title {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  color: #395b9a;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.news-relate-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #d98200;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.form-comment h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
.form-comment p {
  font-size: 16px;
  margin-bottom: 10px;
}
.form-comment .form-group input {
  margin-bottom: 15px;
}
.form-comment .post-comment {
  width: 150px;
  color: #fff;
  font-size: 15px;
  height: 40px;
  padding: 0 15px;
  background-color: #395b9a;
  margin-top: -15px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.contact-page {
  margin-top: 50px;
  margin-bottom: 50px;
}
.sidebar-contact iframe {
  width: 100%;
  height: 350px;
}
.form-contact .btn-contact {
  width: 100px;
  color: #fff;
  font-size: 15px;
  height: 40px;
  padding: 0 15px;
  background-color: #395b9a;
  margin-top: 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.toiuu .owl-carousel {
  display: block;
}
.btn-reply {
  display: none;
}
.comment-item {
  display: flex;
  gap: 15px;
}
.comment-img {
  width: 55px;
  height: 55px;
}
.blog-comment-title h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 25px;
}
.comment-content h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 500;
}
.comment-content p {
  font-size: 16px;
  line-height: 1.6;
}
.product-related {
  margin-bottom: 30px;
  margin-top: 30px;
}
.contact-title h2 {
  margin-top: 0;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.6;
}
.contact-title p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.sidebar-contact-content {
  margin-top: 15px;
}
.sidebar-contact-content h2,
.sidebar-contact-content h3 {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 600;
  color: #395b9a;
}
.sidebar-contact-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* -------------------------up-to-top-------------------------- */
.social {
    position: fixed;
    right: 53px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    transition: .3s linear;
    z-index: 99;
    /* transition: all .5s linear; */
}

.social-icon {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
    transform: translate(100px, 0);
    transition: .3s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: all;
}
.social a{
  pointer-events: all;
}

.up-to-top {
    background-color: #333;
}

.mail-pop {
    background-color: #007F86;
}

.mail-pop svg {
    margin-bottom: -4px;
    color: #fff;
}

.mess-pop {
    background-color: #007BC7;
}

.mess-pop svg {
    margin-bottom: -6px;
}

.phone-pop svg {
    margin-bottom: -4px;
    color: #fff;
}

.phone-pop {
    background-color: #ff0000;
}

.tran-delay-1 {
    transition-delay: .1s;
    transition-property: all;
}

.tran-delay-2 {
    transition-delay: .2s;
    transition-property: all;
}

.tran-delay-3 {
    transition-delay: .3s;
    transition-property: all;
}

.tran-delay-4 {
    transition-delay: .4s;
    transition-property: all;
}

.social-icon.active {
    transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
}


@media (max-width: 767px) {
  .footer__col1 {
    margin-bottom: 30px;
  }
  .partners__logo img {
    width: 100%;
  }
  .site-header .navbar-toggle {
    margin-right: 0;
  }
  .sidebar-product {
    display: none;
  }
  .caret {
    float: right;
    display: inline-block;
    margin-top: 18px;
  }
  .menu-item ul {
    position: unset;
    opacity: 1;
    pointer-events: all;
    top: 0;
    box-shadow: unset;
    padding: 0;
    margin-left: 30px;
  }
  .hide-mb {
    display: none;
  }
  .social {
    right: 20px;
  }
}
