/* @import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700&subset=vietnamese'); */

:root {
  --tm: #03017e;
  --background-tm: #f8f6fe;

  --slide-h: 769px;
  --red: #dc143c;
}

body {
  font-family: "Lato";
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-width: thin;
    /* scrollbar-color: #007F49 #0DB14B33; */
  }
}

body::-webkit-scrollbar {
  width: 0.4rem;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--tm) !important;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  opacity: 0.8 !important;
}

body::-webkit-scrollbar-track {
  background-color: transparent !important;
  border-radius: 10px;
}

body::-webkit-scrollbar-track:hover {
  opacity: 0 !important;
}

a,
a:hover,
.btn-link:hover,
.btn-link:focus {
  text-decoration: none;
}

.c-btn {
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  border: 1px solid var(--tm);
  transition: all 0.3s ease;
  padding: 0.5rem 0.4rem;
}
.c-btn.tm {
  color: var(--tm);
  background-color: #ffffff;
}
.c-btn.tm-reverse {
  color: #ffffff;
  background-color: var(--tm);
}
.c-btn.back {
  width: 7.5rem;
  padding: 0.625rem;
  background-color: #797979;
  border-color: #797979;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.btn {
  padding: 1rem 1.688rem;
  line-height: 24px;
  font-size: 1.125rem;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.938rem;
  transition: all 0.3s ease;
}

.btn.rw {
  color: #ffffff;
  background-color: #dc143c;
  font-weight: 700;
}

.btn.wb {
  color: var(--tm);
  background-color: #ffffff;
  font-weight: 700;
}

.btn ~ .btn {
  margin-left: 1.25rem;
}
.c-btn ~ .c-btn {
  margin-left: 0.5rem;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  .btn ~ .btn {margin-left: unset;}
}

.c-btn:hover,
.c-btn:focus,
.btn:hover,
.btn:focus {
  opacity: 0.8;
}

.bg-color-sub-tm {
  background-color: var(--background-tm);
}

.bg-color-tm {
  background-color: var(--tm);
}

label.error {
  color: #ff0000 !important;
  font-weight: normal;
  font-size: 0.75rem;
}

.text-tm {
  color: var(--tm);
}

.text-red {
  color: var(--red);
}

.text-white {
  color: #ffffff;
}

.text-middle {
  vertical-align: middle;
}

.text-bold {
  font-weight: bold;
}

.link {
  cursor: pointer;
}

.card {
  border: 1px solid #e5e5e5;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1.875rem;
  padding: 1.5rem 1.25rem;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  border-radius: 0.375rem;
  border: 1px solid #797979 !important;
  color: #797979 !important;
  padding: 0.3rem 0.675rem;
  height: 100%;
}

.pagination li a[rel="next"],
.pagination li a[rel="prev"] {
  border: 0px !important;
}

.pagination li.active a {
  border-color: var(--tm) !important;
  color: var(--tm) !important;
}
.pagination li ~ li {
  margin-left: 0.5rem;
}

.dropdown {
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin-bottom: 12px;
  position: relative;
}

input[type="checkbox"] {
  /* keep native input visually hidden but clickable; position over the custom box */
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  z-index: 3 !important;
}

input[type="checkbox"] + label.name-solution {
  position: relative;
  padding-left: 36px;
  display: inline-block;
  cursor: pointer;
  line-height: 1.2;
  color: #ffffff;
  font-size: 0.95rem;
  -webkit-user-select: none; /* prevent selection on click */
  -moz-user-select: none;
  user-select: none;
}

input[type="checkbox"] + label.name-solution::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

input[type="checkbox"]:checked + label.name-solution::before {
  background: #ffffff;
  border-color: #ffffff;
}

input[type="checkbox"]:checked + label.name-solution::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 12px;
  border: solid var(--tm);
  border-width: 0 2px 2px 0;
}

/* New */

/* Header */
.infor-header {
  background-color: var(--tm);
  color: #ffffff;
}

.infor-header a {
  font-weight: 300;
  color: #ffffff;
}

.infor-header .btn-link {
  border: 0px !important;
}

.infor-header a:hover,
.infor-header a:focus,
.infor-header .btn-link:focus,
.infor-header .btn-link:hover {
  color: #ffffff;
  opacity: 0.7;
}

.infor-header .iconSearch,
.infor-header .flag {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0.5rem 0rem;
  border-radius: 0.5rem;
}

.infor-header .iconSearch:focus,
.infor-header .iconSearch:hover {
  outline: none;
  border: none;
  opacity: 0.7;
}

.infor-header .iconSearch img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.infor-header .flag,
.infor-header .flag .flagLang {
  font-weight: 100;
}

.infor-header .flag .flagLang.active {
  font-weight: 400;
}

.header .head-logo {
  padding: 0.625rem 0 0.625rem 0;
}

/* Footer */
footer {
  background-color: var(--background-tm);
}

footer .footer-divider-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1.25rem 0;
}

footer .footer-divider {
  width: 100%;
  height: 1.5px;
  /* visual thickness */
  opacity: 1;
  background-image: repeating-linear-gradient(
    to right,
    var(--tm) 0,
    var(--tm) 4px,
    transparent 4px,
    transparent 8px
  );
  background-repeat: repeat-x;
  background-size: auto 0.5px;
}

footer .social-icon a {
  margin: 0 1.25rem 0 0;
}

footer .social-icon a:last-child {
  margin-right: 0;
}

footer .company-info .title {
  color: var(--tm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

footer .footer-navigation .title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
}

footer .footer-navigation a {
  font-size: 0.938rem;
  color: var(--tm);
  padding-top: 0.75rem;
}

/* Form search */
.formSearch {
  margin-top: 360px;
}

.formSearch .form-control {
  border-bottom: 1px solid #03017e;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.formSearch .icon-fallback-text {
  border: none;
  border-bottom: 1px solid var(--tm);
  position: absolute;
  top: 386px;
  right: 24px;
  background: #fff;
  height: 35px;
}

.formSearch .icon-fallback-text i {
  color: #03017e !important;
}

/* Contact Form */
.sendContact {
  .card {
    border-radius: 1.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 0.5px solid #e5e5e5;
    padding: 1.25rem;

    .card-title {
      font-weight: 700;
      font-size: 2rem;
      padding: 0;
    }

    .card-body {
      font-size: 1rem;
      font-weight: 400;
      padding: 0;

      p {
        margin-bottom: 0rem;
      }
    }
  }

  .introduction .card-title,
  .title {
    font-family: "FS Magistral";
    font-weight: 800;
    font-size: 1.75rem;
  }

  .detail {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .side-information {
    .success-rate {
      padding-right: 1.25rem;
      padding-top: 1.875rem;
    }

    .satisfied-rate {
      padding-left: 1.25rem;
      padding-top: 1.875rem;
    }
  }

  .form-card .card-body {
    ul,
    ol {
      list-style: disc inside;
      margin: 0 0 12px 0;
      padding-left: 20px;
      color: #ffffff;
    }

    li {
      margin-bottom: 8px;
      line-height: 1.4;
    }

    select.form-control {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-color: #ffffff1a;
      color: rgba(255, 255, 255, 0.8);
      padding-right: 40px;

      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 14px 8px;

      option {
        background-color: #ffffff00 !important;
        color: #000000 !important;
      }

      &:hover {
        cursor: pointer;
      }
    }

    .form-control {
      background: #ffffff1a;
      color: rgba(255, 255, 255, 0.8);
      border: 0.5px solid rgba(255, 255, 255, 0.9);
      border-radius: 1.25rem;

      &::placeholder {
        color: rgba(255, 255, 255, 0.8);
      }

      &:focus,
      &:active {
        color: #ffffff;
      }
    }
  }
}

@media (max-width: 767px) {
  .sendContact {
    .card-row {
      flex-direction: column;
    }

    .card-small {
      width: 100%;
    }
  }
}

/* Chatbot */
#chat-toggle-btn {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

#chat-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

#chat-toggle-btn:active {
  transform: scale(0.95);
}

#chat-toggle-btn img {
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
  transform: scale(1);
}

/* Chat Iframe Container */
#chat-iframe-container {
  position: absolute;
  bottom: 95px;
  right: 0;
  width: 360px;
  height: 520px;
  display: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  background: white;
  /* // border: 1px solid rgba(255, 255, 255, 0.3); */
  animation: slideUp 0.3s ease-out;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
}

/* Chat Widget Container */
#chat-widget-container {
  position: fixed;
  bottom: 40px;
  right: 10px;
  z-index: 999999999;
}

/* Chat Iframe */
#chat-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #chat-iframe-container {
    width: 320px;
    height: 450px;
    right: 5px;
    bottom: 75px;
  }

  #chat-toggle-btn {
    width: 55px;
    height: 55px;
  }
}

/* Old */
.large-text {
  font-size: 2em;
  font-weight: bold;
  color: #ffffff;
}

.p13 {
  font-size: 13px;
}

.img-fluid {
  object-fit: cover;
}

.hidden {
  display: none !important;
}

.head-logo img {
  height: 50px;
}

.head-top {
  position: fixed;
  background: #fff;
  padding: 40px 0 0 0;
  z-index: 99999999;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.12);
  background-image: none;
}

/* CHINH SUA */
.header {
  position: relative;
  transition: 0.5s all ease;
  height: fit-content;
  z-index: 100000;
}

.header .navbar-nav {
  flex-direction: row;
  justify-content: start;
  /*line-height: 62px;*/
  align-items: baseline;
}

.header .navbar-nav > li {
  margin: 0 20px;
}

.header .navbar-nav .nav-link {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  padding: 0.938rem 0rem;

  color: #000000;
}

.header .navbar-nav > li.active a {
  color: #03017e;
}

.header .short-url {
  list-style: none;
  line-height: 72px;
  padding: 0;
}

.header .short-url li {
  margin-right: 15px;
}

.header .short-url li a {
  font-size: 15px;
  color: #fff;
}

.header .short-url .btn {
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #fff;
  font-weight: bold;
}

.header .short-url li a:hover {
  text-decoration: none;
}

.header .fa {
  color: #fff;
  font-size: 20px;
}

.head-fix {
  position: fixed;
  background: #fff;
  z-index: 99999999;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.12);
}

.head-fix .fa {
  color: #363636;
}

/* -- HET CHINH SUA -- */
.head-top .navbar .navbar-nav .nav a {
  color: #363636;
}

.head-top .navbar .navbar-nav .nav-link {
  color: #363636;
}

.head-top .navbar button {
  color: #d71d31;
  border: 1px solid #d71d31;
}

.head-top .owl-slide {
  display: none;
}

.main-title {
  font-family: "helvetica-medium";
  font-size: 50px;
  color: #3b7fb2;
}

.owl-slide .post {
  will-change: transform;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  transition: transform 5ms ease;
}

.owl-slide .active .post-summary {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.owl-slide .post-summary {
  transition: transform 900ms ease 100ms;
  will-change: transform;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
}

header .main-menu {
  width: 100%;
  float: left;
}

.mobile-menu {
  width: 320px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  -webkit-transform: translateX(-320px);
  -moz-transform: translateX(-320px);
  -ms-transform: translateX(-320px);
  -o-transform: translateX(-320px);
  transform: translateX(-320px);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  background-size: 80% auto;
  padding: 24px;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.12);
  z-index: 999999999;
}

.mobile-menu .fa {
  color: #363636;
  font-size: 22px;
}

.banner .mobile-bars-menu .fa {
  color: #fff;
  font-size: 22px;
}

.fix-banner .mobile-bars-menu .fa {
  color: #132833;
  font-size: 22px;
}

.mobile-menu ul {
  list-style-type: none;
  padding-left: 0;
}

.mobile-menu ul li a {
  color: #333;
}

.mobile-menu ul .flag {
  padding: 8px 14px !important;
}

.mobile-menu ul .flag .flagLang.active {
  color: #03017e !important;
}

.main a {
  text-decoration: none;
  color: #132833;
}

.main .product .home-content {
  padding: 50px 8%;
}

.item-blog .number {
  font-size: 30px;
  margin-bottom: 30px;
  color: #fff;
  position: absolute;
  top: 22px;
  left: 40px;
  z-index: 1000;
}

.item-blog .technology {
  padding-bottom: 22px;
}

.header .navbar-nav .contactMenu {
  border-radius: 5px;
}

.header .navbar-nav .contactMenu a {
  color: #03017e;
  border: 1px solid #03017e;
  text-transform: uppercase;
  font-weight: bold;
}

.header .navbar-nav .contactMenu a:hover {
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%);
  color: white;
  text-decoration: none;
}

/* .item-blog:hover .number {}

.item-blog:hover .back p {
    top: 0;
    transition: .5s ease;
    height: 400px;
    display: block
}

.item-blog:hover .technology {
    border-bottom: 6px solid #00b8ee;
} */

.back p {
  color: #fff !important;
  opacity: 0.95;
  background-image: linear-gradient(to bottom, #005aab, #00b8ee);
  position: absolute;
  display: none;
  padding: 70px 40px;
}

.item img-fluid {
  opacity: 0.92;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-image: linear-gradient(
    to right,
    rgba(0, 90, 171, 0.86),
    #005aab 28%,
    rgba(0, 90, 171, 0.97) 43%,
    rgba(102, 61, 112, 0.75) 82%,
    rgba(110, 59, 108, 0.58) 85%,
    rgba(215, 29, 49, 0.35)
  );
}

.main .home-product {
}

.main .home-product h4 {
  margin-bottom: 30px;
  width: 100%;
}

.main .home-product ul {
  list-style: none;
  width: 100%;
  padding: 45px 0;
  margin: 0;
  background-image: linear-gradient(to left, #005aab, #00b8ee);
}

.main .home-product ul li {
  width: 100%;
  margin: 0;
  padding-left: 20%;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main .home-product ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.main .home-product ul li img {
  height: auto;
  width: 50px;
  padding-right: 20px;
  z-index: 10;
}

.main .home-product ul li a {
  text-decoration: none;
  z-index: 100;
}

.main .home-product ul li:hover {
  background-color: rgba(255, 255, 255, 0.18);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.main .home-product ul li img {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  max-width: 100%;
}

.main .home-product ul li a:hover,
.main .home-product ul li a:hover img {
}

.main .home-product ul li img {
  max-width: 100%;
  overflow: auto;
}

.main .home-product ul li a {
  font-size: 22px;
  line-height: 1.25;
  color: #fff;
}

.main .home-product video {
  height: 430px;
  width: 100%;
  margin-top: -60px;
  background-color: #000;
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.16);
}

.main .home-product video[poster] {
  object-fit: cover;
}

.main .home-story {
  margin-top: 50px;
}

.main .home-story p {
  font-size: 18px;
  color: #5a6770;
  line-height: 1.67;
}

.main .home-story .story {
  padding-left: 0;
  margin-bottom: 21px;
}

.main .home-story .list-story {
  padding-left: 0;
}

.main .home-story .img-fluid {
  width: 100%;
}

.main .home-story .more-story {
  border: solid 1px #005aab;
  padding: 100px 0 40px 40px;
}

.main .home-story .more-story a {
  font-size: 24px;
  line-height: 1.25;
  color: #005aab;
  text-decoration: none;
  font-weight: bold;
}

.main .home-story .more-story a img {
  margin-top: 20px;
}

.main .home-customer {
  /*padding-bottom: 90px;*/
  position: relative;
  /*padding-top: 50px;*/
}

.main .home-customer .slide-customers img {
  height: 320px;
  width: 260px;
}

.main .home-customer .customer-info {
  color: #5a6770;
  font-size: 18px;
  line-height: 1.67;
}

.main .home-customer .customer-content {
  padding: 10%;
  color: #132833;
  font-size: 22px;
  line-height: 1.25;
}

.main .home-customer .customer-name {
  color: #132833;
  font-size: 24px;
  line-height: 1.25;
  font-weight: bold;
  padding-left: 50px;
}

.main .home-customer .company-name {
  color: #5a6770;
  font-size: 18px;
  line-height: 1.67;
  padding-left: 50px;
}

.main .home-customer .customers {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
}

.main .home-customer .top-quote {
  align-self: flex-start;
}

.main .home-customer .bottom-quote {
  align-self: flex-end;
}

.main .home-customer .bottom-quote img {
  height: 44px;
  width: 44px;
  margin-bottom: 20px;
}

.main .home-customer .slide-partner {
  /* margin-top: 67px */
}

.main .home-customer .slide-partner img {
  object-fit: contain;
  height: 100px;
}

.main .list-insight .read-more {
  border: none;
  position: relative;
  left: 42%;
  color: #fff;
  padding: 8px 50px;
  margin: 50px 0;
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%);
  border-radius: 10px;
}

.main .content-page {
  height: 680px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-position: center;
  background-size: cover;
}

.main .content-page h4 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  margin-top: 160px;
  margin-bottom: 20px;
  font-family: "Lato";
  line-height: 54px;
  padding-bottom: 20px;
}

.main .content-page p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  /* or 161% */

  text-align: justify;

  /* Trắng */

  color: #ffffff;
}

.main .people-information {
  /*margin-top: 112px;*/
  margin-bottom: 75px;
  font-size: 18px;
}

.main .people-information h4 {
  margin-bottom: 70px;
}

.main .people-information img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 28px;
}

.main .people-information .name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 7px;
}

.main .people-information .position {
  color: #5a6770;
  margin-bottom: 28px;
}

.main .people-information .label-name {
  font-size: 24px;
  font-weight: bold;
}

.main .people-information .people-detail {
  padding-left: 100px;
}

.main .list-people h4 {
  margin-bottom: 26px;
}

.main .list-people img {
  filter: grayscale(100%);
  height: 208px;
}

.main .list-people .item-blog {
  padding: 30px 30px;
  transition: all 0.2s ease-in-out;
}

/* .main .list-people .item-blog:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);

} */

/* .main .list-people .item-blog:hover img {
    filter: none;
} */

.main .list-people .people-name {
  font-size: 18px;
  font-weight: bold;
  line-height: 3;
  margin: 0;
}

.main .list-partner {
  margin: 83px 0 153px 0;
}

.main .list-partner .item-blog {
  padding: 30px 30px;
}

.main .list-partner img {
  height: 100px;
  object-fit: contain;
}

.main .solution h4 {
  margin-top: 224px;
  line-height: 1.1;
}

.main .solution .box-banner {
  padding: 0 10%;
}

.main .solution .box-banner .image_page_detail {
  text-align: center;
  margin-top: 0px !important;
}

.main .solution .box-banner .image_page_detail img {
  width: 95%;
  margin-top: 24%;
  max-height: 400px;
  object-fit: contain;
}

.main .solution .textCenterProduct {
  display: flex;
  align-items: center;
}

.main .list-solution {
  margin-bottom: 139px;
}

.main .list-solution h4 {
  margin-bottom: 0;
}

.main .list-solution .row {
  margin-top: 50px;
}

.main .list-solution img {
  height: 92px;
  width: 92px;
  border-radius: 50%;
}

.main .list-solution .title {
  font-size: 24px;
}

.main .list-solution .intro-solution-1 {
  padding-right: 60px;
}

.main .list-solution .intro-solution-2 {
  padding: 0 30px;
}

.main .list-solution .intro-solution-3 {
  padding-left: 60px;
}

.main .list-product {
  font-size: 36px;
  color: #fff;
  padding: 59px 0 136px 0;
}

.main .list-product .box-tnm h4 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  text-transform: uppercase;

  /* Tím */

  color: #03017e;
}

.main .list-product .box-tnm .underline {
  width: 165px;
  height: 4px;
  margin-bottom: 20px;
  /* Xanh Logo  Gradient */

  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%);
  border-radius: 2px;
}

.main .list-product .box-tnm .intro {
  color: #5a6770;
  font-size: 18px;
  margin-bottom: 44px;
  text-align: justify;
}

.main .list-product .box-tnm .intro p {
  color: #5a6770 !important;
  font-size: 18px !important;
  margin-bottom: 10px !important;
  text-align: justify;
}

.main .list-product .box-other .intro {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  text-align: justify;
}

.main .list-product .box-other .intro p {
  color: #fff !important;
  font-size: 18px !important;
  margin-bottom: 10px !important;
  text-align: justify;
}

.main .list-product .box-other h4 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  text-transform: uppercase;

  /* Tím */

  color: white;
}

.main .list-product .box-other .underline {
  width: 165px;
  height: 4px;
  margin-bottom: 20px;
  /* Xanh Logo  Gradient */

  background: #ffffff;
  border-radius: 2px;
}

.main .list-product .next-product {
  margin-top: 30px;
}

.main .list-product .title-product {
  font-weight: bold;
  width: 400px;
  color: #fff;
}

.main .list-product .first-product,
.main .list-product .name-product {
  font-size: 36px;
  padding: 250px 0 0 50px;
  height: 394px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-position: center;
  background-size: cover;
}

.main .list-product .name-product p {
  width: 350px;
  color: #fff;
}

.main .service h4 {
  margin-top: 224px;
}

.main .service-info img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.main .service-info .content-service {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding-top: 65px;
}

.main .service-info .content-service img {
  display: block;
  margin: 0 auto;
}

.main .service-info .content-service p {
  font-size: 18px;
  padding: 42px 20px 0 20px;
  text-align: center;
}

.main .list-service {
  /*margin-top: 186px;*/
  margin-bottom: 100px;
}

.main .list-service h4 {
  width: 100%;
}

.main .list-service ul {
  margin: 50px 0 42px 0;
  padding: 0;
  list-style: none;
}

.main .list-service ul li {
  display: inline-block;
  border-right: solid 1px #d71d31;
  padding-left: 15px;
  width: 25%;
}

.main .list-service ul li:first-child {
  width: 20%;
  padding-left: 0;
}

.main .list-service ul li:last-child {
  border: none;
}

.main .list-service ul li p {
  font-size: 14px;
  font-weight: bold;
  color: #5a6770;
  margin: 0;
  line-height: 1.5;
}

.main .list-service .img-fluid {
  width: 100%;
}

.main .list-service .content-left {
  padding-right: 90px;
}

.main .list-service .content-right {
  padding-left: 90px;
}

.main .list-service .content-service {
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 42px;
}

.main .list-service .read-more {
  margin-bottom: 50px;
}

.main .list-service .read-more a {
  font-size: 13px;
  font-weight: bold;
  color: #132833;
  border-radius: 0;
  border: solid 1px #8b9aa3;
}

.main .list-service .read-more a.btn {
  padding: 17px;
}

.main .list-service .read-more a span {
  padding: 0;
  color: #132833;
}

.main .list-service .read-more a span:after {
  font-family: "themify";
  content: "\e649";
  font-size: 14px;
  vertical-align: middle;
  padding-left: 40px;
  color: #d71d31;
}

.main .list-service .read-more ion-icon {
  font-size: 18px;
  vertical-align: middle;
  margin-bottom: 3px;
  padding-right: 10px;
}

.main .list-service .read-more span {
  font-size: 13px;
  font-weight: bold;
  color: #d71d31;
  padding: 17px;
}

.main .list-service .content-quote {
  font-size: 14px;
  line-height: 1.63;
  color: #5a6770;
  margin-bottom: 35px;
  font-style: italic;
}

.main .list-service .content-people img {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.main .list-service .content-people p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.88;
  color: #5a6770;
}

.main .list-service .content-people .name {
  font-weight: bold;
  color: #132833;
}

.main .list-service .img-2 {
  height: 620px;
}

.main .list-service .detail-1 {
  width: 100%;
  padding-right: 35px;
}

.main .list-service .detail-1 img {
  height: 209px;
}

.main .list-service .detail-2 {
  width: 100%;
  padding-left: 35px;
}

.main .list-service .detail-2 img {
  height: 209px;
}

.main .list-service .detail-1 h4,
.main .list-service .detail-2 h4 {
  margin-top: 28px;
}

.main .last-service {
  color: #fff;
  font-size: 18px;
  margin-bottom: 205px;
}

.main .last-service h4 a {
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
}

.main .last-service .read-more a {
  font-size: 13px;
  font-weight: bold;
  background-color: #d71d31;
  color: #fff;
  margin-top: 24px;
}

.main .last-service .read-more a.btn {
  border-radius: 0;
  padding: 17px;
  margin-bottom: 40px;
}

.main .last-service .read-more a span:after {
  font-family: "themify";
  content: "\e649";
  font-size: 14px;
  vertical-align: middle;
  padding-left: 40px;
}

.main .new h4 {
  font-size: 59px;
  font-weight: 900;
  line-height: 1.1;
}

.main .new p {
  font-size: 22px;
  line-height: 1.55;
  margin: 30px 0 48px 0;
}

.main .list-new h6,
.list-insight h6 {
  color: #5a6770;
}

.main .list-new {
  margin: 69px 0 42px 0;
}

.main .list-new .img-fluid {
  width: 100%;
  height: 188px;
}

.main .list-new .new-first {
  margin-bottom: 42px;
}

.main .list-new .new-first .img-fluid {
  height: 306px;
}

.main .list-new h4 {
  font-weight: bold;
  line-height: 1.17;
  margin-bottom: 26px;
}

.main .list-new h5,
.main .list-insight h5 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36;
  margin-bottom: 20px;
}

.main .list-new p,
.main .list-insight p {
  font-size: 18px;
}

.main .list-insight .head-insight {
  border-top: solid 1px rgba(20, 40, 52, 0.25);
  border-bottom: solid 1px rgba(20, 40, 52, 0.25);
  padding: 42px 0;
}

.main .list-insight .head-insight .content {
  margin-left: -30px;
  padding-right: 80px;
}

.main .list-insight .title {
  padding: 20px 15px;
  width: 60%;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36;
  background-color: #d71d31;
  color: #fff;
}

.main .list-insight .content-insight {
  margin-top: 60px;
}

.main .list-insight .content-insight .row {
  margin-bottom: 68px;
}

.main .list-insight .content-insight .img-fluid {
  width: 100%;
  height: 135px;
}

.main .list-insight .content-insight .read-more {
  margin-top: 0;
}

.main .detail-new {
  height: 18.5vh;
  min-height: 200px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
  background-position: center;
  background-size: cover;
}

.main .detail-new h4 {
  font-family: "FS Magistral" !important;
  color: #fff;
  font-size: 59px;
  font-weight: 900;
}

.main .content-new {
  padding: 162px 0 150px 0;
}

.main .content-new h1.text-center {
  margin: 50px 0;
  font-weight: bold;
  font-size: 36px;
}

.main .content-new .detail p {
  font-size: 14px;
}

.main .content-new .detail img {
  width: 100% !important;
  height: 100% !important;
}

.main .content-new a {
  color: #007bff;
}

.main .related-new {
  padding: 0;
  background-color: #f4f7fa;
}

.main .related-new h4 {
  padding: 0 0 40px 15px;
  margin: 0;
  font-size: 36px;
}

.main .content-new .fa {
  padding: 5px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.main .content-new .fa:hover {
  opacity: 0.7;
}

.main .content-new .fa-facebook {
  background: #333;
  color: white;
}

.main .content-new .fa-linkedin {
  background: #333;
  color: white;
}

.main .content-new .social-sharing {
  margin-top: 550px;
  text-align: center;
}

.main .content-new ul.list-share {
  list-style: none;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
}

.modal .modal-body p {
  margin-bottom: 0;
}

.sendContact .vacancies_10 {
  display: grid;
  align-items: center;
}

.sendContact .vacancies_10 .vacancies {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 65px 15px;
  opacity: 2;
  text-align: center;
  height: 200px;
  width: 200px;
}

.sendContact .vacancies_10 .vacancies h1 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.sendContact .vacancies_10 .vacancies p {
  margin-bottom: 0px !important;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  height: 100%;
}

:-ms-input-placeholder {
  /* chạy trên Internet Explorer 10-11 */
  color: orange;
}

::-ms-input-placeholder {
  /* chạy trên Microsoft Edge */
  color: orange;
}

.owl-carousel .nav-btn {
  height: 71px;
  position: absolute;
  width: 71px;
  cursor: pointer;
  top: 100px !important;
  border-radius: 50%;
  box-shadow: 0 12px 24px 0 rgba(215, 29, 49, 0.2);
  background: #fff;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.owl-carousel ion-icon {
  width: 100%;
  height: 100%;
  z-index: 1000;
  color: #c60000;
}

.owl-carousel .prev-slide {
  margin-top: 40px;
  left: -100px;
}

.owl-carousel .next-slide {
  margin-top: 40px;
  right: 0;
}

.product .home-content {
  padding: 50px 8%;
}

.detail-product {
  height: 660px !important;
}

.content-product {
  /*margin: 200px 0;*/
  margin-bottom: 100px;
}

.content-product .no-gutters {
  margin-top: 55px;
}

.content-product h4 {
  text-align: center;
  margin-top: 125px;
}

.content-product .intro {
  font-size: 22px;
  color: #132833;
}

.content-product .product-name {
  text-align: unset;
  margin-top: 0;
}

.content-product .item {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  padding-bottom: 15px;
  height: 100%;
}

.content-product .item ul {
  list-style: none;
  padding-top: 15px;
}

.content-product .item ul li {
  display: inline-flex;
  width: 12%;
}

.content-product .item ul li p {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.67;
  color: #d71d31;
  height: 60px;
}

.content-product .item ul li:last-child {
  width: 70%;
}

.content-product .item ul li:last-child p {
  color: #132833;
}

.content-product .product-image2 {
  width: 100%;
  /*height: 100%;*/
}

.content-product .item img {
  width: 176px;
  height: 176px;
  margin: 0 auto;
  display: block;
}

/*.content-product .item:hover .read-more{*/
.content-product .item:hover .back {
  top: 0;
  transition: 0.5s ease;
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.16);
}

/*.content-product .read-more{*/
.content-product .back {
  color: #fff !important;
  opacity: 0.95;
  background-image: linear-gradient(to bottom, #005aab, #00b8ee);
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}

.content-product .read-more {
  margin: auto;
}

.content-product .read-more a {
  color: #fff !important;
  border-radius: 34px;
  /*margin-top: 30%;*/
  padding: 14px 62px;
}

.content-product .read-more ion-icon {
  font-size: 30px;
  vertical-align: middle;
}

.content-product .list-transform ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.content-product .list-transform ul li {
  display: inline-block;
  width: 80%;
}

.content-product .list-transform ul li p {
  padding: 0 5%;
  font-size: 18px;
  padding-left: 20px;
  margin: 0;
}

.content-product .list-transform ul li .text-right {
  text-align: right;
  padding-left: 0;
  padding-right: 20px;
}

.content-product .list-transform .img-transform {
  width: 92px;
  height: 92px;
  box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  /*padding: 22px 0;*/
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.content-product .list-transform ul li img {
  display: block;
  margin: 0 auto;
  width: 65px;
}

.content-product .content-center {
  width: 200px;
  /*height: 200px;*/
  background-image: linear-gradient(to bottom, #d74f1d, #d71d31);
  display: block;
  margin: 0 auto;
  padding: 50px;
}

.content-product .content-center .img-center {
  border-radius: 21px;
  background-color: #ffffff;
  display: block;
  padding: 10px;
}

.content-product .content-center img {
  display: block;
  width: 100%;
  max-height: 60px;
}

.content-product .content-people img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}

.content-product .content-people .name {
  font-size: 14px;
  font-weight: bold;
  color: #132833;
}

.content-product .content-people .name {
  font-size: 14px;
  color: #5a6770;
}

.screenshot-product {
  padding: 81px 0 110px 0;
}

.screenshot-product h4 {
  text-align: center;
  margin-bottom: 37px;
}

.screenshot-product img {
  width: 100%;
  height: 100%;
}

.screenshot-product .story {
  padding-left: 0;
  margin-bottom: 21px;
}

.screenshot-product .list-story {
  padding-left: 0;
}

.screenshot-product .more-story {
  border: solid 1px #005aab;
  padding: 150px 0 40px 40px;
  background-color: #ffffff;
}

.screenshot-product .more-story a {
  font-size: 24px;
  line-height: 1.25;
  color: #005aab;
  text-decoration: none;
  font-weight: bold;
}

.first-story img {
  height: 517px;
}

.story img,
.list-story img,
.more-story {
  height: 248px;
}

.fancybox-container {
  z-index: 10000000001 !important;
}

.meta-description {
  padding-left: 40px;
  width: 82%;
  height: 63px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.send-mail h1 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 30px;
}

.content-mail p .text-red {
  color: red;
}

.content-mail .img-fluid {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.content-mail .img-mail {
  width: 80%;
  height: 700px;
  padding: 10px;
  color: #fff;
  margin: 0 auto;
  position: relative;
}

#meta-content {
  overflow-y: scroll;
  max-height: 400px;
}

.modal-product .modal-dialog,
.modal-video-product .modal-dialog {
  max-width: 50%;
}

.desk-fixed {
  position: fixed;
  right: 1px;
  float: right;
  top: 150px;
  width: 45px;
  height: 45px;
  background: #fff;
  line-height: 45px;
  vertical-align: text-bottom;
  text-align: center;
  z-index: 999999;
  border-radius: 50%;
  box-shadow: 1px 1px 1px #222;
}

.desk-fixed .fa {
  font-size: 35px;
  color: #d80000;
  line-height: 45px;
}

.desk-fixed img {
  vertical-align: top;
  width: 45px !important;
  height: 45px !important;
}

.main .label-text {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;

  /* Tím */

  color: #03017e;
  font-family: "Lato";
}

.p-50 {
  padding: 0 150px;
}

.pl-20 {
  padding-left: 40px !important;
}

.mr-50 {
  margin-top: 70px !important;
}

.home-product .image-product {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.home-product .name-product,
.home-product .name-page-product {
  background: #3e4194;
  border-radius: 0px 0px 20px 20px;
  padding: 20px 0;
}

.home-product .name-page-product a {
  color: white;
  font-size: 20px;
  padding: 0px 20px;
  text-transform: uppercase;
  text-align: center;
}

.home-product .name-page-product a:hover {
  color: #ec3438;
}

.see-more-link {
  padding: 12px 40px;
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%);
  border-radius: 10px;
  color: white !important;
}

.bg-product {
  background: #f8f6fe;
  border: 1px solid #e1eaff;
  border-radius: 20px;
  padding: 0px 0px 50px;
}

.box-see-more {
  margin: 20px 0px 40px 0px;
}

.home-product .image-product-item {
  width: 100%;
  height: 320px;
  border-radius: 20px 20px 0 0;
}

.home-stories .box-share {
  background: #fff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 50px;
}

.home-stories {
  position: absolute;
  z-index: 1;
  bottom: -50%;
  margin-bottom: 126px;
}

.home-stories .box-share img {
  width: 30px !important;
  height: 30px !important;
  margin-bottom: 15px;
}

.home-stories .box-share .title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  /* identical to box height, or 133% */

  /* Tím */

  color: #03017e;
}

.home-stories .box-share .summary {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  /* or 150% */

  color: #000000;
}

.home-stories .box-share .intro {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  /* identical to box height, or 133% */

  text-align: center;

  color: #000000;
}

.intro-team {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  /* or 150% */

  text-align: center;

  color: #000000;
  margin-bottom: 40px;
  padding: 0 10%;
}

.slide-partner .item-blog .img-team {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 20px;
}

.bg-color-product-other {
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%);
  padding: 50px 0;
}

.detail-product .box-banner {
  padding: 0 10%;
}

.detail-product .box-banner .textCenterProduct {
  display: flex;
  align-items: center;
}

.detail-product .box-banner .imageBannerProduct {
  text-align: center;
}

.detail-product .box-banner .img-banner-right {
  width: 95%;
  margin-top: 24%;
  max-height: 400px;
  object-fit: contain;
}

.detail-product .box-banner a.contact-now {
  color: #03017e;
  background: #ffffff;
  border-radius: 10px;
  padding: 15px 45px;
  font-weight: bold;
}

.content-product .text-title {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 48px;
  /* identical to box height */

  text-align: center;
  text-transform: uppercase;

  /* Tím */

  color: #03017e;
  font-family: "Lato";
}

.content-product .text-des {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  /* identical to box height, or 100% */

  text-align: center;

  /* Xám 1 */

  color: #797979;
}

.content-product .name-product-item {
  font-style: normal;
  font-weight: 800;
  font-size: 28px;
  line-height: 42px;
  /* identical to box height */

  /* Tím */

  color: #03017e;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

/* .dropdown>.dropdown-menu {
    display: block !important;
  } */
.dropdown > .dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
  pointer-events: none;
}

.navbar-nav .dropdown-menu {
  position: absolute !important;
}

.dropdown-menu-child {
  background: #fff;
  position: absolute;
  top: 82px;
  border-radius: 20px;
  left: 100px;
  display: none;
  left: 0;
  max-width: 90%;
}

/* .header .navbar-nav li {
    padding: 15px 8px 15px;
} */

.header .navbar-nav li:last-child {
  /*padding: 10px !important;*/
}

.header .navbar-nav li:hover .dropdown-menu-child {
  display: block !important;
  position: absolute;
}

.dropdown-menu-child .product-group {
  background: #f4f4f4;
  padding: 8px 20px;
  line-height: 35px;
  text-transform: uppercase;
}

.dropdown-menu-child .product-group a {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.dropdown-menu-child .product-group:first-child {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.dropdown-menu-child .productItem {
  margin: 10px 0px;
}

.dropdown-menu-child .productItem .product-item {
  line-height: 30px !important;
  padding-left: 25px;
  margin-bottom: 10px;
}

.dropdown-menu-child .productItem .product-item a {
  /* font-weight: 600 !important;*/
  font-size: 17px;
  color: #000000;
  text-decoration: none;
  text-transform: none !important;
}

.dropdown-menu-child .productItem .product-item a:hover {
  color: #03017e !important;
}

.dropdown-menu-child a {
  color: #000 !important;
}

.header .navbar-nav li a i {
  margin-left: 5px !important;
  color: #000 !important;
}

.header .navbar-nav li.active a i {
  color: #03017e !important;
}

.home-product .marginTop {
  margin-top: 15px !important;
}

.home-product .delete-padding-home {
  padding: 0px 0px;
}

.home-product .name-page-product {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 28px;
  -webkit-line-clamp: 2;
  height: 75px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.mr-10 {
  margin-right: 10px;
}

.nav-wrapper {
  text-align: center;
}

.sl-nav {
  display: inline;
}

.sl-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
}

.sl-nav li {
  cursor: pointer;
  padding-bottom: 10px;
}

.sl-nav li ul {
  display: none;
}

.sl-nav li:hover ul {
  position: absolute;
  top: 50px;
  /* right: -15px; */
  display: block;
  background: #fff;
  width: 100px;
  padding-top: 0px;
  z-index: 1;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li:hover .triangle {
  position: absolute;
  top: 35px;
  right: 30px;
  z-index: 10;
  height: 14px;
  overflow: hidden;
  width: 30px;
  background: transparent;
}

.sl-nav li:hover .triangle:after {
  content: "";
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius: 2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.sl-nav li ul li a {
  position: relative;
  text-align: center;
  background: transparent;
  padding: 15px 0px !important;
  padding-bottom: 0;
  z-index: 2;
  font-size: 15px;
  color: #3c3c3c;
}

.sl-nav li ul li:last-of-type {
  padding-bottom: 15px;
}

.sl-nav li ul li span {
  padding-left: 5px;
}

.sl-nav li ul li span:hover,
.sl-nav li ul li span.active {
  color: #146c78;
}

.sl-nav ul li ul li {
  padding: 8px 8px 8px !important;
}

.sl-nav ul li ul li a {
  text-decoration: none;
}

.sl-nav ul li ul li a b {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.sl-flag {
  display: inline-block;
  /* box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4); */
  width: 30px;
  height: 25px;
  background: #aaa;
  /* border-radius: 50%; */
  position: relative;
  top: 5px;
  overflow: hidden;
}

.flag-de {
  background: url("/public/frontend/images/vi.png");
  background-size: cover;
  background-position: center center;
}

.flag-usa {
  background-size: cover;
  background-position: center center;
  background: url("/public/frontend/images/en.png");
}

.slide-partner .owl-nav .owl-prev {
  position: absolute;
  top: 50px;
  left: -75px;
  font-size: 20px;
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%) !important;
  padding: 17px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white !important;
}

.slide-partner .owl-nav .owl-next {
  position: absolute;
  top: 50px;
  right: -80px;
  font-size: 20px;
  background: linear-gradient(270.1deg, #03017e 0%, #6683c5 100%) !important;
  padding: 17px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white !important;
}

.system-features .list-features .item {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 20px #0000000d;
  border: 1px solid #ececec;
  opacity: 1;
  z-index: 0;
  position: relative;
  margin-bottom: 140px;
  padding: 0 20px 80px 20px;
  border-radius: 20px;
}

.system-features .list-features .item .image img {
  max-width: 290px;
  position: relative;
  z-index: 1;
  margin-top: -50px;
}

.system-features .list-features .item .title_subsystems {
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.system-features .list-features .item .des_subsubsystems {
  height: 100px;
}

.menu-search {
  right: -15px;
  display: block !important;
  width: 320px;
}

.w-fc {
  width: fit-content !important;
}

.pb-50px {
  padding-bottom: 3.125rem !important;
}

.pt-50px {
  padding-top: 3.125rem !important;
}

.py-50px {
  padding: 3.125rem 0rem;
}

/*responsive màn homepage*/
/*iphone*/

@media (min-width: 320px) and (max-width: 767px) {
  /* Old */

  .formSearch {
    margin-bottom: 20px !important;
    margin-top: 10px !important;
  }

  .formSearch .form-control {
    border: 1px solid #000 !important;
  }

  .formSearch .icon-fallback-text i {
    color: #fff !important;
  }

  .formSearch .icon-fallback-text {
    position: absolute;
    top: 293px;
    right: 24px;
    background: #03017e !important;
    height: 38px;
    border-radius: unset;
  }
}

@media (min-width: 1400px) and (max-width: 1600px) {
  .head-fix .navbar-nav .nav-link {
    font-size: 14px !important;
  }

  .searchWeb .list-news .itemSearch .text-uppercase a {
    font-size: 18px !important;
  }

  .header .navbar-nav li {
    margin: 0px 8px !important;
  }

  .header .navbar-nav .nav-link {
    font-size: 14px !important;
  }

  .head-logo img {
    height: 50px !important;
  }

  .header .navbar-nav .contactMenu a {
    font-size: 14px !important;
  }

  .main .label-text {
    font-size: 22px !important;
  }

  .home-product .name-page-product a {
    font-size: 20px !important;
    padding: 0px 10px !important;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1020px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1166px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}
