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

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

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

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
  font-family: "Merriweather Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.9rem, 2.0833333333vw, 1rem);
  color: #000000;
  letter-spacing: 0;
  line-height: 1.5rem;
  min-height: 100vh;
  background-color: #f8f6f0;
}
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}

.max-width {
  max-width: 67.1875rem;
  width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
  margin: 0 auto;
  height: 100%;
}

.red {
  color: #ff0000;
}

.large-text {
  font-size: clamp(1rem, 2.34375vw, 1.125rem);
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.yellow-bg {
  background-color: #ffdd00;
}

.link {
  max-width: 667px;
  color: #0000ff;
  font-size: clamp(1.25rem, 3.125vw, 1.6875rem);
  line-height: 1.4;
  text-decoration: underline;
  display: block;
  font-weight: 700;
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
  opacity: 0.8;
  transition: opacity 150ms ease;
}
@media (hover: hover) {
  .link:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .link {
    opacity: 1;
  }
}

.green {
  color: #33704f;
}

.topbar {
  background-image: url("../img/header-bg.webp");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  padding: 36px 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(1rem, 2.34375vw, 1.25rem);
       column-gap: clamp(1rem, 2.34375vw, 1.25rem);
}
.logo img {
  width: clamp(65px, 9.375vw, 72px);
  height: clamp(65px, 9.375vw, 72px);
}
.logo p {
  text-transform: uppercase;
  color: #2a4b3a;
}
.logo p span {
  display: block;
}
.logo p span:first-child {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6.5104166667vw, 50px);
  line-height: 1;
}
.logo p span:last-child {
  font-family: "Dosis", sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4.5572916667vw, 35px);
  line-height: 1;
  margin-top: -4px;
}

.navbar {
  background-color: #2a4b3a;
  color: #ffffff;
  padding: 0.75rem 0;
}
.navbar nav {
  align-items: center;
  justify-content: space-between;
  row-gap: 0.3rem;
  display: none;
}
@media (min-width: 62rem) {
  .navbar nav {
    display: flex;
  }
}
.navbar nav a {
  font-size: clamp(1rem, 1.6129032258vw, 1.25rem);
  transition: color 150ms ease;
}
.navbar nav a:hover {
  color: #efefef;
}

.footer {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #808080;
  margin: clamp(1.75rem, 4.5572916667vw, 2.5rem) auto 1rem;
}
.footer__copyright {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.footer__links {
  margin: clamp(0.75rem, 2.0833333333vw, 1rem) 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.footer__links a {
  padding: 0 0.3rem;
  text-decoration: underline;
  line-height: 1;
  text-underline-offset: 1.5px;
  transition: color 150ms ease;
}
.footer__links a:not(:last-child) {
  border-right: 2px solid #808080;
}
@media (hover: hover) {
  .footer__links a:hover {
    color: #3d3d3d;
  }
}

.container {
  width: 100%;
  background-color: #ffffff;
  padding: 1.25rem clamp(1rem, 2.6041666667vw, 1.25rem) clamp(1.75rem, 4.4270833333vw, 2.5rem);
}
@media (min-width: 62rem) {
  .container {
    max-width: 67.1875rem;
    width: calc(100% - clamp(0.5rem, 2.6041666667vw, 2.5rem) * 2);
    margin: 0 auto;
    height: 100%;
  }
}

.summary.container {
  padding: clamp(1.5rem, 4.1666666667vw, 2.5rem) clamp(1rem, 2.6041666667vw, 1.25rem);
}

@media (min-width: 62rem) {
  .main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.main__content {
  width: 100%;
}
@media (min-width: 62rem) {
  .main__content {
    width: 683px;
  }
}
.main__content > p {
  margin-top: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.main__content .image {
  max-width: 282px;
  margin: clamp(0.9rem, 2.0833333333vw, 1.25rem) auto 0;
  display: block;
}
.main aside {
  display: none;
}
@media (min-width: 62rem) {
  .main aside {
    display: block;
    width: 100%;
    max-width: 300px;
  }
}

.main h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(1.5rem, 3.90625vw, 2.3125rem);
  line-height: 1.2;
  margin-bottom: clamp(0.8rem, 2.0833333333vw, 1.25rem);
}

.image-box {
  max-width: 683px;
  background-color: #f8f6f0;
  border-radius: 20px;
  padding: clamp(0.8rem, 2.0833333333vw, 1.25rem);
  border: 1px solid #432f26;
}
.image-box img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 10px;
  margin-bottom: 0.625rem;
}
.image-box figcaption {
  color: #432f26;
  font-size: clamp(0.75rem, 1.8229166667vw, 0.875rem);
  line-height: 1.3;
  text-align: center;
}

.history {
  position: relative;
  font-family: "Merriweather", serif;
  background-image: url("../img/old-paper.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  color: #3d3d3d;
  letter-spacing: 0.24px;
  padding: clamp(0.8rem, 2.0833333333vw, 1.25rem);
  margin-top: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.history > p:not(:first-of-type) {
  margin-top: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.history .quotation-mark {
  position: absolute;
  top: clamp(0.8rem, 2.0833333333vw, 1.25rem);
  left: clamp(0.8rem, 2.0833333333vw, 1.25rem);
}
.history img:not(.quotation-mark) {
  display: block;
  max-width: 520px;
  width: 100%;
  margin: clamp(0.9rem, 2.0833333333vw, 1.25rem) auto 0;
}

.history + p {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
}

.h2 {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
  font-family: "Merriweather", serif;
  color: #6b8e6f;
  font-size: clamp(1.25rem, 3.125vw, 1.6875rem);
  line-height: 1.3;
}

.list-with-image {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.9rem, 2.0833333333vw, 1.25rem);
  margin-top: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
@media (min-width: 650px) {
  .list-with-image {
    flex-direction: row;
    align-items: center;
    margin-top: 0.2rem;
    -moz-column-gap: 38px;
         column-gap: 38px;
  }
}
.list-with-image img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .list-with-image img {
    margin: 0;
    width: 250px;
  }
}
.list-with-image li {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: clamp(0.9rem, 2.0833333333vw, 1.25rem);
       column-gap: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.list-with-image li:not(:last-child) {
  margin-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.list-with-image li .icon {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjNmI4ZTZmIiBkYXRhLW5hbWU9IlJlY3RhbmdsZSAyNCIgcng9IjUiLz48cGF0aCBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIzIiBkPSJtNS4wMzQgMTIuMzQxIDUuMjkzIDUuMjkzIDkuMjItMTEuMjY5IiBkYXRhLW5hbWU9IlBhdGggMTk5NSIvPjwvc3ZnPg==");
}

.list-with-image + p {
  margin-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}

.figure {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
}
.figure img {
  width: 100%;
  height: auto;
}
.figure figcaption {
  margin-top: clamp(0.9rem, 2.0833333333vw, 1.25rem);
  font-size: 14px;
  color: #432f26;
  text-align: center;
}

.figure + p {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
}

.testimonial {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
  max-width: 683px;
}
.testimonial__item {
  background-color: #f8f6f0;
  border: 1px solid #432f26;
  border-radius: 10px;
  padding: clamp(0.9rem, 2.0833333333vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.testimonial__item:not(:last-child) {
  margin-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
@media (min-width: 600px) {
  .testimonial__item {
    flex-direction: row;
  }
}
.testimonial__item div:first-child {
  text-align: center;
}
@media (min-width: 600px) {
  .testimonial__item div:first-child {
    flex-shrink: 0;
    width: 130px;
  }
}
.testimonial__item div:first-child img {
  width: 110px;
  height: 110px;
  margin-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.testimonial__item div:first-child p {
  color: #2a4b3a;
  font-size: 0.75rem;
  font-weight: 700;
}
.testimonial__item div:last-child h3 {
  font-family: "Lora", serif;
  color: #2a4b3a;
  font-size: clamp(1rem, 2.6041666667vw, 1.25rem);
}
.testimonial__item div:last-child p {
  letter-spacing: 0.24px;
  margin-top: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}

.testimonial + p {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
}

.comments {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
  max-width: 683px;
}
.comments h2 {
  color: #3d3d3d;
  font-size: clamp(1.25rem, 3.125vw, 2rem);
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #808080;
  margin-bottom: clamp(1.5rem, 4.1666666667vw, 2.5rem);
}
.comments .comment {
  border-bottom: 2px solid #dedede;
  padding-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
  display: flex;
  -moz-column-gap: clamp(0.9rem, 2.0833333333vw, 1rem);
       column-gap: clamp(0.9rem, 2.0833333333vw, 1rem);
}
.comments .comment:not(:last-child) {
  margin-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.comments .comment img {
  width: clamp(2.2rem, 5.2083333333vw, 2.5rem);
  height: clamp(2.2rem, 5.2083333333vw, 2.5rem);
  display: block;
  margin-top: 5px;
}
.comments .comment h3,
.comments .comment p {
  font-family: calmetta, sans-serif;
  color: #3d3d3d;
  font-size: clamp(0.9rem, 2.0833333333vw, 1rem);
}
.comments .comment p {
  margin-top: clamp(0.5rem, 1.5625vw, 1rem);
}

.banner {
  overflow: hidden;
  position: relative;
  background-image: url("../img/ZAP_2006_BANER.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 400px;
  display: grid;
  align-content: space-between;
  justify-items: center;
  padding: 1rem;
}
.banner .flag {
  position: absolute;
  width: 81px;
  top: 80px;
  left: 0;
  z-index: 0;
}
.banner header {
  position: relative;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  z-index: 1;
}
.banner p {
  color: #3d3d3d;
  font-weight: 600;
  font-size: clamp(1rem, 1.814516129vw, 1.125rem);
  margin-bottom: 0.5rem;
}
.banner h2 {
  font-weight: 900;
  color: #ff0000;
  font-size: clamp(1.25rem, 2.9947916667vw, 1.375rem);
  text-transform: uppercase;
}
.banner button {
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ff7214;
  border: 1px solid #ffffff;
  border-radius: 100vmax;
  padding: 0.75rem 1.375rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  font-weight: 700;
  font-family: "Segoe UI", segoe-ui, sans-serif;
  line-height: 1.2;
  text-align: center;
  transition: background-color 200ms ease;
}
.banner button:hover {
  background-color: #ff6600;
}
.banner button .icon {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCI+PHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTIgMGExMiAxMiAwIDEgMCAxMiAxMkExMi4wMDYgMTIuMDA2IDAgMCAwIDEyIDBabTAgMWExMSAxMSAwIDEgMCAxMSAxMUExMS4wMDUgMTEuMDA1IDAgMCAwIDEyIDFabTQuODI4IDExLjUtNC42MDggMy43NjMuNjguNzM3IDYuMS01LTYuMTEyLTUtLjY2Ni43NTMgNC42IDMuNzQ3SDV2MVoiLz48L3N2Zz4=");
}

.articles {
  margin-top: clamp(1.25rem, 3.125vw, 1.875rem);
  text-align: center;
}
.articles h2 {
  color: #000000;
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  margin-bottom: clamp(1.25rem, 3.125vw, 1.875rem);
}
.articles a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  color: #3d3d3d;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.5;
}
.articles a:not(:last-child) {
  margin-bottom: 18px;
}
.articles a img {
  width: 68px;
  height: auto;
}

.summary {
  text-align: center;
  color: #3d3d3d;
}
.summary h1 {
  position: relative;
  color: #33704f;
  font-family: "Merriweather", serif;
  font-size: clamp(32px, 5.859375vw, 54px);
  line-height: 1.26;
}
.summary h1::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #33704f;
  width: 145px;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}
.summary .product-image {
  max-width: 231px;
  display: block;
  margin: 12px auto;
}
.summary > p:not(:last-child) {
  margin-bottom: clamp(0.9rem, 2.0833333333vw, 1.25rem);
}
.summary .cta__text {
  font-size: clamp(1.25rem, 3.125vw, 1.5rem);
  font-family: "Merriweather", serif;
}
.summary .cta__link ~ p {
  margin-top: clamp(0.9rem, 2.0833333333vw, 1rem);
  margin-bottom: 0;
  font-family: "Merriweather", serif;
}
.summary .cta__link,
.summary .cta__btn {
  display: block;
  min-height: 81px;
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
  padding: 0.5rem;
  font-family: "Merriweather", serif;
  line-height: 1.3;
}
.summary .cta__link {
  place-items: center;
  background-color: #fff;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  color: #4b9222;
  font-size: clamp(1.75rem, 4.9479166667vw, 2.9rem);
  font-weight: 700;
  border-top: 3px solid #3d3d3d;
  border-bottom: 3px solid #3d3d3d;
  border-left: 6px solid #3d3d3d;
  border-right: 6px solid #3d3d3d;
  display: none;
}
.summary .cta__btn {
  background-color: #d8a500;
  color: #ffffff;
  font-size: clamp(1.25rem, 3.6458333333vw, 2rem);
  font-weight: 700;
  border-top: 4px solid #efefef;
  border-bottom: 4px solid #dbc65c;
  transition: color 300ms ease-out;
}
@media (hover: hover) {
  .summary .cta__btn:hover {
    color: #33704f;
  }
}/*# sourceMappingURL=styles.css.map */