:root {
  --black: #1c1c1c;
  --nav: #dadada;
  --white: white;
  --lazy-bgr: #ececec;
  --id-black: #0e0e0e;
  --grey: #333;
  --black-2: #333333ad;
  --dark-grey: #9c9c9c;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Special Elite, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

p {
  letter-spacing: .8px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: var(--black);
  text-decoration: none;
}

.nav-link {
  color: var(--nav);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #0000;
  margin: 10px 20px;
  padding: 8px 0;
  font-size: 16px;
  transition: color .25s ease-in-out;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.w--current {
  color: #fff;
  margin-left: 20px;
  margin-right: 20px;
  position: static;
}

.nav-link.w--current:hover {
  color: #fff;
}

.nav-link.mobile {
  display: none;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-top: -10px;
  margin-bottom: -10px;
  display: flex;
  position: static;
  left: 44%;
  right: 44%;
}

.brand.w--current {
  margin: -10px 0;
  position: static;
  left: 20px;
  right: auto;
}

.logo {
  color: #dfe674;
  width: 80px;
  height: 80px;
}

.nav-menu {
  align-items: center;
  display: flex;
  position: static;
  left: 10%;
  right: 20%;
}

.menu-blur-overlay {
  max-width: 100vw;
  display: none;
}

.navbar {
  z-index: 10;
  background-color: #0000;
  width: 1300px;
  max-width: 95vw;
  margin: 0 auto 10px;
  padding: 15px 0 0;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-wrapper {
  border: 2px solid var(--lazy-bgr);
  background-color: var(--id-black);
  border-radius: 40px;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  margin-left: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 3px #000;
}

.body {
  flex-direction: column;
}

.section {
  color: #3d73bb;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section.hero {
  color: var(--id-black);
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  bottom: 0;
  left: 0%;
  right: 0%;
  overflow: hidden;
  box-shadow: 2px 2px 6px #00000061;
}

.section.lines {
  border-top: 10px solid var(--id-black);
  border-bottom: 10px solid var(--id-black);
}

.section.lines.interview {
  border-top-style: none;
}

.container {
  z-index: 3;
  color: var(--id-black);
  flex-direction: column;
  align-items: flex-start;
  width: 1300px;
  max-width: 95vw;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  display: flex;
}

.container.hero {
  z-index: 1;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  top: auto;
  bottom: 20%;
}

.container.centered {
  align-items: center;
}

.hero {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: 1fr .75fr;
  grid-template-columns: 1fr 1fr;
  width: 1300px;
  position: absolute;
  inset: 0%;
}

.h1 {
  color: var(--id-black);
  letter-spacing: 2px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.4em;
  line-height: 1;
}

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

.p {
  color: var(--grey);
  line-height: 1.3;
}

.p.block {
  text-align: justify;
  letter-spacing: .5px;
}

.categories__wrapper {
  border-radius: 8px;
  height: 20vw;
  max-height: 320px;
  position: relative;
  overflow: hidden;
}

.h2 {
  text-transform: none;
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1;
}

.h2.center {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta {
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.cta__text-wrapper {
  z-index: 2;
  background-color: #fff6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.button__main {
  background-color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 8px;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 30px;
  font-size: 14px;
}

.cta__buttons {
  text-align: center;
  justify-content: space-around;
  width: 420px;
  max-width: 100%;
  display: flex;
}

.button__secondary {
  color: #3d73bb;
  text-transform: uppercase;
  background-color: #0000;
  border: 2px solid #3d73bb;
  border-radius: 8px;
  width: 200px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
}

.footer {
  background-color: var(--id-black);
  text-align: center;
  background-image: url('../images/droplets-background.jpg');
  background-position: 50% 100%;
  background-size: cover;
  align-items: flex-start;
  width: 100vw;
  margin-top: auto;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-logo-link {
  min-width: 60px;
  height: 200px;
  margin-top: -110px;
  margin-bottom: 30px;
}

.footer-logo-link.w--current {
  margin-bottom: 10px;
  position: relative;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  width: 200px;
  height: 200px;
  margin-top: 0;
}

.footer-link {
  color: var(--white);
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  text-decoration: underline;
}

.div-block {
  flex: 1;
}

.footer-grid {
  grid-column-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: -60px;
}

.form-block {
  width: 80%;
}

.submit-button {
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  background-color: #0000;
  border-radius: 8px;
  align-self: flex-end;
  margin-top: 5px;
  margin-right: 0;
  padding: 5px 0;
  font-size: 12px;
  display: block;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--black-2);
  color: var(--white);
  text-align: left;
  letter-spacing: 1px;
  background-color: #0000;
  align-self: auto;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-bottom: 0;
  font-size: 12px;
}

.text-field:focus {
  border-bottom-color: var(--white);
}

.text-field.message {
  height: 60px;
}

.form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer__p {
  color: var(--white);
  text-align: left;
  font-size: 14px;
}

.header-links {
  align-items: center;
  display: flex;
}

.header-links__svg {
  width: 25px;
  height: 25px;
}

.header-links__block {
  margin-left: 10px;
}

.overflow-hidden {
  max-width: 100vw;
  padding-bottom: 0;
  padding-right: 0;
}

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

.webbutler-link {
  opacity: 1;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  display: flex;
}

.image-10 {
  opacity: 1;
  width: 25px;
}

.webbutler-text {
  color: var(--dark-grey);
  font-size: .7rem;
  display: flex;
}

.webbutler-link-text {
  color: var(--white);
  margin-left: 5px;
}

.copyright-embed {
  margin-top: 20px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 280px;
  display: flex;
}

.utility-message {
  margin-bottom: 30px;
}

.legal-content {
  flex-direction: column;
  align-items: center;
  width: 95%;
  max-width: 100vw;
  height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.legal-paragraph {
  color: #171717;
  text-align: left;
  width: 710px;
  max-width: 100%;
  margin-top: 80px;
  line-height: 1.5;
}

.bold-text {
  font-size: 22px;
  font-weight: 600;
}

.link-8 {
  color: #5c5c5c;
}

.bold-text-5 {
  font-weight: 400;
}

.link-7 {
  color: #5c5c5c;
  font-weight: 700;
}

.divider {
  background-color: #ffffff0f;
  width: 1px;
  height: 40px;
  box-shadow: 0 0 8px #ececec59;
}

.hero-slider {
  width: 100%;
  height: 100vh;
}

.icon-2, .icon-3 {
  font-size: 16px;
}

.slide-nav-2 {
  display: none;
}

.slider-img {
  object-fit: cover;
  width: 100vw;
  height: 100%;
}

.dropdown-text {
  color: var(--nav);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
}

.dropdown-toggle {
  cursor: default;
  padding-right: 20px;
}

.dropdown-list {
  margin-top: 3px;
}

.dropdown-list.w--open {
  background-color: #0000;
  width: 550px;
  margin-top: 0;
  margin-left: -30px;
  padding-top: 20px;
}

.dropdown-list.small.w--open {
  width: 225px;
}

.dropdown-grid {
  background-color: #fff;
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: none;
  box-shadow: 1px 1px 3px #000;
}

.dropdown-grid.small {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.dropdown-grid.mobile {
  display: none;
}

.dropdown-link {
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.dropdown-link.w--current {
  color: var(--id-black);
}

.bottle-grid {
  grid-column-gap: 0px;
  border: 1px solid #fff;
  grid-template-rows: auto;
  grid-template-columns: .4fr 1fr;
  justify-content: space-between;
  place-items: center stretch;
  padding: 5px;
}

.bottle-grid:hover {
  border: 1px solid #33333317;
  border-radius: 8px;
  box-shadow: 1px 1px 3px #00000024;
}

.bottle-text {
  width: 18ch;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 400;
}

.link-block-2 {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.indiedrinks {
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 32px;
}

.mask {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.content {
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.top-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  width: 100%;
  margin-top: 30px;
}

.top-img {
  object-fit: cover;
  height: 350px;
  transition: all .4s;
}

.top-img:hover {
  transform: scale(1.03);
}

.h3 {
  font-size: 1.2rem;
  line-height: 1;
}

.h3.team {
  color: var(--white);
  text-shadow: 1px 1px 2px #000;
  font-size: 1rem;
  position: absolute;
  bottom: 20px;
}

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

.top-link {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.team-img {
  object-fit: cover;
  height: 300px;
}

.team-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  width: 100%;
  margin-top: 30px;
}

.team-overlay {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  display: flex;
  position: absolute;
}

.team-link {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.text-background {
  background-color: var(--id-black);
  margin-bottom: -22px;
  padding: 15px 20px 10px;
}

.subtitle {
  color: var(--white);
  font-size: 22px;
}

.whatsapp {
  border: 2px solid var(--white);
  background-color: var(--id-black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: fixed;
  bottom: 5%;
  left: 5%;
  right: auto;
  box-shadow: 1px 1px 3px #000;
}

.html-embed {
  width: 35px;
  height: 35px;
}

.drink-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 100px;
  display: grid;
}

.drink-img {
  object-fit: contain;
  height: 500px;
}

.drink-text-left {
  width: 20%;
}

.drink-text-right {
  width: 80%;
}

.drink-text-wrap {
  margin-top: 30px;
  display: flex;
}

.drink-stats-wrap {
  margin-bottom: 20px;
  position: relative;
}

.drink-stats-icon {
  width: 60px;
}

.drink-stats-text {
  text-align: center;
  width: 60px;
  font-size: 13px;
  position: absolute;
  bottom: 20px;
  left: 0;
}

.wilhelm-link-block {
  float: right;
  border: 2px solid var(--white);
  background-color: var(--id-black);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 80%;
  height: 60px;
  margin-bottom: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 3px #000;
}

.wilhelm-link-img {
  width: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.wilhelm-link-text {
  color: var(--white);
  text-align: left;
  letter-spacing: 1px;
  width: 72%;
  font-size: 16px;
}

.teampage-grid {
  grid-column-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  width: 100%;
  margin-top: 80px;
}

.team-wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  display: block;
}

.text-grid {
  grid-column-gap: 25px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 80px;
}

.text-grid.narrow {
  grid-template-columns: 1fr;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.text-wrap.centered {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.success-message {
  background-color: #ffffff1c;
  border-radius: 4px;
}

.form-message {
  color: var(--white);
}

.error-message {
  background-color: #e93d3d3b;
  border-radius: 4px;
}

.teampage-img {
  height: 280px;
}

.wb-credit-mobile {
  margin-top: 20px;
  display: none;
}

.paragraph {
  color: var(--grey);
  line-height: 1.3;
}

.brand-logo {
  object-fit: contain;
  height: 60px;
  display: block;
}

.brand-collection-logo {
  object-fit: contain;
  width: 120px;
  margin-bottom: 30px;
  display: block;
}

.brand-collection-item {
  grid-column-gap: 25px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 120px;
  display: grid;
}

.brands-drinks-collection-grid {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.brands-drinks-collection-img {
  object-fit: cover;
  height: 250px;
}

.brands-drinks-collection-link {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-cookie.horizontal {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.no-margin.white-text {
  color: #fff;
}

.no-margin.white-text.max-700 {
  font-size: 11px;
}

.cookie-content {
  align-items: center;
  display: flex;
}

.cookie-button-bottom {
  color: #000;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 5px;
  margin-left: 50px;
  margin-right: 35px;
  padding: 6px 30px;
  font-size: 11px;
}

.cookie-button-bottom:hover {
  border-bottom-style: solid;
  border-bottom-color: #203492;
}

.cookie-span {
  color: var(--dark-grey);
  border-bottom-style: none;
  font-weight: 600;
}

.bottom-cookie-wrapper {
  z-index: 8;
  background-color: var(--id-black);
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
  transform: translate(0, 60px);
}

.white-x {
  background-image: url('../images/vector-2-stroke.svg');
  background-position: 0 0;
  background-size: auto;
  width: 17px;
  height: 17px;
}

.language-switcher {
  color: var(--lazy-bgr);
  letter-spacing: 1px;
  margin-left: 0;
  display: block;
}

.language-switcher.w--current {
  font-weight: 800;
}

.slider-wrapper {
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.logo-wrapper {
  justify-content: center;
  align-items: center;
  width: 33.3333%;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.icon {
  color: #9c9c9c;
  font-size: 20px;
}

.brands__logo-small {
  object-fit: contain;
  width: 100%;
  height: 150px;
}

.slide-2 {
  object-fit: fill;
  padding-left: 0;
  padding-right: 0;
  bottom: 10px;
  overflow: visible;
}

.brands-slider {
  background-color: #0000;
  height: 180px;
}

.brands__logo {
  object-fit: contain;
  width: 100%;
  height: 100px;
}

.logo-wrapper {
  height: auto;
  margin-top: 0;
}

.interview-grid {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 30px;
}

.video-wrapper {
  align-items: center;
  display: block;
}

.rich-text-block {
  height: 400px;
  padding-right: 10px;
  overflow: auto;
}

.video-embed {
  height: 26vw;
  max-height: 350px;
  position: relative;
}

.brands-drinks-collection-grid-mobile {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.brands-drinks-collection-grid-slider {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: 0;
  display: grid;
}

.left-arrow-3 {
  left: -50px;
}

.slider-wrapper-2 {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.brands__logo-small-2 {
  object-fit: cover;
  width: 100%;
  height: 60px;
}

.right-arrow-3 {
  right: -50px;
}

.slider-2 {
  background-color: #0000;
  display: block;
}

.brands__logo-2 {
  object-fit: contain;
  width: 100%;
  height: 60px;
}

.mask-2 {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .menu-button {
    z-index: 9999;
    margin-right: 10px;
    padding: 0;
    display: block;
    position: relative;
    top: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .lottie-animation {
    width: 40px;
  }

  .nav-link {
    color: var(--white);
    text-align: left;
    justify-content: flex-start;
    width: auto;
    margin: 5px 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    line-height: 1;
    display: none;
  }

  .nav-link.w--current {
    z-index: 11;
    text-align: center;
    position: relative;
  }

  .nav-link.mobile {
    display: block;
  }

  .brand {
    z-index: 999;
    margin-left: 0;
    margin-right: 0;
    left: 40%;
    right: 40%;
  }

  .brand.w--current {
    margin-left: 10px;
    left: 40%;
    right: 40%;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .nav-menu {
    z-index: 10;
    background-color: #0000;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 0%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 14%;
    padding-bottom: 50%;
    padding-left: 0;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .menu-blur-overlay {
    z-index: 10;
    background-color: #0e0e0e;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .navbar {
    background-color: #0000;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100vw;
    max-width: 100vw;
    margin-bottom: 0;
    display: block;
  }

  .navbar-wrapper {
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
    display: flex;
    position: static;
  }

  .body {
    padding-top: 0;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.hero {
    padding-bottom: 0;
  }

  .section.start {
    padding-top: 120px;
  }

  .container {
    max-width: 95%;
  }

  .container.hero {
    justify-content: flex-end;
    padding-bottom: 200px;
    bottom: 10%;
  }

  .hero {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: 1fr .75fr;
    align-items: stretch;
  }

  .h1 {
    font-size: 1.3em;
    line-height: 1.2;
  }

  .p {
    font-size: 14px;
  }

  .h2 {
    font-size: 1.4em;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo-link {
    height: 100px;
  }

  .footer-logo-link.w--current {
    margin-bottom: 20px;
  }

  .footer-image {
    width: 100px;
    height: 100px;
  }

  .footer-grid {
    grid-column-gap: 9px;
    grid-template-columns: 1fr 1.25fr 1fr;
  }

  .form-block {
    width: 95%;
  }

  .header-links {
    z-index: 999;
    justify-content: center;
    align-self: auto;
    align-items: center;
    display: flex;
    position: absolute;
    left: 30%;
    right: 30%;
  }

  .header-links__block {
    margin-left: 5px;
    margin-right: 5px;
  }

  .overflow-hidden {
    flex: 0 auto;
    padding-bottom: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .webbutler-link {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .legal-content {
    width: 95%;
  }

  .divider {
    height: 15px;
    display: none;
  }

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

  .dropdown-list.w--open {
    justify-content: center;
    display: flex;
  }

  .dropdown-grid {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    box-shadow: none;
    background-color: #0000;
    border-radius: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .dropdown-grid.mobile {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .bottle-grid {
    background-color: var(--white);
    border-style: solid;
    border-color: #ffffff1a;
    border-radius: 4px;
    justify-content: space-between;
    place-items: center stretch;
  }

  .bottle-text {
    color: var(--id-black);
    text-align: left;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 1;
  }

  .indiedrinks {
    margin-top: 55px;
  }

  .top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .h3.team {
    text-align: center;
    font-size: .8rem;
  }

  .h3.center {
    font-size: 1rem;
  }

  .team-img {
    height: 200px;
  }

  .team-grid {
    margin-bottom: 20px;
  }

  .text-background {
    margin-bottom: -12px;
  }

  .drink-text-left {
    display: flex;
  }

  .drink-text-wrap {
    flex-direction: column-reverse;
  }

  .drink-stats-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 20px;
    display: flex;
  }

  .drink-stats-icon {
    margin-top: auto;
  }

  .drink-stats-text {
    bottom: 18px;
    left: 0;
  }

  .wilhelm-link-block {
    width: 100%;
    margin-top: 78px;
    margin-bottom: 0;
  }

  .wilhelm-link-img {
    width: 60px;
  }

  .wilhelm-link-text {
    font-size: 12px;
  }

  .teampage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dropdown {
    align-self: flex-start;
    width: 200px;
    display: none;
  }

  .sub-nav-link {
    color: var(--white);
    margin-top: 5px;
    padding-left: 10px;
    display: block;
  }

  .brand-logo {
    height: 35px;
  }

  .brands-drinks-collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brands-drinks-collection-img {
    height: 180px;
  }

  .cookie-button-bottom {
    margin-left: 15px;
  }

  .bottom-cookie-wrapper {
    height: auto;
  }

  .logo-wrapper {
    margin-top: 0;
  }

  .video-embed {
    height: 25vw;
  }

  .brands-drinks-collection-grid-mobile {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .brands-drinks-collection-grid-slider {
    grid-template-columns: 1fr 1fr;
    display: none;
  }

  .slider-2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .menu-button {
    z-index: 9999;
    margin-left: -13px;
    padding-left: 0;
  }

  .nav-link {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .brand {
    left: 35%;
    right: 35%;
  }

  .brand.w--current {
    padding-left: 0;
    left: 35%;
    right: 35%;
  }

  .nav-menu {
    height: 100vh;
    padding-bottom: 10%;
    top: 0;
    bottom: 0;
  }

  .menu-blur-overlay {
    height: 100vh;
    display: none;
    position: fixed;
  }

  .navbar {
    background-color: #0000;
  }

  .navbar-wrapper {
    align-items: center;
  }

  .container.hero {
    justify-content: flex-end;
    padding-bottom: 10%;
  }

  .hero {
    grid-template-rows: 1fr .5fr;
  }

  .h1 {
    font-size: 1.3em;
  }

  .p {
    line-height: 1.2;
  }

  .categories__wrapper {
    height: 40vw;
  }

  .h2.center {
    font-size: 18px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-logo-link {
    height: 80px;
    margin-top: -80px;
  }

  .footer-image {
    object-fit: contain;
    width: 80px;
    height: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-links__svg {
    width: 25px;
    height: 25px;
  }

  .header-links__block {
    margin-left: 5px;
  }

  .legal-content {
    width: 95%;
  }

  .hero-slider {
    height: 100vh;
  }

  .bottle-text {
    width: 10ch;
  }

  .left-arrow, .right-arrow {
    width: 40px;
  }

  .h3.team {
    text-align: center;
    bottom: 10px;
  }

  .text-background {
    margin-top: 10px;
  }

  .paragraph {
    line-height: 1.2;
  }

  .no-margin.white-text.max-700 {
    font-size: 10px;
  }

  .cookie-content {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .cookie-content.bottom-banner-content {
    align-items: flex-start;
  }

  .cookie-span {
    line-height: 1;
  }

  .bottom-cookie-wrapper {
    padding-bottom: 0;
    transform: translate(0, 90px);
  }

  .slider-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .logo-wrapper {
    margin-top: 45px;
    padding-top: 31px;
    display: block;
    position: relative;
  }

  .brands-slider {
    height: auto;
  }

  .interview-grid {
    grid-template-columns: 1fr;
  }

  .video-embed {
    height: 53vw;
  }

  .slider-wrapper-2 {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .slider-2 {
    height: auto;
  }
}

@media screen and (max-width: 479px) {
  .menu-button {
    margin-left: -10px;
    padding-left: 0;
    padding-right: 0;
  }

  .lottie-animation {
    width: 40px;
  }

  .nav-link {
    margin: 0;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 13px;
    line-height: 14px;
  }

  .nav-link.mobile {
    margin-top: 20px;
  }

  .brand {
    color: #dfe674;
    margin-left: 10px;
    padding-left: 0;
    left: 32%;
    right: 32%;
  }

  .brand.w--current {
    justify-content: center;
    left: 32%;
    right: 32%;
  }

  .nav-menu {
    height: 100vh;
    padding-top: 20%;
    padding-bottom: 10%;
    inset: 0%;
    overflow: scroll;
  }

  .menu-blur-overlay {
    height: 140vh;
    display: none;
  }

  .navbar {
    background-color: #0000;
    margin-top: 0;
    padding-bottom: 0;
  }

  .navbar-wrapper {
    margin-top: 0;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero {
    max-width: 100vw;
    height: 60vh;
    margin-bottom: 0;
    padding-top: 0;
    top: 0;
  }

  .container.hero {
    padding-bottom: 20%;
  }

  .hero {
    grid-column-gap: 20px;
    grid-template-rows: 1.25fr .25fr;
    height: 60vh;
  }

  .h1 {
    margin-bottom: 10px;
    font-size: 1.3em;
  }

  .h1.white {
    margin-bottom: 0;
    font-size: 1.2em;
    line-height: 1;
  }

  .p {
    font-size: 12px;
  }

  .h2.center {
    width: 20ch;
    font-size: 18px;
  }

  .button__main {
    margin-bottom: 20px;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    text-align: left;
    max-width: 100vw;
    padding-bottom: 120px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-logo-link {
    height: 80px;
  }

  .footer-image {
    width: 80px;
    height: 80px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-grid {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    width: 95%;
  }

  .form-block {
    width: 100%;
  }

  .submit-button {
    font-size: 12px;
  }

  .text-field {
    text-align: left;
    padding-top: 0;
  }

  .form {
    align-items: flex-start;
    line-height: 1;
  }

  .footer__p {
    font-size: 12px;
  }

  .wb-credit {
    display: none;
  }

  .legal-content {
    width: 95%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-slider {
    height: 60vh;
  }

  .dropdown-grid {
    grid-row-gap: 6px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .dropdown-grid.mobile {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .bottle-grid {
    grid-row-gap: 0px;
    grid-template-columns: .33fr 1fr;
    place-content: stretch space-around;
    place-items: center stretch;
    height: 100%;
    padding-top: 2px;
    padding-right: 2px;
  }

  .bottle-text {
    letter-spacing: .5px;
    width: 60vw;
    margin-left: 0;
    font-size: 13px;
  }

  .link-block-2 {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 2px;
  }

  .mask {
    height: 60vh;
  }

  .top-img {
    height: 300px;
  }

  .h3 {
    font-size: 1rem;
  }

  .h3.team {
    text-align: center;
  }

  .team-img {
    width: 45vw;
    height: 45vw;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
  }

  .text-background {
    margin-bottom: -22px;
    padding: 10px 15px;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1;
  }

  .drink-grid {
    grid-template-columns: 1fr;
  }

  .drink-text-right {
    width: 100%;
  }

  .wilhelm-link-img {
    width: 80px;
  }

  .wilhelm-link-text {
    font-size: 14px;
  }

  .teampage-grid {
    grid-row-gap: 51px;
    grid-template-columns: 1fr;
  }

  .text-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .text-grid.narrow {
    width: 100%;
  }

  .dropdown {
    display: none;
  }

  .sub-nav-link {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.2;
  }

  .wb-credit-mobile {
    display: block;
  }

  .brand-logo {
    width: 60px;
    height: 30px;
  }

  .brand-collection-item {
    grid-template-columns: 1fr;
  }

  .no-margin.white-text.max-700 {
    width: 100%;
    font-size: 10px;
  }

  .cookie-content.bottom-banner-content {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .cookie-button-bottom {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .bottom-cookie-wrapper {
    flex-direction: column-reverse;
    transform: translate(0, 170px);
  }

  .white-x {
    width: 15px;
    height: 15px;
  }

  .left-arrow-2 {
    width: 6%;
  }

  .slider-wrapper {
    flex-wrap: nowrap;
    justify-content: space-around;
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo-wrapper {
    width: 33%;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .brands__logo-small {
    object-fit: contain;
    height: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .slide-2 {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .right-arrow-2 {
    width: 6%;
  }

  .brands-slider {
    height: auto;
  }

  .brands__logo {
    object-fit: contain;
    height: 40px;
  }

  .video-embed {
    height: 53vw;
  }

  .left-arrow-3 {
    width: 10%;
  }

  .slider-wrapper-2 {
    flex-wrap: nowrap;
    justify-content: space-around;
    padding-top: 0;
    padding-bottom: 0;
  }

  .brands__logo-small-2 {
    object-fit: contain;
    padding-left: 10px;
    padding-right: 10px;
  }

  .right-arrow-3 {
    width: 10%;
  }

  .slider-2 {
    height: auto;
  }

  .brands__logo-2 {
    object-fit: contain;
    height: 50px;
  }
}

#w-node-c6a46ba5-cb87-8f50-b553-0861bec1aa6c-460a12b6 {
  align-self: center;
}

#w-node-f5ad5920-ff13-8a9d-0a58-8c41c8cd91e7-235e269e {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-eddc88b2-8edc-82ef-7ffc-54db235e26a4-235e269e {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-dd5178db-eea7-8371-35bb-752b2b97bdf3-235e269e {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-eddc88b2-8edc-82ef-7ffc-54db235e26b7-235e269e {
  grid-area: 2 / 3 / 3 / 4;
  justify-self: end;
}

#w-node-b441ee22-0650-d336-a0e4-f3b0b276b15c-2eeb675a, #w-node-bf59b946-5673-36cb-bbbb-21818891bacd-2eeb675a, #w-node-_2d1b6f32-e484-aec1-1253-ebc4bee21173-2eeb675a, #w-node-_9e394c33-b730-e16a-3d40-ca45c9730080-2eeb675a, #w-node-b571f00f-7aa1-7477-a3bf-132d96444379-2eeb675a, #w-node-df3c9d8a-b2f4-fb8c-88fb-da49ae0aefb1-2eeb675a, #w-node-_40e852db-bb31-cfb5-c117-e93b6055c7ed-2eeb675a, #w-node-_5520b54b-8791-679a-a605-d9abc1408449-2eeb675a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-e7ec830a-325d-e2c1-0f7a-0ea9470e2003-c5ebf3ae {
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-c6a46ba5-cb87-8f50-b553-0861bec1aa6c-460a12b6 {
    align-self: center;
  }

  #w-node-f5ad5920-ff13-8a9d-0a58-8c41c8cd91e7-235e269e {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-dd5178db-eea7-8371-35bb-752b2b97bdf3-235e269e {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_6ad00ff1-5aef-47f4-544b-4276010e976a-2eeb675a, #w-node-bef074fc-e46e-5539-7fce-deba4037420f-2eeb675a, #w-node-_6ad00ff1-5aef-47f4-544b-4276010e9777-2eeb675a {
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c6a46ba5-cb87-8f50-b553-0861bec1aa6c-460a12b6 {
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f5ad5920-ff13-8a9d-0a58-8c41c8cd91e7-235e269e {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-dd5178db-eea7-8371-35bb-752b2b97bdf3-235e269e {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-eddc88b2-8edc-82ef-7ffc-54db235e26b7-235e269e {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-b441ee22-0650-d336-a0e4-f3b0b276b15c-2eeb675a {
    justify-self: start;
  }

  #w-node-_9e394c33-b730-e16a-3d40-ca45c9730080-2eeb675a {
    align-self: center;
  }
}


