@import url("https://fonts.googleapis.com/css2?family=Kanit: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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kanit", sans-serif;
}

html {
  position: relative;
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
}

header {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #151515;
  z-index: 50;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  height: 2.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
header nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  font-size: 1.2em;
  transition: 0.2s ease;
}
header nav a.active {
  color: #fff;
}
header nav a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #78FF00;
}
header nav a:hover {
  color: #fff;
}
header .profile {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .profile svg {
  color: #fff;
  height: 2.5rem;
  width: 2.5rem;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: flex-end;
  flex-flow: column wrap;
  height: 2.5rem;
  width: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
header .ham div {
  height: 0.25rem;
  width: 100%;
  background: #fff;
  margin: 0.2rem 0;
  border-radius: 1rem;
  transition: 0.5s ease-in-out;
}
header .ham div:nth-child(2) {
  width: 75%;
}
header .ham div:nth-child(3) {
  width: 50%;
}
header .ham .ham-active:nth-child(1) {
  transform: translate(0, 10px) rotate(45deg);
  background: #fff;
}
header .ham .ham-active:nth-child(2) {
  opacity: 0;
}
header .ham .ham-active:nth-child(3) {
  width: 100%;
  transform: translate(0, -10px) rotate(-45deg);
  background: #fff;
}

.top-notification {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  background: #0e0e0e;
  height: 3rem;
}
.top-notification .app-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.top-notification .app-links span {
  font-size: 0.9em;
  color: #78FF00;
}
.top-notification .app-links a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-notification .app-links a:hover img {
  transform: scale(1.05);
}
.top-notification .app-links a img {
  height: 25px;
  width: 25px;
  transition: transform 0.2s ease;
}
.top-notification .contacts {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}
.top-notification .contacts a {
  font-size: 0.9em;
  color: #78FF00;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.top-notification .contacts a svg {
  height: 1.25em;
  width: 1.25em;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #151515;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.2em;
  text-decoration: none;
  border-bottom: 0.2rem solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  header nav, header .profile {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .top-notification .app-links span {
    font-size: 0.75em;
  }
  .top-notification .app-links a img {
    height: 20px;
    width: 20px;
    transition: transform 0.2s ease;
  }
  .top-notification .contacts a span {
    display: none;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  background: url("../../img/btn-bg.png");
  background-size: cover;
  background-position: center;
  border: none;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
  min-width: 16rem;
}
.btn a {
  display: block;
  padding: 0.5em 1em;
  color: #000000;
  text-decoration: none;
  font-size: 1.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.btn a svg {
  height: 1em;
  width: 1em;
}
.btn:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 1500px) {
  .btn a {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 850px) {
  .btn {
    min-width: 13rem;
  }
  .btn a {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 700px) {
  .btn {
    min-width: 11rem;
  }
  .btn a {
    font-size: 1.25em;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 5rem 10%;
  background: #0A0807;
}
footer .part {
  width: 33%;
}
footer .part.left .logo {
  height: 3.5rem;
}
footer .part.left p {
  font-size: 0.9em;
  color: #fff;
  margin: 1rem 0 2.5rem;
}
footer .part.left p a {
  color: #78FF00;
  text-decoration: none;
}
footer .part.left .links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
footer .part.left .links a {
  text-decoration: none;
  color: #fff;
}
footer .part.left .links a img {
  height: 30px;
  width: 30px;
}
footer .part.left .links a:hover {
  transform: scale(1.05);
}
footer .part.right {
  width: initial;
}
footer .part.right h4 {
  font-size: 2.2em;
  color: #fff;
  position: relative;
}
footer .part.right h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  width: 80%;
  background: #78FF00;
}
footer .part.right nav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
footer .part.right nav a {
  font-size: 1.35em;
  color: #fff;
  text-decoration: none;
}
footer .part.right nav a:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    row-gap: 2rem;
    padding: 2rem 10%;
  }
  footer .part {
    width: 100%;
  }
  footer .part.left {
    order: 2;
  }
  footer .part.left .logo {
    height: 3rem;
  }
  footer .part.left p {
    font-size: 0.7em;
    margin: 1rem 0 1.5rem;
  }
  footer .part.left .links a img {
    width: 25px;
    height: 25px;
  }
  footer .part.right {
    width: 100%;
  }
  footer .part.right h4 {
    text-align: center;
  }
  footer .part.right h4::after {
    width: 15%;
    left: 30%;
  }
  footer .part.right nav {
    flex-flow: row;
    justify-content: center;
    width: 100%;
  }
  footer .part.right nav a {
    font-size: 0.8em;
  }
}
body {
  background: #0F0D0D;
}

main {
  margin: 5rem 0 0;
}
main h1 {
  font-size: 10em;
  color: #78FF00;
  line-height: 0.8em;
  font-weight: 900;
  text-align: center;
  padding: 4rem 0 2rem;
}
main .title-text {
  font-size: 1.15em;
  color: #fff;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
main .content {
  width: 100%;
}
main .content .item {
  display: grid;
  padding: 5rem 10%;
}
main .content .item.odd {
  grid-template-columns: 60% 40%;
}
main .content .item.even {
  grid-template-columns: 40% 60%;
  background: #161616;
}
main .content .item.even .text h2, main .content .item.even .text p {
  text-align: end;
}
main .content .item.even .text p {
  margin-left: auto;
}
main .content .item.even .text .equip {
  justify-items: end;
  margin-left: auto;
}
main .content .item.even .text .equip button {
  text-align: end;
}
main .content .item .text h2 {
  font-size: 5em;
  color: #78FF00;
  font-weight: 800;
  line-height: 1em;
}
main .content .item .text h2 .white {
  color: #fff;
}
main .content .item .text p {
  color: #fff;
  max-width: 90%;
}
main .content .item .text .equip {
  width: 90%;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-items: start;
  margin-top: 2rem;
  row-gap: 2rem;
}
main .content .item .text .equip button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25em;
  position: relative;
  transition: 0.15s ease;
  cursor: pointer;
}
main .content .item .text .equip button .question-mark {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  transform: translate(30px, -50%);
  height: 25px;
  width: 25px;
  background: #161616;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff;
}
main .content .item .text .equip button:hover {
  transform: scale(1.05);
}
main .content .item .image img {
  max-width: 100%;
}

.popup {
  width: 33vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: radial-gradient(73.38% 52.97% at 86.92% 6.25%, #212121 0%, #161616 100%);
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  padding: 2rem;
  border-right: 3px solid #78FF00;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.5);
  z-index: 50;
  transform: translateX(-105%);
  transition: 0.3s ease;
}
.popup h3 {
  font-size: 2em;
  color: #fff;
  line-height: 1em;
  margin-bottom: 0.35rem;
}
.popup p {
  font-size: 1.1em;
  color: #fff;
}
.popup .close-btn {
  position: absolute;
  top: 10px;
  right: 30px;
  background: none;
  font-size: 2.5em;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.4s ease;
}
.popup .close-btn:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 1200px) {
  main h1 {
    font-size: 7em;
    padding: 4rem 0 1rem;
  }
  main .title-text {
    font-size: 0.9em;
  }
  main .content .item .text h2 {
    font-size: 3.5em;
  }
  main .content .item .text p {
    font-size: 0.8em;
  }
  main .content .item .text .equip {
    margin-top: 1rem;
  }
  main .content .item .text .equip button {
    font-size: 0.9em;
    font-weight: 600;
  }
  main .content .item .text .equip button .question-mark {
    height: 18px;
    width: 18px;
    font-size: 8px;
    transform: translate(25px, -50%);
  }
  .popup {
    width: 50vw;
  }
}
@media only screen and (max-width: 850px) {
  main h1 {
    font-size: 4em;
  }
  main .title-text {
    font-size: 0.8em;
  }
  main .content .item .text h2 {
    font-size: 2.5em;
  }
  main .content .item .text p {
    font-size: 0.7em;
  }
  main .content .item .text .equip {
    gap: 0;
    row-gap: 1rem;
  }
  main .content .item .text .equip button {
    font-size: 0.85em;
  }
  .popup {
    width: 70vw;
  }
}
@media only screen and (max-width: 700px) {
  main h1 {
    font-size: 3em;
  }
  main .title-text {
    width: 90%;
    font-size: 0.65em;
  }
  main .content .item {
    padding: 2.5rem 10%;
  }
  main .content .item.odd, main .content .item.even {
    grid-template-columns: 1fr;
  }
  main .content .item.even .image img {
    display: block;
    margin-left: auto;
  }
  main .content .item .text {
    order: 1;
  }
  main .content .item .text h2 {
    font-size: 2em;
  }
  main .content .item .text p {
    max-width: 100%;
  }
  main .content .item .text .equip {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }
  main .content .item .text .equip button.blank {
    display: none;
  }
  main .content .item .text .equip button {
    font-size: 0.8em;
  }
  main .content .item .text .equip button .question-mark {
    transform: translate(25px, -25%);
  }
  main .content .item .image {
    margin-top: 2rem;
    order: 2;
  }
  main .content .item .image img {
    width: 90%;
  }
  .popup {
    width: 100vw;
  }
  .popup h3 {
    font-size: 1.4em;
  }
  .popup p {
    font-size: 0.85em;
  }
}/*# sourceMappingURL=style.css.map */