:root {
  --color-primary: #4c57a5;
  --color-white: #fff;
  --color-black: #000;
  --color-grey-light: #eee;
  --color-grey-medium: #777;
  --color-grey-dark: #707070;
  --default-font-size: 1.6rem;
  --swirl-font: "Lobster", cursive;
  --heading-font: "Playfair Display", serif;
  --body-copy-font: "Roboto", sans-serif;
  --grid-width: 114rem;
  --gutter-vertical: 8rem;
  --gutter-vertical-small: 6rem;
  --gutter-horizontal: 6rem;
  --radius-small: 3px;
  --radius-medium: 0;
  --fixed-nav-height: 13rem;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
body {
  box-sizing: border-box;
  overflow-x: hidden;
}
section {
  padding: 7rem 0;
  overflow-x: hidden;
}
@media only screen and (max-width: 37.5em) {
  section {
    padding: 7rem 0 3rem;
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: translateY(2rem);
  }
  100% {
    transform: translateY(1rem);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(2rem);
  }
  100% {
    transform: translateY(1rem);
  }
}
.center-text {
  text-align: center !important;
}
.color-primary {
  color: var(--color-primary) !important;
}
.color-white {
  color: var(--color-white) !important;
}
.text-8 {
  font-size: 32px;
}
.margin-bottom-1 {
  margin-bottom: 1rem !important;
}
.margin-bottom-2 {
  margin-bottom: 2rem !important;
}
.margin-bottom-3 {
  margin-bottom: 3rem !important;
}
.margin-bottom-4 {
  margin-bottom: 4rem !important;
}
.margin-bottom-5 {
  margin-bottom: 5rem !important;
}
.margin-bottom-6 {
  margin-bottom: 6rem !important;
}
.margin-bottom-7 {
  margin-bottom: 7rem !important;
}
.margin-bottom-8 {
  margin-bottom: 8rem !important;
}
.margin-bottom-9 {
  margin-bottom: 9rem !important;
}
.margin-bottom-10 {
  margin-bottom: 10rem !important;
}
.margin-top-1 {
  margin-top: 1rem !important;
}
.margin-top-2 {
  margin-top: 2rem !important;
}
.margin-top-4 {
  margin-top: 4rem !important;
}
.margin-top-5 {
  margin-top: 5rem !important;
}
.margin-top-6 {
  margin-top: 6rem !important;
}
.margin-top-7 {
  margin-top: 7rem !important;
}
.margin-top-8 {
  margin-top: 8rem !important;
}
.margin-top-9 {
  margin-top: 9rem !important;
}
.margin-top-10 {
  margin-top: 10rem !important;
}
.fancy-background {
  background: radial-gradient(circle 200rem, #fff, #ededed);
}
.knot {
  width: 12rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
@media only screen and (max-width: 37.5em) {
  .knot {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .knot-mobile {
    margin-bottom: 2rem;
  }
}
.clamp {
  margin: 0 auto;
}
.row {
  margin: 0 auto;
  max-width: 70rem;
}
.us-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.is-hidden {
  display: none !important;
}
.inline-link {
  color: var(--color-primary) !important;
}
body {
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: var(--body-copy-font);
  font-weight: 500;
  line-height: 1.5;
}
a {
  outline-offset: 0.6rem;
}
a:link,
a:visited {
  text-decoration: none;
}
a:focus {
  outline: 1px solid var(--color-primary);
  border-radius: 2px;
}
h1,
h2 {
  font-family: var(--heading-font);
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
}
.font-heading {
  font-family: var(--heading-font) !important;
}
.font-bold {
  font-weight: 800;
}
.heading-primary {
  font-size: 3.7rem;
}
.heading-secondary {
  font-size: 3.4rem;
}
@media only screen and (max-width: 60.5em) {
  .heading-secondary--hide {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    display: inline-block;
    display: none;
  }
}
.heading-tertiary {
  font-size: 2.2rem;
  color: var(--color-primary);
  font-weight: 300;
}
@media only screen and (max-width: 37.5em) {
  .heading-tertiary {
    font-size: 2.4rem;
  }
}
h4 {
  font-size: 3rem;
  font-family: var(--heading-font);
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
}
.btn {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.btn-white {
  padding: 1.6rem 4rem;
  align-items: center;
  color: var(--color-primary);
  background-color: var(--color-white);
}
@media only screen and (max-width: 56.25em) {
  .btn-white {
    font-size: 1.7rem;
  }
}
.btn-blue {
  --padding-tnb: 1.5rem;
  --padding-lnr: 2.8rem;
  padding: var(--padding-tnb) var(--padding-lnr);
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.btn-blue--full {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-blue--ghost {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
@media only screen and (max-width: 56.25em) {
  .btn-blue {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}
.btn-blue--long {
  --padding-lnr: 3.7rem;
}
.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 43.9em) {
  .card {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.card__image-box {
  width: 13.1rem;
  position: relative;
  z-index: 4;
}
.card__image-box--large {
  width: 17.1rem;
}
@media only screen and (max-width: 43.9em) {
  .card__image-box {
    margin: 3rem 0;
  }
}
.card__image-box--big {
  width: 19.1rem;
}
.card__image {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 5;
}
.card__text {
  flex: 0 0 43rem;
  position: relative;
}
@media only screen and (max-width: 43.9em) {
  .card__text {
    flex: 0 0 0rem;
    max-width: 40rem;
  }
}
.card__heading-box {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 5;
}
.card__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  text-align: center;
}
@media only screen and (max-width: 43.9em) {
  .card__writeup {
    font-size: 2rem;
  }
}
.card__price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-top: 0.6rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 43.9em) {
  .card__price {
    margin-top: 1.2rem;
    font-size: 3rem;
  }
}
.card__buttons {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 5;
  max-width: 33.2rem;
  margin: 0 auto;
}
@media only screen and (max-width: 43.9em) {
  .card__buttons {
    max-width: 28.2rem;
  }
}
.card-button {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
  border-radius: 4px;
  padding: 1.2rem 2rem;
}
.card-button--full {
  color: #fff;
  padding: 1.2rem 3rem;
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
}
@media only screen and (max-width: 43.9em) {
  .card-button--full {
    font-size: 2rem;
  }
}
.card-button--ghost {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
@media only screen and (max-width: 43.9em) {
  .card-button--ghost {
    display: none;
  }
}
.card__call-box {
  padding: 1.2rem 2.8rem;
  border-radius: 5px;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  display: none;
}
@media only screen and (max-width: 43.9em) {
  .card__call-box {
    display: block;
  }
}
.card__call-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product {
  width: 100%;
}
.product__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .product__container {
    justify-content: flex-start;
    transition: transform 90ms ease-in;
  }
}
.product__box {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media only screen and (max-width: 37.5em) {
  .product__box {
    flex: 0 0 100%;
  }
}
.product__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .product__wrapper {
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 28.4em) {
  .product__wrapper {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 21.75em) {
  .product__wrapper {
    padding: 0 2.5rem;
  }
}
.product__image-box {
  margin-top: 1rem;
  text-align: center;
}
.product__image {
  height: 35rem;
}
@media only screen and (max-width: 25em) {
  .product__heading {
    font-size: 2.7rem;
  }
}
@media only screen and (max-width: 25em) {
  .product__heading--small {
    font-size: 1.9rem;
  }
}
.product__title {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-primary);
  font-family: var(--heading-font);
  font-size: 1.9rem;
  font-weight: 600;
  margin: 1rem 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.product__price-box {
  color: var(--color-primary);
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 2.2rem;
}
.product__price {
  display: inline-block;
  color: var(--color-primary) !important;
  font-weight: 600;
}
.product__price--out {
  text-decoration: line-through;
  text-transform: uppercase;
  font-size: 2rem;
}
.product__price--hide {
  display: none;
}
.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  display: none;
}
.popup--active {
  display: block;
}
.popup__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60rem;
  padding: 3rem 4rem;
  background-color: var(--color-white);
  position: relative;
  z-index: 999;
}
.popup__close-btn {
  position: absolute;
  top: 2rem;
  right: 4rem;
  display: inline-block;
  width: 2rem;
}
.popup__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.popup__heading {
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
}
.popup__title {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.popup__prices {
  font-size: 1.4rem;
}
.hero__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.hero__text-box-tequila {
  top: 50%;
}
@media only screen and (max-width: 37.5em) {
  .hero__text-box-tequila {
    top: 60%;
  }
}
.hero__cta:focus {
  outline: 0.4rem solid var(--color-primary);
  border-radius: 2px;
}
.hero__text-primary {
  color: var(--color-white);
  text-align: center;
}
.hero__text-primary--main {
  font-family: var(--heading-font);
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  text-shadow: 0.7rem 0.6rem 0.3rem rgba(0, 0, 0, 0.2);
  margin: 5px 1px;
}
@media only screen and (max-width: 37.5em) {
  .hero__text-primary--main {
    font-size: 4rem;
    padding: 0 4rem;
    text-shadow: 0.32rem 0.35rem 0.1rem rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 33em) {
  .hero__text-primary--main-home {
    width: 39rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 49.2em) {
  .hero__text-primary--main-tequila {
    max-width: 62rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 28.4em) {
  .hero__text-primary--main-tequila {
    font-size: 3.8rem;
  }
}
@media only screen and (max-width: 49.2em) {
  .hero__text-primary--main-process {
    max-width: 62rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 28.4em) {
  .hero__text-primary--main-process {
    font-size: 3.8rem;
  }
}
.hero__text-primary--sub {
  display: block;
  font-weight: 500;
  font-family: var(--body-copy-font);
  font-size: 1.8rem;
  width: 36rem;
  margin: 0 auto;
  text-transform: uppercase;
}
@media only screen and (max-width: 33em) {
  .hero__text-primary--sub-home {
    width: 31rem;
  }
}
.hero__text-primary--sub-tequila {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 49.2em) {
  .hero__text-primary--sub-tequila {
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}
.hero__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.hero__text-box-tequila {
  top: 50%;
}
@media only screen and (max-width: 37.5em) {
  .hero__text-box-tequila {
    top: 60%;
  }
}
.hero__cta:focus {
  outline: 0.4rem solid var(--color-primary);
  border-radius: 2px;
}
.hero__text-primary {
  color: var(--color-white);
  text-align: center;
}
.hero__text-primary--main {
  font-family: var(--heading-font);
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  text-shadow: 0.7rem 0.6rem 0.3rem rgba(0, 0, 0, 0.2);
  margin: 5px 1px;
}
@media only screen and (max-width: 37.5em) {
  .hero__text-primary--main {
    font-size: 4rem;
    padding: 0 4rem;
    text-shadow: 0.32rem 0.35rem 0.1rem rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 33em) {
  .hero__text-primary--main-home {
    width: 39rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 49.2em) {
  .hero__text-primary--main-tequila {
    max-width: 62rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 28.4em) {
  .hero__text-primary--main-tequila {
    font-size: 3.8rem;
  }
}
@media only screen and (max-width: 49.2em) {
  .hero__text-primary--main-process {
    max-width: 62rem;
    margin: 0 auto;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 28.4em) {
  .hero__text-primary--main-process {
    font-size: 3.8rem;
  }
}
.hero__text-primary--sub {
  display: block;
  font-weight: 500;
  font-family: var(--body-copy-font);
  font-size: 1.8rem;
  width: 36rem;
  margin: 0 auto;
  text-transform: uppercase;
}
@media only screen and (max-width: 33em) {
  .hero__text-primary--sub-home {
    width: 31rem;
  }
}
.hero__text-primary--sub-tequila {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 49.2em) {
  .hero__text-primary--sub-tequila {
    margin-bottom: 4rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .carousel {
    position: relative;
  }
}
.carousel__left,
.carousel__right {
  width: 4rem;
}
.carousel__left {
  transform: rotate(180deg);
}
.carousel__track-container {
  height: 100%;
}
@media only screen and (max-width: 37.5em) {
  .carousel__slide {
    width: 100%;
    position: relative;
  }
}
.carousel__button {
  position: absolute;
  z-index: 100;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: 0;
  background-color: transparent;
  width: 8rem;
  border-radius: 50%;
  transform: scale(1.1);
  height: 8rem;
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .carousel__button {
    display: block;
  }
}
.carousel__button:active {
  transform: scale(1);
}
.carousel__button--left {
  left: 1rem;
}
.carousel__button--right {
  right: 1rem;
}
.carousel__nav {
  width: 100%;
  position: absolute;
  display: none;
  bottom: -2%;
}
@media only screen and (max-width: 37.5em) {
  .carousel__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 30em) {
  .carousel__nav {
    bottom: -7.5%;
  }
}
.carousel__indicator {
  border: 0;
  border-radius: 50%;
  height: 1.5rem;
  width: 1.5rem;
  background-color: rgba(76, 87, 165, 0.4);
  display: none;
}
.carousel__indicator--active {
  background-color: #4c57a5;
}
@media only screen and (max-width: 37.5em) {
  .carousel__indicator {
    display: block;
    margin: 0 2rem;
  }
}
.header {
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 9999;
  height: var(--fixed-nav-height);
}
.header__nav {
  width: 100%;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav-wrapper {
  padding: 1rem 0 0 0;
  height: 100%;
}
.header__nav-group {
  display: flex;
  height: 90%;
  position: relative;
  z-index: 10;
}
.header__nav-links {
  min-width: 30rem;
}
@media only screen and (max-width: 50em) {
  .header__nav-links {
    display: none;
  }
}
.header__logo-box {
  height: 100%;
  margin: 0 8rem;
  text-align: center;
}
.header__logo-core {
  height: 100px;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8px;
  gap: 4px;
}

@media only screen and (max-width: 50em) {
  .header__logo-core {
    justify-content: center;
    padding-bottom: 8px;
    gap: 4px;
  }
}

.header__logo-core span {
  font-size: 32px;
  line-height: 1;
  color: var(--color-primary);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  display: block;
}
.header__logo {
  height: 10rem;
  cursor: pointer;
}
.header__social-icons {
  position: absolute;
  bottom: 1.9rem;
  left: 5rem;
}
@media only screen and (max-width: 67.75em) {
  .header__social-icons {
    display: none;
  }
}
.header__social-icon {
  display: inline-block;
  width: 2.3rem;
  height: 2.3rem;
  cursor: pointer;
}
.header__social-icon:not(:last-child) {
  margin-right: 2rem;
}
.header__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
.header__item {
  display: inline-block;
  height: 3.2rem;
  position: relative;
  overflow: hidden;
}
.header__item--1 {
  margin-left: 4rem;
}
.header__link {
  font-size: 1.6rem;
  color: var(--color-black);
  cursor: pointer;
  display: inline-block;
  transition: color 10ms ease;
  position: relative;
  text-transform: uppercase;
}
.header__link--active,
.header__link:focus,
.header__link:hover {
  color: var(--color-primary);
  padding-bottom: 1.5px;
  border-bottom: 2px solid var(--color-primary);
}
.header__link--active:focus {
  border: 1px dashed var(--color-primary);
}
.footer {
  font-weight: 400;
  background-color: var(--color-primary);
}
.footer__wrapper {
  width: 100%;
  background-color: var(--color-primary);
  padding: 4rem 0;
}
.footer__group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__group-follow {
  color: var(--color-white);
  font-size: 2.6rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
}
.footer__logo {
  width: 13.2rem;
}
@media only screen and (max-width: 46rem) {
  .footer__logo {
    width: 14rem;
  }
}
.footer__social-icon-box {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--color-white);
  transition: border-radius 0.2s ease;
}
.footer__social-icon-box:not(:last-child) {
  margin-right: 3rem;
}
.footer__social-icon-box:focus,
.footer__social-icon-box:hover {
  border-radius: 0;
  border: 2px solid var(--color-white);
}
.footer__social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer__copyright {
  text-align: center;
  color: var(--color-white);
  font-size: 1.3rem;
}
.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
@media only screen and (max-width: 50em) {
  .navigation {
    display: block;
  }
}
.navigation__icon-box {
  position: absolute;
  padding: 0;
  border: none;
  top: 5rem;
  left: 4rem;
  height: 3.5rem;
  background-color: var(--color-white);
  z-index: 500;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .navigation__icon-box {
    top: 5.5rem;
    left: 2rem;
    height: 2.7rem;
  }
}
.navigation__icon {
  height: 100%;
}
.navigation__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
}
.navigation__background--active {
  background: rgba(28, 29, 31, 0.8);
  width: 100%;
  height: 100vh;
  visibility: visible;
  opacity: 1;
}
.navigation__close-box {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  border: 0;
  background-color: transparent;
  visibility: hidden;
  top: 3rem;
  right: 2rem;
  z-index: 1500;
}
.navigation__close-box--active {
  width: 6rem;
  height: 6rem;
  opacity: 1;
  visibility: visible;
}
.navigation__close-box:focus,
.navigation__close-box:hover {
  cursor: pointer;
  background-color: var(--color-grey-light);
}
.navigation__close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
}
.navigation__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
}
.navigation__box--active {
  background-color: transparent;
  height: 100vh;
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.navigation__nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  height: 0;
  width: 0;
  transform: translateY(-100rem);
  background-color: var(--color-white);
  transition: transform 150ms cubic-bezier(0.2, 0, 1, 0.9);
}
.navigation__nav-wrapper--active {
  height: 100vh;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: transform 250ms cubic-bezier(0, 0, 0.38, 0.9);
  visibility: visible;
}
.navigation__nav {
  height: 100%;
  overflow: auto;
  padding-bottom: 5rem;
  opacity: 0;
  transition: opacity 150ms linear;
}
.navigation__nav--active {
  opacity: 1;
  transition: opacity 250ms linear 250ms;
}
.navigation__logo-box {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}
.navigation__logo {
  width: 13rem;
}
.navigation__list {
  list-style: none;
  margin-top: 8rem;
}
.navigation__item {
  margin: 0 auto;
  border-bottom: 1px solid var(--color-primary);
  width: 80%;
}
.navigation__item:not(:last-child) {
  margin-bottom: 3rem;
}
.navigation__item--active {
  border-bottom: 5px solid var(--color-primary);
}
.navigation__link {
  font-size: 2.3rem;
  text-transform: uppercase;
  color: var(--color-black);
  display: block;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}
.navigation__link--active {
  color: var(--color-primary);
}
.navigation__knot {
  display: inline-block;
  width: 5rem;
}
.navigation__follow {
  font-size: 3rem;
  text-align: center;
  margin-top: 6rem;
  font-family: var(--swirl-font);
  letter-spacing: 0.5px;
}
.navigation__social-icons {
  margin: 7rem auto 0;
  display: flex;
  justify-content: space-around;
}
.navigation__social-icon-box {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--color-black);
}
.navigation__social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2.5rem;
  display: inline-block;
  width: 4rem;
}
.home-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--color-grey-dark);
  background-image: url(img/hero-bg.jpg);
  background-size: cover;
  margin-top: var(--fixed-nav-height);
}
@media only screen and (max-width: 69em) {
  .home-hero {
    height: 60rem;
    background-position: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .home-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url(img/hero-bg.jpg);
    background-size: cover;
  }
}
.experience {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 43.9em) {
  .experience {
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
    align-items: center;
  }
}
.experience__left {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10rem;
}
@media only screen and (max-width: 49.2em) {
  .experience__left {
    flex: 0 1 47%;
  }
}
@media only screen and (max-width: 43.9em) {
  .experience__left {
    padding: 0;
  }
}
.experience__right {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 43.9em) {
  .experience__right {
    margin-bottom: 4rem;
  }
}
.experience__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: -3rem;
  z-index: 2;
}
@media only screen and (max-width: 69em) {
  .experience__face-up {
    right: -1rem;
    top: -8rem;
  }
}
.experience__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -10rem;
  left: -14rem;
  z-index: 2;
}
@media only screen and (max-width: 64.8em) {
  .experience__face-down {
    left: -10rem;
    bottom: -8rem;
  }
}
@media only screen and (max-width: 50em) {
  .experience__face-down {
    left: -8rem;
    bottom: -6rem;
    width: 15.2rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .experience__face-down {
    left: 8rem;
    bottom: 0;
    top: -9rem;
    width: 19.2rem;
  }
}
.experience__text {
  position: relative;
  flex: 0 0 38rem;
}
@media only screen and (max-width: 43.9em) {
  .experience__text {
    flex: 0 0 100%;
    text-align: center;
  }
}
.experience__heading-box {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 37.5em) {
  .experience__heading-box {
    max-width: 40rem;
    margin: 0 auto;
  }
}
.experience__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  padding-right: 6rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .experience__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .experience__writeup {
    padding: 0;
    max-width: 43rem;
    margin: 1rem auto 2rem;
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 24em) {
  .experience__writeup {
    max-width: 40rem;
    padding: 0 2rem;
  }
}
.experience__image-box {
  flex: 0 0 55rem;
  padding: 1rem;
  text-align: right;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .experience__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .experience__image-box {
    flex: 0 0 46rem;
  }
}
@media only screen and (max-width: 49.2em) {
  .experience__image-box {
    flex: 0 1 40rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .experience__image-box {
    flex: 0 1 100%;
  }
}
.experience__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 5;
}
.experience__button-box {
  position: relative;
  z-index: 5;
}
.glass {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 43.9em) {
  .glass {
    flex-direction: column;
  }
}
.glass__left {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 49.2em) {
  .glass__left {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 43.9em) {
  .glass__left {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .glass__left {
    justify-content: center;
  }
}
.glass__right {
  flex: 0 1 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 49.2em) {
  .glass__right {
    flex: 0 1 40%;
  }
}
.glass__text {
  flex: 0 0 39rem;
  position: relative;
}
@media only screen and (max-width: 43.9em) {
  .glass__text {
    flex: 0 0 100%;
    text-align: center;
  }
}
.glass__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: -2rem;
  z-index: 2;
}
@media only screen and (max-width: 50em) {
  .glass__face-up {
    right: 2rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .glass__face-up {
    top: -9rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
.glass__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -6rem;
  left: -5rem;
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .glass__face-down {
    left: -1rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .glass__face-down {
    bottom: 0;
    right: 1rem;
    left: 60%;
    top: -12rem;
    transform: rotate(180deg);
  }
}
.glass__heading-box {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
}
.glass__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 35em) {
  .glass__heading {
    max-width: 39rem;
    margin: 0 auto;
  }
}
.glass__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .glass__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .glass__writeup {
    font-size: 2.2rem;
    font-weight: 300;
    margin: 1rem auto 2rem;
    max-width: 44rem;
  }
}
@media only screen and (max-width: 25em) {
  .glass__writeup {
    padding: 0 1.5rem;
  }
}
.glass__image-box {
  flex: 0 0 55rem;
  text-align: right;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .glass__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .glass__image-box {
    flex: 0 0 46rem;
  }
}
@media only screen and (max-width: 49.2em) {
  .glass__image-box {
    flex: 0 1 40rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .glass__image-box {
    flex: 0 1 90%;
    text-align: center;
  }
}
.glass__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.supply {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 43.9em) {
  .supply {
    flex-direction: column-reverse;
  }
}
.supply__left {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.supply__right {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 49.2em) {
  .supply__right {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 43.9em) {
  .supply__right {
    margin-bottom: 4rem;
    justify-content: center;
  }
}
.supply__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: -4rem;
  z-index: 2;
}
.supply__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -6rem;
  left: -5rem;
  z-index: 2;
}
.supply__text {
  flex: 0 0 30rem;
  position: relative;
}
@media only screen and (max-width: 43.9em) {
  .supply__text {
    flex: 0 0 100%;
    text-align: center;
  }
}
.supply__heading-box {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
}
.supply__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .supply__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .supply__writeup {
    font-size: 2.2rem;
    font-weight: 300;
    margin: 1rem auto 2rem;
    max-width: 47rem;
  }
}
@media only screen and (max-width: 24.5em) {
  .supply__writeup {
    max-width: 37rem;
  }
}
.supply__image-box {
  flex: 0 0 55rem;
  padding: 1rem;
  text-align: right;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .supply__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .supply__image-box {
    flex: 0 0 46rem;
  }
}
@media only screen and (max-width: 49.2em) {
  .supply__image-box {
    flex: 0 1 40rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .supply__image-box {
    flex: 0 1 90%;
  }
}
.supply__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.supply__button-box {
  position: relative;
  z-index: 5;
}
.section-dispatch {
  padding-bottom: 12rem;
}
@media only screen and (max-width: 43.9em) {
  .section-dispatch {
    padding-bottom: 7rem;
  }
}
.dispatch {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 43.9em) {
  .dispatch {
    flex-direction: column;
  }
}
.dispatch__left {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 49.2em) {
  .dispatch__left {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 43.9em) {
  .dispatch__left {
    margin-bottom: 4rem;
    justify-content: center;
  }
}
.dispatch__right {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 49.2em) {
  .dispatch__right {
    flex: 0 1 42%;
    justify-content: flex-start;
  }
}
.dispatch__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: 8rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .dispatch__face-up {
    top: -9rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
.dispatch__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -9rem;
  left: -5rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .dispatch__face-down {
    bottom: 0;
    right: 1rem;
    left: 60%;
    top: -12rem;
    transform: rotate(180deg);
  }
}
.dispatch__text {
  flex: 0 0 40rem;
  position: relative;
}
@media only screen and (max-width: 43.9em) {
  .dispatch__text {
    flex: 0 0 100%;
    text-align: center;
  }
}
.dispatch__heading-box {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
}
.dispatch__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
}
.dispatch__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  padding-right: 8rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .dispatch__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .dispatch__writeup {
    font-size: 2.2rem;
    font-weight: 300;
    margin: 1rem auto 2rem;
    max-width: 48rem;
    padding: 0;
  }
}
@media only screen and (max-width: 24.5em) {
  .dispatch__writeup {
    max-width: 38rem;
    padding: 0 1rem;
  }
}
.dispatch__image-box {
  flex: 0 0 55rem;
  text-align: right;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .dispatch__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .dispatch__image-box {
    flex: 0 0 46rem;
  }
}
@media only screen and (max-width: 49.2em) {
  .dispatch__image-box {
    flex: 0 1 40rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .dispatch__image-box {
    flex: 0 1 90%;
  }
}
.dispatch__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.dispatch__button-box {
  position: relative;
  z-index: 5;
}
.tequila-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--color-grey-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(img/tequila-hero.jpg);
  background-size: cover;
  background-position: center;
  margin-top: var(--fixed-nav-height);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi) {
  .tequila-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url(img/tequila-hero.jpg);
  }
}
@media only screen and (max-width: 69em) {
  .tequila-hero {
    height: 60rem;
  }
}
@media only screen and (max-width: 45em) {
  .tequila-hero {
    background-position: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .tequila-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url(img/tequila-hero.jpg);
    background-size: cover;
  }
}
.section-reposado {
  overflow: hidden;
}
.reposado__image-box {
  width: 11rem;
  z-index: 4;
}
.reposado__text {
  flex: 0 0 39rem;
}
@media only screen and (max-width: 43.9em) {
  .reposado__text {
    padding: 0;
    flex: 0 0 0rem;
    max-width: 42rem;
    padding: 0 0.1;
  }
}
@media only screen and (max-width: 24em) {
  .reposado__text {
    padding: 0;
    flex: 0 0 0rem;
    padding: 0 0.1;
  }
}
@media only screen and (max-width: 24em) {
  .reposado__text {
    padding: 0 0.2;
  }
}
.reposado__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
@media only screen and (max-width: 43.9em) {
  .reposado__heading {
    white-space: initial;
  }
}
.reposado__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: -1rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .reposado__face-up {
    top: -41rem;
    right: 9%;
  }
}
@media only screen and (max-width: 24em) {
  .reposado__face-up {
    right: 7%;
  }
}
.reposado__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -2rem;
  left: -12rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .reposado__face-down {
    bottom: -6rem;
    left: -13rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .durango {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 43.9em) {
  .durango__text {
    padding: 0;
    max-width: 47rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .durango__heading {
    text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  }
}
.durango__face-up {
  position: absolute;
  width: 19.2rem;
  top: -6rem;
  right: -11rem;
  z-index: 2;
}
.durango__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -10rem;
  left: -8rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .durango__face-down {
    top: -15rem;
    left: 10%;
  }
}
@media only screen and (max-width: 43.9em) {
  .plata__text {
    padding: 0;
  }
}
.plata__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
}
.plata__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: 3rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .plata__face-up {
    top: -43rem;
    left: 45%;
  }
}
@media only screen and (max-width: 24em) {
  .plata__writeup {
    padding: 0 2rem;
  }
}
.plata__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -3rem;
  left: -12rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .guerror {
    flex-direction: column-reverse;
  }
}
.guerror__text {
  padding-right: 2.79rem;
}
@media only screen and (max-width: 43.9em) {
  .guerror__text {
    padding: 0;
  }
}
@media only screen and (max-width: 43.9em) {
  .guerror__heading {
    text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  }
}
.guerror__face-up {
  position: absolute;
  width: 19.2rem;
  top: -6rem;
  right: -11rem;
  z-index: 2;
}
.guerror__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -8rem;
  left: -8rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .guerror__face-down {
    top: -15rem;
    left: 10%;
  }
}
.section-muertos {
  padding: 7rem 0 11rem 0;
}
@media only screen and (max-width: 43.9em) {
  .section-muertos {
    padding: 7rem 0 0 0;
  }
}
@media only screen and (max-width: 43.9em) {
  .muertos__text {
    padding: 0;
  }
}
.muertos__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
}
.muertos__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: 0rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .muertos__face-up {
    top: -43rem;
    left: 45%;
  }
}
.muertos__writeup {
  padding: 0 2rem;
}
.muertos__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -4rem;
  left: -11rem;
  z-index: 2;
}
@media only screen and (max-width: 43.9em) {
  .section-durango,
  .section-guerror,
  .section-muertos,
  .section-plata,
  .section-reposado {
    padding: 7rem 0;
    overflow: hidden;
  }
}
.story-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--color-grey-dark);
  background-image: url(img/farm-land-agave.jpg);
  background-size: cover;
  margin-top: var(--fixed-nav-height);
}
@media only screen and (max-width: 69em) {
  .story-hero {
    height: 60rem;
    background-position: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .story-hero {
    background-size: cover;
  }
}
.section-roots {
  overflow: hidden;
}
.roots {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 60.5em) {
  .roots {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.roots__left {
  flex: 0 1 53%;
  display: flex;
  justify-content: center;
}
.roots__right {
  flex: 0 1 42%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 60.5em) {
  .roots__right {
    justify-content: center;
    margin-top: 3rem;
  }
}
.roots__text {
  flex: 0 0 45rem;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 60.5em) {
  .roots__text {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .roots__text {
    flex: 0 1 100%;
    padding: 0 1rem;
  }
}
.roots__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: -2rem;
  z-index: 2;
}
@media only screen and (max-width: 60.5em) {
  .roots__face-up {
    top: -11rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
.roots__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -6rem;
  left: -5rem;
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .roots__face-down {
    left: -1rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .roots__face-down {
    bottom: 0;
    right: 1rem;
    left: 60%;
    top: -10rem;
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .roots__face-down {
    left: 52%;
    top: -8rem;
  }
}
.roots__heading-box {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 5;
}
.roots__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 3.1rem;
}
@media only screen and (max-width: 60.5em) {
  .roots__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .roots__heading {
    text-align: left;
  }
}
.roots__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .roots__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .roots__writeup {
    font-size: 2.2rem;
  }
}
.roots__image-box {
  flex: 0 0 60rem;
  text-align: right;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .roots__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .roots__image-box {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .roots__image-box {
    flex: 0 1 100%;
    text-align: center;
  }
}
.roots__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.oven {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 60.5em) {
  .oven {
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
  }
}
.oven__left {
  flex: 0 1 42%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 64.8em) {
  .oven__left {
    flex: 0 1 57%;
  }
}
@media only screen and (max-width: 60.5em) {
  .oven__left {
    justify-content: center;
    margin-top: 3rem;
  }
}
.oven__right {
  flex: 0 1 53%;
  display: flex;
  justify-content: center;
}
.oven__text {
  flex: 0 0 45rem;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 60.5em) {
  .oven__text {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .oven__text {
    flex: 0 1 100%;
    padding: 0 1rem;
  }
}
.oven__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  left: 3rem;
  z-index: 2;
}
@media only screen and (max-width: 50em) {
  .oven__face-up {
    right: 2rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .oven__face-up {
    top: -12rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
.oven__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -7rem;
  right: 5rem;
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .oven__face-down {
    right: 1rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .oven__face-down {
    bottom: 0;
    left: -1rem;
    left: 60%;
    top: -12rem;
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .oven__face-down {
    left: 52%;
    top: -8rem;
  }
}
.oven__heading-box {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 5;
}
.oven__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 3.1rem;
}
@media only screen and (max-width: 60.5em) {
  .oven__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .oven__heading {
    text-align: left;
  }
}
.oven__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .oven__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .oven__writeup {
    justify-content: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .oven__writeup {
    font-size: 2.2rem;
  }
}
.oven__image-box {
  flex: 0 0 60rem;
  text-align: right;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .oven__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .oven__image-box {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .oven__image-box {
    flex: 0 1 100%;
    text-align: center;
  }
}
.oven__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.distillation {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 60.5em) {
  .distillation {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.distillation__left {
  flex: 0 1 53%;
  display: flex;
  justify-content: center;
}
.distillation__right {
  flex: 0 1 42%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 60.5em) {
  .distillation__right {
    justify-content: center;
    margin-top: 3rem;
  }
}
.distillation__text {
  flex: 0 0 45rem;
  position: relative;
}
@media only screen and (max-width: 60.5em) {
  .distillation__text {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .distillation__text {
    flex: 0 1 100%;
    padding: 0 1rem;
  }
}
.distillation__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: 17rem;
  z-index: 2;
}
@media only screen and (max-width: 50em) {
  .distillation__face-up {
    right: 2rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .distillation__face-up {
    top: -9rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
.distillation__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -6rem;
  left: -5rem;
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .distillation__face-down {
    left: -1rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .distillation__face-down {
    bottom: 0;
    right: 1rem;
    left: 60%;
    top: -12rem;
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .distillation__face-down {
    left: 52%;
    top: -8rem;
  }
}
.distillation__heading-box {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 5;
}
.distillation__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 3.1rem;
}
@media only screen and (max-width: 60.5em) {
  .distillation__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .distillation__heading {
    text-align: left;
  }
}
.distillation__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 75em) {
  .distillation__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .distillation__writeup {
    font-size: 2.2rem;
  }
}
.distillation__image-box {
  flex: 0 0 60rem;
  text-align: right;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .distillation__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .distillation__image-box {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .distillation__image-box {
    flex: 0 1 100%;
    text-align: center;
  }
}
.distillation__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
}
.decanter {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 60.5em) {
  .decanter {
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
  }
}
.decanter__left {
  flex: 0 1 42%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 64.8em) {
  .decanter__left {
    flex: 0 1 45%;
  }
}
@media only screen and (max-width: 60.5em) {
  .decanter__left {
    justify-content: center;
    margin-top: 4rem;
  }
}
.decanter__right {
  flex: 0 1 53%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 43.9em) {
  .decanter__right {
    justify-content: center;
  }
}
.decanter__text {
  flex: 0 0 45rem;
  position: relative;
}
@media only screen and (max-width: 60.5em) {
  .decanter__text {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .decanter__text {
    flex: 0 1 100%;
    padding: 0 1rem;
  }
}
.decanter__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  left: 3rem;
  z-index: 2;
}
@media only screen and (max-width: 50em) {
  .decanter__face-up {
    right: 2rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .decanter__face-up {
    top: -9rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
@media only screen and (max-width: 43.9em) {
  .decanter__face-up {
    top: -15rem;
  }
}
.decanter__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -7rem;
  right: 5rem;
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .decanter__face-down {
    right: 1rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .decanter__face-down {
    bottom: 0;
    left: -1rem;
    left: 60%;
    top: -12rem;
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .decanter__face-down {
    right: 52%;
    top: -8rem;
  }
}
.decanter__heading-box {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 5;
}
.decanter__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 3.1rem;
}
@media only screen and (max-width: 60.5em) {
  .decanter__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .decanter__heading {
    text-align: left;
  }
}
.decanter__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .decanter__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .decanter__writeup {
    font-size: 2.2rem;
  }
}
.decanter__image-box {
  flex: 0 0 60rem;
  text-align: right;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .decanter__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .decanter__image-box {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .decanter__image-box {
    flex: 0 1 100%;
    text-align: center;
  }
}
.decanter__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.section-heritage {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 60.5em) {
  .section-heritage {
    margin-bottom: 0rem;
  }
}
.heritage {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 60.5em) {
  .heritage {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.heritage__left {
  flex: 0 1 53%;
  display: flex;
  justify-content: center;
}
.heritage__right {
  flex: 0 1 42%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 60.5em) {
  .heritage__right {
    justify-content: center;
    margin-top: 3rem;
  }
}
.heritage__text {
  flex: 0 0 45rem;
  position: relative;
}
@media only screen and (max-width: 60.5em) {
  .heritage__text {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .heritage__text {
    flex: 0 1 100%;
    padding: 0 1rem;
  }
}
.heritage__face-up {
  position: absolute;
  width: 19.2rem;
  top: -8rem;
  right: -2rem;
  z-index: 2;
}
@media only screen and (max-width: 50em) {
  .heritage__face-up {
    right: 2rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .heritage__face-up {
    top: -9rem;
    transform: rotate(-197deg);
    right: 55%;
  }
}
.heritage__face-down {
  position: absolute;
  width: 19.2rem;
  bottom: -6rem;
  left: -5rem;
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .heritage__face-down {
    left: -1rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .heritage__face-down {
    bottom: 0;
    right: 1rem;
    left: 60%;
    top: -12rem;
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 37.5em) {
  .heritage__face-down {
    left: 52%;
    top: -8rem;
  }
}
.heritage__heading-box {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 5;
}
.heritage__heading {
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 3.1rem;
}
@media only screen and (max-width: 60.5em) {
  .heritage__heading {
    text-align: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .heritage__heading {
    text-align: left;
  }
}
.heritage__writeup {
  font-size: 1.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 75em) {
  .heritage__writeup {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .heritage__writeup {
    font-size: 2.2rem;
  }
}
.heritage__image-box {
  flex: 0 0 60rem;
  text-align: right;
  padding: 1rem;
  position: relative;
}
@media only screen and (max-width: 64.8em) {
  .heritage__image-box {
    flex: 0 0 50rem;
  }
}
@media only screen and (max-width: 60.5em) {
  .heritage__image-box {
    flex: 0 0 70rem;
  }
}
@media only screen and (max-width: 43.9em) {
  .heritage__image-box {
    flex: 0 1 100%;
    text-align: center;
  }
}
.heritage__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}
.about-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--color-grey-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(img/black-man-with-glass@1x.jpg);
  background-size: cover;
  background-position: center;
  margin-top: var(--fixed-nav-height);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi) {
  .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url(img/black-man-with-glass@2x.jpg);
  }
}
@media only screen and (max-width: 69em) {
  .about-hero {
    height: 60rem;
  }
}
@media only screen and (max-width: 45em) {
  .about-hero {
    background-position: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url(img/black-man-with-glass-mobile@1x.jpg);
    background-size: cover;
  }
}
@media only screen and (max-width: 37.5em) and (-webkit-min-device-pixel-ratio: 2),
  only screen and (max-width: 37.5em) and (min-resolution: 192dpi) {
  .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url(img/black-man-with-glass-mobile@2x.jpg);
  }
}
.error__hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--color-grey-light);
  background-size: cover;
  margin-top: var(--fixed-nav-height);
}
@media only screen and (max-width: 69em) {
  .error__hero {
    height: 60rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .error__hero {
    background-size: cover;
  }
}
.error__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.error__cta {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.error__cta:focus {
  outline: 0.4rem solid var(--color-primary);
  border-radius: 2px;
}
.error__text-primary {
  color: var(--color-primary);
  text-align: center;
}
.error__text-primary--main {
  font-family: var(--heading-font);
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin: 5px 1px;
}
.error__text-primary--sub {
  display: block;
  font-weight: 300;
  color: var(--color-black);
  font-family: var(--body-copy-font);
  font-size: 1.8rem;
  max-width: 70rem;
  padding: 0 2rem;
  margin: 0 auto;
  text-transform: uppercase;
}
.sup {
  font-size: 18px;
  position: absolute;
  font-weight: 400;
  top: -5px;
  font-family: var(--body-copy-font);
}
.sup--small {
  font-size: 16px;
  top: -1rem;
}
.scale-p-2 {
  transform: scale(1.2);
}
.no-wrap {
  white-space: nowrap !important;
}
.d-none {
  display: none;
}
.fixed__call {
  position: fixed;
  z-index: 1000;
  bottom: 2rem;
  right: 2rem;
}
.fixed__link {
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  z-index: 1000;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.5rem rgb(0 0 0 / 20%);
}
.fixed__icon {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fixed__link:active {
  transform: scale(0.95);
}
@media only screen and (max-width: 37.5em) {
  .d-none {
    display: block;
  }
}
.product__special {
  background-color: var(--color-primary);
  text-transform: uppercase;
  color: var(--color-white);
  display: inline-block;
  position: absolute;
  font-size: 14px;
  padding: 8px;
  left: -2rem;
  top: -1rem;
  flex-grow: 0;
}
.popup {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 10000000000;
  position: fixed;
  top: 0;
  left: 0;
  font-family: var(--body-copy-font);
}
.popup--active {
  display: block;
}
.popup__background {
  width: 100%;
  height: 100%;
  z-index: 1000000000000;
  position: relative;
  background-color: rgba(0, 0, 0, 0.3);
}
.popup__content {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60rem;
  width: 100%;
  z-index: 150000000000;
  padding: 3rem;
  text-align: center;
  border-radius: 7px;
  outline: 1px solid var(--color-primary);
  outline-offset: -5px;
}
@media only screen and (max-width: 60rem) {
  .popup__content {
    width: 90%;
    max-width: 90%;
  }
}
.popup__heading {
  font-family: var(--heading-font);
  color: var(--color-primary);
  font-size: 3.2rem;
  text-transform: uppercase;
  margin-top: 2rem;
}
.popup__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  height: 3.5rem;
  width: 3.5rem;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2;
  background-color: #ececec;
  line-height: 1;
}
.popup__close:active {
  transform: scale(0.95);
}
.popup__close img {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
  line-height: 1;
}
.popup__text {
  font-size: 1.8rem;
  margin: 1rem 0;
  font-weight: 400;
}
.popup__link {
  padding: 1.5rem 2.5rem;
  text-transform: uppercase;
  font-size: 19px;
  display: inline-block;
  text-decoration: none;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 3px;
  border: 1px solid var(--color-primary);
}
.popup__link:active {
  transform: scale(0.95);
}
.popup__timer {
  font-size: 16px;
  margin-top: 1rem;
}
.text-cross {
  text-decoration: line-through;
}
