@font-face {
  font-family: "Boing";
  src: url("fonts/Boing-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Boing";
  src: url("fonts/Boing-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Boing";
  src: url("fonts/Boing-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Boing";
  src: url("fonts/Boing-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Boing";
  src: url("fonts/Boing-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Boing", sans-serif;
  font-weight: 300;
  margin: 0;
}

a,
button {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-decoration: none;
}
a:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

figure {
  margin: 0;
}
figure img {
  display: block;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

h2 {
  font-size: 48px;
  font-weight: normal;
}
h2 strong {
  font-weight: 500;
}

section {
  overflow: hidden;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  max-width: 1242px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.btn {
  background: #c44536;
  color: #fff;
  display: inline-block;
  border-radius: 12px;
  font-weight: 500;
  padding: 10px 14px;
  font-size: 14px;
}
@media only screen and (min-width: 480px) {
  .btn {
    padding: 14px 14px;
  }
}
@media only screen and (min-width: 576px) {
  .btn {
    padding: 12px 18px;
  }
}

.btn-lg {
  background: #c44536;
  color: #fff;
  display: inline-block;
  border-radius: 12px;
  font-weight: 500;
  padding: 15px;
  font-size: 14px;
}
@media only screen and (min-width: 480px) {
  .btn-lg {
    padding: 13px;
  }
}
@media only screen and (min-width: 576px) {
  .btn-lg {
    padding: 22px 18px;
  }
}

.btn-white-lg {
  background: #fff;
  color: #2e3723;
  display: inline-block;
  border-radius: 12px;
  font-weight: 500;
  /* padding: 10px 14px;
  font-size: 18px; */
  padding: 16px;
  font-size: 24px;
}
@media only screen and (min-width: 480px) {
  .btn-white-lg {
    padding: 14px 14px;
  }
}
@media only screen and (min-width: 576px) {
  .btn-white-lg {
    padding: 22px 55px;
  }
}

.btn-green-lg {
  background: #34d366;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  font-weight: 500;
  padding: 10px 30px;
  font-size: 18px;
}
.btn-green-lg img {
  margin-right: 10px;
}
@media only screen and (min-width: 480px) {
  .btn-green-lg {
    padding: 14px 30px;
  }
}
@media only screen and (min-width: 576px) {
  .btn-green-lg {
    padding: 18px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .btn-green-lg {
    padding: 18px 70px;
  }
}
@media only screen and (min-width: 992px) {
  .btn-green-lg {
    padding: 18px 100px;
  }
}

.btn-lg:hover {
  opacity: 0.8;
}

.btn-white-lg:hover {
  opacity: 0.9;
}

.btn-green-lg:hover {
  opacity: 0.8;
}

.btn:hover {
  opacity: 0.8;
}

header {
  padding: 20px 0;
  position: relative;
}
header .screen {
  position: fixed;
  z-index: 999;
  background-color: tomato;
  color: #fff;
  padding: 4px;
}
header .screen .xs {
  display: none;
}
@media only screen and (min-width: 480px) {
  header .screen .xs {
    display: block;
  }
}
header .screen .sm {
  display: none;
}
@media only screen and (min-width: 576px) {
  header .screen .sm {
    display: block;
  }
}
header .screen .md {
  display: none;
}
@media only screen and (min-width: 768px) {
  header .screen .md {
    display: block;
  }
}
header .screen .lg {
  display: none;
}
@media only screen and (min-width: 992px) {
  header .screen .lg {
    display: block;
  }
}
header .screen .xl {
  display: none;
}
@media only screen and (min-width: 1200px) {
  header .screen .xl {
    display: block;
  }
}
header .screen .xxl {
  display: none;
}
@media only screen and (min-width: 1600px) {
  header .screen .xxl {
    display: block;
  }
}

header .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .row .header-logo img {
  width: 120px;
  height: auto;
}
@media only screen and (min-width: 480px) {
  header .row .header-logo img {
    width: 150px;
  }
}
@media only screen and (min-width: 576px) {
  header .row .header-logo img {
    width: 195px;
  }
}

.offer-bar {
  padding: 30px 15px;
  background: #bb6c24;
  color: #fff;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -20px;
}
@media only screen and (min-width: 768px) {
  .offer-bar {
    border-radius: 50px;
    padding: 16px 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
}
.offer-bar strong {
  font-weight: 500;
}
.offer-bar button {
  position: absolute;
  background: none;
  color: #fff;
  border: 0;
  top: 5px;
  right: 5px;
}
@media only screen and (min-width: 768px) {
  .offer-bar button {
    position: relative;
    top: auto;
    right: auto;
  }
}
.offer-bar p {
  margin: 0;
}
.offer-bar img {
  width: 20px;
  height: auto;
}

.offer-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: row;
}
/* @media only screen and (min-width: 576px) {
  .offer-code {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
    flex-direction: row;
  }
} */
@media only screen and (max-width: 768px) {
  .offer-code {
    margin-bottom: 10px;
  }
}
.offer-code p {
  font-size: 15px;
}
.offer-code a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* margin-top: -10px;
  margin-bottom: 10px; */
}
@media only screen and (min-width: 576px) {
  .offer-code a {
    margin: 0;
  }
}
.offer-code a img {
  width: 22px;
  height: auto;
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .countdown {
    margin-left: auto;
  }
}
.countdown .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.countdown .time .time-seprator {
  margin-top: -10px;
}
.countdown span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
}
.countdown strong {
  display: block;
  font-size: 20px;
}
.countdown button img {
  width: 25px;
  height: auto;
}

footer {
  background: #283618;
  color: #fff;
  padding: 50px 0 20px 0;
  border-radius: 40px 40px 0 0;
  text-align: center;
  position: relative;
}
footer .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) {
  footer .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
footer .row .ftr-center {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  border-top: 1px solid #4f5c40;
  padding-top: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  footer .row .ftr-center {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border: none;
    padding: 0;
    margin: 0;
  }
}
footer .row .ftr-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (min-width: 992px) {
  footer .row .ftr-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
footer .row .ftr-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 992px) {
  footer .row .ftr-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
footer .payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer a {
  color: #fff;
}
footer p {
  font-size: 14px;
}

.nav-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
}

.nav-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.spotlight {
  padding: 30px 0 30px 0;
}
@media only screen and (min-width: 480px) {
  .spotlight {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 576px) {
  .spotlight {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 992px) {
  .spotlight {
    padding: 80px 0;
  }
}
.spotlight .row {
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 1600px) {
  .spotlight .row .spotlight-left {
    margin-left: 30px;
  }
}
.spotlight .row .spotlight-right {
  position: relative;
  margin: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1600px) {
  .spotlight .row .spotlight-right {
    margin-right: -40px;
  }
}
@media only screen and (min-width: 768px) {
  .spotlight .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .spotlight .row {
    gap: 70px;
  }
}
.spotlight .row .spotlight-button-wrapper {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .spotlight .row .spotlight-button-wrapper {
    text-align: left;
    display: inline-block;
  }
}
.spotlight .row .spotlight-button-wrapper p {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .spotlight .row .spotlight-button-wrapper p {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .spotlight .row .spotlight-button-wrapper p {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .spotlight .row .spotlight-button-wrapper p {
    margin-bottom: 15px;
  }
}
.spotlight .row .review-wrapper-below-md {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .spotlight .row .review-wrapper-below-md {
    display: none;
  }
}
.spotlight .row .made-by-below-md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .spotlight .row .made-by-below-md {
    display: none;
  }
}
.spotlight .row .made-by-below-md span {
  font-size: 12px;
  font-weight: 600;
  color: #283617;
}
.spotlight .row .made-by-below-md p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #283617;
}
.spotlight .row .made-by-below-md img {
  width: 50px;
  height: auto;
  margin: 0 5px;
}
.spotlight .row .made-by-above-md {
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9;
}
@media only screen and (min-width: 768px) {
  .spotlight .row .made-by-above-md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.spotlight .row .made-by-above-md span {
  font-size: 13px;
  font-weight: 700;
  color: #283617;
}
.spotlight .row .made-by-above-md p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #283617;
}
.spotlight .row .made-by-above-md img {
  width: 50px;
  height: auto;
  margin: 0 5px;
}
.spotlight .row .review-wrapper {
  text-align: center;
  display: none;
}
@media only screen and (min-width: 768px) {
  .spotlight .row .review-wrapper {
    display: block;
  }
}
.spotlight h2 {
  font-size: 36px;
  font-weight: normal;
  color: #283617;
  margin: 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 480px) {
  .spotlight h2 {
    font-size: 46px;
  }
}
@media only screen and (min-width: 576px) {
  .spotlight h2 {
    font-size: 56px;
  }
}
@media only screen and (min-width: 768px) {
  .spotlight h2 {
    margin-top: 10px;
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) {
  .spotlight h2 {
    font-size: 62px;
  }
}
.spotlight h2 strong {
  font-weight: 500;
  display: block;
}
.spotlight p {
  font-size: 16px;
  margin: 0;
  margin-bottom: 15px;
  line-height: 1.5;
}
@media only screen and (min-width: 480px) {
  .spotlight p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) {
  .spotlight p {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .spotlight p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .spotlight p {
    font-size: 18px;
  }
}
.spotlight figure {
  position: relative;
}
.spotlight figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 20px 20px 0 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  .spotlight figure:after {
    display: block;
  }
}
.spotlight figure img {
  width: 100%;
  aspect-ratio: 900/600;
  max-width: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
  -webkit-box-shadow: -20px 20px 0 #f9eceb;
          box-shadow: -20px 20px 0 #f9eceb;
}
@media only screen and (min-width: 768px) {
  .spotlight figure img {
    max-width: 450px;
  }
}
@media only screen and (min-width: 992px) {
  .spotlight figure img {
    -webkit-box-shadow: -35px 40px 0 #f9eceb;
            box-shadow: -35px 40px 0 #f9eceb;
    max-width: 640px;
  }
}
@media only screen and (min-width: 1200px) {
  .spotlight figure img {
    max-width: 885px;
  }
}

.section-why {
  text-align: center;
  background: #f9eceb;
  padding: 30px 0;
}
@media only screen and (min-width: 480px) {
  .section-why {
    padding: 50px 0;
  }
}
.section-why .container {
  max-width: 985px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr 20px 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.section-why .container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.section-why .container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.section-why .container > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.section-why .container > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media only screen and (min-width: 576px) {
  .section-why .container {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: none;
    grid-template-rows: none;
  }
  .section-why .container > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .section-why .container > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .section-why .container > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .section-why .container > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
}
.section-why h2 {
  margin: 0 0 38px;
  color: #c44536;
  font-size: 26px;
}
@media only screen and (min-width: 480px) {
  .section-why h2 {
    margin: 0 0 48px;
    font-size: 32px;
  }
}
.section-why h3 {
  font-size: 18px;
  color: #c44536;
  font-weight: 500;
}
@media only screen and (min-width: 480px) {
  .section-why h3 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .section-why h3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .section-why h3 {
    font-size: 20px;
  }
}
.section-why p {
  color: #1f1f1f;
  font-size: 14px;
}
@media only screen and (min-width: 992px) {
  .section-why .icon {
    margin-bottom: 55px;
  }
}

.section-join h2 {
  text-align: center;
  font-size: 34px;
}
@media only screen and (min-width: 480px) {
  .section-join h2 {
    font-size: 42px;
  }
}
.section-join li {
  font-size: 16px;
  padding: 10px 0 12px 40px;
  margin-bottom: 5px;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .section-join li {
    font-size: 20px;
  }
}
.section-join li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: contain !important;
  background: url("images/circle-check.svg") no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
}
@media only screen and (min-width: 480px) {
  .section-join li:before {
    width: 24px;
    height: 24px;
  }
}
.section-join h3 {
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  margin: 0 0 30px;
}
.section-join h3 strong {
  font-weight: 500;
}
.section-join p {
  margin: 0;
  text-align: center;
}
.section-join small {
  color: #e0bbb6;
  font-size: 12px;
}
.section-join .join {
  padding: 150px 0 200px;
}
.section-join .join .try-button-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.section-join .features {
  max-width: 480px;
  border-radius: 0;
  background: #c44536;
  color: #fff;
  padding: 20px 30px 30px;
  position: relative;
  margin: auto;
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  min-height: 650px;
}
@media only screen and (min-width: 480px) {
  .section-join .features {
    padding: 20px 50px 30px;
    border-radius: 30px;
  }
}
.section-join .dish {
  position: absolute;
  z-index: 9;
}
@media only screen and (min-width: 480px) {
  .section-join .dish {
    z-index: 9;
  }
}
@media only screen and (min-width: 576px) {
  .section-join .dish {
    z-index: -1;
  }
}
.section-join .dish img {
  max-width: unset;
}
.section-join .dish1 {
  right: -45px;
  top: -170px;
}
.section-join .dish1 img {
  width: 200px;
  height: auto;
}
@media only screen and (min-width: 480px) {
  .section-join .dish1 img {
    width: 250px;
  }
}
@media only screen and (min-width: 576px) {
  .section-join .dish1 img {
    width: auto;
  }
}
@media only screen and (min-width: 480px) {
  .section-join .dish1 {
    right: -45px;
    top: -200px;
  }
}
@media only screen and (min-width: 576px) {
  .section-join .dish1 {
    left: 620px;
    top: -170px;
  }
}
@media only screen and (min-width: 768px) {
  .section-join .dish1 {
    left: 360px;
    top: -220px;
  }
}
@media only screen and (min-width: 992px) {
  .section-join .dish1 {
    left: 412px;
    top: -240px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-join .dish1 {
    left: 620px;
    top: -170px;
  }
}
.section-join .dish2 {
  left: -365px;
  top: 300px;
  display: none;
}
@media only screen and (min-width: 576px) {
  .section-join .dish2 {
    display: block;
    left: -330px;
    top: 415px;
  }
}
@media only screen and (min-width: 768px) {
  .section-join .dish2 {
    display: block;
    left: -330px;
    top: 340px;
  }
}
.section-join .dish3 {
  left: -35px;
  bottom: -145px;
}
.section-join .dish3 img {
  width: 180px;
  height: auto;
}
@media only screen and (min-width: 480px) {
  .section-join .dish3 img {
    width: 200px;
  }
}
@media only screen and (min-width: 576px) {
  .section-join .dish3 img {
    width: auto;
  }
}
@media only screen and (min-width: 480px) {
  .section-join .dish3 {
    left: -35px;
    bottom: -160px;
  }
}
@media only screen and (min-width: 576px) {
  .section-join .dish3 {
    left: 300px;
    top: -170px;
  }
}
@media only screen and (min-width: 768px) {
  .section-join .dish3 {
    left: 420px;
    top: 405px;
  }
}

.section-faq {
  overflow: hidden;
  margin: 0 0 -20px;
}
.section-faq .row {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 0 350px;
  grid-template-rows: 1fr 350px;
  gap: 0;
}
@media only screen and (min-width: 480px) {
  .section-faq .row {
    -ms-grid-rows: 1fr 400px;
    grid-template-rows: 1fr 400px;
  }
}
@media only screen and (min-width: 576px) {
  .section-faq .row {
    -ms-grid-rows: 1fr 500px;
    grid-template-rows: 1fr 500px;
  }
}
@media only screen and (min-width: 768px) {
  .section-faq .row {
    -ms-grid-rows: 1fr 600px;
    grid-template-rows: 1fr 600px;
  }
}
@media only screen and (min-width: 992px) {
  .section-faq .row {
    gap: 30px;
    -ms-grid-rows: none;
    grid-template-rows: none;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .section-faq .row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .section-faq .row > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
@media only screen and (min-width: 1200px) {
  .section-faq .row {
    gap: 85px;
    -ms-grid-rows: none;
    grid-template-rows: none;
    -ms-grid-columns: 1fr 85px 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .section-faq .row > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .section-faq .row > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.section-faq h2 {
  font-size: 30px;
}
.section-faq .img {
  position: relative;
}
.section-faq figure {
  height: 100%;
  margin-left: 0;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 0;
  background: url("./images/img-faq.jpg");
  background-size: cover;
  background-position: center center;
  margin-left: -20px;
}
@media only screen and (min-width: 992px) {
  .section-faq figure {
    background-position: 90% 50%;
    border-radius: 40px 0 0 0;
    margin-left: 3%;
    width: 47.5vw;
  }
}
@media only screen and (min-width: 1200px) {
  .section-faq figure {
    background-position: 90% 50%;
  }
}
@media only screen and (min-width: 1600px) {
  .section-faq figure {
    background-position: center center;
  }
}
.section-faq figure img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  width: 100%;
  -o-object-position: center;
     object-position: center;
}
.section-faq .faq {
  color: #283617;
  padding: 40px 0 0 0px;
  overflow: auto;
}
@media only screen and (min-width: 992px) {
  .section-faq .faq {
    padding: 40px 0 160px;
  }
}
.section-faq .faq ul {
  height: 500px;
  overflow: auto;
  padding-right: 10px;
}
.section-faq .faq ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
.section-faq .faq ul::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}
.section-faq .faq ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
.section-faq ul {
  border-top: 1px solid #e4e5dd;
}
.section-faq li {
  border-bottom: 1px solid #e4e5dd;
  padding: 16px 0;
}
.section-faq li:last-child {
  border: none;
}
.section-faq li p {
  line-height: 1.3;
  padding-right: 20px;
}
.section-faq li ol {
  padding: 0;
}
.section-faq li ol li {
  border: none;
}
.section-faq h3 {
  cursor: pointer;
  font-weight: 400;
  margin: 0;
  font-size: 17px;
  padding: 4px 0 6px;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .section-faq h3 {
    font-size: 18px;
  }
}
.section-faq h3:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
  height: 22px;
  background: url("images/chevron.gif") no-repeat;
}
.section-faq p {
  margin: 0;
  font-size: 15px;
}
@media only screen and (min-width: 480px) {
  .section-faq p {
    font-size: 16px;
  }
}

.section-app {
  background: #e2e4db;
  margin: 0 0 -35px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: visible;
}
.section-app .container {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 480px) {
  .section-app .container {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 992px) {
  .section-app .container {
    padding-top: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-app .container {
    padding-top: 0;
  }
}
.section-app .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) {
  .section-app .row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.app-screens {
  display: none;
  margin-top: -105px;
}
@media only screen and (min-width: 992px) {
  .app-screens {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.app-screens img {
  max-height: 350px;
}

.download-link-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
}
.download-link-section .store-buttons {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .download-link-section .store-buttons {
    text-align: left;
  }
}
@media only screen and (min-width: 992px) {
  .download-link-section {
    padding-left: 30px;
  }
}
.download-link-section h2 {
  font-weight: 500;
  font-size: 26px;
  color: #283617;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .download-link-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    text-align: left;
  }
}
@media only screen and (min-width: 576px) {
  .download-link-section h2 {
    font-size: 40px;
    margin-bottom: 25px;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .download-link-section h2 {
    font-size: 46px;
    margin-bottom: 25px;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .download-link-section h2 {
    font-size: 46px;
    margin-bottom: 25px;
    text-align: left;
  }
}
@media only screen and (min-width: 992px) {
  .download-link-section h2 {
    font-size: 46px;
    margin-bottom: 25px;
    text-align: left;
  }
}
.download-link-section a:first-child {
  margin-right: 10px;
}
.download-link-section a img {
  height: 35px;
  width: auto;
  border-radius: 6px;
  overflow: hidden;
}
@media only screen and (min-width: 480px) {
  .download-link-section a img {
    height: 45px;
  }
}
@media only screen and (min-width: 576px) {
  .download-link-section a img {
    height: 53px;
  }
}

.section-how {
  padding: 30px 0;
}
@media only screen and (min-width: 480px) {
  .section-how {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 576px) {
  .section-how {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 768px) {
  .section-how {
    padding: 100px 0;
  }
}
.section-how .how-title-below-md {
  margin: 0;
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 300;
  color: #283517;
  letter-spacing: 1px;
}
.section-how .how-title-below-md span {
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .section-how .how-title-below-md {
    display: none;
  }
}
.section-how .how-title-above-md {
  margin: 0;
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 300;
  color: #283517;
  letter-spacing: 1px;
  display: none;
}
.section-how .how-title-above-md span {
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .section-how .how-title-above-md {
    display: block;
  }
}

.how-it-work-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .how-it-work-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.how-it-work-wrapper .how-left {
  width: 100%;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .how-it-work-wrapper .how-left {
    margin-right: 40px;
    max-width: 570px;
  }
}
@media only screen and (min-width: 992px) {
  .how-it-work-wrapper .how-left {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .how-it-work-wrapper .how-left {
    margin-right: 90px;
  }
}
.how-it-work-wrapper .how-left p {
  margin: 30px 0 35px 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media only screen and (min-width: 480px) {
  .how-it-work-wrapper .how-left p {
    font-size: 18px;
  }
}
.how-it-work-wrapper .how-left .download-button-wrapper {
  text-align: center;
  display: block;
}
@media only screen and (min-width: 768px) {
  .how-it-work-wrapper .how-left .download-button-wrapper {
    display: inline-block;
    text-align: left;
  }
}
.how-it-work-wrapper .how-left .download-button-wrapper p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 15px;
  color: #a5a7a1;
}
.how-it-work-wrapper .how-right {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .how-it-work-wrapper .how-right {
    margin-top: -70px;
  }
}
.how-it-work-wrapper .how-right img {
  width: 100%;
  max-width: 490px;
  margin-bottom: 10px;
  margin-left: -40px;
}
@media only screen and (min-width: 576px) {
  .how-it-work-wrapper .how-right img {
    margin-left: 0;
  }
}

.work-step-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #283517;
  border-radius: 15px;
  width: 100%;
  max-width: 495px;
  margin-bottom: 14px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: center;
}
.work-step-card:nth-child(2) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.work-step-card .details {
  color: #283517;
  padding: 20px;
}
.work-step-card .details h4 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 7px;
  font-weight: 500;
}
.work-step-card .details p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}
.work-step-card .step-image-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.work-step-card .step-image-wrapper img {
  height: 100%;
  width: auto;
  margin-right: 15px;
  display: block;
}

.loved-people-title-block {
  padding: 35px 20px;
  background-color: #e9eae7;
}
@media only screen and (min-width: 480px) {
  .loved-people-title-block {
    padding: 45px 20px;
  }
}
.loved-people-title-block h2 {
  color: #283617;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
@media only screen and (min-width: 480px) {
  .loved-people-title-block h2 {
    font-size: 3opx;
  }
}
@media only screen and (min-width: 576px) {
  .loved-people-title-block h2 {
    font-size: 34px;
  }
}

.loved-people-slider-wrapper {
  background-color: #A9AFA2;
  padding: 40px 0;
}

.loved-people-slide {
  width: 360px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.loved-people-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 20px;
}

.momemts-compare {
  padding: 80px 0;
  background-color: #E9E9E7;
}
.momemts-compare h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  color: #283617;
  margin-bottom: 35px;
}
.momemts-compare h2 span {
  font-weight: 300;
}

.compare-tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.compare-tables .table-left {
  display: none;
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-left {
    display: block;
  }
}
.compare-tables .table-left table {
  background-color: #fff;
  border-radius: 12px 0 0 12px;
  border-collapse: collapse;
}
.compare-tables .table-left table tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #283617;
  font-weight: 400;
  font-size: 18px;
  padding: 0 20px;
  height: 60px;
}
@media only screen and (min-width: 1200px) {
  .compare-tables .table-left table tr td {
    font-size: 20px;
  }
}
.compare-tables .table-left table tr td img {
  margin-right: 20px;
}
.compare-tables .table-right .bordered {
  border-left: 1px solid #DCDED9;
  border-right: 1px solid #DCDED9;
}
.compare-tables .table-right table {
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.compare-tables .table-right table thead tr {
  -webkit-box-shadow: 0px 8px 7px -4px rgba(0, 0, 0, 0.31);
          box-shadow: 0px 8px 7px -4px rgba(0, 0, 0, 0.31);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-right table thead tr {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.compare-tables .table-right table thead tr th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 75px;
  font-weight: 500;
  color: #283617;
  padding: 0 10px;
  font-size: 14px;
}
@media only screen and (min-width: 576px) {
  .compare-tables .table-right table thead tr th {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-right table thead tr th {
    min-width: 220px;
  }
}
.compare-tables .table-right table thead tr th:first-child {
  border-radius: 12px 0 0 12px;
  background-color: #C44536;
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-right table thead tr th:first-child {
    border-radius: 12px 0 0 0;
  }
}
.compare-tables .table-right table thead tr th:last-child {
  border-radius: 0 12px 12px 0;
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-right table thead tr th:last-child {
    border-radius: 0 12px 0 0;
  }
}
.compare-tables .table-right table thead tr th:not(:first-child) {
  background-color: #fff;
}
.compare-tables .table-right table tbody .below-md-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.compare-tables .table-right table tbody .below-md-row td {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-right table tbody .below-md-row {
    display: none;
  }
}
.compare-tables .table-right table tbody tr {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.compare-tables .table-right table tbody tr:nth-child(even) {
  background-color: #FCF7F4;
}
@media only screen and (min-width: 992px) {
  .compare-tables .table-right table tbody tr {
    height: 60px;
  }
  .compare-tables .table-right table tbody tr:nth-child(even) {
    background-color: #fff;
  }
  .compare-tables .table-right table tbody tr:nth-child(2) {
    background-color: #FCF7F4;
  }
  .compare-tables .table-right table tbody tr:nth-child(6) {
    background-color: #FCF7F4;
  }
  .compare-tables .table-right table tbody tr:nth-child(10) {
    background-color: #FCF7F4;
  }
  .compare-tables .table-right table tbody tr:nth-child(14) {
    background-color: #FCF7F4;
  }
}
.compare-tables .table-right table tbody tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.compare-tables .table-right .below-md-row {
  background-color: #fff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 20px;
  color: #283617;
  font-weight: 500;
}

.section-menu {
  padding: 50px 0 30px 0;
}
@media only screen and (min-width: 480px) {
  .section-menu {
    padding: 70px 0 50px 0;
  }
}
@media only screen and (min-width: 576px) {
  .section-menu {
    padding: 100px 0 80px 0;
  }
}
.section-menu .title-block {
  width: 100%;
  max-width: 685px;
  color: #283617;
  margin-bottom: 30px;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .section-menu .title-block {
    padding-right: 140px;
  }
}
.section-menu .title-block h2 {
  font-weight: 300;
  font-size: 30px;
  margin: 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 480px) {
  .section-menu .title-block h2 {
    margin-bottom: 32px;
  }
}
.section-menu .title-block h2 span {
  font-weight: 500;
}
.section-menu .title-block p {
  font-weight: 300;
  font-size: 18px;
  margin: 0;
  margin-bottom: 100px;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .section-menu .title-block p {
    margin-bottom: 30px;
  }
}
.section-menu .slick-arrow {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 12px;
  -webkit-box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.16);
  background: #f8f8f8;
}
.section-menu .slick-arrow img {
  position: relative;
  top: 1px;
  width: 18px;
}
.section-menu .slick-list {
  overflow: visible;
  margin-left: -15px;
}
.section-menu .aright.slick-arrow {
  top: -80px;
  right: 0;
}
.section-menu .aleft.slick-arrow {
  top: -80px;
  right: 70px;
}
/* .section-menu .menu-carousel .menu-slde {
  width: 326px;
  height: 381px;
} */
.section-menu .menu-carousel .menu-slide .menu-name{
  position: absolute;
  bottom: 0;
  left: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #283617;
}
/* .section-menu .menu-carousel .menu-slde img {
  width: 100%;
  height: 100%;
  margin-left: -20px;
} */

.section-people-say {
  padding: 50px 0 0 0;
}
@media only screen and (min-width: 480px) {
  .section-people-say {
    padding: 70px 0 0 0;
  }
}
@media only screen and (min-width: 576px) {
  .section-people-say {
    padding: 100px 0 0 0;
  }
}
.section-people-say .title-block {
  width: 100%;
  color: #283617;
  margin-bottom: 30px;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .section-people-say .title-block {
    padding-right: 140px;
  }
}
.section-people-say .title-block h2 {
  font-weight: 300;
  font-size: 30px;
  margin: 0;
  margin-bottom: 100px;
}
@media only screen and (min-width: 480px) {
  .section-people-say .title-block h2 {
    margin-bottom: 40px;
  }
}
.section-people-say .title-block h2 span {
  font-weight: 500;
}
.section-people-say .title-block p {
  font-weight: 300;
  font-size: 18px;
  margin: 0;
  margin-bottom: 30px;
}
.section-people-say .slick-arrow {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 12px;
  -webkit-box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 7px 15px 0 rgba(0, 0, 0, 0.16);
  background: #f8f8f8;
}
.section-people-say .slick-arrow img {
  position: relative;
  top: 1px;
  width: 18px;
}
.section-people-say .slick-list {
  overflow: visible;
}
.section-people-say .aright.slick-arrow {
  top: -80px;
  right: 0;
}
.section-people-say .aleft.slick-arrow {
  top: -80px;
  right: 70px;
}
 .section-people-say .people-say-carousel .people-say-slide {
  width: 350px;
  height: 200px;
  padding-right: 20px;
}
.section-people-say .people-say-slide h3 {
  font-size: 18px;
  margin: 0;
  font-weight: normal;
}
.section-people-say .people-say-slide p {
  font-size: 16px;
  line-height: 115%;
  margin: 15px 0 0;
}
.people-say-carousel .avatar {
  flex-shrink: 0;
  margin-right: 15px;
}
.section-people-say .avatar img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 00px;
}
@media only screen and (min-width: 480px) {
  .section-people-say .people-say-carousel .people-say-slide {
    width: 400px;
    /* height: 168px; */
  }
}
@media only screen and (min-width: 576px) {
  .section-people-say .people-say-carousel .people-say-slide {
    /* width: 480px; */
    /* height: 240px; */
  }
}

.section-get-help {
  padding: 50px 0;
  background-color: #f8f8f8;
}
.section-get-help .container.row {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 576px) {
  .section-get-help .container.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.get-help-text-wrapper {
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .get-help-text-wrapper {
    text-align: left;
  }
}
.get-help-text-wrapper h3 {
  color: #2e3723;
  font-weight: 400;
  margin: 0;
  font-size: 25px;
  margin-bottom: 10px;
}
.get-help-text-wrapper p {
  color: #2e3723;
  font-weight: 300;
  margin: 0;
  font-size: 15px;
}

.get-help-button-wrapper {
  margin-top: 20px;
}
@media only screen and (min-width: 576px) {
  .get-help-button-wrapper {
    margin-top: 0;
    margin-left: 20px;
  }
}

/* footer popup*/
.vidColmn {
  background: #fff;
  width: 100%;
  display: none;
  -webkit-box-shadow: 0px -4px 26px -10px rgba(0,0,0,0.38);
-moz-box-shadow: 0px -4px 26px -10px rgba(0,0,0,0.38);
box-shadow: 0px -4px 26px -10px rgba(0,0,0,0.38);
}
@media screen and (max-width: 763px) {
  header .row{
    justify-content: center;
  }
  header .app_download-contain{
    display: none;
  }
.vidColmn {
    display: block;
}
.button_OutterBox.mob_only {
  margin: 20px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.warning_txt {
  color: #000;
  align-items: center;
  flex-wrap: wrap;
}
.warning_txt p {
  margin: 0;
}
footer{
  padding-bottom: 120px;
}
}
.menu-carousel .menu-slide{
  margin-right: 20px;
  /* border-radius: 15px;
  box-shadow: 0 7px 15px 0 rgb(0 0 0 / 16%); */
  background-color: #fff;
  isolation: isolate;
  overflow: hidden;
  height: 100%;
  float: left;
  overflow: hidden;
  /* height: 330px; */
  /* border-bottom: 1px solid #616b3b; */
  position: relative;
}
@media only screen and (max-width: 576px) {
.menu-carousel .menu-slide{
  /* height: 280px; */
  margin: 0;
  /* width: 320px !important; */
}
}
.menu-carousel .menu-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.people-say-slide-inner{
  display: flex;
  border: 1px solid #c44536;
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  align-items: flex-start;
  position: relative;
}
.people-say-slide-inner .avatar{
 margin-right: 10px;
}
.people-say-slide-inner .avatar img{
 min-width: 68px;
}
.people-say-slide .content{
  display: flex;
  flex-direction: column;
}
.people-say-slide .content img{
  width: 120px;
}
.mobile-download {
  background: #c44536;
  color: #fff;
  border-radius: 20px 20px 0px 0px;
  z-index: 10 !important;
}
.mobile-download .warning_txt {
  color: #fff;
}
.mobile-download .btn {
  background: #fff;
  color: #c44536;
  white-space: nowrap;
}
.people-say-slide-inner:after {
  content: '';
  position: absolute;
  right: 14px;
  top: 14px;
  width: 35px;
  height: 35px;
  background: url('images/google.png') no-repeat;
}
.btn-whatsapp-floating{
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: auto;
}
.btn-whatsapp-floating img{
  max-width: 100%;
  height: auto;
}
@media (max-width:763px){
  .btn-whatsapp-floating{
    bottom: 80px;
  }
}

@media (max-width: 620px) {
  .people-say-slide-inner {
    display: block;
  }
  .people-say-slide-inner .avatar{
    position: absolute;
  }
  .people-say-slide .content > div {
    padding-left: 80px;
    padding: 15px 0 10px 80px;
  }
  .people-say-slide-inner .avatar img{
   min-width: 60px;
  }
  .section-people-say .people-say-slide p {
    margin-top: 10px;
  }
}