body {
  font-family: "Inter", "Arial", sans-serif;
  width: 100%;
  height: 100%;
  background: #202020;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: normal;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #ffc115;
}

h1 {
  color: #f7921e;
  font-size: 40px;
  font-weight: 800;
}

@media (max-width: 1023px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  color: #ffc115;
}

@media (max-width: 1023px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 700;
  color: #eec22d;
  line-height: 140%;
}

@media (max-width: 1023px) {
  h3 {
    font-size: 18px;
  }
}

p {
  line-height: 160%;
}

ul li {
  line-height: 140%;
}

.container {
  width: 100%;
  max-width: 1200px;
}

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

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

.breadcrumb-wrap {
  padding: 0;
  display: flex;
  align-items: center;
  background: #1eba4d;
}

@media (max-width: 1023px) {
  .breadcrumb-wrap {
    background: #158a38;
  }
}

.breadcrumb-wrap .breadcrumb {
  display: flex;
  min-height: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
}

@media (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb {
    min-height: 37px;
    font-size: 14px;
  }
}

.breadcrumb-wrap .breadcrumb a {
  color: #000;
}

.breadcrumb-wrap .breadcrumb li:not(:last-child) {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumb-wrap .breadcrumb li:not(:last-child):after {
  content: " > ";
  margin-left: 10px;
  color: #000;
}

.breadcrumb-wrap .breadcrumb li:last-child {
  flex: 1;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
}

.float-group {
  position: fixed;
  right: 0;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.float-group .join-btn img {
  width: 190px;
  height: 200px;
}

@media (max-width: 1023px) {
  .float-group .join-btn img {
    width: 108px;
    height: 114px;
  }
}

.float-group #arrowTop {
  border: none;
  cursor: pointer;
  display: flex;
  height: 60px;
  padding: 0 40px;
  align-items: center;
  gap: 10px;
  border-radius: 50px 0 0 50px;
  background: #1eba4d;
  width: 230px;
  position: relative;
  font-size: 24px;
  font-weight: 800;
  color: #202020;
}

@media (max-width: 1023px) {
  .float-group #arrowTop {
    width: 110px;
    font-size: 16px;
    padding: 0 20px;
    height: 44px;
    gap: 8px;
  }
}

.float-group #arrowTop::before {
  content: "";
  width: 18.667px;
  height: 28px;
  background: url("../img/top-icon.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .float-group #arrowTop::before {
    width: 10.667px;
    height: 16px;
  }
}

.float-group a {
  display: flex;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 88px;
  border-bottom: 8px solid #158a38;
  background: #202020;
  position: sticky;
  top: 0;
  z-index: 3;
}

@media (max-width: 1023px) {
  header {
    height: 96px;
    border-width: 4px;
  }
}

header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 600px);
  height: 60px;
  background: #f7921e;
}

@media (max-width: 1023px) {
  header::after {
    display: none;
  }
}

header .header-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  header .header-wrap {
    height: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 0;
    gap: 0;
  }
}

header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

header .logo img {
  height: 58px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1023px) {
  header .logo img {
    height: 32px;
    margin-left: 17px;
  }
}

header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1023px) {
  header nav {
    height: 45px;
    flex: 0 0 100%;
    order: 2;
    justify-content: space-between;
    background: #3d3d3d;
  }
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  header nav ul {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
}

header nav ul li {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
}

@media (max-width: 1023px) {
  header nav ul li {
    flex: 1;
    gap: 10px;
  }
}

header nav ul li:not(:last-child):after {
  content: "";
  width: 1px;
  height: 15px;
  background: #fff;
}

header nav a {
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s ease;
}

@media (max-width: 1023px) {
  header nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
}

header nav a:hover,
header nav a.on {
  color: #f7921e;
  font-weight: 800;
}

header .sign-up {
  display: flex;
  width: 225px;
  height: 60px;
  padding: 0 30px;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  border-radius: 50px 0 0 50px;
  background: #f7921e;
  position: relative;
  font-size: 24px;
  font-weight: 800;
  color: #202020;
}

@media (max-width: 1023px) {
  header .sign-up {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 140px;
    height: 40px;
    font-size: 14px;
    margin: 5px 0;
  }
}

header .sign-up::before {
  content: "";
  width: 28px;
  height: 23px;
  background: url("../img/sign-icon.png") no-repeat center/contain;
}

section {
  padding: 30px 0;
}

@media (max-width: 767px) {
  section {
    padding: 20px 0;
  }
}

section .container {
  margin: 0 auto;
}

section picture {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  section picture {
    width: 100%;
  }

  section picture img {
    width: 100%;
  }
}

.section-banner {
  padding: 0;
}

.section-banner picture {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-banner img {
  width: 100%;
}

.section-menu {
  padding: 32px 0 40px;
  border-top: 8px solid #158a38;
}

.section-menu.news {
  border-top: none;
  padding: 30px 0;
}

.section-menu.news h2 {
  font-size: 38px;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-menu.news h2 {
    font-size: 24px;
  }
}

@media (max-width: 1023px) {
  .section-menu.news {
    padding: 30px 0;
  }
}

@media (max-width: 1023px) {
  .section-menu {
    padding: 40px 0;
  }
}

.section-menu .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-menu .menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-menu .menu-wrapper .title {
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .section-menu .menu-wrapper .title {
    font-size: 16px;
  }
}

.section-menu .menu-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 6px;
}

@media (max-width: 1023px) {
  .section-menu .menu-wrap {
    flex-direction: column;
    gap: 5px;
  }
}

.section-menu .menu-item {
  flex: 0 0 calc(33.3% - 24px);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .section-menu .menu-item {
    flex: 0 0 100%;
    padding: 0;
    font-size: 18px;
    display: none;
  }

  .section-menu .menu-item.visible {
    display: flex;
  }
}

.section-menu .menu-item::before {
  content: "";
  width: 41px;
  height: 41px;
  background: url("../img/home-arrow.png") no-repeat center/contain;
}

.section-menu .more {
  display: none;
}

@media (max-width: 1023px) {
  .section-menu .more {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 400;
    color: #f7921e;
  }

  .section-menu .more::before {
    content: "";
    width: 45px;
    height: 45px;
    background: url("../img/more-icon.png") no-repeat center/contain;
  }
}

.section-brand.bg1 {
  background: url("../img/home-bg.png") no-repeat top center/cover;
}

@media (max-width: 1023px) {
  .section-brand.bg1 {
    background: url("../img/home-bg-m.png") no-repeat top center/cover;
  }
}

.section-brand.bg2 {
  background: url("../img/home-bg2.png") no-repeat top center/cover;
}

@media (max-width: 1023px) {
  .section-brand.bg2 {
    background: url("../img/home-bg2-m.png") no-repeat top center/cover;
  }
}

.section-brand.bg3 {
  background: #151515;
}

.section-brand .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 1023px) {
  .section-brand .container {
    gap: 10px;
  }
}

.section-brand .brand-item {
  width: calc(100% - 60px);
  display: flex;
  padding: 40px 30px;
  align-items: flex-start;
  gap: 28px;
  border-radius: 10px;
  border-top: 1px solid #f7921e;
  border-right: 1px solid #f7921e;
  border-bottom: 3px solid #f7921e;
  border-left: 1px solid #f7921e;
  background: rgba(7, 7, 7, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

@media (max-width: 1023px) {
  .section-brand .brand-item {
    flex-direction: column;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 20px;
    width: calc(100% - 40px);
    gap: 10px;
  }
}

.section-brand .brand-item:nth-child(even) {
  border-top: 1px solid #158a38;
  border-right: 1px solid #158a38;
  border-bottom: 3px solid #158a38;
  border-left: 1px solid #158a38;
}

@media (max-width: 1023px) {
  .section-brand .brand-item:nth-child(even) {
    border-top: none;
    border-right: none;
    border-left: none;
  }
}

.section-brand .item-left {
  flex: 0 0 247px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (max-width: 1023px) {
  .section-brand .item-left {
    flex: 0 0 100%;
    width: 100%;
    gap: 10px;
  }
}

.section-brand .item-left img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-brand .item-left .down-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  padding: 0 15px;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid #ffc115;
  background: #242424;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  color: #ffc115;
}

.section-brand .item-left .down-item strong {
  font-size: 18px;
  font-weight: 900;
}

.section-brand .item-left .down-item img {
  width: 30px;
  height: 30px;
}

.section-brand .item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-brand .item-right {
    gap: 10px;
  }
}

.section-brand .item-right .item-info {
  display: flex;
  border-radius: 5px;
  background: #332a21;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-brand .item-right .item-info {
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
}

.section-brand .item-right .item-info.green {
  background: #21332a;
}

.section-brand .item-right .item-info.green h3 {
  color: #1eba4d;
}

.section-brand .item-right .item-info.green h3::before {
  background: url("../img/hot-icon2.png") no-repeat top center/cover;
}

.section-brand .item-right .item-info h3 {
  flex: 0 0 265px;
  color: #f7921e;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

@media (max-width: 1023px) {
  .section-brand .item-right .item-info h3 {
    flex: 0 0 100%;
    font-size: 14px;
  }
}

.section-brand .item-right .item-info h3::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/hot-icon.png") no-repeat top center/cover;
}

.section-brand .item-right .item-info p {
  flex: 1;
  word-break: break-word;
}

.section-qa .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-qa .qa-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-qa .qa-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  line-height: normal;
}

.section-qa .qa-item.active p {
  display: block;
  position: relative;
  padding: 10px 20px 0;
  display: flex;
  gap: 10px;
  color: #cfcfcf;
}

.section-qa .qa-item.active p::before {
  content: "A.";
  color: #f7921e;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 1023px) {
  .section-qa .qa-item.active p::before {
    font-size: 14px;
  }
}

.section-qa .qa-item.active h3:after {
  transform: rotate(0deg);
}

.section-qa .qa-item h3 {
  border-radius: 50px;
  background: #111;
  padding: 0px 61px 0px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  position: relative;
  min-height: 61px;
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3 {
    padding: 10px 61px 10px 20px;
    font-size: 14px;
  }
}

.section-qa .qa-item h3::before {
  content: "Q.";
  color: #1eba4d;
  font-size: 20px;
  font-weight: 800;
  margin-right: 10px;
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3::before {
    font-size: 14px;
  }
}

.section-qa .qa-item h3::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  content: "";
  width: 41px;
  height: 41px;
  background: url("../img/qa-icon.png") no-repeat center/contain;
  transform: rotate(180deg);
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3::after {
    right: 10px;
  }
}

.section-qa .qa-item p {
  display: none;
  margin: 0;
}

.section-news-list {
  padding-top: 0;
}

.section-news-list.tag {
  padding: 30px 0;
}

.section-news-list .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-news-list h1 span {
  color: #fff;
  margin-left: 5px;
}

.section-news-list .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.section-news-list .list-wrapper .list-item {
  flex: 0 0 calc(50% - 40px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item {
    flex: 0 0 100%;
    gap: 3px;
  }
}

.section-news-list .list-wrapper .list-item img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-news-list .list-wrapper .list-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item .item-info {
    gap: 3px;
  }
}

.section-news-list .list-wrapper .list-item .user-info {
  border: none;
  height: 34px;
  padding: 0;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item .user-info {
    height: 25px;
  }
}

.section-news-list .list-wrapper .list-item h3 {
  color: #fbc103;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
}

@supports (-webkit-line-clamp: 2) {
  .section-news-list .list-wrapper .list-item h3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}

.user-info {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .user-info {
    font-size: 12px;
    height: 47px;
    gap: 10px;
  }
}

.user-info .user {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.user-info .user::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/user.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .user-info .user::before {
    width: 15px;
    height: 15px;
  }
}

.user-info .date {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.user-info .date::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/date.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .user-info .date::before {
    width: 15px;
    height: 15px;
  }
}

.user-info .views {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.user-info .views::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/views.png") no-repeat center/contain;
}

@media (max-width: 1023px) {
  .user-info .views::before {
    width: 15px;
    height: 15px;
  }
}

.pagination-wrap {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 30px 0;
}

@media (max-width: 1023px) {
  .pagination-wrap {
    padding: 0;
    gap: initial;
    justify-content: space-between;
  }
}

.pagination-wrap .page-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .pagination-wrap .page-item {
    font-size: 14px;
  }
}

.pagination-wrap .page-item.point {
  color: #616161;
}

.pagination-wrap .page-item.active {
  background: #158a38;
  color: #000;
}

.section-page.bg {
  background: url(../img/home-bg.png) no-repeat top center/cover;
}

@media (max-width: 1023px) {
  .section-page.bg {
    background: url(../img/home-bg-m.png) no-repeat top center/cover;
  }
}

.section-page .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-page .page-wrapper {
  width: 100%;
  margin: 35px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-page .page-wrapper {
    margin: 5px auto;
    gap: 10px;
  }
}

.section-page .page-wrapper .page-item {
  width: calc(100% - 60px);
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(82, 35, 35, 0.7) 0%, rgba(25, 25, 25, 0.7) 50%, rgba(10, 85, 68, 0.7) 100%);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 1023px) {
  .section-page .page-wrapper .page-item {
    position: relative;
    width: calc(100% - 40px);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
  }
}

.section-page .page-wrapper .page-item img {
  width: 55px;
  height: 55px;
}

@media (max-width: 1023px) {
  .section-page .page-wrapper .page-item img {
    width: 40px;
    height: 40px;
    left: 20px;
    top: 20px;
    position: absolute;
  }
}

@media (max-width: 1023px) {
  .section-page .page-wrapper .page-item h3 {
    display: flex;
    align-items: center;
    padding-left: 60px;
    min-height: 40px;
  }
}

.section-page .page-wrapper .page-item ul li {
  list-style: disc;
  margin-left: 20px;
}

.section-page .page-wrapper2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 1023px) {
  .section-page .page-wrapper2 {
    gap: 10px;
  }
}

.section-page .page-wrapper2 .page-item {
  flex: 0 0 calc(50% - 70px);
  display: flex;
  padding: 30px;
  gap: 20px;
  border-radius: 15px;
  background: #232323;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: relative;
  color: #b8b8b8;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .section-page .page-wrapper2 .page-item {
    flex: 0 0 calc(100% - 40px);
    padding: 20px;
    position: relative;
  }
}

.section-page .page-wrapper2 .page-item img {
  width: 55px;
  height: 55px;
}

@media (max-width: 1023px) {
  .section-page .page-wrapper2 .page-item img {
    width: 40px;
    height: 40px;
    left: 20px;
    top: 20px;
    position: absolute;
  }
}

.section-page .page-wrapper2 .page-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(90deg, rgb(82, 35, 35) 0%, rgb(25, 25, 25) 50%, rgb(10, 85, 68) 100%);
}

@media (max-width: 1023px) {
  .section-page .page-wrapper2 .page-item h3 {
    display: flex;
    align-items: center;
    padding-left: 60px;
    min-height: 40px;
  }
}

.section-hot {
  background: url("../img/home-bg2.png") no-repeat center/cover;
}

@media (max-width: 1023px) {
  .section-hot {
    background: url("../img/home-bg2-m.png") no-repeat center/cover;
  }
}

.section-hot .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-hot .container {
    gap: 10px;
  }
}

.section-hot .hot-list-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-hot .hot-list-wrapper {
    margin-top: 10px;
  }
}

.section-hot .hot-list-wrapper .hot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-hot .hot-list-wrapper .hot-list {
    flex-direction: column;
  }
}

.section-hot .hot-list-wrapper .hot-item {
  flex: 0 0 calc(50% - 30px);
  position: relative;
  border-radius: 10px;
  border-bottom: 5px solid #522323;
  padding: 20px 0 20px 20px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  gap: 20px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .section-hot .hot-list-wrapper .hot-item {
    flex: 0 0 calc(100% - 20px);
    gap: 10px;
    flex-direction: column;
    position: relative;
  }
}

.section-hot .hot-list-wrapper .hot-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(90deg, rgb(82, 35, 35) 0%, rgb(25, 25, 25) 50%, rgb(10, 85, 68) 100%);
}

.section-hot .hot-list-wrapper .hot-item img {
  width: 100px;
  height: 100px;
}

@media (max-width: 1023px) {
  .section-hot .hot-list-wrapper .hot-item img {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 20px;
    top: 20px;
  }
}

.section-hot .hot-list-wrapper .hot-item .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-hot .hot-list-wrapper .hot-item h4 {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .section-hot .hot-list-wrapper .hot-item h4 {
    display: flex;
    align-items: center;
    padding-left: 70px;
    min-height: 60px;
  }
}

.section-hot .hot-list-wrapper .hot-item ul {
  margin: 5px 0 10px 0;
}

.section-hot .hot-list-wrapper .hot-item ul li {
  color: #c9c9c9;
  list-style: disc;
  margin-left: 20px;
}

.section-hot .hot-list-wrapper .hot-item .bet-btn {
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 196px;
  height: 40px;
  gap: 10px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(90deg, #b22525 0%, #191919 70%, #0a755c 100%);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {
  .section-hot .hot-list-wrapper .hot-item .bet-btn {
    font-size: 16px;
  }
}

.section-hot .hot-list-wrapper .hot-item .bet-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/gift-icon.png") no-repeat center/contain;
}

.section-hot .hot-list-wrapper .hot-item .bet-btn:hover {
  background: linear-gradient(90deg, #ff5151 0%, #333333 70%, #0dd6a3 100%);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 81, 81, 0.5);
  transform: scale(1.03);
}

.section-page-info {
  padding: 0 0 40px 0;
}

@media (max-width: 1023px) {
  .section-page-info {
    padding: 0 0 30px 0;
  }
}

.section-page-info .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-page-info .page-info-img {
  margin: 10px auto;
}

@media (max-width: 1023px) {
  .section-page-info .page-info-img {
    margin: 0 auto;
  }
}

.user-comment {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  background: linear-gradient(180deg, #303030 0%, #252525 100%);
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.user-comment::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(90deg, rgb(82, 35, 35) 0%, rgb(25, 25, 25) 50%, rgb(10, 85, 68) 100%);
}

.user-comment .item-top {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #535353;
}

@media (max-width: 1023px) {
  .user-comment .item-top {
    flex-wrap: wrap;
  }
}

.user-comment .item-top .title {
  flex: 1;
  font-weight: 700;
}

.user-comment .item-top .score {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #eec22d;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 1023px) {
  .user-comment .item-top .score {
    flex: 0 0 100%;
    font-size: 16px;
  }
}

.section-news-detail {
  padding: 30px 0;
}

.section-news-detail .container {
  display: flex;
  gap: 40px;
}

@media (max-width: 767px) {
  .section-news-detail .container {
    flex-direction: column;
    gap: 15px;
  }
}

.section-news-detail .container .post-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1023px) {
  .section-news-detail .container .post-left {
    gap: 15px;
  }
}

.section-news-detail .container .post-left h2 {
  font-size: 24px;
}

@media (max-width: 1023px) {
  .section-news-detail .container .post-left h2 {
    font-size: 18px;
  }
}

.section-news-detail .container .post-left h3 {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-news-detail .container .post-left h3 {
    font-size: 14px;
  }
}

.section-news-detail .container .post-right {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .section-news-detail .container .post-right {
    flex: 0 0 100%;
    gap: 5px;
  }
}

.section-news-detail .container .post-right h3 {
  color: #fbc103;
  font-weight: 600;
}

.section-news-detail .container .post-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-news-detail .container .post-intro {
    gap: 5px;
  }
}

.section-news-detail .container .post-intro .intro-item {
  width: calc(100% - 56px);
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 36px;
  background: #111111;
  color: #d4d4d4;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .section-news-detail .container .post-intro .intro-item {
    font-size: 16px;
  }
}

.section-news-detail .container .post-intro .intro-item:hover {
  color: #ffc115;
}

.section-news-detail .container .post-intro .intro-item::before {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f7921e;
}

.section-news-detail .container img {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
}

.section-news-detail .container .post-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-news-detail h2 {
  text-align: left;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 767px) {
  .section-news-detail h2 {
    font-size: 20px;
  }
}

.section-news-detail h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 767px) {
  .section-news-detail h1 {
    font-size: 24px;
  }
}

.news-detail-info .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1023px) {
  .news-detail-info .container {
    width: 100%;
    max-width: 100%;
  }
}

.news-detail-info .navigation-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1023px) {
  .news-detail-info .navigation-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.news-detail-info .prev-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f8931f;
  font-weight: 500;
  position: relative;
  padding: 0px 10px;
  gap: 10px;
  border-radius: 100px;
  background: #000;
  height: 40px;
  width: 232px;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {
  .news-detail-info .prev-btn {
    width: -moz-fit-content;
    width: fit-content;
    height: 44px;
    font-size: 18px;
  }
}

.news-detail-info .prev-btn::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/news-arrow.png") no-repeat center/contain;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.news-detail-info .prev-btn:hover {
  border-style: solid;
  border-width: 1px;
  border-image-source: linear-gradient(-180deg, rgb(255, 252, 225) 0.1%, rgb(255, 239, 93) 9.1%, rgb(255, 150, 27) 50.5%, rgb(255, 239, 93) 91.1%, rgb(255, 252, 226) 100%);
  border-image-slice: 1;
  background-image: linear-gradient(-180deg, rgb(255, 252, 225) 0.1%, rgb(255, 239, 93) 9.1%, rgb(255, 150, 27) 50.5%, rgb(255, 239, 93) 91.1%, rgb(255, 252, 226) 100%), linear-gradient(-180deg, rgb(255, 252, 225) 0.1%, rgb(255, 239, 93) 9.1%, rgb(255, 150, 27) 50.5%, rgb(255, 239, 93) 91.1%, rgb(255, 252, 226) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 100px;
  clip-path: inset(0 round 100px);
  color: #000;
}

.news-detail-info .prev-btn:hover::before {
  filter: grayscale(100%) brightness(0);
  transform: translateX(4px);
}

.news-detail-info .tag-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .news-detail-info .tag-group {
    width: 100%;
    font-size: 14px;
    gap: 5px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.news-detail-info .tag-group .tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  border-radius: 30px;
  background: #343434;
  font-size: 14px;
  color: #fff;
  transition: transform 0.3s ease;
}

@media (max-width: 1023px) {
  .news-detail-info .tag-group .tag-item {
    font-size: 12px;
  }
}

.news-detail-info .tag-group .tag-item:hover {
  background: #ffc115;
  color: #000;
}

.section-article .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-article .container h1 span {
  color: #fff;
  margin-left: 5px;
}

.section-article .container h2 {
  font-size: 38px;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-article .container h2 {
    font-size: 24px;
  }
}

.section-article .container .list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 1023px) {
  .section-article .container .list-wrapper {
    gap: 10px;
  }
}

.section-article .container .list-item {
  display: flex;
  background: #111;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

@media (max-width: 1023px) {
  .section-article .container .list-item {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
  }
}

.section-article .container .tag {
  padding: 5px 10px;
  background: #fcac1a;
  color: #202020;
}

@media (max-width: 1023px) {
  .section-article .container .tag {
    padding: 2px 10px;
  }
}

.section-article .container h3 {
  color: #fff;
  flex: 1;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .section-article .container h3 {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.5;
  }

  @supports (-webkit-line-clamp: 2) {
    .section-article .container h3 {
      display: -webkit-box !important;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      white-space: normal;
    }
  }
}

.section-article .container .date {
  font-size: 16px;
  color: #969696;
}

@media (max-width: 1023px) {
  .section-article .container .date {
    font-size: 12px;
    color: #fff;
  }
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: url("../img/home-bg3.png") no-repeat top center/cover;
}

@media (max-width: 1023px) {
  footer {
    background: url("../img/home-bg3-m.png") no-repeat top center/cover;
  }
}

footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 20px 0;
}

@media (max-width: 1023px) {
  footer .footer-wrap {
    flex-direction: column;
    padding: 15px 0;
  }
}

footer .footer-item {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1023px) {
  footer .footer-item {
    flex: 0 0 100%;
    gap: 10px;
  }
}

footer .footer-item.app {
  flex: 0 0 375px;
}

@media (max-width: 1023px) {
  footer .footer-item.app {
    flex: 0 0 100%;
  }
}

footer .logo img {
  height: 58px;
}

@media (max-width: 1023px) {
  footer .logo img {
    height: 39px;
  }
}

footer .app-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1023px) {
  footer .app-group {
    flex-direction: column;
    gap: 10px;
  }
}

footer .app-group .app-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5);
  height: 49px;
  width: 180px;
  color: #202020;
  font-size: 14px;
  font-weight: 400;
  border-radius: 50px;
  background: #f7921e;
}

@media (max-width: 1023px) {
  footer .app-group .app-btn {
    width: 100%;
  }
}

footer .app-group .app-btn.green {
  background: #1eba4d;
}

footer .app-group .app-btn span {
  font-size: 18px;
  font-weight: 800;
}

footer .app-group .app-btn img {
  width: 25px;
  height: 30px;
}

footer .info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #bbb;
  font-size: 16px;
}

footer .info-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  footer .info-item h3 {
    font-size: 14px;
  }
}

footer .media-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer .media-group img {
  width: 50px;
  height: 50px;
}

footer .copyright {
  width: 100%;
  padding: 15px 0 20px;
  background: #000;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 1023px) {
  footer .copyright {
    font-size: 12px;
    padding: 10px 0;
  }
}

/*# sourceMappingURL=main.css.map */

.content_wrap {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.form-item {
  width: 100%;
  margin-bottom: 20px;
  font-size: 18px;
}

.form-item input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  line-height: 24px;
  box-sizing: border-box;
}

.form-item select {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
  line-height: 24px;
  width: 100%;
}
.register-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnSubmit {
  background-color: #F79604;
    border: 1px solid #FFFFFF80;
    border-radius: 5px;
    padding: 10px;
    width: 200px;
    display: flex;
    justify-content: center;
    margin: 10px auto;
}

.uppercase {
    text-transform: uppercase;
}
#currencyType {
    color: #939393;
}
#registrationForm input,
#registrationForm select {
    width: 100%;
    background-color: #3B3B3B;
    border: none;
    border-radius: 10px;
    padding: 0.4rem;
    margin-bottom: 16px;
    color: #FFFFFF;
}
#modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#modal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}
#modal .modal-content {
    width: 500px;
    background: #2B2A38;
    border-radius: 10px;
    border: 2px solid #FFB21D;
    display: flex;
    flex-direction: column;
    font-size: 18px;
}
#modal .modal-body {
    padding: 15px;
    text-align: center;
    line-height: 25px;
    color: #FFFFFF;
}
#modal .modal-footer {
    border-top: 1px solid #E4E3E3;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}
#registrationForm .sign-up {
    background-color: #F79604;
    border: 1px solid #FFFFFF80;
    border-radius: 5px;
    padding: 10px;
    width: 200px;
    display: flex;
    margin: auto;
    justify-content: center;
}
.LoginNow {
    background-color: #22694B;
    box-shadow: 0px 2px 6px 0px #0000004D;
    color: #FFFFFF;
    border-radius: 5px;
    border: none;
    padding: 5px 25px;
}
.text-align-center {
    text-align: center;
}
#modal button {
    height: 40px;
    padding: 5px 15px;
    border-radius: 100px;
    background: #EA0C00;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    font-weight: 700;
    border: none;
    color: #fff;
    align-self: center;
    cursor: pointer;
}

@media (max-width: 678px) {
.p-100-20 {
        padding: 20px;
    }
    .LoginNow-div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .LoginNow-div div.w-355-132 {
        width: 100%;
    }
}
@media (min-width: 679px) {
    .LoginNow-div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .p-100-20 {
        padding: 100px;
    }
}