html {
  font-family: 'Poppins', sans-serif;
  font-size: 62.5%; /* 16px * 62.5 = 10px = 1rem */
  box-sizing: border-box;
}
body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  font: 1.6rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
  background-color: #f5f5f5;
}
main {
  margin: 0 auto;
  width: 100%;
  min-width: 160rem;
  max-width: 200rem;
  background-color: #fff;
  overflow: visible;
}
@media (max-width: 431px) {
  body {
    min-width: 36rem;
    max-width: 43rem;
  }
  main {
    min-width: 36rem;
    max-width: 43rem;
  }
}

/*****************************/
/* hero-section for descktop */
/*****************************/
.hero-section {
  position: relative;
  width: 100%;
  height: 80rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('/img/hero-bg1-desktop.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.hero-section-wrap {
  position: relative;
  width: 97.5rem;
  height: 80rem;
}
.hero-text-wrap {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 97.5rem;
}
.hero-deco {
  position: absolute;
  top: 40%;
  left: 107%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero-title {
  font-family: Inter;
  font-size: 80px;
  font-weight: 800;
  line-height: 96.82px;
  color: #F6D756;
  text-align: left;
}
.hero-message {
  margin-top: 20px;
  font-family: Plus Jakarta Sans;
  font-size: 22px;
  font-weight: 400;
  line-height: 27.72px;
  text-align: left;
  color: #FFFFFF;
}
.hero-button-wrap {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 97.5rem;
  height: 5.3rem;

  display: flex;
  gap: 4rem;
  font-family: Open Sans;
  font-size: 25px;
  font-weight: 600;
  line-height: 3.8rem;
  text-align: center;
  z-index: 1;
}
.hero-button-wrap > a:nth-child(1) {
  padding: 1rem 0rem;

  width: 181px;
  height: 123px;
  border-radius: 25px;
  opacity: 0px;

  font-family: Poppins;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;

  color: #000;
  background-color: #F6D756;
  text-decoration: none;
  box-shadow: 10px 10px 4px 0px #00000099;
  cursor: pointer;
}
.hero-button-wrap > a:nth-child(2) {
  padding: 1rem 0rem;

  width: 168px;
  height: 73px;
  border-radius: 25px;
  border: 2px solid #FFFFFF;
  opacity: 0px;

  font-family: Poppins;
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: center;

  color: #fff;
  background-color: #000;
  text-decoration: none;
  box-shadow: 10px 10px 4px 0px #00000099;
  cursor: pointer;
}
/***************************/
/* hero-section for mobile */
/***************************/
.hero-section-mobile {
  position: relative;
  width: 100%;
  min-width: 36rem;
  height: 45rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('/img/hero-bg-mobile.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.hero-section-wrap-mobile {
  margin: 0 auto;
  position: relative;
  width: 36rem;
  height: 100%;
}
.hero-text-wrap-mobile {
  padding: 0 2rem;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
}
.hero-title-mobile {
  font-family: Inter;
  font-size: 40px;
  font-weight: 800;
  line-height: 4.841rem;
  color: #F6D756;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.hero-message-mobile {
  margin-top: 20px;
  font-family: Plus Jakarta Sans;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.12px;
  text-align: left;
  color: #FFFFFF;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.hero-button-wrap-mobile {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 3.6rem;

  display: flex;
  justify-content: center;
  gap: 2rem;
}
.hero-button-wrap-mobile > a {
  padding: 1rem 0rem;

  width: 11.5rem;
  height: 3.6rem;

  font-family: Poppins;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8rem;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

  border-radius: 15px;
  text-decoration: none;
  box-shadow: 4px 4px 3px 0px #00000099;
  cursor: pointer;
  box-sizing: border-box;
}
.hero-button-wrap-mobile > a:nth-child(1) {
  color: #000;
  background-color: #F6D756;

}
.hero-button-wrap-mobile > a:nth-child(2) {
  line-height: 1.3rem;
  color: #fff;
  background-color: #000;
  border: 2px solid #FFFFFF;
}

@media (max-width: 431px) {
  .hero-section {
    display: none;
  }
  .hero-section-mobile {
    display: block;
  }
}
@media (min-width: 431px) {
  .hero-section {
    display: flex;
  }
  .hero-section-mobile {
    display: none;
  }
}

/*****************************/
/* menu-section for descktop */
/*****************************/
.menu-section {
  position: relative;
  width: 100%;
  height: 153.8rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('/img/menu-bg-desktop.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.menu-section > .menu01 {
  padding: 8rem 0;
  width: 97.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #000;
}
.menu-section > .menu01 > .menu01-left {
  width: 42.3rem;
  height: 56.2rem;
  overflow: hidden;
  border-radius: 1rem;
}
.menu-section > .menu01 > .menu01-left > video {
  margin-top: -9rem;
}
.menu01-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu01-item {
  padding: 4.1rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu01-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu01-item-flavor {
  font-size: 14px;
}
.munu01-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu-section > .menu02 {
  /* padding: 8rem 0; */
  width: 97.5rem;

  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #000;
}
.menu-section > .menu02 > .menu02-left {
  padding: 7.8rem 0 9rem;
}
.menu-section > .menu02 > .menu02-right {
  width: 40.6rem;
  height: 43.2rem;
  border-radius: 1rem;
}
.menu-section > .menu02 > .menu02-right > img {
  margin-left: 0.3rem;
}
.menu-section > .menu02 > .menu02-right > img:nth-child(1) {
  margin-top: 1rem;
  width: 31.6rem;
  height: 29rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}
.menu-section > .menu02 > .menu02-right > img:nth-child(2) {
  margin-top: -5rem;
  width: 34.9rem;
  height: 31.5rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}
.menu02-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu02-item {
  padding: 3.6rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu02-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu02-item-flavor {
  font-size: 14px;
}
.munu02-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}
.menu03-title {
  margin-top: 6rem;
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu03-item {
  padding: 3.6rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu03-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu03-item-flavor {
  font-size: 14px;
}
.munu03-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

/* Test for menu4*/
.menu-section > .menu04 {
  padding: 8rem 0;
  width: 97.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #000;
}
.menu-section > .menu04 > .menu04-left {
  width: 52.3rem;
  height: 56.2rem;
  overflow: hidden;
  border-radius: 1rem;
}
.menu-section > .menu04 > .menu04-left > video {
  margin-top: -9rem;
}
.menu04-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu04-item {
  padding: 4.1rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu04-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu04-item-flavor {
  font-size: 14px;
}
.munu04-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu05-title {
  margin-top: 20rem;
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu05-item {
  padding: 3.6rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu05-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu05-item-flavor {
  font-size: 14px;
}
.munu05-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu-section > .menu04 > .menu04-right {
  width: 40.6rem;
  height: 43.2rem;
  border-radius: 1rem;
}
.menu-section > .menu04 > .menu04-right > img {
  margin-left: 0.3rem;
}
.menu-section > .menu04 > .menu04-right > img:nth-child(1) {
  margin-top: 1rem;
  width: 31.6rem;
  height: 29rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}
.menu-section > .menu04 > .menu04-right > img:nth-child(2) {
  margin-top: -5rem;
  width: 34.9rem;
  height: 31.5rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}

.menu-section > .menu04 {
  padding: 8rem 0;
  width: 97.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #000;
}
.menu-section > .menu04 > .menu04-left {
  width: 52.3rem;
  height: 56.2rem;
  overflow: hidden;
  border-radius: 1rem;
}
.menu-section > .menu04 > .menu04-left > video {
  margin-top: -9rem;
}
.menu04-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu04-item {
  padding: 4.1rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu04-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu04-item-flavor {
  font-size: 14px;
}
.munu04-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu05-title {
  margin-top: 20rem;
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu05-item {
  padding: 3.6rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu05-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu05-item-flavor {
  font-size: 14px;
}
.munu05-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu-section > .menu04 > .menu04-right {
  width: 40.6rem;
  height: 43.2rem;
  border-radius: 1rem;
}
.menu-section > .menu04 > .menu04-right > img {
  margin-left: 0.3rem;
}
.menu-section > .menu04 > .menu04-right > img:nth-child(1) {
  margin-top: 1rem;
  width: 31.6rem;
  height: 29rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}
.menu-section > .menu04 > .menu04-right > img:nth-child(2) {
  margin-top: -5rem;
  width: 34.9rem;
  height: 31.5rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}


/* test for New Menu Section */
.menu-section1 {
  position: relative;
  width: 100%;
  height: 60.8rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('/img/menu-bg-desktop.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.menu-section1 > .menu04 {
  padding: 8rem 0;
  width: 97.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #000;
}
.menu-section1 > .menu04 > .menu04-left {
  width: 52.3rem;
  height: 56.2rem;
  overflow: hidden;
  border-radius: 1rem;
}
.menu-section1 > .menu04 > .menu04-left > video {
  margin-top: -9rem;
}
.menu04-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu04-item {
  padding: 4.1rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu04-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu04-item-flavor {
  font-size: 14px;
}
.munu04-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu05-title {
  margin-top: 20rem;
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu05-item {
  padding: 3.6rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu05-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu05-item-flavor {
  font-size: 14px;
}
.munu05-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu-section1> .menu04 > .menu04-right {
  width: 40.6rem;
  height: 43.2rem;
  border-radius: 1rem;
}
.menu-section1 > .menu04 > .menu04-right > img {
  margin-left: 0.3rem;
}
.menu-section1 > .menu04 > .menu04-right > img:nth-child(1) {
  margin-top: 1rem;
  width: 31.6rem;
  height: 29rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}
.menu-section1 > .menu04 > .menu04-right > img:nth-child(2) {
  margin-top: -5rem;
  width: 34.9rem;
  height: 31.5rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}


/*Menu Section 2 for Sides */
.menu-section2 {
  position: relative;
  width: 100%;
  height: 60.8rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('/img/menu-bg-desktop.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.menu-section2 > .menu04 {
  padding: 8rem 0;
  width: 97.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.1rem solid #000;
}
.menu-section2 > .menu04 > .menu04-left {
  width: 52.3rem;
  height: 56.2rem;
  overflow: hidden;
  border-radius: 1rem;
}
.menu-section2 > .menu04 > .menu04-left > video {
  margin-top: -9rem;
}
.menu04-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu04-item {
  padding: 4.1rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu04-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu04-item-flavor {
  font-size: 14px;
}
.munu04-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu05-title {
  margin-top: 20rem;
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
}
.menu05-item {
  padding: 3.6rem 0;
  width: 44.4rem;
  height: 5.5rem;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.munu05-item-title {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.munu05-item-flavor {
  font-size: 14px;
}
.munu05-item-price {
  width: 6.3rem;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  color: #ff0000;
  text-align: left;
}

.menu-section2> .menu04 > .menu04-right {
  width: 40.6rem;
  height: 43.2rem;
  border-radius: 1rem;
}
.menu-section2 > .menu04 > .menu04-right > img {
  margin-left: 0.3rem;
}
.menu-section2 > .menu04 > .menu04-right > img:nth-child(1) {
  margin-top: 1rem;
  width: 31.6rem;
  height: 29rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}
.menu-section2 > .menu04 > .menu04-right > img:nth-child(2) {
  margin-top: -5rem;
  width: 34.9rem;
  height: 31.5rem;
  text-align: center;
  border-radius: 1rem 0 0 0;
}

/***************************/
/* menu-section for mobile */
/***************************/
.menu-section-mobile {
  position: relative;
  width: 100%;
  height: 100%;

  background-image: url('/img/menu-bg-mobile.webp');
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
}
.menu-wrap-mobile {
  position: relative;
  padding: 0 3rem 3rem;
  width: 100%;
}
.menu-category-mobile {
  position: relative;
  padding-top: 3rem;
}
.menu-title-mobile {
  position: relative;
  font-family: Poppins;
  font-size: 30px;
  font-weight: 900;
  line-height: 4.5rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  z-index: 1;
}
.menu-img01-mobile {
  position: absolute;
  top: 0;
  right: 3.6rem;

  width: 14.7rem;
  height: 10.6rem;
}
.menu-img02-mobile {
  position: absolute;
  top: 1.3rem;
  right: -3.2rem;

  width: 13.6rem;
  height: 9.8rem;
}
.menu-img03-mobile {
  position: absolute;
  top: -3.1rem;
  right: 2.8rem;

  width: 14.8rem;
  height: 13.6rem;
}
.menu-img04-mobile {
  position: absolute;
  top: -3.1rem;
  right: -2rem;

  width: 16.4rem;
  height: 14.8rem;
  z-index: 0;
}
.menu-item-mobile {
  position: relative;
  padding: 1rem 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.menu-item-title-mobile {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4rem;
  color: #000;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.menu-item-flavor-mobile {
  padding-top: 0.4rem;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8rem;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.menu-item-price-mobile {
  width: 3rem;
  font-size: 17px;
  font-weight: 700;
  line-height: 2.55rem;
  color: #ff0000;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.menu-separator-mobile {
  margin-top: 2.7rem;
  border: 0.02rem solid #000000;
}

@media (max-width: 431px) {
  .menu-section {
    display: none;
  }
  .menu-section-mobile {
    display: block;
  }
}
@media (min-width: 431px) {
  .menu-section {
    display: flex;
  }
  .menu-section-mobile {
    display: none;
  }
}

/*********************************/
/* about-us-section for descktop */
/*********************************/
.about-us-section {
  position: relative;
  width: 100%;
  height: 60rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url('/img/about-us-bg1-desktop.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.about-us-section > .about-us {
  position: relative;
  margin-top: 10rem;
  width: 97.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem
}
.about-us-section > .about-us > .about-us-title {
  font-family: Poppins;
  font-size: 45px;
  font-weight: 900;
  line-height: 6.75rem;
  text-align: center;
  color: #F6D756;
}
.about-us-section > .about-us > .about-us-message {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.4rem;
  text-align: left;
  color: #D5D2D2;
}
.about-us-section > .about-us-inverted-triangle {
  position: absolute;
  bottom: -5.5%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 0;
  height: 0;
  border-bottom: 2.2rem solid transparent;
  border-top: 2.2rem solid #000;
  border-left: 2.2rem solid transparent;
  border-right: 2.2rem solid transparent;
  z-index: 1;
}
.about-us-section > .about-us-yallow-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3rem;
  background: #F6D756;
}

/*******************************/
/* about-us-section for mobile */
/*******************************/
.about-us-section-mobile {
  position: relative;
  width: 100%;
  height: 54rem;

  background-image: url('/img/about-us-bg-mobile.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.about-us-section-mobile > .about-us-mobile {
  position: relative;
  padding: 4rem 2rem 0;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem
}
.about-us-section-mobile > .about-us-mobile > .about-us-title-mobile {
  font-family: Poppins;
  font-size: 30px;
  font-weight: 900;
  line-height: 4.5rem;
  color: #F6D756;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.about-us-section-mobile > .about-us-mobile > .about-us-message-mobile {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8rem;
  color: #D5D2D2;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}
.about-us-section-mobile > .about-us-inverted-triangle-mobile {
  position: absolute;
  bottom: -5.5%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 0;
  height: 0;
  border-bottom: 2rem solid transparent;
  border-top: 2rem solid #000;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  z-index: 1;
}
.about-us-section-mobile > .about-us-yallow-box-mobile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: #F6D756;
}

@media (max-width: 431px) {
  .about-us-section {
    display: none;
  }
  .about-us-section-mobile {
    display: block;
  }
}
@media (min-width: 431px) {
  .about-us-section {
    display: flex;
  }
  .about-us-section-mobile {
    display: none;
  }
}

/*******************************/
/* bottom-section for descktop */
/*******************************/
.bottom-section {
  position: relative;
  width: 100%;
  height: 37.4rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7rem;

  background-image: url('/img/bottom-bg-desktop.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}
.bottom-section-wrap {
  position: relative;
  width: 97.5rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7rem;
}
.bottom-section-logo {
  width: 37rem;
  height: 14.8rem;
}
.bottom-section-logo > img {
  width: 22.1rem;
  height: 100%;
}
.bottom-section-contact {
  padding: 1rem 2rem;
  width: 20rem;
  height: 20rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-section-contact-info {
  width: 100%;
  font-family: Poppins;
  text-align: left;
}
.bottom-section-contact-info-title {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 3rem;
  color: #DFA011;
}
.bottom-section-contact-info-phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 3rem;
  color: #EAE6E6;
  text-decoration: none;
}
.bottom-section-contact-info-email {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25rem;
  color: #EAE6E6;
}
.bottom-section-contact-info-address {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25rem;
  color: #EAE6E6;
}
.bottom-section-contact-sns {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  gap: 1rem;
}
.bottom-section-contact-sns-instagram {
  width: 3.4rem;
  height: 3.4rem;
  cursor: pointer;
}
.bottom-section-contact-sns-facebook {
  width: 3.4rem;
  height: 3.4rem;
  cursor: pointer;
}
.bottom-section-contact-sns-email {
  width: 3.4rem;
  height: 3.4rem;
  cursor: pointer;
}
.bottom-section-business-hours {
  padding: 1rem 0rem;
  height: 20rem;
  font-family: Poppins;
  text-align: left;
}
.bottom-section-business-hours > div {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 3rem;
  color: #DFA011;
}
.bottom-section-business-hours > ul > li {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25rem;
  color: #EAE6E6;
}

/*****************************/
/* bottom-section for mobile */
/*****************************/
.bottom-section-mobile {
  position: relative;
  width: 100%;
  height: 63.9rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7rem;

  background-image: url('/img/bottom-bg-mobile.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.bottom-section-wrap-mobile {
  padding-top: 6rem;
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.bottom-section-logo-mobile {
  width: 15.3rem;
}
.bottom-section-contact-sns-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.bottom-section-contact-mobile {
  padding: 2rem;
  width: 36rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.bottom-section-contact-info-mobile {
  width: 100%;
  font-family: Poppins;
  text-align: center;
}
.bottom-section-contact-info-title-mobile {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 3rem;
  color: #DFA011;
}
.bottom-section-contact-info-phone-mobile {
  font-size: 20px;
  font-weight: 700;
  line-height: 3rem;
  color: #EAE6E6;
  text-decoration: none;
}
.bottom-section-contact-info-email-mobile {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25rem;
  color: #EAE6E6;
}
.bottom-section-contact-info-address-mobile {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25rem;
  color: #EAE6E6;
}
.bottom-section-business-hours-mobile {
  padding: 0rem 2rem;
  width: 36rem;
  font-family: Poppins;
  text-align: center;
}
.bottom-section-business-hours-mobile > div {
  margin-bottom: 1rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 3rem;
  color: #DFA011;
}
.bottom-section-business-hours-mobile > ul > li {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.25rem;
  color: #EAE6E6;
}

@media (max-width: 431px) {
  .bottom-section {
    display: none;
  }
  .bottom-section-mobile {
    display: block;
  }
}
@media (min-width: 431px) {
  .bottom-section {
    display: flex;
  }
  .bottom-section-mobile {
    display: none;
  }
}