/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 33, 33, 33;
  --color-dark-two: 34, 34, 34;
  --color-default: 82, 87, 92;
  --color-main-green: 169, 204, 6;
  --color-green: 177, 201, 65;
  --color-main-orange: 239, 130, 0;
  --color-orange: 255, 134, 50;
  --color-gray: 160, 164, 168;
}


::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #EBEBEB;
  margin: 10px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #EBEBEB;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

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

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Open Sans';
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(var(--color-default));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-size: 48px;
  line-height: 64px;
}

h2 {
  font-size: 40px;
  line-height: 52px;
}

h3 {
  font-size: 40px;
  line-height: 50px;
}

h4 {
  font-size: 32px;
  line-height: 40px;
}

h5 {
  font-size: 28px;
  line-height: 32px;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 21px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 20px;
}

.text-xl {
  font-size: 24px;
  line-height: 32px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-dark-two {
  color: rgb(var(--color-dark-two));
}

.color-default {
  color: rgba(var(--color-default));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-main-orange {
  color: rgb(var(--color-main-orange));
}

.color-orange {
  color: rgb(var(--color-orange));
}

.color-main-green {
  color: rgb(var(--color-main-green));
}

.color-green {
  color: rgb(var(--color-green));
}

.color-gray {
  color: rgb(var(--color-gray));
}

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

.bg-white {
  background-color: rgb(var(--color-white));
}

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 4px;
  border: 1px solid #F1F1F1;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #F1F1F1;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #F1F1F1;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #FFFFFF;
  border: 1px solid #E9E7EC;
}


/* ========== Button ========== */

.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  transition: all 100ms ease-in-out;
}

.btn:hover {
  color: rgb(var(--color-white));
}

.btn:active {
  outline: 0;
}

.btn-border {
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-white));
  font-weight: 600;
}

.btn-border:hover {
  transform: translateY(-8px);
  background-color: rgb(var(--color-main-orange));
}

.btn-border::before,
.btn-black::before {
  content: '';
  left: 5%;
  position: absolute;
  width: 90%;
  height: 31px;
  bottom: -5px;
  background: #E18632;
  opacity: 0.5;
  filter: blur(8px);
  border-radius: 80px;
  visibility: hidden;
  z-index: -1;
}

.btn-border:hover::before {
  visibility: visible;
}

.btn-black {
  background-color: rgb(var(--color-dark));
  color: rgb(var(--color-white));
  font-weight: 600;
}

.btn-black:hover {
  transform: translateY(-8px);
  background-color: rgb(var(--color-main-orange));
}

.btn-black.green-hover::before {
  background: #A9CC06;
}

.btn-black.green-hover span {
  display: inline-block;
  position: relative;
  transition: all 100ms ease-in-out;
  transform: translateY(1px);
}

.btn-black:hover::before {
  visibility: visible;
}

.btn-black.green-hover:hover {
  transform: none;
  background-color: rgb(var(--color-main-green));
}

.btn-black.green-hover:hover span {
  transform: translateY(-2px);
}

.btn-zooms {
  background-color: rgb(var(--color-dark-two));
  color: rgb(var(--color-main-orange));
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
}

.header:hover,
.header.scrolled,
.header.invert {
  background: rgb(var(--color-white));
  box-shadow: 0px 2px 12px rgba(9, 12, 59, 0.06);

}

.header-inner {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-right {
  width: 20%;
}

.header-center {
  width: 60%;
}

.logo img {
  height: 70px;
  display: inline-block;
  transition: all 100ms ease-in-out;
  filter: brightness(0)invert(1);
}

.header:hover .logo img,
.header.scrolled .logo img,
.header.invert .logo img {
  filter: none;
}

.main-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.main-menu .link-menu {
  color: rgb(var(--color-white));
  position: relative;
}

.main-menu .link-menu {
  color: rgb(var(--color-white));
  position: relative;
}

.header.invert .main-menu .link-menu.active {
  color: rgb(var(--color-main-orange));
}

.main-menu .link-menu::before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: rgb(var(--color-main-orange));
  position: absolute;
  left: 50%;
  bottom: 0;
  border-radius: 50%;
  transition: all 100ms ease-in-out;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  visibility: hidden;
}

.main-menu .link-menu.no-balls::before {
  display: none;
}

@keyframes bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
  }

  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
  }

  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
  }
}

.main-menu .link-menu:hover::before {
  cursor: pointer;
  animation-name: bounce;
  -moz-animation-name: bounce;
  visibility: visible;
  bottom: -10px;
}

.main-menu .link-menu:hover,
.header.scrolled .link-menu:hover,
.header.invert .link-menu:hover {
  color: rgb(var(--color-main-orange));
}

.header:hover .link-menu,
.header.scrolled .link-menu,
.header.invert .link-menu {
  color: rgb(var(--color-dark-two));
}

.header:hover .link-menu:hover,
.header.scrolled .link-menu:hover,
.header.invert .link-menu:hover {
  color: rgb(var(--color-main-orange));
}

.right-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0px;
}

.btn-search,
.btn-lang {
  color: rgb(var(--color-white));
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 5px;
}

.img-lang {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.img-lang img {
  height: 20px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.btn-lang:hover,
.btn-lang:focus,
.btn-lang:active,
.btn-lang.show,
.btn-lang:first-child:active,
:not(.btn-check)+.btn-lang:active {
  border-color: transparent;
  color: rgb(var(--color-white));
}

.header:hover .btn-lang,
.header.scrolled .btn-lang,
.header.invert .btn-lang {
  color: rgb(var(--color-dark-two));
}

.header:hover .btn-search,
.header.scrolled .btn-search,
.header.invert .btn-search {
  color: rgb(var(--color-main-green));
}

.header:hover .btn-border,
.header.scrolled .btn-border,
.header.invert .btn-border {
  border-color: rgb(var(--color-dark-two));
  background: rgb(var(--color-dark-two));
  color: rgb(var(--color-white));
}

.header:hover .btn-border:hover,
.header.scrolled .btn-border:hover,
.header.invert .btn-border:hover {
  color: rgb(var(--color-white));
  background: rgb(var(--color-main-orange));
  border-color: rgb(var(--color-main-orange));
}

.dropdown-menu.lang {
  min-width: 170px;
  padding: 10px 12px;
  margin: 0;
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-clip: padding-box;
  border: 1px solid #F1F1F1;
  box-shadow: 0px 2px 12px rgba(34, 34, 34, 0.06);
  border-radius: 12px;
}

.dropdown-menu li {
  border-bottom: 1px solid #F1F1F1;
}

.dropdown-menu li:last-child {
  border: 0;
}

.item-link {
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}

.item-link:hover,
.item-link.active {
  color: rgb(var(--color-main-green));
}


/* ========== Menu Mobile ========== */
.mobile-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.mobile-nav.show {
  left: 0;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.nav-header {
  display: flex;
  justify-content: space-between;
}

.social-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding-left: 0;
}

.link-social {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: rgb(var(--color-green));
}

.menu-mobile {
  list-style: none;
  padding-left: 0;
}

.menu-mobile li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-mobile .link-mobile {
  display: inline-block;
  font-weight: 500;
  color: rgb(var(--color-dark));
  padding: 6px 0;
  font-size: 14px;
}

.menu-mobile .link-mobile:hover,
.menu-mobile .link-mobile.active {
  color: rgb(var(--color-main-orange));
}

.logo-menu img {
  max-height: 70px;
}

/* ========== Content ========== */
.hero {
  position: relative;
  height: 100vh;
}

.hero.inner {
  position: relative;
  height: auto;
  background-size: cover;
  background-position: center center;
  aspect-ratio: 16/5;
}

.hero-desc {
  height: 100vh;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 3;
  top: 0;
  left: 0;
}

.hero-desc.inner {
  height: auto;
  aspect-ratio: 16/5;
  width: 100%;
}


@keyframes zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.image-container {
  animation-name: zoom;
  animation-duration: 4s;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  animation-fill-mode: forwards;
  z-index: 2;
  position: relative;
}

.image-container::before,
.hero.inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-container {
  position: relative;
}

.sections {
  padding: 70px 0;
}

.sections.main-section {
  padding-top: 120px;
}

.video-thumb {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.video-thumb.mask::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.btn-popup {
  display: inline-block;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0)invert(1);
  opacity: .3;
}

.btn-popup::before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: -1;
  background: #fff;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.btn-popup:hover {
  filter: none;
  opacity: 1;
}

.btn-popup:hover::before {
  opacity: 1;
}

.title-thumb {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 70%;
}

.thumb-logo {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.title-text {
  width: calc(100% - 40px);
}

.counter {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 50px 0;
  z-index: 3;
}

.counter::before {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: '';
  left: 0;
  top: 0;
  background: linear-gradient(93.31deg, #A9CC06 0%, #435200 100%);
  opacity: 0.9;
}

.row-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-items {
  max-width: 300px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: rgb(var(--color-white));
}

.count {
  font-size: 56px;
  line-height: 68px;
  font-weight: 700;
  display: block;
}

.ico-counter {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 14px;
}

.partner-row {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-item {
  width: calc(20% - 10px);
  aspect-ratio: 4/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-white));
  border: 1px solid #E8E8E8;
  border-radius: 12px;
}

.partner-item img {
  max-width: 80%;
}

.grid-support {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-items {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-white));
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  overflow: hidden;
}

.partner-items:hover {
  border: 1px solid rgba(169, 204, 6, 0.5);
  filter: drop-shadow(0px 2px 12px rgba(169, 204, 6, 0.16));
}

.wrapper-slider-farmer {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  box-shadow: 0px 2px 16px rgba(33, 33, 33, 0.08);
  position: relative;
}

.wrapper-slider-farmer::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../img/bg-before.jpg);
  background-size: contain;
  background-position: left;
  position: absolute;
  width: 500%;
  right: calc(-500% + 80px);
  left: auto;
  height: 100%;
  z-index: 1;
}

.wrapper-slider-farmer::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: left;
  position: absolute;
  width: 500%;
  right: calc(-500% + 80px);
  left: auto;
  height: 100%;
  z-index: 2;
}

.slider-wrapper {
  width: calc(100% - 80px);
}

.nav-farmer {
  width: 80px;
  position: relative;
  display: flex;
  align-items: center;
}

.img-farmer {
  height: 100%;
  position: relative;
}

.img-farmer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thumb-desc {
  height: auto;
  padding: 20px;
  color: rgb(var(--color-white));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 134, 50, 0.8);
}

.thumb-desc p {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-card {
  border: 1px solid rgba(169, 204, 6, 0.5);
  border-radius: 12px;
  padding: 15px;
  height: 100%;
}

.image-card {
  overflow: hidden;
  border-radius: 10px;
}

.image-card.article {
  aspect-ratio: 16/9.5;
}

.image-card.report {
  aspect-ratio: 1/1.1;
}

.image-card.team {
  aspect-ratio: 1/1;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.box-mail {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--color-main-green));
  color: rgb(var(--color-white));
}

.bg-cta {
  background-size: cover;
  background-position: center;
  padding: 20px;
  border-radius: 24px;
}

#learning-tabs .nav-link {
  font-size: 14px;
  font-weight: 400;
  color: rgb(var(--color-gray));
  position: relative;
}

#learning-tabs .nav-link:hover,
#learning-tabs .nav-link.active {
  color: rgb(var(--color-orange));
}

#learning-tabs .nav-link.active {
  font-weight: 600;
}

#learning-tabs .nav-link.active::before {
  background: rgb(var(--color-orange));
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
}

.icon-vimi {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #A9CC06 0%, #435200 100%);
}

.vimi-name {
  width: calc(100% - 64px);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.12em;
  color: rgb(var(--color-dark-two));
}

.box-value {
  box-sizing: border-box;
  background: rgb(var(--color-white));
  border: 1px solid #F1F1F1;
  border-radius: 12px;
  height: 100%;
  position: relative;
}

.icon-value {
  margin-top: -50px;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EF8200 0%, #A65A00 100%);
}

.box-bod {
  box-sizing: border-box;
  background: #FBFBFB;
  border: 1px solid #F1F1F1;
  border-radius: 12px;
  margin-top: 140px;
}

.text-bod {
  position: relative;
  font-style: italic;
  text-align: center;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-top: 10px;
  z-index: 2;
}

.text-bod::before {
  content: '';
  background-image: url(../img/quote.svg);
  background-size: 60px;
  width: 60px;
  height: 60px;
  position: absolute;
  background-position: center center;
  z-index: -1;
  top: -10px;
  right: 50%;
  transform: translateX(50%);
}

.boardM {
  margin-top: -180px;
  padding-top: 80px;
}

.bod-items {
  display: flex;
  justify-content: center;
}

.bod-inner {
  position: relative;
  height: 180px;
  width: 140px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  z-index: 4;
}

.bod-wrapper {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #DBDDE0;
  border: 5px solid #fff;
  z-index: 1;
  position: relative;
}

.green-bod {
  position: absolute;
  width: 143px;
  height: 143px;
  border-radius: 50%;
  background: rgb(var(--color-main-green));
  z-index: 1;
  top: -5px;
  left: -5px;
}

.box-knowledge {
  background: #FFFFFF;
  border-width: 1px;
  border-style: solid;
  border-radius: 12px;
  height: 100%;
}

.box-knowledge.green {
  border-color: rgb(var(--color-main-green));
}

.box-knowledge.orange {
  border-color: rgb(var(--color-main-orange));
}

.box-knowledge ul {
  padding-left: 15px;
  margin-bottom: 0;
}

.icon-knowledge {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -60px;
}

.icon-knowledge.green {
  border: 1px solid rgb(var(--color-main-green));
}

.icon-knowledge.orange {
  border: 1px solid rgb(var(--color-main-orange));
}

.box-kc {
  height: 80px;
  border-radius: 12px;
  color: rgb(var(--color-white));
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 20px;
  margin-left: 20px;
  margin-top: -40px;
}

.box-kc.green {
  background-color: rgb(var(--color-main-green));
}

.box-kc.orange {
  background-color: rgb(var(--color-main-orange));
}

.wrapper-accordion {
  box-sizing: border-box;
  background: #FBFBFB;
  border: 1px solid #F1F1F1;
  border-radius: 16px;
  overflow: hidden;
}

.resumeIndex li {
  display: none;
  opacity: 0;
  transition: all .5s linear;
}

.resumeIndex li.active {
  display: block;
  opacity: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s linear;
}

.wrapper-model {
  overflow: hidden;
  box-sizing: border-box;
  border-width: 1px 1px 6px 1px;
  border-style: solid;
  border-radius: 16px;
  border-color: #222222;
  aspect-ratio: 16/9;
}


.accordion {
  border-right: 1px solid #F1F1F1;
}

.accordion-item {
  color: rgb(var(--color-dark));
  background-color: transparent;
  border-color: #F1F1F1;
  position: relative;
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-dark));
  background-color: transparent;
  box-shadow: none;
  color: rgb(var(--color-main-green));
}

.accordion-button::before {
  content: '';
  width: 2px;
  background: rgb(var(--color-main-green));
  height: calc(100% - 30px);
  position: absolute;
  left: 0;
  top: 15px;
  bottom: -100%;
  opacity: 0;
}

.accordion-button:not(.collapsed)::before {
  opacity: 1;
}

.accordion-button {
  position: unset;
  width: 100%;
  padding: 15px 25px;
  font-size: 16px;
  color: rgb(var(--color-dark));
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: bold;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-body {
  padding: 0px 25px 15px;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none;
}

.teams-slider .nav-link {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  color: rgb(var(--color-default));
  text-decoration: none;
  background: 0 0;
  border: 1px solid #CACCCF;
  border-radius: 10px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.teams-slider .nav-link.active {
  color: rgb(var(--color-main-orange));
  border: 1px solid rgb(var(--color-main-orange));
}

.teams-slider .nav-link {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  color: rgb(var(--color-default));
  text-decoration: none;
  background: 0 0;
  border: 1px solid #CACCCF;
  border-radius: 10px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.teams-slider .nav-link.active {
  color: rgb(var(--color-main-orange));
  border: 1px solid rgb(var(--color-main-orange));
}

.career-slider .nav-link {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  color: rgb(var(--color-default));
  text-decoration: none;
  background: 0 0;
  border: 1px solid #F1F1F1;
  border-radius: 10px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.career-slider .nav-link.active {
  color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-main-green));
  background: rgb(var(--color-main-green));
}

.guides-slider .nav-link {
  display: flex;
  align-items: center;
  padding: 4px;
  font-size: 14px;
  color: #CACCCF;
  text-decoration: none;
  background: 0 0;
  border: 1px solid #CACCCF;
  border-radius: 10px;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.guides-slider .nav-link span {
  margin: 0 10px;
}

.guides-slider .nav-link img {
  filter: grayscale(1);
}

.guides-slider .nav-link.active {
  color: rgb(var(--color-main-orange));
  border: 1px solid rgb(var(--color-main-orange));
}

.guides-slider .nav-link.active img {
  filter: none;
}

.img-tabs {
  border-radius: 5px;
  width: 38px;
  height: 38px;
  overflow: hidden;
}

.img-tabs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.career-items,
.box-border {
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #F1F1F1;
  border-radius: 8px;
}

.box-border.sticky {
  position: sticky;
  top: 100px;
}

.box-border.shadowed {
  box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.05);
}

.career-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-info li {
  display: flex;
  align-items: center;
}

.career-info li::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #DBDDE0;
  margin: 0 15px;
}

.career-info li:last-child::after {
  display: none;
}

.pagi {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.input-pagination {
  width: 40px;
  height: 40px;
  border-radius: 0;
  text-align: center;
}

.input-pagination input {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
}

.input-pagination input::-webkit-outer-spin-button,
.input-pagination input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-pagination input[type=number] {
  -moz-appearance: textfield;
}

.info-detail {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 45px;
  list-style: none;
}

.info-detail li {
  width: max-content;
}

.modal-content {
  border-color: rgb(var(--color-main-green));
}

.box-contact {
  box-sizing: border-box;
  background: #FBFBFB;
  border: 1px solid #F1F1F1;
  border-radius: 12px;
}

.ico-contact {
  width: 48px;
  height: 48px;
  background: #A9CC06;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-white));
  border-radius: 50%;
}

.contact-info {
  width: calc(100% - 48px);
}

.form-label.required::after {
  content: ' *';
  color: #EC2726;
}

#map-location {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  min-height: 300px;
}

.article-desc {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb-item.active {
  color: rgb(var(--color-gray));
}

.img-article {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.img-article img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.om-title {
  min-height: 55px;
}

.om-title div {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-ii {
  width: 40px;
  height: 40px;
  background: rgba(239, 130, 0, 0.14);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-ii {
  width: calc(100% - 60px);
  font-weight: 700;
  font-size: 40px;
  line-height: 54px;
  color: rgb(var(--color-dark-two));
}

.maps-hover svg {
  margin: 0 auto;
  display: block;
  position: relative;
}

.pin-marker {
  cursor: pointer;
}

.info-box {
  display: none;
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 1;
  border: 1px solid rgb(var(--color-main-orange));
  background: rgb(var(--color-white));
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
  padding: 8px;
  transition: all 150ms ease-in-out;
  box-sizing: border-box;
  border-radius: 10px 10px 10px 0px;
}

#main-maps g {
  display: none;
}

#main-maps a {
  stroke: #EF8200;
  fill: none;
  display: none;
}

#main-maps a:hover {
  stroke: #A5CB0C;
  fill: none;
}

#main-maps a .filled {
  fill: #A5CB0C;
  stroke: none;
}

#main-maps a:hover .filled {
  fill: #EF8200;
  stroke: none;
}

.pin-marker.active {
  display: block !important;
}

.img-maps {
  width: 57px;
  height: 57px;
  overflow: hidden;
  border-radius: 5px;
}

.img-maps img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.btn-zoom {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 991px) {
  .maps-hover svg {
    height: auto;
    max-width: 100%;
  }

  .maps-hover {
    height: 300px;
    overflow: hidden;
    overflow: auto;
    cursor: grab;
    cursor: -o-grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
  }

  .btn-green.sm {
    padding: 5px 10px;
    border: 30px;
    min-width: 110px;
  }
}

@media (max-width: 767px) {
  .maps-hover {
    height: 250px;
  }

  .maps-hover svg {
    max-width: none;
  }
}

@media (min-width: 768px) {
  .btn-zoom {
    display: none;
  }
}

.img-detail {
  aspect-ratio: 16/8;
  overflow: hidden;
}

.img-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-static {
  width: 100%;
  height: 200px;
  background: linear-gradient(93.31deg, #A9CC06 0%, #435200 100%);
  margin-top: 80px;
  display: flex;
  align-items: center;
}

#staticAccordion .accordion-button {
  position: unset;
  width: 100%;
  padding: 15px 0;
  font-size: 14px;
  color: rgb(var(--color-main-green));
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

#staticAccordion .accordion-button::after {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: auto;
  font-size: 16px;
  content: "\e901";
  background-image: none;
  background-repeat: no-repeat;
  font-family: 'icomoon';
}

#ModelField .accordion-button::after {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 16px;
  content: "\e901";
  background-image: none;
  background-repeat: no-repeat;
  font-family: 'icomoon';
}

.error-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.error-section h1 {
  font-size: 100px;
}

/* ========== Search ========== */
.modal-overlay {
  content: '';
  width: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.search-wrapper {
  background: rgb(var(--color-white));
  max-height: 650px;
}

.search-wrapper input {
  border-color: rgb(var(--color-main-green));
}

.search-wrapper input:focus {
  border-color: rgb(var(--color-main-orange));
}

.ico-search {
  position: absolute;
  right: 10px;
  top: 10px;
}

.results-search {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.results-search li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #F1F1F1;
}

.results-search li::before {
  content: "\e90a";
  font-family: 'icomoon';
  color: rgb(var(--color-main-green));
}

/* ========== Swiper Override ========== */

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  position: relative;
}

.hero.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 40px;
  height: auto;
}

.hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.partner .swiper-pagination-bullet {
  background: rgba(169, 204, 6, 0.6);
  opacity: 1;
}

.hero .swiper-pagination-bullet-active {
  background: #fff;
}

.partner .swiper-pagination-bullet-active {
  background: rgb(var(--color-main-green));
}

.hero .swiper-pagination-bullet-active::before {
  content: '';
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: -2px;
  top: -2px;
}

.partner .swiper-pagination-bullet-active::before {
  content: '';
  background: transparent;
  border: 1px solid rgb(var(--color-main-green));
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  left: -2px;
  top: -2px;
}

.partner.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -20px;
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(var(--color-default));
}

.farmer.swiper-button-next,
.farmer.swiper-button-prev {
  position: relative;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 40px;
  height: 40px;
  background: rgb(var(--color-white));
  cursor: pointer;
  color: rgb(var(--color-default));
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: 'icomoon';
  font-size: 19px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "\e90c";
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "\e908";
}

.farmer.swiper-button-prev {
  left: 0;
  right: auto;
}

.farmer.swiper-button-next {
  right: 0;
  left: auto;
}

.lm.swiper-button-prev {
  left: -40px;
  right: auto;
}

.lm.swiper-button-next {
  right: -40px;
  left: auto;
}

.tabs-slider .swiper-slide,
.teams-slider .swiper-slide,
.career-slider .swiper-slide,
.guides-slider .swiper-slide {
  width: max-content;
}

.Member.swiper-horizontal>.swiper-pagination-bullets,
.Member.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.Member .swiper-pagination-bullet-active {
  background: rgb(var(--color-green));
}

/* ========== Footer ========== */
.footer {
  border-top: 1px solid rgba(34, 34, 34, 0.06);
  position: relative;
  background: #F1F1F1;
}

.footer-top {
  padding: 50px 0;
}

.logo-bottom {
  display: inline-block;
  max-width: 70%;
}

.menu-footer {
  font-weight: 600;
  line-height: 31px;
}

.list-partner {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid rgba(34, 34, 34, 0.06);
}

.static-link {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 40px;
}

/* ========== overide ========== */


/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar,
.results-search::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.content-menu::-webkit-scrollbar-track,
.results-search::-webkit-scrollbar {
  background: transparent;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb,
results-search::-webkit-scrollbar {
  background: #f3f3f3;
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb,
.results-search::-webkit-scrollbar {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

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

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-weight: 800;
}

.text-bold {
  font-weight: 700;
}

.text-semiBold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-Black {
  font-weight: 900;
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.leading {
  letter-spacing: 1px;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */
@media (min-width: 567px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {}

@media (min-width: 1025px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }

  .right-nav .rn-items:last-child {
    display: none;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }
}

@media (min-width: 1400px) {}

@media (min-width: 1025px) and (max-width: 1199px) {}

@media (min-width: 992px) {}

@media (max-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .main-menu,
  .right-nav li:nth-last-child(2),
  .header-center {
    display: none;
  }

  .dropdown-menu li:nth-last-child(2) {
    display: block;
  }

  .lm.swiper-button-prev {
    left: -10px;
    right: auto;
  }

  .lm.swiper-button-next {
    right: -10px;
    left: auto;
  }

  .hero-desc.inner,
  .hero.inner {
    aspect-ratio: 16 / 9;
    background-position: center;
  }

  .text-ii {
    font-size: 28px;
    line-height: 54px;
  }

  .maps-hover svg {
    width: 900px;
  }
}

@media (max-width: 991px) {
  .knowledge .col-sm-6 {
    margin-bottom: 80px;
  }

  .resumeIndex li {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 25px;
    line-height: 35px;
  }

  h2 {
    font-size: 23px;
    line-height: 38px;
  }

  .header-left,
  .header-right {
    width: 50%;
  }

  .slider-wrapper {
    width: 100%;
  }

  .wrapper-slider-farmer::before,
  .wrapper-slider-farmer::after {
    display: none;
  }

  .nav-farmer {
    height: 0;
    margin: -31px 0;
  }

  .partner-item {
    width: calc(33.33% - 5px);
    aspect-ratio: 4 / 3;
    border-radius: 5px;
  }

  .partner-row {
    gap: 5px;
  }

  .row-counter {
    gap: 10px;
    flex-wrap: wrap;
  }

  .count {
    font-size: 40px;
    line-height: 48px;
  }

  .counter-items {
    max-width: 150px;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .career-info li::after {
    margin: 0 10px;
  }

  .hero-desc.inner,
  .hero.inner {
    aspect-ratio: 16 / 15;
  }

  .grid-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-box.righted {
    left: auto !important;
  }
}

@media (min-width: 768px) {}

@media (max-width: 1000px) and (orientation: landscape) {
  .nav-content {
    max-height: 35vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media (max-width: 700px) and (orientation: landscape) {}



/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}