@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");

#home-page-1 {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#home-page-1 .cta-btn {
  box-shadow: -1px 7px 18px 0px rgba(0, 0, 0, 0.25);
  background-color: var(--salmon-normal);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.2s;
  text-align: center;
  border: none;
}

#home-page-1 .cta-btn:active {
  background-color: var(--salmon-normal-active);
}

#home-page-1 .header-top {
  color: var(--grey-10);
  background-color: var(--blue-light);
  position: sticky;
  top: 0;
  z-index: 9999;
}

#home-page-1 .header-top__desktop-wrap {
  display: flex;
  gap: 2rem;
  padding: 0.75rem 0;
  align-items: center;
}

@media (max-width: 479px) {
  #home-page-1 .header-top__desktop-wrap {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 .header-top__desktop-wrap {
    display: none;
  }
}

#home-page-1 .header-top__mobile-wrap {
  display: none;
  height: 68px;
  box-sizing: border-box;
  padding: 1rem 0;
  justify-content: space-between;
}

@media (max-width: 479px) {
  #home-page-1 .header-top__mobile-wrap {
    display: flex;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 .header-top__mobile-wrap {
    display: flex;
  }
}

#home-page-1 .header-top .fullscreen-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
  padding: 1rem 2rem;
  transition: all 0.2s;
}

#home-page-1 .header-top .fullscreen-menu--show {
  display: flex;
}

#home-page-1 .header-top .fullscreen-menu__close-btn {
  border-radius: 0.5rem;
  box-sizing: border-box;
  padding: 0.5rem;
  justify-self: end;
  align-self: flex-end;
  border: none;
  background-color: transparent;
}

#home-page-1 .header-top .fullscreen-menu__menu {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

#home-page-1 .header-top .fullscreen-menu__menu-item {
  text-decoration: none;
	text-transform: uppercase;
}

#home-page-1 .header-top__menu-btn {
  padding: 0.5rem;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
}

#home-page-1 .header-top__item {
  text-decoration: none;
	text-transform: uppercase;
}

#home-page-1 .header-top__item-list {
  display: flex;
  gap: 2rem;
  flex: 1 0 auto;
  align-items: flex-end;
  height: 30px;
}

#home-page-1 .header-top__logo-with-text {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

#home-page-1 .header-top__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

#home-page-1 .header-top__user {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
  background-color: white;
  border-radius: 50px;
  border: none;
}

#home-page-1 #hero {
  margin: 5rem 0 2rem;
}

#home-page-1 #hero .section-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#home-page-1 #hero img.logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

#home-page-1 #hero .title {
  font-family: "Anton", sans-serif;
  font-size: 64px;
  font-weight: 400;
  text-align: center;
  color: var(--salmon-normal);
  margin: 1.5rem 0 0;
}

@media (max-width: 479px) {
  #home-page-1 #hero .title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #hero .title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}

#home-page-1 #hero .sub-title {
  color: var(--blue-darker);
  text-align: center;
}

@media (max-width: 479px) {
  #home-page-1 #hero .sub-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 1rem;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #hero .sub-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 1rem;
  }
}

#home-page-1 #hero .image-wrap {
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 479px) {
  #home-page-1 #hero .image-wrap {
    padding: 0;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #hero .image-wrap {
    padding: 0;
  }
}

#home-page-1 #hero .image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#home-page-1 #hero .image-wrap button {
  width: 433px;
  max-width: 100%;
  background-color: var(--salmon-normal);
  transition: background-color 0.2s;
  text-align: center;
  padding: 0.75rem;
  box-sizing: border-box;
  color: white;
  border-radius: 2rem;
  position: absolute;
  bottom: 14%;
  left: 50%;
  border: none;
  transform: translateX(-50%);
  box-shadow: -5px 9px 12.5px 0 rgba(0, 0, 0, 0.25);
/* [052402TIN] add cursor pointer when hover */
    cursor: pointer;
}

#home-page-1 #hero .image-wrap button:active {
  background-color: var(--salmon-normal-active);
}

@media (max-width: 479px) {
  #home-page-1 #hero .image-wrap button {
    position: relative;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #hero .image-wrap button {
    position: relative;
  }
}

#home-page-1 #section-2 .section-wrap {
  display: flex;
  gap: 1rem;
  justify-content: space-around;
}

@media (max-width: 479px) {
  #home-page-1 #section-2 .section-wrap {
    flex-wrap: wrap;
    row-gap: 1.5rem;
    padding: 2rem 0 2rem;
    border-bottom: 2px solid var(--grey-8);
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-2 .section-wrap {
    flex-wrap: wrap;
    row-gap: 1.5rem;
    padding: 2rem 0 2rem;
    border-bottom: 2px solid var(--grey-8);
  }
}

#home-page-1 #section-2 .feature-card {
  display: flex;
  flex-direction: column;
  max-width: 202px;
  color: rgb(29, 29, 31);
  text-align: center;
}

@media (max-width: 479px) {
  #home-page-1 #section-2 .feature-card {
    flex: 1 0 45%;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-2 .feature-card {
    flex: 1 0 45%;
    max-width: none;
  }
}

#home-page-1 #section-2 .feature-card__image {
  display: block;
  object-fit: contain;
  max-height: 100px;
}

#home-page-1 #section-2 .feature-card__title,
#home-page-1 #section-2 .feature-card__description {
  text-align: center;
  margin: 0;
}

@media (max-width: 479px) {
  #home-page-1 #section-2 .feature-card__title {
    font-weight: 600;
    font-size: 19px;
  }

  #home-page-1 #section-2 .feature-card__description {
    font-weight: 500;
    font-size: 11px;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-2 .feature-card__title {
    font-weight: 600;
    font-size: 19px;
  }

  #home-page-1 #section-2 .feature-card__description {
    font-weight: 500;
    font-size: 11px;
  }
}


/* // [202402TIN] make font size to 14px */
#home-page-1 #section-2 .feature-card__description {
  font-size: 14px;
}


#home-page-1 #section-3 {
  margin: 3rem 0;
  position: relative;
}

#home-page-1 #section-3 .splide__pagination {
  bottom: -1.5rem;
  transition: none;
}

#home-page-1 #section-3 .splide__slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#home-page-1 #section-3 .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#home-page-1 #section-3 .splide__pagination__page {
  background-color: var(--grey-5);
}

#home-page-1 #section-3 .splide__pagination__page.is-active {
  background-color: var(--salmon-normal);
  transform: scale(1);
  opacity: 1;
}

#home-page-1 #section-3 .splide__pagination__page.is-active:hover {
  background-color: var(--salmon-normal-active);
}

#home-page-1 #section-3 .splide__sr {
  display: none;
}

#home-page-1 #section-3 .floating-banner {
  position: absolute;
  bottom: 0.1%;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 79px;
  transition: height 0.2s;
}

#home-page-1 #section-3 .floating-banner__wrap {
  background-color: rgba(54, 54, 54, 0.6);
  color: white;
  display: flex;
  gap: 3rem;
  padding: 1.25rem;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30vw);
}

#home-page-1 #section-3 .floating-banner button {
  background-color: var(--salmon-normal);
  padding: 0.5rem 2.5rem;
  box-sizing: border-box;
  border-radius: 2rem;
  border: none;
/* [052402TIN] add cursor pointer when hover */
    cursor: pointer;
}

#home-page-1 #section-3 .floating-banner--hide {
  transition: height 0.2s;
  padding: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 479px) {
  #home-page-1 #section-3 {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-3 {
    display: none;
  }
}

#home-page-1 #section-4 {
  margin: 8rem 0;
}

#home-page-1 #section-4 .section-wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 479px) {
  #home-page-1 #section-4 .section-wrap {
    flex-direction: column-reverse;
    gap: 2rem;
    border-bottom: 2px solid var(--grey-8);
    padding-bottom: 2rem;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-4 .section-wrap {
    flex-direction: column-reverse;
    gap: 2rem;
    border-bottom: 2px solid var(--grey-8);
    padding-bottom: 2rem;
  }
}

#home-page-1 #section-4 .title {
  color: var(--grey-10);
  margin-bottom: 1rem;
}

#home-page-1 #section-4 .link {
  text-decoration: none;
  color: var(--salmon-normal);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#home-page-1 #section-4 .link--mobile {
  display: none;
}

@media (max-width: 479px) {
  #home-page-1 #section-4 .link--mobile {
    display: flex;
  }

  #home-page-1 #section-4 .link--desktop {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-4 .link--mobile {
    display: flex;
  }

  #home-page-1 #section-4 .link--desktop {
    display: none;
  }
}

#home-page-1 #section-4 .video-player {
  width: 50%;
  flex: 1 0 auto;
}

@media (max-width: 479px) {
  #home-page-1 #section-4 .video-player iframe {
    width: 100%;
    min-height: 250px !important;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-4 .video-player iframe {
    width: 100%;
    min-height: 250px !important;
  }
}

#home-page-1 #section-4 .video-player__thumb img {
  height: auto;
  width: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 479px) {
  #home-page-1 #section-4 .video-player__thumb img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 479px) {
  #home-page-1 #section-4 {
    margin: 2rem 0;
  }

  #home-page-1 #section-4 .video-player {
    width: 100%;
    height: 100%;
  }

  #home-page-1 #section-4 .title {
    font-size: 28px;
    font-weight: 600;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-4 {
    margin: 2rem 0;
  }

  #home-page-1 #section-4 .video-player {
    width: 100%;
    height: 100%;
  }
}

#home-page-1 #section-5 #slider-2 {
  margin: 1rem 0 3rem;
}

@media (max-width: 479px) {
  #home-page-1 #section-5 #slider-2 {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-5 #slider-2 {
    display: none;
  }
}

#home-page-1 #section-5 #slider-2 .splide__sr {
  display: none;
}

#home-page-1 #section-5 #slider-2 .splide__slide {
  height: 500px;
  width: 480px;
  border-radius: 18px;
  box-shadow: 2px 4px 12px 0px rgba(0, 0, 0, 0.08);
  color: var(--blue-darker);
  box-sizing: border-box;
  padding: 58px 30px;
}

@media (max-width: 479px) {
  #home-page-1 #section-5 {
    background: url(https://foodiemenu.co/wp-content/uploads/2024/01/section-5-mobile-bg.png) no-repeat;
    background-size: cover;
  }

  #home-page-1 #section-5 .heading {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-5 {
    background: url(https://foodiemenu.co/wp-content/uploads/2024/01/section-5-mobile-bg.png) no-repeat;
    background-size: cover;
  }

  #home-page-1 #section-5 .heading {
    display: none;
  }
}

#home-page-1 #section-5 .mobile-section {
  display: none;
  gap: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--grey-10);
}

@media (max-width: 479px) {
  #home-page-1 #section-5 .mobile-section {
    display: flex;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-5 .mobile-section {
    display: flex;
  }
}

#home-page-1 #section-5 .message {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

#home-page-1 #section-5 .message__placeholder {
  width: 57px;
  background-color: transparent;
  flex-shrink: 0;
}

#home-page-1 #section-5 .message__avatar {
  width: 57px;
  height: 57px;
  flex: 1 0 auto;
  border: 1px solid white;
  box-shadow: -13px 13px 19.6px 0px rgba(252, 146, 184, 0.25), 13px 0px 19.6px 0px rgba(252, 146, 184, 0.15);
  border-radius: 15px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.5);
}

#home-page-1 #section-5 .message__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

#home-page-1 #section-5 .message__border {
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-image-source: radial-gradient(121.49% 277.08% at 0% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(121.49% 277.08% at 0% 0%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(112.35deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.456) 109.02%);
  border-radius: 14px;
  box-shadow: -13px 13px 19.6px 0px rgba(252, 146, 184, 0.25), 13px 0px 19.6px 0px rgba(252, 146, 184, 0.15);
  max-width: 295px;
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-5 .message__border {
    max-width: 350px;
  }
}

#home-page-1 #section-5 .message__border--arrow-right {
  border-top-right-radius: 0;
}

#home-page-1 #section-5 .message__border--arrow-left {
  border-top-left-radius: 0;
}

#home-page-1 #section-5 .mobile-heading {
  text-align: center;
  margin: 2rem 0 0;
}

#home-page-1 #section-6 .section-wrap {
  display: flex;
  gap: 2rem;
  align-items: start;
  background: url(https://foodiemenu.co/wp-content/uploads/2024/01/gradient-bg-2.png) 20% bottom no-repeat;
  background-size: contain;
  padding: 3rem 0;
}

@media (max-width: 479px) {
  #home-page-1 #section-6 .section-wrap {
    flex-direction: column-reverse;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-6 .section-wrap {
    flex-direction: column-reverse;
  }
}

#home-page-1 #section-6 .cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

#home-page-1 #section-6 .cta-btn {
  background-color: var(--salmon-normal);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
}

#home-page-1 #section-6 .cta-btn:active {
  background-color: var(--salmon-normal-active);
}

#home-page-1 #section-6 .image {
  width: 50%;
  overflow: visible;
  object-fit: cover;
}

@media (max-width: 479px) {
  #home-page-1 #section-6 .image {
    width: 100%;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-6 .image {
    width: 100%;
  }
}

#home-page-1 #section-6 .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

#home-page-1 #section-6 .key-features {
  flex: 1 0 auto;
  max-width: calc(45% - 1rem);
  margin-top: 7rem;
}

@media (max-width: 479px) {
  #home-page-1 #section-6 .key-features {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-6 .key-features {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
  }
}

#home-page-1 #section-6 .key-features__title {
  margin-bottom: 1rem;
}

#home-page-1 #section-6 .key-feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-sizing: border-box;
  padding: 14px;
  border-radius: 20px;
  transition: all 0.2s;
}

#home-page-1 #section-6 .key-feature-item__header {
  color: var(--grey-10);
  display: flex;
  gap: 1rem;
  align-items: start;
/* [052402TIN] add cursor pointer when hover */
    cursor: pointer;
}

#home-page-1 #section-6 .key-feature-item__header-icon {
  height: 32px;
  width: 32px;
  background-color: var(--grey-10);
  border-radius: 32px;
  display: block;
}

#home-page-1 #section-6 .key-feature-item__body {
  display: none;
}

#home-page-1 #section-6 .key-feature-item:has(input[type=radio]:checked) {
  box-shadow: -4px 3px 12px 0px rgba(0, 0, 0, 0.25);
}

#home-page-1 #section-6 .key-feature-item:has(input[type=radio]:checked) .key-feature-item__body {
  display: block;
}

#home-page-1 #section-6 .key-feature-item:has(input[type=radio]:checked) .key-feature-item__header {
  color: var(--salmon-normal);
}

#home-page-1 #section-6 .key-feature-item:has(input[type=radio]:checked) .key-feature-item__header .key-feature-item__header-icon {
  background-color: var(--salmon-normal);
}

#home-page-1 #section-6 .key-feature-item__list {
  display: flex;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 0.2rem;
}

#home-page-1 #section-6 .key-feature-item__list-item {
  margin-left: 1rem;
  padding-left: 0.5rem;
  list-style-type: "•";
}

#home-page-1 #section-7 .text-wrap {
  color: var(--grey-10);
  margin-bottom: 3rem;
}

#home-page-1 #section-7 .text-wrap>* {
  text-align: center;
}

#home-page-1 #section-7 .text-wrap .title {
  margin-top: 2rem;
}

#home-page-1 #section-7 .mobile-section {
  display: none;
}

@media (max-width: 479px) {
  #home-page-1 #section-7 .mobile-section {
    display: block;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-7 .mobile-section {
    display: block;
  }
}

#home-page-1 #section-7 .splide__list {
  gap: 20px;
}

#home-page-1 #section-7 .splide__slide {
  position: relative;
  width: 597px;
  height: auto;
/* [052402TIN] add cursor pointer when hover */
    cursor: pointer;
}

#home-page-1 #section-7 .splide__slide .silde-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
}

@media (max-width: 479px) {
  #home-page-1 #section-7 .splide__slide .silde-image {
    box-shadow: 2px 5px 4px 0 var(--grey-3);
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-7 .splide__slide .silde-image {
    box-shadow: 2px 5px 4px 0 var(--grey-3);
  }
}

#home-page-1 #section-7 .splide__slide:hover .silde-overlay {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
}

#home-page-1 #section-7 .splide__slide:hover .silde-overlay button {
  background-color: var(--salmon-normal);
  color: white;
  padding: 12px 22px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

#home-page-1 #section-7 .splide__slide:hover .silde-overlay button:active {
  background-color: var(--salmon-normal-active);
}

#home-page-1 #section-7 .splide__sr {
  display: none;
}

#home-page-1 #section-7 .sub-title-2 {
  display: none;
}

#home-page-1 #section-7 #slider-3 {
  display: none;
}

#home-page-1 #section-7 .cta-btn--mobile {
  display: none;
}

#home-page-1 #section-7 #slider-3 {
  display: none;
  padding: 0 1rem 2.5rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

#home-page-1 #section-7 #slider-3 .splide__pagination__page {
  background-color: var(--grey-5);
}

#home-page-1 #section-7 #slider-3 .splide__pagination__page.is-active {
  background-color: var(--salmon-normal);
  transform: scale(1);
  opacity: 1;
}

#home-page-1 #section-7 #slider-3 .splide__pagination__page.is-active:hover {
  background-color: var(--salmon-normal-active);
}

#home-page-1 #section-7 #slider-3 .splide__track {
  padding-bottom: 0.4rem;
}

@media (max-width: 479px) {
  #home-page-1 #section-7 #slider-3 {
    display: block;
  }

  #home-page-1 #section-7 .cta-btn--mobile {
    display: flex;
  }

  #home-page-1 #section-7 .splideAutoScrollLeft,
  #home-page-1 #section-7 .splideAutoScrollRight {
    display: none;
  }

  #home-page-1 #section-7 .title {
    font-weight: 600;
    font-size: 28px;
    border-top: 2px solid var(--grey-8);
    margin-top: 2rem;
    padding-top: 2.5rem;
  }

  #home-page-1 #section-7 .text-wrap {
    margin-bottom: 0;
  }

  #home-page-1 #section-7 .sub-title {
    font-weight: 600;
    font-size: 19px;
  }

  #home-page-1 #section-7 .under-sub-title {
    display: none;
  }

  #home-page-1 #section-7 .sub-title-2 {
    display: block;
    text-align: center;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-7 #slider-3 {
    display: block;
  }

  #home-page-1 #section-7 .cta-btn--mobile {
    display: flex;
  }

  #home-page-1 #section-7 .splideAutoScrollLeft,
  #home-page-1 #section-7 .splideAutoScrollRight {
    display: none;
  }

  #home-page-1 #section-7 .title {
    font-weight: 600;
    font-size: 28px;
    border-top: 2px solid var(--grey-8);
    margin-top: 2rem;
    padding-top: 2.5rem;
  }

  #home-page-1 #section-7 .text-wrap {
    margin-bottom: 0;
  }

  #home-page-1 #section-7 .sub-title {
    font-weight: 600;
    font-size: 19px;
  }

  #home-page-1 #section-7 .under-sub-title {
    display: none;
  }

  #home-page-1 #section-7 .sub-title-2 {
    display: block;
    text-align: center;
  }
}

#home-page-1 #section-8 .heading {
  color: var(--grey-10);
  text-align: center;
  margin: 3.5rem 0;
}

@media (max-width: 479px) {
  #home-page-1 #section-8 .heading {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    box-sizing: border-box;
    margin: 2rem 0 1.5rem;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-8 .heading {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    box-sizing: border-box;
    margin: 2rem 0 1.5rem;
  }
}

#home-page-1 #section-8 .pricing {
  display: flex;
  gap: 0.5rem;
  color: var(--grey-8);
  justify-content: center;
}

#home-page-1 #section-8 .pricing-item {
  min-height: 538px;
  flex: 1;
  padding: 30px 1.5rem;
  box-sizing: border-box;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 479px) {
  #home-page-1 #section-8 .pricing-item {
    max-width: 317px;
    min-height: 468px;
  }

  #home-page-1 #section-8 .pricing-item--desktop {
    display: none;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-8 .pricing-item {
    max-width: 400px;
    max-height: 468px;
  }

  #home-page-1 #section-8 .pricing-item--desktop {
    display: none;
  }
}

#home-page-1 #section-8 .pricing-item__price {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  min-height: 70px;
}

#home-page-1 #section-8 .pricing-item__price-value {
  font-family: "Anton", sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--salmon-normal);
}

#home-page-1 #section-8 .pricing-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1 0 auto;
}

#home-page-1 #section-8 .pricing-item__name {
  color: var(--grey-10);
}

#home-page-1 #section-8 .pricing-item__feature-list {
  flex: 1 0 auto;
  padding: 1rem 0;
  box-sizing: border-box;
}

#home-page-1 #section-8 .pricing-item__feature-item {
  margin-left: 1rem;
  padding-left: 0.5rem;
  list-style-type: "•";
}

#home-page-1 #section-8 .pricing-item__button {
  background-color: var(--blue-normal);
  color: var(--grey-10);
  padding: 11px;
  line-height: 140%;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  transition: all 0.2s;
  border: none;
  outline: none;
/* [052402TIN] add cursor pointer when hover */
    cursor: pointer;
}

#home-page-1 #section-8 .pricing-item__button:active {
  background-color: var(--blue-normal-active);
}

#home-page-1 #section-8 .pricing-item--highlight {
  background-color: var(--salmon-normal);
  color: white;
  position: relative;
  display: flex;
  min-width: 317px;
  padding: 30px;
  box-shadow: -9px -5px 38.5999984741px 0px rgba(89, 25, 48, 0.3);
}

#home-page-1 #section-8 .pricing-item--highlight .pricing-item__button {
  background-color: white;
}

#home-page-1 #section-8 .pricing-item--highlight .pricing-item__button:active {
  background-color: var(--grey-1);
}

#home-page-1 #section-8 .pricing-item--highlight::after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 144px;
  padding: 0.5rem;
  border-radius: 0 0 14px 14px;
  background-color: white;
  content: "Recommended";
  color: var(--salmon-normal);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

#home-page-1 #section-8 .splide__sr {
  display: none;
}

#home-page-1 #section-8 .splide__slide .pricing-item {
  margin: 0 auto;
}

#home-page-1 #section-8 #pricing-slider {
  display: none;
}

#home-page-1 #section-8 #pricing-slider .splide__pagination {
  display: none;
}

#home-page-1 #section-8 .pricing-slider-paginator {
  display: none;
  margin: 3rem auto 0;
  width: 100%;
  max-width: 317px;
  gap: 0.5rem;
  justify-content: space-between;
}

#home-page-1 #section-8 .pricing-slider-paginator__item {
  border: none;
  background-color: white;
  color: var(--grey-8);
  padding: 10px 22px;
  box-sizing: border-box;
  border-radius: 30px;
  transition: all 0.2s;
}

#home-page-1 #section-8 .pricing-slider-paginator__item--active {
  background-color: var(--salmon-normal);
  color: white;
}

@media (max-width: 479px) {
  #home-page-1 #section-8 #pricing-slider {
    display: block;
  }

  #home-page-1 #section-8 .pricing-slider-paginator {
    display: flex;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-8 #pricing-slider {
    display: block;
  }

  #home-page-1 #section-8 .pricing-slider-paginator {
    display: flex;
  }
}

#home-page-1 #section-9 {
  margin: 3rem 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

#home-page-1 #section-9 .page-row {
  border-radius: 6px;
  color: white;
  padding: 2rem;
  box-sizing: border-box;
  background: linear-gradient(88.65deg, #33BCDA 50.15%, rgba(169, 240, 255, 0) 101.52%), url(https://foodiemenu.co/wp-content/uploads/2024/01/section-9-bg-h.png) center no-repeat;
  background-size: cover;
}

@media (max-width: 479px) {
  #home-page-1 #section-9 .page-row {
    background: linear-gradient(180deg, #33BCDA 50.95%, transparent 93.44%), url(https://foodiemenu.co/wp-content/uploads/2024/01/section-9-bg-v.png) no-repeat, lightgray -113.391px 197.558px/152.74% 94.242% no-repeat;
    min-height: 687px;
    padding: 2.5rem 1rem 0;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-9 .page-row {
    background: linear-gradient(180deg, #33BCDA 50.95%, transparent 93.44%), url(https://foodiemenu.co/wp-content/uploads/2024/01/section-9-bg-v.png) bottom center no-repeat, lightgray -113.391px 197.558px/152.74% 94.242% no-repeat;
    min-height: 687px;
    padding: 2.5rem 1rem 0;
  }
}

#home-page-1 #section-9 .heading {
  margin-bottom: 1rem;
}

#home-page-1 #section-9 .content {
  margin-bottom: 2rem;
  max-width: 802px;
}

#home-page-1 #section-9 .cta-btn {
  padding: 16px;
  box-sizing: border-box;
  background-color: var(--salmon-normal);
  border-radius: 4px;
  transition: all 0.2s;
  box-shadow: none;
}

#home-page-1 #section-9 .cta-btn:active {
  background-color: var(--salmon-normal-active);
}

@media (max-width: 479px) {
  #home-page-1 #section-9 .heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
  }

  #home-page-1 #section-9 .content {
    font-size: 16px;
    font-weight: 500;
  }
}

#home-page-1 #section-10 {
  margin: 4rem 0 2rem;
}

#home-page-1 #section-10 .section-wrap {
  width: 100%;
  margin: 0 auto;
  color: var(--grey-10);
  max-width: 1100px;
}

#home-page-1 #section-10 .upper-heading {
  text-align: center;
}

#home-page-1 #section-10 .heading {
  text-align: center;
  margin-bottom: 1.25rem;
}

#home-page-1 #section-10 .accordion {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin: 2rem 0;
}

@media (max-width: 479px) {
  #home-page-1 #section-10 .accordion {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-10 .accordion {
    flex-direction: column;
    gap: 1rem;
  }
}

#home-page-1 #section-10 .accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

#home-page-1 #section-10 .accordion-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--grey-3);
  padding-bottom: 2rem;
  min-height: 80px;
  box-sizing: border-box;
}

@media (max-width: 479px) {
  #home-page-1 #section-10 .accordion-item {
    padding-bottom: 1rem;
  }
}

#home-page-1 #section-10 .accordion-item__panel {
  display: none;
}

@media (max-width: 479px) {
  #home-page-1 #section-10 .accordion-item__panel {
    font-size: 13px;
    font-weight: 500;
  }
}

#home-page-1 #section-10 .accordion-item__heading {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

@media (max-width: 479px) {
  #home-page-1 #section-10 .accordion-item__heading {
    font-size: 16px;
    font-weight: 600;
  }
}

#home-page-1 #section-10 .accordion-item__heading-icon {
  color: var(--grey-3);
  width: 30px;
  height: 30px;
  flex-shrink: 0;
/* [052402TIN] add cursor pointer when hover */
    cursor: pointer;
}

#home-page-1 #section-10 .accordion-item__heading-icon #minus-path {
  display: none;
}

#home-page-1 #section-10 .accordion-item__heading-icon #plus-path {
  display: block;
}

@media (max-width: 479px) {
  #home-page-1 #section-10 .accordion-item__heading-icon {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 740px) and (max-width: 1023px) {
  #home-page-1 #section-10 .accordion-item__heading-icon {
    width: 16px;
    height: 16px;
  }
}

#home-page-1 #section-10 .accordion-item:has(input:checked) .accordion-item__panel {
  display: block;
}

#home-page-1 #section-10 .accordion-item:has(input:checked) .accordion-item__heading-icon #minus-path {
  display: block;
}

#home-page-1 #section-10 .accordion-item:has(input:checked) .accordion-item__heading-icon #plus-path {
  display: none;
}

@media (max-width: 479px) {
  #home-page-1 #section-10 .upper-heading {
    font-size: 16px;
    font-family: 500;
  }

  #home-page-1 #section-10 .heading {
    font-size: 28px;
    font-weight: 600;
    margin: 0.5rem 0 1.5rem;
  }
}

/*# sourceMappingURL=home-page-1.1.css.map */