@font-face {
  font-family: Lora Variablefont Wght;
  src: url('../fonts/Lora-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --orange: #d68012;
  --light-beige: #fff8e8;
  --middlegreen: #798f29;
  --white-beige: #fffcf5;
  --white: white;
  --green: #006835;
  --brown: #683728;
  --yellow: #f5ca59;
  --grey: #49484a;
  --beige: #fff3d8;
  --sand: #a48553;
}

body {
  color: var(--black);
  font-family: Lora Variablefont Wght, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.brand-section {
  z-index: 999;
  border-bottom: 1px solid var(--orange);
  background-color: var(--light-beige);
  height: 12.2rem;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 0 20px #0000001f;
}

.logo-div {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.logo-wrapper {
  width: 100%;
  max-width: 20rem;
  display: flex;
}

.green-div {
  background-color: var(--middlegreen);
  height: 2rem;
  margin-bottom: 1rem;
}

.page-section {
  background-color: var(--white-beige);
  padding: 6rem 4rem;
}

.page-section.beige {
  background-color: var(--light-beige);
}

.page-section.white {
  background-color: var(--white);
}

.page-inner {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.heading-h1 {
  color: var(--green);
  text-align: center;
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
}

.paragraph {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.paragraph.orange {
  color: var(--orange);
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.paragraph.strong {
  font-weight: 600;
}

.heading-h2 {
  color: var(--brown);
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
}

.button-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.button {
  background-color: var(--green);
  text-align: center;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  transition: background-color .2s;
}

.button:hover, .button.green {
  background-color: var(--middlegreen);
}

.button.green:hover {
  background-color: var(--orange);
}

.product-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  margin-bottom: 4rem;
  display: flex;
}

.product-item {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--white-beige);
  border-radius: .5rem;
  display: flex;
}

.product-image-wrapper {
  border-radius: .5rem 0 0 .5rem;
  width: 100%;
  min-width: 16rem;
  max-width: 16rem;
  overflow: hidden;
}

.product-lightbox {
  width: 100%;
  height: 100%;
}

.product-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-test-wrapper {
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.product-head {
  color: var(--middlegreen);
  margin-bottom: .25rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.product-text {
  margin-bottom: 1rem;
}

.product-text.big {
  font-size: 1.25rem;
}

.product-text.center {
  text-align: center;
}

.header-section {
  height: 65svh;
}

.header-inner {
  width: 100%;
  height: 100%;
  padding-top: 10rem;
  overflow: hidden;
}

.header-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-section {
  background-color: var(--middlegreen);
}

.footer-inner {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  display: flex;
}

.footer-wrapper {
  padding: 4rem 4rem 2rem;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--yellow);
}

.footer-paragraph {
  text-align: center;
}

.footer-wrapper-impress {
  flex-flow: row;
  justify-content: center;
  padding: 2rem 4rem 4rem;
}

.footer-inner-impress {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-top: 1px solid var(--grey);
  color: var(--white);
  justify-content: center;
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  display: flex;
}

.logo-link {
  width: 100%;
  max-width: 20rem;
}

.logo-footer-wrapper {
  justify-content: center;
  width: 100%;
  display: flex;
}

.footer-link-block {
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.footer-link-block:hover {
  color: var(--yellow);
}

@media screen and (max-width: 991px) {
  .product-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .product-test-wrapper {
    padding: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .brand-section {
    height: 10.4rem;
  }

  .logo-wrapper {
    max-width: 16rem;
  }

  .heading-h1 {
    font-size: 1.75rem;
  }

  .paragraph.orange {
    font-size: 1.1rem;
  }

  .heading-h2 {
    font-size: 1.25rem;
  }

  .product-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
    padding: 2rem 1rem 1rem;
  }

  .product-image-wrapper {
    border-top-right-radius: .5rem;
    border-bottom-right-radius: .5rem;
  }

  .product-test-wrapper {
    padding: 0;
  }

  .product-head, .product-text {
    text-align: center;
  }

  .header-inner {
    padding-top: 9.5rem;
  }
}

@media screen and (max-width: 479px) {
  .brand-section {
    height: 9.5rem;
  }

  .logo-wrapper {
    max-width: 14rem;
  }

  .page-section {
    padding: 4rem 2rem;
  }

  .paragraph {
    font-size: 1rem;
  }

  .button-wrapper {
    margin-top: 2rem;
  }

  .product-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .product-item {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-bottom: .5rem;
  }

  .product-image-wrapper {
    min-width: 14rem;
    max-width: 14rem;
  }

  .product-head {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .product-text {
    font-size: .9rem;
  }

  .product-text.big {
    margin-bottom: .5rem;
    font-size: 1rem;
  }

  .header-inner {
    padding-top: 9rem;
  }

  .footer-wrapper, .footer-wrapper-impress {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-inner-impress {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }
}


@font-face {
  font-family: 'Lora Variablefont Wght';
  src: url('../fonts/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}