@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Ubuntu:wght@500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Madimi+One&family=Nunito+Sans:ital,opsz,wght@0,6..12,700;1,6..12,700&display=swap" rel="stylesheet');
html {
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}
html * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

#header {
  z-index: 100;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 20px;
}

.main-color-100 {
  color: #588e00;
}

.main-color-200 {
  color: #3f5916;
}

.main-color-300 {
  color: #263d00;
}

.main-color-400 {
  color: #385705;
}

.main-color-500 {
  color: #2b4205;
}

.main-bg-100 {
  background: #588e00;
}

.main-bg-200 {
  background: #3f5916;
}

.main-bg-300 {
  background: #263d00;
}

.main-bg-400 {
  background: #385705;
}

.main-bg-500 {
  background: #2b4205;
}

.primary-color-100 {
  color: #00741a;
}

.primary-color-200 {
  color: #12491e;
}

.primary-color-300 {
  color: #00320b;
}

.primary-color-400 {
  color: #0b4919;
}

.primary-color-500 {
  color: #0b3614;
}

.primary-bg-100 {
  background: #00741a;
}

.primary-bg-200 {
  background: #12491e;
}

.primary-bg-300 {
  background: #00320b;
}

.primary-bg-400 {
  background: #0b4919;
}

.primary-bg-500 {
  background: #0b3614;
}

.secondary-color-100 {
  color: #909700;
}

.secondary-color-200 {
  color: #5b5f18;
}

.secondary-color-300 {
  color: #3e4200;
}

.secondary-color-400 {
  color: #5a5f00;
}

.secondary-color-500 {
  color: #454901;
}

.secondary-bg-100 {
  background: #909700;
}

.secondary-bg-200 {
  background: #5b5f18;
}

.secondary-bg-300 {
  background: #3e4200;
}

.secondary-bg-400 {
  background: #5a5f00;
}

.secondary-bg-500 {
  background: #454901;
}

.pb-50 {
  padding-bottom: 68px;
  z-index: 200;
}

.Header {
  transition: 0.5s background linear;
}
.Header[data-bg="0"] {
  background: rgba(88, 142, 0, 0.3);
}
.Header[data-bg="1"] {
  background: rgba(88, 142, 0, 0.9);
}
.Header.active {
  background: rgba(88, 142, 0, 0.95);
}
.Header .list {
  list-style-type: none;
}
.Header .list .header-links {
  transition: 0.3s color linear;
}
@media (hover: hover) and (pointer: fine) {
  .Header .list .header-links:hover {
    color: #0b3614;
  }
}
.Header .list .header-links.active {
  border-bottom: 2px solid #0b4919;
  color: #0b4919;
}
.Header .mobile-menu {
  max-height: 0;
  height: 100%;
  overflow: hidden;
  list-style-type: none;
  transition: 0.4s max-height linear;
}
.Header .mobile-menu.active {
  max-height: 50rem;
}
.Header .mobile-menu-item {
  border-bottom: 1px solid #0b3614;
}
.Header .mobile-menu-item:first-child {
  margin-top: 3rem;
}
.Header .mobile-menu-item:last-child {
  margin-bottom: 3rem;
}
.Header #toggle .menu-icon {
  display: block;
}
.Header #toggle .x-icon {
  display: none;
}
.Header #toggle.active .menu-icon {
  display: none;
}
.Header #toggle.active .x-icon {
  display: block;
}

.Footer .footer-link {
  color: var(--bs-white);
}
@media (hover: hover) and (pointer: fine) {
  .Footer .footer-link:hover {
    opacity: 0.75;
    text-decoration: underline;
  }
}
.Footer .footer-about {
  -webkit-line-clamp: 5;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.Articles .articles-head-img {
  max-height: 21rem;
  height: 100%;
}
.Articles .articles-head-img img {
  filter: brightness(0.6);
}
.Articles .articles-head-title {
  font-family: "Madimi One", sans-serif;
  font-size: clamp(2rem, 4vw, 5rem);
}
.Articles .article-item-head img {
  aspect-ratio: 5/3;
  filter: brightness(0.8);
  transition: 0.3s ease-in-out transform, 0.3s ease-in-out filter;
}
@media (hover: hover) and (pointer: fine) {
  .Articles .article-item-head img:hover {
    transform: scale(1.1);
    filter: brightness(1);
  }
}
@media (max-width: 768px) {
  .Articles .article-item-head:has(small) {
    margin-bottom: 0.5rem;
  }
}
.Articles .article-item-date {
  width: 4rem;
  height: 5rem;
  top: 1rem;
  left: 1rem;
}
.Articles .article-item-kw {
  transform: translateY(50%);
}
.Articles .article-item-text {
  -webkit-line-clamp: 5;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.Articles .article-item-icon {
  color: rgba(91, 95, 24, 0.7);
  transition: 0.3s ease-in color;
}
@media (hover: hover) and (pointer: fine) {
  .Articles .article-item-icon:hover {
    color: #5b5f18;
  }
}

.subtitle {
  background: rgba(88, 142, 0, 0.1);
}
.subtitle .path-wrapper {
  overflow: hidden;
}
.subtitle .article-title {
  max-width: 20rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blockquote {
  background: rgba(144, 151, 0, 0.1);
  border-left: 1px solid #909700;
}

.img-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: rgba(0, 116, 26, 0.1);
}

.keywords {
  background: rgba(0, 116, 26, 0.3);
}

.search-btn {
  border: 1px solid rgba(88, 142, 0, 0.2);
  color: #385705;
}
@media (hover: hover) and (pointer: fine) {
  .search-btn:hover {
    border: 1px solid rgba(88, 142, 0, 0.4);
    background: rgba(88, 142, 0, 0.4);
    color: #00320b;
  }
}

.post-cart-title {
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.theme-word-item {
  background: rgba(144, 151, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .theme-word-item:hover {
    background: rgba(144, 151, 0, 0.2);
  }
}

.contacts {
  min-height: 100dvh;
}
.contacts .title-color {
  color: rgba(62, 66, 0, 0.8);
}
.contacts .paragraph-color {
  color: rgba(91, 95, 24, 0.7);
}
.contacts .input {
  color: #3e4200;
  border-color: rgba(91, 95, 24, 0.2);
}
.contacts .input:focus {
  box-shadow: 0 0 0 0.25rem rgba(91, 95, 24, 0.3);
  border-color: rgba(91, 95, 24, 0.5);
}
.contacts .input::placeholder {
  color: rgba(91, 95, 24, 0.7);
}

.iframe {
  height: 20rem;
}

.submit-btn {
  background: rgba(88, 142, 0, 0.2);
  color: #263d00;
}
@media (hover: hover) and (pointer: fine) {
  .submit-btn:hover {
    background: rgba(88, 142, 0, 0.4);
    color: #385705;
  }
}
.submit-btn:active {
  background: rgba(88, 142, 0, 0.4);
  color: #385705;
}

.About .about-top-bg {
  background: rgba(204, 204, 204, 0.2);
}
.About .about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.About .about-images-items:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (max-width: 768px) {
  .About .about-images-items:nth-child(1) {
    grid-column: 1/-1;
  }
}
.About .about-images-items:nth-child(1) p {
  -webkit-line-clamp: 4;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.About .about-images-items:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1/2;
}
@media (max-width: 768px) {
  .About .about-images-items:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.About .about-images-items:nth-child(3) {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (max-width: 768px) {
  .About .about-images-items:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.About .about-images-items:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2/3;
}
@media (max-width: 768px) {
  .About .about-images-items:nth-child(4) {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}
@media (max-width: 768px) {
  .About .about-images-items:nth-child(n+4) {
    grid-column: 1/-1;
  }
}

.privacy-title {
  border-bottom: 1.5px solid rgba(88, 142, 0, 0.3);
}

.privacy-img {
  height: 5rem;
}

.header-lead-form {
  padding: 25px;
  border-radius: 15px;
  background: #fff;
}
.header-lead-form .form-pd {
  padding: 0 15px;
}
.header-lead-form .form-header {
  font-size: 2.37rem;
}
.header-lead-form input.form-control {
  padding: 20px;
  font-size: 1.18rem;
}
.header-lead-form .form-button button {
  font-size: 1.1rem;
  color: white;
}
.header-lead-form .form-button button:hover {
  border: 1px solid #588e00;
  color: #588e00;
}

.header-lead-form-padding {
  padding: 150px 15px;
}

.cover-image {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-position: center;
  object-fit: cover;
}

.form-group {
  margin: 20px 0;
}

.header-text {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.header-description {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 500;
}

.header-lead-form {
  overflow: hidden;
}

.blur-block {
  background: rgba(194, 194, 194, 0.7);
}

.header-lead-form {
  padding: 25px;
  border-radius: 15px;
  background: #fff;
}
.header-lead-form .form-header {
  font-size: 2.37rem;
}
.header-lead-form input.form-control {
  padding: 20px;
  font-size: 1.18rem;
}
.header-lead-form .form-button button {
  font-size: 1.1rem;
  color: white;
}
.header-lead-form .form-button button:hover {
  border: 1px solid #588e00;
  color: #588e00;
}

.header-lead-form-padding {
  padding: 150px 15px;
}

.cover-image {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-position: center;
  object-fit: cover;
}

.form-group {
  margin: 20px 0;
}

.header-text {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.header-description {
  margin: 15px 0 30px;
  font-size: 1.5rem;
  font-weight: 500;
}

.header-lead-form {
  overflow: hidden;
}

.blur-block {
  background: rgba(194, 194, 194, 0.7);
}

.cta-form-padding {
  padding: 100px 20px;
}
@media (max-width: 768px) {
  .cta-form-padding {
    text-align: center;
  }
}

.cover-image {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-position: center;
  object-fit: cover;
  filter: blur(10px);
}

.form-group,
.form-floating {
  margin: 20px 0;
}

.header-text {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.header-description {
  margin-top: 15px;
  font-size: 1.5rem;
  font-weight: 500;
}

.header-lead-form {
  overflow: hidden;
}

.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  border-radius: 14px 14px 0 0;
}

.cta-block {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 30px 0;
}

.cta-popup-button {
  font-size: 1.2rem;
  min-width: 150px;
}

.cta-popup-button-wrap {
  display: flex;
  justify-content: center;
}

.cta-btn {
  font-size: 1.1rem;
  color: white;
}
.cta-btn:hover {
  border: 1px solid #588e00;
  color: #588e00;
}

.benefit-section-header {
  margin-bottom: 60px;
}

.benefit-header {
  margin: 30px 0;
}

.icon-wrap i {
  font-size: 3.1rem;
  background: #fff;
  color: black;
}

.benefit-description {
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  .benefit-center {
    text-align: center;
  }
}

.header-text {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.header-description {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 500;
}

.line {
  margin: 20px auto;
  width: 100px;
  height: 3px;
  background: gray;
}

.blur {
  filter: blur(0);
}

@media (max-width: 990px) {
  .col-description {
    flex-direction: column;
  }
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.help-icon {
  font-size: 3.1em;
  margin-bottom: 20px;
}

.helpful-l {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}
.helpful-l .helpful-l-head {
  color: #909700;
}
.helpful-l .first {
  margin: 0 auto 20px;
  display: inline-block;
  padding-bottom: 10px;
}
.helpful-l .first.helpful-border {
  border-bottom: 2px solid #588e00;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.article-list-l h2,
.article-list-l h3,
.article-list-l h4,
.article-list-l h5,
.article-list-l h6 {
  font-size: 2rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-list-l .card {
  height: 100%;
  text-decoration: none;
}
.article-list-l .card-body {
  justify-content: center;
  align-items: start;
  display: flex;
}
.article-list-l .card-header {
  flex-basis: min-content;
}
.article-list-l .item-str {
  align-items: stretch;
  padding: 0 20px;
}

.header-text {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.header-description {
  margin-top: 5px;
  font-size: 1.5rem;
  font-weight: 500;
}

.line {
  margin: 20px auto;
  width: 100px;
  height: 3px;
  background: gray;
}

.blur {
  filter: blur(0);
}

@media (max-width: 990px) {
  .col-description {
    flex-direction: column;
  }
}

.thank-you {
  background: linear-gradient(217deg, #588e00, #263d00 70.71%), linear-gradient(127deg, #909700, #3e4200 70.71%), linear-gradient(336deg, #00741a, #00320b 70.71%);
  min-height: 100vh;
}
.thank-you-wrapper {
  max-width: 60rem;
  margin: 0 auto;
  background: rgba(63, 89, 22, 0.6);
}
@media (max-width: 768px) {
  .thank-you-wrapper {
    max-width: 100%;
  }
}
.thank-you-btn {
  background: #588e00;
  color: #3f5916;
}
@media (hover: hover) and (pointer: fine) {
  .thank-you-btn:hover {
    background: #263d00;
    color: var(--bs-light);
  }
}