@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
html,
body {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  position: relative;
  scroll-behavior: smooth;
  margin: 0px auto;
  background-color: #F5F5F5;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}

/* h1, h2, h3, h4, h5, h6, p {
  margin: 0px;
} */
picture {
  display: block;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

label.error {
  display: block;
  width: 100%;
  color: #d6001c;
  font-size: 12px;
  line-height: 16px;
}

.error-text {
  display: block;
  width: 100%;
  color: #d6001c;
  font-size: 14px;
  line-height: 18px;
}

.transition-200ms {
  transition: all 200ms linear;
}

.transition-400ms {
  transition: all 400ms linear;
}

.text-overflow-card {
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  line-height: 1.44;
}

.tof-2-line {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.tof-3-line {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.tof-4-line {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.tof-5-line {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

/***** Common Animation Start *****/
.slideUp, .register-form .form-row {
  opacity: 0;
  animation: slideUp 800ms ease 0s 1 normal forwards;
}

.centerZoom {
  opacity: 0;
  animation: centerZoom 800ms ease 0s 1 normal forwards;
}

.ad-100ms {
  animation-delay: 0.1s;
}

.ad-200ms {
  animation-delay: 0.2s;
}

.ad-300ms, .register-form .form-row:nth-child(1) {
  animation-delay: 0.3s;
}

.ad-400ms, .register-form .form-row:nth-child(2) {
  animation-delay: 0.4s;
}

.ad-500ms, .register-form .form-row:nth-child(3) {
  animation-delay: 0.5s;
}

.ad-600ms, .register-form .form-row:nth-child(4) {
  animation-delay: 0.6s;
}

.ad-700ms, .register-form .form-row:nth-child(5) {
  animation-delay: 0.7s;
}

.ad-800ms, .register-form .form-row:nth-child(6) {
  animation-delay: 0.8s;
}

.ad-900ms, .register-form .form-row:nth-child(7) {
  animation-delay: 0.9s;
}

.ad-1s, .register-form .form-row:nth-child(8) {
  animation-delay: 1s;
}

.ad-1-1s, .register-form .form-row:nth-child(9) {
  animation-delay: 1.1s;
}

.ad-1-2s, .register-form .form-row:nth-child(10) {
  animation-delay: 1.2s;
}

.ad-1-3s {
  animation-delay: 1.3s;
}

/***** Common Animation End *****/
/***** text color Start *****/
.colorPrime {
  color: #d6001c;
}

/***** text color end *****/
/***** Custom Checkbox Start *****/
.custom-checkbox {
  padding-left: 0px;
}
.custom-checkbox [type=checkbox]:checked,
.custom-checkbox [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.custom-checkbox [type=checkbox]:checked + label,
.custom-checkbox [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
.custom-checkbox [type=checkbox]:checked + label:before,
.custom-checkbox [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 3px;
  border: 1px solid #7B7B7B;
}
.custom-checkbox [type=checkbox]:checked + label:after,
.custom-checkbox [type=checkbox]:not(:checked) + label:after {
  /* content: '';
  width: 12px;
  height: 12px;
  background: $colorSecondary;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease; */
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  width: 7px;
  height: 11px;
  border-color: #1D1D1B;
}
.custom-checkbox [type=checkbox]:not(:checked) + label:after {
  transform: scale(0) translate(0, 0) rotate(45deg);
}
.custom-checkbox [type=checkbox]:checked + label:after {
  transform: scale(1) translate(0, -8px) rotate(45deg);
}

/***** Custom Checkbox End *****/
/***** Custom Radio Start *****/
.custom-radio {
  padding-left: 0;
}
.custom-radio [type=radio]:checked,
.custom-radio [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.custom-radio [type=radio]:checked + label,
.custom-radio [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}
.custom-radio [type=radio]:checked + label:before,
.custom-radio [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #c5a057;
  border-radius: 100%;
  background: #ffffff;
}
.custom-radio [type=radio]:checked + label:after,
.custom-radio [type=radio]:not(:checked) + label:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  width: 7px;
  height: 11px;
  border-color: #1D1D1B;
}
.custom-radio [type=radio]:not(:checked) + label:after {
  transform: scale(0) translate(0, 0) rotate(45deg);
}
.custom-radio [type=radio]:checked + label:after {
  transform: scale(1) translate(0, -8px) rotate(45deg);
}

/***** Custom Radio End *****/
/***** Input Start *****/
.form-label {
  font-size: 16px;
  line-height: 20px;
}

.form-control {
  border-radius: 2px;
  padding: 10px 16px;
  color: #7B7B7B;
  border-color: #7B7B7B;
}
.form-control:focus, .form-control:hover, .form-control:focus-visible {
  color: #7B7B7B;
  border-color: #000000;
}
.form-control:focus::-moz-placeholder, .form-control:hover::-moz-placeholder, .form-control:focus-visible::-moz-placeholder {
  color: #7B7B7B;
}
.form-control:focus::placeholder, .form-control:hover::placeholder, .form-control:focus-visible::placeholder {
  color: #7B7B7B;
}
.form-control::-moz-placeholder {
  color: #7B7B7B;
}
.form-control::placeholder {
  color: #7B7B7B;
}

.form-select {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: #7B7B7B;
  border-radius: 2px;
  padding: 8px 16px;
  color: #7B7B7B;
}

.select2.select2-container--default .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: #7B7B7B;
  border-radius: 2px;
  padding: 8px 16px;
  color: #7B7B7B;
  height: auto;
}
.select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
}
.select2.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  top: 50%;
}

.form-control:focus, .form-control:hover, .form-control:focus-visible,
.form-select:focus,
.form-select:hover,
.form-select:focus-visible,
.form-check-input:focus,
.form-check-input:hover,
.form-check-input:focus-visible {
  box-shadow: none;
  outline: none;
  color: #7B7B7B;
  border-color: #000000;
  /* & ~ .input-group-text {
    border-color: $colorBlack;
  } */
}

/***** Input End *****/
/***** Common Button Start *****/
.border-btn-wrapper {
  position: relative;
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 60px 0px 10px;
  display: inline-block;
}
.border-btn-wrapper::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 2px dashed #ffffff;
  border-radius: 16px;
  background-color: transparent;
  transform: rotate(5deg);
  pointer-events: none;
}

.btn {
  padding: 10px 25px;
  border-radius: 16px;
  position: relative;
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
.btn .btn-text {
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
}
.btn:hover, .btn:active, .btn:focus, .btn:focus-visible {
  box-shadow: none;
  outline: none;
}
.btn.glass, .btn.send, .btn.verify {
  position: relative;
}
.btn.glass::after, .btn.send::after, .btn.verify::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
}

.btn-primary {
  color: #ffffff;
  background-color: #1D1D1B;
  border-color: #1D1D1B;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus-visible {
  border-color: #1D1D1B;
  background-color: #1D1D1B;
}
.btn-primary:first-child:active {
  border-color: #1D1D1B;
  background-color: #1D1D1B;
}

.btn-secondary {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
  border-radius: 2px;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus-visible, .btn-secondary:focus {
  border-color: #000000;
  background-color: #ffffff;
  color: #000000;
}
.btn-secondary:first-child:active {
  border-color: #000000;
  background-color: #ffffff;
  color: #000000;
}

/***** Common Button End *****/
/***** Main Wrapper Start *****/
.main-wrapper {
  position: relative;
  background: none;
  padding: 25px 0px;
}

.box-wrapper {
  position: relative;
  padding: 0px 0px 150px;
  z-index: 2;
}
.box-wrapper .content-wrapper {
  margin: 0px auto;
  overflow: hidden;
}
.box-wrapper .content-wrapper .main-heading-wrapper {
  position: relative;
  margin: 20px 0px;
  padding: 10px 0px;
}
.box-wrapper .content-wrapper .main-heading-wrapper::before, .box-wrapper .content-wrapper .main-heading-wrapper::after {
  position: absolute;
  content: "";
  height: 2px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50%, rgba(255, 255, 255, 0) 100%);
}
.box-wrapper .content-wrapper .main-heading-wrapper::before {
  top: -8px;
}
.box-wrapper .content-wrapper .main-heading-wrapper::after {
  bottom: -8px;
}
.box-wrapper .content-wrapper .coupon-code-wrapper {
  cursor: pointer;
}
.box-wrapper .content-wrapper .coupon-code-wrapper .coupon-code-details {
  background-color: #ffffff;
  border-radius: 8px;
  margin-top: 10px;
  padding: 5px;
  color: #000000;
}
.box-wrapper .content-wrapper .coupon-code-wrapper .coupon-code-details .code {
  font-size: 16px;
  line-height: 19px;
}
.box-wrapper .content-wrapper .coupon-code-wrapper .success-msg {
  display: none;
}
.box-wrapper .content-wrapper .main-heading {
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 50px;
  color: #ffffff;
}
.box-wrapper .content-wrapper .heading {
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 42px;
  color: #ffffff;
}
.box-wrapper .content-wrapper .sub-heading {
  font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 38px;
  color: #ffffff;
}

@media only screen and (min-width: 992px) {
  .box-wrapper {
    margin: 0 auto;
    padding-bottom: 0px;
  }
}
/***** Main Wrapper End *****/
/***** logo Wrapper Start *****/
.logo-wrapper {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.logo-wrapper .divider {
  position: relative;
  width: 1px;
  height: 50px;
  background-color: #1D1D1B;
  margin: 0px 15px;
}

/***** logo Wrapper End *****/
/***** Form Wrapper Start *****/
.register-form-wrapper {
  background-color: #ffffff;
  padding: 30px;
}

.register-form .custom-checkbox-row {
  font-size: 14px;
  line-height: 18px;
}
.register-form .input-group .input-group-text {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  background-color: transparent;
  border-color: #7B7B7B;
  padding-right: 0px;
  border-right: 0px;
}
.register-form .input-group .input-group-text.calc-box {
  background-color: #000000;
}
.register-form .input-group .input-group-text .material-symbols-outlined {
  color: #7B7B7B;
}
.register-form .input-group .form-control, .register-form .input-group .form-select {
  border-top-right-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
  border-left: 0px;
}

/***** Form Wrapper End *****/
/***** Discover Wrapper Start *****/
.discover-wrapper {
  background-color: #ffffff;
}
.discover-wrapper .banner {
  margin-top: -120px;
  position: relative;
}
.discover-wrapper .disclaimer-note {
  position: absolute;
  bottom: 0px;
  color: #ffffff;
  left: 0px;
  right: 0px;
  font-size: 12px;
  line-height: 16px;
}
.discover-wrapper .disclaimer-note .bullet-points-list {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
}
.discover-wrapper .disclaimer-note .bullet-points-list::before {
  content: "";
  position: absolute;
  background-color: #000;
  opacity: 0.7;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0;
  z-index: -1;
}
.discover-wrapper .food-details-wrapper .title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.discover-wrapper .food-details-wrapper .sub-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
}
.discover-wrapper .food-details-wrapper .sub-title.divider {
  border-bottom: 2px solid #3B3B3B;
  padding: 15px 0px;
  margin-bottom: 10px;
}
.discover-wrapper .food-details-wrapper .sub-title span {
  font-size: 12px;
  line-height: 22px;
  font-weight: 300;
}
.discover-wrapper .food-details-wrapper .right-wrapper {
  text-align: center;
}
.discover-wrapper .food-details-wrapper .food-process-items-row {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
}
.discover-wrapper .food-details-wrapper .food-process-items-row .item picture {
  display: block;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
  .discover-wrapper .banner {
    margin-top: 0px;
  }
  .discover-wrapper .food-details-wrapper {
    display: flex;
    align-items: center;
    width: 85%;
    margin: 0px auto;
    gap: 50px;
    padding: 20px 0px;
  }
  .discover-wrapper .food-details-wrapper .title {
    font-size: 20px;
    line-height: 32px;
  }
  .discover-wrapper .food-details-wrapper .sub-title {
    font-size: 18px;
    line-height: 30px;
  }
  .discover-wrapper .food-details-wrapper .sub-title.divider {
    border-bottom: 2px solid #3B3B3B;
    padding: 25px 0px;
    margin-bottom: 20px;
  }
  .discover-wrapper .food-details-wrapper .sub-title span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
  }
  .discover-wrapper .food-details-wrapper .left-wrapper {
    flex-basis: 65%;
  }
  .discover-wrapper .food-details-wrapper .right-wrapper {
    flex-basis: 35%;
    text-align: center;
  }
  .discover-wrapper .food-details-wrapper .food-process-items-row {
    flex-direction: column;
  }
}
/***** Discover Wrapper End *****/
/***** Common Animation Key Frame Start *****/
@keyframes slideUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes centerZoom {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/***** Common Animation Key Frame End *****//*# sourceMappingURL=style.css.map */