* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth !important;
}
body {
  font-family: "Inter", sans-serif;
  font-family: "Poppins", sans-serif;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
  transition: all ease 0.5s;
}
.links a::after,
footer a::after {
  content: "";
  width: 0px;
  height: 2.5px;
  display: block;
  background: rgb(83, 94, 189);
  transition: 0.5s;
}

.links a:hover::after,
footer a:hover::after {
  width: 100%;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  background-color: #fff;
  top: 0;
  border-bottom: rgb(43, 43, 43) 1px solid;
  z-index: 30;
}
.links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.nlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  p {
    font-size: 18px;
    font-size: bold;
  }
  .fnumb {
    color: rgb(62, 146, 255);
  }
  .fem {
    color: red;
  }
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
  background-color: #000;
}
.logo img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
.navLinks {
  grid-column-start: 1;
  grid-column-end: 4;
}
.item {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  background: #000;
  color: white !important;
  padding: 20px;
}
footer a {
  color: white !important;
}
@media (max-width: 1024px) {
  footer {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media (max-width: 806px) {
  .hamburger {
    display: block;
    z-index: 20;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .links {
    position: fixed;
    z-index: 10;
    left: -100%;
    top: 0px;
    height: 100vh;
    gap: 0;
    flex-direction: column;
    background-color: white;
    width: 100%;
    transition: 0.3s;
  }
  .links > li {
    margin: 16px 0;
  }
  .links.active {
    left: 0;
  }
}
#range {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  height: fit-content;
  padding: 5rem;
  h1 {
    color: rgb(58, 133, 245);
    font-size: 44px;
  }
  p {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  #range {
    padding: 3rem 2rem;
  }
}
