@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Noto+Serif:wght@400;700&family=Raleway:wght@300;400;500;700&display=swap");
.common-heading-1 {
  font-size: 48px;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #594B4A;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif", serif;
}

p, li, a {
  font-family: "Raleway", sans-serif;
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding: 0 24px;
}

.navigation {
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
}
@media (min-width: 1000px) {
  .navigation {
    height: 100px;
  }
}
.navigation img {
  display: inline-block;
  width: 40px;
}
@media (min-width: 1000px) {
  .navigation img {
    width: 70px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
}
.hero__wrapper {
  height: auto;
  padding: 100px 0 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url(../../../src/assets/banner/banner-bg.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .hero__wrapper {
    padding: 100px 0 0;
  }
}
@media (min-width: 1000px) {
  .hero__wrapper {
    height: 80vh;
  }
}
.hero__wrapper .container {
  display: flex;
  flex-direction: row;
  max-width: 1400px;
  height: auto;
}
@media (min-width: 500px) {
  .hero__wrapper .container {
    height: calc(80vh - 100px);
  }
}
.hero__info {
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 0;
  color: white;
}
@media (min-width: 500px) {
  .hero__info {
    padding-right: 64px;
  }
}
.hero__info h1 {
  font-size: 40px;
  color: white;
}
@media (min-width: 1500px) {
  .hero__info h1 {
    font-size: 60px;
  }
}
.hero__info h2 {
  font-size: 16px;
  color: white;
}
@media (min-width: 1500px) {
  .hero__info h2 {
    font-size: 40px;
  }
}
.hero__info p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Raleway", sans-serif;
  color: white;
}
@media (min-width: 1000px) {
  .hero__info p {
    font-size: 20px;
  }
}
.hero__info p:first-of-type {
  margin-bottom: 48px;
}
.hero__info p span {
  display: block;
  font-weight: bold;
  font-size: inherit;
  color: inherit;
}
.hero__info__box {
  margin: 24px 0px 40px;
  padding: 16px 40px;
  border-left: 6px solid white;
}
@media (min-width: 1200px) {
  .hero__info__box {
    margin: 24px 40px 40px;
    padding: 16px 40px;
    border-left: 6px solid white;
  }
}
.hero__image {
  max-width: 735px;
  height: 80vh;
  display: none;
  border-radius: 8px;
  object-fit: cover;
}
@media (min-width: 1000px) {
  .hero__image {
    display: inline-block;
  }
}
.hero__contact > .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 24px auto;
  max-width: 1400px;
}
@media (min-width: 600px) {
  .hero__contact > .container {
    justify-content: space-around;
  }
}
@media (min-width: 1000px) {
  .hero__contact > .container {
    justify-content: flex-start;
  }
}
.hero__contact__wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .hero__contact__wrapper {
    display: inline-flex;
    width: unset;
  }
}
.hero__contact__items {
  display: inline-flex;
  flex-direction: column;
  margin-right: 24px;
}
@media (min-width: 1000px) {
  .hero__contact__items {
    flex-direction: row;
  }
}
.hero__contact__items__item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.hero__contact__items__item:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 1000px) {
  .hero__contact__items__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 60px;
  }
}
.hero__contact__items__item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  object-fit: contain;
}
@media (min-width: 1000px) {
  .hero__contact__items__item img {
    width: 32px;
    height: 32px;
  }
}
.hero__contact__items__item a {
  color: black;
  text-decoration: none;
}
@media (min-width: 1000px) {
  .hero__contact__items__item a {
    font-size: 20px;
  }
}
.hero__contact__image {
  width: 150px;
  border-radius: 8px;
  object-fit: cover;
  display: inline-block;
  margin-top: -100px;
}
@media (min-width: 1000px) {
  .hero__contact__image {
    display: none;
  }
}

.products {
  display: block;
  margin: 80px 0;
}
@media (min-width: 1000px) {
  .products {
    margin: 240px 0;
  }
}
.products h1 {
  font-size: 48px;
  text-align: center;
}
.products__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  margin-top: 48px;
  list-style: none;
}
@media (min-width: 800px) {
  .products__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .products__items {
    margin-top: 80px;
  }
}
@media (min-width: 1500px) {
  .products__items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.products__items__item {
  display: inline-flex;
  flex-direction: column;
}
.products__items__item__banner {
  width: 100%;
  height: 216px;
  border-radius: 2px;
  object-fit: cover;
  overflow: hidden;
}
.products__items__item__paper {
  flex: 1;
  margin: 12px;
  padding: 48px 24px;
  border-radius: 4px;
  background-color: white;
  border: 1px solid #EBEBEB;
  margin-top: -64px;
}
.products__items__item__paper ul {
  padding: 0 32px;
  list-style-type: disc;
}
.products__items__item__paper li {
  font-size: 16px;
}
@media (min-width: 800px) {
  .products__items__item__paper li {
    font-size: 24px;
  }
}
.products__items__item__paper h2 {
  margin-bottom: 24px;
  font-size: 24px;
  text-align: center;
}
@media (min-width: 1500px) {
  .products__items__item__paper h2 {
    min-height: 86px;
  }
}
@media (min-width: 800px) {
  .products__items__item__paper h2 {
    font-size: 32px;
  }
}

.benefits {
  width: 100%;
  display: flex;
  padding: 112px 0;
  background-image: url("../../assets/texture/benefits-texture.png");
  background-repeat: repeat;
}
.benefits h1 {
  max-width: 800px;
  font-size: 48px;
  text-align: center;
  margin: 0 auto 80px;
}
.benefits__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  margin-top: 48px;
  list-style: none;
}
@media (min-width: 700px) {
  .benefits__items {
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1150px) {
  .benefits__items {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 80px;
  }
}
.benefits__items__item {
  width: 300px;
  text-align: center;
  margin: 0 auto;
}
.benefits__items__item img {
  margin-bottom: 16px;
}
.benefits__items__item h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.benefits__items__item p {
  font-size: 16px;
}

.straw {
  width: 100%;
  padding: 250px 0;
}
.straw > .container {
  display: flex;
  flex-direction: row;
}
.straw .common-heading-1 {
  margin-bottom: 80px;
  text-align: center;
}
@media (min-width: 700px) {
  .straw .common-heading-1 {
    text-align: left;
  }
}
.straw__text {
  display: inline-flex;
  flex-direction: column;
}
.straw__text__image {
  display: block;
  width: 100%;
  max-height: 30vh;
  object-fit: cover;
  object-position: top;
  margin-bottom: 48px;
}
@media (min-width: 700px) {
  .straw__text__image {
    max-height: 50vh;
  }
}
@media (min-width: 1200px) {
  .straw__text__image {
    display: none;
  }
}
.straw__text__section {
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  .straw__text__section {
    flex-direction: row;
  }
}
.straw__text__section:not(:last-child) {
  padding-bottom: 32px;
}
.straw__text__section__paragraph {
  padding-right: 80px;
  font-family: "Raleway", sans-serif;
}
.straw__text__section__paragraph h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: inherit;
  text-transform: uppercase;
  height: 48px;
}
.straw__text__section__paragraph p {
  line-height: 1.3;
}
.straw__image {
  width: 600px;
  display: none;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .straw__image {
    display: inline-flex;
  }
}
.straw__image > img {
  height: 100%;
  max-height: 645px;
}

.production {
  display: block;
  margin: 80px 0;
}
@media (min-width: 1000px) {
  .production {
    margin: 240px 0;
  }
}
.production .common-heading-1 {
  text-align: center;
  padding: 0 20px;
}
@media (max-width: 1000px) {
  .production > .container {
    padding: 0;
  }
}
.production__items {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
  margin-top: 48px;
  list-style: none;
}
@media (min-width: 800px) {
  .production__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .production__items {
    margin-top: 80px;
  }
}
@media (min-width: 1500px) {
  .production__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.production__items__item {
  display: inline-flex;
  flex-direction: column;
}
.production__items__item__banner {
  width: 100%;
  height: 312px;
  border-radius: 2px;
  object-fit: cover;
  overflow: hidden;
}
.production__items__item__paper {
  flex: 1;
  margin: 0 24px;
  padding: 40px 24px;
  border-radius: 4px;
  background-color: #FDF9F2;
  margin-top: -64px;
}
@media (min-width: 1000px) {
  .production__items__item__paper {
    margin: 0 55px;
    margin-top: -64px;
  }
}
.production__items__item__paper h2 {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: black;
}
@media (min-width: 1500px) {
  .production__items__item__paper h2 {
    min-height: 56px;
  }
}
@media (min-width: 800px) {
  .production__items__item__paper h2 {
    font-size: 20px;
  }
}
.production__items__item__paper span {
  display: block;
  color: #F7B300;
  font-size: 16px;
  font-weight: bold;
  font-family: "Inter";
  margin-bottom: 8px;
}
@media (min-width: 800px) {
  .production__items__item__paper span {
    font-size: 20px;
  }
}
.production__items__item__paper p {
  line-height: 1.3;
}

.feed {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 240px 0 100px;
}
@media (min-width: 900px) {
  .feed {
    flex-direction: row;
    margin: 320px 0 200px;
  }
}
.feed .container {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .feed .container {
    padding: 0;
  }
}
.feed__box {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 900px) {
  .feed__box {
    flex-direction: row;
  }
}
.feed__image {
  width: 100%;
  display: inline-block;
  position: relative;
}
@media (min-width: 900px) {
  .feed__image {
    width: unset;
  }
}
.feed__image__background {
  width: 100%;
  height: 345px;
  object-fit: cover;
}
@media (min-width: 900px) {
  .feed__image__background {
    width: 445px;
    height: 445px;
  }
}
@media (min-width: 1200px) {
  .feed__image__background {
    width: 545px;
    height: 545px;
  }
}
.feed__image__overlay {
  width: 280px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  padding: 30px;
  top: -72px;
  left: 24px;
  background-color: #F7B300;
}
@media (min-width: 900px) {
  .feed__image__overlay {
    height: 280px;
    top: -72px;
    left: -24px;
  }
}
.feed__image__overlay__text {
  font-size: 32px;
  font-family: "Noto Serif", serif;
  font-weight: 800;
  text-align: center;
  color: black;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .feed__image__overlay__text {
    font-size: 48px;
  }
}
.feed__text {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-family: "Inter";
  line-height: 1.4;
  margin: 48px 0;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .feed__text {
    max-width: 734px;
    margin: 0 0 0 70px;
    padding: 0;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .feed__text {
    margin: 0 0 0 170px;
  }
}

.feedback {
  width: 100%;
  display: flex;
  background-image: url("../../assets/feedback/feedback-background.png");
}
.feedback__box {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 116px 0;
}
.feedback__box__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.feedback__box__content p {
  display: inline;
}
.feedback__box__content p > i {
  display: inline-block;
  max-width: 740px;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: white;
}
@media (min-width: 700px) {
  .feedback__box__content p > i {
    font-size: 32px;
  }
}
.feedback__box__content strong {
  margin-top: 24px;
  color: #F7B300;
}
.feedback__box__chevron {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.feedback__box__chevron img {
  height: 24px;
}
@media (min-width: 700px) {
  .feedback__box__chevron img {
    height: 40px;
  }
}
.feedback__box__chevron-right {
  transform: rotate(180deg);
}

.footer {
  display: flex;
  background-color: #484440;
  color: white;
}
.footer__box {
  display: flex;
  flex-direction: column;
  padding: 48px 0;
}
@media (min-width: 700px) {
  .footer__box {
    padding: 90px 0;
  }
}
@media (min-width: 1000px) {
  .footer__box {
    flex-direction: row;
  }
}
.footer__box__section {
  flex: 1;
  padding-right: 24px;
}
.footer__box__section:not(:last-child) {
  margin-bottom: 48px;
}
@media (min-width: 1000px) {
  .footer__box__section {
    margin-bottom: 0;
  }
}
.footer__box__section:first-of-type {
  flex: 1.4;
}
.footer__box__section h1 {
  color: white;
  font-size: 32px;
}
@media (min-width: 700px) {
  .footer__box__section h1 {
    font-size: 64px;
  }
}
.footer__box__section h3 {
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
}
@media (min-width: 700px) {
  .footer__box__section h3 {
    font-size: 24px;
  }
}
.footer__box__section p {
  font-size: 16px;
  line-height: 1.4;
  color: #E9E9E9;
  font-family: "Raleway", sans-serif;
}
@media (min-width: 700px) {
  .footer__box__section p {
    font-size: 24px;
  }
}
.footer__box__section p strong, .footer__box__section p a {
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
}

/*# sourceMappingURL=styles.css.map */
