.company #wrapper {
  background-color: #3d055d;
}
.company .top-image {
  display: none;
}

/* Hero Section */
.hero-section {
  /* background-image: url(../assets/images/mainvisual.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  color: white;
  padding: 0 20px 100px 20px; */
}

.ico-check {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_763_20997)'%3E%3Cpath d='M11.4 1.40002H4.60002C2.83271 1.40002 1.40002 2.83271 1.40002 4.60002V11.4C1.40002 13.1673 2.83271 14.6 4.60002 14.6H11.4C13.1673 14.6 14.6 13.1673 14.6 11.4V4.60002C14.6 2.83271 13.1673 1.40002 11.4 1.40002Z' fill='%2300BD79'/%3E%3Cpath d='M7.24118 10.6744C7.05678 10.6744 6.87278 10.6044 6.73198 10.4636L4.34078 8.07237C4.05958 7.79117 4.05958 7.33517 4.34078 7.05397C4.62198 6.77317 5.07798 6.77317 5.35918 7.05397L7.24118 8.93637L10.6408 5.53677C10.9224 5.25597 11.3784 5.25597 11.6592 5.53677C11.9404 5.81797 11.9404 6.27397 11.6592 6.55517L7.75038 10.4636C7.60958 10.604 7.42558 10.6744 7.24118 10.6744Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_763_20997'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");

}

.hero-list .fa.fa-check-square {
  color: #20B365;
}

.wrapper {
  position: relative;
}

.bg-section {
  position: absolute;
  background-image: url(../assets/images/mainvisual.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  color: white;
  height: 800px;
  width: 100%;
  left: 0;
  right: 0;
}

/* Hero Container */
.hero-container {
  max-width: 1024px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  position: relative;
}

/* Hero Content */
.hero-content {
  text-align: left;
  padding: 100px 0;
}

/* Subtitle */
.hero-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* Title */
.hero-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
}

/* Buttons */
.hero-buttons {
  margin-top: 60px;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #fff61b;
  color: black;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* List */
.hero-list {
  list-style: none;
  padding-left: 20px;
}

.hero-list li {
  font-size: 16px;
  margin-bottom: 8px;
}

/* Description */
.hero-description {
  margin-top: 20px;
}

/* Hero Image */
.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 75%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-list {
    padding-left: 0;
  }

  .hero-image {
    position: relative;
    margin-top: 20px;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-button {
    padding: 8px 16px;
  }

  .hero-list li {
    font-size: 14px;
  }

  .hero-description {
    font-size: 14px;
  }
}

/* Solution Section */
.solution-section {
  color: white;
}

/* Container */
.solution-container {
  max-width: 1024px;
  margin: auto;
  width: 100%;
  padding: 40px 20px;
}

/* Title */
.solution-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

/* Solution Content */
.solution-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.solution-image {
  width: 50%;
}

/* Solution Details */
.solution-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Solution Item */
.solution-item {
  text-align: left;
}

/* Label */
.solution-label {
  background-color: #fff61b;
  color: black;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
}

/* Solution Text */
.solution-text {
  margin-top: 16px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .solution-title {
    font-size: 24px;
  }

  .solution-content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .solution-image {
    width: 100%;
  }

  .solution-details {
    text-align: center;
  }

  .solution-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .solution-title {
    font-size: 22px;
  }

  .solution-text {
    font-size: 14px;
  }
}

/* Business Section */
.business-section {
  padding: 20px;
  text-align: center;
  color: white;
}

/* Container */
.business-container {
  max-width: 1024px;
  margin: auto;
  width: 100%;
  padding: 40px 20px;
}

/* Title */
.business-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
}

/* Features */
.business-features {
  /* display: flex;
  justify-content: center;
  gap: 25px; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* Feature Item */
.feature-item {
  text-align: center;
}

.feature-icon {
  width: 80px;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-title {
    font-size: 24px;
  }

  .business-features {
    grid-template-columns: 1fr 1fr;
  }

  .business-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .business-title {
    font-size: 22px;
  }

  .business-features {
    grid-template-columns: 1fr;
  }

  .feature-text {
    font-size: 14px;
  }
}

/* Features Section */
.features-section {
  padding: 20px;
  color: white;
}

/* Container */
.features-container {
  max-width: 1024px;
  margin: auto;
  text-align: center;
}

/* Title */
.features-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Feature Card */
.feature-card {
  background-color: #65089a;
  padding: 40px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 300px;
  position: relative;
  overflow: hidden;
}

/* Feature Content */
.feature-content {
  text-align: left;
}

.feature-heading {
  font-size: 24px;
  font-weight: bold;
}

.feature-text {
  font-size: 16px;
  margin-top: 12px;
}

/* Feature Image */
.feature-image {
  position: absolute;
  right: 0;
  bottom: -10px;
}

.feature-image img {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
    height: auto;
    text-align: center;
    padding: 30px;
    height: 350px;
  }

  .feature-content {
    text-align: center;
  }

  .feature-image {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 24px;
  }

  .feature-heading {
    font-size: 20px;
  }

  .feature-text {
    font-size: 14px;
  }
}

/* Poker Section */
.poker-section {
  padding: 90 20px;
  text-align: center;
  color: white;
}

/* Container */
.poker-container {
  max-width: 1024px;
  margin: auto;
  width: 100%;
  padding: 40px 20px;
}

/* Title */
.poker-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}

/* Grid Layout */
.poker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

/* Stats Section */
.poker-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  text-align: center;
}

.poker-stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #fff61b;
}

.stat-description {
  margin-top: 12px;
  font-size: 16px;
}

/* Description */
.poker-description {
  margin-top: 40px;
  text-align: left;
}

/* Image Section */
.poker-image {
  display: flex;
  justify-content: center;
}

.game-image {
  max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .poker-title {
    font-size: 28px;
  }

  .poker-container {
    padding: 0;
  }

  .poker-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .poker-stats {
    grid-template-columns: 1fr;
  }

  .poker-description {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .poker-title {
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-description {
    font-size: 14px;
  }

  .poker-description {
    font-size: 14px;
  }
}

/* Support Section */
.support-section {
  background-color: #65089a;
  padding: 40px 20px;
}

/* Support Container */
.support-container {
  max-width: 1024px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
}

/* Logo */
.support-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Support Content */
.support-content {
  color: white;
}

.support-title {
  font-size: 24px;
  font-weight: bold;
}

.support-text {
  font-size: 16px;
  margin-top: 16px;
}

/* Contact Information */
.support-contact {
  display: flex;
  align-items: center;
  margin-top: 34px;
}

.contact-icon {
  margin-right: 16px;
}

.contact-title {
  font-size: 20px;
  font-weight: bold;
}

.contact-text {
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .support-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-contact {
    flex-direction: column;
    align-items: center;
  }

  .contact-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .support-title {
    font-size: 20px;
  }

  .support-text {
    font-size: 14px;
  }

  .contact-title {
    font-size: 18px;
  }

  .contact-text {
    font-size: 12px;
  }
}

/* Partner Section */
.partner-section {
  padding-top: 160px;
  text-align: center;
}

.partner-container {
  max-width: 1024px;
  margin: auto;
  width: 100%;
  padding: 40px 20px;
}

.partner-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
  color: white;
}

/* Partner Grid */
.partner-grid {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Partner Logos */
.partner-logo {
  width: 100%;
  display: block;
  margin: auto;
}

/* Responsive Design */
@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .partner-title {
    font-size: 28px;
  }

  .partner-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .partner-title {
    font-size: 24px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Awards Section */
.awards-section {
  padding: 90px 20px;
  text-align: center;
}

.awards-container {
  max-width: 1024px;
  margin: auto;
  width: 100%;
}

.awards-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
  color: white;
}

/* Awards Box */
.awards-box {
  background-color: white;
  padding: 24px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 16px;
}

/* Main Award Image */
.main-award {
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-width-image {
  width: 100%;
  border-radius: 10px;
}

/* Award Gallery */
.award-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.center-image {
  display: block;
  margin: auto;
  max-width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .awards-title {
    font-size: 32px;
  }

  .awards-box {
    grid-template-columns: 1fr;
  }

  .award-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .awards-title {
    font-size: 28px;
  }

  .award-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .awards-title {
    font-size: 24px;
  }

  .awards-box {
    padding: 16px;
  }

  .award-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
