@charset "UTF-8";

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

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

a {
  color: #ffc107;
}

h1 {
  color: #00ff87;
  font-size: 42px;
  font-weight: 700;
}

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

h1 span {
  color: #fff;
}

h2 {
  color: #00ff87;
  font-size: 38px;
  font-weight: 700;
}

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

h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f9ca24;
}

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

p {
  line-height: 160%;
}

strong {
  font-weight: 700;
}

.white {
  color: #fff;
}

.yellow {
  color: #ffc83c;
}

.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: #272b4a;
}

.breadcrumb-wrap .breadcrumb {
  display: flex;
  min-height: 60px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

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

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

.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;
}

.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: 49px;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

@media (max-width: 767px) {
  .float-group {
    right: 7px;
    gap: 10px;
  }
}

.float-group #arrowTop {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

.float-group a {
  display: flex;
}

.float-group img {
  width: 70px;
  height: 70px;
}

@media (max-width: 767px) {
  .float-group img {
    width: 45px;
    height: 45px;
  }
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #00032d;
  position: sticky;
  top: 0;
  z-index: 1;
}

@media (max-width: 1023px) {
  header {
    align-items: center;
  }
}

header .header-wrap {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1023px) {
  header .header-wrap {
    max-width: 100%;
    padding: 0 20px;
    justify-content: space-between;
    gap: 10px;
  }
}

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

header .logo::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(222, 226, 230, 0.5);
}

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

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

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

header .menu-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

@media (max-width: 1023px) {
  header .menu-wrap {
    gap: 18px;
    justify-content: flex-end;
  }
}

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

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

  header nav.show {
    position: absolute;
    top: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #00021f;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
  }

  header nav.show ul {
    width: calc(100% - 70px);
    height: auto;
    padding: 20px 20px 20px 50px;
  }

  header nav.show ul li {
    width: 100%;
    display: flex;
    align-items: center;
  }

  header nav.show ul li.border {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
  }

  header nav.show ul li a {
    color: #f2f2f2;
  }

  header nav.show ul li a.on {
    color: #f9ca24;
    font-weight: 700;
  }
}

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

header nav ul li {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  header nav ul {
    flex-direction: column;
  }
}

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

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

header .btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .hamburger {
  display: none;
}

@media (max-width: 1023px) {
  header .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 40px;
    text-indent: -9999px;
    background: url(/img/menu-icon.png) no-repeat center/contain;
  }
}

header .flag-group {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  gap: 5px;
  background: #252b5c;
  padding: 0 11px;
}

@media (max-width: 1023px) {
  header .flag-group {
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: #252b5c;
    padding: 0 12.5px;
  }

  header .flag-group.show .flag-wrap {
    position: absolute;
    top: 65px;
    display: flex;
    width: 121px;
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 9px;
    background: #00021f;
  }

  header .flag-group.show .flag-wrap img {
    width: 55px;
    height: 40px;
  }
}

header .flag-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #ffef5d;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

@media (max-width: 1023px) {
  header .flag-title {
    font-size: 14px;
    gap: 5px;
  }
}

header .flag-title:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(/img/down-icon.png) no-repeat center/contain;
}

@media (max-width: 1023px) {
  header .flag-title:after {
    width: 14px;
    height: 14px;
  }
}

header .flag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

header .flag-wrap img {
  height: 25px;
  -o-object-fit: contain;
  object-fit: contain;
}

.flag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.flag-item img {
  border: 1px solid transparent;
}

.flag-item:hover img {
  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, #001a35, #001a35), 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: 9px;
  clip-path: inset(0 round 9px);
}

.section-banner {
  padding: 0;
}

@media (max-width: 1023px) {
  .section-banner.web {
    display: none;
  }
}

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

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

section {
  padding: 40px 0;
}

@media (max-width: 767px) {
  section {
    padding: 30px 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-top .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.section-top.sub h3 {
  margin-top: 20px;
}

@media (max-width: 1023px) {
  .section-top.sub h3 {
    margin-top: 0;
  }
}

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

@media (max-width: 1023px) {
  .section-top.news {
    padding: 10px 0 20px;
  }
}

.section-top.news h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 9.3px;
}

.section-top.news h2::before {
  content: "";
  width: 11px;
  height: 17px;
  background: url("/img/news-icon.png") no-repeat center/contain;
}

.section-top.news .brand-info-wrapper {
  margin-top: 0;
}

.brand-info-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-info-wrapper.no-margin {
  margin: 0;
}

@media (max-width: 1023px) {
  .brand-info-wrapper {
    margin-top: 0;
    gap: 15px;
  }
}

.brand-info-wrapper picture {
  margin: -25px 0;
}

@media (max-width: 1023px) {
  .brand-info-wrapper picture {
    margin: 0;
  }
}

.brand-info-wrapper .brand-item {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 15px;
  background: #333650;
  padding: 20px;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .brand-item {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    width: calc(100% - 20px);
  }
}

.brand-info-wrapper .brand-logo {
  width: 158px;
  height: 118px;
  border-radius: 5px;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .brand-logo {
    width: 176px;
    height: 123px;
  }
}

.brand-info-wrapper .item-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .item-mid {
    padding: 10px 0;
    align-items: center;
  }
}

.brand-info-wrapper .item-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .item-title {
    font-size: 22px;
  }
}

.brand-info-wrapper .item-score {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-info-wrapper .item-score.no-line .score:after {
  display: none;
}

.brand-info-wrapper .item-score p {
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .item-score p {
    font-size: 16px;
  }
}

.brand-info-wrapper .score {
  display: flex;
  align-items: center;
  color: #fbc103;
  font-weight: 700;
  position: relative;
  gap: 15px;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .score {
    gap: 5px;
  }
}

.brand-info-wrapper .score:after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
}

.brand-info-wrapper .score img {
  height: 19px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .score img {
    margin-right: 10px;
  }
}

.brand-info-wrapper .review {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  border: 1px solid #00ff87;
  width: 111px;
  height: 34px;
  text-transform: capitalize;
  color: #00ff87;
  font-weight: 600;
  position: relative;
  transition: transform 0.3s ease;
}

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

.brand-info-wrapper .review:hover {
  border-radius: 5px;
  border: 1px solid #00ff87;
  background: #00ff87;
  color: #000;
}

.brand-info-wrapper .review:hover::before {
  filter: grayscale(100%) brightness(0);
}

.brand-info-wrapper .item-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .item-right {
    align-items: center;
  }
}

.brand-info-wrapper .item-right .right-title {
  color: #ffef5d;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .item-right .right-title {
    font-size: 16px;
  }
}

.brand-info-wrapper .item-right .right-title:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/img/down-icon.png) no-repeat center/contain;
}

.brand-info-wrapper .item-right .right-flag {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
  background: #2a2c43;
  padding: 20px;
}

@media (max-width: 1023px) {
  .brand-info-wrapper .item-right .right-flag {
    flex-wrap: wrap;
    padding: 10px 30px;
    justify-content: center;
  }
}

.brand-info-wrapper .item-right .right-flag img {
  height: 36px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 9px;
}

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

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

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

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

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

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

.section-qa .qa-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  line-height: normal;
  border-radius: 10px;
  background: rgba(51, 54, 80, 0.7);
}

.section-qa .qa-item.active p {
  padding: 10px 30px 10px 60px;
  display: block;
}

@media (max-width: 1023px) {
  .section-qa .qa-item.active p {
    padding: 10px 15px 10px 30px;
  }
}

.section-qa .qa-item.active h3 {
  border-bottom: 1px solid #555a80;
}

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

.section-qa .qa-item h3 {
  padding: 15px 90px 15px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 160%;
}

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

.section-qa .qa-item h3::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("/img/qa-icon.png") no-repeat center/contain;
}

.section-qa .qa-item h3::after {
  position: absolute;
  right: 30px;
  content: "";
  width: 40px;
  height: 40px;
  background: url("/img/arrow-icon2.png") no-repeat center/contain;
}

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

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

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

@media (max-width: 1023px) {
  .section-news-list .container {
    gap: 20px;
  }
}

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

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

.section-news-list .list-wrapper .list-item {
  display: flex;
  gap: 21px;
  color: #fff;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item {
    align-items: flex-start;
    gap: 10px;
  }
}

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

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item img {
    width: 103px;
  }
}

.section-news-list .list-wrapper .list-item .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

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

.section-news-list .list-wrapper .list-item .item-info p {
  color: #c0c1c2;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  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 .item-info p {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item .item-info p {
    font-size: 14px;
    line-height: 20px;
    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 .item-info p {
      display: -webkit-box !important;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      white-space: normal;
    }
  }
}

.section-news-list .list-wrapper .list-item .info-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item .info-date {
    font-size: 12px;
  }
}

.section-news-list .list-wrapper .list-item .info-date .tag {
  height: 21.8px;
  min-width: 113px;
  border-radius: 5px;
  background: #0660c1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item .info-date .tag {
    font-size: 10px;
    max-width: 70px;
  }
}

.section-news-list .list-wrapper .list-item h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  line-height: 28.8px;
  color: #fff;
  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;
  }
}

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

.section-news-list .list-wrapper .list-item .more-btn {
  font-weight: 600;
  color: #f9ca24;
  font-size: 18px;
}

@media (max-width: 1023px) {
  .section-news-list .list-wrapper .list-item .more-btn {
    font-size: 14px;
  }
}

.pagination-wrap {
  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 {
  background: transparent;
  color: #FFFFFF;
  border: none;
}

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

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

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

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

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

.section-news-detail .container h1 {
  margin-bottom: 10px;
}

.section-news-detail .container h2 {
  font-size: 28px;
}

.section-news-detail .container img {
  display: flex;
}

.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 {
  padding: 0 0 30px;
}

@media (max-width: 1023px) {
  .news-detail-info {
    padding-bottom: 20px;
  }
}

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

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

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

.news-detail-info .user-info.big {
  height: 64px;
}

@media (max-width: 1023px) {
  .news-detail-info .user-info.big {
    padding: 20px 10px;
    height: auto;
    flex-wrap: wrap;
  }
}

@media (max-width: 1023px) {
  .news-detail-info .user-info {
    font-size: 14px;
  }
}

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

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

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

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

.news-detail-info .prev-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 269px;
  color: #f9ca24;
  font-weight: 600;
  gap: 10px;
  position: relative;
  height: 44px;
  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, #001a35, #001a35), 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);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {
  .news-detail-info .prev-btn {
    width: 100%;
    height: 39px;
  }
}

.news-detail-info .prev-btn::before {
  content: "";
  width: 10px;
  height: 9px;
  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 .navigation-wrap {
  display: flex;
  justify-content: space-between;
}

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

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

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

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

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

.news-detail-info .navigation-wrap .tag-group .tag-item:hover {
  background: #ffc107;
}

.tag a:hover {
  color: #000000;
}

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

@media (max-width: 1023px) {
  .section-ipl-wrapper .container {
    overflow: hidden;
    max-width: calc(100% - 20px);
    margin: 0 0 0 20px;
  }
}

.section-ipl-wrapper h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #0660c1;
  height: 56px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 -10px 0;
}

@media (max-width: 1023px) {
  .section-ipl-wrapper h2 {
    height: 39px;
    font-size: 18px;
    margin: 10px 0;
    width: calc(100% - 20px);
  }
}

@media (max-width: 1023px) {
  .section-ipl-wrapper p {
    width: calc(100% - 20px);
    padding-right: 20px;
  }
}

.section-ipl-wrapper .ipl-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 1023px) {
  .section-ipl-wrapper .ipl-table {
    margin: 10px 0;
    overflow-x: auto;
  }
}

.section-ipl-wrapper .table-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.section-ipl-wrapper .table-row.table-hrader .table-td {
  border-radius: 10px;
  border: 1px solid #ffc107;
  background: #ffc107;
  color: #000;
  font-weight: 700;
}

.section-ipl-wrapper .table-td {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 0 0 calc(25% - 10px);
  border-radius: 10px;
  border: 1px solid #ffc107;
  background: #2e3147;
  color: #ffc107;
  padding: 15px 10px;
}

@media (max-width: 1023px) {
  .section-ipl-wrapper .table-td {
    flex: 0 0 calc(50% - 10px);
  }
}

.section-ipl-wrapper .more-btn {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media (max-width: 1023px) {
  .section-ipl-wrapper .more-btn {
    margin-top: 10px;
  }
}

.section-ipl-wrapper .more-btn::before {
  content: "";
  width: 40px;
  height: 41px;
  background: url(/img/more-arrow.png) no-repeat center/contain;
}

.register-wrapper {
  padding: 40px 0;
}

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

.register-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-wrapper .form-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 767px) {
  .register-wrapper .form-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.register-wrapper .form-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .register-wrapper .form-content {
    width: 100%;
  }
}

.register-wrapper .form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-wrapper .form-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.register-wrapper .form-item p {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding-left: 9px;
  border-left: 4px solid #00ff87;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .register-wrapper .form-item p {
    font-size: 14px;
  }
}

.register-wrapper .form-item input {
  height: 52px;
  padding: 0 20px;
  align-items: center;
  border-radius: 5px;
  background: #232638;
  border: none;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
}

@media (max-width: 767px) {
  .register-wrapper .form-item input {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
  }
}

.register-wrapper .form-item input::-moz-placeholder {
  color: #807f92;
}

.register-wrapper .form-item input::placeholder {
  color: #807f92;
}

.register-wrapper .form-item .input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.register-wrapper .form-item .input-wrap input {
  flex: 1;
}

.register-wrapper .form-item .select-form {
  position: relative;
}

.register-wrapper .form-item .select-form:before {
  position: absolute;
  top: 50%;
  right: 20px;
  content: " ";
  width: 0;
  height: 0;
  margin-top: -5px;
  border-style: solid;
  border-width: 9px 7px 0 7px;
  border-color: #00ff87 transparent transparent transparent;
  pointer-events: none;
}

.register-wrapper .form-item select {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  border-radius: 5px;
  background: #232638;
  border: none;
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 767px) {
  .register-wrapper .form-item select {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }
}

.register-wrapper .sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 62px;
  padding: 5px 15px;
  border-radius: 77px;
  border: 1px solid #ffb424;
  background: linear-gradient(180deg, #fffce1 0.1%, #ffef5d 9.1%, #ff961b 50.5%, #ffef5d 91.1%, #fffce2 100%);
  font-size: 24px;
  font-weight: 600;
  border: none;
  color: #000;
  align-self: center;
  cursor: pointer;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .register-wrapper .sign-up {
    width: 280px;
    height: 40px;
    font-size: 14px;
  }
}

.register-wrapper .form-img {
  width: 560px;
}

@media (max-width: 767px) {
  .register-wrapper .form-img {
    width: 100%;
  }
}

.register-wrapper .form-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.register-wrapper .register-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .register-wrapper .register-info {
    font-size: 14px;
  }
}

.register-wrapper .register-info a {
  color: #00ff87;
  font-weight: 500;
}

.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 {
  min-width: 500px;
  background: #232638;
  border-radius: 10px;
  border: 2px solid #ffc107;
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

@media (max-width: 767px) {
  .modal .modal-content {
    min-width: 300px;
  }
}

.modal .modal-body {
  padding: 15px;
  text-align: center;
  line-height: 25px;
}

.modal .modal-footer {
  border-top: 1px solid #d1d1d1;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: 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: 767px) {
  .modal button {
    width: 280px;
    height: 40px;
    font-size: 14px;
  }
}

.flag-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1023px) {
  .flag-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.flag-wrapper .flag-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 1023px) {
  .flag-wrapper .flag-wrap {
    flex-wrap: wrap;
  }
}

.flag-wrapper .flag-wrap img {
  width: 50px;
  height: 36px;
}

@media (max-width: 1023px) {
  .flag-wrapper .flag-wrap img {
    width: 55px;
    height: 40px;
  }
}

.promotions-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promotions-wrapper .promotion-list-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1023px) {
  .promotions-wrapper .promotion-list-wrapper {
    margin-top: 0;
    gap: 20px;
  }
}

.promotions-wrapper .promotion-tab {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #a7a7a7;
  height: 70px;
}

@media (max-width: 1023px) {
  .promotions-wrapper .promotion-tab {
    height: 60px;
  }
}

.promotions-wrapper .tab-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@media (max-width: 1023px) {
  .promotions-wrapper .tab-item {
    gap: 5px;
  }
}

.promotions-wrapper .tab-item::before {
  content: "";
  width: 30px;
  height: 30px;
}

@media (max-width: 1023px) {
  .promotions-wrapper .tab-item::before {
    width: 20px;
    height: 20px;
  }
}

.promotions-wrapper .tab-item:hover,
.promotions-wrapper .tab-item.active {
  color: #ffc107;
  font-weight: 600;
}

.promotions-wrapper .tab-item.limited::before {
  background: url(/img/promotions-icon.png) no-repeat center/contain;
}

.promotions-wrapper .tab-item.limited:hover::before,
.promotions-wrapper .tab-item.limited.active::before {
  background: url(/img/promotions-icon-on.png) no-repeat center/contain;
}

.promotions-wrapper .tab-item.ongoing::before {
  background: url(/img/promotions-icon2.png) no-repeat center/contain;
}

.promotions-wrapper .tab-item.ongoing:hover::before,
.promotions-wrapper .tab-item.ongoing.active::before {
  background: url(/img/promotions-icon2-on.png) no-repeat center/contain;
}

.promotions-wrapper .promotion-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (max-width: 1023px) {
  .promotions-wrapper .promotion-list {
    gap: 20px;
  }
}

.promotions-wrapper .list-item {
  display: flex;
  gap: 20px;
  border-radius: 15px;
  background: #2e3147;
  padding: 20px;
}

@media (max-width: 1023px) {
  .promotions-wrapper .list-item {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
}

.promotions-wrapper .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #c0c1c2;
}

@media (max-width: 1023px) {
  .promotions-wrapper .item-info {
    justify-content: flex-start;
    gap: 15px;
  }
}

.promotions-wrapper .item-info p {
  flex: 1;
}

.promotions-wrapper h2 {
  color: #00ff87;
  font-size: 28px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .promotions-wrapper h2 {
    font-size: 20px;
  }
}

.promotions-wrapper .flag-wrapper {
  flex: initial;
  justify-content: flex-start;
  padding: 10px 20px;
  background: #2a2c43;
  border-radius: 15px;
}

.promotions-wrapper .flag-wrapper .flag-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: #ffef5d;
  position: relative;
  gap: 5px;
  display: flex;
  align-items: center;
}

.promotions-wrapper .flag-wrapper .flag-title:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/img/down-icon.png) no-repeat center/contain;
  transform: rotate(270deg);
}

@media (max-width: 1023px) {
  .promotions-wrapper .flag-wrapper .flag-title:after {
    width: 22.5px;
    height: 22.5px;
  }
}

@media (max-width: 1023px) {
  .promotions-wrapper .flag-wrapper .flag-wrap {
    gap: 14px;
  }

  .promotions-wrapper .flag-wrapper .flag-wrap img {
    width: 50px;
    height: 36px;
  }
}

.app-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-wrapper .play-now-btn {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62px;
  gap: 15px;
  border-radius: 77px;
  border: 1px solid #ffb424;
  background: linear-gradient(180deg, #fffce1 0.1%, #ffef5d 9.1%, #ff961b 50.5%, #ffef5d 91.1%, #fffce2 100%);
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

@media (max-width: 1023px) {
  .app-wrapper .play-now-btn {
    margin: 0;
    height: 44px;
    font-size: 20px;
  }
}

.app-wrapper h2 {
  color: #00ff87;
}

.app-wrapper h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #0660c1;
  padding: 10px 20px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

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

.app-wrapper .app-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-wrapper .list-item {
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 15px;
  background: #2e3147;
  padding: 20px 30px;
}

@media (max-width: 1023px) {
  .app-wrapper .list-item {
    flex-direction: column;
    padding: 20px;
  }
}

.app-wrapper .app-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #c0c1c2;
  gap: 9px;
}

.app-wrapper h4 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1023px) {
  .app-wrapper h4 {
    font-size: 24px;
  }
}

.app-wrapper .score-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .app-wrapper .score-wrapper {
    gap: 5px 10px;
  }
}

.app-wrapper .score-wrapper span {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 400;
  color: #fff;
  height: 37px;
}

.app-wrapper .score-wrapper span.star {
  gap: 5px;
  color: #fbc103;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .app-wrapper .score-wrapper span.star img {
    height: 16px;
  }
}

.app-wrapper .score-wrapper span:not(:last-child):after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 15px;
}

@media (max-width: 1023px) {
  .app-wrapper .score-wrapper span:not(:last-child):after {
    margin-left: 10px;
  }
}

.app-wrapper .play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 204px;
  height: 62px;
  border-radius: 77px;
  border: 1px solid #ffb424;
  background: linear-gradient(180deg, #fffce1 0.1%, #ffef5d 9.1%, #ff961b 50.5%, #ffef5d 91.1%, #fffce2 100%);
  color: #000;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .app-wrapper .play-btn {
    height: 40px;
    font-size: 18px;
  }
}

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

footer .footer-wrap {
  padding: 30px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

footer .footer-item {
  display: flex;
  gap: 10px;
}

@media (max-width: 1023px) {
  footer .footer-item {
    flex-direction: column;
  }
}

footer .footer-item.center {
  align-items: center;
}

@media (max-width: 1023px) {
  footer .footer-item.center {
    align-items: flex-start;
  }
}

footer .footer-title,
footer .flag-title {
  min-width: 150px;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1023px) {

  footer .footer-title,
  footer .flag-title {
    font-size: 16px;
  }
}

footer p {
  color: #9ca3af;
  font-size: 16px;
}

@media (max-width: 1023px) {
  footer p {
    font-size: 14px;
  }
}

footer .footer-link {
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  footer .footer-link {
    gap: 15px;
  }
}

footer .footer-link a {
  color: #fff;
  line-height: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: transform 0.3s ease;
}

@media (max-width: 1023px) {
  footer .footer-link a {
    gap: 15px;
    line-height: 40px;
  }
}

footer .footer-link a:not(:last-child):after {
  content: "";
  width: 1px;
  height: 25px;
  background: #8f8f8f;
}

footer .footer-link a:hover {
  color: #f9ca24;
}

footer .wrap-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .wrap-right img {
  width: 45px;
  height: 45px;
}

footer .copyright {
  width: 100%;
  background: #252b5c;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

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

footer .copyright a {
  color: #00ff87;
}

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


.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.downloads::after {
  content: "";
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: 15px;
}

.text-white {
  color: #FFFFFF;
}

#arrowTop.hide {
  display: none;
}