/** Shopify CDN: Minification failed

Line 74:15 Unexpected "{"
Line 80:21 Unexpected "{"

**/
/* Hero Section */
.banner .banner__box .banner__heading {
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.25;
}

.banner .banner__box .banner__text {
    font-size: 2.5rem;
}

.banner .button {
    font-size: 2rem;
    color: white;
}

.banner .button path {
    color: white;
    fill: white;
}

.banner .button:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    position: static;
    border: none;
    box-shadow: none !important;
    outline: none;
    transition: margin .5s;
}

@media screen and (max-width: 720px) {
    .banner {
        min-height: 600px;
    }
}

/* General Styles */
body {
    font-size: 16px;
}

.button {
    border-radius: none;
    text-transform: uppercase;
    padding: 2rem 3rem;
}

.button:after,
.button:before {
    display: none;
}

.button:focus, 
.button:hover, {
    border: none;
    outline: none;
}

.button:focus:after, 
.button:hover:after, {
    margin-left: 15px;
}


/* header */
.header  {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;    
}

.header .list-menu a {
    font-size: 1.65rem;
}

.announcement-bar-section .utility-bar .announcement-bar__message{
    font-size: 1.25rem;
    text-transform: uppercase;
}   

/* Desktop fake search bar trigger */
.header-search-trigger-desktop {
  display: none;
}

@media screen and (min-width: 990px) {
  .header__search {
    display: flex;
    align-items: center;
  }

  .header-search-trigger-mobile {
    display: none !important;
  }

  .header-search-trigger-desktop {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 24rem;
    width: 24rem;
  }

  .header-search-trigger-desktop__label {
    font-size: 1.1rem;
    line-height: 1;
    color: rgba(var(--color-foreground), 0.65);
    text-align: left;
    display: none !important;
  }

  .header-search-trigger-desktop__field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.4rem;
    padding: 0 1.4rem;
    border: 0.1rem solid rgba(var(--color-foreground), 0.25);
    border-radius: 0.6rem;
    background: rgb(var(--color-background));
  }

  .header-search-trigger-desktop__placeholder {
    font-size: 1.6rem;
    line-height: 1.2;
    color: rgb(var(--color-foreground));
  }

  .header-search-trigger-desktop__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.2rem;
    color: rgb(var(--color-foreground));
  }

  .header__icon--search.modal__toggle {
    width: auto;
    height: auto;
    text-decoration: none;
  }

  .header__icon--search.modal__toggle > span {
    display: flex;
    align-items: center;
  }

  .header__search .caption-large,
  .header__search small {
    display: none !important;
  }
}

@media screen and (max-width: 989px) {
  .header-search-trigger-mobile {
    display: inline-flex;
    align-items: center;
  }

  .header-search-trigger-desktop {
    display: none !important;
  }
}