/*
------------------------------------
  IMPORT ARCHEKTURY SCSS
------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400;1,600;1,700&display=swap");
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 15px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 25px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  line-height: 20px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn-primary {
  background-color: #659319;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #4A700B;
}
.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-secondary:hover {
  background-color: #4A700B;
  color: #ffffff;
  border: 1px solid #4A700B;
}

.separator {
  width: 80px;
  height: 2px;
  background: #88B839;
  border-radius: 30px;
}

.news__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 0;
}
.news__item-thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 406.67/235.44;
  overflow: hidden;
}
.news__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  width: 100%;
}
.news__item-title {
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.news__item-title > a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.news__item-excerpt {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news__item-excerpt > p {
  margin: 0;
}
.news__item-link {
  font-family: "Merriweather Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #88B839;
  text-decoration: none;
}

.news-archive {
  background-color: #ffffff !important;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination__item {
  display: flex;
}
.pagination__item:first-child, .pagination__item:last-child {
  margin: 0 8px;
}
.pagination__item:first-child:first-child, .pagination__item:last-child:first-child {
  margin-right: 4px;
}
.pagination__item:first-child:last-child, .pagination__item:last-child:last-child {
  margin-left: 4px;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #f2f2f2;
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination .page-numbers:hover {
  background: #659319;
  color: #ffffff;
}
.pagination .page-numbers.current {
  background: #659319;
  color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}
.pagination .page-numbers.prev svg path, .pagination .page-numbers.next svg path {
  fill: #222222;
  transition: fill 0.2s ease;
}
.pagination .page-numbers.prev:hover svg path, .pagination .page-numbers.next:hover svg path {
  fill: #ffffff;
}
.pagination__item--disabled .page-numbers {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3,
h4, h5, h6 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(1.375rem, 1.333vw + 1.05rem, 8rem);
}

h2 {
  font-size: clamp(1.25rem, 0.952vw + 1.02rem, 1.875rem);
}

h3 {
  font-size: clamp(1.125rem, 0.571vw + 0.986rem, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 0.381vw + 0.907rem, 1.25rem);
}

h5 {
  font-size: clamp(0.875rem, 0.19vw + 0.829rem, 1rem);
}

h6 {
  font-size: clamp(0.8125rem, 0.095vw + 0.789rem, 0.875rem);
}

p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.6;
}

a {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 400;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

li::marker {
  color: #88B839;
  font-size: 24px;
  line-height: 1.2;
}

.font-regular {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  z-index: 100;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 12px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .header__container {
    padding: 12px 40px;
  }
}
@media (max-width: 768px) {
  .header__container {
    padding: 12px 20px;
  }
}
.header__brand {
  position: relative;
  z-index: 102;
  width: 180px;
  height: auto;
  flex-shrink: 0;
}
.header__brand a {
  display: block;
}
.header__brand img {
  width: 180px;
  height: auto;
  display: block;
}
.header__toggle {
  display: none;
  position: relative;
  z-index: 102;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #222222;
  line-height: 1;
}
.header__toggle i {
  font-size: 28px;
  display: block;
}
@media (max-width: 1200px) {
  .header__toggle {
    display: block;
  }
}
.header__toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.header__close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #222222;
  line-height: 1;
}
.header__close i {
  font-size: 28px;
  display: block;
}
@media (max-width: 768px) {
  .header__close {
    display: block;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 500px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 80px 40px 40px;
    overflow-y: auto;
    z-index: 101;
    background: #ffffff;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__nav.is-active {
    right: 0;
    z-index: 999;
  }
}
@media (max-width: 768px) {
  .header__nav {
    padding: 80px 24px 40px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }
}
.header__menu li {
  list-style: none;
  margin: 0;
}
.header__menu li a {
  display: block;
  text-decoration: none;
  position: relative;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222222;
  white-space: nowrap;
  padding: 20px;
}
.header__menu li a:hover {
  color: #659319;
}
@media (max-width: 1200px) {
  .header__menu li a {
    font-size: 15px;
    padding: 10px 0;
  }
  .header__menu li a::after {
    display: none;
  }
}
.header__menu li.current-menu-item > a, .header__menu li.current_page_item > a, .header__menu li.current-menu-ancestor > a {
  color: #659319;
}
.header__menu li.current-menu-item > a::after, .header__menu li.current_page_item > a::after, .header__menu li.current-menu-ancestor > a::after {
  width: 100%;
}
.header__menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 200px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 200;
}
@media (max-width: 768px) {
  .header__menu .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0 4px 16px;
    border-left: 2px solid #88B839;
  }
}
.header__menu .sub-menu li {
  padding: 0;
}
.header__menu .sub-menu li a {
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #222222;
  text-transform: none;
  font-weight: 600;
}
.header__menu .sub-menu li a::after {
  display: none;
}
.header__menu .sub-menu li a:hover {
  color: #659319;
  background: #f2f2f2;
}
@media (max-width: 1200px) {
  .header__menu .sub-menu li a {
    padding: 8px 0;
  }
}
.header__menu .menu-item-has-children {
  position: relative;
}
@media (min-width: 768px) {
  .header__menu .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}
.header__contact-data {
  display: none;
}
@media (max-width: 1200px) {
  .header__contact-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid #CCCCCC;
  }
}
.header__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.header__info i {
  font-size: 18px;
  color: #88B839;
  flex-shrink: 0;
}
.header__info a {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 14px;
  color: #222222;
  text-decoration: none;
}
.header__info a:hover {
  color: #659319;
}
.header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 100;
  pointer-events: none;
}
@media (max-width: 768px) {
  .header__overlay.is-active {
    display: block;
    pointer-events: auto;
  }
}
.header__button {
  padding: 10px 20px;
  color: #ffffff;
  background-color: #659319;
  line-height: 100%;
}
.header__button:hover {
  background-color: #4A700B;
}
.header__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header__social > a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  border-radius: 99px;
  transition: all 0.2s ease;
}
.header__social > a:hover {
  background: #659319;
}
.header__social > a:hover svg path {
  fill: #ffffff;
}

@media (max-width: 1200px) {
  .button-disable-mobile {
    display: none !important;
  }
}

.offer-grid__flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
}
@media (max-width: 768px) {
  .offer-grid__flex {
    grid-template-columns: 1fr;
  }
}
.offer-grid__item {
  padding: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.offer-grid__item:nth-child(2n) {
  border-right: none;
}
.offer-grid__item:nth-last-child(-n+2) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .offer-grid__item {
    padding: 24px;
    border-right: none;
  }
  .offer-grid__item:nth-child(2n) {
    border-right: none;
  }
  .offer-grid__item:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .offer-grid__item:last-child {
    border-bottom: none;
  }
}
.offer-grid__item-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  .offer-grid__item-content {
    flex-direction: column;
    gap: 24px;
  }
}
.offer-grid__left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .offer-grid__left-col {
    width: 100%;
  }
}
.offer-grid__item-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: #222222;
  position: relative;
}
.offer-grid__item-title::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #88B839;
  border-radius: 5px;
}
.offer-grid__item-thumbnail {
  width: 100%;
  aspect-ratio: 280.75/165.69;
  border-radius: 10px;
  overflow: hidden;
}
.offer-grid__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer-grid__item-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #222222;
}
.offer-grid__item-desc > p {
  margin: 0;
}
.offer-grid__right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .offer-grid__right-col {
    width: 100%;
  }
}
.offer-grid__item-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.offer-grid__item-list-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #222222;
  margin: 0;
}
.offer-grid__item-list-content {
  width: 100%;
}
.offer-grid__item-list-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 8px 0;
  margin: 0;
  list-style: none;
}
.offer-grid__item-list-content li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #222222;
}
.offer-grid__item-list-content li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #88B839;
  border-radius: 50%;
  margin-top: 8px;
}

.offer-cta {
  width: 100%;
  background-color: #88B839;
}
.offer-cta__container {
  display: flex;
  padding: 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .offer-cta__container {
    flex-direction: column;
  }
}
.offer-cta__image {
  width: 80%;
}
@media (max-width: 768px) {
  .offer-cta__image {
    width: 100%;
  }
}
.offer-cta__content {
  width: 100%;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .offer-cta__content {
    padding: 40px 24px;
  }
}
.offer-cta__content li {
  position: relative;
  padding-left: 28px;
}
.offer-cta__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6.36018L15.5778 6C15.5778 6 13.2916 8.06103 11.2456 10.3222C9.1996 12.5833 8.24412 14.4292 8.24412 14.4292L4.32716 10.2721L0 11.6978C0 11.6978 2.5913 13.4337 4.24212 14.9795C5.89295 16.5253 8.41921 19.7419 8.41921 19.7419C8.41921 19.7419 10.8604 15.6648 13.3767 12.6783C16.6133 8.86643 20 6.36018 20 6.36018Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.offer-cta__button {
  color: #ffffff;
  border: 2px solid #ffffff;
  line-height: 100%;
  background: transparent;
}
.offer-cta__button:hover {
  background-color: #ffffff;
  color: #88B839;
}

.contact {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 400px;
}
.contact__info-title, .contact__form-title {
  position: relative;
  margin-bottom: 24px;
}
.contact__info-title::before, .contact__form-title::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #88B839;
  border-radius: 30px;
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.contact__info-label {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__info-value {
  font-size: 14px;
  line-height: 100%;
  margin: 0;
  color: #222222;
  text-decoration: none;
}
.contact__form {
  width: 100%;
  flex: 1;
}
.contact__form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  width: 100%;
  max-width: 850px;
}
.contact__form .wpcf7-form p {
  margin: 0;
  grid-column: span 1;
}
.contact__form .wpcf7-form p:nth-of-type(5) {
  grid-column: span 2;
}
.contact__form .wpcf7-form p:nth-of-type(6) {
  grid-column: span 2;
}
.contact__form .wpcf7-form p:nth-of-type(7) {
  width: -moz-max-content;
  width: max-content;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  font-size: 14px;
  color: #222222;
}
.contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.contact__form .wpcf7-form-control {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 15px;
  background: #ffffff;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  font-family: "Merriweather Sans";
  font-size: 14px;
  color: #555353;
}
.contact__form textarea.wpcf7-form-control {
  height: 172px;
  resize: vertical;
}
.contact__form .wpcf7-acceptance {
  display: block;
}
.contact__form .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact__form .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 24px;
  color: #222222;
}
.contact__form .wpcf7-list-item-label a {
  color: #222222;
  text-decoration: underline;
}
.contact__form .wpcf7-form-control.wpcf7-acceptance {
  border: none;
  padding: 0;
  width: auto;
}
.contact__form input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  background: #ffffff;
  border: 1px solid #CCCCCC;
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.contact__form input[type=checkbox]:checked {
  background: #ffffff;
  border-color: #CCCCCC;
}
.contact__form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6.36018L15.5778 6C15.5778 6 13.2916 8.06103 11.2456 10.3222C9.1996 12.5833 8.24412 14.4292 8.24412 14.4292L4.32716 10.2721L0 11.6978C0 11.6978 2.5913 13.4337 4.24212 14.9795C5.89295 16.5253 8.41921 19.7419 8.41921 19.7419C8.41921 19.7419 10.8604 15.6448 13.3767 12.6783C16.6133 8.86643 20 6.36018 20 6.36018Z' fill='%23659319'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.contact__form .wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #659319;
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
.contact__form .wpcf7-submit:hover {
  background-color: #4A700B;
}
.contact__form .wpcf7-spinner {
  margin-left: 8px;
}
@media (max-width: 960px) {
  .contact__container {
    flex-direction: column;
    gap: 40px;
  }
  .contact__info {
    min-width: unset;
    width: 100%;
  }
  .contact__form {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact__form .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .contact__form .wpcf7-form p {
    grid-column: span 1;
  }
  .contact__form .wpcf7-form p:nth-of-type(5) {
    grid-column: span 1;
  }
  .contact__form .wpcf7-form p:nth-of-type(6) {
    grid-column: span 1;
  }
}

.wpcf7-form-control-wrap > .wpcf7-acceptance > .wpcf7-list-item > label {
  flex-direction: row;
  gap: 12px;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 50%;
}
.wpcf7 .wpcf7-submit:disabled:hover {
  background-color: #659319;
}

.footer {
  width: 100%;
  background: #141414;
  padding-top: 50px;
}
.footer__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 50px;
}
@media (max-width: 960px) {
  .footer__grid {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer__col--brand {
  flex: 0 0 407px;
  max-width: 407px;
}
@media (max-width: 960px) {
  .footer__col--brand {
    flex: 1 1 auto;
    max-width: 100%;
  }
}
.footer__col--menu, .footer__col--contact {
  flex: 1 1 0;
  gap: 18px;
}
@media (max-width: 960px) {
  .footer__col--menu, .footer__col--contact {
    flex: 1 1 auto;
    padding-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .footer__col--menu, .footer__col--contact {
    flex: 1 1 100%;
    padding-left: 0 !important;
  }
}
.footer__col--menu {
  padding-left: 64px;
}
.footer__col-title {
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  margin: 0;
}
.footer__logo img {
  display: block;
  width: 180px;
  height: auto;
  filter: grayscale(1) brightness(4.4);
}
.footer__tagline {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #E6E6E6;
  margin: 0;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.footer__social-link svg path {
  fill: #222222;
}
.footer__social-link:hover {
  background: #659319;
}
.footer__social-link:hover svg path {
  fill: #ffffff;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu li {
  margin: 0;
}
.footer__menu a {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-decoration: none;
}
.footer__menu a:hover {
  color: #88B839;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.footer__contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 24px;
}
.footer__contact-icon svg {
  display: block;
}
.footer__contact-value {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}
.footer__contact-link {
  text-decoration: none;
}
.footer__contact-link:hover {
  color: #88B839;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer__bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .footer__bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 20px 15px;
  }
}
.footer__copyright, .footer__credit {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #CCCCCC;
  margin: 0;
}
.footer__credit a {
  color: #CCCCCC;
  text-decoration: underline;
}
.footer__credit a:hover {
  color: #ffffff;
}

.cookies {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.cookies--visible {
  pointer-events: auto;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}
.cookies--visible .cookies__box {
  transform: scale(1);
  opacity: 1;
}
.cookies__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookies__title {
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: clamp(1.125rem, 0.571vw + 0.986rem, 1.5rem);
  line-height: 1.17;
  color: #000000;
  margin: 0;
}
.cookies__description {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #222222;
  margin: 0;
}
.cookies__sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.cookies__section {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 12px;
  width: 100%;
}
.cookies__section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.cookies__section-title {
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.095vw + 0.789rem, 0.875rem);
  line-height: 1.29;
  color: #000000;
  flex: 1;
}
.cookies__section-status {
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.095vw + 0.789rem, 0.875rem);
  line-height: 1.29;
  color: #000000;
  white-space: nowrap;
}
.cookies__section-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.cookies__section--open .cookies__section-arrow {
  transform: rotate(180deg);
}
.cookies__section-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.cookies__section-content p {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #222222;
  margin: 0;
}
.cookies__section--open .cookies__section-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}
.cookies__toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookies__toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookies__toggle-slider {
  position: absolute;
  inset: 0;
  background: #CCCCCC;
  border-radius: 30px;
  transition: background-color 0.25s ease;
}
.cookies__toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 2px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.cookies__toggle-input:checked + .cookies__toggle-slider {
  background: #659319;
}
.cookies__toggle-input:checked + .cookies__toggle-slider::before {
  transform: translateX(20px);
}
.cookies__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}
.cookies__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  flex: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cookies__btn--accept {
  background: #659319;
  color: #ffffff;
}
.cookies__btn--accept:hover {
  background: rgb(77.0418604651, 112.1302325581, 19.0697674419);
}
.cookies__btn--decline, .cookies__btn--save {
  background: transparent;
  border-color: #659319;
  color: #659319;
}
.cookies__btn--decline:hover, .cookies__btn--save:hover {
  background: #659319;
  color: #ffffff;
}
.cookies__privacy-link {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #659319;
  text-decoration: none;
}
.cookies__privacy-link:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .cookies__actions {
    flex-direction: column;
  }
  .cookies__btn {
    width: 100%;
  }
}

.post__inner {
  max-width: 844px;
  margin: 0 auto;
}
.post__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.post__content h2 {
  font-family: "Merriweather Sans";
  font-weight: 700;
  font-size: clamp(1.25rem, 0.952vw + 1.02rem, 1.875rem);
  line-height: 34px;
  color: #000000;
  margin: 0;
}
.post__content h2 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  margin-bottom: 16px;
}
.post__content p {
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  margin: 0;
}
.post__content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 8px 0;
  margin: 0;
  list-style: none;
}
.post__content li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Merriweather Sans";
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #222222;
}
.post__content li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #659319;
  border-radius: 50%;
  margin-top: 10px;
}
.post__content img:not(h2 img) {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.related-posts .news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.related-posts__nav {
  display: flex;
  gap: 8px;
}
.related-posts__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.related-posts__btn svg path {
  fill: #222222;
  transition: fill 0.2s ease;
}
.related-posts__btn:hover {
  background: #659319;
}
.related-posts__btn:hover svg path {
  fill: #ffffff;
}
.related-posts__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.related-posts .related-posts-header {
  flex-direction: row !important;
}
.related-posts .news__grid.related-posts__carousel {
  display: flex !important;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.related-posts .news__grid.related-posts__carousel::-webkit-scrollbar {
  display: none;
}
.related-posts .news__grid.related-posts__carousel .news__item {
  flex: 0 0 calc((100% - 60px) / 3);
  scroll-snap-align: start;
  min-width: 280px;
}
@media (max-width: 960px) {
  .related-posts .news__grid.related-posts__carousel .news__item {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media (max-width: 768px) {
  .related-posts .news__grid.related-posts__carousel .news__item {
    flex: 0 0 85%;
  }
}

.single-hero {
  position: relative;
  z-index: 1;
}
.single-hero__overlay-solid {
  background-color: rgba(0, 0, 0, 0.1254901961);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
}
.single-hero__overlay-gradient {
  background: linear-gradient(12deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
}

.single-hero .container {
  z-index: 3;
}

.error-404 {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.error-404__image {
  max-width: 600px;
  width: 100%;
  height: auto;
}
.error-404__title {
  font-size: clamp(2.5rem, 3.81vw + 1.595rem, 5rem);
  font-weight: 800;
  color: #222222;
  margin: 0;
}
.error-404__description {
  font-size: 16px;
  color: #222222;
  margin: 0;
  max-width: 400px;
}

.hero {
  width: 100%;
  min-height: 650px;
  background-image: url("../images/hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 0 !important;
  }
}
.hero__content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero__content {
    min-width: 100%;
  }
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #ffffff;
}
.hero__title-first {
  font-size: clamp(2.5rem, 3.81vw + 1.595rem, 5rem);
  line-height: 120% !important;
  font-weight: 800;
  text-transform: uppercase;
}
.hero__title-second {
  font-size: clamp(4.5rem, 5.71vw + 3.129rem, 8rem);
  line-height: 80% !important;
  font-weight: 800;
  text-transform: uppercase;
  color: #88B839;
}
.hero__subtitle {
  color: #ffffff;
  font-size: clamp(1rem, 0.381vw + 0.907rem, 1.25rem);
  font-weight: 400;
  line-height: 1.4;
  padding-bottom: 12px;
}
.hero__badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  background-color: rgba(4, 4, 4, 0.5);
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .hero__badges {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 48px;
    width: 100%;
  }
}
.hero__badge {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  color: #ffffff;
  font-size: clamp(1rem, 0.381vw + 0.907rem, 1.25rem);
  font-weight: 600;
}
.hero__badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.hero__badge-title {
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero__badge-title {
    text-align: center;
    font-size: 13px;
  }
}
.hero__badge-separator {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 768px) {
  .hero__badge-separator {
    display: none;
  }
}
.hero__badge-separator:last-child {
  display: none;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .hero__cta {
    flex-direction: column;
  }
}

.feauters {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feauters__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .feauters__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.feauters__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 290px;
  gap: 24px;
  position: relative;
}
.feauters__header::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #88B839;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .feauters__header {
    max-width: 100%;
    width: 100%;
  }
}
.feauters__flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}
@media (max-width: 768px) {
  .feauters__flex {
    flex-direction: column;
    margin-right: 0;
    width: 100%;
  }
}
.feauters__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #f2f2f2;
  border-radius: 10px;
  width: 100%;
  flex: 1;
}
.feauters__item-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.feauters__item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feauters__item-desc {
  font-size: 12px;
  line-height: 1.5;
}

.offer {
  background-image: url("../images/offer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  color: #ffffff;
}
.offer__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.offer__flex {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  gap: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .offer__flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .offer__flex {
    flex-direction: column;
  }
}
.offer__item {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  color: #222222;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .offer__item {
    flex: 1 1 calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  .offer__item {
    flex: 1 1 auto;
    width: 100%;
  }
}
.offer__item-thumbnail {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
.offer__item-thumbnail > img {
  width: 100% !important;
  height: 100% !important;
}
.offer__item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: 100%;
}
.offer__item-title {
  font-size: 16px;
  font-weight: 700;
}
.offer__item-list > ul {
  font-size: 12px;
  margin-top: 0;
  margin-left: -12px;
  margin-bottom: 24px;
}
.offer__item-button {
  margin-top: auto;
  border: 2px solid #659319;
  padding: 10px 20px;
  color: #659319;
  font-weight: 700;
  font-size: 13px;
}
.offer__item-button:hover {
  background-color: #4A700B;
  color: #ffffff;
  border: 2px solid #4A700B;
}

.text-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-image__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image__container {
    flex-direction: column;
  }
}
.text-image__media {
  width: 50%;
  height: auto;
  aspect-ratio: 3/2;
  min-height: 470px;
  border-radius: 32px;
  overflow: hidden;
}
.text-image__media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .text-image__media {
    width: 100%;
    min-height: 0;
  }
}
.text-image__content {
  width: 50%;
  padding: 0 0 0 32px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .text-image__content {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
.text-image__title {
  position: relative;
}
.text-image__title::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #88B839;
  border-radius: 30px;
}
.text-image__stats {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image__stats {
    flex-direction: column;
    align-items: flex-start;
  }
}
.text-image__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 170px;
}
.text-image__stat-number {
  font-size: clamp(1.375rem, 1.333vw + 1.05rem, 8rem);
  font-weight: 700;
  color: #659319;
}
.text-image__stat-text {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.text-image__button {
  border: 2px solid #659319;
  color: #659319;
  padding: 10px 20px;
}
.text-image--reverse .text-image__container {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .text-image--reverse .text-image__container {
    flex-direction: column;
  }
}
.text-image--reverse .text-image__content {
  width: 50%;
  padding: 32px 0 0 0;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .text-image--reverse .text-image__content {
    width: 100%;
    padding: 0;
    height: auto;
  }
}

.news {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #f2f2f2;
}
.news__all-link {
  border: 2px solid #659319;
  color: #659319;
  padding: 10px 20px;
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news__header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.news__title-separator {
  margin-top: 12px;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.hero-subpage {
  width: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.hero-subpage__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: 24px;
}
.hero-subpage__title {
  color: #ffffff;
  margin-bottom: 8px;
}
.hero-subpage__breadcrumb {
  color: #ffffff;
}
.hero-subpage__breadcrumb > a {
  color: #CCCCCC;
  text-decoration: none;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gallery__image {
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.07);
}/*# sourceMappingURL=style.css.map */