* {
  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;
  }
}
p {
  line-height: 2;
  font-size: 25px;
}
#vision {
  display: flex;
  align-items: center;
  padding: 5rem;
  flex-direction: column;
  h1 {
    font-size: 44px;
    margin-bottom: 3rem;
  }
  .col1 {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    .scol {
      flex: 1;
      img {
        width: 100%;
      }
    }
  }
  .col2 {
    font-size: 25px;
  }
}
@media (max-width: 992px) {
  h1 {
    text-align: left !important;
    color: rgb(59, 147, 255);
  }
  .col1 {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 500px) {
  p {
    font-size: 18px;
  }
  #vision {
    padding: 5rem 2rem;
  }
}
