* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: rgb(13, 13, 13);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

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;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.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;
}

.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;
}

.section__rule {
  flex: 1;
  height: 8px;
  background: repeating-linear-gradient(-45deg, #d9c98a 0 6px, transparent 6px 12px);
  opacity: 0.7;
  border-radius: 4px;
}

.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;
}

.nav {
  position: relative;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  padding-top: 6px;
}
.nav__home {
  color: rgb(1, 116, 53);
  display: flex;
  padding: 6px 4px;
}
.nav__item {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
  padding: 12px 0;
  transition: color 0.2s;
}
.nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: rgb(1, 116, 53);
  transition: width 0.2s;
}
.nav__item:hover {
  color: rgb(1, 116, 53);
}
.nav__item:hover::after {
  width: 100%;
}

.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__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}
.banner__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.banner__sub {
  max-width: 430px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.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;
}

.stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: rgb(246, 247, 244);
  border-radius: 8px;
  padding: 24px 30px;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stats__icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  color: rgb(1, 116, 53);
}
.stats__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats__text strong {
  font-weight: 700;
  font-size: 24px;
  color: rgb(1, 116, 53);
  line-height: 1.1;
}
.stats__text em {
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #333;
}

.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: 520px 1fr;
  gap: 20px;
}
.feature__img {
  width: 520px;
  height: 312px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.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;
}
.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;
}
.card__img {
  width: 100%;
  height: 168px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.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: 22px;
  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;
}
.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;
}
.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;
}
.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;
}
.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: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.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%;
  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 td {
  padding: 14px 20px;
  border: 1px solid rgb(232, 243, 233);
  vertical-align: middle;
  color: rgb(13, 13, 13);
}
.doctable th:nth-child(1),
.doctable td:nth-child(1) {
  width: 180px;
}
.doctable th:nth-child(3),
.doctable td:nth-child(3) {
  width: 130px;
  white-space: nowrap;
}
.doctable th:nth-child(4),
.doctable td:nth-child(4) {
  width: 90px;
}
.doctable__id {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.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__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__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;
}

.floats {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.floats__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s;
}
.floats__btn:hover {
  transform: translateY(-2px);
}
.floats__btn--mess {
  background: #0a7cff;
}
.floats__btn--call {
  background: #e0312f;
}
.floats__btn--top {
  background: rgb(1, 116, 53);
}

@media (max-width: 1100px) {
  .container {
    padding: 0 32px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .news,
  .docs {
    grid-template-columns: 1fr;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .feature__img {
    width: 100%;
    height: auto;
  }
  .partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }
  .header__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .search {
    width: 100%;
  }
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .cards3,
  .media {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .partners__list {
    grid-template-columns: 1fr 1fr;
  }
  .banner__title {
    font-size: 24px;
  }
}
