* {
  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;
}

/*  */

.bg-img {
  background: linear-gradient(rgba(7, 7, 7, 0.744), rgba(0, 0, 0, 0.568)),
    url("images/hsp1.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  height: 80vh;
  max-width: 100vw;
}

.bg-img h1 {
  font-size: 44px;
  line-height: 1.5;
  color: white !important;
  text-align: center;
}

.abtbtn {
  width: 100px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  background-color: rgb(74, 146, 255);
  color: white;
}

.col p {
  font-size: 20px;
  line-height: 2;
}

.clickbtn {
  padding: 5px 10px;
  font-size: 18px;
  cursor: pointer;
  margin: 10px 0;
  background-color: rgb(66, 139, 248);
}

/*  */

#vision {
  padding: 5rem 3rem;
}
.vcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: fit-content;
}

.vcol img {
  width: 100%;
}
.vcol {
  flex: 1;
}

.vcol1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  h1 {
    color: rgb(23, 99, 251);
    font-size: 42px;
  }
  p {
    font-size: 25px;
  }
}

/*  */
footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  background: #000;
  color: white !important;
  padding: 20px;
}
footer a {
  color: white !important;
}
header {
  padding: 20px;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.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;
}
@media (max-width: 1024px) {
  .vcontainer {
    flex-direction: column-reverse;
  }
  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;
  }
}
@media (max-width: 605px) {
  .bg-img {
    max-height: fit-content !important;
  }
  .vcontainer {
    p {
      font-size: 20px;
      line-height: 40px;
    }
  }
  .bg-img h1 {
    font-size: 36px;
  }
}
