.navbar {
  padding: 0px 30px;
  height: 64px;
  background: #fff;
  box-shadow: 0px 3.556px 3.556px 0px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 99;
}
.navLeft {
  width: 60%;
  gap: 40px;
}
.logo {
  width: 30%;
}
.navRight {
  width: 40%;
}
.navRight img {
  width: 45px;
  border-radius: 50%;
}
.pageLinks {
  gap: 14px;
  position: relative;
}
.pageLinks a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 0px 10px;
  /* border: 1px solid red; */
}
.footer {
  background-color: #fff;
  gap: 15px;
  padding-left: 30px;
  height: 50px;
  border-top: 1px solid #e9e9e9;
  /* position: sticky; */
  bottom: 0;
  width: 100%;
}
.footer > a {
  color: #000;
  font-family: "Product Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pageLinks a {
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.1s ease-in;
  position: relative;
}
.pageLinks a::after {
  content: "";
  /* background-color: red; */
  border-bottom: 2px solid #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transition: 0.4s linear;
}
.pageLinks a:hover::after {
  transform: scaleX(1);
  color: #000000;
}
.pageLinks a.active {
  border-bottom: 2px solid #013bad;
  color: #013bad;
  font-family: "Product Sans";
  font-size: 16px;
  font-weight: 700;
}
.pageLinks a.active::after {
  transform: scaleX(0);
}
