/** Shopify CDN: Minification failed

Line 401:2 Unexpected ";"

**/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  max-width: 100vw;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color:#000;
}
ul {
  list-style-type: none;
}
header ul li {
  font-family: var(--sub-heading-font);
}
svg {
  width: 16px;
  height: auto;
  color: #000;
}
body,
span,
button,
a,
p,
label,
input {
  font-family: var(--content-font);
  font-style: var(--content-font-style);
  font-size: var(--content-text-desktop);
  font-weight: var(--content-font-weight);
  line-height: 150%;
}
h1,
h2 {
  font-size: var(--banner-heading-desktop);
  font-family: var(--heading-font);
  font-style: var(--heading-font-style);
  font-weight: var(--heading-font-weight);
  line-height: 150%;
  color: var(--heading-color);
}
h3,
h4,
h5,
h6 {
  font-size: var(--section-heading-desktop);
  font-family: var(--heading-font);
  font-style: var(--heading-font-style);
  font-weight: var(--sub-heading-font-weight);
  line-height: 120%;
  color: var(--heading-color);
  margin-bottom: 2%;
}
a,
p,
span {
  color: var(--text-color);
}
a,
button {
  cursor: pointer;
}
img {
  max-width: 100%;
}
@media (max-width: 524px) {
  body,
  span,
  button,
  a,
  p,
  label,
  input {
    font-size: var(--content-text-desktop);
  }
  h1,
  h2 {
    font-size: var(--banner-heading-mobile);
  }
  h3,
  h4,
  h5,
  h6 {
    font-size: var(--section-heading-mobile);
  }
}
.mobile-banner-placeholder,
.desktop-banner-placeholder,
.card-placeholder {
  width: 100%;
  height: auto;
}
/* //////////////////////Fonts */
.banner-heading {
  font-size: var(--banner-heading-desktop);
  font-family: var(--heading-font);
  font-style: var(--heading-font-style);
  font-weight: var(--heading-font-weight);
  line-height: 150%;
  color: var(--heading-color);
}
.banner-subheading {
  font-size: var(--banner-subheading-desktop);
  font-family: var(--sub-heading-font);
  font-style: var(--sub-heading-font-style);
  font-weight: var(--sub-heading-font-weight);
  line-height: 150%;
  color: var(--sub-heading-color);
}
.banner-text {
  font-family: var(--content-font);
  font-size: var(--banner-text-desktop);
  font-weight: var(--content-font-weight);
  color: var(--text-color);
}
.section-heading {
  font-size: var(--section-heading-desktop);
  font-family: var(--heading-font);
  font-style: var(--heading-font-style);
  line-height: 120%;
  color: var(--heading-color);
  margin-bottom: 2%;
  text-transform:uppercase;
}
.section-text {
  margin-bottom: 40px;
  font-weight: var(--content-font-weight);
  color: var(--text-color);
}
.section-subheading {
  font-size: var(--section-subheading-desktop);
  font-family: var(--sub-heading-font);
  font-weight: var(--sub-heading-font-weight);
  font-style: var(--sub-heading-font-style);
  line-height: 150%;
  color: var(--sub-heading-color);
}
.section-text {
  font-size: var(--section-text-desktop);
  font-family: var(--content-font);
  font-style: var(--content-font-style);
  line-height: 150%;
}
.secondary-button {
  font-size: var(--secondary-button-size-desktop);
  font-family: var(--button-font);
  font-style: var(--button-font-style);
  min-width: 150px;
  display: inline-block;
  text-align: center;
  padding: 8px;
  border-radius: var(--secondary-button-border-radius);
  transition: all 0.3s ease-in;
  font-weight: var(--button-font-weight);
  border: none;
}
.card-title {
  font-style: var(--sub-heading-font-style);
  font-size: var(--product-card-title-desktop);
  font-family: var(--sub-heading-font);
  font-weight: var(--sub-heading-font-weight);
  color: var(--heading-color);
}
.card-price {
  font-family: var(--content-font);
  font-size: var(--product-card-price-desktop);
  font-style: var(--content-font-style);
}
/* //////////////////Layout */
.section-wrap {
  overflow: hidden;
}
/* ////////////////////custom */
.y-center {
  margin-top: auto;
  margin-bottom: auto;
}
.y-top {
  margin-bottom: auto;
}
.y-bottom {
  margin-top: auto;
}
.x-center {
  margin-left: auto;
  margin-right: auto;
}
.x-top {
  margin-bottom: auto;
}
.x-bottom {
  margin-top: auto;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
*:focus-visible {
  outline: none;
}
/* //////////////////compenents */
.primary-button {
  background-color: var(--primary-button-background);
  color: var(--primary-button-color);
  border-radius: var(--secondary-button-border-radius);
  padding: 10px;
  font-size: var(--primary-button-size-desktop);
  cursor: pointer;
  transition: all 0.3s ease-in;
  font-family: var(--button-font);
  font-weight: var(--button-font-weight);
  border: none;
}
.primary-button:hover {
  background-color: transparent;
  border: solid 1px var(--primary-button-background);
  color: var(--primary-button-background);
}
.primary-button-bg-transparent {
  background-color: transparent;
  color: var(--primary-button-background);
  border-radius: var(--secondary-button-border-radius);
  padding: 10px;
  font-size: var(--primary-button-size-desktop);
  cursor: pointer;
  transition: all 0.3s ease-in;
  font-weight: var(--button-font-weight);
  border: solid 1px var(--primary-button-background);
}
.primary-button-bg-transparent:hover {
  background-color: var(--primary-button-background);
  color: var(--primary-button-color);
  border: none;
}
.text-button {
  font-size: var(--secondary-button-size-desktop);
  font-weight: var(--button-font-weight);
  border: none;
  background-color: transparent;
  text-decoration: underline;
}
.primary-button[disabled="true"],
.primary-button-bg-transparent[disabled="true"],
.secondary-button[disabled="true"] {
  background-color: var(--neutral-color);
  cursor: no-drop;
}

.secondary-button-bg {
  background-color: var(--secodary-button-background);
  color: var(--secondary-button-color);
}
.button-no-border {
  border: none;
  background-color: transparent;
}
.secondary-button-transparent {
  background-color: transparent;
  border: solid 1px var(--secodary-button-background);
  color: var(--secondary-button-background);
}
.image-card-button {
  border: solid 1px var(--image-card-button-background);
  color: var(--image-card-button-color);
  font-weight: var(--button-font-weight);
}
@media (max-width: 768px) {
  .mobile-banner-placeholder {
    display: block;
  }
  .desktop-banner-placeholder {
    display: none;
  }
}
@media (min-width: 768px) {
  .mobile-banner-placeholder {
    display: none;
  }
  .desktop-banner-placeholder {
    display: block;
  }
}
@media (min-width: 524px) {
  header ul li {
    font-size: var(--header-font-size-desktop);
  }
}
@media (max-width: 524px) {
  header ul li {
    font-size: var(--header-font-size-mobile);
  }
}
@media (max-width: 1024px) {
  .section-padding {
    padding-left: var(--section-padding-mobile);
    padding-right: var(--section-padding-mobile);
  }
  .section-wrap {
    margin-bottom: var(--section-margin-bottom-mobile);
  }
  .section-corner {
    border-radius: var(--section-border-radius-mobile);
  }
  .component-corner {
    border-radius: var(--components-border-radius-mobile);
  }
  /* //////////////////////Fonts */
  .banner-heading {
    font-size: var(--banner-heading-mobile);
  }
  .banner-subheading {
    font-size: var(--banner-subheading-mobile);
  }
  .banner-text {
    font-size: var(--banner-text-mobile);
  }
  .secondary-button,
  .text-button {
    font-size: var(--secondary-button-size-mobile);
  }
  .primary-button,
  .primary-button-bg-transparent {
    font-size: var(--primary-button-size-mobile);
  }
  .section-heading {
    font-size: var(--section-heading-mobile);
    margin-bottom: 24px;
  }
  .section-text {
    margin-bottom: 8px;
  }
  .section-subheading {
    font-size: var(--section-subheading-mobile);
  }
  .section-text {
    font-size: var(--section-text-mobile);
  }
  .card-title {
    font-size: var(--product-card-title-mobile);
  }
  .card-price {
    font-size: var(--product-card-price-mobile);
  }
}
@media (min-width: 1024px) {
  .section-padding {
    padding-left: var(--section-padding-desktop);
    padding-right: var(--section-padding-desktop);
  }
  .section-wrap {
    margin-bottom: var(--section-margin-bottom-desktop);
  }
  .section-corner {
    border-radius: var(--section-border-radius-desktop);
  }
  .component-corner {
    border-radius: var(--components-border-radius-desktop);
  }
}
@media (min-width: 1920px) {
  .section-width {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 3000px) {
  .section-width {
    max-width: 1920px;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
  }
}
@supports not (inset: 10px) {
  .product-card {
    margin-right: calc(var(--product-card-gap-desktop) / 2);
    margin-bottom: var(--product-card-vertical-gap-desktop);
  }
  @media (max-width: 768px) {
    .product-card {
      margin-right: calc(var(--product-card-gap-mobile) / 2);
      margin-bottom: var(--product-card-vertical-gap-mobile);
    }
  }
} ;

/* @media(max-width:768px){
  .snap_emi_txt_minicart{
    margin:0 auto;
  }
} */

div#shopify-section-template--14572783337527__main {
    height: 100vh;
    width: 100%;
    background-image: url(/cdn/shop/files/sign-up.jpg)!important;
    background-size: auto;
    eat: ;
    background-size: contain;
    background-repeat: round;
}