@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");
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 .header-menu {
  background: rgba(56, 87, 5, 0.1);
}
.Header .header-link-item {
  transition: 0.3s linear background, 0.3s linear color;
}
@media (hover: hover) and (pointer: fine) {
  .Header .header-link-item:hover {
    background: rgba(56, 87, 5, 0.5);
    color: var(--bs-white);
  }
}
.Header .header-link-item.active {
  background: #385705;
  color: var(--bs-white);
}
.Header .header-social-link {
  transition: 0.3s linear color;
}
@media (hover: hover) and (pointer: fine) {
  .Header .header-social-link:hover {
    color: #588e00;
  }
}
.Header .header-search:focus {
  border-color: rgba(88, 142, 0, 0.5);
  box-shadow: 0 0 0.25rem #588e00;
}

.Footer {
  background: rgba(69, 73, 1, 0.8);
  color: var(--bs-white);
}
.Footer .divider {
  background: #588e00;
  width: 3rem;
}
.Footer .menu-list {
  list-style-type: none;
}
.Footer .footer-menu-link {
  color: var(--bs-white);
  transition: 0.3 color linear;
}
@media (hover: hover) and (pointer: fine) {
  .Footer .footer-menu-link:hover {
    color: #588e00;
  }
}
@media (hover: hover) and (pointer: fine) {
  .Footer .about-link:hover {
    text-decoration: underline;
  }
}
.Footer .footer-form-input {
  border-color: #588e00;
  outline: 0;
}
.Footer .footer-form-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(88, 142, 0, 0.6);
}
.Footer .footer-form-button {
  background: #588e00;
}
.Footer .about-text {
  -webkit-line-clamp: 5;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.Footer .BottomBlock {
  background: rgba(90, 95, 0, 0.8);
}
.Footer .BottomBlock .footer-social-icon {
  color: var(--bs-white);
  background: rgba(88, 142, 0, 0.2);
  transition: 0.3s color linear, 0.3s background linear;
}
@media (hover: hover) and (pointer: fine) {
  .Footer .BottomBlock .footer-social-icon:hover {
    color: #588e00;
    background: rgba(88, 142, 0, 0);
  }
}

.read-more-btn {
  background: rgba(88, 142, 0, 0.1);
  color: #909700;
}
@media (hover: hover) and (pointer: fine) {
  .read-more-btn:hover {
    color: #5b5f18;
    background: rgba(88, 142, 0, 0.3);
  }
}

.article-aside-about {
  overflow: hidden;
}
.article-aside-about-bg {
  height: 15rem;
  background: radial-gradient(transparent 10%, rgba(88, 142, 0, 0.5));
}
.article-aside-about-img {
  aspect-ratio: 1/1;
  bottom: -50%;
  max-width: 15rem;
}
.article-aside-about-title {
  margin-top: 7.5rem;
}
.article-aside-about-text {
  -webkit-line-clamp: 4;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.article-aside-mini-posts:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bs-gray-400);
}
.article-aside-mini-posts-link {
  color: var(--bs-black-700);
}
@media (hover: hover) and (pointer: fine) {
  .article-aside-mini-posts-link:hover {
    color: #909700;
  }
}
.article-aside-form-input:focus {
  border-color: #588e00;
  box-shadow: none;
}
.article-aside-form-subscribe {
  background: #588e00;
}
@media (hover: hover) and (pointer: fine) {
  .article-aside-form-subscribe:hover {
    background: #909700;
  }
}

.article-shadow {
  box-shadow: 0 0 1rem var(--bs-gray-300);
}

.contacts-submit {
  background: rgba(88, 142, 0, 0.8);
  color: var(--bs-white);
  border-color: #588e00;
}
@media (hover: hover) and (pointer: fine) {
  .contacts-submit:hover {
    background: #588e00;
  }
}

.contacts-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(88, 142, 0, 0.2);
}

.contacts-social-icon {
  color: rgba(144, 151, 0, 0.6);
}
@media (hover: hover) and (pointer: fine) {
  .contacts-social-icon:hover {
    color: #909700;
  }
}

.about-section .about-img-divider {
  transform: scale(1.2) skew(-30deg, 0deg);
  right: -30%;
  z-index: -1;
  background: rgba(88, 142, 0, 0.3);
}
.about-section .bout-img1 {
  max-width: 60%;
}
.about-section .about-img2 {
  max-width: 40%;
}
@media (max-width: 576px) {
  .about-section .about-img2 {
    max-width: 50%;
  }
}
.about-section .about-subtitle {
  padding-left: 2.5rem;
  color: rgba(38, 61, 0, 0.8);
}
.about-section .about-subtitle-icon {
  transform: skewX(-20deg);
  background: rgba(88, 142, 0, 0.8);
  width: 0.5rem;
  min-height: 2vh;
}
.about-section .about-subtitle-icon:after, .about-section .about-subtitle-icon::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  min-height: 2vh;
  background: red;
  position: absolute;
  left: -1rem;
  background: rgba(88, 142, 0, 0.6);
}
.about-section .about-subtitle-icon:before {
  left: -2rem;
  background: rgba(88, 142, 0, 0.4);
}
.about-section .about-text-section .about-second {
  background-image: repeating-linear-gradient(45deg, rgba(88, 142, 0, 0.05) 0, rgba(88, 142, 0, 0.1) 2px, transparent 0, transparent 50%);
  background-color: rgba(88, 142, 0, 0.2);
  background-size: 10px 10px;
}
.about-section .about-quote {
  background: rgba(88, 142, 0, 0.1);
}
.about-section .about-quote-icon {
  top: 0;
  right: 25%;
  transform: translateY(-50%) skewX(-20deg);
  width: 5rem;
  height: 4rem;
  background: rgba(88, 142, 0, 0.3);
}

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

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

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

.ThankYou {
  background: radial-gradient(circle, #588e00, #0b3614);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ThankYou-button {
  background: #588e00;
}
@media (hover: hover) and (pointer: fine) {
  .ThankYou-button:hover {
    background: #909700;
  }
}

.thank-you-container {
  max-width: 400px;
}

.thank-you-container img {
  width: 100px;
  margin-bottom: 20px;
}