/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  padding: 9px 200px;
  background: white;
  display: flex;
}

nav ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 51px;
  width: 153px;
}

.login-btn {
  background-color: var(--color-primary-100);
  border-radius: 8px;
  padding: 12px 26px;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
/* Main Section */
main {
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.featured {
  background-color: #cfe5ff;
  width: 100%;
  min-height: 540px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.featured-content {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
}

.featured-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: 700;
  font-size: 2.5rem;
}

.hero-btn {
  padding: 16px 124px;
  border-radius: 40px;
  gap: 10px;
  background-color: var(--color-primary-100);
  color: white;
  border: none;
  cursor: pointer;
}

.featured-content img {
  height: 100%;
  width: auto;
}

.standard {
  padding: 138px 342px;
}

.content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 0 2rem;
}
.content img {
  max-width: 100%;
  height: auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px;
}

.badge {
  color: var(--color-primary-100);
  font-weight: 700;
  font-size: 1.125rem;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 140%;
  color: var(--color-gray-700);
}

p {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 32px;
  color: var(--color-gray-700);
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* footer */

footer {
  background-color: var(--color-gray-900);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 32px 200px;
  gap: 10px;
  height: 160px;
  align-items: flex-start;
}

footer span {
  font-weight: 400;
  color: var(--color-gray-400);
  font-size: 1rem;
}

footer a {
  color: white;
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.faq {
  display: flex;
  gap: 30px;
}
