/*--------------------------------------------------------------
>>> Animation
--------------------------------------------------------------*/
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
  }
  70% {
    -webkit-box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0.36);
  }
  70% {
    -webkit-box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 1rem rgba(68, 147, 80, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
            box-shadow: 0 0 0 0 rgba(68, 147, 80, 0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(15rem, -50%, 0);
            transform: translate3d(15rem, -50%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(15rem, -50%, 0);
            transform: translate3d(15rem, -50%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2rem, 0);
            transform: translate3d(0, 2rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes bounce-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes bounce-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(0.25rem);
            transform: translateX(0.25rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes shine {
  /* Ä‘á»©ng yÃªn â€“ delay */
  0% {
    left: -50%;
  }

  /* báº¯t Ä‘áº§u cháº¡y */
  20% {
    left: -50%;
  }

  /* cháº¡y xong trong ~0.75s */
  40% {
    left: 50%;
  }

  /* Ä‘á»©ng yÃªn chá» vÃ²ng sau */
  41%,
  100% {
    left: 50%;
  }
}


@-webkit-keyframes fade_move_left {
  0% {
    -webkit-transform: translate(0.1875rem, 0) rotate(180deg);
            transform: translate(0.1875rem, 0) rotate(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-0.3125rem, 0) rotate(180deg);
            transform: translate(-0.3125rem, 0) rotate(180deg);
    opacity: 0;
  }
}

@keyframes fade_move_left {
  0% {
    -webkit-transform: translate(0.1875rem, 0) rotate(180deg);
            transform: translate(0.1875rem, 0) rotate(180deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-0.3125rem, 0) rotate(180deg);
            transform: translate(-0.3125rem, 0) rotate(180deg);
    opacity: 0;
  }
}

@-webkit-keyframes fade_move_right {
  0% {
    -webkit-transform: translate(-0.3125rem, 0);
            transform: translate(-0.3125rem, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0.1875rem, 0);
            transform: translate(0.1875rem, 0);
    opacity: 0;
  }
}

@keyframes fade_move_right {
  0% {
    -webkit-transform: translate(-0.3125rem, 0);
            transform: translate(-0.3125rem, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0.1875rem, 0);
            transform: translate(0.1875rem, 0);
    opacity: 0;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

/* Banner */
.banner_effect-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 4.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.banner_effect1 .banner_effect-blocks {
  max-width: 85rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner_effect1 .banner-content {
  top: 2rem;
  color: #004125;
  text-transform: uppercase;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 71.875rem;
  font-weight: 700;
}

.banner_effect1 .banner-content strong {
  display: block;
  color: #109648;
}

.banner_effect1 .banner_effect-block,
.banner_effect1 .banner_effect-block img {
  width: 18.75rem;
}

.banner_effect-block:nth-child(2) {
  position: relative;
  top: -4rem;
}

.banner_effect-title-navs {
  position: absolute;
  width: 100%;
  bottom: 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #109648;
  font-size: 3rem;
  font-weight: 700;
  max-width: 54rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-line {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 11.75rem;
}

.nav-line svg {
  position: relative;
  bottom: -.5rem;
  overflow: hidden;
  width: 100%;
}

.banner_img {
  position: absolute;
  top: 0;
  right: -5rem;
  width: calc(100% - 22.75rem);
  z-index: -1;
}

.banner_effect2 .banner-content {
  color: #5fb14b;
  text-transform: uppercase;
  font-weight: 700;
  bottom: 1rem;
  font-size: 2.75rem;
}

.banner_effect2 .banner-content strong {
  display: block;
}

.banner_effect2 .banner_effect-blocks {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  bottom: 0;
}

.banner_effect2 .banner_effect-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  font-size: 1.125rem;
  position: absolute;
}

.banner_effect2 .banner_effect-block strong {
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.banner_effect-block__content {
  position: absolute;
  width: 18rem;
}

.banner_effect2 .banner_effect-block:nth-child(1) {
  right: calc(14.5*1.041666666vw);
  bottom: 0;
}

.banner_effect2 .banner_effect-block:nth-child(2) {
  left: calc(36.5*1.041666666vw);
  top: -28rem;
}

.banner_effect2 .banner_effect-block:nth-child(3) {
  left: calc(24*1.041666666vw);
  top: -38rem;
}

.banner_effect2 .banner_effect-block:nth-child(1) .banner_effect-block__icon {
  width: 23.5rem;
}

.banner_effect-block:nth-child(1) .banner_effect-block__content {
  left: calc(100% + 1.5rem);
  bottom: 4.5rem;
}

.banner_effect2 .banner_effect-block:nth-child(2) .banner_effect-block__icon {
  width: 17.5rem;
  height: 17.5rem;
  background: #63b14a;
  border-radius: 50%;
  padding: .75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.banner_effect2 .banner_effect-block:nth-child(2) .banner_effect-block__icon img {
  position: relative;
  left: -.315rem;
  top: -.3125rem;
}

.banner_effect-block:nth-child(2) .banner_effect-block__content {
  right: calc(100% + 1.5rem);
  bottom: 4.5rem;
  text-align: right;
}

.banner_effect2 .banner_effect-block:nth-child(3) .banner_effect-block__icon {
  width: 13.75rem;
  height: 13.75rem;
  background: #63b14a;
  border-radius: 50%;
  padding: .5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.banner_effect2 .banner_effect-block:nth-child(3) .banner_effect-block__icon img {
  position: relative;
  right: -.25rem;
}

.banner_effect-block:nth-child(3) .banner_effect-block__content {
  right: calc(100% + 1.5rem);
  bottom: 4.5rem;
  text-align: right;
}

.banner-line svg {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(68.5*1.031666666vw);
  height: 37rem;
}

section {
  position: relative;
}

.banner-content {
  position: absolute;
  bottom: 7.75rem;
  left: 4.875rem;
  color: #fff;
  font-size: 3.25rem;
}

.banner .banner__image img {

}

.banner .owl-theme .owl-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner .owl-theme .owl-dots .owl-dot:not(:last-child) {
  margin-right: .5rem;
}

.banner .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: thin solid #fff;
  width: .75rem;
  height: .75rem;
}

.banner .owl-theme .owl-dots .owl-dot.active span,
.banner .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.banner .owl-theme .owl-dots .owl-dot.active span:before,
.banner .owl-theme .owl-dots .owl-dot:hover span:before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: thin solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
}

.banner-video-btn {
  width: 5rem;
  height: 5rem;
  margin-right: .75rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: .25rem solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}

.banner-video-btn:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.banner-video-btn svg {
  width: 2.5rem;
  fill: #fff;
  -webkit-transform: translateX(0.125rem);
          transform: translateX(0.125rem);
}


/* Image */
.images {
  background: #044026;
  padding: 5.875rem 0;
}

.images-inner {
  position: relative;
}

.images .section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
  position: absolute;
  top: 0.25em;
}

.icircle.abs-icon {
  height: 14.75rem;
  width: 7.875rem;
  left: 0;
  top: 0;
  z-index: 0;
}

.hcircle.abs-icon {
  height: auto;
  width: 21.625rem;
  right: 0;
  bottom: -.75rem;
  z-index: 0;
}

.tsdots.abs-icon {
  height: 21.5rem;
  width: 12.5rem;
  opacity: .7;
  right: 0;
  bottom: -10.75rem;
  z-index: 1;
}

.sdots.abs-icon {
  height: auto;
  width: 3.125rem;
  right: 0;
  top: 0;
  z-index: 0;
}

.sdots.abs-icon {
  right: auto;
  left: -6rem;
  -webkit-filter: brightness(3);
          filter: brightness(3);
  top: -3rem;
}

.image-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.gpoint {
  position: absolute;
  width: 3rem;
  top: -1.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.images .owl-theme .owl-dots {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.images .owl-theme .owl-dots .owl-dot:not(:last-child) {
  margin-right: .5rem;
}

.images .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: thin solid #fff;
  width: .75rem;
  height: .75rem;
}

.images .owl-theme .owl-dots .owl-dot.active span,
.images .owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.images .owl-theme .owl-dots .owl-dot.active span:before,
.images .owl-theme .owl-dots .owl-dot:hover span:before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: thin solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
}

.image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-box__content-wrap {
  margin: 0 2.5rem 0 0;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 21.375rem;
  bottom: -2rem;
  padding-right: 1.25rem;
}

.ellip-bg {
  width: 21.125rem;
  height: 21.125rem;
  border-radius: 50%;
  position: absolute;
  background: -webkit-gradient(linear, right top, left top, from(rgba(45, 146, 90, 0.25)), to(rgba(4, 64, 38, 0.25)));
  background: linear-gradient(-90deg, rgba(45, 146, 90, 0.25) 0%, rgba(4, 64, 38, 0.25) 100%);
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  -webkit-box-shadow: 2rem 2rem #044026;
          box-shadow: 2rem 2rem #044026;
}

.ellip-bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/Oval.svg);
  right: 0;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.image-box__subtitle::before {
  content: "";
  position: absolute;
  width: calc(100% + 4rem + (100vw - 78.875rem)/2);
  height: 0.0625rem;
  right: 0.375rem;
  top: -1.125rem;
  background: url(../images/Lineimg.svg);
  background-repeat: repeat-x;
}

.image-box__subtitle:after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.0625rem;
  right: -1.625rem;
  top: -1.125rem;
  background: url(../images/Lineimg.svg);
  background-repeat: repeat-x;
  z-index: -2;
}

.image-box__content {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
}

.image-box__subtitle {
  color: #fff;
  font-size: .875rem;
  margin: 2.5rem 0 0;
  position: relative;
}

.images .owl-carousel .owl-stage {
  padding-left: 0 !important;
}

.owl-item:not(.active) .image-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: revert;
          flex-direction: revert;
}

.owl-item:not(.active) .image-box__content-wrap {
  opacity: 0;
}

.images .images-carousel .owl-stage-outer {
  width: calc(71.875rem + (100vw - 71.875rem)/2);
  overflow: visible;
}

.images .owl-theme .owl-nav {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#images .owl-nav .owl-prev {
  display: none;
}

.images .owl-nav .next-nav {
  position: absolute;
  right: -.75rem;
  width: 4rem;
  height: 4rem;
  border: thin solid #fff;
  border-radius: 50%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.images .owl-nav .next-nav img {
  -webkit-filter: brightness(6);
          filter: brightness(6);
}

.image-box__img img {
  height: 29.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Product */
.product {
  padding: 4.25rem 0 5.25rem;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-list .owl-stage-outer {
  padding: 2rem 2rem 1rem;
  width: calc(100% + 4rem);
  margin-left: -1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product .owl-carousel .owl-stage {
  margin: auto;
}

.pdot2.abs-icon {
  width: 5.3125rem;
  height: 22.5rem;
  right: 0;
  bottom: -2rem;
}

.pdot1.abs-icon {
  width: 11.6875rem;
  height: 11.6875rem;
  top: -1rem;
  left: -1rem;
}

.product .section-subtitle {
  text-align: center;
  margin: 0 auto 2.5rem;
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  color: #000;
  font-size: 1.125rem;
  max-width: 60%;
}

.product-item {
  cursor: pointer;
}

.product-item__title {
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 400;
  text-align: center;
  margin-top: 2rem;
}

.pcircle {
  width: 12.875rem;
  height: 12.875rem;
  position: absolute;
  background: linear-gradient(50.86deg, #8BB35D 6.33%, #8BB35D 50.09%, #418F49 80.92%, #2D925A 105.79%);
  border-radius: 50%;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.connect-block-ani {
  position: absolute;
  border: thin solid rgba(45, 146, 90, 0.25);
  left: -.75rem;
  right: -.75rem;
  top: -.75rem;
  bottom: -.75rem;
  border-radius: 50%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: -2;
}

.connect-block-ani.pline-2 {
  border: thin solid #2d925a;
}

.product-item__image {
  position: relative;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
}

.product-item__image:before {
  position: absolute;
  content: '';
  background: #fff;
  /* width: 12.875rem; */
  /* height: 12.875rem; */
  border-radius: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.product-item__image img {
  -webkit-transform: scale(1.75);
          transform: scale(1.75);
  width: 10.5rem;
  height: 10.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.product .owl-theme .owl-dots {
  position: absolute;
  bottom: -.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.product .owl-theme .owl-dots .owl-dot:not(:last-child) {
  margin-right: .5rem;
}

.product .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: thin solid #3DAE2B;
  width: .75rem;
  height: .75rem;
}

.product .owl-theme .owl-dots .owl-dot.active span,
.product .owl-theme .owl-dots .owl-dot:hover span {
  background: #3DAE2B;
  position: relative;
}

.product .owl-theme .owl-dots .owl-dot.active span:before,
.product .owl-theme .owl-dots .owl-dot:hover span:before {
  content: '';
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: thin solid #3DAE2B;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: auto;
}


.product-image {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  max-width: 60%;
  background: #F1F3F4;
}

.product-info {
  -ms-flex-preferred-size: calc(100% - 60%);
      flex-basis: calc(100% - 60%);
  max-width: calc(100% - 60%);
  padding-left: 1.75rem;
}

.product-breadcums {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  font-size: .875rem;
  font-weight: 500;
}

.product-breadcums__item:not(:first-child) {
  padding-left: .75rem;
  padding-top: .125rem;
  margin-left: .5rem;
  font-weight: 400;
  position: relative;
}

.product-breadcums__item:not(:first-child):before {
  content: '';
  position: absolute;
  background-image: url("../images/chevron.svg");
  background-repeat: no-repeat;
  width: .75rem;
  height: .75rem;
  left: 0;
  top: .325rem;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.product-title {
  font-size: 1.125rem;
  color: #449350;
  font-weight: 500;
}

.product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .875rem;
  color: #58595B;
  margin: 1rem 0 .875rem;
}

.product-brand {
  text-transform: uppercase;
  font-size: .75rem;
  padding: .5875rem 1rem;
  margin-right: 1.5rem;
  color: #58595B;
  font-weight: 400;
}

.product-contact {
  text-transform: uppercase;
  padding: 0.875rem 2rem 1rem;
  height: auto;
  font-size: .875rem;
  margin: 1rem 0 0;
}

.product-expert p {
  margin: .5rem 0;
}

body .product-contact {
  bottom: .75rem;
}

/* Food Export */
.food-export {
  padding: 4.5rem 0 3.25rem;
  margin-bottom: -.125rem;
  background-size: 100% 100.5%;
}

.food-export-inner {
  color: #fff;
  padding-left: calc(100% - 33rem);
  max-width: 33rem;
}

.food-export .section-title {
  margin: 0 0 1.5rem;
  color: #fff;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}

.export_locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 3.25rem;
}

.food-export .rect-dots.abs-icon {
  bottom: 10rem;
  height: auto;
  right: 7rem;
}

.export_location-item {
  -ms-flex-preferred-size: calc((100% - 9rem)/4);
      flex-basis: calc((100% - 9rem)/4);
  margin-right: 3rem;
  margin-bottom: 3.125rem;
}

.export_location-item:nth-child(4n+4) {
  margin-right: 0;
}

.export_location-item__image img {
  max-height: 8.75rem;
}

.export_location-item:nth-child(4) img {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.export_location-item:nth-child(6) img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.export_location-item__image {
  height: 8.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.export_location-item__title {
  text-transform: uppercase;
  text-align: center;
  font-size: .75rem;
  margin: 1rem 0 0;
}

.food-export.food-export-simg {
  padding: 4.5rem 0 6.25rem;
}

.food-export-simg .food-export-inner {
  padding-left: calc(100% - 39.25rem);
  max-width: 39.25rem;
}

.food-export-simg .export_locations {
  margin-top: 4.25rem;
}

.food-export.food-export-simg .rect-dots.abs-icon {
  right: 6rem;
  bottom: 7.5rem;
}

.export_location__image svg {
  width: 100%;
  -webkit-transform: translateX(-1rem);
          transform: translateX(-1rem);
}

.export_locations-list,
.export_location__image {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.export_locations-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 2.25rem 0 0;
}

.export_country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1rem;
}

.export_country-icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 2.25rem;
  margin: 0 .6rem 0 0;
}

/*--------------------------------------------------------------
>>> Vertical Nav
--------------------------------------------------------------*/
#vertical-navs {
  position: fixed;
  right: 2.3125rem;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
}

#vertical-navs li {
  text-align: right;
  list-style-type: none;
  margin-bottom: 1.75rem;
}

#vertical-navs a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: #449250;
  font-weight: 500;
  font-size: .8125rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
}

#vertical-navs .nav-label {
  position: absolute;
  right: .5rem;
  margin-right: .75rem;
  padding: .4em .5em;
  color: #449250;
  font-size: 0.8125rem;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  line-height: 1;
  -webkit-transform: translateY(-0.125rem);
          transform: translateY(-0.125rem);
  background: #ffffff;
  border-radius: .15rem;
  padding: .25rem .5rem .35rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 3rem;
  pointer-events: none;
}

#vertical-navs .nav-label:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: .35rem solid transparent;
  border-left-color: #ffffff;
  border-right: 0;
  margin-top: -.35rem;
  margin-right: -.35rem;
}

#vertical-navs a:after {
  content: "";
  display: table;
  clear: both;
}

#vertical-navs a span {
  float: right;
  display: inline-block;
}

#vertical-navs .nav-dot {
  position: relative;
  height: .425rem;
  width: .425rem;
  border-radius: 50%;
  background-color: #BDBEC0;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  pointer-events: all;
}

#vertical-navs a:hover .nav-dot,
#vertical-navs a.is-selected .nav-dot {
  background-color: #449250;
}

#vertical-navs a:hover .nav-dot:before,
#vertical-navs a.is-selected .nav-dot:before {
  content: '';
  position: absolute;
  width: .85rem;
  height: .85rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  border: thin solid #449250;
}

#vertical-navs a:hover .nav-dot {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#vertical-navs a:hover .nav-label,
#vertical-navs a.is-selected .nav-label {
  opacity: 1;
}

/* Fix */
.product-item {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

.product-item__link {
  display: block;
}

.product-item__image {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.product-item__image img {
  -webkit-transform: none;
  transform: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* aspect-ratio: 16/10; */
  object-fit: cover;
  width: 100%;
  /* height:auto; */
  height: 14.875rem;
  width: auto;
}

.product-item__title-wrap {
  background: #fff;
  width: 100%;
  /* padding: 1rem; */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-viewmore {
  text-align: center;
  background: #fff;
  padding: .5rem 0 0;
}

.product-viewmore .btn {
  /* font-weight: 400; */
  font-size: 1rem;
}

.product-item__title {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.product .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}

.product .owl-theme .owl-nav .owl-prev {
  display: none;
}

.product .owl-theme .owl-nav .next-nav {
  position: absolute;
  right: -8rem;
  border: .125rem solid #a19e9e;
  padding: .75rem;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product .owl-theme .owl-nav .next-nav img {
  width: 2.5rem;
  -webkit-filter: invert(73%) sepia(9%) saturate(0%) hue-rotate(167deg) brightness(95%) contrast(88%);
          filter: invert(73%) sepia(9%) saturate(0%) hue-rotate(167deg) brightness(95%) contrast(88%);
}

body .product-list {
  width: calc(100% - 8rem);
  overflow: visible;
}

.product-list .owl-stage-outer {
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 0;
}
.archive-title,
.section-title
{
    font-size:2.5rem;
    text-align:center;
    text-transform:uppercase;
        font-weight: bold;
    color: #555;
}
.archive-description
{
      text-align: justify;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 0;
}
.tax-danh-muc-san-pham .category-section
{
    padding: 3rem 0 4rem;
    position:relative;
}
.tax-danh-muc-san-pham .category-section:before
{
    content:'';
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background-color: #eaeaea;
    min-width:100vw;
    left:50%;
    transform:translateX(-50%);
    z-index: -2;
    background-image: url(../images/home-map-bg.png);
    background-position:center;
    background-repeat:no-repeat;
}
.section-title
{
    margin-bottom:2rem;
}
.product-cat__item-title
{
    background-color: #066836;
    padding: 0 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .875rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0;
    margin: 0;
}
a[href*="danh-muc-san-pham/thiet-ke-xay-dung-chuong-trai"] .product-cat__item-title
{
    padding:0 2rem;
}
.product_cat-filter
{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    margin: 2.5rem 0 1.5rem;
}
.product_cat-filter img
{
    width:2.5rem;
    height: 2.5rem;
    filter: invert(33%) sepia(1%) saturate(0%) hue-rotate(16deg) brightness(96%) contrast(91%);
}
.product_cat-filter .btn
{
    display:flex;
    align-items:center;
    color: #555;
    gap: 1rem;
    text-transform: uppercase;
    border-radius: 12rem;
    border:.125rem solid #555;
    padding: .5rem 1.5rem;
}
.product_cat-filter .btn:after
{
    display: inline-block;
    margin-left: .255rem;
    vertical-align: .255rem;
    content: "";
    border-top: .3rem solid;
    border-right: .3rem solid transparent;
    border-bottom: 0;
    border-left: .3rem solid transparent;
}
.product_cat-filter .btn:hover,
.product_cat-filter .btn.active,
.product_cat-filter .btn:focus
{
    background-image: linear-gradient(#0a6837, #0a6837);
    color: white;
}
.product_cat-filter .btn:hover img,
.product_cat-filter .btn:focus img,
.product_cat-filter .btn.active img
{
    filter:brightness(0) invert(1);
}
.filter-group  .dropdown-menu
{
    position:absolute;
    display:flex;
    flex-direction:column;
    padding:1rem 0;
    /* position: absolute; */
    width: 100%;
    top: 105%;
    left: 0;
    border-radius: .5rem;
    border: 1px solid #3EA446;
    background-color: white;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.075);
    gap:.125rem;
    z-index:2;
    display:none;
    box-sizing: border-box;
}
.filter-group .dropdown-menu a
{
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: .75rem;
    line-height: 1.25rem;
    width: 100%;
    padding: .5rem 1rem;
    box-sizing: border-box;
}
.filter-group:hover .dropdown-menu
{
    display:flex;
    opacity: 1;
}
.filter-group 
{
    position:relative;
}
.dropdown-menu a:hover,
.filter-group .dropdown-menu a.active
{
    color: #3EA446;
}
.filter-group:before
{
    content:'';
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:1rem;
    
}
.product-item__btns
{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    padding-bottom: 1.5rem;
}
.product-item__btns .btn
{
    font-size: .75em;
    padding: .5rem .625rem;
    line-height: 1;
    min-height: auto;
    color: #555;
    border-color: #555;
    text-transform: uppercase;
    display:flex;
    align-items:center;
    justify-content:center;
    gap: .25rem;
    position: relative;
}
.product-viewmore .btn
{
    padding-right:1.75rem;
    border: none;
}
.product-viewmore .icon.info
{
    width:.875rem;
    position: absolute;
    right: 0rem;
}
.product-item__btns .btn:hover,
.product-item__btns .btn:focus
{
   background: var(--color--primary);
    border-color: var(--color--primary);
    color: #fff;
}
.product-item__btns .btn:hover i,
.product-item__btns .btn:focus i
{
    filter:invert(1)
}

.heading
{
    background-color: #EAEAEA;
    color: #12492F;
    padding: .35rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: .75rem 0;
    display:block;
    font-size:1rem;
}

.carousel--style1.owl-theme .owl-nav {
  position: absolute;
  top: -4.375rem;
  right: 0rem;
  margin: 0;
}

.carousel--style1.owl-theme .owl-nav button {
  margin: 0 .5rem;
}

.carousel--style1.owl-theme .owl-nav button:last-child {
  margin-right: 0;
}

.carousel--style1 .nav-btn {
  width: 3.375rem;
  height: 3.375rem;
  background: #449350;
  padding: .75rem;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel--style1 .nav-btn img {
  width: 1.5rem;
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.carousel--style1.owl-theme .owl-nav .disabled {
  opacity: 1;
}

.carousel--style1 .disabled .nav-btn {
  background: transparent;
  border: thin solid #449350;
}

.carousel--style1 .disabled .nav-btn img {
  -webkit-filter: none;
          filter: none;
}

.carousel--style1 .nav-btn.prev-nav {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.carousel--style1.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.carousel--style1 .owl-nav > :not(.disabled):hover img {
  -webkit-animation: bounce-arrow .5s ease-in-out;
          animation: bounce-arrow .5s ease-in-out;
}

.related-posts .carousel--style1 .owl-stage-outer {
  width: calc(78.75rem + (100vw - 78.75rem)/2);
  width: 100%;
}

.carousel--style1 .owl-dots {
  display: none;
}

/* Product */
.product {
  padding: 2.625rem 0 3.25rem;
  min-height: 40rem;
}

.product-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3.125rem 0 0;
}
.has-brand-filter
{
    margin-top:5rem;
}
.product-tabs__title {
  position: absolute;
  background: #004125;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
  -webkit-transform: rotate(-90deg) translate(-100%, 0);
  transform: rotate(-90deg) translate(-100%, 0);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  transform: rotate(90deg) translate(-0.92rem, -50%);
}
.product-tabs__title span
{
    position:relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: .75rem 1.5rem .75rem 1.5rem;
}
.product-tabs__title span:before
{
    content: "";
    position: absolute;
    right: 100%;
    top: -40%;
    width: 0;
    height: 0;
    border-bottom: 1rem solid #004125;
    border-left: 1rem solid transparent;
    transform: rotate(0deg) translate(100%, 50%);
}
.product-tabs__title:before {
  
  content: "";
  position: absolute;
    left: 100%;
    bottom: 50%;
    width: 0;
    height: 0;
    border-left: 1.8125rem solid transparent;
    border-right: 1.8125rem solid transparent;
    border-bottom: 1.5rem solid #004125;
    transform: rotate(90deg) translate(20%, 72%);
 
  
}

.product-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-start;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: calc(100% - 19.75rem);
  position: relative;
}

.tabs-list {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 17.75rem;
  padding: 0;
  margin: 0;
  background: #3EA446;
  list-style-type: none;
  padding: 0 0 0 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 2rem;
  min-height: 21.875rem;
  padding-bottom: 2rem;
}

.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-item {
  -ms-flex-preferred-size: calc((100% - 2rem*3)/4);
      flex-basis: calc((100% - 2rem*3)/4);
  max-width: calc((100% - 2rem*3)/4);
  margin-right: 2rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.product-item:nth-child(4n+4) {
  margin-right: 0;
}

.tab-item {
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #449350;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.tab-item::after {
  content: '';
  /* background: #2D925A; */
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.3, 1, 0.8, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.3, 1, 0.8, 1);
  transition: transform 0.35s cubic-bezier(0.3, 1, 0.8, 1);
  transition: transform 0.35s cubic-bezier(0.3, 1, 0.8, 1), -webkit-transform 0.35s cubic-bezier(0.3, 1, 0.8, 1);
}

.tab-item.open:after,
.tab-item.active:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.tab-item.open .tab-title,
.tab-item.active .tab-title {
  color: #fff;
}
.tab-item.active > .tab-title,
.tab-item.open > .tab-title
{
    color:#124a2f;
   
}
.tab-item.active > .tab-title .tab-caret
{
    filter: none;
}
.product-filter {
  margin: 0 0 2rem;
  position: absolute;
  bottom: calc(100% + 0rem);
  /* display: none; */
}

.product-filter-item {
  font-size: .75rem;
  margin: 0 1.5rem;
  text-transform: uppercase;
    display:flex;
    align-items:center;
    justify-content:center;
    
}

.product-filter-item.active {
  font-weight: 500;
  color: #449350;
}

.product-item__title {
  font-size: .875rem;
  text-align: center;
  font-weight: 400;
  margin: .5rem 0 1rem;
  /* font-size: 1rem; */
  font-weight: 500;
}

.tab-item .tab-title {
  padding: .875rem 2.25rem .875rem 1rem;
  display: block;
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #fff;
    font-weight:600;
}

.sub-tabs-list .tab-item .tab-title {
  padding: .5rem 1rem;
  padding-left: 1rem;
  position: relative;
  font-size: .9125rem;
}
.tab-item .tab-title span:not(.tab-caret)
{
    position:relative;
    display: inline-block;
}
/* .tab-item .tab-title span:after
{
    content:'';
    position:absolute;
    left:0;
    bottom: -.5rem;
    width:100%;
    height: 0% !important;
    border-bottom:thin solid #fff;
    top: unset;
} */

.sub-tabs-list .sub-tabs-list .tab-item .tab-title 
{
    font-weight:400;
    font-size: .875rem;
}
.tab-caret {
  /* position: absolute;
  background-image: url(../images/chevron.svg);
  background-size: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  height: 2rem;
  right: .5rem;
  top: .875rem;
  -webkit-transition: all .25s;
  transition: all .25s;
  padding: .5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  filter: brightness(0) invert(1); */
  display: inline-block;
  margin-left: .255rem;
  vertical-align: .255rem;
  content: "";
  border-top: .3rem solid;
  border-right: .3rem solid transparent;
  border-bottom: 0;
  border-left: .3rem solid transparent;
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.tab-caret:after
{
    content:'';
    position:absolute;
    right:-1rem;
    top:0;
    width:3rem;
    height:2rem;
    transform:translateY(-50%);
}
.sub-tabs-list {
  padding: 0 0 0 0;
  list-style-type: none;
  margin: 0 0 0;
  display: none;
  position: relative;
  z-index: 2;
  /* background: linear-gradient(233.07deg, #3E9C57 35.46%, #97C35E 111.02%); */
}
.open > .sub-tabs-list,
.active > .sub-tabs-list
{
    display:block;
}
.sub-tabs-list.active {
  display: block;
}

.sub-tabs-list .has-childs.open .tab-caret,
.has-childs.open .tab-caret {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.has-childs.active .tab-caret {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}

.sub-tabs-list .tab-item {
  color: #fff;
  font-size: .875rem;
  padding: .725rem 1.75rem .725rem 1.25rem;
  list-style-type: none;
  position: relative;
  padding: 0;
  padding-left: 1rem;
}

.sub-tabs-list .tab-item:before {
  content: '';
  position: absolute;
  width: .325rem;
  height: .325rem;
  background: #fff;
  border-radius: 50%;
  top: calc(50% + .125rem);
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: none;
}

.sub-tabs-list .tab-item:after {
  position: absolute;
  top: 0;
  left: -12rem;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.15)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%);
  z-index: -1;
}

.tab-item.active:after {
  animation: shine 3.75s linear infinite;
}

.tab-item span:before {
  content: '';
  position: absolute;
  width: .25rem;
  height: 100%;
  left: -1.75rem;
  top: 0;
  background: #FFFFFF;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.sub-tabs-list .tab-item span:before
{
     left: -2.75rem;
}
.sub-tabs-list .sub-tabs-list .tab-item span:before
{
     left: -3.75rem;
}
.tab-item:not(:first-child):not(:last-child) span:before {
  height: calc(100% + .25rem);
}

.tab-item.active > a >  span:not(.tab-caret):before,
.tab-item:hover > a >  span:not(.tab-caret):before{
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.sub-tabs-list .tab-item .tab-caret {
  padding-top: .25rem;
  top: 50%;
  transform: translateY(-50%);
  transform: rotate(-90deg);
}

.sub-tabs-list .tab-item:last-child span {
  padding-bottom: .25rem;
}

.product-navs {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: -6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          display: none;
}

.product-nav {
  width: 3.375rem;
  height: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: thin solid #449350;
  -webkit-transition: all .25s;
  transition: all .25s;
}

.product-nav span {
  display: none;
}

.product-nav img {
  width: 1.5rem;
}

.product-nav.prev-nav {
  margin-bottom: 1.25rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-nav:hover {
  background: #449350;
}

.product-nav:hover img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.product-nav.hide {
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
  opacity: 0;
}
.product-tabs .search-not-found-wrapper
{
    padding:0;
}
.brand-filter img
{
    height: 3.25rem;
    width:auto;
}
.brand-filter:not(.active):not(:hover) img
{
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .35;
}
.product-filter
{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
}
.product-info
{
    max-height:calc((80vh - 2*3rem));
}
.product-expert
{
     /* scroll-behavior: smooth; */
     /* overflow-y:auto; */
     max-height: 100%;
}
.brand-filter-group
{
    cursor:pointer;
}
.brand-filter-group .dropdown-menu
{
    padding: .5rem 0;
    top: 100%;
}
.brand-filter-group .dropdown-menu a
{
    margin:0;
    white-space: nowrap;
    padding: .3125rem 1rem;
}
.image-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    pointer-events: none;
    z-index: 9998;
}

.image-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    opacity: 0;
    pointer-events: none;
    background: #fff;
    width: 90%;
    max-width: 60rem;
    border-radius: 0;
    z-index: 9999;
}

.popup-close {
    position: absolute;
    top: .625rem;
    right: .875rem;
    font-size: 1.5rem;
    background: none;
    border: 0;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    background: #066836;
    border-radius: 50%;
   
    
}
.popup-close:before
{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
     background-image:url(../images/close.svg);
    background-size:1.5rem;
    background-position:center;
    background-repeat:no-repeat;
    filter:brightness(0) invert(1) ;
}
.image-popup .popup-content
{
   display:flex;
}
.image-popup .popup-content img
{
    width:100%;
    height:auto;
}

/* Certificates */
.certificates {
  padding: 2.5rem 0 3.75rem;
  padding: 3rem 0;
  /* background-color:#f1f3f4; */
  background-image:url(../images/bg-certificate.jpg);
  background-size: cover;
  background-position:center top;
  background-repeat:no-repeat;
  position: relative;
}

.certificates-inner {flex-wrap: wrap;}

.certificates-inner .section-title-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}

.section-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.75rem;
}

.certificates-list {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-preferred-size: calc(50% + 1.5rem);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.certificate-item {
 
}

.certificate-info {
  padding: .5rem 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.certificate-image {
  max-width: unset;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #FEFEFE;

}
.certificate-image img
{
    border:Thin solid #ccc;
}
.certificate-title {
  color: #449350;
  font-weight: 500;
  display: block;
  margin: 0 0 1rem;
  font-size: 1.125rem;
  text-align: center;
  display: none;
}

.certificates-subtitle {
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
}

.certificate-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.certificates .carousel--style1.owl-theme .owl-nav {
  bottom: 1.3125rem;
  top: auto;
  left: 6rem;
  right: auto;
}

.certificates .carousel-counter {
  position: absolute;
  bottom: 2.3125rem;
  right: calc(50% - 3.25rem - 2.25rem);
}

.rect-dots.abs-icon {
  width: 2.625rem;
  right: 6rem;
  border: 8rem;
}

.circle-dots.abs-icon {
  width: 26rem;
  height: auto;
  left: -.5rem;
  bottom: 0;
  opacity: .7;
  margin: auto;
  z-index: -1;
}

.certificates .section-title
{
    text-align:center;
}
.certificates .owl-carousel .owl-stage {
    margin: 0 auto; 
}
.product-main-inner
{
    flex-direction:column;
}
.product-nav-list
{
    display:flex;
    gap: 1.5rem;
    flex-wrap:wrap;
    justify-content:center;
    margin: 1.5rem 0;
    padding: 0 10%;
}
.product-nav-list a
{
    display:flex;
    align-items:center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    border-radius: 2.5rem;
    padding: .5rem 1.25rem;
    position: relative;
    background: #fff;
    color: #555;
    border:.125rem solid #555;
    min-width:6rem;
}

.product-nav-list a img
{
    height:2.5rem;
    filter: brightness(0%) invert(33%) sepia(0%) saturate(1%) hue-rotate(148deg) brightness(93%) contrast(86%);
    width: 2.5rem;
}
.product-main
{
    padding-bottom:3rem;
}
.product-nav-list a:hover
{
    background-image: linear-gradient(#0a6837, #0a6837);
    color: white;
    border-color:#0a6837;
}
.product-nav-list a:hover img
{
    filter:none;
}
.product-nav-list a span {
    font-size: .8125em;
    font-weight: 500;
}
.product-item-section
{
   background-color: #eeeeef;
}
.product-item-section__content
{
    flex:none;
    width:50%;
    text-align:left;
    padding:2rem 0;
    padding-right: 1rem;
    box-sizing:border-box;
}
.product-item-section__content .section-title
{
    font-size: 1.625rem;
    color: #58595b;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    margin-bottom: .75rem;
    white-space: nowrap;
}
[lang="en-GB"] .product-item-section__content .section-title
{
    white-space:normal;
}
.product-item-section__content ul {
  counter-reset: section;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 0;
}

.product-item-section__content ul li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding-left: 2.5rem;
  margin-bottom: .3125rem;
}

.product-item-section__content ul li:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: 0;
  background: linear-gradient(0deg, #a9d15e 0%, #43ad49 65%, #2db059 100%);
  width: 1.65rem;
  aspect-ratio: 1/1;
  justify-content: center;
  display: flex;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid white;
  color: white;
  font-weight: bold;
  font-size: .75rem;
  align-items: center;
}
.product-item-section__content .section-description
{
    line-height:1.6;
}
.product-item-section__content .section-description .btn
{
    text-transform:uppercase;
}
.product-item-section__image
{
    min-width:calc((71.875rem - 2rem) * .5 + (100vw - 71.875rem)/2);
    position: relative;
    left: 0;
}
.product-item-section__image img
{
    height:100%;
    object-fit:cover;
}
.product-item-section-inner
{
    justify-content:flex-start;
    align-items: unset;
}
.product-item-section .banner-video-btn
{
    background: #3EA446;
    width: 7rem;
    height: 3rem;
    border-radius: 1.5rem;
    bottom: 2rem;
    left: 2rem;
    transform: none;
    top: unset;
    font-weight: bold;
    font-size: .875rem;
    text-transform: uppercase;
    color: #fff;
    border-width: .125rem;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all .25s;
}
.product-item-section .banner-video-btn img
{
    height:2rem;
    margin-right:.25rem;
    filter:invert(1);
    width:auto;
     transition:all .25s;
}
.product-item-section .banner-video-btn:hover
{
    background:#fff;
    border-color:#fff;
    color:var(--color--primary);
}
.product-item-section .banner-video-btn:hover img
{
   filter: invert(57%) sepia(19%) saturate(1561%) hue-rotate(74deg) brightness(91%) contrast(80%);
}
.product-item2-section
{
    padding:3rem 0;
}

.archive-header {
  margin: 0 0 2.5rem;
  width: 100%;
}

.archive-title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 2.25rem;
  margin: 0;
}
.tax-danh-muc-san-pham .archive-title
{
    font-weight:700;
}
.featured-tag__link {
  margin: 0 .5rem 1rem 0;
}

/* Search */
.search-title {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  margin: .25rem 0 1rem;
}

.keyword {
  text-transform: none;
  font-weight: 500;
  font-size: 1.25rem;
}

.search-other {
  position: absolute;
  right: 0;
  top: 0;
  text-transform: uppercase;
  font-size: .9375rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search-other img {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 1rem;
}

.archive-header {
  position: relative;
}

.search__filters {
  margin: -1rem 0 2rem;
  overflow-x: auto;
  white-space: nowrap;
}

.search__filters .btn {
  text-transform: uppercase;
}

.search__filters .btn:not(:first-child) {
  margin-left: 1rem;
}
.product-detail
{
    margin-bottom:3rem;
}
.product-detail .product-info
{
    max-height:unset;
}

.dt-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0;
}

.page-numbers {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: thin solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 300;
  font-size: .875rem;
  line-height: 0;
  background: #fff;
}

.page-numbers:not(:first-child) {
  margin-left: .75rem;
}

.page-numbers.next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition-duration: .05s;
          transition-duration: .05s;
}

.page-numbers.prev {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: .05s;
          transition-duration: .05s;
}

.page-numbers.next img,
.page-numbers.prev img {
  width: .75rem;
}

.page-numbers.current,
.page-numbers:hover {
  color: #2D925A;
  border-color: #2D925A;
  background: #fff;
}

.page-numbers.next:hover img,
.page-numbers.prev:hover img{
  -webkit-filter: invert(49%) sepia(11%) saturate(2244%) hue-rotate(94deg) brightness(93%) contrast(93%);
  filter: invert(49%) sepia(11%) saturate(2244%) hue-rotate(94deg) brightness(93%) contrast(93%);
  -webkit-transition: none;
  transition: none;
}

@media screen and (max-width: 1023px) {
  /* Animation */
  @-webkit-keyframes slideInRight {
    from {
      -webkit-transform: translate3d(15rem, 0, 0);
              transform: translate3d(15rem, 0, 0);
      visibility: visible;
      opacity: 0;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  @keyframes slideInRight {
    from {
      -webkit-transform: translate3d(15rem, 0, 0);
              transform: translate3d(15rem, 0, 0);
      visibility: visible;
      opacity: 0;
    }
    to {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }
  /* Banner */
  .banner-content {
    font-size: 1.857rem;
    left: 1.28rem;
    bottom: 2.428rem;
    line-height: 1.2;
  }
  .banner .owl-theme .owl-dots {
    bottom: 1.5rem;
    left: 1.28rem;
  }
  .banner_video,
  .banner_video img,
  .banner_video .video-fullscreen {
    min-height: 15rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-video-btn {
    width: 3rem;
    height: 3rem;
    z-index: 2;
    border-width: .125rem;
    top: 1rem;
    -webkit-transform: none;
            transform: none;
    left: auto;
    right: 1rem;
  }
  .banner-video-btn svg {
    width: 1.75rem;
  }
  .banner .owl-theme .owl-dots .owl-dot span {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  
  /* Testimonial */
  .testimonial {
    padding: 3.14rem 0;
  }
  .testimonial .section-title {
    left: auto;
    width: 100%;
    top: 20rem;
  }
  .testimonial .owl-item.tes-active,
  .testimonial .owl-item.active,
  .testimonial .owl-item {
    width: calc(100vw*.896) !important;
  }
  .testimonial-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .testimonial-item.active .testimonial-image,
  .testimonial-item .testimonial-image {
    margin: 0 auto 5rem;
    width: 18.42rem;
    height: 18.42rem;
  }
  .testimonial__button {
    text-align: center;
  }
  .testimonial .owl-theme .owl-nav {
    margin: 0;
    position: absolute;
    top: 9rem;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .testimonial .owl-theme .owl-nav .owl-prev {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .testimonial .owl-theme .owl-nav button {
    margin: 0;
  }
  .testimonial .owl-theme .owl-nav button:hover,
  .testimonial .owl-theme .owl-nav button:focus {
    background: transparent;
  }
  /* Product */
  .product .section-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }
  
  .product-contact {
    padding: .75rem 1.5rem;
    font-size: .75rem;
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
  .product {
    padding: 3.25rem 0;
  }
  .pdot1.abs-icon {
    width: 10rem;
  }
  .pdot2.abs-icon {
    bottom: -15rem;
    z-index: -1;
    width: 4rem;
  }
  .product-item__image {
    max-width: 75%;
    margin: auto;
    width: 16.375rem;
    height: 16.375rem;
  }
  .pcircle {
    width: 16.375rem;
    height: 16.375rem;
  }
  .product-list .owl-stage-outer {
    padding-bottom: 3rem;
  }
  body .product-contact {
    bottom: .5rem;
  }
  /* Export */
  .food-export {
    padding: 32rem 0 3.7rem;
    background-size: 100%;
  }
  .food-export-inner {
    padding: 0;
  }
  .export_locations {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .export_location-item {
    -ms-flex-preferred-size: calc((100% - 5.1rem)/3);
        flex-basis: calc((100% - 5.1rem)/3);
    margin-right: 1.7rem;
    margin-bottom: 3.85rem;
  }
  .food-export .rect-dots.abs-icon {
    display: none;
  }
  .export_location-item:nth-child(4),
  .export_location-item:nth-child(5) {
    margin-right: 5rem;
  }
  .export_location-item:nth-child(4),
  .export_location-item:nth-child(7) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .food-export.food-export-simg {
    padding: 34rem 0 3.7rem;
  }
  .food-export-simg .export_locations {
    margin-top: 3rem;
  }
  #vertical-navs {
    display: none;
  }
  .food-export .section-title,
  .export_location__image svg {
    -webkit-transform: none;
            transform: none;
  }
  .export_locations-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .export_locations-item {
    margin: 0 0 1.25rem;
  }
  /* Images */
  .hcircle.abs-icon,
  .tsdots.abs-icon {
    display: none;
  }
  .images .owl-theme .owl-dots {
    width: 100%;
  }
  .images .owl-theme .owl-nav {
    bottom: auto;
    top: 50%;
    -webkit-transform: none;
    transform: translateY(-50%);
    margin: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .images-carousel.owl-carousel .owl-item {
    padding: 3.5rem 0 3.5rem;
  }
  .images {
    padding: 3rem 0;
  }
  .sdots.abs-icon {
    left: auto;
    right: 0;
    top: -1.5rem;
  }
  .image-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1.42rem 0 0;
  }
  .image-box__content-wrap {
    width: 20.357rem;
    height: 20.375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: -.57rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ellip-bg {
    width: 20.357rem;
    height: 20.357rem;
  }
  .image-box__content {
    font-size: 1.28rem;
  }
  .image-box__subtitle {
    font-size: 1rem;
    width: 100%;
  }
  .images .images-carousel .owl-stage-outer {
    width: 100%;
  }
  .owl-item:not(.active) .image-item {
    opacity: 0;
  }
  .ellip-bg:before {
    background-image: url(../images/Ovalm.svg);
    height: 100%;
    background-size: 73.5% 100%;
    background-position: calc(100% + 0.125rem);
  }
  .image-box__subtitle::before {
    width: calc(100% + (100vw*.896)/2);
    background-image: url(../images/Lineimg.svg);
    height: .25rem;
  }
  .image-box__img img {
    height: 19rem;
  }
  .images .owl-nav .next-nav {
    right: -1.35rem;
    left: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
    top: 2.875rem;
    border: none;
  }
  body .product-list {
    width: 100%;
  }
  .product-item__title-wrap {
    padding: 0;
  }
  body .product .owl-carousel .owl-stage {
    margin-left: 0;
  }
  .product-item__image {
    width: 100%;
    max-width: unset;
    height: calc(100vw + 2rem);
  }
    .archive-title, h1.section-title
    {
        font-size: 1.75rem;
    }
    .section-title
    {
        margin-bottom:1rem;
        font-size: 1.5rem;
    }
    .section-description
    {
        margin-top:1rem;
    }
    .product-nav-list a
    {
        width:100%;
        gap: .5rem;
        white-space: nowrap;
    }
    [lang="en-GB"] .product-nav-list a
    {
        white-space:normal;
        /* text-align:center; */
    }
    #animal-and-poultry-feed .section-title
    {
        font-size:1.375rem;
        white-space:nowrap;
    }
    .product_cat-filter .btn
    {
        min-height:2.7rem;
    }
    .product-nav-list a span
    {
        font-size:.75rem;
    }
    .product-nav-list a img
    {
        height:2rem;
    }
    .product-nav-list
    {
        gap:.5rem;
        margin: 0;
    }
    .product-item-section__content
    {
        width:100%;
        order:2;
        background:#066836;
        padding:1.5rem;
    }
    .product-item-section__content *,
    .product-item-section__content a
    {
        color:#fff;
        border-color:#fff
    }
    .product-item-section__image
    {
        min-width:unset;
        width:100%;
    }
    .product-item-section
    {
        background:transparent;
    }
    .product-item-section__content .section-title
    {
        white-space:normal;
        font-size:1.5rem;
        color:#fff;
    }
    .product {
    padding-bottom: 2.25rem;
    padding-top: 2rem;
  }
  .product-tabs__title {
    display: none;
  }
  /* ===== SINGLE FAKE SELECT ===== */
.tabs-list-wrap {
  position: relative;
  max-width: 100%;
  border: thin solid #dcdcdc;
  border-radius: 1.5rem;
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: unset;
  height: 2.5rem;
  margin-bottom:1.5rem;
}
.tabs-list-wrap .label {
  display:block;
  height:100%;
  width:100%;
  padding: .65rem 1.5rem;
  height: 100%;
  font-size: .875rem;
  box-sizing: border-box;
}
    .tabs-list-wrap .label:before
    {
        display: inline-block;
        margin-left: .255rem;
        vertical-align: .255rem;
        content: "";
        border-top: .3rem solid;
        border-right: .3rem solid transparent;
        border-bottom: 0;
        border-left: .3rem solid transparent;
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
    }

/* SELECT BOX */
.tabs-list {
  border: thin solid #dcdcdc;
  border-radius: .5rem;
  background: #fff;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: unset;
  max-height:0;
  opacity:0;
  position:absolute;
  z-index: -1;
  top: calc(100% + .25rem);
}
.show .tabs-list
    {
        max-height:40vh;
        opacity:1;
        overflow-y:auto;
        height: auto;
        z-index: 22;
    }
/* ACTIVE ITEM = SELECT VALUE */
.tabs-list > .tab-item.active > .tab-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* CARET */
.tab-caret {

  transition: .25s;
}

/* OPEN CARET */
.tabs-list-wrap.open .tab-caret {
  transform: rotate(-90deg);
}

/* OPTIONS */


/* OPEN DROPDOWN */
.tabs-list-wrap.open .tab-item {
  display: block;
  border-top: 1px solid #eee;
}

/* LINKS */
.tab-item.open .tab-title, .tab-item.active .tab-title,
.tab-item .tab-title  {
  display: block;
  padding: .7rem 1rem;
  text-decoration: none;
  color: #222;
    font-weight:400;
}
.tab-item.open .tab-title, .tab-item.active .tab-title
    {
        color:var(--primary-color);
          font-weight:400;
    }
.tabs-list a:hover {
  background: #f3f6f4;
}

/* SUB MENU */
.sub-tabs-list {
  padding-left: 1rem;
}

.sub-tabs-list a {
  font-size: .95rem;
}


  .product-filter-item {
    margin: 0 .25rem;
  }
  .product-filter-item:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .product-item {
    -ms-flex-preferred-size: calc((100% - 1.7rem)/2);
        flex-basis: calc((100% - 1.7rem)/2);
    max-width: calc((100% - 1.7rem)/2);
    margin-right: 1.7rem;
  }
  .product-item:nth-child(2n+2) {
    margin-right: 0;
  }
  .product .abs-icons {
    display: none;
  }

  .product-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-content > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }
  .product-content > .product-image {
    padding: 0 2rem;
    margin-bottom: 1.42rem;
    width: 100%;
  }
    

  .product-title {
    font-size: 1rem;
  }
  .product-expert {
    font-size: .85rem;
  }
  .product-contact {
    padding: .75rem 1.5rem;
    font-size: .75rem;
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-right: auto;
    margin-left: auto;
  }
  .tab-item.open:not(.active):after {
    content: none;
  }
  .product-navs {
    right: auto;
    top: auto;
    bottom: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
    .page-template-san-pham .product-navs
    {
        display:none;
    }
  .product-nav span {
    display: block;
    font-size: .85rem;
    text-transform: uppercase;
  }
  .product-nav img,
  .product-nav.prev-nav {
    display: none;
  }
  .product-nav {
    width: auto;
    height: auto;
    padding: .65rem 1.75rem;
    border-radius: 1.5rem;
    background: #449350;
    color: #fff;
  }
  .sub-tabs-list {
    padding: 0;
  }
  .tab-item .sub-tabs-list .tab-title {
    color: #555;
    font-size: .725rem;
   
  }
  .sub-tabs-list .tab-item {
    padding: 0 .5rem;
    color: #555;
  }
  
    .product-filter
    {
        flex-wrap:wrap;
        gap: 1.5rem;
        min-width: calc(100vw*.896);
        right: 0;
        row-gap: .5rem;
        padding: 0 10%;
        box-sizing: border-box;
        margin-bottom: 1rem;
        position: relative;
    }
    .brand-filter img
    {
        height:2.5rem;
    }
    .product-tabs
    {
        flex-wrap: wrap;
        margin-top: 0;
    }
    .product-list-wrapper
    {
        max-width:100%;
    }
    .search-not-found__notice
    {
        font-size:.875rem;
    }
    .brand-filter-group .dropdown-menu
    {
        min-width:8rem;
    }
    .product-cats-child
    {
        padding-right:.5rem;
        gap: .3125rem;
    }
    .product-item-section .banner-video-btn
    {
        left: 1rem;
        bottom: 1rem;
        height: 2.5rem;
        width: 6rem;
        font-size: .75rem;
    }
    .product-item-section .banner-video-btn img
    {
        height:1.5rem;
    }
    .product-cat__item-title
    {
        padding:0;
    }
    .related-product-cat .carousel--style1 .owl-dots
    {
        display:block;
    }
    .related-product-cat .section-title
    {
        margin-bottom:2rem;
    }
    .tax-danh-muc-san-pham .category-section
    {
        padding:2rem 0;
    }
    .product-item__image img
    {
        height: 11.42rem;
    }
}

@media screen and (min-width: 1600px) {
  .banner-line svg {
    width: calc(67.75*1.041666666vw);
    height: calc(100% - 0rem);
    -webkit-transform: translateY(-1.625rem);
            transform: translateY(-1.625rem);
  }
  .ellipse {
    left: calc(.75*1.041666666vw);
  }
}

@media screen and (min-width: 1920px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 3.5rem);
    -webkit-transform: translateY(-3.75rem);
            transform: translateY(-3.75rem);
  }
  .ellipse {
    left: calc(4.25*1.041666666vw);
    width: calc(49.8*1.04758666666vw);
  }
  .images .images-carousel .owl-stage-outer {
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (min-width: 2048px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 9.75rem);
    -webkit-transform: translateY(-7.125rem);
            transform: translateY(-7.125rem);
  }
  .ellipse {
    left: calc(6.125*1.041666666vw);
    width: calc(47.8*1.04758666666vw);
  }
}

@media screen and (min-width: 2280px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 10.125*1.041666666vw);
    -webkit-transform: translateY(calc(-6.5*1.041666666vw));
            transform: translateY(calc(-6.5*1.041666666vw));
  }
  .ellipse {
    left: calc(8*1.041666666vw);
    width: calc(45.8*1.04758666666vw);
  }
}

@media screen and (min-width: 2800px) {
  .banner-line svg {
    width: calc(67.725*1.041666666vw);
    height: calc(100% + 12.5*1.041666666vw);
    -webkit-transform: translateY(calc(-7.5*1.041666666vw));
            transform: translateY(calc(-7.5*1.041666666vw));
  }
}

@media screen and (min-width: 3072px) {
  .banner-line svg {
    width: calc(69.125*1.021666666vw);
    height: 70.25rem;
    -webkit-transform: translateY(-18.5rem);
            transform: translateY(-18.5rem);
  }
  .ellipse {
    left: calc(19.2*1.041666666vw);
    width: calc(32.8*1.04758666666vw);
  }
}

/* Fix for touch device */
@media only screen and (max-width: 1366px) and (min-width: 768px) {
  .touch .food-export {
    background-size: 100%;
  }
}
/*# sourceMappingURL=tpxk.css.map */