@import url("https://fonts.googleapis.com/css2?family=Vibur&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;800&display=swap");
body {
  transition: background-color 0.5s;
  font-family: "Montserrat", sans-serif !important;
}
*:focus {
  outline: 0 !important;
}

a {
  text-decoration: none !important;
}
.overlayx {
  background-color: rgba(0, 0, 0, 0.5);
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 2;
  display: none;
}
/* BUTTON */
.button {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: #001998;
}

.front {
  display: block;
  position: relative;
  padding: 11px;
  border-radius: 4px;
  color: white;
  background: #3a5aff;
  will-change: transform;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.button:hover .edge {
  background-color: #835c02 !important;
  transition: 0.2s linear;
}

.button:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
  background-color: #ffc43b !important;
}

.button:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button:focus:not(:focus-visible) {
  outline: none;
}
.btnx {
  display: flex;
  justify-content: center;
}
/* Navbar */
.navbar-brand {
  font-size: 2.25rem !important;
  font-family: "Vibur", cursive !important;
  font-style: normal;
  font-weight: normal;
}
.dropdown-en {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #333 !important;
  padding-right: 2.5rem !important;
}
.dropdown-en::after {
  content: "\f107";
  font-family: FontAwesome;
  font-weight: bold;
  font-style: inherit;
  text-decoration: none;
  font-size: 26px;
  position: absolute;
  margin-left: 3px;
}
.dropdown-en:hover:after {
  margin-top: 3px;
  transition: all 0.3s ease-in-out;
}
.navbar .button {
  width: 110px;
  height: 44px;
}
.navbar .front {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
}
.navbar .out .button {
  width: 110px;
  height: 44px;
}
.navbar .out .front {
  background-color: unset;
  border: 1px solid;
  color: #333;
}
.navbar .out .edge {
  background-color: unset;
}
.navbar .out .shadow {
  border-radius: unset;
  background: unset;
  transform: translateY(0px);
  height: unset;
}
.navbar .out .front {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #8b8b8b;
}
.collapse:not(.show) {
  display: flex !important;
  justify-content: flex-end;
}
/* Sidebar */
#sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background-color: #fff;
  z-index: 555;
  transition: 0.5s;
}
#sidebar.active {
  right: 0px;
}
#sidebar ul {
  position: relative;
  margin-top: 80px;
}
#sidebar ul li {
  list-style: none;
  padding: 14px 20px;
}

#sidebar ul li:hover {
  transition: 0.3s ease-in;
  border-left: 4px solid #ffc43b;
  background-color: #ffeabb;
}
#sidebar ul li a {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
}
#sidebar ul li a img {
  margin-right: 10px;
  width: 28px;
}
#sidebar ul li a:hover {
  color: #544837;
}
#sidebar .no-5 {
  background-color: #ffc00a;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 170px;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

/* Hero Cover */
.modal-title{
  color: red;
}
.modal-body{
color: #fa4646;
}
#main {
  height: 35rem;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2f281e;
}

.hero-text p {
  font-size: 26px;
  line-height: 31px;
  color: #544837;
}
#main .button,
.info .button {
  width: 255px;
  height: 56px;
}
#main .front,
.info .button {
  font-size: 16px;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
}
.hero-app .download {
  margin-bottom: 12px;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

.apple-btn {
  background-image: url(/images/apple-btn.png);
  margin-right: 8px;
}
.google-btn {
  background-image: url(/images/google-btn.png);
}
.apple-btn,
.google-btn {
  background-position: center center;
  background-repeat: unset;
  background-size: auto;
  width: 118px;
  height: 34px;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
}
.hero-cover {
  width: 100%;
  height: 400px;
  position: relative;
  left: 29px;
}
@media (max-width: 575.98px) {
  .main-content {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 22px;
  }
  #main .button {
    margin: 0 auto;
  }
  .img-cover {
    display: none;
  }
}
/* Who Is About US */
.who-is {
  min-height: 36.063rem;
}
.who-is h2,
.carousel h2,
.game-code h2,
.work h2,
.customers h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  color: #2f281e;
  font-family: "Poppins", sans-serif;
}
.underline {
  background: #3a5aff;
  width: 116px;
  height: 8px;
  margin: 0 auto;
}
.who-is-card {
  display: flex;

  align-items: center;
}
.who-is-card .card {
  background-color: unset;
  border: none;
  width: 15rem;
  margin-bottom: 20px;
}
.who-is-card .card-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  color: #2f281e;
  margin-bottom: 15px;
}
.who-is-card .card-text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #544837;
  margin-bottom: 26px;
}
.who-is-card .card-link {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
  color: #544837;
}
.card-link:hover {
  color: #3cc5ff;
  transition: 0.2s;
}
.who-is .button {
  width: 159px;
  height: 53px;
  margin: 0 auto;
}
.who-is .front {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
}
/* Carousel */
.carousel .item {
  margin-right: 30px;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 70px !important;
  margin-bottom: 56px !important;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #3a5aff !important;
}
/* Game Code */
.game-code{
  margin-top:20px;
}
.game-code p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  color: #544837;
}
.game-code .code-here {
  background-color: #ffc43b;
  width: 100%;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.code-here button {
  width: 330px;
  height: 73px;
  background-color: #fff;
  color: #979797;
  border-radius: 46px;
  margin-top: 52px;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 24px;
  border: none;
  outline: none;
  cursor: pointer;
}
.code-here small {
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #979797;
  margin-bottom: 18px;
}
.code-here #code {
  display: none;
  background-color: rgb(51, 51, 51);
  color: aqua;
  padding: 5px 10px;
  border-radius: 8px;
  outline: none;
}
.game-code .more {
  text-align: center;
  font-weight: normal;
  font-size: 36px;
  line-height: 44px;
  color: #333;
  margin-top: 54px;
}
.more span {
  color: #3a5aff;
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  text-decoration-line: underline !important;
  cursor: pointer;
}
.more span:hover {
  color: #ffc43b;
  transition: 0.2s;
}
/* Work */
.work {
  margin-top: 112px;
  overflow: hidden;
}
.work .underline {
  margin-bottom: 4.75rem;
}
.work .art-text {
  margin-top: 90px;
}
.work h3 {
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #2f281e;
}
.work p {
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  color: #544837;
}
.work img {
  width: 516px;
  height: 460px;
  overflow: hidden;
}
/* Customers */
.customers {
  background-color: #3a5aff;
  padding-top: 70px;
  min-height: 650px;
}
.customers h2 {
  color: #fff;
}
.customers .underline {
  background-color: #fff;
}
.vl {
  width: 2px;
  height: 314px;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 53px;
  background-color: #fff;
}
.item-new {
  display: flex;
}
.item-img {
  flex: 50%;
}
.item-img img {
  position: relative;
  top: -19px;
  left: 431px;
  width: 200px;
  height: 200px;
}
.item-msg {
  padding: 5px;
  width: 488px;
  height: 118px;
  background: #fff;
  margin-top: 53px;
  z-index: 1;
  margin-left: 41px;
  border-radius: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  line-height: 4.5;
  color: #2f281e;
  font-family: "Poppins", sans-serif;
  position: relative;
}
.item-msg::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  background-color: #ffffff;
  z-index: 5;
  border-radius: 50%;
  top: 140px;
  left: 411px;
}
.item-msg::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #ffffff;
  z-index: 5;
  border-radius: 50%;
  top: 98px;
  left: 378px;
}
.item-text {
  flex: 50%;
  padding-left: 48px;
  padding-right: 48px;
}
.item-text h5 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  margin-top: 76px;
  margin-bottom: 30px;
}
.item-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.carousel-indicators li {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50%;
  background-color: #ffc43b !important;
  margin-right: 5px !important;
  margin-left: 5px !important;
}
.item-text img {
  mix-blend-mode: luminosity;
  margin-top: 38px;
}
/* Info */
.info {
  padding-top: 100px;
  margin-bottom: 120px;
}
.info .info-text {
  width: 100%;
}
.info .text {
  width: 190px;
  height: 48px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
  padding-left: 4px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.text:nth-of-type(1) {
  border-left: 5px solid #3a5aff;
}
.text:nth-of-type(2) {
  border-left: 5px solid #3cc5ff;
}
.text:nth-of-type(3) {
  border-left: 5px solid #ff3b53;
}
.text:nth-of-type(4) {
  border-left: 5px solid #ffc43b;
}
.info-row-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 64px;
  line-height: 100px;
  color: #2f281e;
  padding-top: 20px;
}
/* Footer */
footer {
  background: #3a5aff;
  padding-top: 68px;
  padding-bottom: 6px;
}
footer h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  padding-bottom: 35px;
}
footer a {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  color: #ffffff;
  padding-bottom: 20px;
}
footer a:hover {
  color: #ddd;
  transition: 0.2s;
}
.footer-logo img {
  padding-bottom: 35px;
}
.apple-foo,
.google-foo,
.huawei-foo {
  background-position: center center;
  background-repeat: unset;
  background-size: auto;
  width: 103px;
  height: 32px;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
.apple-foo {
  background-image: url(/images/app-foo-1.png);
}
.google-foo {
  background-image: url(/images/app-foo-2.png);
}
.huawei-foo {
  background-image: url(/images/app-foo-3.png);
}
.footer-apps img {
  margin-right: 10px;
  margin-bottom: 10px;
}
.footer-apps p,
.social-icons p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}
.social-icons {
  margin-top: 40px;
}
.social-icons i {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  line-height: 1.8;
  text-align: center;
  margin-right: 16px;
}
.social-icons a i {
  color: #3a5aff;
}
.social-icons a i:hover {
  filter: brightness(0.5);
  transition: 0.3s;
}
.copyright p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff;
}
