* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/*Navigation Bar Style Starts Here*/
nav {
  height: 80px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem calc((100vw - 1300px) / 2);
}

nav .logo {
  font-size: 1.5rem;
}

.nav-items a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  margin-left: 20px;
}

/*Navigation Bar Style Ends Here*/

/*About us and teams Style Starts Here*/
.about,
.about-us {
  text-align: center;
  font-size: 25px;
  padding: 20px 0;
  background-color: #ffffff;
}
.meet {
  text-align: left;
  padding: 3rem calc((100vw - 1300px) / 2);
  background-color: #ffffff;
}
.meet a {
  font-family: sans-serif;
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff;
  margin-top: 70px;
}

.team-member {
  flex: 1 1 30%;
  max-width: 30%;
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-member h3 {
  margin-top: 10px;
  font-size: 1.2em;
}

.team-member p {
  font-style: italic;
  color: #000000;
  padding: 20px;
}

.team-member a {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
}

/*About us and teams Style Ends Here*/

/*Partners & Integrated Style Starts Here*/

.partners-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff;
  margin-top: 70px;
}

.partners {
  flex: 1 1 30%;
  max-width: 30%;
  text-align: center;
  background-color: white;
  padding: 20px;
}

.partners img {
  width: 100%;
  max-width: 2000px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.partners h3 {
  margin-top: 10px;
  font-size: 1.2em;
}

.partners p {
  font-style: italic;
  color: #000000;
  padding: 20px;
}

.partners a {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
}

/*Partners & Integrated Style Ends Here*/

/*Few partners Style Starts Here*/

.few-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #ffffff;
  margin-top: 70px;
}

.few-partners {
  flex: 1 1 1 30%;
  max-width: 30%;
  text-align: center;
  background-color: white;
  padding: 20px;
}

.few-partners img {
  width: 150%;
  max-width: 200px;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

/*Few partners Style Ends Here*/
.footer {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  text-align: center;
  text-decoration: none;
  margin-left: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-content img {
  width: 50px;
  height: 50px;
}

.logo a {
  font-display: inherit;
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  margin-left: 10px;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
}

.footer-content ul li {
  display: inline;
  margin-right: 10px;
}

.copyright {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .about {
    font-size: 25px; /* Adjust font size for smaller screens */
    padding: 1rem; /* Adjust padding for smaller screens */
  }

  .meet {
    font-size: 20px; /* Adjust font size for smaller screens */
    padding: 1rem; /* Adjust padding for smaller screens */
    margin-bottom: auto;
  }

  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }
  /* Hide all navigation links except for the "Login" link */
  nav a:not(.login-link) {
    display: none;
  }
  .login-link {
    margin-right: 1rem; /* Add margin to push the "Login" link to the right */
  }
  nav .logo {
    margin-left: 1rem; /* Add margin to push the "Login" link to the right */
  }
  .partners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .few-section {
    flex: 1 1 100%;
    max-width: 100%;
    background-color: #ffffff;
    margin-top: 15px;
  }

  .few-partners img {
    width: 140%;
    max-width: 100px;
    height: 25px;
    margin-bottom: 20px;
  }

  .footer {
    display: none;
  }
}
