@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  height: 100%;
  font-family: "Inter", serif;
  /* background-color: rgba(169, 182, 255, 0.2); */
}

header {
  position: fixed;
  top: 0;
  width: 100vw;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

  .nav-button {
    width: 110px;
    border-radius: 0.625rem;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    padding: 10px 0;
  }
}
.navlink {
  text-decoration: none !important;
}
.logo-joviflex {
  width: 110px;
}

.page {
  /* background: linear-gradient(180deg, rgba(169, 182, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 5%, rgba(255, 255, 255, 0.2) 95%, rgba(169, 182, 255, 0.2) 100%), #fff; */
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-info-container {
  padding: 20vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  max-width: 70%;
  height: 100%;
  margin: auto;

  ul li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5625rem; /* 156.25% */
    letter-spacing: 0.00844rem;
    margin-bottom: 10px;

    strong {
      font-weight: 700;
    }

    a {
      text-decoration: underline;
      color: black;
    }
  }
}

.title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.footer-joviflex {
  max-width: 85%;
  margin: auto;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
  gap: 5%;
  opacity: 0.7;

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

  p {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: normal;
  }
}

.footer-right,
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-left {
  width: 80%;
}
.footer-right {
  width: 20%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: normal;

  #explore-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: #5e5e5e;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: normal;
  }
}

.footer-joviflex:hover {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .pricing-info-container {
    max-width: 90%;
    padding: 10vh 0;
  }
  ul {
    padding-inline-start: 20px;
  }
  .footer-joviflex {
    flex-direction: column;
    max-width: 90%;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .footer-left,
  .footer-right {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
