@charset "UTF-8";

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

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

a {
  color: #fec32e;
}

h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

h1 img {
  width: 40px;
  height: 40px;
}

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

h2 {
  color: #ec8a41;
  font-size: 28px;
  font-weight: 700;
}

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

h2.has-border {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  color: #fff;
  border-bottom: 1px solid var(--Gray-900, #4f4f4f);
  padding-bottom: 8px;
}

@media (max-width: 1023px) {
  h2.has-border {
    margin-top: 12px;
    gap: 14px;
  }

  h2.h-has-border::before {
    height: 66px !important;
  }
}

h2.has-border::before {
  content: "";
  width: 4px;
  height: 34px;
  background: #f9c11c;
}



h2.no-margin {
  margin-top: 0;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f9c11c;
  text-transform: uppercase;
}

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

.fw-700 {
  font-weight: 700;
}

h3.orange,
.text-24-20 {
  color: #ec8a41;
  font-size: 24px;
}

@media (max-width: 1023px) {

  h3.orange,
  .text-24-20 {
    font-size: 20px;
  }
}

p {
  line-height: 140%;
}

p a {
  color: #ec8a41;
}

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

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

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

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

.float-group #arrowTop img {
  width: 60px;
  height: 60px;
}

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

.float-group a {
  display: flex;
}

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

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

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 112px;
  background: linear-gradient(270deg, #ec8a41 0%, #742f1a 67.79%) top, linear-gradient(270deg, #3d3d3d 0%, #000 100%) bottom;
  background-repeat: no-repeat;
  background-size: 100% 64px, 100% 48px;
  position: sticky;
  top: 0;
  z-index: 2;
}

@media (max-width: 1023px) {
  header {
    height: 88px;
    align-items: center;
    background: linear-gradient(270deg, #ec8a41 0%, #742f1a 67.79%);
  }
}

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

@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;
  height: 64px;
}

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

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

header nav {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  height: 48px;
}

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

  header nav.show {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(270deg, var(--Gray-1200, #1d1d1d) 0%, var(--Gray-1100, #3d3d3d) 50%, var(--Gray-1200, #1d1d1d) 100%), #fff;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
    padding-top: 88px;
  }

  header nav.show::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background: #1d1d1d;
  }

  header nav.show ul {
    width: 100%;
    height: auto;
  }

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

  header nav.show ul li a {
    color: #f2f2f2;
    min-height: 48px;
  }

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

header nav ul {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  text-transform: uppercase;
  height: 100%;
}

header nav ul li {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  min-width: 123px;
  width: 100%;
}

header nav ul li.home {
  min-width: 64px;
  width: -moz-fit-content;
  width: fit-content;
}

header nav ul li.has-sub {
  gap: 10px;
}

@media (max-width: 1023px) {
  header nav ul li.has-sub {
    flex-wrap: wrap;
    gap: 0;
  }
}

header nav ul li.has-sub.open .sub-menu {
  position: absolute;
  top: 48px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  width: 160px;
  padding: 10px 0;
}

@media (max-width: 1023px) {
  header nav ul li.has-sub.open .sub-menu {
    flex: 0 0 100%;
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    top: 0;
    padding: 0;
  }
}

header nav ul li.has-sub>a {
  position: relative;
  display: flex;
  align-items: center;
}

header nav ul li.has-sub>a:after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background: url(/img/menu-arrow.png) no-repeat center/contain;
}

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

header nav a {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

header nav a:hover {
  color: #F9C11C;
}

header nav a.on {
  color: #ec8a41;
}

.bg-ec8a41 {
  background: #ec8a41;
}

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

@media (max-width: 1023px) {
  header .btn-group {
    gap: 16px;
  }
}

header .hamburger {
  display: none;
}

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

  header .hamburger.active {
    background: url(/img/menu-close.png) no-repeat center/contain;
    z-index: 1;
  }
}

header .sub-menu {
  display: none;
}

header .sub-menu a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  min-height: 40px;
  width: auto;
}

@media (max-width: 1023px) {
  header .sub-menu a {
    flex: 0 0 calc(100% - 40px);
  }
}

.sign-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #ed1521 0%, #f60 100%);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  height: 44px;
  gap: 4px;
  border-radius: 8px;
  background: linear-gradient(270deg, #1d1d1d 0%, #3d3d3d 50%, #1d1d1d 100%);
  width: 128px;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .sign-btn {
    width: 96px;
  }
}

.breadcrumb-wrap {
  padding: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(270deg, var(--Gray-1100, #3d3d3d) 0%, var(--Gray-1300, #000) 67.79%);
}

.breadcrumb-wrap .breadcrumb {
  display: flex;
  min-height: 38px;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  color: #e7e7e7;
}

@media (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb {
    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;
}

section {
  padding: 56px 0;
}

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

section.bg1 {
  background: linear-gradient(270deg, var(--Orange-400, #ec8a41) 0%, var(--Orange-900, #742f1a) 67.79%);
}

@media (max-width: 1023px) {
  section.bg1 {
    background: transparent;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

section.bg9 {
  background: url("/img/handicap-bg.png") no-repeat bottom center/cover;
}

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

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

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

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

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

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

section.black {
  background: rgba(0, 0, 0, 0.5);
}

section.conclusion {
  border-top: 4px solid var(--Orange-400, #ec8a41);
  background: url("/img/handicap-bg.png") no-repeat bottom center/cover;
  position: relative;
  padding: 40px 0 56px;
}

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

section.conclusion.no-bg {
  background: transparent;
}

section.conclusion.no-bg::before {
  display: none;
}

section.conclusion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

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

section.conclusion .container {
  position: relative;
  z-index: 1;
}

section.conclusion h2 {
  display: flex;
  align-items: center;
}

section.conclusion h2 span {
  color: #fff;
}

section.conclusion h2 img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

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-main.page {
  padding: 56px 0 12px;
}

.section-main .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.feature-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1023px) {
  .feature-list.list2 {
    flex-direction: column;
  }
}

.feature-list.list2 .feature-item {
  flex: 0 0 calc(20% - 13px);
  padding: 0;
  gap: 0;
}

@media (max-width: 1023px) {
  .feature-list.list2 .feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .feature-list.list3 {
    flex-direction: column;
  }
}

.feature-list.list3 .feature-item {
  flex: 0 0 calc(25% - 13px);
  padding: 0;
  gap: 0;
}

@media (max-width: 1023px) {
  .feature-list.list3 .feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .feature-list.only-text .feature-item {
    gap: 12px;
    padding: 20px 12px;
    flex: 0 0 calc(100% - 24px);
  }
}

.feature-list.only-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ec8a41;
  min-width: 104px;
  word-break: keep-all;
}

@media (max-width: 1023px) {
  .feature-list.only-text h3 {
    min-width: initial;
    font-size: 20px;
  }
}

.feature-list.only-text p {
  flex: 1;
}

.feature-list.no-bg {
  gap: 16px;
}

#section1 .feature-list.no-bg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#section2 .feature-list.no-bg,
#section3 .feature-list.no-bg,
#section4 .feature-list.no-bg,
#section5 .feature-list.no-bg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.baccarat-info h3 {
  word-break: keep-all;
}

.feature-list.no-bg .feature-item {
  flex: initial;
  padding: 0;
  gap: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
}

.feature-list.no-bg .feature-item:after {
  display: none;
}

.feature-list.black .feature-item {
  background: rgba(0, 0, 0, 0.7);
}

.feature-list .feature-item {
  flex: 0 0 calc(50% - 56px);
  border-radius: 8px;
  border-bottom: 2px solid rgba(236, 138, 65, 0);
  background: linear-gradient(95deg, rgba(61, 61, 61, 0.5) 27.78%, #333 72.22%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 23px 24px;
  gap: 16px;
  position: relative;
}

@media (max-width: 1023px) {
  #section1 .feature-list.no-bg {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  #section2 .feature-list.no-bg,
  #section3 .feature-list.no-bg,
  #section4 .feature-list.no-bg,
  #section5 .feature-list.no-bg {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }

  .feature-list .feature-item {
    flex: 0 0 calc(100% - 48px);
  }
}

.info-feature .feature-item {
  position: relative;
}

.feature-list .feature-item:after,
.info-feature .feature-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(236, 138, 65, 0) 0%, rgb(236, 138, 65) 50%, rgba(236, 138, 65, 0) 100%);
}

.info-feature .feature-item:after {
  bottom: -2px;
}

.feature-list .feature-item img {
  width: 64px;
  height: 64px;
}

.feature-list .feature-item .item-info {
  display: flex;
  flex-direction: column;
}

.feature-list .feature-item ul {
  margin-left: 20px;
}

.feature-list .feature-item ul li {
  list-style-type: disc;
}

.feature-list2-wrapper {
  display: flex;
  gap: 32px;
}

@media (max-width: 1023px) {
  .feature-list2-wrapper {
    flex-direction: column;
    gap: initial;
  }
}

.feature-list2-wrapper .feature-img {
  display: flex;
  flex-direction: column;
}

.feature-list2-wrapper .feature-img img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.feature-list2-wrapper .feature-img .main-btn {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .feature-list2-wrapper .feature-img .main-btn {
    margin: 0 auto 28px;
  }

  .feature-list2-wrapper .feature-img img {
    width: 266px;
    margin: auto;
  }
}

.feature-list2 {
  flex: 1;
  margin-top: 12px;
  display: flex;
  gap: 16px;
}

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

.feature-list2.one-row {
  flex-direction: column;
  margin-bottom: 28px;
}

@media (max-width: 1023px) {
  .feature-list2.one-row {
    margin-bottom: 0;
  }
}

.feature-list2 .feature-item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  border-bottom: 2px solid rgba(236, 138, 65, 0);
  background: linear-gradient(95deg, rgba(61, 61, 61, 0.5) 27.78%, #333 72.22%);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  gap: 16px;
  position: relative;
}

@media (max-width: 1023px) {
  .feature-list2 .feature-item {
    padding: 16px;
  }
}

.feature-list2 .feature-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(236, 138, 65, 0) 0%, rgb(236, 138, 65) 50%, rgba(236, 138, 65, 0) 100%);
}

.feature-list2 h3,
.feature-list2 .text-20 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list2 h3 img,
.feature-list2 .text-20 img {
  width: 32px;
  height: 33px;
}

.feature-list2 ul {
  margin-left: 20px;
}

.feature-list2 ul li {
  list-style: disc;
}

.section-nav {
  padding: 20px 0;
}

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

.section-nav .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.section-nav .has-border {
  display: flex;
  padding-left: 8px;
  line-height: 29px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  border-left: 4px solid #f9c11c;
}

.section-nav .nav-list {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1023px) {
  .section-nav .nav-list {
    gap: 11px;
  }
}

.section-nav .nav-list a {
  flex: 0 0 calc(33.3% - 20px);
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: #f9c11c;
  font-size: 18px;
  font-weight: 400;
  color: #1d1d1d;
  transition: transform 0.3s;
}

@media (max-width: 1023px) {
  .section-nav .nav-list a {
    height: 48px;
    font-size: 16px;
    position: relative;
  }

  .section-nav .nav-list a::before {
    content: "";
    width: 28px;
    height: 28px;
    background: url("/img/nav-arrow.png") no-repeat top center/contain;
  }
}

.section-nav .nav-list a:hover {
  transform: translateY(-3px);
}

.section-nav .list-title {
  font-weight: 700;
  color: #03e08b;
}

@media (max-width: 1023px) {
  .section-nav .nav-wrapper {
    width: 100%;
    overflow-x: auto;
  }
}

.section-nav .nav-list2 {
  margin: 30px auto 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 1023px) {
  .section-nav .nav-list2 {
    margin: 17px 0 0;
    justify-content: flex-start;
  }
}

.section-nav .nav-list2.nav-start {
  justify-content: flex-start;
}

.section-nav .nav-list2 a {
  display: flex;
  align-items: flex-end;
  width: calc(20% - 8px);
  height: 60px;
  gap: 8px;
  border-radius: 50px;
  border: 1px solid #5d5d5d;
  background: linear-gradient(180deg, var(--Gray-1100, #3d3d3d) 50%, var(--Gray-1200, #1d1d1d) 100%);
}

@media (max-width: 1023px) {
  .section-nav .nav-list2 a {
    flex: 0 0 calc(55% - 10px);
  }

  .mob-w-158 a {
    flex: 0 0 calc(50% - 10px) !important;
  }
}

.section-nav .nav-list2 a span {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.section-nav .nav-list2 a img {
  width: 88px;
  height: 88px;
}

.section-nav .nav-list3 {
  margin: 30px auto 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 1023px) {
  .section-nav .nav-list3 {
    margin: 17px 0 0;
    justify-content: flex-start;
  }
}

.section-nav .nav-list3 .list-item {
  border-radius: 50px;
  border: 1px solid var(--Gray-800, #5d5d5d);
  background: linear-gradient(180deg, var(--Gray-100, #fff) 50%, var(--Gray-500, #b0b0b0) 100%);
  height: 60px;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .section-nav .nav-list3 .list-item {
    height: 48px;
    min-width: 160px;
  }
}

.section-nav .nav-list3 .list-item img {
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-nav .nav-list3 a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

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

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

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

.section-info .container.football-wrapper {
  gap: 16px;
}

@media (max-width: 1023px) {
  .section-info .container.football-wrapper {
    gap: 20px;
  }
}

.section-info .info-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-info .info-title h2 {
  padding-right: 16px;
  font-weight: 700;
}

.br-right-4 {
  border-right: 4px solid #ec8a41;
  word-break: keep-all;
}

.section-info .info-title p {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .section-info .info-title p {
    font-size: 20px;
  }
}

.section-info picture {
  margin-top: 12px;
}

.section-info picture img {
  width: 100%;
}

.section-info .info-wrapper {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(100% - 64px);
  background: url("/img/home-bg.png") no-repeat top center/cover;
  padding: 40px 32px;
  border-radius: 16px;
}

@media (max-width: 1023px) {
  .section-info .info-wrapper {
    margin-top: 8px;
    background: url("/img/home-bg-m.png") no-repeat top center/cover;
    padding: 24px 0;
    width: 100%;
    border-radius: 8px;
    gap: 16px;
  }
}

.section-info .info-wrapper.no-bg {
  background: #1d1d1d;
  padding: 20px 32px 32px;
}

@media (max-width: 1023px) {
  .section-info .info-wrapper.no-bg {
    padding: 12px;
    width: calc(100% - 24px);
  }

  .section-info .info-wrapper.no-bg .info-list-title {
    gap: 8px;
  }

  .section-info .info-wrapper.no-bg .info-list-title img {
    width: 32px;
    height: 32px;
  }
}

.section-info .info-list-title {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

@media (max-width: 1023px) {

  .section-info .info-list-title::before,
  .section-info .info-list-title:after {
    flex: 1;
    height: 1px;
    background: #4f4f4f;
    content: "";
  }
}

.section-info .info-list-title::after {
  flex: 1;
  height: 1px;
  background: #4f4f4f;
  content: "";
}

.section-info .info-list-title img {
  width: 56px;
  height: 56px;
}

.section-info .info-list-title h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  color: #ec8a41;
}

@media (max-width: 1023px) {
  .section-info .info-list-title h3 {
    font-size: 20px;
  }
}

.section-info .info-list-title h3 label {
  color: #fff;
}

.section-info .info-list-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {

  .section-info .info-list-wrapper {
    width: 100%;
    overflow-x: auto;
  }

  .overflow-x {
    width: 100%;
    height: 95px;
    overflow-x: auto;
  }
}

.section-info .info-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 16px;
}

@media (max-width: 1023px) {
  .section-info .info-list {
    flex-wrap: nowrap;
    padding: 0 8px;
    gap: 10px;
  }
}

.section-info .info-list.info2 {
  gap: 10px;
}

.section-info .info-list.info2 .list-item {
  min-width: 113px;
}

@media (max-width: 1023px) {
  .section-info .info-list.info2 .list-item {
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 0 12px;
  }
}

.section-info .list-item {
  min-width: 204px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  min-height: 49px;
}

@media (max-width: 1023px) {
  .section-info .list-item {
    min-width: -moz-fit-content;
    min-width: fit-content;
    min-height: 46px;
  }
}

.section-info .list-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(180deg, var(--Orange-400, #ec8a41) 0%, var(--Orange-600, #da591c) 100%);
  border-radius: 50%;
}

.section-info .info-type-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .section-info .info-type-wrapper {
    width: 100%;
    overflow-x: auto;
  }
}

.section-info .info-type {
  display: flex;
  margin-left: 10px;
  width: 100%;
}

@media (max-width: 1023px) {
  .section-info .info-type {
    width: -moz-fit-content;
    width: fit-content;
    gap: 4px;
    margin-left: 0;
  }
}

.section-info .info-type .type-item {
  flex: 1;
  height: 127px;
  border-radius: 50%;
  margin-left: -10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .section-info .info-type .type-item {
    width: 56px;
    height: 56px;
    margin-left: 0;
  }
}

.section-info .info-type .type-item:nth-child(odd) {
  background: linear-gradient(142deg, var(--Yellow-100, #f9c11c) 4.92%, var(--Orange-600, #da591c) 95.08%);
  color: #000;
}

.section-info .info-type .type-item:nth-child(even) {
  color: #fff;
  border: 2px solid var(--Gray-1100, #3d3d3d);
  background: var(--Gray-1200, #1d1d1d);
}

.section-info .info-feature {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-info .info-feature .feature-item {
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  border-radius: 8px;
  border-bottom: 2px solid #1d1d1d;
  background: linear-gradient(95deg, rgba(34, 34, 34, 0.9) 27.78%, rgba(17, 17, 17, 0.5) 72.22%);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  min-height: 168px;
  padding: 10px 24px;
  gap: 16px;
}

@media (max-width: 1023px) {
  .section-info .info-feature .feature-item {
    flex-direction: column;
    padding: 16px;
    width: calc(100% - 32px);
  }
}

.section-info .info-feature img {
  width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .section-info .info-feature img {
    width: 96px;
  }
}

.section-info .info-feature .info-wrap {
  display: flex;
  flex-direction: column;
}

.section-info .handicap-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 64px;
}

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

.section-info .handicap-wrapper.one-row {
  flex-direction: column;
  gap: 40px;
}

.section-info .handicap-wrapper.one-row .handicap-item {
  flex: 0 0 100%;
  gap: 20px;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper.one-row .handicap-item {
    gap: 16px;
  }
}

.section-info .handicap-wrapper.has-border {
  margin-top: 36px;
  gap: 32px 0;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper.has-border {
    flex-direction: column;
    margin-top: 0;
  }
}

.section-info .handicap-wrapper.has-border .handicap-item {
  flex: 0 0 calc(50% - 16px);
  padding-top: 32px;
  gap: 20px;
  border-top: 1px solid #4f4f4f;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper.has-border .handicap-item {
    padding-top: 20px !important;
    flex: 0 0 100%;
    gap: 16px;
    border-top: 1px solid #4f4f4f !important;
  }
}

.section-info .handicap-wrapper.has-border .handicap-item:nth-child(even) {
  padding-left: 16px;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper.has-border .handicap-item:nth-child(even) {
    padding-left: 0;
  }
}

.section-info .handicap-wrapper.has-border .handicap-item:nth-child(odd) {
  padding-right: 16px;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper.has-border .handicap-item:nth-child(odd) {
    padding-right: 0;
  }
}

.section-info .handicap-wrapper.has-border .handicap-item:first-child,
.section-info .handicap-wrapper.has-border .handicap-item:nth-child(2) {
  border-top: none;
  padding-top: 0;
}

.section-info .handicap-wrapper.has-border .handicap-item .item-top p::before {
  display: none;
}

.section-info .handicap-wrapper .handicap-item {
  flex: 0 0 calc(50% - 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-info .handicap-wrapper .handicap-item ul {
  margin-left: 20px;
}

.section-info .handicap-wrapper .handicap-item ul li {
  list-style: disc;
}

.section-info .handicap-wrapper h2 {
  padding-bottom: 12px;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper h2 {
    padding-bottom: 8px;
  }
}

.section-info .handicap-wrapper .item-top {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper .item-top {
    align-items: flex-start;
    gap: 8px;
  }

  .sp-div .item-top {
    flex-direction: column;
  }
}

.section-info .handicap-wrapper .item-top h2 {
  color: #fff;
  padding-bottom: 0;
}

.section-info .handicap-wrapper .item-top p {
  font-size: 24px;
  font-weight: 700;
  color: #f9c11c;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  position: relative;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper .item-top p {
    font-size: 20px;
  }
}

.section-info .handicap-wrapper .item-top p:before {
  content: "";
  width: 4px;
  height: 34px;
  background: #f9c11c;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper .item-top p:before {
    display: none;
  }
}

.section-info .handicap-wrapper .item-img img {
  width: 64px;
  height: 64px;
}

.section-info .handicap-wrapper .item-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  width: 140px;
  height: 70px;
}

.section-info .handicap-wrapper .item-logo img {
  width: 104px;
  max-height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-info .handicap-wrapper .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  padding: 16px;
  gap: 24px;
  position: relative;
}

@media (max-width: 1023px) {
  .section-info .handicap-wrapper .item-info {
    padding: 12px;
  }
}

.section-info .handicap-wrapper .item-info:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(236, 138, 65, 0) 0%, rgb(236, 138, 65) 50%, rgba(236, 138, 65, 0) 100%);
}

.section-info .handicap-wrapper .info-tag {
  display: flex;
  align-items: center;
  border-radius: 30px;
  background: linear-gradient(0deg, #238029 0%, #238029 100%), var(--Orange-950, #3f160b);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.section-info .handicap-wrapper .info-tag img {
  width: 32px;
  height: 32px;
}

.section-info .handicap-wrapper .info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-info .handicap-wrapper .info-content ul {
  margin-left: 30px;
}

.section-info .handicap-wrapper .info-content ul.disc li {
  list-style: disc;
}

.section-info .handicap-wrapper .info-content ul li {
  list-style: decimal;
}

.main-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 236px;
  width: -moz-fit-content;
  width: fit-content;
  height: 64px;
  gap: 8px;
  border-style: solid;
  border-width: 2px;
  border-image-source: linear-gradient(90deg, rgb(249, 193, 28) 0%, rgb(181, 67, 25) 100%);
  border-image-slice: 1;
  background-image: linear-gradient(180deg, #1d1d1d, #1d1d1d), linear-gradient(90deg, rgb(249, 193, 28) 0%, rgb(181, 67, 25) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 50px;
  clip-path: inset(0 round 50px);
  margin: 12px auto 0;
  position: relative;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .main-btn {
    margin: 8px auto 0;
    min-width: 80%;
    height: 52px;
    font-size: 20px;
  }
}

.main-btn.white {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.main-btn.white:after {
  background: url("/img/btn-arrow2.png") no-repeat center/contain;
}

.main-btn:after {
  content: "";
  width: 28px;
  height: 28px;
  background: url("/img/btn-arrow.png") no-repeat center/contain;
}

.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-qa .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.section-qa .container>h3 {
  color: #fff;
}

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

.section-qa .qa-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s;
  line-height: normal;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  border: 1px solid rgba(241, 154, 59, 0.4);
}

.section-qa .qa-item.active p {
  display: block;
}

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

.section-qa .qa-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  cursor: pointer;
  line-height: 160%;
  color: #f19a3b;
  padding: 0 20px;
}

@media (max-width: 1023px) {
  .section-qa .qa-item h3 {
    font-size: 16px;
    padding: 0 12px;
  }
}

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

.section-qa .qa-item p {
  padding: 16px 20px;
  display: none;
  margin: 0;
  border-top: 1px solid rgba(241, 154, 59, 0.4);
}

@media (max-width: 1023px) {
  .section-qa .qa-item p {
    padding: 12px;
  }
}

.baccarat-item {
  display: flex;
  gap: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 32px;
}

@media (max-width: 1023px) {
  .baccarat-item {
    flex-direction: column;
    padding: 20px 15px;
    gap: 16px;
    backdrop-filter: blur(0px);
  }
}

.baccarat-item img {
  width: 360px;
  max-width: 100%;
}

.baccarat-item .baccarat-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1023px) {
  .baccarat-item .baccarat-info {
    gap: 16px;
  }
}

.quadruple-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border-bottom: 2px solid rgba(236, 138, 65, 0);
  background: linear-gradient(95deg, rgba(61, 61, 61, 0.5) 27.78%, #333 72.22%);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  gap: 16px;
}

@media (max-width: 1023px) {
  .quadruple-wrap {
    flex-direction: column;
    padding: 16px 12px;
  }
}

.quadruple-wrap ul {
  margin-left: 20px;
}

.quadruple-wrap ul li {
  list-style: disc;
}

.quadruple-wrap img {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .quadruple-wrap .quadruple-info {
    margin-top: 12px;
  }
}

.payment-step .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-step .step-wrap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.payment-step .step-item {
  width: calc(100% - 40px);
  min-height: 56px;
  border-radius: 8px;
  border-bottom: 2px solid #ec8a41;
  background: linear-gradient(95deg, rgba(51, 51, 51, 0.9) 27.78%, rgba(85, 85, 85, 0.5) 72.22%);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .step-item h3 {
    padding-right: 20px;
  }
}

@media (max-width: 1023px) {
  .payment-step .step-item {
    padding: 16px;
    flex-wrap: wrap;
    width: calc(100% - 32px);
  }

  .payment-step .step-item p {
    flex: 0 0 100%;
  }
}

.payment-step .step-item:last-child::before {
  display: none;
}

.payment-step .step-item:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(236, 138, 65, 0) 0%, rgb(236, 138, 65) 50%, rgba(236, 138, 65, 0) 100%);
}

.payment-step .step-item::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: url("/img/payment-arrow.png") no-repeat center/contain;
}

.payment-step .step-item .num {
  font-size: 56px;
  font-weight: 700;
  padding-right: 4px;
}

.payment-step .step-item h3 {
  color: #ec8a41;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .payment-step .step-item h3 {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .payment-step .step-item p {
    flex: 1;
  }
}

.payment-nav {
  padding: 30px 0;
}

.payment-nav .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-nav .nav-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .payment-nav .nav-title {
    font-size: 20px;
  }
}

.payment-nav .nav-wrapper {
  width: 100%;
  overflow-x: auto;
}

.payment-nav .nav-wrap {
  display: flex;
  justify-content: space-evenly;
}

@media (max-width: 1023px) {
  .payment-nav .nav-wrap {
    justify-content: flex-start;
  }
}

.payment-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

@media (max-width: 1023px) {
  .payment-nav .nav-item {
    flex: 0 0 50%;
  }
}

.register-feature {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .register-feature {
    flex-direction: column;
    gap: 16px;
  }
}

.register-feature .register-item {
  display: flex;
  align-items: center;
  flex: 0 0 calc(33.3% - 54px);
  border-radius: 8px;
  border-bottom: 2px solid #ec8a41;
  background: linear-gradient(95deg, rgba(51, 51, 51, 0.9) 27.78%, rgba(85, 85, 85, 0.5) 72.22%);
  box-shadow: 0 0 var(--sds-size-depth-200) 0 rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
}

@media (max-width: 1023px) {
  .register-feature .register-item {
    flex: 0 0 calc(100% - 56px);
    gap: 20px;
  }
}

.register-feature .register-item .num {
  font-weight: 700;
  font-size: 112px;
  color: #5d5d5d;
  min-width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  .register-feature .register-item .num {
    min-width: 56px;
    font-size: 96px;
  }
}

.register-feature .register-item .item-info {
  display: flex;
  flex-direction: column;
}

.register-feature .register-item .item-info h2 {
  font-size: 18px;
}

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

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

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

footer .footer-top {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ed8d40;
}

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

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

footer .footer-item.link {
  min-width: 350px;
}

footer .footer-title {
  color: #000;
  font-weight: 700;
}

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

footer .footer-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

footer .footer-link a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  padding-left: 24px;
  position: relative;
}

@media (max-width: 1023px) {
  footer .footer-link a {
    font-size: 12px;
  }
}

footer .footer-link a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #000;
  border-radius: 50%;
}

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

footer .footer-media img {
  width: auto;
  height: 30px;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

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

footer .footer-info {
  flex: 1;
  color: #000;
  font-size: 16px;
  line-height: 25px;
}

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

footer .android-item {
  border-radius: 5px;
  background: #1e1e1e;
  width: 159px;
  padding: 4px 10px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

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

footer .android-item img {
  width: 40px;
  height: 40px;
}

footer .android-item .item-info {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 11px;
}

footer .android-item .info-title {
  font-size: 25px;
  font-weight: 700;
}

footer .copyright-wrap {
  width: 100%;
  padding: 20px 0;
  background: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .copyright-wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1023px) {
  footer .copyright-wrap .container {
    flex-direction: column;
    gap: 30px;
  }
}

footer .copyright-wrap img {
  height: 34px;
}

footer .copyright-wrap .copyright {
  font-size: 16px;
}

@media (max-width: 1023px) {
  footer .copyright-wrap .copyright {
    font-size: 18px;
    text-align: center;
    width: 59%;
  }
}

footer .copyright-wrap .copyright a {
  color: #ff0000;
}

/*# sourceMappingURL=main.css.map */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  margin-right: auto;
  margin-left: auto
}

@media (min-width:576px) {

  .container,
  .container-sm {
    max-width: 540px
  }
}

@media (min-width:768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 720px
  }
}

@media (min-width:992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px
  }
}

@media (min-width:1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px
  }
}

@media (min-width:1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px
  }
}

.mt-1 {
  margin-top: .25rem !important;
}

.text-white {
  color: #FFFFFF;
}

.news-container div {
  width: 100%;
}

.news-container .news-img {
  width: 100%;
  height: 100%;
}

.text-C1C1C1 {
  color: #C1C1C1;
}

.news-container .mb-48 {
  margin-bottom: 48px;
}

.post-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  flex-wrap: wrap;
}

.text-16 {
  font-size: 1rem;
}

.py-50-50-30 {
  padding: 50px 0;
}

.w-50-100 {
  width: 100%;
}

.author-h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#articleTitle {
  padding-bottom: 16px;
}

.article h2 {
  padding-bottom: 8px;
}

.article p {
  padding-bottom: 16px;
}

#category {
  color: #FFFFFF;
  text-decoration: underline;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

.article ul,
.article ol {
  margin-left: 20px;
}

.Barcelona-conclusion {
  background-image: url(/img/Barcelona_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-FFFFFF {
  background: rgba(255, 255, 255, 0.2);
}

.radius-5 {
  border-radius: 5px;
}

.gap-10 {
  gap: 10px;
}

.text-F1983C {
  color: #F1983C;
}

.Barcelona-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.wrap {
  flex-wrap: wrap;
}

.width-fit-content {
  width: fit-content;
}

.newslist-div {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: repeat(3, 1fr);
}

.text-hide-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFFFFF;
}

.SignUpBanner-div {
  margin: 40px 0;
  background-image: url(/img/SignUpBanner.webp);
}

.radius-30 {
  border-radius: 30px;
}

.SignUp-section .grid-container {
  display: grid;
  grid-gap: 24px !important;
}

.bg-222222 {
  background-color: #222222;
}

.fw-700 {
  font-weight: 700;
}

.radius-12 {
  border-radius: 12px;
}

.FatNumbers {
  font-family: Roboto;
  font-weight: 700;
  font-size: 112px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(245, 163, 56, 0.16);
}

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

.gap-20 {
  gap: 20px !important;
}

.example-div .border-white {
  border: 1px solid #FFFFFF;
}

.w-all-max {
  width: max-content;
}

.Steps-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/img/SignUp_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

#accordionExample .tab {
  background: #0000004D;

}

#accordionExample .tab-Q {
  padding: 10px 20px;
  border: 1px solid #F19A3B66
}

#accordionExample .tab__content {
  padding: 10px 20px;
  display: none;
  border: 1px solid #F19A3B66
}

#accordionExample .tab__content.show {
  display: block;
}

.rotate {
  margin-left: auto;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.rotated {
  transform: rotate(360deg);
}

.text-32-28 {
  font-size: 28px;
}

.text-20 {
  font-size: 20px;
}

.text-F9C11C {
  color: #F9C11C;
}

.info-wrap h3 {
  padding-bottom: 4px;
}

.pb-8 {
  padding-bottom: 8px;
}

.text-transform-none {
  text-transform: none;
}

.line-height-160 {
  line-height: 160%;
}

@media (min-width: 1025px) {
  .w-50-100 {
    width: 50%;
  }

  .w-40-40-100 {
    width: 40%;
  }

  .text-18-16-14 {
    font-size: 1.125rem;
    font-weight: 700;
  }

  .text-40-22-20 {
    font-size: 40px;
  }

  .w-max {
    width: max-content;
  }

  .SignUpBanner-div {
    background-size: 101%;
  }

  .SignUp-section .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .text-32-28 {
    font-size: 32px;
  }
}

@media (min-width: 679px) and (max-width: 1024px) {

  #articleImage {
    width: 100%;
    height: 397px;
  }

  .author-h1-div {
    flex-wrap: wrap;
  }

  .pos-aut-img {
    position: absolute;
    top: 27%;
  }

  .text-18-16-14 {
    font-size: 1rem;
    font-weight: 700;
  }

  .Barcelona-img img {
    width: 292px;
    margin: auto;
  }

  .news-div {
    margin-bottom: 30px;
  }

  .text-40-22-20 {
    font-size: 22px;
  }

  .Handicap-section .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .pad-wrap {
    flex-wrap: wrap;
  }

  .pad-w-100 {
    width: 100% !important;
  }
}

@media (min-width: 679px) {
  .Barcelona-conclusion .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .p-20-10 {
    padding: 20px;
  }

  .p-16-12 {
    padding: 16px;
  }

  .p-48-20 {
    padding: 48px;
  }

  .mob-main-btn,
  .orange-none-block,
  .d-none-block {
    display: none !important;
  }
}

@media (max-width: 678px) {
  #articleImage {
    width: 100%;
    height: 196px;
  }

  .breadcrumb {
    flex-wrap: nowrap;
  }

  .breadcrumb .breadcrumb-item:nth-child(2) {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFFFFF;
  }

  .py-50-50-30 {
    padding: 30px 0;
  }

  .author-h1-div {
    flex-wrap: wrap;
  }

  .author-h1 {
    justify-content: left;
  }

  .mobile-px-16 {
    padding: 0 1rem;
  }

  .w-40-40-100 {
    width: 100%;
  }

  .text-18-16-14 {
    font-size: 0.9rem;
    font-weight: 700;
  }

  .p-20-10 {
    padding: 10px;
  }

  .grid-container,
  .newslist-div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .Barcelona-img img {
    width: 100%;
  }

  .Barcelona-div {
    flex-wrap: wrap;
  }

  .news-div {
    margin-bottom: 30px;
  }

  .text-40-22-20 {
    font-size: 20px;
  }

  .p-16-12 {
    padding: 12px;
  }

  .grid-container .mobile-nowrap {
    flex-wrap: nowrap !important;
  }

  .SignUpBanner-div {
    background-size: 342%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: -3%;
  }

  .p-48-20 {
    padding: 20px 15px;
  }

  .Steps-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(/img/SignUp_bg.webp);
    background-size: 435%;
    background-repeat: no-repeat;
    background-position-x: center;
  }

  .web-main-btn,
  .orange-block-none,
  .d-block-none {
    display: none !important;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  gap: 5px;
}

.pagination-wrap .page-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.pagination-wrap .page-item.active {
  background: linear-gradient(180deg, #f6a637 0%, #ed8d40 100%);
  color: #FFFFFF;
  border: none;
}

@media (max-width: 767px) {
  .pagination-wrap {
    gap: initial;
  }
}