:root {
  --black: black;
  --white: white;
  --brown: #3c2415;
  --deep-orange: #eb5406;
  --yellow: #f3cf21;
  --pale-brown: #f5efd7;
  --faded-brown: #e3d79f;
  --orange: #f3901d;
  --mid-faded-brown: #e1e2cd;
}

body {
  color: var(--black);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 48px;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 32px;
}

h4 {
  letter-spacing: .2px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

h6 {
  letter-spacing: .8px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 16px;
  line-height: 21px;
}

a {
  text-decoration: underline;
  transition: all .4s ease-in-out;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: square;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
}

strong {
  font-weight: bold;
}

.menu {
  color: var(--white);
  background-color: #0d0804;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu.age {
  z-index: 101;
  justify-content: flex-end;
  padding-bottom: 150px;
  display: flex;
}

.menu.age.edit {
  display: none;
}

.menu-button {
  z-index: 10;
  cursor: pointer;
  background-image: url('../images/menu-icon-bg.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6vw;
  min-width: 60px;
  height: 5vw;
  min-height: 50px;
  transition: all .4s ease-in-out;
  display: flex;
  position: fixed;
  inset: 5vw 5vw auto auto;
}

.menu-button:hover {
  opacity: .8;
}

.menu-button.close {
  z-index: 101;
  background-image: url('../images/location-cancel-icon-yellow.svg');
  width: 40px;
  min-width: 0;
  height: 35px;
  min-height: 0;
  margin-right: 15px;
  position: static;
  top: -5vw;
  left: 25px;
  right: auto;
}

.menu-button.close.w--current {
  background-image: url('../images/location-cancel-icon-yellow.svg');
}

.menu-button.close.drink {
  background-image: url('../images/location-cancel-icon-cream.svg');
}

.location-wrapper {
  background-color: var(--brown);
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.age-section-inner {
  z-index: 5;
  background-color: var(--brown);
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 35vw;
  padding-left: 6vw;
  padding-right: 6vw;
  display: flex;
  position: relative;
  box-shadow: 0 0 30px #0009;
}

.crown {
  background-image: url('../images/orango-bottlecap.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12vw;
  height: 12vw;
}

.crown.age-popup {
  margin-top: -5vw;
  margin-bottom: 1vh;
  transform: scale(.8);
}

.text-field {
  background-color: var(--white);
  border: 1px #000;
  border-radius: 0;
  height: 42px;
  font-family: Avenir, Verdana, sans-serif;
  font-weight: 400;
}

.text-field.dropdown {
  background-color: var(--deep-orange);
  background-image: linear-gradient(to bottom, var(--deep-orange), var(--deep-orange));
  color: var(--white);
  padding-left: 15px;
  padding-right: 50px;
}

.button {
  border: 2px solid var(--yellow);
  background-color: var(--yellow);
  letter-spacing: 1px;
  flex: 1;
  height: 45px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  line-height: 24px;
  transition-duration: .4s;
}

.button:hover {
  background-color: #f3cf214d;
}

.button.outline {
  background-color: #0000;
}

.button.outline:hover {
  background-color: #f3cf214d;
}

.button.brown {
  border-color: var(--brown);
  background-color: var(--brown);
}

.button.brown:hover {
  color: var(--brown);
  background-color: #0000;
}

.button.deep-orange {
  border-color: var(--deep-orange);
  background-color: var(--deep-orange);
}

.button.deep-orange:hover {
  background-color: #eb54064d;
}

.button.small {
  height: 40px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 10px;
  line-height: 18px;
}

.button.small.map {
  border-color: var(--brown);
  background-color: var(--brown);
  color: var(--yellow);
}

.button.small.map:hover {
  background-color: #3c24154d;
}

.button.submit {
  background-color: var(--brown);
  width: 100%;
  transition-property: all;
}

.button.submit:hover {
  background-color: var(--yellow);
  color: var(--brown);
}

.age-button-flex {
  justify-content: center;
  width: 100%;
  min-width: 300px;
  margin-bottom: 1vh;
  display: flex;
}

.age-language-wrapper {
  width: 260px;
  margin-bottom: -35px;
  position: relative;
}

.dropdwn-cover {
  background-color: var(--deep-orange);
  background-image: url('../images/contact-down-arrow-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 50px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.age-policy-text {
  z-index: 6;
  text-align: center;
  width: 650px;
  margin-left: -325px;
  position: absolute;
  inset: auto 0% 3vh 50%;
}

.age-policy-link {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.age-policy-link:hover {
  color: var(--deep-orange);
}

.age-popup-collage {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.age-float-item-wrapper {
  z-index: 4;
  background-image: url('../images/grunge-effect.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.age-img-container {
  border: 7px solid #433023;
  width: 27vw;
  height: 27vw;
  position: relative;
}

.age-img-container._1 {
  margin-top: -1vw;
  margin-left: -1vw;
  transform: rotate(-10deg);
}

.age-img-container._2 {
  z-index: 1;
  margin-top: -4vw;
  transform: rotate(10deg);
}

.age-img-container._3 {
  width: 30vw;
  margin-top: -7vw;
  transform: rotate(-30deg);
}

.age-img-container._4 {
  z-index: 1;
  height: 24vw;
  margin-top: -1vw;
  margin-left: -3vw;
  transform: rotate(15deg);
}

.age-img-container._5 {
  z-index: 2;
  width: 20vw;
  height: 20vw;
  margin-top: -2vw;
  margin-left: -6vw;
  transform: rotate(-15deg);
}

.age-img-container._6 {
  z-index: 3;
  width: 30vw;
  margin-top: -1vw;
  margin-left: -5vw;
}

.age-img-container._7 {
  z-index: 1;
  margin-top: -1vw;
  margin-left: -1vw;
}

.age-img-container._8 {
  z-index: 3;
  width: 30vw;
  height: 20vw;
  margin-top: -4vw;
  transform: rotate(-10deg);
}

.age-img-container._9 {
  height: 30vw;
  margin-top: 3vw;
  margin-left: -7vw;
  transform: rotate(30deg);
}

.age-img-container._9.b {
  margin-top: -3vw;
}

.age-img-container._10 {
  z-index: 1;
  width: 20vw;
  height: 30vw;
  margin-top: -8vw;
  margin-left: -3vw;
}

.home-hero {
  background-color: var(--pale-brown);
  background-image: url('../images/home-header-image.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.home-story-section {
  background-color: var(--pale-brown);
  box-shadow: inset 0 -200px 0 0 var(--faded-brown);
  background-image: url('../images/home-story-potatoes.svg'), url('../images/home-story-cloud.svg'), url('../images/home-story-sky.svg');
  background-position: 100% 0, 25vw 28vw, 3vw 10vw;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 34vw, 35vw, 65vw;
  margin-top: -.3vw;
  padding-top: 15vw;
  position: relative;
  overflow: hidden;
}

.home-animation-wrapper {
  width: 75vw;
}

.home-story-block {
  background-image: url('../images/home-story-illustration.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 32vw;
  display: none;
}

.home-story-flex {
  align-items: center;
  padding-bottom: 50px;
  padding-left: 8vw;
  padding-right: 4vw;
  display: flex;
}

.play-icon {
  background-color: var(--deep-orange);
  cursor: pointer;
  background-image: url('../images/icon-play-white.svg');
  background-position: 55%;
  background-repeat: no-repeat;
  background-size: 30%;
  border-radius: 50%;
  flex: none;
  width: 60px;
  min-width: 6vw;
  height: 60px;
  min-height: 6vw;
  margin-right: 10px;
  transition: all .4s ease-in-out;
}

.play-icon:hover {
  background-color: var(--orange);
}

.play-icon.small {
  width: 40px;
  min-width: 0;
  height: 40px;
  min-height: 0;
  margin-top: -24px;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.story-divider {
  background-color: var(--white);
  flex: 1;
  height: 2px;
  margin-left: 20px;
  margin-right: 30px;
}

.story-divider.about {
  margin-bottom: 8px;
  margin-right: 0;
}

.basket {
  background-image: url('../images/basket-of-potatoes.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 11vw;
  height: 7vw;
}

.basket.foot {
  width: 15vw;
  height: 10vw;
  position: absolute;
  inset: auto auto 13vw -3vw;
}

.basket.about-hero {
  position: absolute;
  inset: auto auto 5vw 3vw;
}

.orango-story-wrapper {
  width: 450px;
  margin-left: 10vw;
}

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

.orango-story-lockup {
  color: var(--deep-orange);
  justify-content: flex-start;
  align-items: center;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 24px;
  display: flex;
}

.orango-text {
  background-image: url('../images/orango-text-brown.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 230px;
  height: 37px;
  margin-left: 8px;
  margin-right: 8px;
}

.top-margin {
  margin-top: 20px;
}

.home-ingredients-section {
  background-image: linear-gradient(180deg, var(--faded-brown) 46%, #f5efd700 84%);
  padding-top: 5vw;
  display: none;
}

.home-stats-flex {
  border-top: 1px solid #f3901d80;
  justify-content: space-around;
  margin-left: 8vw;
  margin-right: 8vw;
  padding-bottom: 5vw;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.home-stats-wrapper {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.home-stats-block-inner {
  background-color: var(--faded-brown);
  background-image: linear-gradient(to bottom, var(--faded-brown) 12%, #dbcb8d00 60%), linear-gradient(to bottom, #dbcb8d 40%, #e3d79f00);
  color: var(--brown);
  text-align: center;
  width: 20vw;
  min-width: 200px;
  padding: 30px 20px 20px;
}

.home-stats-block {
  background-image: linear-gradient(#f3901d80, #f3901d00);
  padding: 1px;
}

.stats-indicator {
  background-color: var(--faded-brown);
  background-image: linear-gradient(#f3901d80, #f3901d80);
  border-radius: 50%;
  flex: none;
  width: 16px;
  height: 16px;
  margin-bottom: -8px;
  position: relative;
}

.stats-divder {
  background-color: var(--orange);
  opacity: .5;
  width: 1px;
  height: 30px;
}

.home-ingredients-block {
  background-image: url('../images/ingredients-bg.png'), url('../images/ingredients-marker-line.svg');
  background-position: 50% 10vw, 50% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 64vw, 100%;
  flex-direction: column;
  align-items: center;
  height: 38vw;
  margin-top: 5vw;
  margin-left: 8vw;
  margin-right: 8vw;
  padding-top: 5vw;
  display: flex;
  position: relative;
}

.orange-text {
  color: var(--orange);
}

.footer {
  background-image: url('../images/footer-grass.svg'), url('../images/footer-illustration.svg');
  background-position: 100% 101%, 50% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 55%, 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 50vw;
  margin-top: 5vw;
  padding-top: 4vw;
  padding-bottom: 10vw;
  padding-left: 4vw;
  display: flex;
  position: relative;
}

.footer.contact {
  background-image: url('../images/footer-grass.svg'), url('../images/contact-illustration.svg');
  position: absolute;
  inset: auto 0% 0%;
}

.ingredient-flex {
  color: var(--brown);
  align-items: center;
  display: flex;
  position: absolute;
}

.ingredient-flex.hops {
  top: 10vw;
  left: -20px;
}

.ingredient-flex.malt {
  top: 0;
  left: 10vw;
}

.ingredient-flex.potato {
  bottom: 105%;
  left: 40%;
}

.ingredient-flex.water {
  top: 0;
  right: 10vw;
}

.ingredient-flex.yeast {
  top: 10vw;
  right: -20px;
}

.ingredient-block {
  background-image: url('../images/ingredients-marker.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  min-width: 6vw;
  height: 42px;
  min-height: 4vw;
  margin-right: 15px;
  position: relative;
}

.ingredient {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 130%;
  position: absolute;
  inset: 0% 0% 0% -15%;
}

.ingredient.hops {
  background-image: url('../images/ingredients-hops.png');
  inset: 0% 0% 0% auto;
}

.ingredient.malt {
  background-image: url('../images/ingredients-malt.png');
  top: -3vw;
}

.ingredient.potato {
  background-image: url('../images/ingredients-yeast-sweet-potato.png');
  bottom: -40%;
  left: -30%;
}

.ingredient.water {
  background-image: url('../images/ingredients-water.png');
  top: -70%;
}

.ingredient.yeast {
  background-image: url('../images/ingredients-yeast.png');
}

.orango-bottle {
  z-index: 1;
  background-image: url('../images/Orango-Bottle-large.png'), url('../images/Orango-Bottle.png');
  background-position: 50% 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: contain, contain;
  flex: none;
  width: 27vw;
  height: 78vw;
}

.orango-bottle.recipe-pg {
  z-index: 2;
  background-image: url('../images/Orango-Bottle-large.png'), url('../images/Orango-Bottle.png');
  background-position: 50% 0, 50% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  height: 100vh;
  margin-top: 5vw;
  margin-left: -13.5vw;
  margin-right: 5vw;
  position: fixed;
  inset: 10vh auto auto 0%;
}

.orango-bottle.hero {
  position: absolute;
  inset: auto 3vw 0 auto;
}

.home-location-section {
  background-image: url('../images/home-location-map.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  justify-content: space-between;
  align-items: center;
  min-height: 61vw;
  padding: 10vw 22vw 20vw 12vw;
  display: flex;
  position: relative;
}

.brown-bg {
  z-index: 1;
  background-color: var(--brown);
  padding-top: 1px;
  position: relative;
}

.yellow-text {
  color: var(--yellow);
}

.home-location-block {
  color: var(--white);
  width: 300px;
}

.location-icon-lockup {
  background-image: url('../images/location-beer-cart-lockup.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  height: 45vw;
  margin-top: -3vw;
}

.faq-block {
  padding-left: 18vw;
  padding-right: 18vw;
}

.faq-block.open-page {
  margin-top: 5vh;
  padding-top: 10vw;
}

.faq-answer {
  background-color: var(--mid-faded-brown);
  text-align: center;
  margin-bottom: 20px;
  padding: 53px 5vw 15px;
}

.faq-question {
  z-index: 1;
  background-color: var(--deep-orange);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin-bottom: -30px;
  margin-left: 8vw;
  margin-right: 8vw;
  padding: 14px 30px;
  display: flex;
  position: relative;
}

.centralise {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.faq-title-block {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-image: url('../images/location-divider.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40vw;
  margin-bottom: 45px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25px;
}

.logo {
  z-index: 10;
  background-image: url('../images/orango-logo.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15vw;
  min-width: 160px;
  height: 5vw;
  min-height: 60px;
  display: block;
  position: relative;
}

.logo.w--current {
  background-image: url('../images/orango-bottlecap.png');
  height: 12vw;
  margin-left: -3vw;
}

.potato-beer-text {
  background-image: url('../images/sweet-potato-beer-text.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 9vw;
  height: 7vw;
  margin-right: 2vw;
}

.potato-beer-text.video-sect {
  width: 160px;
  height: 105px;
}

.potato-beer-text.brown {
  background-image: url('../images/sweet-potato-beer-text-brown.svg');
}

.potato-beer-text.brown.home {
  position: absolute;
  inset: auto auto 25vh 9vw;
}

.copyright-flex {
  color: var(--yellow);
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: auto auto 4vw 4vw;
}

.footer-link {
  color: var(--pale-brown);
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
}

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

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

.social-link {
  background-color: var(--pale-brown);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 50%;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-right: 5px;
}

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

.social-link.ig {
  background-image: url('../images/icon-instagram-brown.svg');
}

.social-link.fb {
  background-image: url('../images/icon-facebook-brown.svg');
}

.social-link.un {
  background-image: url('../images/icon-untappd-brown.svg');
}

.social-link-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-link-block {
  color: var(--pale-brown);
  margin-top: 10px;
}

.social-link-block.open-menu {
  border-left: 1px solid var(--yellow);
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  margin-left: 1vw;
  padding-left: 3vw;
  display: flex;
}

.copyright-text {
  margin-bottom: 5px;
  font-family: Avenir, Verdana, sans-serif;
}

.about-hero-section {
  background-color: var(--pale-brown);
  min-height: 100vh;
  padding-top: 10vw;
}

.header {
  z-index: 100;
  align-items: center;
  padding-top: 5vh;
  padding-left: 7vw;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.about-mission-section {
  z-index: 1;
  background-color: var(--faded-brown);
  margin-top: -1vw;
  padding-top: 5vw;
  padding-bottom: 40px;
  padding-left: 10vw;
  position: relative;
  box-shadow: 0 20px 15px #0000004d;
}

.mission-subtext {
  color: var(--orange);
  width: 440px;
}

.brown-text {
  color: var(--brown);
}

.mantra-block {
  background-color: #ffffff1a;
  margin-left: -10vw;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 10vw;
}

.mission-flex {
  align-items: flex-start;
  display: flex;
}

.deep-orange-text {
  color: var(--deep-orange);
}

.mission-text-block {
  width: 440px;
  padding-bottom: 30px;
}

.mission-image {
  border: 10px solid var(--white);
  background-image: url('../images/about-potato-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 400px;
  max-width: 38vw;
  height: 430px;
  margin-bottom: -200px;
  margin-left: 7vw;
}

.about-image {
  background-image: url('../images/orango-at-events-video-section-image.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 57vw;
  position: relative;
}

.check-logo {
  background-color: var(--brown);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  display: flex;
  position: absolute;
  bottom: 3vw;
  right: 3vw;
}

.about-video-section {
  z-index: 3;
  background-color: var(--brown);
  padding: 1px 5vw 20px 9vw;
  position: relative;
}

.about-video-title-flex {
  align-items: center;
  margin-top: -120px;
  display: flex;
}

.at-text-block {
  background-color: var(--deep-orange);
  color: var(--white);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 30px;
  display: flex;
}

.divider {
  background-color: var(--white);
  flex: 1;
  height: 1.9px;
}

.orange-orango-text {
  background-image: url('../images/orango-text-orange.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  margin-top: -35px;
  margin-bottom: 20px;
}

.video-wrapper {
  color: var(--white);
  margin-top: -40px;
  margin-left: 298px;
  display: flex;
}

.video-block {
  border: 8px solid var(--white);
  background-image: url('../images/orango-at-events-fruit-logistica-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  align-items: flex-end;
  width: 25vw;
  height: 12vw;
  margin-top: 20px;
  margin-right: 2vw;
  display: flex;
}

.video-block._2 {
  background-image: url('../images/orango-at-events-gulfood-image.jpg');
}

.about-commiment-section {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 5vw;
  display: flex;
}

.more-than-text {
  color: var(--deep-orange);
  text-align: center;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 9vw;
  line-height: 9vw;
}

.beer-text {
  color: var(--yellow);
  font-size: 21vw;
  line-height: 20vw;
}

.more-than-bottle-block {
  z-index: 1;
  width: 100%;
  margin-top: -14vw;
  position: relative;
}

.composition {
  z-index: 2;
  background-image: url('../images/orango-hero-composition.png');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 140vw;
  width: 90%;
  height: 120vh;
  position: absolute;
  bottom: -10vh;
  left: 10%;
}

.composition.about {
  background-size: contain;
  width: 100%;
  height: 65vw;
  position: static;
}

.commitment-text-block {
  color: var(--faded-brown);
  width: 300px;
  position: absolute;
  inset: 15vw 3vw auto auto;
}

.just-text {
  color: var(--orange);
  text-transform: uppercase;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 10vw;
  font-style: italic;
  font-weight: 900;
}

.about-hero-inner {
  z-index: 1;
  background-image: url('../images/home-story-sky-rotated.svg');
  background-position: 30vw 0;
  background-repeat: no-repeat;
  background-size: 65vw;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
  padding-top: 4vw;
  padding-left: 8vw;
  padding-right: 10vw;
  display: flex;
  position: relative;
}

.about-hero-image {
  border: 10px solid var(--white);
  background-color: var(--faded-brown);
  background-image: url('../images/about-header-video-image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  max-width: 40vw;
  height: 21vw;
  min-height: 300px;
  margin-right: -5vw;
  display: flex;
  position: relative;
}

.about-animation-block {
  min-height: 40vw;
  margin-top: -10vw;
  position: relative;
}

.about-story-flex {
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: -34px;
  padding-left: 10px;
  display: flex;
}

.mvo-body {
  background-color: var(--brown);
  background-image: url('../images/mvos-top-right-potatoes.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 35vw;
  padding-top: 1px;
}

.mvo-hero {
  flex-direction: column;
  min-height: 100vh;
  margin-top: 5vh;
  padding-top: 10vw;
  display: flex;
}

.mvo-hero-inner {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mvo-divider {
  background-color: var(--deep-orange);
  width: 100px;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.mvo-hero-title {
  color: var(--mid-faded-brown);
  width: 530px;
  font-size: 60px;
  line-height: 70px;
}

.mvo-hero-subtitle {
  width: 460px;
}

.mvo-hero-image {
  background-image: url('../images/mvos-potato-image-1.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 25vw;
  height: 30vw;
  position: absolute;
  left: 0;
}

.mvo-hero-image._2 {
  background-image: url('../images/mvos-potato-image-2.png');
  width: 20vw;
  height: 19vw;
  inset: auto 5vw 8vh auto;
}

.sdg-section {
  justify-content: center;
  padding-bottom: 5vw;
  display: flex;
}

.sdg-block {
  color: var(--white);
  background-image: radial-gradient(circle at 30%, #3c241500 27%, #3c2415b3 80%), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  width: 26vw;
  min-height: 26vw;
  margin: 1vw;
  padding-top: 20px;
  padding-left: 3vw;
  padding-right: 3vw;
  display: flex;
  position: relative;
}

.sdg-block.long {
  background-color: var(--deep-orange);
  background-image: url('../images/unicef-logo4x.png');
  background-position: 50% 120%;
  background-repeat: no-repeat;
  background-size: 105%;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 3vw;
  padding-top: 5vw;
  padding-left: 4vw;
}

.sdg-block.health {
  background-image: radial-gradient(circle at 30%, #3c241500 27%, #3c2415b3 80%), url('../images/mvos-good-health-image.jpg');
}

.sdg-block.education {
  background-image: radial-gradient(circle at 30%, #3c241500 27%, #3c2415b3 80%), url('../images/mvos-quality-education.jpeg');
}

.sdg-block.water {
  background-image: radial-gradient(circle at 30%, #3c241500 27%, #3c2415b3 80%), url('../images/mvos-clean-water-image.jpg');
}

.sdg-block.growth {
  background-image: radial-gradient(circle at 30%, #3c241500 27%, #3c2415b3 80%), url('../images/mvos-recent-work-image.jpg');
}

.sdg-flex {
  flex-wrap: wrap;
  width: 56vw;
  margin-bottom: 2vw;
  display: flex;
}

.sdg-title-block {
  z-index: 1;
  align-items: center;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.sdg-icon {
  background-color: var(--deep-orange);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 45%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.sdg-icon.health {
  background-image: url('../images/mvos-icon-good-health.svg');
  background-size: 40%;
}

.sdg-icon.education {
  background-image: url('../images/mvos-icon-quality-health.svg');
}

.sdg-icon.water {
  background-image: url('../images/mvos-icon-clean-water.svg');
}

.sdg-icon.growth {
  background-image: url('../images/mvos-decent-work-icon.svg');
  background-size: 50%;
}

.sdg-hover-details {
  z-index: 1;
  font-family: Avenir, Verdana, sans-serif;
  font-size: 12px;
  line-height: 17px;
  position: relative;
  overflow: hidden;
}

.sdg-divider {
  background-color: var(--mid-faded-brown);
  height: 2px;
  margin-bottom: 20px;
}

.sdg-intro-text {
  max-width: 210px;
}

.sdg-intro-line {
  background-color: var(--white);
  width: 9vw;
  height: 1px;
}

.sdg-overlay {
  background-image: linear-gradient(to top, var(--brown), #3c241500);
  margin-left: -3px;
  margin-right: -3px;
  position: absolute;
  inset: auto 0% 0%;
}

.recipes-body {
  z-index: 1;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 10vw;
  display: flex;
  position: relative;
}

.recipe-inner-block {
  flex: 1;
  align-items: flex-start;
  padding-top: 5vh;
  padding-left: 15vw;
  padding-right: 5vw;
  display: flex;
}

.recipe-divider {
  background-color: var(--brown);
  flex: 1;
  height: 2px;
  margin-left: 10px;
}

.recipe-title-flex {
  color: var(--deep-orange);
  align-items: center;
  margin-top: -5px;
  display: flex;
}

.recipe-image-wrapper {
  border: 5px solid var(--white);
  background-color: var(--white);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 auto;
  height: 35vw;
  margin-top: 20px;
}

.recipe-image-wrapper.demo {
  background-image: url('../images/recipe-image.jpg');
  background-position: 50% 11%;
}

.recipe-image-wrapper.chef-frank-van-der-wende {
  background-image: url('../images/On-the-skin-baked-Codfish-with-pearl-barley-Sweet-potato-chips-crème-and-sea-lavender..png');
  background-position: 50%;
}

.recipe-image-wrapper.chef-frank-tammy-rompas {
  background-image: url('../images/Crispy-Vegetable-Tempura-made-with-Orango-Sweet-Potato-Beer.png');
}

.recipe-image-wrapper.chef-dirk-barneveld-and-sous-chef-danny-sibma {
  background-image: url('../images/Next-level-English-breakfast.png');
}

.recipe-image-wrapper.chef-johanne-tatje {
  background-image: url('../images/Tropical-beer-tiramisu.png');
}

.recipe-image-wrapper.sous-chef-armel-verhoeve {
  background-image: url('../images/Slowly-cooked-veal-rump-cap-with-ash-cooked-sweet-potato-in-combination-with-Orango.png');
}

.recipe-image-wrapper.chef-daiel-van-lente {
  background-image: url('../images/Fried-sea-bass-fillet-with-asparagus-Salicornia-and-hollandaise-ofOrango-beer.png');
}

.recipe-first-block {
  border-bottom: 2px solid var(--mid-faded-brown);
  flex-direction: column;
  width: 40vw;
  margin-bottom: 25px;
  padding-bottom: 20px;
  padding-right: 5vw;
  display: flex;
  position: sticky;
  top: 30px;
}

.recipe-bg-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  inset: 0%;
}

.recipe-bg-image.demo {
  background-image: none;
}

.recipe-overlay {
  background-image: linear-gradient(to bottom, var(--mid-faded-brown) 63%, #e1e2cd00);
  position: absolute;
  inset: 0%;
}

.fill-up {
  flex: 1;
}

.tab-menu {
  z-index: 2;
  background-color: var(--deep-orange);
  padding: 10px 15px;
  position: sticky;
  top: 0;
}

.tab-link {
  color: var(--white);
  letter-spacing: .8px;
  background-color: #0000;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 12px;
}

.tab-link.w--current {
  background-color: var(--brown);
}

.tab-content {
  flex: 1;
  padding-top: 20px;
  overflow: visible;
}

.tabs {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.tab-inner {
  background-color: var(--brown);
  height: 100%;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.recipe-ingredients-title {
  border-bottom: 1px solid var(--mid-faded-brown);
  background-color: var(--brown);
  color: var(--deep-orange);
  text-transform: capitalize;
  padding: 30px 13px 10px 30px;
  position: sticky;
  top: 57px;
}

.recipe-ingredients-title.bottom {
  border-top: 1px solid var(--mid-faded-brown);
  border-bottom-style: none;
  padding-bottom: 0;
  top: auto;
  bottom: 0;
}

.recipe-ingredients-line {
  background-color: var(--mid-faded-brown);
  width: 1px;
  height: 100px;
  position: absolute;
  inset: 30px auto auto 10px;
}

.recipe-ingredients-line.bottom {
  height: 60px;
  inset: auto 10px 20px auto;
}

.recipe-ingredients-body {
  color: var(--white);
  flex: 1;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 10px;
}

.location-block {
  flex: none;
  width: 50vw;
}

.location-block.list {
  color: var(--white);
  padding-top: 9vw;
  padding-bottom: 5vw;
  position: relative;
  overflow: auto;
}

.location-block.list.buy {
  background-color: #634f34;
}

.location-block.list.drink {
  background-color: var(--brown);
}

.location-block.image {
  z-index: 1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg'), url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0, 50% 105%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10vw;
  padding-bottom: 25vw;
  display: flex;
  position: relative;
}

.location-block.image.drink {
  z-index: 2;
  background-color: var(--faded-brown);
  background-image: url('../images/location-drink-line-patterns.svg'), url('../images/location-drink-illustration.svg');
  background-position: 50% 18vh, 50% 105%;
  background-size: 80%, contain;
}

.location-block.image.buy {
  background-color: var(--brown);
  background-image: url('../images/location-buy-top-pattern.svg'), url('../images/location-buy-illustration.svg');
  background-size: 90%, contain;
}

.location-list-title {
  background-color: #634f34;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 3vw;
  display: flex;
  position: sticky;
  top: -9vw;
}

.location-list-title.drink {
  z-index: 1;
  background-color: var(--brown);
  color: var(--faded-brown);
}

.location-list {
  margin-top: 25px;
  display: flex;
}

.location-icon {
  background-color: var(--yellow);
  background-image: url('../images/location-icon-brown.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 45%;
  flex: none;
  width: 4vw;
  margin-right: 1vw;
}

.location-icon.orange {
  background-color: var(--deep-orange);
  background-image: url('../images/location-icon-light-brown.svg');
}

.location-details {
  border-top: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 20px 20px;
  display: flex;
}

.location-details.drink {
  border-top-color: var(--faded-brown);
  border-bottom-color: var(--faded-brown);
}

.location-button-block {
  letter-spacing: .4px;
  flex: 1;
  margin-right: 15px;
}

.bottom-pad {
  margin-bottom: 4px;
}

.location-block-inner {
  color: var(--faded-brown);
  text-align: center;
  width: 310px;
}

.location-title {
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 40px;
  line-height: 40px;
}

.relative {
  z-index: 1;
  position: relative;
}

.contact-body {
  background-color: var(--pale-brown);
  flex-direction: row;
  justify-content: space-between;
  min-height: 100vh;
  padding: 10vw 10vw 6vw 15vw;
  display: flex;
  position: relative;
}

.contact-bottle {
  background-image: url('../images/Orango-Bottle-large.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25vh;
  height: 100%;
}

.contact-bottle.cup {
  background-image: url('../images/Beer-Glass.png');
  background-position: 0 100%;
  height: 70%;
  margin-left: -4vh;
}

.contact-bottle-wrapper {
  z-index: 1;
  align-items: flex-end;
  padding-top: 4vh;
  display: flex;
  position: relative;
}

.contact-form-parent {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  width: 40vw;
  min-width: 476px;
  margin-bottom: 2vw;
  display: flex;
  position: relative;
}

.contact-form-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin-bottom: 30px;
  display: flex;
}

.contact-details-block {
  background-color: var(--deep-orange);
  color: var(--white);
  align-items: center;
  padding: 20px 25px;
  font-family: Avenir, Verdana, sans-serif;
  display: flex;
  position: relative;
  box-shadow: 0 0 40px #0003;
}

.contact-form-block {
  margin-top: 15px;
  overflow: hidden;
}

.reason-form-field {
  background-color: var(--white);
  cursor: pointer;
  padding: 13px 60px 13px 18px;
  position: relative;
}

.reason-form-field.open {
  background-color: var(--mid-faded-brown);
  transition: all .4s ease-in-out;
}

.reason-form-field.open:hover {
  background-color: var(--faded-brown);
}

.reason-form-dropdown {
  background-color: var(--yellow);
  background-image: url('../images/contact-down-arrow-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 30%;
  width: 55px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.reason-dropdown {
  position: absolute;
  inset: 100% 0% auto;
  overflow: hidden;
}

.reason-dropdown.age-prompt {
  color: var(--yellow);
  width: 270px;
  margin-left: auto;
  margin-right: auto;
  position: static;
}

.form-field {
  border: 1px solid var(--white);
  min-height: 40px;
  margin-bottom: 15px;
  font-family: Avenir, Verdana, sans-serif;
  transition: all .4s ease-in-out;
}

.form-field:hover {
  border-color: var(--yellow);
}

.form-field:focus {
  border-color: var(--brown);
}

.form-field::placeholder {
  color: var(--black);
}

.form-field.textarea {
  min-height: 100px;
}

.form-inner-flex {
  justify-content: space-between;
  display: flex;
}

.form-half-block {
  width: 47%;
}

.contact-details-inner {
  border-right: 1px solid var(--yellow);
  border-left: 1px solid var(--yellow);
  flex: none;
  margin-left: 1.5vw;
  margin-right: 1.5vw;
  padding-left: 1.5vw;
  padding-right: 1.5vw;
}

.contact-details-link {
  color: var(--white);
  margin-top: 3px;
  margin-bottom: 3px;
  text-decoration: none;
}

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

.contat-details-title {
  background-color: var(--brown);
  text-transform: uppercase;
  padding: 5px 15px;
  position: absolute;
  inset: -13px auto auto 20px;
}

.footer-link-wrapper {
  text-align: center;
  width: 300px;
}

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

.home-hero-inner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--brown);
  background-image: url('../images/homepage-right-side-lockup.svg'), url('../images/homepage-left-side-lockup.svg'), linear-gradient(#f3cf21cc, #f3cf21cc);
  background-position: 100% 0, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: contain, contain, auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  height: 110vh;
  padding-bottom: 10vh;
  padding-left: 20vw;
  font-family: Lemon Milk, Trebuchet MS, sans-serif;
  font-size: 4.5vw;
  line-height: 4.5vw;
  display: flex;
}

.video-overlay {
  z-index: 1;
  background-color: #3c24150d;
  background-image: linear-gradient(to bottom, #3c24150d 40%, var(--brown) 95%);
  position: absolute;
  inset: 0%;
}

.bg-video-wrapper {
  flex-direction: row;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.bvideo {
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 0;
}

._50-opacity {
  opacity: .5;
}

.ingredients-bottle-wrapper {
  overflow: hidden;
}

.home-hero-divider {
  display: none;
}

.menu-inner {
  z-index: 5;
  border-bottom: 2px solid var(--faded-brown);
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 35vw;
  padding-bottom: 5vh;
  padding-left: 6vw;
  padding-right: 6vw;
  display: flex;
  position: relative;
}

.menu-link {
  color: var(--white);
  padding: 3px 35px;
  text-decoration: none;
}

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

.menu-link.w--current {
  background-image: url('../images/active-menu-indicator.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 17px;
  padding-bottom: 17px;
}

.menu-social-block {
  z-index: 4;
  justify-content: center;
  align-items: center;
  padding-top: 4vh;
  display: flex;
  position: relative;
}

.mobile-only {
  display: none;
}

.home-nav-link {
  color: var(--brown);
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
}

.home-nav-link:hover {
  opacity: .5;
}

.menu-line {
  background-color: var(--brown);
  width: 50%;
  height: 2px;
}

.menu-line.mid {
  margin-top: 5px;
  margin-bottom: 5px;
}

.age-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.age-image._1 {
  background-image: url('../images/Main-Beer.png');
  background-position: 50% 0;
  width: 40vw;
  height: 38vw;
  max-height: 60vh;
  margin-left: -20vw;
  left: 50%;
}

.age-image._2 {
  background-image: url('../images/Beer-Cup.png');
  width: 12vw;
  height: 12vw;
  inset: 12vw 8vw auto auto;
}

.age-image._3 {
  background-image: url('../images/Can.png');
  width: 22vw;
  height: 16vw;
  inset: 15vw auto auto -8vw;
}

.age-image._4 {
  background-image: url('../images/Potato.png');
  width: 12vw;
  height: 16vw;
  inset: 41vw auto auto 8vw;
}

.age-image._5 {
  background-image: url('../images/Hand-Beer.png');
  width: 15vw;
  height: 21vw;
  inset: auto -2vw 2vw auto;
}

.select-language {
  z-index: 10;
  color: var(--white);
  position: fixed;
  inset: 6vw 130px auto auto;
}

.select-input {
  background-color: var(--deep-orange);
  color: var(--white);
  border: 1px #000;
  font-family: Avenir, Verdana, sans-serif;
}

.select-input:hover {
  border: 1px #000;
}

.select-input:active {
  border-style: none;
}

.select-input:focus {
  border: 1px #000;
}

.home-page {
  right: 110px;
}

.position-center {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.white-text {
  color: var(--white);
}

.flex-block {
  display: flex;
}

.flex-block.space-between, .flex-block.wrap {
  justify-content: space-between;
}

.flex-block.align-top {
  align-items: flex-start;
}

.flex-block.align-center {
  align-items: center;
}

.flex-block.reverse {
  flex-direction: row-reverse;
}

.flex-block.reverse.orange-border {
  border: 3px solid var(--deep-orange);
}

.flex-block.foundation {
  margin-top: 5vw;
  margin-bottom: 10vw;
}

.charity-block {
  margin-left: 9vw;
  margin-right: 9vw;
}

.flex-child.charity-image {
  z-index: 0;
  background-color: var(--white);
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  width: 33vw;
  min-height: 35vw;
  padding-top: 3vw;
  display: flex;
  position: relative;
}

.flex-child.foundation-text {
  border-top: 5px solid var(--white);
  background-color: #2a180d;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 5vw;
  display: flex;
}

.flex-child.farming-foundation {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 4vw;
  display: flex;
}

.farmforte-logo {
  background-image: url('../images/Farmforte-Logo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 55%;
  height: 20%;
  margin-left: auto;
  margin-right: auto;
}

.foundation-image {
  background-image: url('../images/farmforte-image-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 79%;
  height: 26vw;
  margin-bottom: -11%;
  margin-left: -20%;
  margin-right: -20%;
  position: relative;
}

.brown-tangent {
  z-index: -1;
  justify-content: space-between;
  height: 12vw;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.dark-brown-tangent {
  background-color: #2a180d;
  width: 70%;
}

.light-brown-tangent {
  background-color: var(--brown);
  flex: 1;
}

.farming-image-wrapper {
  background-color: var(--brown);
  flex: 1;
  min-height: 30vw;
  margin-top: -30px;
  margin-bottom: -30px;
  margin-left: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.farming-image {
  background-image: url('../images/farmforte-image-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.white-horizontal-line {
  display: none;
}

@media screen and (max-width: 991px) {
  ul {
    padding-left: 30px;
  }

  .crown.age-popup {
    width: 120px;
    height: 120px;
    margin-top: -50px;
  }

  .home-stats-flex {
    padding-left: 0;
    padding-right: 0;
  }

  .footer {
    min-height: 430px;
  }

  .ingredient-flex.water {
    right: 6vw;
  }

  .ingredient-flex.yeast {
    right: -40px;
  }

  .home-location-section {
    background-image: url('../images/location-beer-cart-lockup.svg'), url('../images/home-location-map.svg');
    background-position: 66% 7vw, 0 0;
    background-repeat: no-repeat, no-repeat;
    background-size: 36vw, 100%;
    padding-bottom: 13vw;
    padding-left: 9vw;
  }

  .location-icon-lockup {
    display: none;
  }

  .faq-block {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .faq-question {
    margin-left: 5vw;
    margin-right: 5vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-title-block {
    width: 400px;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }

  .logo.w--current {
    min-height: 120px;
    margin-left: 0;
  }

  .potato-beer-text.brown.home {
    bottom: 27vh;
    left: 10vw;
  }

  .copyright-text {
    width: 230px;
    margin-bottom: 0;
  }

  .about-mission-section {
    padding-left: 7vw;
  }

  .mission-image {
    height: 370px;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .video-wrapper {
    margin-left: 280px;
  }

  .video-block {
    border-width: 5px;
    width: 21vw;
  }

  .about-commiment-section {
    padding-top: 10vw;
  }

  .commitment-text-block {
    z-index: 2;
    width: 33vw;
    max-width: 300px;
    top: 13vw;
  }

  .about-hero-inner {
    padding-left: 3vw;
    padding-right: 5vw;
  }

  .about-hero-image {
    height: 27vw;
    min-height: 240px;
    margin-right: -7vw;
  }

  .mvo-hero {
    padding-bottom: 30px;
  }

  .mvo-hero-title {
    width: 470px;
    font-size: 50px;
    line-height: 50px;
  }

  .mvo-hero-subtitle {
    max-width: 51vw;
  }

  .sdg-block {
    width: 30vw;
    max-width: 270px;
  }

  .sdg-flex {
    width: 65vw;
  }

  .recipe-inner-block {
    padding-right: 4vw;
  }

  .tab-link {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .tab-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .recipe-ingredients-title, .recipe-ingredients-body {
    padding-left: 20px;
  }

  .contact-body {
    padding-left: 11vw;
    padding-right: 5vw;
  }

  .contact-bottle.cup {
    margin-left: -5vh;
  }

  .contact-form-parent {
    width: 50vw;
    min-width: 370px;
    max-width: 476px;
    margin-top: 5vh;
  }

  .contact-details-block {
    flex-wrap: wrap;
  }

  .contact-details-inner {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .contact-details-link {
    display: block;
  }

  .home-hero-inner {
    font-size: 6vw;
    line-height: 5.4vw;
  }

  .age-image._5 {
    bottom: 80px;
  }

  .select-language {
    right: 120px;
  }

  .home-page {
    top: 7vw;
  }

  .flex-child.charity-image {
    padding-top: 7%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 39px;
    line-height: 45px;
  }

  h3 {
    font-size: 22px;
    line-height: 30px;
  }

  p {
    font-size: 15px;
    line-height: 20px;
  }

  .menu {
    padding-top: 7vh;
    padding-bottom: 3vh;
  }

  .menu.age {
    justify-content: center;
    padding-bottom: 100px;
    overflow: auto;
  }

  .menu-button {
    right: 5vw;
  }

  .location-wrapper {
    height: auto;
    display: block;
    overflow: visible;
  }

  .dropdwn-cover {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .age-policy-text {
    width: auto;
    margin-left: -50%;
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .age-popup-collage {
    justify-content: center;
  }

  .age-img-container {
    width: 40vw;
    height: 40vw;
    margin-left: -5vw;
  }

  .age-img-container._3 {
    width: 40vw;
  }

  .age-img-container._4 {
    height: 40vw;
  }

  .age-img-container._5 {
    width: 40vw;
    height: 40vw;
  }

  .age-img-container._6 {
    width: 40vw;
  }

  .age-img-container._8 {
    width: 40vw;
    height: 30vw;
  }

  .age-img-container._9.b {
    height: 40vw;
  }

  .age-img-container._10 {
    width: 30vw;
  }

  .home-story-section {
    background-position: 100% 0, 40vw 38vw, 6vw 18vw;
    background-size: 34vw, 35vw, 80vw;
    padding-top: 20vw;
  }

  .home-animation-wrapper {
    width: 100%;
  }

  .home-story-block {
    height: 43vw;
  }

  .home-story-flex {
    padding-bottom: 30px;
  }

  .story-divider {
    margin-left: 10px;
    margin-right: 10px;
  }

  .basket {
    width: 15vw;
    height: 10vw;
  }

  .basket.foot {
    width: 20vw;
    height: 14vw;
    bottom: 45vw;
    left: -7vw;
  }

  .orango-story-wrapper {
    width: 380px;
  }

  .home-ingredients-section {
    padding-top: 50px;
  }

  .home-stats-flex {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .home-stats-block-inner {
    width: auto;
    min-width: 25vw;
  }

  .home-ingredients-block {
    height: 40vw;
    margin-top: 100px;
  }

  .footer {
    background-position: 100% 100%, 50% 102%;
    height: 88vw;
    min-height: 0;
    margin-top: 75px;
    padding-bottom: 24vw;
    padding-left: 10vw;
  }

  .ingredient-flex {
    text-align: center;
    flex-direction: column;
  }

  .ingredient-flex.hops {
    top: -20px;
    left: -10px;
  }

  .ingredient-flex.malt {
    top: -70px;
    left: 16vw;
  }

  .ingredient-flex.potato {
    left: 44%;
  }

  .ingredient-flex.water {
    top: -70px;
    right: 16vw;
  }

  .ingredient-flex.yeast {
    top: -20px;
    right: -10px;
  }

  .ingredient-block {
    margin-right: 0;
  }

  .ingredient.malt {
    top: -2vw;
  }

  .orango-bottle.recipe-pg {
    background-position: 50% 100%;
    height: 80vh;
    margin-top: 0;
  }

  .orango-bottle.hero {
    display: none;
  }

  .home-location-section {
    background-position: 90% 15vw, 0 0;
    background-size: 42vw, 122%;
    flex-direction: column;
    align-items: stretch;
    min-height: 80vw;
    padding-bottom: 25vw;
    padding-right: 30vw;
  }

  .home-location-block {
    width: auto;
  }

  .location-icon-lockup {
    flex: none;
    order: -1;
  }

  .faq-block {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .faq-block.open-page {
    margin-top: 5vw;
    padding-top: 100px;
  }

  .centralise.foot {
    align-items: flex-start;
  }

  .logo.w--current {
    min-height: 80px;
  }

  .potato-beer-text {
    width: 15vw;
    height: 10vw;
    margin-right: 20px;
  }

  .potato-beer-text.video-sect {
    margin-bottom: 70px;
  }

  .potato-beer-text.brown.home {
    width: 9vw;
    min-width: 60px;
    height: 6vw;
    min-height: 40px;
    bottom: 100px;
  }

  .copyright-flex {
    bottom: 6vw;
    left: 6vw;
  }

  .social-link {
    margin-left: 0;
    margin-right: 10px;
  }

  .social-link-wrapper {
    justify-content: flex-start;
  }

  .social-link-block.open-menu {
    margin-left: 10px;
    padding-left: 30px;
  }

  .about-hero-section {
    padding-top: 100px;
  }

  .header {
    padding-top: 5vw;
  }

  .mission-subtext {
    width: auto;
    max-width: 440px;
  }

  .mantra-block {
    background-color: #fff3;
    margin-left: -7vw;
    padding: 10px 5vw 20px 52vw;
  }

  .mission-flex {
    margin-right: 10vw;
    display: block;
  }

  .mission-text-block {
    width: auto;
    padding-bottom: 0;
    padding-left: 5vw;
  }

  .mission-image {
    width: 40vw;
    max-width: none;
    height: 39vw;
    margin-left: 0;
    position: relative;
  }

  .check-logo {
    bottom: 25px;
    right: 25px;
  }

  .about-video-title-flex {
    margin-top: -80px;
  }

  .video-wrapper {
    margin-left: 0;
  }

  .video-block {
    width: 39vw;
    height: 24vw;
    margin-right: 4vw;
  }

  .about-commiment-section {
    padding-top: 100px;
  }

  .more-than-text {
    font-size: 11vw;
    line-height: 10vw;
  }

  .beer-text {
    font-size: 26vw;
    line-height: 23vw;
  }

  .more-than-bottle-block {
    margin-top: -17vw;
    overflow: hidden;
  }

  .composition.about {
    width: 110vw;
    height: 70vw;
    margin-left: -5vw;
  }

  .commitment-text-block {
    width: auto;
    max-width: none;
    padding: 20px 10vw 5vw;
    position: static;
  }

  .just-text {
    font-size: 12vw;
  }

  .about-hero-inner {
    background-position: 5vw 340px;
    background-size: 90vw;
    margin-top: 5vw;
    padding-left: 5vw;
    display: block;
  }

  .about-hero-image {
    max-width: none;
    margin-bottom: 60px;
    margin-right: 0;
  }

  .mvo-body {
    background-size: 50vw;
  }

  .mvo-hero {
    min-height: 0;
    margin-top: 5vw;
    padding-top: 20vw;
    padding-bottom: 40px;
  }

  .mvo-hero-inner {
    overflow: hidden;
  }

  .mvo-hero-title {
    width: 420px;
    margin-top: 0;
    font-size: 45px;
  }

  .mvo-hero-image {
    width: 27vw;
    height: 35vw;
    left: -3vw;
  }

  .mvo-hero-image._2 {
    bottom: 8vw;
    right: -5vw;
  }

  .sdg-section {
    flex-direction: column;
  }

  .sdg-block {
    width: 45%;
    max-width: none;
    min-height: 50vw;
    margin-left: 10px;
    margin-right: 10px;
  }

  .sdg-block.long {
    background-position: 60vw;
    background-size: 30vw;
    width: auto;
    min-height: 29vw;
    margin-bottom: 20px;
    padding-bottom: 5vw;
    padding-right: 41vw;
  }

  .sdg-block.health {
    background-image: linear-gradient(#3c241500 27%, #3c2415b3 80%), url('../images/mvos-good-health-image.jpg');
    max-width: none;
  }

  .sdg-block.education {
    background-image: linear-gradient(#3c241500 27%, #3c2415b3 80%), url('../images/mvos-quality-education-image.jpg');
  }

  .sdg-block.water {
    background-image: linear-gradient(#3c241500 27%, #3c2415b3 80%), url('../images/mvos-clean-water-image.jpg');
  }

  .sdg-block.growth {
    background-image: linear-gradient(#3c241500 27%, #3c2415b3 80%), url('../images/mvos-recent-work-image.jpg');
  }

  .sdg-flex {
    justify-content: center;
    width: auto;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .sdg-intro-text {
    max-width: none;
  }

  .recipes-body {
    padding-top: 100px;
  }

  .recipe-inner-block {
    padding-top: 5vw;
    padding-right: 10vw;
    display: block;
  }

  .recipe-image-wrapper {
    height: 60vw;
  }

  .recipe-first-block {
    width: auto;
    padding-right: 0;
    position: static;
  }

  .tab-link {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .location-block {
    width: auto;
  }

  .location-block.list {
    padding-top: 0;
    overflow: visible;
  }

  .location-block.image {
    justify-content: flex-start;
    height: 106vw;
    max-height: 766px;
    padding-top: 25vw;
  }

  .location-list-title {
    top: 0;
  }

  .location-icon {
    width: 37px;
    margin-right: 3vw;
  }

  .contact-body {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 100px 15vw 10vw;
  }

  .contact-bottle {
    width: 25vw;
  }

  .contact-bottle.cup {
    margin-left: -5vw;
  }

  .contact-bottle-wrapper {
    order: 1;
    height: 75vw;
  }

  .contact-form-parent {
    width: auto;
    max-width: none;
    margin-top: 5vw;
  }

  .contact-form-wrapper {
    flex: 0 auto;
    min-height: 200px;
  }

  .footer-link-wrapper {
    text-align: left;
  }

  .home-hero-inner {
    height: 430px;
    padding-bottom: 70px;
    font-size: 35px;
    line-height: 31px;
  }

  .iingredient-name {
    order: -1;
  }

  .menu-inner {
    flex-flow: wrap;
    justify-content: center;
    margin-left: 5vw;
    margin-right: 5vw;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mobile-only {
    display: block;
  }

  .home-nav {
    display: none;
  }

  .last-collage-block {
    margin-left: -10vw;
  }

  .age-image._1 {
    width: 50vw;
    max-height: none;
    margin-left: -25vw;
  }

  .select-language {
    position: absolute;
    right: 110px;
  }

  .flex-block.reverse.orange-border.landscape-vertical {
    flex-direction: column-reverse;
  }

  .flex-block.foundation {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 140px;
  }

  .flex-child.charity-image {
    justify-content: flex-start;
    width: 100%;
    max-width: 468.25px;
    height: 460px;
    min-height: auto;
    padding-top: 70px;
  }

  .flex-child.foundation-text {
    border-top-style: none;
  }

  .flex-child.farming-foundation {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }

  .farmforte-logo {
    height: 80px;
    margin-bottom: 30px;
    margin-left: 5vw;
  }

  .foundation-image {
    background-size: 100%;
    height: 420px;
    margin-left: -20px;
    margin-right: -10px;
  }

  .brown-tangent {
    height: 150px;
  }

  .dark-brown-tangent.light-brown-tangent-mobile {
    background-color: var(--brown);
  }

  .farming-image-wrapper {
    flex: none;
    height: 270px;
    margin-bottom: 0;
    margin-right: 30px;
  }

  .white-horizontal-line {
    background-color: var(--white);
    flex: none;
    align-self: stretch;
    height: 5px;
    margin-left: -10px;
    margin-right: -10px;
    display: block;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
    line-height: 43px;
  }

  h3 {
    font-size: 21px;
    line-height: 27px;
  }

  .menu {
    display: none;
  }

  .menu-button {
    top: 8vw;
  }

  .age-section-inner {
    margin-left: 10vw;
    margin-right: 10vw;
  }

  .age-button-flex {
    min-width: 0;
  }

  .age-language-wrapper {
    width: auto;
  }

  .age-img-container {
    width: 50vw;
    height: 50vw;
    margin-left: -15vw;
  }

  .age-img-container._2 {
    margin-top: 4vw;
  }

  .age-img-container._3 {
    width: 50vw;
  }

  .age-img-container._4 {
    height: 50vw;
  }

  .age-img-container._5 {
    width: 50vw;
    height: 50vw;
    margin-top: 2vw;
  }

  .age-img-container._6 {
    width: 50vw;
    margin-left: -15vw;
  }

  .age-img-container._8 {
    width: 50vw;
    height: 50vw;
  }

  .age-img-container._10 {
    width: 40vw;
    height: 50vw;
    margin-top: 8vw;
  }

  .home-story-section {
    background-position: 100% 0, 40vw 77vw, -20vw 10vw;
    background-size: 60%, 50vw, 130vw;
    padding-top: 40vw;
  }

  .home-story-block {
    background-size: auto 100%;
    height: 50vw;
  }

  .home-story-flex {
    padding-right: 5vw;
  }

  .basket {
    flex: none;
    width: 20vw;
    height: 13vw;
  }

  .basket.foot {
    width: 27vw;
    height: 18vw;
    bottom: 44vw;
  }

  .orango-story-wrapper {
    width: auto;
    max-width: 410px;
    margin-right: 10vw;
  }

  .orango-story-lockup {
    display: block;
  }

  .orango-text {
    width: 188px;
    height: 30px;
    margin-top: 7px;
    margin-bottom: 7px;
    margin-left: 0;
  }

  .home-stats-flex {
    border-top-style: none;
    border-left: 1px solid #f3901d80;
    flex-direction: column;
  }

  .home-stats-wrapper {
    flex-direction: row;
    margin-bottom: 10px;
  }

  .home-stats-block-inner {
    background-image: linear-gradient(to right, var(--faded-brown) 12%, #dbcb8d00 60%), linear-gradient(to right, #dbcb8d 40%, #e3d79f00);
    text-align: left;
    padding-top: 15px;
    padding-bottom: 5px;
    padding-left: 30px;
  }

  .home-stats-block {
    background-image: linear-gradient(to right, #f3901d80, #f3901d00);
    flex: 1;
  }

  .stats-indicator {
    margin-bottom: 0;
    margin-right: -8px;
  }

  .stats-divder {
    width: 30px;
    height: 1px;
  }

  .home-ingredients-block {
    background-position: 50% 300px, 50% 260px;
    background-size: 70vw, 90%;
    border-top: 1px solid #f3901d80;
    flex-flow: wrap;
    justify-content: center;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-bottom: 200px;
  }

  .footer {
    background-size: 70%, 100%;
    justify-content: flex-start;
    height: auto;
    min-height: 150vw;
    padding-bottom: 47vw;
    padding-right: 10vw;
  }

  .ingredient-flex {
    min-width: 21%;
    margin-left: 3vw;
    margin-right: 3vw;
    position: static;
  }

  .home-location-section {
    background-image: url('../images/home-location-map.svg');
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 122%;
    padding: 76px 10vw 100px;
  }

  .faq-block {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .faq-question {
    padding-left: 15px;
    padding-right: 15px;
  }

  .faq-title-block {
    width: auto;
    max-width: 400px;
  }

  .potato-beer-text {
    width: 23vw;
    height: 15vw;
  }

  .potato-beer-text.video-sect {
    margin-bottom: 20px;
  }

  .potato-beer-text.brown.home {
    position: static;
  }

  .copyright-flex {
    flex-direction: column;
    align-items: flex-start;
    bottom: 12vw;
    left: 10vw;
  }

  .social-link-block {
    margin-bottom: 20vw;
  }

  .social-link-block.open-menu {
    margin-bottom: 0;
  }

  .copyright-text {
    color: var(--faded-brown);
    margin-top: 2vw;
  }

  .copyright-text.brown-text {
    color: var(--brown);
  }

  .header {
    padding-left: 5vw;
  }

  .about-mission-section {
    margin-top: -3vw;
  }

  .mantra-block {
    padding-top: 50px;
    padding-left: 10vw;
  }

  .mission-image {
    width: auto;
    height: 80vw;
    margin-bottom: -40px;
    margin-right: -3vw;
  }

  .check-logo {
    bottom: 15px;
    right: 3vw;
  }

  .about-video-title-flex {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .orange-orango-text {
    width: 73vw;
    margin-top: 0;
  }

  .video-wrapper {
    margin-top: 20px;
  }

  .about-commiment-section {
    padding-top: 15vw;
  }

  .more-than-text {
    font-size: 14vw;
    line-height: 14vw;
  }

  .beer-text {
    font-size: 31vw;
    line-height: 31vw;
  }

  .composition {
    background-size: 170vw;
    width: 100%;
    left: 0;
  }

  .just-text {
    font-size: 15vw;
  }

  .about-hero-inner {
    background-position: 0 340px;
    background-size: 130vw;
  }

  .about-hero-image {
    min-height: 220px;
  }

  .about-animation-block {
    flex-direction: row;
    min-height: 60vw;
    overflow: hidden;
  }

  .mvo-body {
    background-size: 90vw;
  }

  .mvo-hero {
    padding-top: 40vw;
  }

  .mvo-hero-inner {
    padding-left: 8vw;
    padding-right: 8vw;
    position: relative;
  }

  .mvo-divider {
    margin-bottom: 18vw;
  }

  .mvo-hero-title {
    width: auto;
    max-width: 350px;
  }

  .mvo-hero-subtitle {
    width: auto;
    max-width: none;
  }

  .mvo-hero-image {
    width: 35vw;
    margin-top: 5vw;
    left: -7vw;
  }

  .mvo-hero-image._2 {
    width: 30vw;
    height: 28vw;
    bottom: -23vw;
  }

  .sdg-section {
    padding-top: 13vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sdg-block {
    width: auto;
    margin-bottom: 20px;
    margin-left: 5vw;
    margin-right: 5vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sdg-block.long {
    background-position: 50% 140%;
    background-size: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10vw 10vw 60vw;
  }

  .sdg-flex {
    margin-bottom: 0;
    padding-left: 0;
    display: block;
  }

  .recipe-inner-block {
    padding-right: 5vw;
  }

  .recipe-image-wrapper {
    height: 80vw;
  }

  .tab-link {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .recipe-ingredients-line {
    left: 4px;
  }

  .recipe-ingredients-line.bottom {
    right: 5px;
  }

  .recipe-ingredients-body {
    padding-left: 10px;
    padding-right: 0;
  }

  .location-block.image {
    justify-content: center;
    height: 100vh;
    max-height: none;
    padding: 0 10vw 20vw;
  }

  .location-details {
    padding-left: 10px;
    display: block;
  }

  .location-button-block {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .location-block-inner {
    width: auto;
    max-width: 310px;
  }

  .contact-body {
    align-items: stretch;
    padding-bottom: 40vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .contact-bottle-wrapper {
    margin-top: -20vw;
  }

  .contact-form-parent {
    min-width: 0;
  }

  .contact-details-block {
    padding-top: 35px;
    display: block;
  }

  .reason-dropdown.age-prompt {
    width: auto;
  }

  .form-inner-flex {
    display: block;
  }

  .form-half-block {
    width: auto;
  }

  .contact-details-inner {
    border-style: solid none;
    border-top-width: 1px;
    border-top-color: var(--yellow);
    border-bottom-width: 1px;
    border-bottom-color: var(--yellow);
    margin-left: 0;
    margin-right: 0;
    padding: 8px 0;
  }

  .footer-link-wrapper {
    width: auto;
    margin-top: 37px;
  }

  .home-hero-inner {
    background-image: url('../images/homepage-left-side-lockup.svg'), linear-gradient(#f3cf21cc, #f3cf21cc);
    background-position: 0 0, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto 100%, auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 480px;
    min-height: 80vh;
    padding-top: 10vw;
    padding-bottom: 0;
    padding-left: 15vw;
  }

  .video-overlay {
    background-image: linear-gradient(to bottom, #3c241500 63%, var(--brown));
  }

  .iingredient-name {
    order: 1;
    margin-bottom: 20px;
  }

  .ingredients-bottle-wrapper {
    position: absolute;
    bottom: -20vw;
  }

  .about-animation {
    width: 140vw;
    margin-left: -5vw;
  }

  .video-parent {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
  }

  .home-hero-divider {
    background-color: var(--brown);
    width: 50%;
    height: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .menu-inner {
    flex-direction: column;
    padding-left: 9vw;
    padding-right: 9vw;
  }

  .last-collage-block {
    margin-left: -20vw;
  }

  .age-image._1 {
    width: 70vw;
    height: 70vw;
    margin-left: -35vw;
  }

  .age-image._2 {
    width: 20vw;
    height: 17vw;
    top: 50%;
    right: -2vw;
  }

  .age-image._3 {
    width: 26vw;
    height: 20vw;
    top: 40%;
  }

  .age-image._4 {
    width: 15vw;
    height: 20vw;
    top: auto;
    bottom: 150px;
  }

  .age-image._5 {
    width: 21vw;
    height: 26vw;
    bottom: 120px;
  }

  .select-language {
    top: 90px;
    right: 5vw;
  }

  .flex-block.foundation {
    margin-bottom: 80px;
  }

  .flex-child.charity-image {
    height: 360px;
    padding-top: 10px;
  }

  .flex-child.foundation-text {
    padding: 10vw;
  }

  .flex-child.farming-foundation {
    padding-left: 30px;
    padding-right: 30px;
  }

  .farmforte-logo {
    margin-bottom: 0;
    margin-left: 10vw;
  }

  .foundation-image {
    background-size: 95%;
    height: 290px;
    margin-right: -17px;
  }

  .farming-image-wrapper {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
    overflow: visible;
  }
}


@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir-Black-03.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir-BookOblique-02.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir-Book-01.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/Avenir-BlackOblique-04.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Lemon Milk';
  src: url('../fonts/LemonMilk.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}