@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;900&display=swap");
html {
  font-size: 62.5%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

a {
  list-style: none;
  color: black;
  text-decoration: none;
}

h1 {
  margin: 0;
  font-size: 3rem;
  max-width: 40rem;
  line-height: 5rem;
  font-weight: 900;
}
@media (min-width: 600px) {
  h1 {
    font-size: 3.8rem;
    line-height: 6rem;
    max-width: 60rem;
  }
}
@media (min-width: 900px) {
  h1 {
    font-size: 7rem;
    line-height: 9rem;
    max-width: 60rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 8rem;
    line-height: 11.2rem;
    max-width: 77rem;
  }
}

h2 {
  margin: 0;
  font-size: 5rem;
  line-height: 5rem;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 3.84rem;
  font-weight: 900;
}

h4 {
  margin: 0;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 900;
}

p {
  margin: 0;
  font-size: 2.2rem;
  line-height: 3rem;
}

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

.section-title {
  text-align: center;
  text-transform: uppercase;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem;
  background-color: #fcdb4ae7;
}

header {
  background: url("../images/BG.png") left bottom no-repeat;
  background-size: cover;
  padding: 2rem;
}
@media (min-width: 1200px) {
  header {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1800px) {
  header {
    padding: 4.2rem 16rem;
  }
}

nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  nav {
    flex-direction: row;
  }
}

.nav-logo-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.nav-logo-wrapper .icons {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
}
@media (min-width: 1200px) {
  .nav-logo-wrapper .icons {
    display: none;
  }
}
.nav-logo-wrapper .nav-link {
  margin: 8px 0;
}
.nav-logo-wrapper .nav-space {
  display: none;
}
.nav-logo-wrapper #menu-open,
.nav-logo-wrapper #menu-close {
  cursor: pointer;
  display: block;
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.nav-logo-wrapper #menu-close {
  display: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-img {
  max-width: 62rem;
}

.bar-links {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  max-width: 80.5rem;
  padding: 0;
}
@media (min-width: 1200px) {
  .bar-links {
    display: flex;
  }
}
.bar-links .link {
  padding: 1rem;
}
.bar-links li {
  font-size: 2rem;
  line-height: 2.42rem;
  text-transform: capitalize;
}
.bar-links.hide {
  display: none;
}
@media (min-width: 1200px) {
  .bar-links.hide {
    display: flex;
  }
}
.bar-links.show {
  display: block !important;
}
@media (min-width: 1200px) {
  .bar-links.show {
    display: flex !important;
  }
}

.games {
  padding: 2rem;
}
@media (min-width: 1200px) {
  .games {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1800px) {
  .games {
    padding: 8rem 16rem;
  }
}
.games .section-title {
  margin-bottom: 5rem;
}
.games .game {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .games .game {
    flex-direction: row;
  }
}
.games .logo-wrapper {
  shape-outside: circle();
  float: left;
  margin: 1rem;
}
@media (min-width: 600px) {
  .games .logo-wrapper {
    margin: 0;
    float: none;
    shape-outside: none;
  }
}
.games .infos {
  max-width: 60rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .games .infos {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .games .infos {
    margin: 5.4rem 7rem 0;
  }
}
.games .text {
  margin-top: 2.6rem;
  margin-left: 2rem;
}
@media (min-width: 600px) {
  .games .text {
    margin-left: 4rem;
  }
}
.games .store-links {
  margin-top: 3rem;
}
.games .store-links .apple-link {
  margin-right: 1rem;
}

.feature {
  padding: 2rem;
}
@media (min-width: 1200px) {
  .feature {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1800px) {
  .feature {
    padding: 8rem 16rem;
  }
}
.feature .section-title {
  margin-bottom: 5rem;
}
.feature .description {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
.feature .services {
  display: grid;
  margin: 4.1rem auto 0;
  grid-template-columns: 1fr;
  row-gap: 3rem;
}
@media (min-width: 900px) {
  .feature .services {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3rem;
  }
}
.feature .card {
  padding: 5.6rem 4rem 6.5rem;
  background-color: #FCDC4A;
  position: relative;
  z-index: 10;
  height: 100%;
  flex: 1 1 100%;
}
.feature .card .title {
  margin-bottom: 3rem;
}
.feature .card .text {
  font-size: 2.2rem;
  line-height: 3.96rem;
}
.feature .card .rank {
  position: absolute;
  right: 13%;
  top: 50%;
  font-size: 29rem;
  opacity: 0.06;
  font-weight: 900;
  z-index: 0;
  user-select: none;
  -webkit-user-select: none;
}

.team {
  padding: 2rem;
}
@media (min-width: 1200px) {
  .team {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1800px) {
  .team {
    padding: 8rem 16rem;
  }
}
.team .content {
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
}
@media (min-width: 900px) {
  .team .content {
    display: flex;
  }
}
.team .item {
  flex: 0 0 30%;
}
.team .infos {
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .team .infos {
    margin-left: 3rem;
  }
}
.team .description {
  margin-top: 3rem;
}

.contact {
  padding: 2rem;
  background-color: #FCDC4A;
}
@media (min-width: 1200px) {
  .contact {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1800px) {
  .contact {
    padding: 8rem 16rem;
  }
}
.contact .section-title {
  margin-bottom: 7rem;
}
.contact form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 51.4rem;
  margin: 0 auto;
}
.contact .input-group {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact .input-group label {
  font-size: 2rem;
  line-height: 2.4rem;
}
.contact .input-group .input {
  background: none;
  font-size: 2rem;
  line-height: 2.4rem;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(31, 31, 36, 0.2);
  outline: none;
  height: 4rem;
}
.contact .input-group .input::placeholder {
  font-family: "inter";
  font-size: 20px;
  line-height: 24px;
  color: #1F1F24;
  text-transform: capitalize;
}
.contact .input-group .textarea {
  height: 8rem;
  resize: none;
}
.contact .submit-btn {
  background: #1F1F24;
  border-radius: 1.4rem;
  border: none;
  color: white;
  font-size: 2rem;
  font-weight: 900;
  line-height: 2.4rem;
  padding: 1.8rem 0;
  width: 100%;
  max-width: 28rem;
}

.map {
  position: relative;
}
@media (min-width: 1200px) {
  .map .content {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
}
.map .map-contact {
  width: 100%;
  padding: 6rem 0.5rem 1.6rem 1.8rem;
  position: relative;
  z-index: 10;
  margin-left: auto;
}
@media (min-width: 600px) {
  .map .map-contact {
    padding: 6rem 0.5rem 1.6rem 6rem;
  }
}
@media (min-width: 1200px) {
  .map .map-contact {
    max-width: 54.5rem;
  }
}
@media (min-width: 1800px) {
  .map .map-contact {
    padding: 12.8rem 1rem 7rem 13rem;
  }
}
.map .map-contact .detail {
  margin-bottom: 3rem;
  z-index: 10;
  position: relative;
}
.map .map-contact .tag {
  font-size: 3rem;
  font-weight: 900;
  line-height: 3.6rem;
  margin-bottom: 1.4rem;
  z-index: 10;
  position: relative;
}
.map .map-contact .value {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.1rem;
  z-index: 10;
  position: relative;
}
.map .map-contact .bg {
  background-color: #FCDC4A;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (min-width: 1200px) {
  .map .map-contact .bg {
    transform: skew(0deg, -8deg);
  }
}
.map .google-map {
  width: 100%;
  height: 100%;
}

footer {
  background-color: #1F1F24;
  padding: 2rem;
}
@media (min-width: 1200px) {
  footer {
    padding: 4rem 8rem;
  }
}
@media (min-width: 1800px) {
  footer {
    padding: 8rem 16rem;
  }
}
footer .footer-nav {
  display: none;
}
@media (min-width: 900px) {
  footer .footer-nav {
    display: flex;
    align-items: center;
    justify-content: unset;
  }
}
footer .bar-links {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75.3rem;
}
footer .bar-links .link {
  font-size: 1.8rem;
  line-height: 2.178rem;
  color: white;
}
footer .infos {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  line-height: 1.6rem;
  margin-top: 1.6rem;
  text-align: center;
}
footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-align: center;
  margin-top: 0.8rem;
}

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