.navbar .container .logo img {
  height: 60px;
}

.section-padding {
  padding: 100px 0 80px;
}

.section-top-banner {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

#banner {
  padding-top: 100px;
}

#home {
  padding: 0 0 80px;
}

#home .game-description .game-description-item {
  display: flex;
  gap: 20px;
  box-shadow: 2px 2px 12px -2px rgba(0,0,0,0.08);
  padding: 10px;
  border-radius: 5px;
}

#home .game-description .game-description-item .game-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

#home .game-description .game-description-item .game-description-text {
  flex: 1;
}

#introduction .section-top-banner {
  background-image: url(../image/banner_1.jpeg);
}

#introduction .about-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

#introduction .about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #808080;
  font-weight: 500;
  padding: 50px 0 0;
}

#introduction .about-content .about-content-item {
  margin-bottom: 10px;
  text-indent: 2em;
  font-size: 14px;
}

#job .section-top-banner {
  background-image: url(../image/banner_2.jpeg);
}

#job .job-item {
  margin: 100px 100px 0;
  padding: 30px;
  border: 1px dashed salmon;
}

#job .job-item h2 {
  text-align: center;
  color: #ff6613;
  font-weight: bolder;
}

#job .job-item p {
  font-size: 20px;
  color: #ff6613;
  font-weight: bolder;
}

#job .job-item li {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

#contact .section-top-banner {
  background-image: url(../image/banner_3.jpeg);
}

#contact .contact-form {
  margin: 100px 100px 0;
}

#contact .contact-form .form-group {
  display: flex;
}

#contact .contact-form .form-group label {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 500;
  font-size: 15px;
  padding-right: 28px;
  box-sizing: border-box;
  color: #333;
  margin-bottom: 0;
}

#contact .contact-form .form-button {
  text-align: center;
  margin-top: 20px;
}

#footer {
  padding: 0 0 25px;
}

@media (max-width: 992px) {
  .navbar .container .logo img {
    height: 40px;
  }
}