img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

svg {
  display: block;
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.btn--solid {
  background: rgb(1, 116, 53);
  color: #ffffff;
  padding: 13px 22px;
  font-size: 15px;
  transition: background 0.2s;
}
.btn--solid:hover {
  background: #015c2a;
  color: #ffffff;
}

.section {
  margin-top: 56px;
}

.section__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section__head--center {
  justify-content: flex-start;
}

.section__icon {
  color: rgb(1, 116, 53);
  display: flex;
}

.section__title {
  font-family: "Open Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: rgb(13, 13, 13);
  white-space: nowrap;
  text-transform: uppercase;
}

.section__rule {
  flex: 1 1 auto;
  height: 8px;
  background: url("/public/img/default_img/dash-line-grey.png") left center/auto 8px repeat-x;
}

.section__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(1, 116, 53);
  font-size: 16px;
  white-space: nowrap;
}
.section__more:hover {
  text-decoration: underline;
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 620px;
}
.brand__logo {
  width: 78px;
  height: auto;
  flex: none;
}
.brand__name {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.45;
  color: rgb(1, 116, 53);
}

.search {
  position: relative;
  width: 320px;
  flex: none;
}
.search__input {
  width: 100%;
  height: 40px;
  border: 1px solid #ececec;
  border-radius: 36px;
  padding: 0 50px 0 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  color: rgb(13, 13, 13);
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}
.search__input::-moz-placeholder {
  color: #757575;
}
.search__input::placeholder {
  color: #757575;
}
.search__input:focus {
  outline: none;
  border-color: rgb(1, 116, 53);
}
.search__btn {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgb(1, 116, 53);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.banner {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(1, 116, 53, 0) 0%, rgba(1, 116, 52, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.banner__content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.banner__slide:hover .banner__overlay, .banner__slide:hover .banner__content {
  opacity: 1;
  pointer-events: auto;
}
.banner__title {
  color: #ffffff;
  margin: 0;
  max-width: 480px;
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.banner__sub {
  color: rgb(255, 255, 255);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
  max-width: 480px;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}
.banner__dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.banner__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}
.banner__dots span.is-active {
  width: 28px;
  border-radius: 6px;
  background: #ffffff;
}

.banner__carousel {
  height: 100%;
}
.banner__carousel .owl-stage-outer,
.banner__carousel .owl-stage,
.banner__carousel .owl-item {
  height: 100%;
}
.banner__carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  margin: 0;
}
.banner__carousel .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: block;
  transition: width 0.3s, border-radius 0.3s;
}
.banner__carousel .owl-dot.active span {
  width: 28px;
  border-radius: 6px;
  background: #ffffff;
}
.banner__carousel .owl-nav .owl-prev,
.banner__carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.banner__carousel .owl-nav .owl-prev:hover,
.banner__carousel .owl-nav .owl-next:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}
.banner__carousel .owl-nav .owl-prev {
  left: 20px;
}
.banner__carousel .owl-nav .owl-next {
  right: 20px;
}
.banner__slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .banner {
    height: 420px;
  }
  .banner__title {
    font-size: 24px;
    max-width: 100%;
  }
  .banner__sub {
    font-size: 14px;
    max-width: 100%;
  }
  .banner__overlay, .banner__content {
    opacity: 1;
    pointer-events: auto;
  }
}
.news {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  align-items: start;
}

.rule {
  border: 0;
  height: 1px;
  background: rgb(229, 229, 229);
  margin: 20px 0;
}

.feature {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 20px;
}
.feature__title-link {
  text-decoration: none;
  color: inherit;
}
.feature__img-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.feature__img {
  aspect-ratio: 520/312;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.feature__img-link:hover .feature__img {
  transform: scale(1.06);
}
.feature__body {
  position: relative;
  padding-bottom: 44px;
}
.feature__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: rgb(13, 13, 13);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature__date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 14px;
  color: #666666;
}
.feature__date svg {
  color: rgb(1, 116, 53);
}
.feature__excerpt {
  font-size: 15px;
  line-height: 1.4;
  color: rgb(13, 13, 13);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(1, 116, 53, 0.8);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  display: none;
}
.feature__nav {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: flex;
  gap: 16px;
}
.feature__nav button {
  width: 32px;
  height: 32px;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 50%;
  background: #ffffff;
  color: rgb(1, 116, 53);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.feature__nav button:hover {
  background: rgb(1, 116, 53);
  color: #ffffff;
}

.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
}
.card a {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 16px;
}
.card__img-wrap {
  overflow: hidden;
  border-radius: 8px;
}
.card__img {
  width: 100%;
  aspect-ratio: 280/168;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card__img {
  transform: scale(1.06);
}
.card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(13, 13, 13);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.card:hover .card__title {
  color: rgb(1, 116, 53);
}

.quick {
  border-radius: 16px;
  overflow: hidden;
  background: rgb(3, 115, 56);
}
.quick__hero {
  position: relative;
  height: 274px;
}
.quick__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quick__avatar {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 8px solid rgba(194, 213, 32, 0.36);
}
.quick__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  padding: 0 16px;
  background: linear-gradient(rgba(1, 116, 53, 0), rgba(1, 116, 53, 0.85));
  padding-top: 26px;
  padding-bottom: 8px;
  text-transform: uppercase;
}
.quick__notch {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100px;
  height: 18px;
  background: rgb(200, 217, 93);
  opacity: 0.9;
  clip-path: path("M 0 0 L 100 0 C 86 0 72 6 58 11 C 50 14 50 18 50 18 C 50 18 40 11 27 6 C 14 1 0 0 0 0 Z");
}
.quick__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px 16px 28px;
}

.qtile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 94px;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  transition: background 0.2s;
  text-decoration: none;
}
.qtile:hover {
  background: rgba(255, 255, 255, 0.16);
}

.media {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mcard {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mcard__thumb {
  position: relative;
  height: 183px;
  border-radius: 8px;
  overflow: hidden;
}
.mcard__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 305/183;
  transition: transform 0.4s ease;
}
.mcard:hover .mcard__thumb img {
  transform: scale(1.06);
}
.mcard__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgb(1, 116, 53);
  color: #ffffff;
  display: grid;
  place-items: center;
  padding-left: 2px;
}
.mcard__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: rgb(13, 13, 13);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
  margin-top: 16px;
}
.mcard:hover .mcard__title {
  color: rgb(1, 116, 53);
}

.docs {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  align-items: start;
}

.docs__main .section__head {
  margin-bottom: 20px;
}

.doctabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgb(232, 243, 233);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1px;
}

.doctab {
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.doctab img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 416/250;
}
.doctab span {
  font-weight: 700;
  font-size: 16px;
  color: rgb(1, 116, 53);
  text-align: center;
}
.doctab--active {
  background: rgb(1, 116, 53);
}
.doctab--active span {
  color: #ffffff;
}

.doctable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 20px;
}
.doctable thead th {
  background: rgb(232, 243, 233);
  text-align: left;
  font-weight: 600;
  color: rgb(13, 13, 13);
  padding: 12px 20px;
}
.doctable tbody tr {
  border-bottom: 1px solid rgb(229, 229, 229);
}
.doctable tbody td {
  padding: 14px 20px;
  border: none;
  vertical-align: middle;
  color: rgb(13, 13, 13);
}
.doctable th:nth-child(1),
.doctable td:nth-child(1) {
  width: 155px;
}
.doctable th:nth-child(3),
.doctable td:nth-child(3) {
  width: 120px;
  white-space: nowrap;
}
.doctable th:nth-child(4),
.doctable td:nth-child(4) {
  width: 80px;
}
.doctable__id {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.doctable__id-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.doctable__view a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(1, 116, 53);
  font-weight: 500;
}
.doctable__view a:hover {
  text-decoration: underline;
}
.doctable tbody tr:hover td {
  background: rgba(232, 243, 233, 0.4);
}

.faq {
  border-radius: 16px;
  overflow: hidden;
  background: rgb(232, 243, 233);
}
.faq__hero {
  position: relative;
  height: 55px;
}
.faq__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  background: linear-gradient(rgba(1, 116, 53, 0), rgba(1, 116, 53, 0.8));
}
.faq__notch {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 100px;
  height: 18px;
  z-index: 2;
  background: rgb(50, 142, 89);
  opacity: 0.9;
  clip-path: path("M 0 0 L 100 0 C 86 0 72 6 58 11 C 50 14 50 18 50 18 C 50 18 40 11 27 6 C 14 1 0 0 0 0 Z");
}
.faq__list {
  padding: 24px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
}
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: rgb(13, 13, 13);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item[open] summary {
  color: rgb(1, 116, 53);
}
.faq__sign {
  color: rgb(1, 116, 53);
  flex: none;
}
.faq__answer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgb(232, 243, 233);
  font-size: 14px;
  line-height: 1.5;
  color: rgb(13, 13, 13);
}
.faq__answer-label {
  font-weight: 700;
  margin-bottom: 6px;
}

.partners {
  margin-bottom: 56px;
}
.partners__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.partners__arrow {
  width: 48px;
  height: 48px;
  flex: none;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 50%;
  background: #ffffff;
  color: rgb(1, 116, 53);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.partners__arrow:hover {
  background: rgb(1, 116, 53);
  color: #ffffff;
}
.partners__carousel {
  flex: 1;
  min-width: 0;
  width: 0;
}
.partners__item {
  padding: 0 10px;
}
.partners__item a {
  display: grid;
  height: 120px;
  border: 1px solid #ededed;
  border-radius: 24px;
  background: #ffffff;
  place-items: center;
  transition: box-shadow 0.2s;
}
.partners__item a:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.partners__item img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.partners__list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.partners__list a {
  display: block;
  height: 120px;
  border: 1px solid #ededed;
  border-radius: 24px;
  background: #ffffff;
  display: grid;
  place-items: center;
  transition: box-shadow 0.2s;
}
.partners__list a:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.partners__list img {
  width: 138px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1100px) {
  .container {
    padding: 0 32px;
  }
  .section {
    margin-top: 40px;
  }
  .news,
  .docs {
    grid-template-columns: 1fr;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .feature__img {
    width: 100%;
    height: 280px;
  }
  .doctab img {
    height: 180px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }
  .banner {
    height: 380px;
  }
  .banner__title {
    font-size: 22px;
  }
  .banner__sub {
    font-size: 15px;
    max-width: 300px;
  }
  .header__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .search {
    width: 100%;
  }
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .section {
    margin-top: 32px;
  }
  .section__title {
    font-size: 17px;
  }
  .feature__title {
    font-size: 17px;
  }
  .feature__img {
    height: 220px;
  }
  .cards3,
  .media {
    grid-template-columns: 1fr 1fr;
  }
  .mcard__thumb {
    height: 150px;
  }
  .docs {
    grid-template-columns: 1fr;
  }
  .doctab img {
    height: 150px;
  }
  .doctable {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }
  .doctable thead th,
  .doctable tbody td {
    padding: 10px 12px;
  }
  .doctable th:nth-child(1),
  .doctable td:nth-child(1) {
    width: 130px;
  }
  .doctable th:nth-child(3),
  .doctable td:nth-child(3) {
    width: 100px;
  }
  .faq__list {
    padding: 16px 8px 12px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .banner {
    height: 280px;
  }
  .banner__title {
    font-size: 18px;
  }
  .banner__sub {
    font-size: 14px;
    max-width: 220px;
  }
  .section {
    margin-top: 24px;
  }
  .section__head {
    gap: 10px;
  }
  .section__rule {
    display: none;
  }
  .section__more {
    font-size: 14px;
    gap: 4px;
  }
  .feature__img {
    height: auto;
  }
  .cards3,
  .media {
    grid-template-columns: 1fr;
  }
  .mcard__thumb {
    height: auto;
  }
  .doctabs {
    grid-template-columns: 1fr;
  }
  .doctab img {
    height: auto;
  }
  .doctable {
    font-size: 12px;
  }
  .doctable thead th,
  .doctable tbody td {
    padding: 8px 8px;
  }
  .doctable th:nth-child(1),
  .doctable td:nth-child(1) {
    width: 110px;
  }
  .doctable__name {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .doctable th:nth-child(3),
  .doctable td:nth-child(3) {
    display: none;
  }
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .partners__list a {
    height: 80px;
    border-radius: 16px;
  }
  .partners__list img {
    width: 100px;
    height: 60px;
  }
  .partners__arrow {
    display: none;
  }
}
