@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;
  }
}
main {
  background: #0A0807;
}
main h1 {
  font-size: 8em;
  color: #78FF00;
  line-height: 0.8em;
  font-weight: 900;
  text-align: center;
  padding: 12rem 0 2rem;
}
main h1 .white {
  color: #fff;
}
main section {
  padding: 4rem 10%;
}
main section h2 {
  font-size: 5em;
  color: #78FF00;
  text-align: center;
}
main section .service {
  margin: 2rem 0 7rem;
}
main section .service:last-child {
  margin: 1rem 0 1rem;
}
main section .service h3 {
  font-size: 3.75em;
  color: #fff;
  text-align: center;
}
main section .service p {
  color: #fff;
  text-align: center;
}
main section .service .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
main section .service .cards .item {
  background: rgb(24, 24, 24);
  background: linear-gradient(0deg, rgb(24, 24, 24) 0%, rgb(69, 69, 69) 100%);
  width: 20vw;
  height: 18vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 3px;
}
main section .service .cards .item.middle {
  background: rgb(50, 106, 0);
  background: linear-gradient(0deg, rgb(50, 106, 0) 0%, rgb(120, 255, 0) 100%);
  transform: scale(1.05);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}
main section .service .cards .item.middle h5 {
  color: #fff;
}
main section .service .cards .item.middle h4 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
main section .service .cards .item.middle h5 {
  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.5);
}
main section .service .cards .item.middle span {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
}
main section .service .cards .item.middle.middle-1 {
  box-shadow: -7px 0px 8px rgba(0, 0, 0, 0.3);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
main section .service .cards .item.middle.middle-2 {
  box-shadow: 7px 0px 8px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
main section .service .cards .item h5 {
  font-size: 1.5em;
  color: #78FF00;
}
main section .service .cards .item h4 {
  color: #fff;
  font-size: 2.75em;
  line-height: 1.1em;
  margin-bottom: 0.5rem;
}
main section .service .cards .item span {
  font-size: 0.8em;
  width: 80%;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
main section.services {
  background: #0f0f0f;
}
main section.services .service p a {
  font-size: 1em;
  color: #78FF00;
  font-weight: 600;
  text-decoration: none;
}
main section.services .service p a:hover {
  text-decoration: underline;
}
main section.services .service .cards {
  justify-content: space-around;
}
main section.services .service .cards .item {
  width: 18vw;
  height: 18vw;
}
main section.services .service .cards.special {
  display: flex;
  justify-content: space-between;
  align-items: start;
  row-gap: 3rem;
  flex-flow: row wrap;
  position: relative;
}
main section.services .service .cards.special .item {
  width: 35vw;
  height: auto;
  padding: 2rem;
  justify-content: center;
  align-items: start;
  align-self: stretch;
}
main section.services .service .cards.special .item h4 {
  color: #78FF00;
  text-align: start;
  line-height: 1.1em;
  margin-bottom: 0.25rem;
  font-size: 1.7em;
}
main section.services .service .cards.special .item h5 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.15em;
}
main section.services .service .cards.special .item p {
  font-size: 0.8em;
  margin-bottom: 0.5rem;
  text-align: start;
}
main section.services .service .cards.special .item p:last-child {
  margin: 0;
}
main section.services .service .cards.special .item ul li {
  font-size: 0.8em;
  color: #fff;
}
main section.services .service.pair .cards .item {
  width: 25vw;
  height: 16vw;
}

@media only screen and (max-width: 1300px) {
  main h1 {
    font-size: 5.5em;
    padding: 9rem 0 0;
  }
  main section {
    padding: 3rem 5%;
  }
  main section h2 {
    font-size: 3.5em;
    line-height: 1.2em;
  }
  main section .service {
    margin: 2rem 0 5rem;
  }
  main section .service h3 {
    font-size: 2.5em;
  }
  main section .service p {
    font-size: 0.9em;
    max-width: 70vw;
    margin: 0 auto;
  }
  main section .service .cards {
    margin-top: 2rem;
  }
  main section .service .cards .item {
    width: 25vw;
  }
  main section .service .cards .item h5 {
    font-size: 1.1em;
  }
  main section .service .cards .item h4 {
    font-size: 1.7em;
  }
  main section .service .cards .item span {
    font-size: 0.7em;
  }
  main section.services .service.pair .cards .item {
    width: 30vw;
  }
  main section.services .service .cards.special .item {
    width: 42.5vw;
  }
  main section.services .service .cards.special .item h4 {
    font-size: 1.35em;
  }
  main section.services .service .cards.special .item h5 {
    font-size: 1em;
  }
}
@media only screen and (max-width: 850px) {
  main h1 {
    font-size: 4em;
  }
  main section h2 {
    font-size: 2.5em;
  }
  main section .service {
    margin: 1rem 0 4rem;
  }
  main section .service h3 {
    font-size: 1.75em;
  }
  main section .service p {
    font-size: 0.8em;
  }
  main section .service .cards .item {
    height: 12.5rem;
  }
  main section .service .cards .item h5 {
    font-size: 1em;
  }
  main section .service .cards .item h4 {
    font-size: 1.5em;
    margin: 0 0 0.25rem;
  }
  main section .service .cards .item span {
    font-size: 0.65em;
  }
  main section.services .service.pair .cards .item {
    height: 12.5rem;
  }
  main section.services .service.special .item h4 {
    font-size: 1em;
  }
  main section.services .service.special .item p {
    font-size: 0.65em;
  }
}
@media only screen and (max-width: 700px) {
  main h1 {
    font-size: 2.5em;
  }
  main section h2 {
    font-size: 2em;
  }
  main section .service h3 {
    font-size: 1.65em;
    line-height: 1.2em;
    margin-bottom: 0.5rem;
  }
  main section .service p {
    max-width: 100%;
    font-size: 0.75em;
  }
  main section .service .cards {
    flex-flow: column;
    row-gap: 1rem;
    margin-top: 1rem;
  }
  main section .service .cards .item {
    width: 100%;
    height: initial;
    padding: 2rem;
  }
  main section .service .cards .item.middle {
    transform: none;
  }
  main section .service .cards .item h4 {
    font-size: 1.4em;
  }
  main section.services .service.pair .cards {
    flex-flow: column;
  }
  main section.services .service.pair .cards .item {
    width: 100%;
    height: initial;
  }
  main section.services .service {
    flex-flow: column;
  }
  main section.services .service .cards.special {
    row-gap: 1rem;
  }
  main section.services .service .cards.special .item {
    width: 100%;
  }
  main section.services .service .cards.special .item h4 {
    font-size: 1.2em;
  }
  main section.services .service .cards.special .item h5 {
    font-size: 0.9em;
  }
}/*# sourceMappingURL=style.css.map */