@charset "UTF-8";
:root {
  --primary-color: #71bf43;
  --secondary-color: #007345;
  --primary-color2: #f36f21;
  --primary-color3: #00a0e3;
  --animate-duration: 1.5s;
  --animate-delay: 0.5s;
}

html,
body {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #000000;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

p {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
  text-align: justify;
}

img {
  display: block;
  max-width: 100%;
  margin-bottom: 20px;
}

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

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ol {
  padding-left: 1rem;
}

ul li {
  list-style: none;
}

.no-scroll {
  overflow-x: hidden;
  overflow-y: hidden;
  overflow: hidden;
}

.main {
  overflow: hidden;
}

.clear {
  clear: both;
}

a:not([href]) {
  pointer-events: none;
}

.section-title {
  margin-bottom: 30px;
}

.section-title h3 {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  background-color: #007345;
  display: inline-block;
  padding: 10px;
}

.section-title p {
  color: #007345;
  font-size: 18px;
}

.section-title.white h3 {
  color: white;
}

.section-subtitle {
  color: #71bf43;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 22px;
}

.section-subtitle.primary {
  color: #71bf43;
}

.section-subtitle.white {
  color: white;
}

@media (max-width: 1100px) {
  .section-title h3 {
    font-size: 20px;
  }
  .section-subtitle {
    font-size: 18px;
  }
}

.text-primary {
  color: #71bf43 !important;
}

.text-secondary {
  color: #007345 !important;
}

.bg-gray {
  background-color: #cccccc;
}

.bg-white {
  background-color: #cccccc;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.spad {
  padding: 40px 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #aaa;
}

body,
html {
  scrollbar-color: inherit;
  scrollbar-width: thin;
}

@media screen and (min-width: 1100px) {
  .bg-fixed {
    background-attachment: fixed;
  }
}

.bg-download {
  background: #f1f1f1;
}

.no-banner {
  padding-top: 120px;
}

.header, .footer, .main, .go-top, .footer-inner {
  visibility: hidden;
}

.main, .footer, .footer-inner, .go-top, .header {
  animation: Start 1s steps(1, end) 0s 1 normal both;
}

@media screen and (max-width: 1100px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.text-justify {
  text-align: justify;
}

.f-right {
  float: right;
  margin-left: 30px;
  margin-bottom: 10px;
}

strong {
  font-weight: bold;
}

.norwrap {
  white-space: nowrap;
}

.btn-effect {
  text-align: center;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 10px 25px;
  text-transform: uppercase;
}

.btn-effect:before {
  z-index: -1;
  transition: 0.5s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
}

.btn-effect:hover:before {
  transform: translateX(0);
}

.white-btn {
  color: white;
  border: 1px solid currentColor;
}

.white-btn:hover {
  color: white;
}

.white-btn:before {
  background-color: #71bf43;
}

.primary-btn {
  color: #71bf43;
  border: 1px solid #71bf43;
  background: transparent;
}

.primary-btn:before {
  background-color: #71bf43;
}

.primary-btn:hover {
  color: white;
}

.readmore-btn {
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s all ease-in-out;
  margin-bottom: 20px;
  color: #71bf43;
  font-weight: bold;
}

.readmore-btn:after {
  content: '\f101';
  position: absolute;
  right: -15px;
  top: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.view-video {
  color: #007345;
  font-weight: bold;
  margin-bottom: 20px;
}

.view-video:hover {
  color: #71bf43;
}

.nav,
.nav li,
.overlay-menu,
.search-form,
svg:not(:root) {
  overflow: hidden;
}

.header::before,
.navigation::before {
  content: " ";
}

.header,
.header::before {
  top: 0;
  left: 0;
  width: 100%;
}

.header {
  position: fixed;
  height: auto;
  z-index: 999;
}

.header::before,
.logo,
.right-header {
  position: absolute;
}

.header::before {
  height: 80px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  z-index: 1;
}

.logo {
  left: 30px;
  top: 3px;
  width: 300px;
  height: 70px;
  z-index: 99;
}

.logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  z-index: 1;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
}

.right-header {
  width: auto;
  height: auto;
  right: 89px;
  top: 8px;
  text-align: right;
  z-index: 9;
}

.navigation {
  width: 100%;
  bottom: 0;
  height: 0;
  position: fixed;
  text-align: center;
  right: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.navigation .nav,
.navigation::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.navigation::before {
  background-image: url(../img/common/header/bg-menu.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.navigation .nav {
  display: block;
  padding: 14vh 0 0;
  z-index: 10;
}

.navigation .nav li,
.navigation .nav li a {
  text-align: right;
  position: relative;
  display: block;
}

.navigation .nav li {
  float: none;
  width: 100%;
  margin: 1px 0;
}

.navigation.show .nav li {
  animation-name: goRight;
  animation-duration: 0.7s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.navigation .nav li a {
  display: inline-block;
  font-size: 2.7vh;
  line-height: 1.4;
  padding: 2vh 40px 2vh 20px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

.navigation .nav li.active-color a,
.navigation .nav li.current a {
  color: #007345;
}

.bg-menu {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  background-color: #fff;
  z-index: 5;
}

.language li a,
.search-but {
  color: #666666;
  border-radius: 50%;
}

.navigation.show {
  height: 100%;
}

.navigation:not(.show) .nav li {
  animation-name: fadeOut;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.overlay-menu {
  height: 100%;
  width: 0;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 35, 113, 0.4);
  -ms-touch-action: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  transition: width 0.5s ease-in-out;
  z-index: 99;
}

.overlay-menu.show {
  width: 100%;
}

.nav-click {
  position: fixed;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: block;
  top: 20px;
  right: 40px;
  opacity: 0;
  z-index: 999;
}

.nav-click span,
.nav-click::after,
.nav-click::before {
  content: "";
  background-color: #666666;
  position: absolute;
  height: 4px;
  transition: all 150ms ease-in-out;
  pointer-events: none;
}

.nav-click::after,
.nav-click::before {
  top: 8px;
  right: 0;
  width: 35px;
  transform-origin: 50% 50%;
}

.nav-click::after {
  top: 28px;
  width: 35px;
}

.nav-click span {
  top: 18px;
  right: 0;
  width: 35px;
}

.logo-load,
.navigation .nav li,
.nav-click.active span {
  opacity: 0;
}

.logo-dcm {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.logo-dcm img {
  width: 90px;
  margin-bottom: 0;
}

.language,
.language li {
  position: relative;
  display: inline-block;
}

.language {
  transition: all 0.3s ease-in-out;
}

.nav-click.active::before {
  width: 70%;
  left: 17%;
  transform: rotate3d(0, 0, 1, 45deg);
  top: 43%;
}

.nav-click.active::after {
  width: 70%;
  left: 15%;
  transform: rotate3d(0, 0, 1, -45deg);
  top: 41%;
}

.nav-click.active::after,
.nav-click.active::before {
  background-color: #fff !important;
}

.language {
  margin: 0 5px;
  vertical-align: middle;
  z-index: 12;
}

.language li {
  margin: 0;
}

.language li a {
  display: block;
  font-size: 14px;
  line-height: 38px;
  font-weight: 600;
  text-align: center;
  width: 38px;
  height: 38px;
}

.language li.active {
  display: none;
}

.header.hide::before {
  transition: 0.3s all;
  opacity: 1;
}

.navigation::after,
.navigation::before,
.navigation > span {
  right: -100%;
}

.navigation.show::before {
  animation: gonav;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}

.navigation.show::after {
  animation: gonav;
  animation-duration: 0.3s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}

.navigation.show > span {
  animation: gonav;
  animation-duration: 0.3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 1100px) {
  body.show .nav-click {
    animation: goRight;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
  }
  .header {
    top: -100%;
    transition: top 1s ease-in-out;
  }
  .header.show {
    top: 0;
  }
}

@media screen and (min-width: 1100px) {
  .language li a:hover,
  .link-home a:hover {
    color: #f36f21;
  }
  .link-home a:hover {
    background-color: #f36f21;
  }
  .language li a,
  .link-home a,
  .navigation .nav li a,
  .nav-click span,
  .nav-click::after,
  .nav-click::before {
    transition: all 0.3s ease-in-out;
  }
  .link-home a:hover {
    color: #fff;
  }
  .navigation .nav li a:hover {
    color: #007345;
  }
  .nav-click:hover span,
  .nav-click:hover::after,
  .nav-click:hover::before {
    background-color: #007345 !important;
  }
}

@media screen and (max-width: 1100px) {
  .header {
    top: 0;
    opacity: 1;
    height: 60px;
  }
  .header:before {
    z-index: 990;
    height: 100%;
  }
  .logo {
    width: 32px;
    height: 50px;
    left: 20px;
    top: 5px;
    z-index: 990;
  }
  .name {
    display: none;
  }
  .right-header {
    top: 5px;
    left: 20px;
    z-index: 990;
    text-align: left;
  }
  .logo-dcm img {
    width: 70px;
  }
  .nav-click {
    top: 10px;
    right: 20px;
    opacity: 1;
  }
  .right-header .link-home {
    display: none;
  }
  .navigation {
    width: 320px;
    z-index: 99;
    transform: translateX(100%);
    height: 100%;
  }
  .navigation.show {
    transform: translateX(0);
  }
  .navigation:before {
    border-width: 4px;
  }
  .navigation .nav {
    padding: 70px 0 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .navigation .nav li a {
    display: inline-block;
    font-size: 20px;
    padding: 2vh 20px 2vh 20px;
  }
  .overlay-menu {
    z-index: 98;
  }
  .nav-click.active::after,
  .nav-click.active::before {
    background-color: #007345 !important;
  }
  .language li a {
    width: 50px;
    height: 50px;
    line-height: 48px;
  }
  .logo {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .right-header {
    top: 5px;
    right: 50px;
    z-index: 990;
  }
}

/* FOOTER */
.footer {
  position: relative;
  display: block;
  height: auto;
  width: 100%;
  color: #fff;
  background-color: #fff;
  overflow: hidden;
}

.footer a {
  color: #fff;
}

.left-footer {
  width: 40%;
  float: left;
  position: relative;
  display: block;
  height: auto;
  padding: 40px 10%;
  text-align: center;
}

.right-footer {
  width: 60%;
  float: left;
  position: relative;
  display: block;
  height: auto;
  padding: 50px 7%;
  background-image: url(../img/common/footer/bg-footer.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  backface-visibility: hidden;
}

.box-companyinfo {
  width: 100%;
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.box-companyinfo h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.company-info {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
}

.company-info li,
.company-info a {
  font-weight: 300;
  line-height: 1.6;
}

.company-info li {
  padding-left: 35px;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.company-info li::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: -2px;
  top: -2px;
  left: -2px;
}

.company-info .bt-location::before {
  background: url(../img/location.svg) no-repeat left center/contain;
}

.company-info .bt-phone::before {
  background: url(../img/phone.svg) no-repeat left center/contain;
}

.company-info .bt-email::before {
  background: url(../img/email.svg) no-repeat left center/contain;
}

.company-info .bt-tax::before {
  background: url(../img/tax.svg) no-repeat left center/contain;
}

.company-info p {
  display: inline-block;
  max-width: 100%;
  position: relative;
  font-weight: 300;
  vertical-align: middle;
  text-align: center;
  margin: 0 -3px;
}

.logo-footer {
  background: url(../img/loading-logo.gif) no-repeat left center/contain;
  width: 250px;
  height: 250px;
  position: relative;
  display: inline-block;
}

.footer .social {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding-top: 10px;
  margin-top: 10px;
}

.copyright {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #007345;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.6;
  padding: 20px 0px;
}

.copyright a {
  color: #fff;
}

.social {
  float: left;
  height: auto;
  text-align: center;
}

.social li {
  position: relative;
  width: 30px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px;
}

.social li a {
  width: 50px;
  height: 50px;
  opacity: 0.7;
  display: block;
  text-indent: -9999px;
  margin-left: -16px;
}

.facebook {
  background: url(../img/facebook.svg) no-repeat center center/contain;
}

.youtube {
  background: url(../img/youtube.svg) no-repeat center center/contain;
}

@media screen and (min-width: 1100px) {
  .left-footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #efefef;
    z-index: 1;
  }
  .right-footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #efefef;
    z-index: 1;
  }
  .social li a {
    transition: all 0.3s ease-in-out;
  }
  .social li a:hover {
    opacity: 1;
    transform: scale(1.1, 1.1);
  }
  .left-footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #efefef;
    z-index: 1;
  }
  .right-footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #efefef;
    z-index: 1;
  }
  .on-show .left-footer::after {
    animation-name: moveLeft;
    animation-duration: 0.8s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
  }
  .on-show .right-footer::after {
    animation-name: moveRight;
    animation-duration: 0.8s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
  }
}

@media screen and (max-width: 1100px) {
  /* FOOTER */
  .left-footer {
    width: 40%;
    padding: 30px;
    text-align: center;
  }
  .right-footer {
    width: 60%;
    padding: 30px;
  }
  .box-companyinfo h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .company-info {
    position: relative;
    width: 100%;
    height: auto;
    font-size: 16px;
  }
  .company-info li {
    padding-left: 35px;
    margin: 0 0 10px 0;
  }
  .company-info li::before {
    width: 25px;
    height: 25px;
  }
  .logo-footer {
    width: 180px;
    height: 200px;
  }
  .copyright a {
    color: #fff;
  }
}

@media screen and (max-width: 540px) {
  .left-footer {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
  .right-footer {
    width: 100%;
    padding: 20px;
    text-align: center;
    padding-top: 30px;
  }
  .box-companyinfo h3 {
    font-size: 17px;
  }
  .company-info li {
    display: inline-block;
    width: auto;
    padding-left: 29px;
    margin: 8px 20px;
  }
  .company-info li.bt-email {
    width: 55%;
  }
  .company-info li:first-child {
    margin: 0px 0px 8px 0px;
  }
  .logo-footer {
    width: 100px;
    height: 100px;
  }
  .footer .social {
    float: none;
  }
  .copyright {
    font-size: 11px;
  }
  .copyright a {
    display: block;
  }
}

.home-page {
  width: 100%;
  height: 100vh;
  background-image: radial-gradient(circle, #077546, #002E14, #000000);
  position: relative;
}

.content-home {
  width: 45%;
  position: absolute;
  left: 48.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo-home {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
}

.slogan {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  opacity: 0;
  animation: slogan 4s linear infinite;
  width: 399px;
  height: 44px;
  background-image: url(../img/homepage/bucpha.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-home {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
}

@keyframes slogan {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .content-home {
    width: 90%;
  }
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

.section-banner {
  position: relative;
  display: block;
}

.particles canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.title-page {
  position: absolute;
  left: 0;
  bottom: 10%;
  color: white;
  width: 100%;
  z-index: 100;
  text-align: center;
  padding: 20px 0px;
}

.title-page h1 {
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  z-index: 1;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.title-page img {
  margin: auto;
}

@keyframes title-chapter {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(1.2);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
    color: #f36f21;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    color: #f36f21;
  }
}

@keyframes img-chapter {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.5);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1.1);
  }
}

@media (min-width: 1100px) {
  .title-page h1 {
    opacity: 0;
  }
  .show .title-page h1 {
    animation: title-chapter 4s 2s ease-in infinite;
  }
  .title-page img {
    opacity: 0;
  }
  .show .title-page img {
    animation: img-chapter 4s 2s ease-in infinite;
  }
}

@media (max-width: 1110px) {
  .title-page h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .title-page {
    padding: 10px;
    bottom: 0;
    background-color: rgba(141, 198, 62, 0.1);
  }
  .title-page h1 {
    font-size: 20px;
  }
  .title-page img {
    width: 70%;
  }
}

.zoom-hover {
  background: #b0b0b0 url(../img/common/zoom-in.svg) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  bottom: 15px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 20;
}

.zoom-hover::before {
  content: '';
  width: 40px;
  height: 40px;
  left: -5px;
  top: -5px;
  position: absolute;
  border: 7px solid #b0b0b0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.zoom-hover:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  background-color: #007345;
}

.zoom-hover:hover::before {
  border-color: rgba(0, 0, 0, 0.2);
}

.overlay-dark {
  background-color: rgba(0, 51, 160, 0.8);
  height: 0;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  overflow: hidden;
  -ms-touch-action: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  transition: height .8s ease-in-out;
  z-index: 1500;
}

.wheel,
.wheel-b {
  pointer-events: none;
}

.wheel,
.wheel-b {
  border: 1px solid white;
  width: 30px;
  transition: opacity .3s ease-in-out;
  height: 54px;
  position: fixed;
  left: 45px;
  bottom: 40px;
  border-radius: 50px;
  opacity: 0;
  z-index: 20;
}

.wheel-b {
  border: 2px solid white;
}

.wheel.transparent {
  background-color: transparent;
}

.wheel.inner {
  bottom: 195px;
}

.wheel.show {
  opacity: .8;
}

.wheel-b::after,
.wheel.show::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  width: 5px;
  height: 10px;
  border-radius: 10px;
  animation: trackBallSlide 3s linear infinite;
}

.wheel-b::before,
.wheel::before {
  content: ' ';
  width: 1px;
  height: 35px;
  background-color: #fff;
  top: -47px;
  left: 50%;
  position: absolute;
}

.wheel-b {
  left: 50%;
  top: 50%;
  position: absolute;
}

.wheel-b::before {
  width: 2px;
}

.wheel-b {
  margin-top: 150px;
  opacity: 1;
}

@media screen and (max-width: 1300px) {
  .wheel {
    left: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .wheel-b, .wheel {
    display: none;
  }
}

.go-top {
  position: fixed;
  color: white;
  right: 20px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  background: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  display: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  z-index: 60;
  animation: Start 1s steps(1, end) 0s 1 normal both;
}

.go-top svg {
  width: 80%;
  height: 80%;
  margin: 10%;
}

.go-top.show {
  opacity: 1;
  display: block;
}

@media screen and (min-width: 1100px) {
  .go-top:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media screen and (max-width: 1100px) {
  .go-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    border: none;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.banner-inner {
  height: calc(100vh - 60px);
  overflow: hidden;
  position: relative;
}

.banner {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: radial-gradient(circle, #077546, #002E14 80%, #000000);
}

.content-banner {
  width: 40%;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 50, 160, 0.5) 0, rgba(178, 149, 121, 0.5) 50%);
  z-index: 1;
  mix-blend-mode: overlay;
}

@media screen and (min-width: 1100px) {
  .show .banner {
    animation: scaleLarge;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
  }
}

@media screen and (max-width: 1100px) {
  .banner-inner {
    height: calc(900/2000 * 100vw);
    min-height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .content-banner {
    width: 80%;
  }
}

@media (min-width: 1100px) {
  .on-show.title::before {
    animation: perspective;
    animation-duration: 0.9s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
  }
  .on-show.title h1 {
    animation: fadeIn;
    animation-duration: 0.9s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
  }
}

/* Load item */
@media (min-width: 1100px) {
  .ani-item {
    opacity: 0;
  }
  .ani-item.on-show {
    animation: fadeInUp 1.5s forwards;
  }
}

.sub-nav {
  margin: 0;
  text-align: center;
  overflow: hidden;
  z-index: 10;
}

.sub-nav,
.sub-nav ul {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.sub-nav ul {
  white-space: nowrap;
  z-index: 2;
}

.sub-nav li {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0 -2px;
  vertical-align: top;
}

.sub-nav li a {
  display: block;
  padding: 12px 15px;
  text-transform: uppercase;
  vertical-align: top;
  margin: 0 1px;
  font-weight: 700;
  font-size: 14px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.outer-nav.second .sub-nav li.current a,
.sub-nav li.current a {
  background-color: #71bf43;
  color: #fff;
  pointer-events: none;
}

.outer-nav.second .sub-nav li.active a,
.sub-nav li.active a {
  background-color: #007345;
  color: #fff;
}

.outer-nav {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  text-align: center;
  background-color: #007345;
  z-index: 4;
}

.outer-nav:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.outer-nav:not(.second) {
  padding: 5px 10px;
}

.outer-nav:not(.second).hide {
  visibility: hidden;
}

.outer-nav.second {
  top: -100px;
  left: 0;
  position: fixed;
  opacity: 0;
  height: auto;
  padding: 1px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  padding: 5px 0px;
}

.outer-nav.second .sub-nav {
  margin: 0;
  overflow: visible;
}

.outer-nav.second .sub-nav li a {
  font-size: 12px;
  padding: 10px 15px;
  margin: 0;
}

.outer-nav.second.fixed {
  pointer-events: auto;
  opacity: 1;
  top: 80px;
  z-index: -1000;
}

.outer-nav:not(.second).fixed {
  pointer-events: none;
  opacity: 0;
}

.sub-nav::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

@media screen and (max-width: 1500px) {
  .outer-nav.second.fixed {
    top: 70px;
    background-color: rgba(150, 150, 150, 0.5);
  }
}

@media screen and (min-width: 1100px) {
  .sub-nav li:not(.current):hover a {
    background-color: #71bf43;
  }
}

@media screen and (max-width: 1100px) {
  .sub-nav {
    width: 100%;
    height: auto;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    float: none;
    text-align: center;
  }
  .sub-nav > * {
    transform: translateZ(0);
  }
  .sub-nav ul:after {
    display: none;
  }
  .sub-nav li a {
    padding: 10px 15px;
    font-size: 13px;
    color: #71bf43;
  }
  .outer-nav:not(.second) {
    margin: 0;
    background-color: #cacaca;
  }
  .outer-nav.second.fixed {
    top: 60px;
    background-color: #fff;
    padding: 0;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    z-index: -1000;
  }
  .outer-nav.second.fixed .sub-nav {
    width: 100%;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

#chartcol1,
#chartcol2,
#chartcol3,
#chartcol4,
#chartcol5,
#chartcol6,
#chartcol7,
#chartcol8,
#chartcol9,
#charttron1,
#charttron2,
#chartbreak1,
#chartbreak2 {
  height: 450px;
}

#chartdou1 {
  height: 500px;
}

.list-item li,
p.tag {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  text-align: justify;
}

.list-item li::before,
p.tag::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "\f111";
  font-size: 6px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: black;
}

p.tag {
  font-weight: 500;
}

.tag-img img {
  display: inline-block;
  margin-right: 10px;
}

.list-item-1 li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  text-align: justify;
}

.list-item-1 li::before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  width: 5px;
  height: 5px;
  background-color: black;
  transform: rotate(45deg);
}

.modal-body {
  position: relative;
}

.modal-body::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  pointer-events: none;
  border-radius: 10px;
  border: 5px solid #f3f5f9;
  z-index: -1;
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-body {
  padding: 50px 25px 25px;
}

.text-ani-item h3 > span > span {
  opacity: 0;
}

.text-ani-item h3 > span > span.move {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  pointer-events: none;
  background: white;
  transition: width .8s ease-in-out;
}

body.show .mask {
  width: 0;
}

.loadicon {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 14vw;
  height: 14vw;
  margin: -7vw 0 0 -7vw;
  z-index: 110000;
}

@media (max-width: 767px) {
  .loadicon {
    width: 30vw;
    height: 30vw;
    margin: -15vw 0 0 -15vw;
  }
}

.lead {
  position: relative;
  background: white;
  padding: 20px;
  background-clip: padding-box;
  /* !importanté */
  border: solid 2px transparent;
  /* !importanté */
  border-radius: 1em;
  margin-bottom: 20px;
  margin-top: 30px;
}

.lead:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(to right, #007345, #71bf43, #00a0e3);
}

.lead:after {
  content: '';
  position: absolute;
  left: -20px;
  top: -25px;
  width: 50px;
  height: 50px;
  background-image: url(../img/common/qoute.jpg);
  background-color: white;
  background-position: center;
  background-repeat: no-repeat;
}

.lead p {
  text-align: justify;
  color: #71bf43;
  font-weight: 500;
  font-size: 17px;
}

.link {
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  text-transform: uppercase;
  margin: 7px;
  display: inline-block;
  position: relative;
  transition: all .3s ease-out;
}

.link:hover {
  color: #2eaf07;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.05);
}

.link:before,
.link:after {
  content: '';
  width: 15px;
  height: 15px;
  border: 2px solid #2eaf07;
  border-top: none;
  border-left: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.3s ease 0s,transform 0.3s ease 0s,left 0.3s ease 0s,top 0.3s ease 0s,height 0.3s ease 0.3s,width 0.3s ease 0.3s;
}

.link:after {
  transform: rotate(180deg);
  transition: opacity 0.3s ease 0s,transform 0.3s ease 0s,right 0.3s ease 0s,bottom 0.3s ease 0s,height 0.3s ease 0.3s,width 0.3s ease 0.3s;
}

.link:hover:before,
.link:hover:after {
  height: 100%;
  width: 100%;
  visibility: visible;
  opacity: 1;
  transform: rotate(180deg);
  left: -7px;
  top: -7px;
}

.link:hover:after {
  transform: rotate(0);
  top: auto;
  left: auto;
  right: -7px;
  bottom: -7px;
}

.current.link {
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .link {
    margin-bottom: 30px;
  }
}

.download {
  display: inline-block;
  background: white;
  padding: 8px 20px;
  margin-bottom: 30px;
  margin-right: auto;
  margin-left: auto;
  transition: 0.3s all;
  color: black;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.download img {
  display: inline;
  margin-left: 15px;
  margin-bottom: 0;
}

.download:hover {
  color: #71bf43;
  border-color: #71bf43;
}

.download:hover {
  background-color: #007345;
  color: white;
}

@media (max-width: 1110px) {
  .download img {
    width: 30px;
  }
}

table {
  margin-bottom: 20px;
}

.bg-gradient {
  background-image: linear-gradient(to right, #71bf43, #007345);
}

.bg-primary {
  background-color: #71bf43 !important;
}

.bg-gray {
  background-color: #ccc;
}

.bg-press {
  background: rgba(0, 174, 77, 0.1);
}

.italic {
  font-style: italic;
}

.text-white {
  color: white;
}

.text-primary {
  color: #71bf43;
}

.bold {
  font-weight: bold;
}

.table-row {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.table-row td, .table-row th {
  padding: 12px 15px;
  border: none;
  border-bottom: 1px solid #dddddd;
}

.table-row thead, .table-row tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.table-scroll thead {
  width: calc(100% - 8px) !important;
}

.table-scroll tbody {
  display: block;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.table-custom td, .table-custom th {
  padding: 12px 15px;
  border-bottom: 1px solid #71bf43;
  font-size: 16px;
}

.table-custom thead, .table-custom tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media (max-width: 767px) {
  .bg-press {
    background: transparent;
  }
  .bg-gray {
    background: transparent;
  }
  .table-custom thead {
    display: none;
  }
  .table-custom, .table-custom tbody, .table-custom tr, .table-custom td {
    display: block;
    width: 100%;
  }
  .table-custom tr {
    margin-bottom: 15px;
  }
  .table-custom td {
    position: relative;
    text-align: right;
    min-height: 60px;
    padding-left: 50%;
  }
  .table-custom td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
  .table-custom tr:nth-child(even) {
    background-color: #ecedee;
  }
}

.tab {
  padding-bottom: 60px;
}

.tab li {
  border: 1px solid #ddd;
  display: inline-block;
  margin: 0 2px 2px 0;
}

.tab li a {
  background: #F9F9F9;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  color: #868686;
  padding: 16px 22px;
  display: inline-block;
  text-transform: uppercase;
}

.tab li a img {
  margin-bottom: 0;
}

.tab li a:hover {
  background: #F9F9F9;
  border-radius: 0;
}

.tab li > a.active,
.tab .nav-tabs > li > a.active:focus,
.tab .nav-tabs > li > a.active:hover {
  background-color: #71bf43;
  color: white;
}

.tab .tab-content {
  margin-top: 0;
  border: 1px solid #ddd;
  border-top: 0px solid transparent;
  padding: 12px;
}

@media (max-width: 554px) {
  .tab li {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  .tab li > a {
    width: 100%;
  }
}

.vertical-tab {
  font-family: 'Lato', sans-serif;
  display: table;
}

.vertical-tab .nav-tabs {
  display: table-cell;
  width: 28%;
  min-width: 28%;
  vertical-align: top;
  border: none;
  border-right: 5px solid #404040;
}

.vertical-tab .nav-tabs li {
  float: none;
  vertical-align: top;
}

.vertical-tab .nav-tabs li a {
  color: #404040;
  background: transparent;
  font-size: 18px;
  padding: 10px 15px;
  margin: 0 15px 10px 0;
  border-radius: 0;
  border: none;
  position: relative;
  transition: all 0.5s ease 0s;
}

.vertical-tab .nav-tabs li a:hover,
.vertical-tab .nav-tabs li a.active,
.vertical-tab .nav-tabs li a.active:hover {
  color: #71bf43;
  background-color: transparent;
  border: none;
}

.vertical-tab .nav-tabs li a:before,
.vertical-tab .nav-tabs li a:after {
  content: '';
  height: 100%;
  width: 0;
  border: 2px solid #404040;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease 0s;
}

.vertical-tab .nav-tabs li a:after {
  background-color: #404040;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border-color: transparent;
  transform: translateY(-50%);
  top: 50%;
  left: auto;
  right: -23px;
}

.vertical-tab .nav-tabs li a:hover:before,
.vertical-tab .nav-tabs li a.active:before {
  width: 100%;
  opacity: 1;
}

.vertical-tab .nav-tabs li a:hover:after,
.vertical-tab .nav-tabs li a.active:after {
  background-color: #71bf43;
  border: 2px solid #fff;
  box-shadow: 0 0 5px #000;
  opacity: 1;
  transform: translateY(-50%) scale(2);
}

.vertical-tab .tab-content {
  color: #404040;
  background-color: rgba(0, 0, 0, 0.07);
  font-size: 15px;
  text-align: justify;
  letter-spacing: 1px;
  line-height: 24px;
  padding: 15px 25px;
  border-radius: 0 20px 20px 0;
  display: table-cell;
  position: relative;
}

.vertical-tab .tab-content h3 {
  font-weight: 600;
  margin: 0 0 5px 0;
}

@media only screen and (max-width: 479px) {
  .vertical-tab .nav-tabs {
    width: 100%;
    display: block;
    border: none;
  }
  .vertical-tab .nav-tabs li a {
    padding: 7px 20px;
    margin: 0 0 10px 0;
  }
  .vertical-tab .nav-tabs li a:after {
    right: 10px;
  }
  .vertical-tab .tab-content {
    padding: 20px 15px 10px;
    border-radius: 0;
    display: block;
  }
  .vertical-tab .tab-content h3 {
    font-size: 18px;
  }
}

.accordionbs4 {
  margin-bottom: 30px;
}

.accordionbs4 .card {
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 6px;
}

.accordionbs4 .card-header {
  padding: 0;
}

.accordionbs4 .card-header a {
  display: block;
  padding: 15px 20px;
  padding-right: 30px;
  background: #fff;
  font-size: 15px;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  border: 1px solid #eaeaea;
  border-left: 3px solid #007345;
  position: relative;
  transition: all 0.3s ease 0s;
}

.accordionbs4 .card-header a.collapsed {
  color: black;
}

.accordionbs4 .card-header a:not(.collapsed) {
  color: #007345;
}

.accordionbs4 .card-header a:before,
.accordionbs4 .card-header a.collapsed:before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: black;
  line-height: 24px;
  position: absolute;
  top: 15px;
  right: 25px;
}

.accordionbs4 .card-header a.collapsed:before {
  content: "\f106";
}

.accordionbs4 .card-header a:hover,
.accordionbs4 .card-header a.collapsed:hover,
.accordionbs4 .card-header a:before,
.accordionbs4 .card-header a:hover:before {
  color: #007345;
}

.accordionbs4 .card-body {
  text-align: justify;
  padding: 15px 27px;
  color: black;
  line-height: 23px;
  border: 1px solid #eaeaea;
  border-top: none;
  border-left: 3px solid #eaeaea;
}

.accordionbs4 .card-body img.f-right {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}

.accordionbs4 .card-body img.f-left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.item-cou {
  width: 100%;
  position: relative;
  background: white;
  padding: 60px 20px 20px;
  background-clip: padding-box;
  border: solid 2px transparent;
  border-radius: 1em;
  margin-top: 15px;
  margin-bottom: 20px;
}

.item-cou:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(to right, #007345, #71bf43, #00a0e3);
}

.content-cou {
  text-align: right;
  padding-right: 30px;
}

.content-cou h3 {
  color: #007345;
  font-size: 60px;
  text-align: right;
}

.content-cou p {
  color: #007345;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right !important;
}

.title-cou {
  width: 72%;
  padding: 10px;
  background-color: white;
  position: absolute;
  top: -15px;
  left: 50px;
}

.title-cou h5 {
  color: #007345;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  margin-bottom: 0;
  background: white;
}

.img-cou {
  background-color: white;
  padding: 10px;
  position: absolute;
  left: -30px;
  top: -18px;
  vertical-align: top;
  display: inline-block;
  z-index: 1;
}

.img-cou img {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .img-cou {
    padding: 5px;
    left: -2px;
    top: -22px;
  }
  .img-cou img {
    width: 70px;
  }
  .title-cou {
    left: 70px;
  }
  .content-cou {
    padding-right: 0;
  }
  .content-cou h3 {
    font-size: 50px;
  }
}

.collapse {
  display: block !important;
  height: 0px;
  overflow: hidden;
}

.collapse.show {
  height: auto !important;
}

@media (min-width: 1100px) {
  .text-slick h5, .text-slick p, .text-slick button, .text-slick .list-item {
    opacity: 0;
  }
  .show-animate .text-slick h5 {
    animation: fadeInUpBTQ 1s ease 0s forwards;
  }
  .show-animate .text-slick p {
    animation: fadeInUpBTQ 1s ease .1s forwards;
  }
  .show-animate .text-slick button {
    animation: fadeInUpBTQ 1s ease .1s forwards;
  }
  .show-animate .text-slick .list-item {
    animation: fadeInUpBTQ 1s ease .1s forwards;
  }
}

@media (max-width: 991.98px) {
  .img-slick {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .text-slick {
    width: 100% !important;
    padding: 0 15px !important;
  }
}

.item-vission {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.img-vission {
  width: 15%;
}

.text-vission {
  width: 85%;
}

.text-vission h5 {
  text-transform: uppercase;
}

.text-vission p {
  text-align: justify;
}

.bg-vission {
  margin-top: -100px;
  padding-bottom: 100px;
}

.vission-animate {
  width: 1088px;
  margin: auto;
  position: relative;
}

@media (max-width: 1100px) {
  .vission-animate {
    width: 80%;
  }
  .tay-trai {
    width: 40%;
  }
  .tay-phai {
    width: 33%;
  }
  .logo-vs {
    width: 7%;
  }
}

@media (max-width: 767px) {
  .img-vission {
    width: 100%;
  }
  .img-vission img {
    margin: 0 auto 10px;
  }
  .text-vission {
    width: 100%;
  }
  .text-vission h5 {
    text-align: center;
  }
}

.logo-vs {
  position: absolute;
  left: 49.3%;
  top: 38.5%;
  transform: translate(-50%, -50%);
  animation: logo-vs 1s linear infinite alternate;
}

.tay-trai {
  position: absolute;
  left: 3%;
  top: 46%;
  z-index: 1;
  animation: tay-trai 3s ease-in-out infinite alternate forwards;
}

.tay-phai {
  position: absolute;
  right: -20%;
  top: 22%;
  z-index: 1;
  animation: tay-phai 3s ease-in-out infinite alternate forwards;
}

.bg-vs {
  animation: bg-vs 3s ease-in-out infinite alternate forwards;
}

@keyframes tay-trai {
  0% {
    transform: translateY(10px);
  }
  25% {
    transform: translateX(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes tay-phai {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateX(10px);
  }
  50% {
    transform: translateY(10px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes logo-vs {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes bg-vs {
  0% {
    opacity: 1;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

.item-about .name-about {
  color: #71bf43;
  border-top: 2px solid #007345;
  border-bottom: 2px solid #007345;
  padding: 10px 0px;
  font-size: 20px;
}

.item-about strong {
  font-weight: bold;
}

.item-about p {
  border-bottom: 1px solid #babfc1;
}

.item-about a {
  color: black;
}

.item-about h6 {
  font-weight: bold;
}

.main-timeline {
  font-family: 'Roboto', sans-serif;
}

.main-timeline:before {
  content: '';
  width: 3px;
  height: 100%;
  border-left: 3px dashed #71bf43;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
}

.main-timeline:after {
  content: '';
  display: block;
  clear: both;
}

.main-timeline .timeline {
  width: 50%;
  padding: 0 65px 0 0;
  margin: 0 5px 0 0;
  float: left;
  position: relative;
}

.main-timeline .timeline:before {
  content: '';
  background-color: #71bf43;
  height: 10px;
  width: 10px;
  transform: translateY(-50%);
  position: absolute;
  left: -5px;
  top: 50%;
  border-radius: 50%;
}

.img-timeline {
  position: absolute;
  right: -24%;
  top: 50%;
  transform: translateY(-50%);
}

.main-timeline .timeline:nth-child(even) .img-timeline {
  right: auto;
  left: -24%;
}

.main-timeline .timeline:nth-child(odd):before {
  left: auto;
  right: -5px;
}

.main-timeline .timeline-content {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  min-height: 155px;
  padding: 25px 75px 25px 25px;
  border-right-width: 0;
  display: block;
  position: relative;
  z-index: 1;
  text-align: right;
}

.main-timeline .timeline-content:hover {
  text-decoration: none;
}

.main-timeline .timeline-content:before,
.main-timeline .timeline-content:after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: 10px;
  top: 10px;
  right: 60px;
  z-index: -1;
}

.main-timeline .timeline-content:after {
  height: 80px;
  width: 65px;
  transform: translateY(-50%);
  right: -65px;
  left: auto;
  top: 50%;
  bottom: auto;
}

.main-timeline .timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 500;
  transform: translateY(-54%);
  position: absolute;
  top: 50%;
  right: -52px;
  color: #71bf43;
}

.main-timeline .title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 5px;
  color: #71bf43;
}

.main-timeline .description {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 0;
}

.main-timeline .timeline:nth-child(even) {
  padding: 0 0 0 65px;
  margin: 0 0 0 5px;
  float: right;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
  padding: 25px 25px 25px 75px;
  border-right-width: 10px;
  border-left-width: 0;
  text-align: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
  right: 10px;
  left: 60px;
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
  right: auto;
  left: -65px;
}

.main-timeline .timeline:nth-child(even) .timeline-year {
  right: auto;
  left: -54px;
}

@media screen and (max-width: 990px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: calc(50% + 35px);
  }
  .main-timeline:before {
    display: none;
  }
  .main-timeline .timeline:before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    width: 100%;
    margin: 0 0 30px;
  }
}

@media screen and (max-width: 576px) {
  .main-timeline .timeline,
  .main-timeline .timeline:nth-child(even) {
    padding: 40px 0 0;
  }
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content {
    text-align: center;
    padding: 55px 25px 25px;
    border-right-width: 10px;
    border-left-width: 10px;
    border-top-width: 0;
  }
  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(even) .timeline-content:before {
    top: 35px;
    right: 10px;
    left: 10px;
  }
  .main-timeline .timeline-content:after,
  .main-timeline .timeline:nth-child(even) .timeline-content:after {
    width: 130px;
    height: 40px;
    transform: translateY(0) translateX(-50%);
    left: 50%;
    right: auto;
    top: -40px;
  }
  .main-timeline .timeline-year,
  .main-timeline .timeline:nth-child(even) .timeline-year {
    transform: translateY(0) translateX(-50%);
    left: 50%;
    right: auto;
    top: -45px;
  }
}

@media (max-width: 1192px) {
  .img-timeline {
    right: -28%;
  }
  .main-timeline .timeline:nth-child(even) .img-timeline {
    left: -28%;
  }
}

@media (max-width: 767px) {
  .img-timeline {
    display: none;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: translate(0);
  }
  .img-timeline img {
    margin: auto;
  }
}

.item-branch {
  display: flex;
  flex-wrap: wrap;
}

.img-branch {
  width: 15%;
  padding-right: 5%;
}

.text-branch {
  width: 80%;
  border: 2px dashed #71bf43;
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .img-branch {
    width: 100%;
  }
  .img-branch img {
    width: 80px;
    margin: 0px auto 20px;
  }
  .text-branch {
    width: 100%;
  }
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 203px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: #007345;
  color: white;
  transform: rotateY(180deg);
  padding: 10px;
}

@media (max-width: 767px) {
  .flip-card {
    height: 300px;
  }
}

@media (max-width: 545px) {
  .flip-card {
    height: 280px;
  }
}

@media (max-width: 500px) {
  .flip-card {
    height: 260px;
  }
}

@media (max-width: 450px) {
  .flip-card {
    height: 230px;
  }
}

@media (max-width: 400px) {
  .flip-card {
    height: 200px;
  }
}

.item-product {
  margin-bottom: 30px;
}

.item-product .flip-card {
  margin-bottom: 10px;
}

.item-product h4 {
  color: #71bf43;
  font-size: 20px;
}

.item-product p {
  color: #007345;
  font-size: 17px;
}

.info .counter {
  font-size: 80px;
}

.table-infor thead tr {
  border-top: 2px solid #007345;
  border-bottom: 2px solid #007345;
}

.table-infor tr, .table-infor td {
  padding: 5px;
}

.table-infor tbody tr:last-child {
  border-bottom: 2px solid #007345;
}

.table-infor td:first-child {
  text-align: right;
}

.table-infor th:nth-child(2), .table-infor td:nth-child(2) {
  color: #007345;
  font-weight: bold;
}

.table-infor th {
  padding: 15px;
  font-size: 20px;
}

.table-infor tbody {
  vertical-align: top;
}

@media (min-width: 767px) {
  .table-infor th:first-child, .table-infor td:first-child {
    width: 215px;
  }
}

.text-area {
  margin-top: -300px;
  color: white;
  text-align: justify;
}

.table-area tbody {
  color: white;
}

@media (min-width: 767px) {
  .table-area th:nth-child(2), .table-area td:nth-child(2) {
    width: 500px;
  }
}

@media (max-width: 767px) {
  .img-area {
    display: none;
  }
  .text-area {
    margin-top: 0;
  }
  .table-area tr:nth-child(even) {
    background-color: transparent;
  }
}

.wrap-award {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item-award {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  width: 30%;
  margin-bottom: 20px;
}

.item-award img {
  width: 50%;
  margin: 0 auto 20px;
}

.title-award {
  padding: 0 25px;
  position: relative;
}

.title-award::before {
  content: '';
  width: 23px;
  height: 53px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url("../img/chapter-1/award/nhanh-co.png");
}

.title-award::after {
  content: '';
  width: 23px;
  height: 53px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/chapter-1/award/nhanh-co1.png");
}

@media (min-width: 767px) {
  .table-award th:nth-child(1), .table-award td:nth-child(1) {
    width: 80px;
  }
  .table-award th:nth-child(3), .table-award td:nth-child(3) {
    width: 80px;
  }
}

@media (max-width: 767px) {
  .wrap-award {
    padding: 0 15px;
  }
  .item-award {
    width: 100%;
  }
  .item-award img {
    width: 25%;
  }
}

@media (min-width: 767px) {
  .table-structure th:nth-child(1), .table-structure td:nth-child(1) {
    width: 80px;
  }
  .table-structure th:nth-child(3), .table-structure td:nth-child(3) {
    width: 150px;
  }
  .table-structure th:nth-child(6), .table-structure td:nth-child(6) {
    width: 80px;
  }
}

@media (min-width: 767px) {
  .table-result-company-child th:nth-child(1), .table-result-company-child td:nth-child(1) {
    width: 80px;
  }
  .table-result-company-child th:nth-child(2), .table-result-company-child td:nth-child(2) {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .table-result-company-child th:nth-child(1), .table-result-company-child td:nth-child(1) {
    width: 60px;
  }
  .table-result-company-child th:nth-child(2), .table-result-company-child td:nth-child(2) {
    width: 100px;
  }
  .table-result-company-child th:nth-child(3), .table-result-company-child td:nth-child(3) {
    width: 60px;
  }
  .table-result-company-child th:nth-child(46), .table-result-company-child td:nth-child(4) {
    width: 100px;
  }
  .table-result-company-child th:nth-child(5), .table-result-company-child td:nth-child(5) {
    width: 100px;
  }
  .table-result-company-child th:nth-child(6), .table-result-company-child td:nth-child(6) {
    width: 100px;
  }
  .table-result-company-child th:nth-child(7), .table-result-company-child td:nth-child(7) {
    width: 100px;
  }
}

.table-company-child {
  margin-bottom: 20px;
}

.table-company-child td, .table-company-child th {
  padding: 10px;
  border-bottom: 1px solid #71bf43;
}

.table-company-child th {
  border-bottom: 1px solid #71bf43;
}

.table-company-child th:nth-child(1), .table-company-child td:nth-child(1) {
  width: 30%;
}

@media (min-width: 767px) {
  .table-award th:nth-child(1), .table-award td:nth-child(1) {
    width: 100px;
  }
  .table-award th:nth-child(3), .table-award td:nth-child(3) {
    width: 100px;
  }
}

.item-structure {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.item-structure img {
  margin: auto;
}

.item-structure::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 2px;
  height: 20px;
  background: #71bf43;
}

.item-structure::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: -20px;
  background: #71bf43;
}

.item-structure:last-child::before, .item-structure:last-child::after {
  display: none;
}

.text-structure {
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #71bf43;
}

.text-structure h5 {
  color: #71bf43;
}

.text-structure p {
  text-align: center;
}

.item-event {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px;
}

.img-event {
  width: 50%;
}

.img-event img {
  margin-bottom: 0;
}

.text-event {
  width: 50%;
  text-align: center;
  padding: 40px;
  background: rgba(103, 174, 62, 0.25);
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
}

.text-event h5 {
  color: #71bf43;
  text-transform: uppercase;
}

.number-event {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  text-align: center;
  background: #007345;
  color: white;
  font-size: 60px;
  font-weight: bold;
}

.item-event:nth-child(2n) .text-event {
  background: rgba(255, 242, 0, 0.25);
}

.event-slider .slick-prev-custom1, .event-slider .slick-next-custom1 {
  bottom: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: .7;
  transition: 0.3s all;
  cursor: pointer;
  z-index: 1;
}

.event-slider .slide-prev-custom1:before, .event-slider .slick-next-custom1:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.event-slider .slick-prev-custom1 {
  left: calc(50% + 40px);
  background: rgba(113, 191, 67, 0.6) url(../img/common/previous.png) no-repeat 50%/60%;
}

.event-slider .slick-next-custom1 {
  left: calc(50% + 100px);
  background: rgba(113, 191, 67, 0.6) url(../img/common/next.png) no-repeat 50%/60%;
}

.event-slider .slick-prev-custom1:hover {
  opacity: 1;
  transform: translateX(-5px) scale(1.05);
}

.event-slider .slick-next-custom1:hover {
  opacity: 1;
  transform: translateX(5px) scale(1.05);
}

@media (max-width: 1192px) {
  .event-slider .slick-prev-custom1 {
    left: calc(80% + 40px);
  }
  .event-slider .slick-next-custom1 {
    left: calc(80% + 100px);
  }
}

@media (max-width: 767px) {
  .img-event {
    width: 100%;
  }
  .text-event {
    width: 100%;
    border-radius: 0;
  }
}

.award-slider img {
  margin-bottom: 0;
}

.item-target {
  margin: 15px;
  padding: 20px;
  border: 1px solid #007345;
  text-align: center;
  height: 500px;
}

.item-target img {
  margin: 0 auto 20px;
}

@media (max-width: 767px) {
  .item-target {
    height: 600px;
  }
}

.wrap-evaluate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item-evaluate {
  margin: 10px;
  width: 250px;
  height: 250px;
  background-image: url(../img/chapter-3/vong-tron.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}

.item-evaluate::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: white;
  text-align: center;
  transition: 0.3s all;
  z-index: 0;
}

.text-evaluate {
  z-index: 1;
  width: 55%;
  text-align: center;
}

.text-evaluate h5 {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 15px;
}

.item-evaluate:nth-child(1), .item-evaluate:nth-child(2), .item-evaluate:nth-child(3), .item-evaluate:nth-child(4) {
  width: 220px;
  height: 220px;
}

.item-evaluate:nth-child(1)::before, .item-evaluate:nth-child(2)::before, .item-evaluate:nth-child(3)::before, .item-evaluate:nth-child(4)::before {
  width: 170px;
  height: 170px;
}

.item-evaluate:hover::before {
  width: 90%;
  height: 90%;
}

@media (max-width: 992px) {
  .item-evaluate {
    width: 220px;
    height: 220px;
  }
  .item-evaluate::before {
    width: 170px;
    height: 170px;
  }
}

.item-orientation {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 25px;
}

.img-orientation {
  width: 20%;
}

.text-orientation {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .img-orientation {
    margin-bottom: 20px;
  }
  .img-orientation img {
    margin: auto;
  }
  .img-orientation, .text-orientation {
    width: 100%;
  }
}

@media (min-width: 767px) {
  .table-result-bussiness th:nth-child(1), .table-result-bussiness td:nth-child(1) {
    width: 60px;
  }
  .table-result-bussiness th:nth-child(2), .table-result-bussiness td:nth-child(2) {
    width: 300px;
  }
  .table-result-bussiness tr .colspan {
    width: auto;
  }
}

@media (max-width: 767px) {
  .table-result-bussiness th:nth-child(2), .table-result-bussiness td:nth-child(2) {
    width: 200px;
  }
  .table-result-bussiness th:nth-child(1), .table-result-bussiness td:nth-child(1), .table-result-bussiness th:nth-child(3), .table-result-bussiness td:nth-child(3), .table-result-bussiness th:nth-child(4), .table-result-bussiness td:nth-child(4), .table-result-bussiness th:nth-child(5), .table-result-bussiness td:nth-child(5), .table-result-bussiness th:nth-child(6), .table-result-bussiness td:nth-child(6) {
    width: 80px;
  }
  .table-result-bussiness tr .colspan {
    width: auto;
  }
  .table-result-bussiness th:nth-child(7) {
    width: 120px;
  }
  .table-result-bussiness td:nth-child(7), .table-result-bussiness td:nth-child(8) {
    width: 60px;
  }
}

.item-risk {
  margin-bottom: 15px;
}

.img-risk {
  width: 150px;
  height: 150px;
  line-height: 150px;
  border: 1px solid #007345;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.img-risk img {
  width: 80px;
  margin-bottom: 0;
}

.text-risk h5 {
  color: #71bf43;
  font-style: italic;
}

.wrap-qtrr {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 15px;
}

.item-qtrr {
  width: 50%;
  display: flex;
  margin-bottom: 30px;
  padding: 20px;
}

.img-qtrr {
  width: 20%;
  margin: 0px 10px;
}

.text-qtrr {
  width: 80%;
}

.item-qtrr:nth-child(1) {
  border-right: 1px solid #71bf43;
  border-bottom: 1px solid #71bf43;
}

.item-qtrr:nth-child(2) {
  border-bottom: 1px solid #71bf43;
}

.item-qtrr:nth-child(3) {
  border-top: 1px solid #71bf43;
  border-right: 1px solid #71bf43;
}

.item-qtrr:nth-child(4) {
  border-top: 1px solid #71bf43;
}

@media (max-width: 767px) {
  .item-qtrr {
    width: 100%;
    border-right: none !important;
  }
  .item-qtrr:nth-child(3) {
    border-top: none;
  }
}

.text-app h5 {
  color: #71bf43;
  text-transform: uppercase;
}

.wrap-paradigm {
  width: 100%;
  margin: auto;
  max-width: 900px;
}

.item-paradigm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 30px;
}

.img-paradigm {
  border: 5px solid rgba(65, 173, 73, 0.3);
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img-paradigm::after {
  position: absolute;
  content: '';
  bottom: -44px;
  right: 0;
  background-image: url("../img/chapter-5/paradigm/mui-ten.png");
  width: 60px;
  height: 45px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.img-paradigm .content-img-paradigm {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}

.img-paradigm .content-img-paradigm .img-para {
  width: 25%;
  margin-right: 5%;
}

.img-paradigm .content-img-paradigm p {
  width: 70%;
}

.item-paradigm:last-child .img-paradigm::after {
  display: none;
}

.text-paradigm {
  width: 68%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(65, 173, 73, 0.3);
  padding: 10px 20px;
}

.text-paradigm li {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .wrap-paradigm {
    padding: 0px 15px;
  }
  .img-paradigm {
    width: 100%;
  }
  .text-paradigm {
    width: 100%;
  }
  .img-paradigm .content-img-paradigm {
    padding: 20px 0px;
  }
  .img-paradigm .content-img-paradigm .img-para {
    width: 100%;
  }
  .img-para img {
    margin: 0px auto 10px;
  }
  .img-paradigm .content-img-paradigm p {
    width: 100%;
    text-align: center;
  }
  .img-paradigm::after {
    bottom: -170px;
    right: 50%;
    margin-right: -22px;
  }
  .item-paradigm:nth-child(2) .img-paradigm::after {
    bottom: -190px;
  }
  .item-paradigm:nth-child(3) .img-paradigm::after {
    bottom: -147px;
  }
}

@media (max-width: 425px) {
  .item-paradigm:nth-child(2) .img-paradigm::after {
    bottom: -215px;
  }
}

.item-partner {
  padding: 20px;
}

.item-partner img {
  margin-bottom: 20px;
}

.item-partner h5 {
  color: #71bf43;
}

.item-partner li {
  text-align: justify;
}

#chart-animate {
  height: 600px;
}

.maternity-slider {
  position: relative;
}

.maternity-slider:after {
  content: '';
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  border-bottom: 2px solid white;
}

.item-maternity {
  padding: 10px 20px;
}

.item-maternity img {
  margin-bottom: 30px;
}

.item-maternity p {
  color: white;
}

.item-maternity p span {
  font-size: 2rem;
  font-weight: bold;
}

.develop-slider {
  margin-bottom: 20px;
  margin-top: 20px;
}

.develop-slider .item-develop-slider {
  display: flex;
  width: 100%;
  padding: 0px 5px;
  flex-wrap: wrap;
}

.develop-slider .item-develop-slider .img-slick {
  width: 60%;
}

.develop-slider .item-develop-slider .img-slick img {
  margin-bottom: 0;
}

.develop-slider .item-develop-slider .text-slick {
  width: 40%;
  padding-left: 30px;
}

.develop-slider .item-develop-slider .text-slick h5 {
  font-size: 22px;
  color: #71bf43;
  font-weight: bold;
  text-transform: uppercase;
}

.develop-slider .item-develop-slider .text-slick p {
  font-size: 16px;
  margin-bottom: 20px;
}

.develop-slider .slick-prev-custom1, .develop-slider .slick-next-custom1 {
  bottom: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: .7;
  transition: 0.3s all;
  cursor: pointer;
  z-index: 1;
}

.develop-slider .slide-prev-custom1:before, .develop-slider .slick-next-custom1:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.develop-slider .slick-prev-custom1 {
  left: calc(60% + 40px);
  background: rgba(113, 191, 67, 0.6) url(../img/common/previous.png) no-repeat 50%/60%;
}

.develop-slider .slick-next-custom1 {
  left: calc(60% + 100px);
  background: rgba(113, 191, 67, 0.6) url(../img/common/next.png) no-repeat 50%/60%;
}

.develop-slider .slick-prev-custom1:hover {
  opacity: 1;
  transform: translateX(-5px) scale(1.05);
}

.develop-slider .slick-next-custom1:hover {
  opacity: 1;
  transform: translateX(5px) scale(1.05);
}

@media (max-width: 1192px) {
  .develop-slider .slick-prev-custom1 {
    left: calc(80% + 40px);
  }
  .develop-slider .slick-next-custom1 {
    left: calc(80% + 100px);
  }
}

@media (max-width: 767px) {
  .develop-slider .item-develop-slider .text-slick h5 {
    font-size: 18px;
  }
}

.item-fuel {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: space-around;
}

.img-fuel {
  width: 20%;
}

.text-fuel {
  width: 75%;
  border-left: 3px solid #007345;
}

.text-fuel p {
  font-weight: bold;
  text-align: center;
}

.title-fuel {
  background: #007345;
  padding: 10px;
  text-align: center;
  color: white;
}

/*Custom table report*/
@media (min-width: 767px) {
  .table-report th:first-child, .table-report td:first-child {
    width: 60px;
  }
  .table-report th:nth-child(3), .table-report td:nth-child(3) {
    width: 80px;
  }
  .table-report th:nth-child(4), .table-report td:nth-child(4) {
    width: 80px;
  }
  .table-circulation th:first-child, .table-circulation td:first-child {
    width: 60px;
  }
  .table-circulation th:nth-child(3), .table-circulation td:nth-child(3) {
    width: 80px;
  }
}

.sign-6 {
  width: 350px;
}

.img-message {
  position: relative;
  margin-top: 30px;
}

.text-message p {
  margin-bottom: 10px;
  text-align: justify;
}

.text-message h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #71bf43;
}

.sign img {
  margin-bottom: 20px;
}

.message {
  padding-top: 40px;
}

.img-mes {
  margin: auto;
  width: 400px;
  margin-bottom: 20px;
}

.btn-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}

.btn-video i {
  width: 80px;
  height: 80px;
  line-height: 81px;
  font-size: 28px;
  padding-left: 5px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  background-color: #FFF;
  z-index: 2;
  transition: all .3s ease;
}

.btn-video:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.btn-video:hover i {
  background-color: #71bf43;
  color: #FFF;
}

.item-finan h5 {
  font-size: 20px;
  color: #71bf43;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.name-finan {
  text-align: center;
  color: #71bf43;
}

.name-finan img {
  margin: auto;
}

@media (max-width: 767px) {
  .table-finan th:first-child {
    display: none;
  }
  .name-finan {
    display: none;
  }
}

.item-leadership {
  text-align: center;
  margin-bottom: 20px;
}

.img-leadership {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: block;
  margin: 10px auto 10px;
  position: relative;
}

.img-leadership:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/leadership/vong-tron.jpg);
  opacity: 0.3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.img-leadership:after {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: white;
  overflow: hidden;
  border-radius: 50%;
  z-index: -1;
}

.img-leadership .img {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  overflow: hidden;
  border-radius: 50%;
  z-index: 1;
}

.text-leadership h5 {
  border-top: 2px solid #007345;
  border-bottom: 2px solid #007345;
  padding: 10px;
  color: #71bf43;
  text-transform: uppercase;
  display: inline-block;
}

.text-leadership p {
  color: #71bf43;
  font-weight: bold;
  text-align: center;
}

.detail-leadership h5, .detail-leadership h6 {
  color: #71bf43;
}

.detail-leadership p span {
  font-weight: bold;
}

.close-popup {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  border-radius: 50%;
  background-color: #007345;
  padding: 10px;
  z-index: 999999;
}

@media screen and (max-width: 1100px) {
  .close-popup {
    border-radius: 0;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1100px) {
  .close-popup {
    transition: all .3s ease-in-out;
  }
  .close-popup:hover {
    transform: rotate(90deg);
    color: white;
  }
}
/*# sourceMappingURL=style.css.map */