:root {
  --theme-color: #4a8121;
  --theme2-color: #edae02;
  --header-top-bg: #05af71;
  --header-bg: #4a8121;
  --menu-bg: transparent;
  --valak-bg: #4a8121;
  --menu-link-hover-color: #ff0;
  --menu-item-hover-bg: #05af71;
  --footer-bg: #3c7a17;
  --copyright-bg: #0f3f3c;
  --title-font: "Oswald", sans-serif;
  --text-font: "Open Sans", sans-serif;
  --menu-font: "Open Sans", sans-serif; }

/* ======================== FONTS ======================== */
/* open-sans-regular - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v17-vietnamese_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans-v17-vietnamese_latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v17-vietnamese_latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v17-vietnamese_latin-regular.woff") format("woff"), url("../fonts/open-sans-v17-vietnamese_latin-regular.ttf") format("truetype"), url("../fonts/open-sans-v17-vietnamese_latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-italic - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-display: swap;
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans-v17-vietnamese_latin-italic.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url("../fonts/open-sans-v17-vietnamese_latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v17-vietnamese_latin-italic.woff2") format("woff2"), url("../fonts/open-sans-v17-vietnamese_latin-italic.woff") format("woff"), url("../fonts/open-sans-v17-vietnamese_latin-italic.ttf") format("truetype"), url("../fonts/open-sans-v17-vietnamese_latin-italic.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-700 - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v17-vietnamese_latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/open-sans-v17-vietnamese_latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v17-vietnamese_latin-700.woff2") format("woff2"), url("../fonts/open-sans-v17-vietnamese_latin-700.woff") format("woff"), url("../fonts/open-sans-v17-vietnamese_latin-700.ttf") format("truetype"), url("../fonts/open-sans-v17-vietnamese_latin-700.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-700italic - vietnamese_latin */
@font-face {
  font-family: 'Open Sans';
  font-display: swap;
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/open-sans-v17-vietnamese_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url("../fonts/open-sans-v17-vietnamese_latin-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v17-vietnamese_latin-700italic.woff2") format("woff2"), url("../fonts/open-sans-v17-vietnamese_latin-700italic.woff") format("woff"), url("../fonts/open-sans-v17-vietnamese_latin-700italic.ttf") format("truetype"), url("../fonts/open-sans-v17-vietnamese_latin-700italic.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* oswald-500 - vietnamese_latin */
@font-face {
  font-family: 'Oswald';
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/oswald-v36-vietnamese_latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/oswald-v36-vietnamese_latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-v36-vietnamese_latin-500.woff2") format("woff2"), url("../fonts/oswald-v36-vietnamese_latin-500.woff") format("woff"), url("../fonts/oswald-v36-vietnamese_latin-500.ttf") format("truetype"), url("../fonts/oswald-v36-vietnamese_latin-500.svg#Oswald") format("svg");
  /* Legacy iOS */ }

/* oswald-700 - vietnamese_latin */
@font-face {
  font-family: 'Oswald';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/oswald-v36-vietnamese_latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/oswald-v36-vietnamese_latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/oswald-v36-vietnamese_latin-700.woff2") format("woff2"), url("../fonts/oswald-v36-vietnamese_latin-700.woff") format("woff"), url("../fonts/oswald-v36-vietnamese_latin-700.ttf") format("truetype"), url("../fonts/oswald-v36-vietnamese_latin-700.svg#Oswald") format("svg");
  /* Legacy iOS */ }

/* ==================== BORDER RADIUS ==================== */
/* Ref: 
    http://www.w3schools.com/css/css3_borders.asp 
    http://border-radius.com/
    border-radius: tl tr br bl:
*/
/* ==================== BOX SHADOW ==================== */
/* Ref: 
    http://www.cssmatic.com/box-shadow
*/
/* ==================== Set Font ==================== */
/* ==================== HOVER A ==================== */
/* Ref: 
*/
/*
@include transition(all .3s ease);
@mixin transition($args...) {
  -webkit-transition: $args;
  -moz-transition: $args;
  -ms-transition: $args;
  -o-transition: $args;
  transition: $args;
}
*/
/*
@include background-opacity(#000, $opacity: 0.3);
*/
@keyframes marquee {
  0% {
    right: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    right: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%); } }

@-webkit-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-o-keyframes spin1 {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin1 {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes spin2 {
  0% {
    -webkit-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    -o-transform: rotate(72deg);
    transform: rotate(72deg); }
  100% {
    -webkit-transform: rotate(-288deg);
    -ms-transform: rotate(-288deg);
    -o-transform: rotate(-288deg);
    transform: rotate(-288deg); } }

@-moz-keyframes spin2 {
  0% {
    -webkit-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    -o-transform: rotate(72deg);
    transform: rotate(72deg); }
  100% {
    -webkit-transform: rotate(-288deg);
    -ms-transform: rotate(-288deg);
    -o-transform: rotate(-288deg);
    transform: rotate(-288deg); } }

@-ms-keyframes spin2 {
  0% {
    -webkit-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    -o-transform: rotate(72deg);
    transform: rotate(72deg); }
  100% {
    -webkit-transform: rotate(-288deg);
    -ms-transform: rotate(-288deg);
    -o-transform: rotate(-288deg);
    transform: rotate(-288deg); } }

@-o-keyframes spin2 {
  0% {
    -webkit-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    -o-transform: rotate(72deg);
    transform: rotate(72deg); }
  100% {
    -webkit-transform: rotate(-288deg);
    -ms-transform: rotate(-288deg);
    -o-transform: rotate(-288deg);
    transform: rotate(-288deg); } }

@keyframes spin2 {
  0% {
    -webkit-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    -o-transform: rotate(72deg);
    transform: rotate(72deg); }
  100% {
    -webkit-transform: rotate(-288deg);
    -ms-transform: rotate(-288deg);
    -o-transform: rotate(-288deg);
    transform: rotate(-288deg); } }

@-webkit-keyframes spin3 {
  0% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); }
  100% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); } }

@-moz-keyframes spin3 {
  0% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); }
  100% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); } }

@-ms-keyframes spin3 {
  0% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); }
  100% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); } }

@-o-keyframes spin3 {
  0% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); }
  100% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); } }

@keyframes spin3 {
  0% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); }
  100% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); } }

@-webkit-keyframes spin4 {
  0% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); }
  100% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); } }

@-moz-keyframes spin4 {
  0% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); }
  100% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); } }

@-ms-keyframes spin4 {
  0% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); }
  100% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); } }

@-o-keyframes spin4 {
  0% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); }
  100% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); } }

@keyframes spin4 {
  0% {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    -o-transform: rotate(216deg);
    transform: rotate(216deg); }
  100% {
    -webkit-transform: rotate(-144deg);
    -ms-transform: rotate(-144deg);
    -o-transform: rotate(-144deg);
    transform: rotate(-144deg); } }

@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); }
  50% {
    -webkit-transform: translate(0, -4px);
    -ms-transform: translate(0, -4px);
    -o-transform: translate(0, -4px);
    transform: translate(0, -4px); }
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-moz-keyframes hvr-bob {
  0% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); }
  50% {
    -webkit-transform: translate(0, -4px);
    -ms-transform: translate(0, -4px);
    -o-transform: translate(0, -4px);
    transform: translate(0, -4px); }
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-ms-keyframes hvr-bob {
  0% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); }
  50% {
    -webkit-transform: translate(0, -4px);
    -ms-transform: translate(0, -4px);
    -o-transform: translate(0, -4px);
    transform: translate(0, -4px); }
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-o-keyframes hvr-bob {
  0% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); }
  50% {
    -webkit-transform: translate(0, -4px);
    -ms-transform: translate(0, -4px);
    -o-transform: translate(0, -4px);
    transform: translate(0, -4px); }
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@keyframes hvr-bob {
  0% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); }
  50% {
    -webkit-transform: translate(0, -4px);
    -ms-transform: translate(0, -4px);
    -o-transform: translate(0, -4px);
    transform: translate(0, -4px); }
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-moz-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-ms-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-o-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translate(0, -8px);
    -ms-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px); } }

@-webkit-keyframes blinker {
  0% {
    opacity: 1.0; }
  50% {
    opacity: 0.0; }
  100% {
    opacity: 1.0; } }

@-moz-keyframes blinker {
  0% {
    opacity: 1.0; }
  50% {
    opacity: 0.0; }
  100% {
    opacity: 1.0; } }

@-ms-keyframes blinker {
  0% {
    opacity: 1.0; }
  50% {
    opacity: 0.0; }
  100% {
    opacity: 1.0; } }

@-o-keyframes blinker {
  0% {
    opacity: 1.0; }
  50% {
    opacity: 0.0; }
  100% {
    opacity: 1.0; } }

@keyframes blinker {
  0% {
    opacity: 1.0; }
  50% {
    opacity: 0.0; }
  100% {
    opacity: 1.0; } }

.slideshow .owl-item a img, .video-khac-main .video-khac__img, .construct__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; }

.partner__img, .product__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  object-position: center center; }

.hover_sang1:before, .hover_sang3:before, .hover_sang3:after, .fixed-shadow:after, .thongke li + li:before, .main-title__desc:before, .main-title__desc:after, .video-khac-main .video-khac__link:after, .btn-more2:before, .btn-more2:after, .construct__item.construct__pos--even .construct__head:before, .construct__item.construct__pos--odd .construct__head:before {
  content: '';
  position: absolute; }

.menu--left, .menu .submenu, .menu .submenu li ul, .thongke {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0; }

[class^="hvr-"] {
  margin: .4em;
  padding: 1em;
  cursor: pointer;
  background: #e1e1e1;
  text-decoration: none;
  color: #666;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0); }

.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float,hvr-bob;
  animation-name: hvr-bob-float,hvr-bob;
  -webkit-animation-duration: .3s,1.5s;
  animation-duration: .3s,1.5s;
  -webkit-animation-delay: 0s,.3s;
  animation-delay: 0s,.3s;
  -webkit-animation-timing-function: ease-out,ease-in-out;
  animation-timing-function: ease-out,ease-in-out;
  -webkit-animation-iteration-count: 1,infinite;
  animation-iteration-count: 1,infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal,alternate;
  animation-direction: normal,alternate; }

.blink_me {
  -webkit-animation: blinker 1s linear infinite;
  -moz-animation: blinker 1s linear infinite;
  -ms-animation: blinker 1s linear infinite;
  -o-animation: blinker 1s linear infinite;
  animation: blinker 1s linear infinite; }

.hover_sang1 {
  z-index: 40;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
  transition: transform 0.6s;
  -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  -moz-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  -ms-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
  overflow: hidden;
  border: 1px solid #e8e4e4;
  box-shadow: 4px 6px 0 0 #f5f5f5;
  background: rgba(255, 255, 255, 0.5); }
  @media screen and (prefers-reduced-motion: reduce) {
    .hover_sang1 {
      transition: none; } }
  .hover_sang1:before {
    width: 100%;
    height: 100%; }
  .hover_sang1:hover::before {
    -webkit-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    -moz-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    -ms-transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0);
    transform: scale3d(2.2, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 120%, 0); }

.hover_sang3 {
  overflow: hidden;
  position: relative; }
  .hover_sang3:hover::before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255, 255, 255, 0.5); }
  .hover_sang3:hover::after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255, 255, 255, 0.5); }
  .hover_sang3:before {
    width: 100%;
    height: 100%;
    z-index: 40;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    @media screen and (prefers-reduced-motion: reduce) {
      .hover_sang3:before {
        transition: none; } }
  .hover_sang3:after {
    width: 100%;
    height: 100%;
    z-index: 40;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    @media screen and (prefers-reduced-motion: reduce) {
      .hover_sang3:after {
        transition: none; } }

.xoay_hinh {
  overflow: hidden; }
  .xoay_hinh:hover img {
    transform: rotate(360deg); }
  .xoay_hinh img {
    transition: all 1s ease 0s; }

.marquee {
  -webkit-animation: marquee 20s linear infinite;
  -moz-animation: marquee 20s linear infinite;
  -ms-animation: marquee 20s linear infinite;
  -o-animation: marquee 20s linear infinite;
  animation: marquee 20s linear infinite; }

.text-theme {
  color: var(--theme-color) !important; }

.overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3); }
  @media screen and (prefers-reduced-motion: reduce) {
    .overlay {
      transition: none; } }
  .overlay__box {
    position: absolute;
    top: 20px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 40px);
    border: 3px solid #fff; }

.fixed-shadow:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: -1;
  box-shadow: 0 0.0625em 0.5em rgba(0, 0, 0, 0.3);
  opacity: 0; }
  @media screen and (prefers-reduced-motion: reduce) {
    .fixed-shadow:after {
      transition: none; } }

.fixed-shadow.fixed::after {
  opacity: 1; }

.scrollstyle-4::-webkit-scrollbar {
  width: 4px;
  height: 4px; }

.scrollstyle-4::-webkit-scrollbar-thumb {
  background: #4a8121; }

.scrollstyle-4::-webkit-scrollbar-track {
  background: #a5c090; }

.scrollstyle-4 {
  scrollbar-face-color: #4a8121;
  scrollbar-track-color: #a5c090; }

body {
  font-size: 16px;
  font-size: 1rem;
  font-family: var(--text-font); }

.section:not(.section-pdlist-highlight) {
  padding: 50px 0; }

.container {
  max-width: 1230px;
  position: relative; }

.wrap-main {
  z-index: 40;
  position: relative;
  padding: 30px 0; }

.wrap-main.wrap-home {
  padding: 0; }

.wrap-main-container:after {
  content: "";
  display: table;
  clear: both; }

a:hover {
  text-decoration: none; }

.slick-slider .slick-prev, .slick-slider .slick-next {
  width: 26px;
  height: 40px;
  border-radius: 3px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #eee;
  padding-top: 4px; }
  @media screen and (prefers-reduced-motion: reduce) {
    .slick-slider .slick-prev, .slick-slider .slick-next {
      transition: none; } }
  .slick-slider .slick-prev:hover, .slick-slider .slick-next:hover {
    background-color: #4a8121; }

.slick-slider .slick-prev::before, .slick-slider .slick-next::before {
  font-size: 24px;
  color: #333; }
  .slick-slider .slick-prev:hover::before, .slick-slider .slick-next:hover::before {
    color: #fff; }

.slick-slider .slick-prev {
  left: 20px; }

.slick-slider .slick-next {
  right: 20px; }

.menubar {
  z-index: 100;
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  margin: 7px 0; }

.menu {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }
  .menu__item {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-flex: auto;
    -webkit-flex: auto;
    -moz-box-flex: auto;
    -moz-flex: auto;
    -ms-flex: auto;
    flex: auto;
    position: relative; }
    @media screen and (prefers-reduced-motion: reduce) {
      .menu__item {
        transition: none; } }
    .menu__item:hover .menu__link {
      color: var(--menu-link-hover-color);
      border-color: var(--menu-item-hover-bg); }
    .menu__item:hover .submenu {
      -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
      -o-transform: scaleY(1);
      transform: scaleY(1);
      visibility: visible;
      opacity: 1; }
    .menu__item > .submenu {
      top: calc(100% + 10px); }
  .menu__link {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    width: 100%;
    height: 35px;
    padding: 0;
    position: relative;
    text-transform: uppercase; }
    .menu__link.active {
      color: var(--menu-link-hover-color);
      border-color: var(--menu-item-hover-bg); }
  .menu--left {
    z-index: 50;
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative; }
  .menu .submenu {
    -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    min-width: 200px; }
    @media screen and (prefers-reduced-motion: reduce) {
      .menu .submenu {
        transition: none; } }
    .menu .submenu li {
      transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      position: relative;
      background-color: #4a8121; }
      @media screen and (prefers-reduced-motion: reduce) {
        .menu .submenu li {
          transition: none; } }
      .menu .submenu li:hover {
        background-color: #61aa2b; }
        .menu .submenu li:hover > a {
          color: var(--menu-link-hover-color); }
        .menu .submenu li:hover > ul {
          -webkit-transform: scaleY(1);
          -ms-transform: scaleY(1);
          -o-transform: scaleY(1);
          transform: scaleY(1);
          visibility: visible;
          opacity: 1; }
      .menu .submenu li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.4); }
      .menu .submenu li a {
        font-size: 14px;
        color: #fff;
        font-weight: 400;
        font-family: "Arial";
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        display: block;
        padding: 6px 10px; }
        @media screen and (prefers-reduced-motion: reduce) {
          .menu .submenu li a {
            transition: none; } }
      .menu .submenu li ul {
        -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
        -webkit-transform-origin: 0 0 0;
        -moz-transform-origin: 0 0 0;
        -ms-transform-origin: 0 0 0;
        transform-origin: 0 0 0;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        position: absolute;
        top: 0;
        left: 100%;
        visibility: hidden;
        opacity: 0;
        min-width: 200px; }
        @media screen and (prefers-reduced-motion: reduce) {
          .menu .submenu li ul {
            transition: none; } }

.menu_mobi, .menu_mobi_add {
  display: none; }

.menu-res {
  z-index: 100; }

.partner {
  background-image: url("../images/cua.jpg");
  background-repeat: repeat-x;
  background-position: 0 0;
  padding: 25px 0; }
  .partner-slick {
    margin: 0 -1em; }
  .partner__item {
    padding: 0 1em; }
  .partner__link {
    position: relative;
    border: 1px solid #b7b7b7;
    display: block; }
    .partner__link:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 66.6666666667%; }

.copyright {
  z-index: 41;
  background-color: var(--copyright-bg);
  position: relative; }
  .copyright-wrap {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    min-height: 50px;
    width: 100%;
    position: relative; }
  .copyright__text {
    font-size: 13px;
    color: #fff;
    font-weight: 400; }
    .copyright__text span {
      text-transform: uppercase; }

.thongke {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  position: relative; }
  .thongke li {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    box-sizing: border-box;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative; }
    .thongke li span {
      margin-left: 5px; }
    .thongke li + li {
      margin-left: 20px; }
      .thongke li + li:before {
        width: 1px;
        height: 10px;
        background-color: #fff;
        left: -10px; }

.header {
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 90;
  background-color: var(--header-bg); }
  .header-wrap {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    min-height: 90px; }
  .header-right {
    box-sizing: border-box;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1; }

.hotline {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  width: 100%; }
  .hotline i {
    margin-right: 5px; }
  .hotline span {
    font-weight: 700;
    margin: 0 3px; }

.logo {
  box-sizing: border-box;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 18.3333333333%;
  margin-right: 11.6666666667%;
  background-color: #fff; }

.footer {
  z-index: 1;
  position: relative; }
  .footer-wrap {
    background-color: var(--footer-bg);
    position: relative; }
  .footer-box {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    margin-left: -1%;
    margin-right: -1%; }
  .footer__info {
    width: 50%;
    padding: 50px 6.0029282577%; }
    .footer__info-body {
      font-size: 16px;
      color: #fff;
      font-weight: 400; }
      .footer__info-body p {
        margin-bottom: 10px; }
  .footer__map {
    width: 50%; }

#footer-map, #footer-map iframe {
  overflow: hidden;
  width: 100%;
  height: 480px; }

.codebando, .codebando iframe {
  overflow: hidden;
  width: 100%;
  height: 480px; }

.main-title {
  margin-bottom: 20px;
  text-align: center; }
  .main-title__name {
    font-size: 40px;
    color: var(--theme-color);
    font-weight: 400;
    font-family: var(--title-font);
    line-height: 1;
    margin-bottom: 5px; }
  .main-title__link {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: inherit;
    display: inline-block; }
    @media screen and (prefers-reduced-motion: reduce) {
      .main-title__link {
        transition: none; } }
    .main-title__link[href] {
      cursor: pointer; }
      .main-title__link[href]:hover {
        color: var(--theme2-color); }
  .main-title__desc {
    box-sizing: border-box;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative; }
    .main-title__desc:before {
      width: 100px;
      height: 1px;
      background-color: #c5c5c5;
      position: relative; }
    .main-title__desc:after {
      width: 100px;
      height: 1px;
      background-color: #c5c5c5;
      position: relative; }
    .main-title__desc span {
      font-size: 14px;
      color: #333;
      font-weight: 400;
      padding: 0 1em; }

.title-main span {
  font-size: 1.5em;
  color: var(--color-title-main);
  font-weight: 400; }

.text-main img {
  max-width: 100% !important;
  height: auto !important; }

.slideshow {
  z-index: 1;
  position: relative; }
  .slideshow .owl-item a {
    position: relative; }
    .slideshow .owl-item a::before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 41.7276720351%; }
    .slideshow .owl-item a img {
      background-color: #fff; }

@-webkit-keyframes fadeInUpSD {
  0% {
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  100% {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1; } }

.search .search-grid {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  border: 1px solid #fff;
  overflow: hidden;
  background-color: #fff;
  border-radius: 30px; }
  .search .search-grid input {
    width: calc(100% - 35px);
    height: 35px;
    font-size: 13px;
    color: #000;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 10px;
    border: 0;
    line-height: 35px;
    outline: none;
    background-color: transparent; }
    .search .search-grid input::-moz-placeholder {
      color: rgba(0, 0, 0, 0.7);
      opacity: 1; }
    .search .search-grid input:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.7); }
    .search .search-grid input::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.7); }
  .search .search-grid p {
    font-size: 13px;
    color: #9e9e9e;
    box-sizing: border-box;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin: 0;
    text-transform: uppercase;
    cursor: pointer; }

.search {
  position: relative;
  margin-left: 30px;
  width: 215px; }

.mxh {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 10px auto; }
  .mxh a {
    box-sizing: border-box;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .mxh a img {
      -webkit-transition: all 1s ease;
      -moz-transition: all 1s ease;
      -ms-transition: all 1s ease;
      -o-transition: all 1s ease;
      transition: all 1s ease;
      max-height: 47px;
      object-fit: scale-down; }
      @media screen and (prefers-reduced-motion: reduce) {
        .mxh a img {
          transition: none; } }
    .mxh a + a {
      margin-left: 6px; }

.newsletter {
  width: 48.3333333333%; }
  .newsletter__header {
    text-align: center; }
  .newsletter__name {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
    font-family: var(--title-font);
    text-transform: uppercase; }
  .newsletter__desc {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px; }
  .newsletter__line {
    margin: 15px auto;
    width: 50px;
    height: 5px;
    background-image: url("../images/dknt-line.png");
    background-repeat: no-repeat;
    background-position: 0 0; }
  .newsletter form .form-group-flex {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
    .newsletter form .form-group-flex .form-group {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1; }
      .newsletter form .form-group-flex .form-group + .form-group {
        margin-left: 10px; }
  .newsletter form .form-group {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    position: relative;
    margin-bottom: 10px; }
    .newsletter form .form-group .invalid-feedback {
      visibility: hidden;
      height: 0;
      margin: 0; }
    .newsletter form .form-group .form-control {
      font-size: 14px;
      color: #000;
      font-weight: 400;
      font-family: "Arial";
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      height: 40px;
      padding: 10px;
      background-color: #fff;
      border: 0;
      border-radius: 0;
      outline: none;
      box-shadow: none; }
      .newsletter form .form-group .form-control::-moz-placeholder {
        color: rgba(0, 0, 0, 0.5);
        opacity: 1; }
      .newsletter form .form-group .form-control:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.5); }
      .newsletter form .form-group .form-control::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.5); }
    .newsletter form .form-group textarea.form-control {
      height: 98px; }
  .newsletter form .newsletter-button {
    text-align: center; }
    .newsletter form .newsletter-button input[type="submit"], .newsletter form .newsletter-button input[type="reset"] {
      font-size: 16px;
      color: #0f3f3c;
      font-weight: 700;
      background-color: #96f561;
      border-radius: 5px;
      line-height: 47px;
      text-align: center;
      border: 0;
      text-transform: uppercase;
      padding: 0 30px;
      margin: 10px 0; }

#video-khac:after {
  content: "";
  display: table;
  clear: both; }

#video-idx {
  margin-bottom: 6px; }

#iframe {
  width: 100%; }

#iframe, #video-idx {
  overflow: hidden;
  height: 365px; }
  @media (max-width: 425px) {
    #iframe, #video-idx {
      height: 250px; } }

.video-khac-main {
  margin: 0 -3px; }
  .video-khac-main .slick-prev, .video-khac-main .slick-next {
    -webkit-transform: scale(0.7) translate(0, -50%);
    -moz-transform: scale(0.7) translate(0, -50%);
    -ms-transform: scale(0.7) translate(0, -50%);
    transform: scale(0.7) translate(0, -50%); }
  .video-khac-main .slick-prev {
    left: 3px; }
  .video-khac-main .slick-next {
    right: 3px; }
  .video-khac-main .video-khac {
    padding: 0 3px; }
    .video-khac-main .video-khac__link {
      display: block;
      overflow: hidden;
      position: relative; }
      .video-khac-main .video-khac__link:before {
        display: block;
        content: "";
        width: 100%;
        padding-top: 59.375%; }
      .video-khac-main .video-khac__link:after {
        width: 40px;
        height: 28px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 41;
        background-image: url("../images/playin.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain; }

.btn-more {
  box-sizing: border-box;
  display: inline-flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 45px;
  cursor: pointer;
  position: relative;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 0 30px;
  text-transform: uppercase; }
  @media screen and (prefers-reduced-motion: reduce) {
    .btn-more {
      transition: none; } }
  .btn-more span {
    font-size: 15px;
    color: inherit;
    font-weight: 400; }
  .btn-more:hover {
    background-color: #fff;
    color: var(--theme-color); }

.btn-more2 {
  box-sizing: border-box;
  display: inline-flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background-color: #4a8121;
  color: #fff; }
  @media screen and (prefers-reduced-motion: reduce) {
    .btn-more2 {
      transition: none; } }
  .btn-more2:before {
    width: 0;
    height: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top: 20px solid transparent;
    border-left: 10px solid #fff;
    border-bottom: 20px solid transparent; }
  .btn-more2:after {
    width: 0;
    height: 0;
    position: absolute;
    top: 0px;
    right: 0px;
    border-top: 20px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 20px solid transparent; }
  .btn-more2:hover {
    background-color: #ffb933;
    color: #000; }
  .btn-more2 span {
    font-size: 14px;
    color: inherit;
    font-weight: 400;
    display: inline-block;
    line-height: 1;
    position: relative;
    text-transform: capitalize;
    padding: 13px 30px; }
    .btn-more2 span[href] {
      cursor: pointer; }
      .btn-more2 span[href]:hover {
        color: #4a8121; }

.construct__item {
  position: relative; }
  .construct__item.construct__pos--even .construct__box {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .construct__item.construct__pos--even .construct__head-right {
    background-image: url("../images/title.png");
    background-repeat: repeat-x;
    background-position: 0 0;
    margin-left: -15px; }
  .construct__item.construct__pos--even .construct__head {
    float: right;
    padding-left: 50px; }
    .construct__item.construct__pos--even .construct__head:before {
      width: 45px;
      height: 64px;
      background-image: url("../images/title-2.png");
      background-repeat: no-repeat;
      background-position: 0 0;
      -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      -o-transform: scaleX(-1);
      transform: scaleX(-1);
      left: -45px; }
  .construct__item.construct__pos--odd .construct__head-left {
    background-image: url("../images/title.png");
    background-repeat: repeat-x;
    background-position: 0 0;
    margin-right: -15px; }
  .construct__item.construct__pos--odd .construct__head {
    padding-right: 50px; }
    .construct__item.construct__pos--odd .construct__head:before {
      width: 45px;
      height: 64px;
      background-image: url("../images/title-2.png");
      background-repeat: no-repeat;
      background-position: 0 0;
      right: -45px; }

.construct__box {
  box-sizing: border-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.construct__image {
  position: relative; }
  .construct__image:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 48.3162518302%; }

.construct__body {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.construct__info {
  width: 100%; }

.construct__head-container {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.construct__head-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.construct__head-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.construct__head {
  background-image: url("../images/title.png");
  background-repeat: repeat-x;
  background-position: 0 0;
  box-sizing: border-box;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 64px;
  text-transform: uppercase;
  position: relative; }

.construct__name {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  font-family: var(--title-font);
  display: block;
  display: -webkit-box;
  height: 45px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 7px; }

.construct__desc {
  color: #fff;
  max-width: 600px;
  margin: 10px 0; }

/*section-newsletter-video*/
.section-newsletter-video {
  background-image: url("../images/dknt.jpg");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover; }

.newsletter-video-wrap {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.videohome {
  width: 46.6666666667%; }

.news-grid {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%; }

.news__item {
  box-sizing: border-box;
  flex: 0 0 48%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 2%; }

.news__link {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  background-color: #fff; }
  .news__link:hover .news__name {
    color: #f00; }

.news__image {
  width: 36%;
  margin-bottom: 10px; }

.news__img {
  background-color: #eee;
  width: 100%; }

.news__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 1em; }

.news__name {
  font-size: 16px;
  color: var(--color-title-main);
  font-weight: 700;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  @media screen and (prefers-reduced-motion: reduce) {
    .news__name {
      transition: none; } }

.news__desc {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  display: block;
  display: -webkit-box;
  height: 63px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; }

.news__date {
  font-size: 14px;
  color: #807f7f;
  font-weight: 400; }

.news--verticle .news__item {
  box-sizing: border-box;
  flex: 0 0 31.3333333333%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 2%; }

.news--verticle .news__image {
  width: 100%; }

.news--verticle .news__body {
  margin-left: 0; }

@media (max-width: 440px) {
  .news__image {
    width: 100%; }
  .news__body {
    margin-left: 0;
    text-align: center; } }

@media (max-width: 850px) {
  .news__item {
    box-sizing: border-box;
    flex: 0 0 98%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%; }
  .news--verticle .news__item {
    box-sizing: border-box;
    flex: 0 0 98%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%; } }

.product-grid {
  box-sizing: border-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.0833333333%;
  margin-right: -1.0833333333%; }

.product {
  box-sizing: border-box;
  flex: 0 0 22.8333333333%;
  margin-left: 1.0833333333%;
  margin-right: 1.0833333333%;
  margin-bottom: 2.1666666667%; }
  .slick-box-item .product {
    width: 100%;
    margin: 0; }
  .product__box {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    height: 100%; }
    @media screen and (prefers-reduced-motion: reduce) {
      .product__box {
        transition: none; } }
    .product__box:hover .product__name {
      color: #4a8121; }
  .product__link {
    position: relative;
    display: block;
    margin-bottom: 10px; }
  .product__new-icon {
    width: 42px;
    height: 42px;
    background-image: url("../images/new.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    position: absolute;
    top: 1em;
    left: 1em;
    z-index: 90; }
  .product__image {
    border: 1px solid #ebebeb;
    position: relative;
    margin-bottom: 0;
    overflow: hidden; }
    .product__image::before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 100%; }
  .product__img {
    background-color: #fff; }
  .product__name {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
    margin: 0; }
    @media screen and (prefers-reduced-motion: reduce) {
      .product__name {
        transition: none; } }
    .product__name a {
      color: inherit; }
  .product__price {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    font-size: 16px;
    color: #666;
    font-weight: 400;
    margin-bottom: 0px; }
  .product__price-new {
    color: #f00;
    font-weight: 700; }
  .product__price-old {
    padding-left: 5px;
    text-decoration: line-through;
    position: relative; }
  .product__price-per {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    color: #fff;
    font-weight: 400;
    width: 45px;
    height: 25px;
    border-radius: 2px;
    background: var(--color-red);
    text-align: center;
    line-height: 25px; }
  .product__cart {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    /* position: absolute;
    bottom: 0px;
    left: 0px; */
    width: 100%;
    min-height: 40px;
    /* background-color: #f5f5f5;
    border-top: 1px solid #e7e7e7; */
    text-transform: uppercase;
    margin: 0; }
    .product__cart span {
      cursor: pointer; }
    .product__cart i {
      margin-right: 10px; }
  .product__cart-add {
    cursor: pointer; }
  .product__cart-buy {
    cursor: pointer;
    padding-left: 10px;
    color: #3a1b08; }

.slick-box-item {
  padding: 0 0.8125em; }

.spnoibat-main {
  margin: 0 -0.8125em; }

/*  ================================================================================
  MIXIN DEVICES
  ================================================================================ */
/*========= SLIDER ===============*/
/*========= HEADER ===============*/
/*========= FOOTER ===============*/
/*========= MENU ===============*/
/*========= PRODUCT ===============*/
/*========= NEW ===============*/
/*  ================================================================================
  LARGE DEVICES 
  Large Desktops 1200px and Up (>1200) 
  ================================================================================ */
/*  ================================================================================
  MEDIUM DEVICES
  Desktops 992px and Up (>992px & <1200px)
  ================================================================================ */
/*  ================================================================================
  SMALL DEVICES
  Tablets 768px and Up (>768px & <992px)
  ================================================================================ */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .wrap-page {
    overflow: hidden; } }

@media screen and (min-width: 768px) and (max-width: 992px) and (max-width: 425px) {
  .main-title__name {
    font-size: 22px; } }

@media screen and (min-width: 768px) and (max-width: 992px) {
  .header {
    background-color: #fff; }
    .header-wrap {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; }
    .header-right {
      display: none; }
  .logo {
    width: auto;
    max-width: 200px;
    margin-right: 0; }
  .menu-bar-res--right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .menu-bar-res--right .lang-header {
      margin: 0 1rem 0; }
  .hero-image {
    display: none; }
  .menubar {
    display: none; }
  .menu_mobi {
    display: flex; }
  .menu-res {
    background-color: #41711d; }
  .toolbar {
    background-color: #4a8121; }
  .footer__info {
    width: 100%;
    padding: 2em; }
  .footer__map {
    width: 100%; }
  .footer__baiviet {
    width: 49%;
    margin-bottom: 1em; } }

@media screen and (min-width: 768px) and (max-width: 992px) and (max-width: 425px) {
  .footer__fanpage {
    width: 100%; }
  .footer__baiviet {
    width: 100%; } }

@media screen and (min-width: 768px) and (max-width: 992px) {
  .copyright-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 7px; }
  .copyright__text {
    width: 100%; }
  .copyright .thongke {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    width: 100%; }
  #footer-map, #footer-map iframe {
    height: 300px; }
  .construct__image {
    position: relative; }
    .construct__image:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 150%; }
  .construct__img {
    object-fit: cover;
    object-position: center top; }
  .newsletter-video-wrap {
    display: block; }
  .videohome {
    width: 100%;
    margin-bottom: 1em; }
  .newsletter {
    width: 100%; }
  .product-grid {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1.0833333333%;
    margin-right: -1.0833333333%; }
  .product {
    box-sizing: border-box;
    flex: 0 0 47.8333333333%;
    margin-left: 1.0833333333%;
    margin-right: 1.0833333333%;
    margin-bottom: 2.1666666667%; } }

/*  ================================================================================
  EXTRA SMALL
  (>425px & <768px)
  ================================================================================ */
@media screen and (min-width: 425px) and (max-width: 768px) {
  .wrap-page {
    overflow: hidden; } }

@media screen and (min-width: 425px) and (max-width: 768px) and (max-width: 425px) {
  .main-title__name {
    font-size: 22px; } }

@media screen and (min-width: 425px) and (max-width: 768px) {
  .header {
    background-color: #fff; }
    .header-wrap {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; }
    .header-right {
      display: none; }
  .logo {
    width: auto;
    max-width: 200px;
    margin-right: 0; }
  .menu-bar-res--right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .menu-bar-res--right .lang-header {
      margin: 0 1rem 0; }
  .hero-image {
    display: none; }
  .menubar {
    display: none; }
  .menu_mobi {
    display: flex; }
  .menu-res {
    background-color: #41711d; }
  .toolbar {
    background-color: #4a8121; }
  .footer__info {
    width: 100%;
    padding: 2em; }
  .footer__map {
    width: 100%; }
  .footer__baiviet {
    width: 49%;
    margin-bottom: 1em; } }

@media screen and (min-width: 425px) and (max-width: 768px) and (max-width: 425px) {
  .footer__fanpage {
    width: 100%; }
  .footer__baiviet {
    width: 100%; } }

@media screen and (min-width: 425px) and (max-width: 768px) {
  .copyright-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 7px; }
  .copyright__text {
    width: 100%; }
  .copyright .thongke {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    width: 100%; }
  #footer-map, #footer-map iframe {
    height: 300px; }
  .construct__image {
    position: relative; }
    .construct__image:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 48.3162518302%; }
  .construct__img {
    object-fit: cover;
    object-position: center top; }
  .newsletter-video-wrap {
    display: block; }
  .videohome {
    width: 100%;
    margin-bottom: 1em; }
  .newsletter {
    width: 100%; }
  .product-grid {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1.0833333333%;
    margin-right: -1.0833333333%; }
  .product {
    box-sizing: border-box;
    flex: 0 0 47.8333333333%;
    margin-left: 1.0833333333%;
    margin-right: 1.0833333333%;
    margin-bottom: 2.1666666667%; } }

/*  ================================================================================
  MOBILE SIZE
  Phones Less than 425px
  (<425px)
  ================================================================================ */
@media screen and (max-width: 425px) {
  .wrap-page {
    overflow: hidden; } }

@media screen and (max-width: 425px) and (max-width: 425px) {
  .main-title__name {
    font-size: 22px; } }

@media screen and (max-width: 425px) {
  .header {
    background-color: #fff; }
    .header-wrap {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; }
    .header-right {
      display: none; }
  .logo {
    width: auto;
    max-width: 200px;
    margin-right: 0; }
  .menu-bar-res--right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .menu-bar-res--right .lang-header {
      margin: 0 1rem 0; }
  .hero-image {
    display: none; }
  .menubar {
    display: none; }
  .menu_mobi {
    display: flex; }
  .menu-res {
    background-color: #41711d; }
  .toolbar {
    background-color: #4a8121; }
  .footer__info {
    width: 100%;
    padding: 2em; }
  .footer__map {
    width: 100%; }
  .footer__baiviet {
    width: 49%;
    margin-bottom: 1em; } }

@media screen and (max-width: 425px) and (max-width: 425px) {
  .footer__fanpage {
    width: 100%; }
  .footer__baiviet {
    width: 100%; } }

@media screen and (max-width: 425px) {
  .copyright-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 7px; }
  .copyright__text {
    width: 100%; }
  .copyright .thongke {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    width: 100%; }
  #footer-map, #footer-map iframe {
    height: 300px; }
  .construct__image {
    position: relative; }
    .btn-more{height: 32px;padding: 0 10px;}
    .construct__name {
      font-size: 18px;
    }
    .construct__head{background-image: none;}
    .construct__item.construct__pos--odd .construct__head:before,.construct__item.construct__pos--even .construct__head:before,.construct__item.construct__pos--odd .construct__head-left,.construct__item.construct__pos--even .construct__head-right {
      display: none;
    }
    .construct__image:before {
      display: block;
      content: "";
      width: 100%;
      padding-top: 48.3162518302%; }
  .construct__img {
    object-fit: cover;
    object-position: center top; }
  .newsletter-video-wrap {
    display: block; }
  .videohome {
    width: 100%;
    margin-bottom: 1em; }
  .newsletter {
    width: 100%; }
  .product-grid {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1.0833333333%;
    margin-right: -1.0833333333%; }
  .product {
    box-sizing: border-box;
    flex: 0 0 47.8333333333%;
    margin-left: 1.0833333333%;
    margin-right: 1.0833333333%;
    margin-bottom: 2.1666666667%; } }

@media screen and (max-width: 425px) and (max-width: 330px) {
  .product-grid {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0; }
  .product {
    box-sizing: border-box;
    flex: 0 0 100%; } }
