@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure, hr,
fieldset, legend,
input, button, textarea,
th, td {
  margin: 0;
  padding: 0;
  font: inherit;
}

body {
  line-height: 1.5;
  background-color: #fff;
  color: #000;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

img, svg {
  vertical-align: middle;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.wrapper {
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(26, 14, 1) 100%);
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: auto;
}

header {
  padding: 50px 10px;
  position: relative;
  z-index: 2;
}
header .container {
  display: flex;
  justify-content: space-between;
}
header .logo {
  text-transform: uppercase;
  font-size: 29px;
  font-weight: 800;
}
header .nav-header ul {
  display: flex;
  justify-content: space-between;
}
header .nav-header ul li {
  display: inline-block;
  transition: color 0.5s ease;
  padding: 6px 17px;
}
header .nav-header ul li:not(.active):not(.btn):hover {
  border-bottom: 3px solid #DC7000;
  color: #DC7000;
}
header .nav-header ul li.btn {
  background: #FA9021;
  transition: color 0.5s ease;
  padding: 9px 17px;
  border-radius: 5px;
  cursor: pointer;
}
header .nav-header ul li.btn:hover {
  background: #DC7000;
}
@media (max-width: 600px) {
  header .container {
    display: block;
  }
  header .container .logo {
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
  }
  header .container .nav-header ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
}

.hero {
  padding: 0 10px;
  padding-bottom: 100px;
  position: relative;
}
.hero .hero-info {
  max-width: 500px;
  padding-top: 70px;
}
.hero .hero-info h2 {
  color: #E87D0E;
  font-size: 20px;
  font-weight: 600;
}
.hero .hero-info h1 {
  font-size: 50px;
  font-weight: 600;
}
.hero .hero-info p {
  font-weight: 400;
  line-height: 170%;
  margin: 30px 0;
}
.hero .hero-info .btn {
  background: #FA8305;
  color: #fff;
  border-radius: 50px;
  padding: 15px 30px;
  border: 0;
  transition: all 0.5s ease;
}
.hero .hero-info .btn:hover {
  transform: scale(1.1);
}
.hero img {
  position: absolute;
  top: -150px;
  right: 0;
}
@media (max-width: 1200px) {
  .hero img {
    display: none;
  }
  .hero .hero-info {
    margin: auto;
  }
  .hero .hero-info p {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .hero .hero-info h1 {
    font-size: 30px;
  }
}

.trending {
  padding: 50px 10px;
}
.trending .header {
  display: flex;
  justify-content: space-between;
}
.trending .header h3 {
  font-weight: 600;
  font-size: 31px;
}
.trending .header .seeAll {
  color: #fff;
  background: #25211D;
  border-radius: 5px;
  padding: 12px 23px;
  display: block;
  transition: all 0.5s ease;
}
.trending .header .seeAll:hover {
  transform: scale(1.1);
  background: #FA8305;
}
.trending .games {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}
.trending .games .block {
  margin: auto;
}
.trending .games .block img {
  border-radius: 20px;
  transition: all 0.5s ease;
}
.trending .games .block img:hover {
  transform: scale(1.1);
}
.trending .games .block span {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.trending .games .block span img {
  max-width: 20px;
  max-height: 20px;
}
@media (max-width: 1200px) {
  .trending .games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .trending .header {
    display: block;
    text-align: center;
  }
  .trending .header h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .trending .games {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.bigText {
  padding: 50px 10px;
}
.bigText p {
  font-weight: 600;
  font-size: 30px;
  max-width: 600px;
  margin: auto;
  line-height: 170%;
  text-align: center;
}
@media (max-width: 600px) {
  .bigText p {
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.banner {
  padding: 50px 10px;
}
.banner h3 {
  font-size: 30 px;
  font-weight: 600;
  margin-bottom: 30px;
}
.banner p {
  line-height: 170%;
  margin-bottom: 30px;
  max-width: 550px;
}
.banner img {
  margin: auto;
  border-radius: 5px;
}

.project {
  padding: 50px 10px;
  background-image: url(../assets/background.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.project .project-info {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.project .project-info h3 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 25px;
  line-height: 190%;
}
.project .project-info p {
  font-size: 20px;
  font-weight: 300;
  padding-bottom: 100px;
  line-height: 190%;
}
.project .project-contact-1 {
  max-width: 1000px;
  margin: auto;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 50px 10px;
}
.project .project-contact-1 .project-link .icon {
  margin: auto;
  padding-bottom: 10px;
}
.project .project-contact-1 .project-link p {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 200;
}
.project .project-contact-1 .project-link a {
  margin: auto;
  display: inline-block;
  transition: all 0.5s ease;
}
.project .project-contact-1 .project-link a:hover {
  transform: scale(1.3);
}
.project .project-contact-2 {
  max-width: 1000px;
  margin: auto;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
  padding: 50px 10px;
}
.project .project-contact-2 .project-link .icon {
  margin: auto;
  padding-bottom: 10px;
}
.project .project-contact-2 .project-link p {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 200;
}
.project .project-contact-2 .project-link a {
  margin: auto;
  display: inline-block;
  transition: all 0.5s ease;
}
.project .project-contact-2 .project-link a:hover {
  transform: scale(1.3);
}
@media (max-width: 800px) {
  .project .project-contact-1 {
    align-items: center;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 150px;
    padding: 100px 10px;
  }
  .project .project-contact-1 .project-link .icon {
    margin: auto;
    padding-bottom: 10px;
  }
  .project .project-contact-1 .project-link p {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 200;
  }
  .project .project-contact-1 .project-link a {
    margin: auto;
    display: inline-block;
    transition: all 0.5s ease;
  }
  .project .project-contact-1 .project-link a:hover {
    transform: scale(1.3);
  }
  .project .project-contact-2 {
    align-items: center;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 150px;
    padding: 50px 10px;
  }
  .project .project-contact-2 .project-link .icon {
    margin: auto;
    padding-bottom: 10px;
  }
  .project .project-contact-2 .project-link p {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 200;
  }
  .project .project-contact-2 .project-link a {
    margin: auto;
    display: inline-block;
    transition: all 0.5s ease;
  }
  .project .project-contact-2 .project-link a:hover {
    transform: scale(1.3);
  }
}
@media (max-width: 460px) {
  .project .project-info h3 {
    font-size: 30px;
    font-weight: 300;
    padding-bottom: 25px;
    line-height: 190%;
  }
  .project .project-info p {
    font-size: 16px;
    font-weight: 200;
    padding-bottom: 50px;
    line-height: 170%;
  }
  .project .project-contact-1 {
    margin: auto;
    align-items: center;
    text-align: center;
    display: block;
    padding: 0px 10px;
  }
  .project .project-contact-1 .project-link {
    padding-bottom: 30px;
  }
  .project .project-contact-1 .project-link .icon {
    margin: auto;
  }
  .project .project-contact-1 .project-link p {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 200;
  }
  .project .project-contact-1 .project-link a {
    margin: auto;
    display: inline-block;
    transition: all 0.5s ease;
  }
  .project .project-contact-1 .project-link a:hover {
    transform: scale(1.3);
  }
  .project .project-contact-2 {
    margin: auto;
    align-items: center;
    text-align: center;
    display: block;
    padding: 0px 10px;
  }
  .project .project-contact-2 .project-link {
    padding-bottom: 30px;
  }
  .project .project-contact-2 .project-link .icon {
    margin: auto;
  }
  .project .project-contact-2 .project-link p {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 200;
  }
  .project .project-contact-2 .project-link a {
    margin: auto;
    display: inline-block;
    transition: all 0.5s ease;
  }
  .project .project-contact-2 .project-link a:hover {
    transform: scale(1.3);
  }
}

.our-projects {
  padding: 50px 10px;
  padding-top: 150px;
}
.our-projects .our-projects-info {
  text-align: center;
}
.our-projects .our-projects-info h3 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 25px;
  line-height: 190%;
}
.our-projects .our-projects-info p {
  font-size: 20px;
  font-weight: 300;
  padding-bottom: 100px;
  line-height: 190%;
}
.our-projects .our-projects-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.our-projects .our-projects-img .projects-img {
  border-radius: 20px;
  height: 220px;
  transition: all 0.5s ease;
  width: 100%;
}
.our-projects .our-projects-img .projects-img:hover {
  transform: scale(1.1);
}
.our-projects .our-projects-btn {
  padding-top: 50px;
  align-items: center;
  text-align: center;
}
.our-projects .our-projects-btn .our-projects-seeAll {
  display: inline-block;
  margin: auto;
  color: #fff;
  background: #25211D;
  border-radius: 5px;
  padding: 12px 23px;
  transition: all 0.5s ease;
}
.our-projects .our-projects-btn .our-projects-seeAll:hover {
  transform: scale(1.1);
  background: #FA8305;
}
@media (max-width: 1200px) {
  .our-projects .our-projects-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .our-projects .our-projects-img .projects-img {
    border-radius: 20px;
    height: 220px;
    width: 95%;
  }
}
@media (max-width: 850px) {
  .our-projects .our-projects-img {
    display: block;
  }
  .our-projects .our-projects-img .projects-img {
    margin: auto;
    margin-bottom: 50px;
    border-radius: 20px;
    width: 380px;
  }
}
@media (max-width: 600px) {
  .our-projects .our-projects-info h3 {
    font-size: 30px;
    font-weight: 300;
    padding-bottom: 25px;
    line-height: 190%;
  }
  .our-projects .our-projects-info p {
    font-size: 16px;
    font-weight: 200;
    padding-bottom: 50px;
    line-height: 170%;
  }
  .our-projects .our-projects-img .projects-img {
    margin: auto;
    margin-bottom: 50px;
    border-radius: 20px;
    width: auto;
    height: auto;
  }
}

.more {
  padding: 50px 10px;
  padding-bottom: 150px;
}
.more .more-info {
  padding: 50px 0px;
  width: 40%;
  margin-right: auto;
}
.more .more-info h3 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 25px;
  line-height: 190%;
}
.more .more-info p {
  font-size: 20px;
  font-weight: 300;
  line-height: 190%;
}
.more .form {
  margin: auto;
  align-items: center;
  max-width: 1100px;
  padding: 50px;
  background-color: #1C140F;
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
}
.more .form .form-info {
  width: 50%;
}
.more .form .form-info h3 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 25px;
  line-height: 190%;
}
.more .form .form-info p {
  font-size: 20px;
  font-weight: 300;
  line-height: 190%;
}
.more .form .form-input input {
  border: #25211D 1px solid;
  border-radius: 5px;
  padding: 11px 22px;
}
.more .form .form-input input:focus {
  border: #FA8305 1px solid;
}
.more .form .form-input button {
  display: inline-block;
  margin: auto;
  color: #fff;
  background: #25211D;
  border-radius: 5px;
  padding: 12px 23px;
  transition: all 0.5s ease;
}
.more .form .form-input button:hover {
  background: #FA8305;
}
@media (max-width: 900px) {
  .more .form {
    display: block;
    align-items: center;
    text-align: center;
  }
  .more .form .form-info {
    margin: auto;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .more {
    padding-top: 0;
    padding-bottom: 50px;
  }
  .more .more-info {
    width: 100%;
    text-align: center;
  }
  .more .form {
    display: block;
    padding: 20px;
  }
  .more .form .form-info {
    padding: 20px 0px;
    width: 100%;
    margin: 0;
  }
  .more .form .form-info .form {
    display: block;
  }
}

footer {
  background-color: black;
}
footer .container {
  display: flex;
  justify-content: space-between;
  padding: 50px 10px;
}
footer .container .contactMy {
  text-align: center;
}
footer .container .contactMy h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
footer .container .contactMy .contactMy-btn {
  display: flex;
  justify-content: center;
  gap: 50px;
}
footer .container .contactMy .contactMy-btn a img {
  transition: all 0.5s ease;
}
footer .container .contactMy .contactMy-btn a img:hover {
  transform: scale(1.1);
}
@media (max-width: 600px) {
  footer .container {
    display: block;
  }
  footer .container .aboutUs {
    display: none;
  }
  footer .container .contactUs {
    padding-bottom: 30px;
  }
}/*# sourceMappingURL=index.css.map */