@font-face {
  font-family: Brewed-Black;
  src: url("https://mxco-production-tether.s3.us-west-2.amazonaws.com/4214/Brewed-Black.otf");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Brewed-Bold;
  src: url("https://mxco-production-tether.s3.us-west-2.amazonaws.com/4216/Brewed-Bold.otf");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Brewed-Regular;
  src: url("https://mxco-production-tether.s3.us-west-2.amazonaws.com/4215/Brewed-Regular.ttf");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
:root {
  --primary-brown: #4E3B31;
  --secondary-brown: #a36f44;
  --primary-blue: #002156;
  --primary-red: #c8202f;
}

* {
  margin: 0;
  padding: 0;
  font-family: Brewed-Regular, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Brewed-Black, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  color: var(--primary-brown);
}

p,
li {
  font-size: 1.125rem;
}

.bold-text {
  font-family: Brewed-Bold, sans-serif;
}

.black-text {
  font-family: Brewed-Black, sans-serif;
}

#page-anchor {
  position: relative;
  top: -81px;
  /* Adjust based on your navbar height */
}

.button {
  padding: 0.5rem 5rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 3rem;
  background-color: var(--primary-red);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: rgb(156.0344827586, 24.9655172414, 36.6681034483);
}

.button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.input-container {
  position: relative;
}

.styled-input {
  font-family: "Brewed-Bold", sans-serif;
  font-size: 1.15rem;
  border: none;
  border-bottom: 2px solid var(--primary-brown);
  border-radius: 0;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  background-color: white;
  color: var(--primary-brown);
  width: 100%;
}

.styled-input:focus {
  border-bottom: 2px solid var(--primary-brown);
}

.styled-input:focus-visible {
  outline: solid 2px var(--primary-red);
  border-radius: 1px;
  outline-offset: 4px;
}

.styled-input-label {
  color: var(--primary-brown);
  position: absolute;
  top: 33%;
  left: 1rem;
  font-size: 1.15rem;
  transition: all 250ms;
  font-family: "Brewed-Bold", sans-serif;
  pointer-events: none;
}

.input-position-animate {
  top: 0%;
  font-size: 12px;
}

/* Style the checkmark/indicator */
.label-container .checkmark:after {
  left: 8px;
  top: 2px;
  width: 5px;
  height: 13px;
  border: solid var(--primary-red);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Show the checkmark when checked */
.label-container input:checked ~ .checkmark:after {
  display: block;
}

/* When the checkbox is checked, add a blue background */
.label-container input:checked ~ .checkmark {
  background-color: white;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Hide the browser's default checkbox */
.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 5px;
  background-color: white;
  border: 2px solid var(--primary-brown);
}

/* Customize the label (the container) */
.label-container {
  font-weight: 600;
  font-size: 16px !important;
  color: var(--primary-brown);
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.page-header {
  font-family: "Brewed-Black", sans-serif;
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.error-message {
  color: var(--primary-red);
  font-family: "Brewed-Bold", sans-serif;
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

#loading-spinner {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(128, 128, 128, 0.397);
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  z-index: 1001;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  cursor: pointer;
  display: none;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  color: var(--primary-brown);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  border: 2px solid var(--primary-brown);
  background-color: white;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background-color: var(--primary-brown);
  color: white;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  border-bottom: 2px solid var(--primary-brown);
  border-left: 2px solid var(--primary-brown);
  border-right: 2px solid var(--primary-brown);
  border-radius: 0.25rem;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  padding: 1rem;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
}

.nav-item {
  text-decoration: none;
  color: var(--primary-brown);
  font-family: "Brewed-Black", sans-serif;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-item:hover {
  color: var(--secondary-brown);
}

.drawer-item {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0.2em 0;
  width: -moz-fit-content;
  width: fit-content;
}

.drawer-item::after {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-brown);
  transition: opacity 300ms, transform 300ms;
}

.drawer-item:hover {
  color: var(--primary-brown);
}

.drawer-item:hover::after {
  transform: translate3d(0, 0, 0);
}

.drawer-item:hover::after,
.drawer-item:focus::after {
  opacity: 1;
}

.navbar-mobile-menu {
  display: none;
  position: relative;
  height: 100vh;
  width: 100%;
  transform: translateY(100vh);
  transition-property: display, transform;
  transition-duration: 0.3s;
  transition-behavior: allow-discrete;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}

.navbar-mobile-menu.open {
  display: block;
  transform: translateY(0);
  z-index: 100;
}
@starting-style {
  .navbar-mobile-menu.open {
    transform: translateY(100vh);
  }
}

.navbar-mobile-menu-list {
  display: grid;
  list-style: none;
  padding: 0;
  padding: 1.5rem;
  gap: 1.5rem;
}

.navbar-mobile-menu-list > li {
  font-size: 1.125rem;
}

.navbar-mobile-menu-inner {
  pointer-events: all;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 80vh;
  height: 100%;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  padding-bottom: 51px;
}

.navbar-mobile-menu-header {
  display: flex;
  border-bottom: 1px solid #E0DBDB;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}

.navbar-mobile-menu-items {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-logo-mobile {
  height: 33px;
  width: auto;
  margin: auto;
  display: block;
}

.navbar-menu-logo {
  height: 33px;
  width: auto;
  display: block;
  margin: auto;
}

.navbar-mobile-menu-close-button {
  background: none;
  border: none;
  color: var(--primary-brown);
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 1rem;
}

@media only screen and (min-width: 700px) {
  .navbar-logo-mobile {
    height: 50px;
  }
  .navbar-mobile-menu {
    width: 412px;
    transform: translate3d(-100vw, 0, 0);
    top: 0;
  }
  .navbar-mobile-menu.open {
    transform: translate3d(0, 0, 0);
  }
  @starting-style {
    .navbar-mobile-menu.open {
      transform: translate3d(-100vw, 0, 0);
    }
  }
  .navbar-mobile-menu-inner {
    max-height: 100vh;
    height: 100%;
    top: -81px;
    border-bottom-right-radius: 0.25rem;
  }
  .navbar-mobile-menu-header {
    border-bottom: none;
    padding: 2.2rem 2.7rem;
    margin: 0;
  }
  .navbar-mobile-menu-close-button {
    margin-top: -0.85rem;
    margin-right: 1.5rem;
  }
  .navbar-menu-logo {
    margin: 0;
  }
  .navbar-mobile-menu-list {
    padding-left: 5rem;
    padding-top: 5.5rem;
    padding-right: 5rem;
  }
  .nav-item {
    font-family: "Brewed-black", sans-serif;
    font-size: 1rem;
  }
  .navbar-mobile-menu-list > li {
    font-family: "Brewed-black", sans-serif;
    font-size: 1rem;
  }
}
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(63, 32, 33, 0.5);
  z-index: 10;
}

.nav-backdrop.open {
  display: block;
}

.navbar-mobile-menu-close-container {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: end;
}

@media (max-width: 700px) {
  .navbar-desktop {
    display: none;
  }
}
.navbar-desktop {
  height: 81px;
  margin: 0;
  background-color: white;
  display: flex;
  box-shadow: 2px 3px 17px #6a6a6a;
}

.navbar-mobile {
  height: 81px;
  margin: 0;
  background-color: white;
  display: none;
  box-shadow: 2px 3px 17px #6a6a6a;
}

.navbar-mobile-logo-container {
  margin: auto;
  width: 100vw;
  height: 81px;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 1150px) {
  .navbar-mobile {
    display: flex;
  }
  .navbar-desktop {
    display: none;
  }
}
.header-desktop {
  padding-top: 81px;
  display: block;
}

.header-mobile {
  padding-top: 51px;
  display: none;
}

@media only screen and (max-width: 700px) {
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
  }
  .navbar {
    height: 51px;
  }
  .navbar-mobile {
    height: 51px;
  }
  .navbar-mobile-logo-container {
    height: 51px;
  }
}
.hamburger-path {
  stroke: var(--primary-brown);
}

.navbar-inner {
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 2rem;
}

.navbar-logo {
  position: absolute;
  pointer-events: none;
}

.hamburger {
  background-color: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.navbar-desktop-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-desktop-left-items {
  display: flex;
  align-items: center;
  gap: 1rem 2.5rem;
}

.navbar-desktop-left-items > span {
  font-family: "Brewed-Black", sans-serif;
  font-size: 1rem;
  color: var(--primary-brown);
}

.navbar-desktop-container {
  margin: auto;
  display: grid;
  grid-template-columns: auto minmax(auto, 1500px) auto;
  width: 100%;
  font-family: "Brewed-Black", sans-serif;
}

.navbar-desktop-inner {
  display: flex;
  margin-left: 40px;
  grid-column: 2;
}

.navbar-desktop-right-items {
  margin-right: 2.2rem;
}

.navbar-desktop-right-items > span {
  font-family: "Brewed-Black", sans-serif;
  font-size: 1rem;
  color: var(--primary-brown);
}

.language-toggle {
  cursor: pointer;
}

.social-media {
  flex-wrap: wrap;
  display: flex;
  color: #948283;
  gap: 0.75rem;
  margin: 2rem;
  list-style: none;
}

.social-media--sm svg {
  width: 1.5rem;
  height: 1.5rem;
}

.tap-area {
  position: relative;
}

.social-media--sm svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media only screen and (max-width: 700px) {
  .social-media {
    justify-content: center;
  }
}
.icon {
  display: block;
}

.dialog {
  width: 80%;
  max-width: 800px;
  padding: 20px;
  border: none;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: auto;
}

dialog {
  display: none;
  animation: vanish 1s;
  border-radius: 1rem;
}

@keyframes vanish {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
dialog[open] {
  display: block;
  animation: appear 0.5s;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
dialog[open]::backdrop {
  animation: backdrop-fade 0.15s forwards;
}

dialog[close]::backdrop {
  animation: backdrop-fade 0.15s backwards;
}

dialog::backdrop {
  background-color: rgba(63, 32, 33, 0.5019607843);
}

@keyframes backdrop-fade {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(63, 32, 33, 0.5019607843);
  }
}
.footer-links {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
  justify-content: space-between;
}

.footer-rules {
  display: flex;
  gap: 1rem;
}

@media only screen and (max-width: 700px) {
  .footer-links {
    flex-direction: column;
  }
  .footer-rules {
    flex-direction: column;
    gap: 1rem;
    margin: auto;
    text-align: center;
  }
}
.icon-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.carousel {
  display: none !important;
}

.headline {
  font-family: "Brewed-Regular";
  color: var(--primary-red);
  margin: auto;
  text-align: center;
  max-width: 710px;
  font-size: 2.7rem;
}

.headline-sup {
  font-size: 1.5rem;
  font-family: "Brewed-Regular";
}

.headline-dagger {
  font-size: 1.5rem;
}

@media only screen and (max-width: 500px) {
  .headline {
    font-size: 2.2rem;
    margin: 1rem;
  }
  .headline-sup {
    font-size: 1.2rem;
  }
  .headline-dagger {
    font-size: 1.2rem;
  }
}
.container {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: min(1260px, 90%);
}

.icon-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
  width: 100%;
}

.icon-image {
  margin: auto;
  margin-top: 0rem;
  margin-bottom: 1rem;
  width: 250px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  width: 350px;
  margin: auto;
  margin-top: 0rem;
}

.icon-header {
  color: white;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.icon-text {
  color: white;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .icon-item {
    width: 250px;
  }
}
@media only screen and (max-width: 900px) {
  .icon-wrapper {
    display: none;
  }
  .carousel {
    display: block !important;
    padding-bottom: 1rem;
  }
  .icon-item {
    width: 100%;
  }
  .icon-image {
    width: 200px;
  }
  .icon-header {
    font-size: 2rem;
  }
}
.product {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
}

.entry {
  text-decoration: underline;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */