@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=Montserrat:wght@300;500;700&family=Roboto:wght@400;500;700;900&display=swap");
html {
  font-size: 10px;
  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;
}

.header-links {
  color: var(--bs-black);
  opacity: 0.7;
  transition: 0.3s linear color;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .header-links:hover {
    color: #3f5916;
  }
}
.header-links-drop-down {
  cursor: pointer;
}

a[data-header-link].header-menu-active {
  color: #588e00;
  font-weight: bold !important;
}

.header-menu-wrapper {
  justify-content: space-between;
  padding: 1rem 0;
}
.header-menu-wrapper.header-menu-wrapper-mobile-menu {
  padding-bottom: calc(90vh + 1rem);
  margin-bottom: -90vh;
}
@media (max-width: 992px) {
  .header-menu-wrapper {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header-menu-wrapper {
    justify-content: flex-end;
    padding: 1rem;
    overflow: hidden;
  }
}

.header-dropdown-item {
  transition: 0.3s linear background;
}
.header-dropdown-item:not(:last-child) {
  border-bottom: 1px solid var(--bs-gray-500);
}
@media (hover: hover) and (pointer: fine) {
  .header-dropdown-item-links:hover {
    background: rgba(56, 87, 5, 0.7);
    color: var(--bs-white);
  }
}

.head-search-wrapper {
  height: 3rem;
}

.header-search-input:focus {
  border-color: rgba(88, 142, 0, 0.2);
  box-shadow: 0 0 0 0.25rem rgba(88, 142, 0, 0.3);
}

.header-search-button {
  transition: 0.3s linear background;
  padding: 1rem;
  border: 0;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .header-search-button:hover {
    background: rgba(88, 142, 0, 0.3);
  }
}
.header-search-button:active {
  background: rgba(88, 142, 0, 0.3);
}

.header-logo-title-text {
  background: linear-gradient(to right, rgba(88, 142, 0, 0.2), #0b4919);
  background-clip: text;
}
.header-logo-title-text .header-title {
  color: transparent;
}

.header-mobile-menu {
  top: 62px;
  transition: 0.3s transform, 0.3s opacity;
  transform: translateX(100vw);
  opacity: 0;
}
.header-mobile-menu.mobile-menu-active {
  transform: translateX(0);
  opacity: 1;
}

#mobile-menu-trigger {
  transition: 0.3s transform;
}
#mobile-menu-trigger i::before {
  content: "\f479";
}
#mobile-menu-trigger:active {
  transform: scale(0.9);
}
#mobile-menu-trigger.mobile-menu-active i::before {
  content: "\f659";
}

.Footer {
  background: rgba(63, 89, 22, 0.1);
}
.Footer .footer-about-text {
  display: box;
  display: -webkit-box;
}
@media (hover: hover) and (pointer: fine) {
  .Footer .footer-more-link:hover {
    text-decoration: underline;
  }
}
.Footer .footer-form-block {
  width: 75%;
}
@media (max-width: 992px) {
  .Footer .footer-form-block {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .Footer .footer-form-block {
    width: 75%;
  }
}
.Footer .footer-form-block .footer-form-input {
  outline: none;
  border: 1px solid #588e00;
}
.Footer .footer-form-block .footer-form-input:focus {
  border-color: #3f5916;
}
.Footer .footer-form-block .footer-form-btn {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(63, 89, 22, 0.6);
  color: var(--bs-white);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .Footer .footer-form-block .footer-form-btn:hover {
    background: rgba(63, 89, 22, 0.9);
  }
}
.Footer .footer-mini-title {
  position: relative;
}
.Footer .footer-mini-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background: #588e00;
}
@media (hover: hover) and (pointer: fine) {
  .Footer .footer-nav-link:hover {
    text-decoration: underline;
  }
}

.ArticleList .article-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px;
  gap: 0.5rem;
}
@media (max-width: 992px) {
  .ArticleList .article-list-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
.ArticleList .article-list-item {
  transition: 0.5s linear transform;
}
@media (hover: hover) and (pointer: fine) {
  .ArticleList .article-list-item:hover {
    perspective: 500px;
    transform: translateZ(50px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 0.5rem 1.5rem black;
  }
}
.ArticleList .article-list-item:first-child {
  grid-column: 1/3;
  grid-row: 1/3;
}
@media (max-width: 992px) {
  .ArticleList .article-list-item:first-child {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
}
.ArticleList .article-list-item:nth-child(2) {
  grid-column: 3/-1;
  grid-row: 1/2;
}
@media (max-width: 992px) {
  .ArticleList .article-list-item:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.ArticleList .article-list-item:nth-child(3) {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media (max-width: 992px) {
  .ArticleList .article-list-item:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.ArticleList .article-list-item:nth-child(4) {
  grid-column: 4/5;
  grid-row: 2/3;
}
@media (max-width: 992px) {
  .ArticleList .article-list-item:nth-child(4) {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
}
.ArticleList .article-title {
  color: var(--bs-white);
  display: box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ArticleList .article-img-blackout {
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(43, 66, 5, 0.5), transparent);
}
.ArticleList .article-category {
  color: var(--bs-white);
  border: 1px solid var(--bs-white);
}

.Article {
  font-family: "Montserrat", sans-serif;
}
.Article .font-color {
  color: rgba(0, 50, 11, 0.7);
}
.Article .article-sub-header {
  box-shadow: -0.5rem 0.5rem 0.25rem rgba(38, 61, 0, 0.1);
}
.Article .article-sub-header .sub-header-font-color {
  color: rgba(38, 61, 0, 0.5);
}
.Article .article-sub-header .sub-header-link {
  transition: 0.3s linear color;
}
@media (hover: hover) and (pointer: fine) {
  .Article .article-sub-header .sub-header-link:hover {
    color: #385705;
  }
}
.Article .article-sub-header .article-sub-header-last {
  max-width: 20rem;
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.Article .text-active {
  border-top: 1px solid #909700;
  border-bottom: 1px solid #909700;
  background: rgba(144, 151, 0, 0.1);
}
.Article .article-social {
  border: 1px solid rgba(144, 151, 0, 0.3);
  color: rgba(91, 95, 24, 0.4);
  transition: 0.3s linear background, 0.3s linear color;
}
@media (hover: hover) and (pointer: fine) {
  .Article .article-social:hover {
    background: rgba(91, 95, 24, 0.7);
    color: var(--bs-white);
  }
}
.Article .article-key-tag {
  border: 1px solid rgba(63, 89, 22, 0.5);
  background: rgba(63, 89, 22, 0.2);
  color: rgba(38, 61, 0, 0.7);
}
@media (hover: hover) and (pointer: fine) {
  .Article .article-key-tag:hover {
    background: rgba(88, 142, 0, 0.5);
  }
}
.Article .article-widget-input {
  outline: none;
  border: none;
  transition: 0.3s linear box-shadow;
  box-shadow: -1rem 1rem 3rem rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.Article .article-widget-input:focus {
  box-shadow: -1rem 1rem 1rem rgba(0, 0, 0, 0.1);
}
.Article .article-widget-input:focus ~ .article-widget-submit {
  box-shadow: -1rem 1rem 1rem rgba(0, 0, 0, 0.1);
}
.Article .article-widget-submit {
  z-index: 1;
  background: rgba(38, 61, 0, 0.2);
  box-shadow: -1rem 1rem 3rem rgba(0, 0, 0, 0.1);
}
.Article .article-mini-post-title {
  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s linear color;
}
@media (hover: hover) and (pointer: fine) {
  .Article .article-mini-post-title:hover {
    color: #588e00;
  }
}
.Article .article-mini-post-tag {
  transition: 0.3s linear color;
}
@media (hover: hover) and (pointer: fine) {
  .Article .article-mini-post-tag:hover {
    background: rgba(63, 89, 22, 0.5);
    color: var(--bs-white);
  }
}
.Article .article-widget-tags {
  background: rgba(88, 142, 0, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .Article .article-widget-tags:hover {
    background: rgba(88, 142, 0, 0.5);
  }
}

.Contacts .sub-title {
  background: rgba(88, 142, 0, 0.2);
}
.Contacts .sub-title-text {
  font-family: serif;
}
.Contacts .contacts-p-bg {
  background: rgba(88, 142, 0, 0.1);
}
.Contacts .contacts-p-title {
  font-family: serif;
}
.Contacts .contacts-submit {
  background: #385705;
}
@media (hover: hover) and (pointer: fine) {
  .Contacts .contacts-submit:hover {
    background: rgba(88, 142, 0, 0.7);
  }
}
.Contacts .contacts-submit:active {
  background: rgba(88, 142, 0, 0.7);
}
.Contacts .contacts-list-title .contacts-list-title-sub {
  border-left: 3px solid #588e00;
}
.Contacts .contacts-item-title {
  font-family: serif;
}
.Contacts .contacts-item-title .contacts-item-title-link {
  transition: 0.3s ease-in color;
}
@media (hover: hover) and (pointer: fine) {
  .Contacts .contacts-item-title .contacts-item-title-link:hover {
    color: #588e00;
  }
}
.Contacts .contacts-item-title .contacts-item-title-link-mini {
  font-size: 1rem;
  display: -moz-box;
  display: -webkit-box;
  display: -o-box;
  display: box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 992px) {
  .Contacts .contacts-item-title .contacts-item-title-link-mini {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
}
.Contacts .contacts-input:focus {
  border-color: #5b5f18;
  box-shadow: 0 0 0.25rem #5b5f18;
}

.About .blocks {
  background: rgba(88, 142, 0, 0.05);
  border: 1px solid rgba(88, 142, 0, 0.2);
}
.About .mini-img {
  bottom: -50px;
  right: 0;
  background: white;
}

.Privacy .privacy-shadows {
  background: rgba(0, 0, 0, 0.6);
}
.Privacy .privacy-shadows-space {
  background: rgba(0, 0, 0, 0.3);
}
.Privacy .privacy-title-img {
  height: 30vh;
}
.Privacy .privacy-space-img {
  background: linear-gradient(to right, #00741a, #909700);
}
.Privacy .privacy-font-color {
  color: rgba(62, 66, 0, 0.7);
}
.Privacy .privacy-title {
  color: #e2e2e2;
  transform: translate(-50%);
}
.Privacy .privacy-block-two .privacy-collapse-text {
  transition: 0.3s linear max-height;
  overflow: hidden;
  max-height: 0px;
}
.Privacy .privacy-block-two .block-two-title {
  cursor: pointer;
  transition: 0.3s linear background;
}
.Privacy .privacy-block-two .block-two-title.active {
  background: rgba(88, 142, 0, 0.2);
}

.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: 3.43rem;
  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);
}

.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-top: 15px;
  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;
}

.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;
  font-size: 2.8rem;
}

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

.benefit-t .service-1 {
  font-family: "Montserrat", sans-serif;
  color: #8d97ad;
  font-weight: 300;
}
.benefit-t .service-1 h1,
.benefit-t .service-1 h2,
.benefit-t .service-1 h3,
.benefit-t .service-1 h4,
.benefit-t .service-1 h5,
.benefit-t .service-1 h6 {
  color: #3e4555;
}
.benefit-t .service-1 .font-weight-medium {
  font-weight: 500;
}
.benefit-t .service-1 .bg-light {
  background-color: #f4f8fa !important;
}
.benefit-t .service-1 .subtitle {
  color: #8d97ad;
  line-height: 24px;
}
.benefit-t .service-1 .card.card-shadow {
  -webkit-box-shadow: 0 0 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0 0 30px rgba(115, 128, 157, 0.1);
}
.benefit-t .service-1 .wrap-service1-box .card-body {
  padding: 40px;
}
.benefit-t .service-1 .btn-success-gradiant {
  background: #2cdd9b;
  background: -webkit-linear-gradient(#2cdd9b 0%, #1dc8cc 100%);
  background: -webkit-gradient(linear, left top, right top, from(#2cdd9b), to(#1dc8cc));
  background: -webkit-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
  background: -o-linear-gradient(left, #2cdd9b 0%, #1dc8cc 100%);
  background: linear-gradient(to right, #2cdd9b 0%, #1dc8cc 100%);
  border: 0;
}
.benefit-t .service-1 .btn-success-gradiant:hover {
  background: #1dc8cc;
  background: -webkit-linear-gradient(#1dc8cc 0%, #2cdd9b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#1dc8cc), to(#2cdd9b));
  background: -webkit-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
  background: -o-linear-gradient(left, #1dc8cc 0%, #2cdd9b 100%);
  background: linear-gradient(to right, #1dc8cc 0%, #2cdd9b 100%);
}
.benefit-t .service-1 .btn-md {
  padding: 15px 45px;
  font-size: 16px;
}

.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-header {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.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: center;
  display: block;
}
.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);
  }
}