body {
  font-family: "Roboto", "Arial", sans-serif;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 24px;
  }
}

.link {
  color: #cd912a;
}

h1 {
  color: #110e09;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

h2 {
  color: #daaa58;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
    align-items: center;
    text-align: center;
  }
}
h2:after {
  content: "";
  width: 100px;
  height: 5px;
  background-color: #daaa58;
}
@media (max-width: 767px) {
  h2:after {
    height: 3px;
  }
}

h3 {
  color: #daaa58;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
}

.container {
  width: 100%;
  max-width: 1140px;
}
@media (max-width: 1023px) {
  .container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

.breadcrumb {
  display: flex;
  min-height: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) {
  .breadcrumb {
    min-height: 49px;
  }
}
.breadcrumb a {
  color: #342a21;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .breadcrumb a {
    font-size: 14px;
  }
}
.breadcrumb li:not(:last-child) {
  position: relative;
}
.breadcrumb li:not(:last-child) a {
  color: #daaa58;
}
.breadcrumb li:not(:last-child):after {
  content: "/";
  margin-left: 16px;
}

.float-group {
  position: fixed;
  right: 132px;
  top: 65%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 1023px) {
  .float-group {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .float-group {
    right: 20px;
  }
}
.float-group #arrowTop {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
.float-group img {
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .float-group img {
    width: 50px;
    height: 50px;
  }
}

header {
  width: 100%;
  height: 80px;
  background: #342a21;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
}
header .header-wrap {
  width: 100%;
  max-width: 1140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 767px) {
  header .header-wrap {
    padding: 0 20px;
    gap: initial;
  }
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  height: 58px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  header .logo img {
    height: 40px;
  }
}
header nav {
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header nav {
    display: none;
  }
  header nav.show {
    position: absolute;
    top: 60px;
    right: 0;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.85);
    height: 100vh;
    min-width: 185px;
  }
  header nav.show ul {
    margin-top: 10px;
    width: 100%;
    height: auto;
    gap: 20px;
  }
  header nav.show ul li {
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
  }
  header nav.show ul li.home a::after {
    background: url(../img/home-default.svg) no-repeat center/contain;
  }
  header nav.show ul li.home a.on::after {
    background: url(../img/home.svg) no-repeat center/contain;
  }
  header nav.show ul li.slot a::after {
    background: url(../img/slot-default.svg) no-repeat center/contain;
  }
  header nav.show ul li.slot a.on::after {
    background: url(../img/slot.svg) no-repeat center/contain;
  }
  header nav.show ul li.license a::after {
    background: url(../img/license-default.svg) no-repeat center/contain;
  }
  header nav.show ul li.license a.on::after {
    background: url(../img/license.svg) no-repeat center/contain;
  }
  header nav.show ul li.app a::after {
    background: url(../img/app-default.svg) no-repeat center/contain;
  }
  header nav.show ul li.app a.on::after {
    background: url(../img/app.svg) no-repeat center/contain;
  }
  header nav.show ul li.sabong a::after {
    background: url(../img/sabong-default.svg) no-repeat center/contain;
  }
  header nav.show ul li.sabong a.on::after {
    background: url(../img/sabong.svg) no-repeat center/contain;
  }
  header nav.show ul li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  header nav.show ul li a::after {
    content: "";
    width: 17px;
    height: 17px;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  header nav ul {
    flex-direction: column;
  }
}
header nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
}
header nav a:hover, header nav a.on {
  color: #edb95f;
}
header .btn-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .login-btn {
  min-width: 120px;
  height: 38px;
  border-radius: 30px;
  border: 1px solid #ffe2af;
  background: #edb95f;
  font-size: 16px;
  font-weight: 700;
  color: #342a21;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .hamburger {
  display: none;
}
@media (max-width: 767px) {
  header .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

main {
  margin: 0 auto;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yellow-bg {
  background: linear-gradient(180deg, #ffe69d 0%, #d9a857 100%);
  padding: 35px 0;
  color: #342a21;
}
@media (max-width: 767px) {
  .yellow-bg {
    padding: 28px 0;
  }
}

.brown-bg {
  background: linear-gradient(180deg, #281e15 0%, #48392b 100%);
  color: #fae9be;
  padding: 45px 0 70px;
}
@media (max-width: 767px) {
  .brown-bg {
    padding: 26px 0 35px;
  }
}
.brown-bg.sign-up {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .brown-bg.sign-up {
    padding: 40px 0;
  }
}
.brown-bg.sign-up .container {
  gap: 36px;
}
@media (max-width: 767px) {
  .brown-bg.sign-up .container {
    gap: 20px;
  }
}
.brown-bg .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .brown-bg .container {
    gap: 20px;
  }
}

.white-bg {
  padding: 45px 0 70px;
  color: #5f5f5f;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .white-bg {
    padding: 20px 0 35px;
  }
}
.white-bg.sign-up {
  padding: 64px 0;
}
@media (max-width: 767px) {
  .white-bg.sign-up {
    padding: 40px 0;
  }
}
.white-bg.sign-up .container {
  gap: 36px;
}
@media (max-width: 767px) {
  .white-bg.sign-up .container {
    gap: 20px;
  }
}
.white-bg .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .white-bg .container {
    gap: 20px;
  }
}
.white-bg .container h2 {
  color: #383838;
}
.white-bg .container h2:after {
  background-color: #383838;
}
.white-bg .container h3 {
  color: #383838;
}

.recent-comments {
  padding: 40px 0 70px;
  color: #5f5f5f;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .recent-comments {
    padding: 20px 0 30px;
  }
}
.recent-comments .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recent-comments .container h2 {
  color: #383838;
}
.recent-comments .container h2:after {
  display: none;
}
.recent-comments .container .recent-comment-wrap {
  display: flex;
  justify-content: space-between;
  gap: 23px;
}
@media (max-width: 767px) {
  .recent-comments .container .recent-comment-wrap {
    flex-direction: column;
    gap: 10px;
  }
}
.recent-comments .container .comment-item {
  flex: 1;
  min-height: 175px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .recent-comments .container .comment-item {
    min-height: initial;
    padding: 17px 15px;
  }
}
.recent-comments .container .comment-item .item-top {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .recent-comments .container .comment-item .item-top {
    gap: 12px;
  }
}
.recent-comments .container .comment-item .item-img {
  width: 58px;
  height: 58px;
}
.recent-comments .container .comment-item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.recent-comments .container .comment-item .item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recent-comments .container .comment-item .item-info .star-group {
  display: flex;
  align-items: center;
}
.recent-comments .container .item-bottom {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 767px) {
  .recent-comments .container .item-bottom {
    font-size: 14px;
  }
}

.img-wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 767px) {
  .img-wrapper {
    margin-top: 15px;
    flex-direction: column;
    gap: 20px;
  }
}
.img-wrapper .img-wrap {
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .img-wrapper .img-wrap {
    max-width: 100%;
  }
}
.img-wrapper .img-wrap img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.img-wrapper .img-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (max-width: 767px) {
  .img-wrapper .img-info {
    gap: 13px;
  }
}
.img-wrapper .img-info ul {
  margin-left: 25px;
}
.img-wrapper .img-info ul li {
  list-style: disc;
}

.feature-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .feature-wrapper {
    flex-wrap: wrap;
    gap: 34px 0;
  }
}
.feature-wrapper .feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
@media (max-width: 767px) {
  .feature-wrapper .feature-item {
    gap: 10px;
    font-size: 14px;
    line-height: 18px;
    flex: 0 0 50%;
  }
}
.feature-wrapper .feature-item img {
  width: 58px;
  height: 58px;
}
@media (max-width: 767px) {
  .feature-wrapper .feature-item img {
    width: 40px;
    height: 40px;
  }
}

.feature-wrapper2 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
@media (max-width: 767px) {
  .feature-wrapper2 {
    gap: 20px;
    flex-direction: column;
  }
}
.feature-wrapper2 .feature-item {
  flex: 0 0 calc(50% - 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .feature-wrapper2 .feature-item {
    flex: 0 0 100%;
  }
}
.feature-wrapper2 .item-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-wrapper2 img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature-wrapper2 .feature-txt {
  color: #daaa58;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .feature-wrapper2 .feature-txt {
    font-size: 20px;
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #40372e;
}
@media (max-width: 767px) {
  footer {
    position: sticky;
    bottom: 0;
  }
}
footer .footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
footer .footer-menu {
  width: 100%;
  padding: 25px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #edb95f;
}
@media (max-width: 767px) {
  footer .footer-menu {
    padding: 11px 0;
    gap: initial;
    justify-content: space-evenly;
  }
  footer .footer-menu li.home a::after {
    background: url(../img/home-default.svg) no-repeat center/contain;
  }
  footer .footer-menu li.home a.on::after {
    background: url(../img/home.svg) no-repeat center/contain;
  }
  footer .footer-menu li.slot a::after {
    background: url(../img/slot-default.svg) no-repeat center/contain;
  }
  footer .footer-menu li.slot a.on::after {
    background: url(../img/slot.svg) no-repeat center/contain;
  }
  footer .footer-menu li.license a::after {
    background: url(../img/license-default.svg) no-repeat center/contain;
  }
  footer .footer-menu li.license a.on::after {
    background: url(../img/license.svg) no-repeat center/contain;
  }
  footer .footer-menu li.app a::after {
    background: url(../img/app-default.svg) no-repeat center/contain;
  }
  footer .footer-menu li.app a.on::after {
    background: url(../img/app.svg) no-repeat center/contain;
  }
  footer .footer-menu li.sabong a::after {
    background: url(../img/sabong-default.svg) no-repeat center/contain;
  }
  footer .footer-menu li.sabong a.on::after {
    background: url(../img/sabong.svg) no-repeat center/contain;
  }
}
footer .footer-menu a {
  color: #fff;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  footer .footer-menu a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-indent: -99999px;
  }
}
footer .footer-menu a::after {
  content: "";
  width: 17px;
  height: 17px;
}
@media (max-width: 767px) {
  footer .footer-menu a::after {
    width: 27px;
    height: 27px;
  }
}
footer .copyright {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 7px 0;
}
footer .copyright a {
  color: #fff;
}
@media (max-width: 767px) {
  footer .copyright {
    font-size: 12px;
    font-weight: 500;
  }
}

.sign-up-wrapper {
  padding: 40px 0 64px;
}
@media (max-width: 767px) {
  .sign-up-wrapper {
    padding: 20px 0 40px;
  }
}
.sign-up-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .sign-up-wrapper .container {
    gap: 12px;
  }
}
.sign-up-wrapper h2 {
  color: #110e09;
}
.sign-up-wrapper h2:after {
  background: #110e09;
}
.sign-up-wrapper .img-wrapper {
  gap: 40px;
}
@media (max-width: 767px) {
  .sign-up-wrapper .img-wrapper {
    gap: 20px;
  }
}
.sign-up-wrapper .img-info {
  gap: 36px;
}
@media (max-width: 767px) {
  .sign-up-wrapper .img-info {
    gap: 20px;
  }
}
.sign-up-wrapper .img-info p {
  line-height: 140%;
}
.sign-up-wrapper .img-info .play-btn {
  height: 40px;
  padding: 0px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #fae9be;
  background: #342a21;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  color: #fae9be;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sign-up-wrapper .img-info .play-btn {
    font-size: 14px;
  }
}/*# sourceMappingURL=main.css.map */