.wrapper {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
}

html,
body {
  min-height: 100vh;
}

body {
  font-family: "Nunito", sans-serif;
  background: #fff url("../imgs/bg.webp") no-repeat center;
  background-size: 100% 100%;
}

.page-container .wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.page-container .navigation {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  border: solid 5px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.1);
}

.page-container .navigation .menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.page-container .navigation .menu ul a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 700;
  height: 45px;
  color: #000;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s linear;
}

.page-container .navigation .menu ul a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.page-container .navigation .menu ul a.button {
  margin-left: 10px;
  background-color: #ff9350;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255, 255, 0.2);
}

.page-container .js-menu-toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 700;
  height: 45px;
  color: #000;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s linear;
  background-color: #ff9350;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255, 255, 0.2);
  display: none;
}

.page-container .js-menu-toggle .passive {
  display: none;
}

.page-container .hero-area {
  width: 760px;
  max-width: 100%;
  text-align: center;
  font-family: "Nerko One", cursive;
}

.page-container .hero-area .hero {
  font-size: 160px;
  letter-spacing: -10px;
  color: #fff;
  -webkit-text-stroke: 4px #000;
  text-shadow: 0 10px 0px #000;
}

.page-container .hero-area .description {
  font-size: 80px;
  color: #f47a2e;
  letter-spacing: -1px;
}

.page-container .hero-area form {
  text-align: left;
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.page-container .hero-area form .fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.page-container .hero-area form .fields input {
  flex: 0 0 calc(100% - 180px);
  max-width: calc(100% - 180px);
  height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  outline: none;
  background-color: #fff;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255, 255, 0.2);
  border-radius: 60px;
}

.page-container .hero-area form .fields button {
  flex: 0 0 160px;
  max-width: 160px;
  height: 60px;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  background-color: #ff9350;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.page-container .hero-area form .fields input::-webkit-input-placeholder {
  color: #000;
}

.page-container .character {
  display: block;
  margin-bottom: 0;
}

.page-container .navigation.active {
  border-radius: 40px;
}
.page-container .navigation.active .menu {
  display: block;
}
.page-container .navigation.active .js-menu-toggle .active {
  display: none;
}

.page-container .navigation.active .js-menu-toggle .passive {
  display: block;
}

.page-container .social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
}

@media (max-width: 1060px) {
  .page-container .navigation .menu ul a {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 992px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }

  body {
    padding: 0 20px;
  }

  .page-container .navigation .logo img {
    height: 40px;
  }

  .page-container .navigation .menu {
    display: none;
    padding-left: 30px;
    padding-right: 30px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-container .navigation .menu ul {
    display: block;
    width: 100%;
  }

  .page-container .navigation .menu ul a {
    justify-content: center;
  }

  .page-container .js-menu-toggle {
    display: flex;
    font-size: 18px;
  }

  body {
    background: #fff url("../imgs/bg-mobile.webp") no-repeat center;
    background-size: 100% 100%;
  }

  .page-container .hero-area .hero {
    font-size: 60px;
    line-height: 53px;
    padding: 0 15%;
    font-weight: 600;
    letter-spacing: -5px;
    -webkit-text-stroke: 1px #000;
    text-shadow: 0 5px 0px #000;
  }

  .page-container .hero-area .description {
    font-size: 30px;
    line-height: 35px;
    margin-top: 10px;
  }

  .page-container .hero-area form {
    margin-top: 15px;
  }
  .page-container .hero-area form .fields {
    justify-content: center;
  }

  .page-container .hero-area form .fields input {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    height: 50px;
    font-size: 16px;
  }
  .page-container .hero-area form .fields button {
    height: 50px;
    font-size: 16px;
  }

  .page-container .social-media {
    padding-bottom: 0;
  }

  .page-container .character {
    max-width: 100%;
    height: 225px;
  }
}
