@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: Roboto Condensed;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: #ffffff;
}

.home-wrapper {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 48%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}

.home-content .logo {
  margin-bottom: 60px;
}

.home-content .logo > img {
  max-width: 100%;
  max-height: 130px;
}

.home-content .country {
  white-space: nowrap;
}

.home-content .country > a {
  display: inline-block;
  width: 160px;
  height: 110px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.4s ease-in-out;
}

.home-content .country > a:hover {
  transform: scale(1.1);
}

.home-content .country > a:hover:after {
  content: "";
  -webkit-box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: 0px 0px 12px 0px rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 1);
  width: 110px;
  height: 110px;
  border-radius: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
}

.home-content .country > a > label {
  margin-top: 120px;
  width: 100%;
  font-size: 22px;
  color: #fff;
  opacity: 0.8;
}

.home-content .country > a.malaysia {
  background-image: url("../images/flag-my.png");
}

.home-content .country > a.singapore {
  background-image: url("../images/flag-sg.png");
}

.home-content .country > a.cambodia {
  background-image: url("../images/flag-kh.png");
}

.home-content .country > a.vietnam {
  background-image: url("../images/flag-vn.png");
}

.img-cover {
  background-image: url(../images/desktop-bg.png);
  background-size: 100% 100%;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}

@media only screen and (max-width: 991px) {
  .home-content .country > a {
    width: 140px;
    height: 80px;
  }

  .home-content .country > a > label {
    margin-top: 90px;
  }

  .home-content .country > a:hover:after {
    width: 80px;
    height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .img-cover {
    background-image: url(../images/mobile-bg.png);
  }

  .landscape {
    display: none !important;
  }

  .portrait {
    display: block !important;
  }

  .home-content .logo {
    margin-bottom: 40px;
  }

  .home-content .logo > img {
    max-width: 80vw;
  }

  .home-content .country {
    white-space: normal;
  }

  .home-content .country > a {
    margin-bottom: 70px;
    width: 200px;
    height: 110px;
  }

  .home-content .country > a > label {
    margin-top: 120px;
  }

  .home-content .country > a:hover:after {
    width: 110px;
    height: 110px;
  }

  .mobile {
    display: block;
  }

  .desktop {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .home-content .country > a {
    display: inline-block;
    margin-bottom: 16vw;
    width: 40vw;
    height: 24vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .home-content .country > a > label {
    margin-top: 26vw;
    font-size: 4vw;
  }

  .home-content .country > a:hover:after {
    width: 24vw;
    height: 24vw;
  }
}

@media only screen and (max-width: 400px) {
}

@media (min-aspect-ratio: 16/9) {
  .img-cover {
    position: fixed;
  }
}

@media (min-aspect-ratio: 16/9) and (max-width: 767px) {
  .landscape {
    display: block !important;
  }

  .portrait {
    display: none !important;
  }

  #home .home-wrapper {
    top: 70%;
  }

  .home-content .logo {
    margin-bottom: 20px;
  }

  .home-content .country > a {
    width: 80px;
    height: 80px;
  }

  .home-content .country > a:hover:after {
    width: 80px;
    height: 80px;
  }

  .home-content .country > a > label {
    margin-top: 96px;
    font-size: 16px;
  }
}