/* body>div:first-child {  display: none;} */
.space {
  height: 1500px;
  background-color: var(--bg1);
}

/* all  */
html,
body {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  /* font-size: 20px; */
  font-weight: 600;
}

body {
  top: 0px !important;
}

body.over {
  position: fixed !important;
  top: 0;
  width: 100%;
}

html.stop {
  overflow: hidden;
  -webkit-overflow-scrolling: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.svg-div {
  display: none;
}

.wrap {
  max-width: 1170px;
  margin: 0 auto;
}

.wrap2 {
  max-width: 845px;
  margin: 0 auto;
}

.img-100 {
  position: relative;
  height: 0;
  overflow: hidden;
  display: block;
}

.img-100 img {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .3s linear;
}

.img-100 iframe {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .3s linear;
}

.wrap-img {
  padding-bottom: 100%;
}

button,
input,
a {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  /* font-size: unset;  font-weight: unset; */
  margin: 0px;
  padding: 0px;
}

a {
  transition: .3s linear;
  color: var(--text);
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--text);
}

input,
button,
textarea,
select {
  outline: none;
}

ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.adm-glyphicon span {
  background: url('./img/setting.png');
  background-size: cover;
  width: 12px;
  height: 12px;
  display: block;
}

.mb-on7 {
  display: none;
}

.mb-off7 {}

.swal2-container {
  font-size: unset !important;
}

/* all end  */
/* header  */
.header {
  width: 100%;
  position: fixed;
  background-color: var(--theme);
  padding: 12px 0;
  z-index: 100;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header .header-logo {
  float: left;
  margin-right: 20px;
}

.header .header-logo img {
  height: 50px;
}

.header .header-menu {
  float: left;
}

.header .header-menu .menu-lv1>li {
  display: inline-block;
  position: relative;
}

.header .header-menu .menu-lv1>li>a {
  font-size: 16px;
  color: var(--white);
  padding: 13px 25px;
  display: block;
}

.header-btn {
  float: right;
  padding: 4px 0 0;
}

.header-btn a {
  color: var(--theme);
  background-color: var(--white);
  display: inline-block;
  font-size: 16px;
  padding: 9px 20px;
  border-radius: 1000px;
}

.header-btn a:first-child {
  margin-right: 10px;
}

.header-btn2 a {
  background-color: var(--theme);
  color: var(--white);
}

.header-mb {
  float: right;
  margin-top: 12px;
}

.header-mb button {
  border: none;
  background: transparent;
}

.header .header-menu .menu-lv1>li:hover .menu-lv2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header .header-menu .menu-lv2 {
  position: absolute;
  background: var(--white);
  width: 310px;
  top: 100%;
  padding: 20px 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all .3s linear;
}

.header .header-menu .menu-lv2:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header .header-menu .menu-lv2>li>a {
  font-size: 16px;
  font-weight: 600;
}

.header .header-menu .menu-lv3 {
  padding-left: 10px;
}

.header .header-menu .menu-lv3>li>a {
  font-size: 16px;
  font-weight: 400;
}

.header .header-menu .menu-lv2.width1 {
  width: 310px;
}

.header .header-menu .menu-lv2.width2 {
  width: 620px;
}

.header .header-menu .menu-lv2.width2>li {
  float: left;
  width: 50%;
  margin-bottom: 20px;
}

.header .header-menu .menu-lv1 a:hover,
.header .header-menu .menu-lv1>li.active>a {
  color: var(--theme4);
}

.header .header-menu .menu-lv2 a:hover {
  color: var(--theme);
}

.search-header {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.search-header .mb-search-btn {
  background: transparent;
  border: none;
}

.search-mb-box {
  position: absolute;
  background: var(--white);
  width: 300px;
  padding: 20px;
  right: 0;
  top: 100%;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s linear;
  z-index: 10;
}

.search-mb-box .search-mb-input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  padding: 0 15px;
  font-weight: 400;
  border-radius: 5px;
}

.search-mb-box button {
  position: absolute;
  right: 20px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  width: 40px;
  border-radius: 0 5px 5px 0;
}

.search-header .mb-search-btn:hover~.search-mb-box {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.search-mb-box:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.header-mb .search-mb-box {
  right: -35px;
}

.header-mb .mb-search-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  margin-right: 10px;
  transform: translateY(-3px);
}

/* header end */
/* mobile menu box  */
/* mobile  */
.mb-menu-box {
  position: absolute;
  top: calc(100% - 1px);
  z-index: 9;
  background-color: var(--white);
  width: 100%;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  opacity: 0;
  visibility: hidden;
  /* transform: translateX(-20%); */
  transition: all .3s linear;
  height: calc(100vh - 70px);
  overflow-y: auto;
  padding: 15px 5px 10px;
}

.bg-overlay {
  visibility: hidden;
  opacity: 0;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: 7;
  top: 0;
  left: 0;
}

.bg-overlay.active {
  visibility: visible;
}

.bg-overlay2 {
  visibility: hidden;
  opacity: 0;
  height: 100vh;
  position: fixed;
  width: 100%;
  z-index: 7;
  top: 0;
  left: 0;
}

.bg-overlay2.active {
  visibility: visible;
}

.mb-menu-box.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mb-menu-box ul {
  z-index: 8;
  position: relative;
}

.mb-menu-box li {
  position: relative;
}

.mb-menu-box li a {
  padding: 10px 15px;
  display: block;
  font-size: 15px;
  position: relative;
  width: fit-content;
  font-weight: 500;
  font-size: 20px;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  outline: none;
}

.mb-menu-box svg {
  position: absolute;
  right: 15px;
  top: 10px;
  transition: all .2s linear;
}

.mb-menu-box .mb-menu-child svg {
  opacity: 0.8;
}

.mb-menu-box .mb-menu-child a {
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  color: var(--text3);
}

.mb-menu-box .mb-menu-li .mb-menu-child {
  overflow: hidden;
  margin-left: 15px;
  border-left: 1px solid var(--border);
}

.mb-menu-box .mb-menu-li svg.collapsed {
  transform: rotateZ(180deg);
}

.mb-menu-box .mb-menu-li svg {
  transform: rotateZ(0);
}

.mb-menu-box .header-btn {
  float: unset;
  padding: 0;
  margin: 20px 0 0;
  padding-left: 15px;
}

.mb-menu-box .mb-menu-li .mb-menu-child2 {
  padding-left: 10px;
}

.mb-menu-box .mb-menu-li .mb-menu-child2 a {
  color: var(--text2);
}

/* mobile menu end  */
/* home banner  */
.home-banner {
  width: 100%;
  margin-top: 74px;
  height: 700px;
}

.home-banner img {
  width: 100%;
}

.home-banner .banner_home_slide img {
  height: 700px;
}

.home-banner .banner_home_slide .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
  z-index: 1;
  transition: all 0.3s linear;
  height: 0px;
  opacity: 0;
  visibility: hidden;
}

.home-banner .banner_home_slide:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.home-banner .banner_home_slide .owl-nav .owl-prev {
  left: 70px;
  transition: all .3s linear;
  position: absolute;
}

.home-banner .banner_home_slide .owl-nav .owl-next {
  right: 70px;
  position: absolute;
  transition: all .3s linear;
}

.home-banner .banner_home_slide:hover .owl-nav .owl-prev {
  left: 50px;
}

.home-banner .banner_home_slide:hover .owl-nav .owl-next {
  right: 50px;
}

.banner_home_slide .owl-dots {
  display: inline-block;
  text-align: center;
  margin-left: 50%;
  position: absolute;
  bottom: 40px;
  transform: translate(-50%, 20px);
  transition: all 0.2s linear;
}

.banner_home_slide .owl-dots button span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--white);
  margin: 0px 5px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.7;
  transition: all 0.2s linear;
}

.banner_home_slide .owl-dots button:hover span {
  opacity: 1;
}

.banner_home_slide .owl-dots .owl-dot.active span {
  background-color: var(--white);
  opacity: 1;
}

.home-banner .item {
  position: relative;
}

.home-banner .item .adm-glyphicon {
  position: absolute;
  top: 20px;
  left: 0;
}

/* home banner end */
/* section 1  */
.section-1 {
  padding: 150px 0;
  background-color: var(--black);
  position: relative;
}

.section-1 .banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.section-1 .section-1-box {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.section-1 .section-1-box .span {
  font-size: 24px;
  color: var(--text4);
  display: block;
  margin-bottom: 30px;
}

.home-title {
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  line-height: 72px;
  letter-spacing: 0.2px;
  width: 900px;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 30px;
}

.section-1 .section-1-box .year {
  font-size: 120px;
  color: var(--theme4);
  text-align: center;
  font-weight: 700;
  line-height: 160px;
  letter-spacing: .6px;
}

.section-1 .section-1-box .description {
  font-size: 24px;
  color: var(--text2);
  margin: 0 0 30px;
  line-height: 36px;
}

.section-1 .section-1-box .text-end {
  font-size: 18px;
  text-align: left;
  margin: 20px 0 30px;
  color: var(--text2);
}

.home-link {
  font-size: 18px;
  background: var(--theme);
  color: var(--white);
  display: block;
  width: fit-content;
  padding: 12px 46px;
  border-radius: 1000px;
}

.home-link:hover {
  background-color: var(--theme2);
  color: var(--white);
}

.section-1 .section-1-box .home-link {
  margin: 0 auto;
}

/* section 1 end */
/* section 2  */
.section-2 {
  padding: 100px 0 50px;
  background: var(--white);
}

.section-2 .s2-left img {
  width: 335px;
  max-width: 100%;
}

.section-2 .s2-list li {
  display: inline-block;
}

.section-2 .s2-list li:not(:last-child) {
  margin-right: 8px;
  margin-bottom: 15px;
}

.section-2 .s2-list .s2-right-btn {
  font-size: 14px;
  padding: 14px 25px;
  border: 1px solid var(--bg1);
  background-color: var(--bg1);
  border-radius: 1000px;
}

.section-2 .s2-list .s2-right-btn.active {
  border: 1px solid var(--theme);
  color: var(--theme);
  background-color: rgb(52 93 199 / 18%);
}

.section-2 .s2-list .s2-right-btn.active svg .path {
  fill: var(--theme3);
}

.section-2 .s2-list .s2-right-btn.active svg .path2 {
  fill: var(--theme4);
}

.section-2 .s2-list .s2-right-btn svg {
  transform: translateY(2px);
  margin-right: 5px;
}

.section-2 .container-fluid>.home-title {
  margin-bottom: 40px;
}

.section-2 .s2-list-content .home-title {
  text-align: left;
  margin: 20px 0 20px;
}

.section-2 .s2-list-content ul li {
  padding-left: 30px;
  margin-bottom: 20px;
  position: relative;
  font-size: 20px;
}

.section-2 .s2-list-content ul li::after {
  content: "";
  background-image: url('./img/icon-guard.png');
  background-repeat: no-repeat;
  width: 24px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
}

.section-2 .s2-list-content ul li p {
  color: var(--text2);
  font-weight: 400;
}

/* section 2 end */
/* section 3 */
.section-3 {
  padding: 50px 0 100px;
  background-color: var(--white);
}

.section-3 .home-title {
  margin-bottom: 50px;
}

.section-3 .s3-box {
  color: var(--white);
  border-radius: 20px;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.section-3 .s3-box .s3-left {
  text-align: center;
  padding: 74px 0;
}

.section-3 .s3-box .s3-right {
  height: 520px;
}

.section-3 .s3-box .s3-right-pos {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.section-3 .s3-box .s3-right-pos .title {
  font-size: 32px;
  margin: 0 0 30px;
}

.section-3 .s3-box .s3-right-pos .des {
  font-weight: 400;
  font-size: 16px;
  width: 450px;
  max-width: 100%;
  margin: 0 0 20px;
}

.section-3 .s3-box2 .s32-box {
  background-color: var(--bg2);
  padding: 25px;
  border-radius: 24px;
}

.section-3 .s3-box2 .s32-box img {
  width: auto;
  height: 36px;
  margin-bottom: 40px;
}

.section-3 .s3-box2 .s32-box .title {
  margin-bottom: 20px;
  font-size: 34px;
}

.section-3 .s3-box2 .s32-box .des {
  font-size: 18px;
  font-weight: 400;
}

/* section 3 end */
/* section 4  */
.section-4 {
  background-color: #1c1c1e;
  padding: 100px 0;
  color: var(--white);
}

.section-4 .s4-left {
  width: 415px;
  margin-left: auto;
  max-width: 100%;
}

.section-4 .s4-left .home-title {
  text-align: left;
}

.section-4 .s4-right .owl-nav {
  text-align: center;
  margin-top: 30px;
}

.section-4 .s4-right .owl-nav button {
  margin: 0 10px;
}

/* section 4 end  */
/* section 5  */
.section-5 {
  padding: 100px 0 50px;
  background-color: var(--white);
}

.section-5 .s5-left .title {
  font-size: 40px;
  margin-bottom: 15px;
  margin-top: 12px;
}

.section-5 .s5-left .des {
  color: var(--text2);
  font-weight: 400;
}

.section-5 .s5-right li {
  float: left;
  width: 50%;
  margin-bottom: 20px;
  position: relative;
}

.section-5 .s5-right li.right {
  padding-left: 40px;
}

.section-5 .s5-right li.right::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 50%;
  width: 1px;
  background-color: #ccc;
  margin: auto
}

.section-5 .s5-right li span {
  display: block;
  font-size: 48px;
  margin-bottom: 0px;
}

.section-5 .s5-right li p {
  font-size: 22px;
}

.section-5 .s5-box1 {
  margin-bottom: 50px;
}

.section-5 .s5-box2 {
  padding: 50px 0 0;
}

.section-5 .s5-box2 .item {
  position: relative;
  height: 70px;
}

.section-5 .s5-box2 .item img {
  width: 120px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* section 5 end */
/* section 6  */
.section-6 {
  padding: 25px 0 50px;
  background-color: var(--white);
}

.section-6 .des-title {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  width: 700px;
  max-width: 100%;
  margin: 0 auto 50px;
  color: var(--text2);
}

.section-6 .s6-box-all {
  background-color: var(--bg2);
  padding: 32px;
  border-radius: 20px;
}

.section-6 .s6-box1 {
  margin-bottom: 30px;
}

.section-6 .s6-box-all img {
  margin-bottom: 50px;
}

.section-6 .s6-box-all .title {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 10px;
}

.section-6 .s6-box-all .des {
  color: var(--text2);
  font-size: 20px;
}

.section-6 .s6-box4 {
  padding: 50px 0 50px;
  margin-top: 50px;
}

.section-6 .s6-box4 .item {
  height: 70px;
  position: relative;
}

.section-6 .s6-box4 .item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
}

.faq {
  padding: 0 0 50px;
  background-color: var(--white);
}

.faq .faq-box a {
  font-weight: 400;
  padding: 15px 15px 15px 0;
  display: block;
  width: 100%;
  position: relative;
  font-size: 20px;
}

.faq .faq-box a svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotateZ(90deg);
  transition: all .3s linear;
}

.faq .faq-box p {
  font-size: 20px;
}

.faq .faq-box a.collapsed svg {
  transform: translateY(-50%);
}

.faq .faq-box .panel-body {
  font-weight: 400;
}

/* section 6 end */
/* footer  */
.footer {
  padding: 60px 0 30px;
  /* background-color: var(--black); */
}

.footer .footer-logo img {
  height: 80px;
  margin-bottom: 50px;
}

.footer .footer2-left .title {
  color: var(--text5);
  font-size: 24px;
  margin-bottom: 20px;
}

.footer .footer2-left a {
  display: block;
  margin-bottom: 24px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  color: var(--text5);
}

.footer .footer2-left a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  transform: translateY(3px);
}

.footer .footer2-left a:hover {
  color: var(--white);
}

.footer .footer2-right {
  float: right;
}

.footer .footer2-right .title {
  color: var(--text5);
  font-size: 24px;
  margin-bottom: 20px;
}

.footer .footer2-right ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer .footer-info {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #2c2c2e;
}

.footer .footer-menu .title {
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer .footer-menu ul li a {
  font-size: 18px;
  font-weight: 400;
  color: var(--text5);
  margin-bottom: 20px;
  display: block;
}

.footer .footer-menu ul li a:hover {
  color: var(--white);
}

.footer .footer-menu {
  padding-bottom: 10px;
  border-bottom: 1px solid #2c2c2e;
}

.footer .copyright {
  padding: 30px 0 0;
}

.footer .copyright p {
  font-size: 14px;
  color: var(--text5);
}

/* footer end */
/* btn fix  */
.btn-whatsapp {
  position: fixed;
  left: 30px;
  bottom: 30px;
}

.btn-whatsapp .btn-wa-open {
  display: block;
  background-color: var(--bg2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn-whatsapp .btn-wa-open svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-fixed {
  position: fixed;
  right: 15px;
  bottom: 30px;
  text-align: center;
  z-index: 10;
}

.btn-fixed .to_top {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme);
  position: relative;
  margin: 15px auto 0;
  opacity: 0;
  visibility: hidden;
}

.btn-fixed .to_top.scroll {
  opacity: 1;
  visibility: visible;
}

.btn-fixed .to_top:hover {
  opacity: 0.8;
}

.btn-fixed .to_top svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
}

.btn-fixed .fix-lich2 {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  margin: 10px auto 0;
  transition: all .3s linear;
  opacity: 0;
  visibility: hidden;
}

.btn-fixed .fix-lich2 svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-fixed .fix-lich2:hover {
  opacity: 0.8;
}

.btn-fixed.scroll .fix-lich2 {
  opacity: 1;
  visibility: visible;
}

/* btn fix end */
/* page detail  */
.page-banner {
  margin-top: 74px;
}

.page-banner .page_banner_slide .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
  z-index: 1;
  transition: all 0.3s linear;
  height: 0px;
  opacity: 0;
  visibility: hidden;
}

.page-banner .page_banner_slide:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.page-banner .page_banner_slide .owl-nav .owl-prev {
  left: 70px;
  transition: all .3s linear;
  position: absolute;
}

.page-banner .page_banner_slide .owl-nav .owl-next {
  right: 70px;
  position: absolute;
  transition: all .3s linear;
}

.page-banner .page_banner_slide:hover .owl-nav .owl-prev {
  left: 50px;
}

.page-banner .page_banner_slide:hover .owl-nav .owl-next {
  right: 50px;
}

.page_banner_slide .owl-dots {
  display: inline-block;
  text-align: center;
  margin-left: 50%;
  position: absolute;
  bottom: 40px;
  transform: translate(-50%, 20px);
  transition: all 0.2s linear;
}

.page_banner_slide .owl-dots button span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--white);
  margin: 0px 5px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.7;
  transition: all 0.2s linear;
}

.page_banner_slide .owl-dots button:hover span {
  opacity: 1;
}

.page_banner_slide .owl-dots .owl-dot.active span {
  background-color: var(--white);
  opacity: 1;
}

.vindex {
  text-align: center;
  padding: 25px 0;
  background-color: var(--bg1);
}

.vindex .vindex-1 .title {
  font-weight: 600;
  margin-top: 10px;
  font-size: 20px;
}

.vindex .vindex-2 span {
  font-weight: 300;
  font-size: 16px;
}

.vindex .vindex-2 p {
  font-weight: 300;
  font-size: 16px;
  color: var(--theme);
}

.vindex .vindex-3 a {
  background: var(--theme);
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 25px;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-top: 5px;
}

.vindex .vindex-3 a:hover {
  background-color: var(--theme2);
}

.dk-chungkhoan {
  padding: 60px 0 30px;
}

.dk-chungkhoan .dk-ck-left>img {
  height: 70px;
  margin-bottom: 20px;
}

.dk-chungkhoan .dk-ck-left .des {
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 20px;
}

.dk-chungkhoan .dk-ck-left li {
  margin-bottom: 16px;
}

.dk-chungkhoan .dk-ck-left li p {
  display: block;
  position: relative;
  min-height: 40px;
  padding-left: 50px;
}

.dk-chungkhoan .dk-ck-left li p span {
  font-weight: 400;
  font-size: 16px;
}

.dk-chungkhoan .dk-ck-left li p img {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
}

.dk-chungkhoan .dk-ck-left .link {
  background: var(--theme);
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 25px;
  width: fit-content;
  display: block;
}

.dk-chungkhoan .dk-ck-left .link:hover {
  background-color: var(--theme2);
}

.dk-chungkhoan .dk-ck-right {
  width: 100%;
  margin-top: 30px;
}

.giatri-cotloi {
  padding: 30px 0 60px;
}

.giatri-cotloi .left .title {
  font-size: 45px;
  margin: 13px 0 0;
}

.giatri-cotloi .gt-cotloi-box img {
  height: 60px;
  width: auto;
}

.giatri-cotloi .gt-cotloi-box p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.giatri-cotloi .gt-cotloi-box {
  text-align: center;
}

.co-hoi {
  padding: 45px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.co-hoi .left .title {
  text-transform: uppercase;
  color: var(--white);
  font-size: 28px;
}

.co-hoi .right .link {
  background: var(--theme);
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  padding: 10px 25px;
  width: fit-content;
  display: block;
  margin-left: auto;
}

.co-hoi .right .link:hover {
  background-color: var(--theme2);
}

.page-newslist {
  padding: 60px 0;
}

.page-news-item .thumb.wrap-img {
  padding-bottom: 45%;
}

.page-news-item .thumb {
  margin-bottom: 10px;
}

.page-news-item .text .title {
  display: block;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
}

.page-news-item .text .des {
  font-size: 18px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.page-news-item .text {
  min-height: 135px;
  margin-bottom: 20px;
}

.page-newslist .page-news-text {
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}

.page-newslist .page-news-text .title {
  font-size: 16px;
  height: 42px;
  display: block;
  font-weight: 500;
}

.featured-news {
  background: var(--bg1);
  padding: 60px 0;
}

.featured-news .side-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.featured-news .side-des {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

.featured-news .head {
  background: #e0e0e0;
  position: relative;
  margin-bottom: 20px;
}

.featured-news .head .title {
  float: left;
  height: 37px;
  background: var(--theme);
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 10px 0;
  font-size: 18px;
}

.featured-news .head .link {
  float: right;
  font-size: 16px;
  font-weight: 400;
  display: block;
  width: fit-content;
  margin-top: 6px;
  margin-right: 10px;
}

.f-news-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}

.f-news-item .thumb {
  display: inline-block;
  width: 150px;
  height: 75px;
  margin-right: 13px;
  vertical-align: middle;
}

.f-news-item .thumb img {
  width: 100%;
  height: 100%;
}

.f-news-item .text {
  display: inline-block;
  width: calc(100% - 170px);
  vertical-align: middle;
}

.f-news-item .text .title {
  font-size: 16px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.page-doitac .section5_slide .item {
  position: relative;
  height: 70px;
}

.page-doitac .section5_slide .item img {
  width: 120px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-doitac {
  padding: 60px 0;
}

.page-doitac .side-title {
  font-size: 30px;
  margin: 0 0 20px;
  font-weight: 600;
}

.page-contact {
  position: relative;
  background: rgba(0, 2, 3, 0.709);
  padding: 60px 0;
}

.page-contact .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-contact .box-page-contact {
  background: var(--white);
  padding: 30px;
}

.page-contact .box-page-contact .title {
  font-size: 26px;
  color: var(--theme);
  margin: 0 0 25px;
  font-weight: 600;
}

.page-contact .form-item {
  padding: 15px 0;
}

.page-contact .form-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text2);
}

.page-contact .form-item input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border);
  padding: 0 15px;
  font-size: 18px;
  font-weight: 400;
}

.page-contact .form-item input:focus {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.page-contact .form-item select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border);
  padding: 0 12px;
  font-size: 18px;
  font-weight: 400;
}

.page-contact .form-item select:focus {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.page-contact .form-item button {
  background: var(--theme);
  color: var(--white);
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 25px;
  width: fit-content;
  display: block;
  border: none;
  transition: all .3s linear;
}

.page-contact .form-item button:hover {
  background-color: var(--theme2);
}

.page-contact .sub-title {
  font-size: 18px;
  font-weight: 400;
}

.page-contact .right {
  position: relative;
}

.page-contact .right .page-contact-text-pos {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  text-align: right;
}

.page-contact .right .title {
  font-size: 22px;
  margin: 0 0 15px;
}

.page-contact .right .des {
  font-size: 17px;
  font-weight: 400;
}

/* page detail end */
/* breadcrumb  */
.breadcrumb-box {
  padding: 14px 0;
}

.breadcrumb-box li {
  display: inline-block;
}

.breadcrumb-box li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}

.breadcrumb-box li:last-child a {
  color: var(--theme);
}

.breadcrumb-box li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 8px;
  background-image: url(./img/breadcrumb-icon.svg);
  width: 7px;
  height: 7px;
  background-repeat: no-repeat;
}

.breadcrumb-box li a {
  color: var(--text);
  font-size: 14px;
}

/* breadcrumb end */
/* product list */
.p-list-box {
  padding: 0 0 60px;
}

.p-list-box .side-product {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.p-list-box .p-menu-lv1>li {
  position: relative;
  padding: 10px 0;
}

.p-list-box .p-menu-lv1>li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.p-list-box .p-menu-lv1>li>a {
  display: block;
  font-size: 18px;
  color: var(--text2);
}

.p-list-box .p-menu-lv1>li>button {
  position: absolute;
  right: 0;
  border: none;
  background: transparent;
  width: 35px;
  height: 35px;
  padding: 0;
  top: 5px;
}

.p-list-box .p-menu-lv1>li>button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all .3s linear;
}

.p-list-box .p-menu-lv1>li>button.collapsed svg {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-list-box .p-menu-lv2 {
  border-top: 1px solid var(--border);
  margin-top: 10px;
  padding: 10px 10px 10px 22px;
}

.p-list-box .p-menu-lv2 a {
  font-size: 16px;
  font-weight: 400;
}

.p-list-box .p-menu-lv3 {
  padding: 10px;
}

.p-list-box .p-menu-lv2,
.p-list-box .p-menu-lv2 li {
  list-style: disc;
}

.p-list-box .p-menu-lv2 li::marker {
  font-size: 16px;
}

.p-list-box .p-menu-lv1 a:hover {
  color: var(--theme);
}

.p-list-box .right .title {
  font-size: 36px;
  text-align: center;
  margin: 0 0 30px;
}

.p-list-box .right .detail-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.p-list-box .right .description {
  font-size: 18px;
  margin: 0 0 20px;
}

.p-list-box .right .content {
  font-size: 18px;
  font-weight: 400;
}

.p-list-box .right .content img {
  margin: 20px 0;
}

/* product list end */
/* toiuu  */
.toiuu .owl-carousel {
  display: block;
}

.toiuu .item {
  display: none;
}

.toiuu .item:first-child {
  display: block !important;
}

/* toiuu end */
/* contact  */
.contact-box {
  padding: 50px 0;
}

.contact-box .title {
  font-weight: 700;
  font-size: 36px;
  margin: 0 0 25px;
  text-transform: capitalize;
}

.contact-box p {
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 15px;
  color: var(--text2);
  font-weight: 400;
}

.contact-box ul {
  padding-left: 20px;
}

.contact-box ul li {
  list-style: disc;
  margin-bottom: 15px;
}

.contact-box ul li a {
  font-weight: 700;
  font-size: 20px;
}

.contact-box .form-item {
  position: relative;
}

.contact-box .form-item label {
  display: block;
  color: var(--text);
  font-size: 18px;
}

.contact-box .form-item input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  padding: 0 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.contact-box .form-item textarea {
  width: 100%;
  height: 107px;
  border: 1px solid var(--border);
  padding: 15px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.contact-box .form-item .contact-submit {
  color: var(--white);
  background: var(--theme);
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-left: auto;
  display: block;
}

.contact-map {
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* contact end */
/* news list  */
.news-breadcrumb {
  margin-top: 74px;
}

.news-list-box .side-title {
  font-size: 30px;
  margin: 0 0 25px;
}

.news-list-box .left {
  padding-right: 30px;
  border-right: 1px solid var(--border);
}

.news-item {
  margin-bottom: 20px;
}

.news-item .thumb.wrap-img {
  padding-bottom: 55%;
  margin-bottom: 15px;
}

.news-item .text {
  min-height: 125px;
}

.news-item .text .title {
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin: 0 0 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-item .text .des {
  font-size: 16px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item .text .title:hover,
.news-item .text .des:hover {
  color: var(--theme3);
}

.news-list-box {
  padding: 0 0 60px;
}

.news-list-box .right .sidebar-title {
  font-size: 20px;
  color: var(--theme);
  margin: 0 0 15px;
}

.news-list-box .right .side-news-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.news-list-box .right .side-news-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.news-list-box .side-news-item .thumb {
  width: 45px;
  height: 45px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.news-list-box .side-news-item .thumb img {
  width: 100%;
  height: 100%;
}

.news-list-box .side-news-item .text {
  display: inline-block;
  width: calc(100% - 70px);
  vertical-align: top;
}

.news-list-box .side-news-item .text .title {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  display: block;
}

/* news list end  */
/* news detail  */
.news-detail-box {
  margin-top: 100px;
}

.news-detail-box .breadcrumb-box {
  padding: 0 0 15px;
}

.news-detail-box .right {
  margin-top: 15px;
}

.news-detail-box .title {
  font-size: 24px;
  margin: 0 0 20px;
  font-weight: 600;
}

.news-detail-box .description {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 28px;
}

.news-detail-box .content {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 50px;
}

.news-detail-box .news-detail-more {
  margin-bottom: 20px;
}

.news-detail-box .news-detail-more .more-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.news-detail-box .news-detail-more ul,
.news-detail-box .news-detail-more li {
  list-style: disc;
}

.news-detail-box .news-detail-more ul {
  padding-left: 20px;
}

.news-detail-box .news-detail-more li a {
  font-size: 16px;
  color: var(--theme3);
}

.news-detail-box .news-detail-more li a:hover {
  text-decoration: underline;
}

.news-detail-box .news-detail-more .news-share {
  margin: 0 0 50px;
}

.news-share {
  margin-bottom: 30px;
}

.news-share li {
  display: inline-block;
}

.news-share li a {
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.news-share li a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-share li a:hover svg path {
  transition: all .2s linear;
  fill: var(--white);
}

.news-share li .share-fb:hover {
  background-color: #1e73be;
}

.news-share li .share-tw:hover {
  background-color: #2478ba;
}

.news-share li .share-wa:hover {
  background-color: black;
}

.news-share li .share-pt:hover {
  background-color: #cb2320;
}

.news-share li .share-ln:hover {
  background-color: #0072b7;
}

.news-related .related-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.news-related .news-item .text {
  min-height: 75px;
}

/* news detail end */
/* 404  */
.box404 {
  height: 500px;
  margin-top: 74px;
  text-align: center;
  position: relative;
}

.box404 img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.box404 .adm-glyphicon {
  position: absolute;
  top: 50%;
  left: 0;
}

/* 404 end */
/* pagination */
.pagination-build {
  text-align: center;
  margin-top: 22px;
}

.pagination-build>li {
  display: inline-block;
  vertical-align: top;
}

.pagination-build>li:not(:last-child) {
  margin-right: 10px;
}

.pagination-build>li a {
  width: 40px;
  height: 40px;
  border: 1px solid #DCE0E0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  color: #575756;
  transition: .3s;
  border-radius: 50%;
  font-size: 18px;
  color: var(--text);
}

.pagination-build .first a,
.pagination-build .last a {
  position: relative;
  display: block;
  color: var(--black);
}

.pagination-build>li a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pagination-build .current a,
.pagination-build>li a:hover,
.pagination-build>li.active a {
  border: 1px solid var(--theme2);
  background: var(--theme2);
  color: var(--white) !important;
}

.pagination-build .first a:hover,
.pagination-build .last a:hover {
  background: var(--white);
  border-color: var(--theme2) !important;
  color: var(--theme2) !important;
}

.pagination-build>li a:hover {
  color: var(--white) !important;
}

/* pagination end */
@media only screen and (max-width: 1200px) {
  .header .header-menu .menu-lv1>li>a {
    padding: 15px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .mb-on7 {
    display: block;
  }

  .mb-off7 {
    display: none;
  }

  .home-banner {
    height: 600px;
  }

  .home-banner .banner_home_slide img {
    height: 600px;
  }

  .section-1 {
    padding: 50px 0;
  }

  .home-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .section-1 .section-1-box .description {
    font-size: 20px;
  }

  .section-1 .section1_slide {
    margin-left: -120px;
    width: calc(100% + 120px);
  }

  .section-2 .container-fluid>.home-title {
    text-align: left;
    margin-bottom: 30px;
  }

  .section-2 .s2-list li:not(:last-child) {
    margin-right: 2px;
  }

  .section-2 .s2-list .s2-right-btn {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .section-2 .s2-list .s2-right-btn svg {
    transform: translateY(2px) scale(0.8);
    margin-right: 0px;
  }

  .section-2 .s2-list-content ul li p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .section-2 .s2-right {
    margin-bottom: 20px;
  }

  .section-2 {
    padding: 50px 0 25px;
  }

  .section-3 {
    padding: 25px 0 50px;
  }

  .section-3 .s3-box .s3-left {
    padding: 60px 30px;
  }

  .section-3 .s3-box .s3-right {
    height: unset;
    padding: 0 30px 60px;
  }

  .section-3 .s3-box .s3-right-pos {
    top: unset;
    transform: translate(0);
  }

  .section-3 .s3-box2 .s32-box {
    margin-bottom: 20px;
  }

  .section-4 {
    padding: 50px 15px;
  }

  .section-4 .s4-left {
    margin-bottom: 30px;
  }

  .section-5 .s5-left .title {
    font-size: 28px;
  }

  .section-5 .s5-left {
    margin-bottom: 20px;
  }

  .section-5 .s5-right li span {
    font-size: 28px;
  }

  .section-5 .s5-right li p {
    font-size: 14px;
  }

  .section-5 .s5-box2 {
    padding: 20px 0 0;
  }

  .section-6 .home-title {
    text-align: left;
  }

  .section-6 .des-title {
    text-align: left;
    font-size: 18px;
  }

  .section-6 .s6-box-all {
    margin-bottom: 20px;
  }

  .section-6 .s6-box4 {
    padding: 20px 0;
  }

  .faq .faq-box a {
    font-size: 16px;
  }

  .faq .faq-box {
    padding: 0 30px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer .footer-logo img {
    margin-bottom: 24px;
  }

  .footer .footer-info {
    padding-bottom: 40px;
  }

  .footer .footer-menu-item {
    margin-bottom: 20px;
  }

  .footer .footer-menu .title {
    font-size: 18px;
  }

  .footer .footer-menu ul li a {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .footer .copyright {
    padding: 20px 0 0;
  }

  .header-btn a {
    margin-bottom: 15px;
  }

  .section-1 .section-1-box .year {
    font-size: 60px;
  }

  .page_banner_slide .owl-dots {
    bottom: 20px;
  }

  .vindex .vindex-1 .title {
    margin: 0;
    padding-top: 5px;
  }

  .vindex .vindex-box {
    height: 55px;
    margin-bottom: 15px;
  }

  .dk-chungkhoan {
    padding: 30px 0 15px;
  }

  .dk-chungkhoan .dk-ck-left .link {
    width: 100%;
    text-align: center;
  }

  .giatri-cotloi {
    padding: 15px 0 30px;
  }

  .giatri-cotloi .left .title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
  }

  .giatri-cotloi .gt-cotloi-box {
    margin-bottom: 20px;
  }

  .co-hoi .left .title {
    font-size: 20px;
    text-align: center;
    margin: 0 0 15px;
  }

  .co-hoi .right .link {
    width: 100%;
    text-align: center;
  }

  .page-newslist {
    padding: 30px 0;
  }

  .featured-news {
    padding: 30px 0;
  }

  .featured-news .side-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .featured-news .side-des {
    margin-bottom: 25px;
  }

  .featured-news .head .title {
    font-size: 16px;
  }

  .f-news-item .thumb {
    width: 100%;
    margin: 0 0 10px;
  }

  .f-news-item .text {
    width: 100%;
  }

  .page-doitac {
    padding: 30px 0;
  }

  .page-doitac .side-title {
    font-size: 24px;
  }

  .page-contact .box-page-contact {
    padding: 20px;
  }

  .page-contact .box-page-contact .title {
    font-size: 20px;
    margin: 0 0 15px;
  }

  .page-contact .form-item {
    padding: 10px 0;
  }

  .page-contact .form-item span {
    display: block;
    margin-bottom: 10px;
  }

  .page-contact .right {
    display: none;
  }

  .p-list-box .right {
    margin-top: 30px;
  }

  .footer .footer2-right {
    float: unset;
  }

  .news-list-box .left {
    padding: 0;
    border: none;
  }

  .contact-box .title {
    font-size: 26px;
    margin: 0 0 15px;
  }

  .contact-box .left {
    margin-bottom: 30px;
  }

  .contact-box {
    padding: 30px 0;
  }

  .section-5 {
    padding: 50px 0;
  }
}