@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
  list-style: none;
  text-decoration: none;
  user-select: none;
}

body {
  background: #0c131b;
  overflow-x: hidden;
}

.go_to_app {
  color: #00d395;
  padding: 10px 24px;
  font-weight: 500;
  border: 2px solid #00d395;
  border-radius: 30px;
  transition: 0.4s ease;
}

.go_to_app:hover {
  background: #00d395;
  color: #fff;
}

.hamburger {
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  display: none !important;
  position: relative;
  z-index: 999999;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 21px 36px;
  max-width: 1500px;
  margin: 0 auto;

  & .navbar {
    display: flex;
    align-items: center;
    gap: 14px;

    & .navbar_item {
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      transition: 0.4s ease;
    }

    & .navbar_item:hover {
      color: #ffffffb3;
    }
  }

  & .app_cont {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

.main_hero {
  background: #131b25;
  max-width: 1430px;
  margin: 120px auto;
  border-radius: 10px;
  position: relative;
  z-index: 99;

  .blur_img_1 {
    position: absolute;
    bottom: 8rem;
    left: 2rem;
    z-index: -1;
  }

  .blur_img_2 {
    position: absolute;
    bottom: 10rem;
    right: 0;
    z-index: -1;
  }

  & .hero_header {
    text-align: center;
    padding: 40px 10px;

    & .hero_content_mini_title {
      font-size: 15px;
      font-weight: 400;
      color: #ffffffc4;
    }

    & .hero_content_main_title {
      font-size: 60px;
      line-height: 70px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 40px;
    }
  }

  & .image_table_main {
    padding-top: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

footer {
  margin-top: 70px;
  padding: 34px 0;
  & .footer_container {
    padding: 21px 36px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px;
    width: 100%;

    & .footer_content_one {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 30px;
      width: 100%;
      max-width: 750px;

      & .footer-title {
        color: #fff;
        margin-bottom: 10px;
      }
      & .footer_link_main {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 10px;

        & .footer_link_item {
          display: inline-block;
          color: #ffffff8b;
        }

        & .footer_link_item:hover {
          text-decoration: underline;
        }
      }
    }
  }
}

@media (max-width: 1190px) {
  
}

@media (max-width: 1090px) {
  .main_hero {
    overflow: hidden;
  
    .blur_img_1 {
      display: none;
    }
  
    .blur_img_2 {
      display: none;
    }
  }
  footer {
    padding: 34px 0;
    & .footer_container {
      padding: 21px 22px;
      flex-direction: column;
      gap: 60px;

      & .footer_content_one {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 30px;
      }
    }
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block !important;
  }

  .go_to_app {
    padding: 10px 14px;
    font-weight: 400;
    border: 1px solid #00d395;
    border-radius: 30px;
  }

  .main_hero {
    & .hero_header {
      & .hero_content_main_title {
        font-size: 50px;
        line-height: 50px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 40px;
      }
    }
  }
  



  header {
    padding: 21px 16px;

    .header_logo {
      max-width: 130px;
    }

    & .navbar {
      display: none;
    }
    & .navbar.active {
      width: 90%;
      display: flex;
      align-items: start;
      flex-direction: column;
      position: fixed;
      z-index: 9999;
      gap: 30px;
      padding: 120px 30px;
      background: #0c131b;
      right: 0;
      bottom: 0;
      top: 0;
    }

    & .app_cont {
      gap: 20px;
    }
  }
}

@media (max-width: 550px) {

  .main_hero {
    & .hero_header {
      & .hero_content_main_title {
        font-size: 44px;
        line-height: 50px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 40px;
      }
    }
  }
  
}
