* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Conten;
  src: url("/fonts/microsoftyahei.ttf");
}

@font-face {
  font-family: title;
  src: url("/fonts/Noto.ttf");
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}

.button,
.button-black {
  max-width: 253px;
  height: 59px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 100%;
  padding: 0px 30px;
  font-family: title;
  cursor: pointer;
  background-color: #00b1ff;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.1s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 177, 255, 0.2);
}

.button {
  color: white;
}

.button-black {
  color: black;
}

h1 {
  font-size: 70px;
}

h2 {
  font-family: title;
  font-size: 30px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}

h3 {
  font-size: 40px;
}

h3,
h1 {
  font-family: title;
  font-weight: 500;
}

h4 {
  font-family: conten;
  font-weight: 300;
  font-size: 32px;
}

h5 {
  font-size: 20px;
  font-family: conten;
  font-weight: 300;
}

.h5-bold {
  font-size: 23px;
  font-family: conten;
  text-align: center;
}

h6 {
  font-family: 13px;
  font-family: conten;
  font-weight: 400;
}

p {
  font-size: 20px;
  font-family: conten;
  font-weight: 300;
}

a {
  all: unset;
}

.button-up {
  background-color: #007bff;
  position: fixed;
  top: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  right: 40px;
}

.button:hover {
  background-color: #0095da;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 177, 255, 0.3);
}

.button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(0, 177, 255, 0.2);
}

/* .section-menu style */
.section-menu {
  background-color: rgb(0, 195, 255);
  height: 70px;
}

.section-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* Prevents transparency when overlapping content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: shadow for separation */
}

.menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vh;
  height: 70px;
}

.menu-container-phone {
  display: none;
}

.menu-container>a {
  font-size: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  position: relative;
  font-family: conten;
  font-weight: 300;
  transition: color 0.3s ease;
}

/* Create the underline */
.menu-container>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease, left 0.3s ease;
}

/* Animate the underline on hover */
.menu-container>a:hover::after {
  width: 100%;
  left: 0;
}

.m-language {
  max-width: 80px;
  text-align: center;
  width: 100%;
  background-color: white;
  padding: 5px 0px;
  font-family: conten;
  border-radius: 2px;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 35px;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  color: black;
  width: 100%;
  max-width: 80px;
  border-radius: 3px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 5px 5px;
  z-index: 1000;
  text-align: left;
}

.m-language {
  position: relative;
  cursor: pointer;
}

.sub-menu {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
}

.sub-1 {
  padding: 5px 10px;
  cursor: pointer;
}

.sub-1:hover {
  background: #eee;
}

/* Sub-menu item style */
.sub-1 {
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border-radius: 3px;
}

/* Hover feel on submenu items */
.sub-1:hover {
  color: #007bff;
  /* Nice blue highlight */
  transform: translateX(3px);
}

.m-logo {
  height: 70px;
  max-width: 100px;
  width: 100%;
  overflow: hidden;
}

.logo-block {
  height: 90px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -10px;
}

.m-logo img {
  height: 40px;
}

.menu-container .m-laguage {
  background-color: white;
  color: black;
  padding: 0px 10px;
  border-radius: 3px;
}

/* section-baner style */
.baner-container {
  margin-top: 70px;
  background-image: url("/img/background-animation.webm");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0px 10px;
}

/* .video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
} */

.baner-container video {
  height: 500px;
  width: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}

/* .video-background .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 2rem;
} */
.baner-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.m-header {
  margin-bottom: 4vh;
}

/* section goal */

.goal-container {
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.goal-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
}

.goal-block-left,
.goal-block-right {
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contain-two-box {
  height: 330px;
  width: 330px;
  position: relative;
  cursor: pointer;
}

.contain-box1 {
  background-color: #00b1ff;
  height: 330px;
  width: 330px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.contain-box2 {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #ffffff;
  height: 330px;
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.goal-title h2 {
  max-width: 180px;
  width: 100%;
  border-bottom: 2px solid black;
}

/* Hover effect - make box2 move over box1 */
.contain-two-box:hover .contain-box2 {
  top: 0;
  left: 0;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
  z-index: 1;
}

.goal-title {
  width: 100%;
}

.contain-box2 img {
  width: 103px;
  height: 108px;
}

.logo-title img {
  width: 230.53px;
  height: 88px;
}

/* section services style */

.service-container {
  background-color: #7b7b7b1a;
  padding: 30px 0px;
}

.service-block-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.service-block-title p {
  max-width: 1000px;
  text-align: center;
  padding: 10px;
}

.service-block-title h2 {
  margin-bottom: 10px;
}

.service-two-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
}

.service-block-left,
.service-block-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-block-right h2,
.service-block-left h2 {
  margin-bottom: 30px;
}

.service-block-right h5,
.service-block-left h5 {
  margin-bottom: 30px;
}

.service-block-left img {
  height: 219px;
  width: 219px;
}

.service-icon-block {
  height: 219px;
  width: 200px;
  position: relative;
}

.service-icon-block img {
  height: 219px;
  width: 200px;
}

.service-icon-block .apple-icon {
  position: absolute;
  left: 100px;
  z-index: -1;
}

/* section emenu style */
.emenu-container {
  background-color: white;
  padding: 30px 0px;
}

.emenu-block-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.emenu-block-title p {
  max-width: 1000px;
  text-align: center;
}

.emenu-block-title h2 {
  margin-bottom: 10px;
}

.emenu-block-title .h5-bold {
  margin-bottom: 10px;
}

.emenu-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.emenu-body {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.emenu-body img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1055.7 / 442;
  /* Maintains aspect ratio */
  max-width: 1055.7px;
  /* Prevents it from growing larger */
  margin: 0 auto;
  /* Optional: centers the image */
}

.button-black img {
  margin: 5px 0px 0px 5px;
}

/* section Trading style */
.section-trading {
  overflow: hidden;
}

.trading-container {
  padding: 30px 0px;
  background-color: #f2f2f2;
}

.trading-block-title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.trading-block-title p {
  text-align: center;
  padding: 10px;
}

.trading-block-title h2 {
  margin-bottom: 10px;

}

.trading-two-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  padding: 20px;
}

.trading-block-right,
.trading-block-left {
  max-width: 700px;
  width: 100%;
}

.trading-contain-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 10px;
}

.contain-signal-web video,
.contain-signal-phone video {
  width: 100%;
  height: 40vh;
}

video {
  user-select: none;
  -webkit-user-drag: none;
}

.content-text-each-offer {
  display: flex;
  align-items: flex-start;
  line-height: 2;
  font-family: conten;
  font-size: 20px;
  font-weight: 300;
}

.content-text-each-offer img {
  margin-right: 10px;
  margin-top: 12px;
}


/* section lottery style */
.lottery-container {
  padding: 30px 0px;
  background-image: url("/img/lottery-baner.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 690px;
}

.lottery-block-title h2 {
  margin-bottom: 10px;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.lottery-block-title .h5-bold {
  margin-bottom: 10px;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white,
    1px 1px 0 white;
}

.lottery-body {
  margin-top: 50px;
}

.lottery-two-block {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  padding: 20px;
}

.lottery-block-right,
.lottery-block-right {
  max-width: 600px;
  width: 100%;
}

.lottery-block-left img {
  width: 100%;
  height: 359px;
}

.lottery-description {
  background-color: #ffffffb2;
  height: 359px;
  padding: 20px;
  border-radius: 16px;
  line-height: 36px;
  position: relative;
}

.lottery-describe-row {
  display: flex;
  margin-top: 15px;
  line-height: 3;
}

.lottery-describe-row .poin {
  margin-right: 10px;
}

.lottery-description p {
  color: black;
  font-size: 18px;
  font-weight: 400;
}

.lottery-describe-row:nth-child(2) {
  margin-bottom: -50px;
}

.more {
  width: 100%;
  text-align: center;
  font-family: title;
  position: absolute;
  font-size: 20px;
  bottom: 20px;
  left: 0;
}

/* section portfolio style */

.portfolio-container {
  padding: 30px 0px;
}

.contain-port-img {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 30px;
  gap: 30px;
}

.contain-port-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  /* optional for smooth corners */
}

.more-port {
  width: 100%;
  text-align: center;
  font-family: title;
  cursor: pointer;
  font-size: 20px;
}

/* section client style */
.client-conatiner {
  padding: 30px 0px;
}

.client-all-block {
  padding: 20px;
  background: #fff;
}

.client-each-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.client-each-block img {
  height: 100px;
}

.client-logo-title {
  text-transform: uppercase;
  max-width: 100px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  word-wrap: break-word;
  height: 40px;
  margin-top: 10px;
}

/* section contact style */

.contact-container {
  padding: 30px 10px;
  background-color: #f5f5f5;
}

.contact-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-two-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  max-width: 1000px;
  width: 100%;
}

.contact-block-left {
  max-width: 600px;
  width: 100%;
}

.contact-block-right {
  max-width: 500px;
  width: 100%;
}

.input-block {
  margin: 5px 0px;
}

label {
  font-size: 20px;
  font-family: conten;
  font-weight: 300;
}

.input-block input {
  height: 49px;
  width: 100%;
  border-style: none;
  border: 1px solid gray;
  border-radius: 3px;
  margin: 5px 0px;
  padding: 10px;
  font-size: 20px;
  font-family: conten;
  font-weight: 300;
}

.choose-no-count {
  width: 100%;
  max-width: 110px;
  display: flex;
  align-items: center;
  padding: 0px;
  position: relative;
}

.input-block-no-count {
  display: flex;
  gap: 10px;
}

.input-block input:focus {
  border: none;
  outline: none;
}

.choose-no-count input {
  max-width: 80px;
  border-right: none;
  border-radius: 3px 0px 0px 3px;

}

.choose-no-count input:focus {
  border: none;
  outline: none;
}

.choose-icon {
  background-color: white;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 5px;
  border-radius: 0px 3px 3px 0px;
  border: 1px solid gray;
  border-left: none;
  cursor: pointer;
}

.list-count-code {
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 110px;
  width: 100%;
  top: 56px;
  z-index: 999;
  font-family: conten;
  display: none;
}

.list-count-code-each {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.list-count-code-each:hover {
  background-color: #f5f5f5;
  color: #007bff;
}

textarea {
  width: 100%;
  border-style: none;
  border: 1px solid gray;
  margin: 5px 0px;
  padding: 10px;
  font-size: 20px;
  font-family: conten;
  font-weight: 300;
  border-radius: 3px;
}

textarea:focus {
  border: none;
  outline: none;
}

.contact-block-right {
  margin-top: -100px;
}

.contact-socail {
  display: flex;
  align-items: center;
  margin: 25px 0px;
}

.contact-block-right img {
  max-width: 150px;
}

.contact-socail img {
  margin-right: 10px;
  max-width: 60px;
  width: 100%;
}

.contact-socail-block h5 a {
  cursor: pointer;
}

.sub-block {
  width: 100%;
  display: flex;
  justify-content: end;
}

.submit-button {
  max-width: 167px;
  height: 57px;
  background-color: #0095da;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 100%;
  font-family: conten;
  border-radius: 7px;
  font-size: 24px;
  cursor: pointer;
}

/* section footer style */

.footer-container {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px;
}

.footer-container img {
  max-width: 47px;
  width: 100%;
  margin-left: 10%;
  margin-right: 20px;
}

.footer-container .footer-text {
  font-size: 30px;
  font-family: title;
  font-weight: 300;
}

/* Lottery system page style */

.lottery-block-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.lottery-container-header {
  padding: 30px 0px;
  background-image: url("/img/lottery-baner.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 690px;
}

.lottery-page-body {
  padding: 30px 0px;
  display: flex;
  justify-content: center;
}

.lottery-page-contain {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vh;
}

.lottery-page-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;
  height: 300px;
}

.lottery-page-block img {
  height: 60px;
  width: 100%;
  margin-bottom: 10px;
}

.lottery-page-block .h5-bold {
  margin-bottom: 10px;
}

.lottery-page-block p {
  max-width: 600px;
  width: 100%;
  padding-left: 15%;
}

/* Web App Dev style */
.web-app-dev-container {
  margin-top: 70px;
}

.web-app-dev-container {
  padding: 30px 0px;
}

.web-app-dev-body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.web-app-dev-body-contain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1500px;
  width: 100%;
  padding: 30px 0px;
}

.web-app-dev-each-block {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px;
}

.web-app-dev-each-block img {
  width: 100%;
}

.web-app-dev-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 10px;
}

.web-app-dev-title p {
  max-width: 1000px;
  text-align: center;
}

.web-app-dev-title h2 {
  margin-bottom: 30px;
  max-width: 600px;
}

.h36 {
  font-size: 36px;
  font-weight: 300;
  font-family: title;
  margin-bottom: 10px;
}

.web-app-dev-each-block p {
  max-width: 600px;
  width: 100%;
  margin-top: 25px;
  text-align: center;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-break: normal;
  line-height: 1.6;
}

/* eMENU Page style */
.section-emenu-page-head {
  margin-top: 70px;
}

.emenu-page-head-container {
  padding: 30px 20px;
  background-color: #f2f2f2;
}

.emenu-page-two-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 30px 0px;
}

.emenu-page-block-left {
  display: flex;
  justify-content: end;
}

.emenu-page-block-right {
  display: flex;
  justify-content: start;
}

.emenu-page-block-left img {
  max-width: 500px;
  width: 100%;
}

.emenu-page-block-right p {
  max-width: 500px;
  text-align: center;
}

/* section emenu page body style */

.emenu-page-dody-container {
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.emenu-page-dody-contain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 0px;
  max-width: 1500px;
  width: 100%;
}

.emenu-page-dody-each-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  position: relative;
}

.emenu-page-dody-each-block img {
  width: 100%;
}

.emenu-page-dody-each-block h2 {
  margin-bottom: 20px;
}

.emenu-page-dody-each-block p {
  max-width: 500px;
}

.emenu-page-dody-each-block p:nth-of-type(2) {
  /* Your styles here */
  font-style: italic;
  border-left: 2px solid #00b1ff;
  margin-top: 20px;
  font-weight: 200;
  padding-left: 20px;
}

.number-block {
  background-image: url("/img/number.svg");
  max-width: 79px;
  width: 100%;
  background-size: 100% 100%;
  height: 83px;
  font-family: title;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -25px;
  top: -25px;
}

.number-block2 {
  background-image: url("/img/number2.svg");
  max-width: 79px;
  width: 100%;
  background-size: 100% 100%;
  height: 83px;
  font-family: title;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -25px;
  top: -25px;
}

.number {
  font-size: 25px;
  margin-top: 10px;
  margin-left: -10px;
}

.number2 {
  font-size: 25px;
  margin-top: 10px;
  margin-left: 10px;
}

/* section emenu workflow style */

.emenu-system-body-contain {
  background-color: #e6f8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
  margin-top: 20px;
}

.emenu-system-body-contain img {
  max-width: 1170px;
  width: 100%;
}

.workflow-container {
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.workflow-container h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.step {
  flex: 1 1 220px;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: #f1f1f1;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  background-color: #e9ecef;
}

.step i {
  font-size: 50px;
  color: #007bff;
  margin-bottom: 15px;
}

.step h3 {
  margin: 10px 0 8px;
  color: #343a40;
  font-size: 25px;
}

.step p {
  color: #555;
  font-size: 14px;
}

/* media size */
@media(max-width:500px) {
  p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: normal;
    line-height: 1.6;
    font-size: 16px;
    max-width: 330px;
    /* Optional: to avoid stretching too wide */
  }

  h2 {
    font-size: 30px;
  }
}

/* media size section-menu */
@media (max-width: 810px) {
  .section-menu {
    height: 50px;
    padding: 0px;
  }

  .menu-container {
    display: none;
  }

  .menu-container-phone {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    align-items: center;
    height: 50px;
    z-index: 10;
  }

  .menu-phone-logo {
    height: 40px;
    width: 40px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .menu-phone-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .menu-phone-logo img {
    max-width: 25px;
    width: 100%;
    margin-left: 3px;
    cursor: pointer;
  }

  .hamberger-menu img {
    max-width: 40px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .sub-menu-phone-contain {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.789);
    display: none;
    z-index: 8;
  }

  .phone-menu-list {
    position: fixed;
    right: -200px;
    background-color: white;
    z-index: 9;
    font-size: 20px;
    width: 200px;
    height: 100vh;
    font-family: conten;
    transition: right 0.3s ease;
  }

  .phone-menu-list.active {
    right: 0;
    /* slide in */
  }

  .close-menu {
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: #00b1ff;
    right: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .close-menu img {
    max-width: 40px;
  }

  .phone-sub1 {
    cursor: pointer;
    padding: 0px 20px;
    line-height: 50px;
  }

  .phone-sub1:hover {
    background-color: rgb(0, 195, 255);
    color: white;
  }

  .laguage {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .laguage img {
    height: 30px;
    width: 50px;
    transition: transform 0.2s ease;
  }

  .laguage img:hover {
    transform: scale(1.1);
  }

  .option-choose {
    position: absolute;
    top: 30px;
    display: none;
    gap: 5px;
    padding: 5px;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 100;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

/* media size section-baner */
@media (max-width: 560px) {
  .baner-container {
    height: 400px;
    margin-top: 50px;
  }

  .baner-container video {
    height: 400px;
  }
}

/* media size section-goal */
@media (max-width: 885px) {
  .goal-block {
    grid-template-columns: 1fr;
  }

  .goal-title {
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .goal-title h2 {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .goal-block-right {
    margin-top: 50px;
    padding: 10px;
  }
}

@media (max-width: 445px) {
  .contain-two-box {
    height: 300px;
    max-width: 300px;
    width: 100%;
    margin-left: -30px;
  }

  .contain-box1 {
    height: 300px;
    max-width: 300px;
    width: 100%;
  }

  .contain-box2 {
    height: 300px;
    max-width: 300px;
    width: 100%;
  }
}

/* media size section-service */
@media (max-width: 885px) {
  .service-two-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }
}

@media (max-width: 560px) {
  .service-icon-block {
    height: 219px;
    width: 200px;
    margin-left: -70px;
  }

  .service-block-title p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: normal;
    line-height: 1.6;
    font-size: 16px;
    max-width: 330px;
  }

  .service-block-right h5,
  .service-block-left h5 {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: normal;
    line-height: 1.6;
    font-size: 16px;
    max-width: 330px;
  }

}

/* media size section-emenu */
@media(max-width: 560px) {
  .section-emenu-page-head {
    margin-top: 50px;
  }

  .emenu-block-title .h5-bold {
    max-width: 360px;
    line-height: 1.6;
  }

  .emenu-block-title p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: normal;
    line-height: 1.6;
    font-size: 16px;
    max-width: 330px;
  }
}

/* media size section-trading */
@media (max-width: 1500px) {
  .trading-two-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
  }

  .trading-contain-img {
    position: relative;
    width: 100%;
    padding: 30px;
  }

  .trading-block-right {
    position: relative;
    padding: 10px;
    max-width: 500px;
    margin-left: 50px;
  }

  @media (max-width: 560px) {
    .trading-contain-img {
      padding: 10px;
    }

    .trading-block-right {
      position: relative;
      margin-left: 20px;
    }

    .content-text-each-offer {
      font-size: 16px;
    }

    .tranding-bt-more {
      display: flex;
      justify-content: center;
    }
  }
}

@media (max-width: 1300px) {
  .trading-two-block {
    flex-direction: column;
  }

  .trading-description h4 {
    text-align: center;
  }
}

@media (max-width: 778px) {
  .trading-contain-img {
    flex-direction: column;
  }

  .contain-signal-web video,
  .contain-signal-phone video {
    width: 100%;
    height: auto;
  }
}

@media(max-width: 560px) {
  .trading-block-title p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: normal;
    line-height: 1.6;
    font-size: 16px;
    max-width: 330px;
  }
}

.trading-two-block {
  gap: 4vw;
  padding: 0px;
}

/* media size section-lotery */

@media (max-width: 1130px) {
  .lottery-container {
    height: auto;
  }

  .lottery-two-block {
    flex-direction: column;
    height: auto;
  }
}

@media(max-width: 560px) {
  .lottery-body {
    margin-top: 0px;
  }

  .lottery-two-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .lottery-block-left img {
    width: 100%;
    height: 200px;
  }

  .lottery-description {
    background-color: #ffffffb2;
    height: 340px;
    padding: 20px;
    border-radius: 16px;
    line-height: 36px;
    position: relative;
  }
}


/* media size section-portfolio */

@media (max-width: 830px) {
  .contain-port-img {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .contain-port-img {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* media size section-client */

@media (max-width: 1200px) {
  .client-all-block {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .client-all-block {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .client-all-block {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* media size section-contact */
@media(max-width: 775px) {
  .contact-block {
    padding: 20px;
  }

  .contact-block-left {
    order: 2;
  }

  .contact-block-right {
    order: 1;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;

  }

  .contact-block-right img {
    display: none;
  }

  .contact-socail {
    margin: 10px;
  }

  .contact-socail img {
    display: block;
    width: 43px;
  }

  form {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
  }

  .input-block input {
    height: 35px;
    font-size: 16px;
    border: none;
    background-color: rgb(239, 239, 239);
  }

  .choose-icon {
    height: 35px;
    border: none;
    background-color: rgb(239, 239, 239);
  }

  .choose-icon:focus {
    border: 1px solid gray;
    border-left: none;
  }

  textarea {
    border: none;
    height: 120px;
    background-color: rgb(239, 239, 239);
    /* Adjust this as needed */
  }

  .sub-block {
    width: 100%;
  }

  .submit-button {
    max-width: 100%;
    height: 35px;
    border-radius: 3px;
    font-size: 16px;
  }

}

/* media size section-footer */
@media (max-width: 778px) {
  .contact-two-block {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 20px;
  }

  /* .container > div {
    overflow: hidden;
  } */

  .footer-container .footer-text {
    font-size: 16px;
  }

  .button-up {
    top: 92vh;
    height: 50px;
    width: 50px;
    right: 10px;
  }

  .button,
  .button-black {
    height: 40px;
    font-size: 18px;
    margin-top: 20px;
  }
}

/* media size eMENU Page style */

@media (max-width: 810px) {
  .emenu-page-block-left {
    display: flex;
    justify-content: center;
  }

  .emenu-page-block-right {
    display: flex;
    justify-content: center;
  }

  .emenu-page-two-block {
    grid-template-columns: 1fr;
  }

  .emenu-page-dody-contain {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .emenu-page-dody-contain {
    overflow: hidden;
  }

  .number-block {
    max-width: 60px;
    width: 100%;
    background-size: 100% 100%;
    height: 73px;
    right: -15px;
    top: -15px;
  }

  .number-block2 {
    max-width: 60px;
    width: 100%;
    height: 73px;
    left: -15px;
    top: -15px;
  }

  .emenu-page-dody-each-block:nth-child(1) {
    order: 1;
  }

  .emenu-page-dody-each-block:nth-child(2) {
    order: 2;
  }

  .emenu-page-dody-each-block:nth-child(3) {
    order: 4;
  }

  .emenu-page-dody-each-block:nth-child(4) {
    order: 3;
  }

  .emenu-page-dody-each-block:nth-child(5) {
    order: 5;
  }

  .emenu-page-dody-each-block:nth-child(6) {
    order: 6;
  }

  .emenu-page-dody-each-block:nth-child(7) {
    order: 8;
  }

  .emenu-page-dody-each-block:nth-child(8) {
    order: 7;
  }

  .emenu-page-dody-each-block:nth-child(9) {
    order: 9;
  }

  .emenu-page-dody-each-block:nth-child(10) {
    order: 10;
  }
}

/* media size web App Page style */
@media (max-width: 810px) {
  .web-app-dev-body-contain {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .web-app-dev-each-block:nth-child(1) {
    order: 2;
  }

  .web-app-dev-each-block:nth-child(2) {
    order: 1;
  }

  .web-app-dev-each-block:nth-child(3) {
    order: 3;
  }

  .web-app-dev-each-block:nth-child(4) {
    order: 4;
  }

  .lottery-page-contain {
    gap: 1vh;
    padding: 0px;
    height: auto;
  }

  .lottery-page-block {
    height: 250px;
    padding-top: 0px;
  }

  .lottery-page-block:nth-child(2) {
    height: 200px;
    padding-top: 0px;
  }

  .lottery-page-block:nth-child(2) {
    height: 200px;
    padding-top: 0px;
  }
  .lottery-page-block:nth-child(3) {
    height: 200px;
    padding-top: 0px;
  }
  .lottery-page-block:nth-child(4) {
    height: 200px;
    padding-top: 0px;
  }
  .lottery-page-block:nth-child(5) {
    height: 200px;
    padding-top: 0px;
  }

  .lottery-page-block p {
    padding-left: 5%;
  }

  .section-web-app-dev {
    margin-top: 50px;
  }
}

/* media size lottery Page style */
@media (max-width: 810px) {
  .lottery-container-header {
    height: 300px;
    padding: 0px;
  }

  .lottery-block-detail {
    height: 300px;
  }

  .h5-bold {
    font-size: 18px;
  }

  .lottery-page-contain {
    gap: 2.5vh;
  }

  .lottery-page-contain {
    grid-template-columns: 1fr;
  }
}