body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.wrapper {
  display: flex;
  justify-content: center;
}
.odd-wrap {
  background-color: #1F2937;
}
.section {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  align-items: center;
  padding: 0 14rem;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  font-size: 18px;
  color: #E5E7EB;
}
.logo {
  font-size: 24px;
  color: #f9FAF8;
  font-weight: 700;
}
.hero {
  display: flex;
  justify-content: center;
  margin: 8rem 0;
  gap: 2rem;
  padding: 0 14rem;

}
.hero-text {
  flex: 1 1 0;
}
.hero-text h1 {
  font-size: 48px;
  font-weight: 900;
  color: #F9FAF8;
  margin: 0;
}
.hero-text p {
  font-size: 18px;
  color: #E5E7EB;
}
.hero-text button {
  font-size: 18px;
  color: #F9FAF8;
  background-color: #3882F8;
  padding: 0.5rem 2rem;
  border-style: none;
  border-radius: 0.4rem;
}
.hero-image {
  display: flex;
  flex: 1;
  background-color: #6D747D;
  justify-content: center;
  align-items: center;
}
.hero-image p {
  color: #E5E7EB;
}
.info-title {
  font-size: 36px;
  font-weight: 900;
  color: #1F2937;
  padding: 3rem;
  text-align: center;
}
.info-items {
  display: flex;
  gap: 3rem;
  margin-bottom: 6rem;

}
.info-item {
  display: flex;
  flex-direction: column;
  max-width: 150px;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.info-item div {
  border: 4px solid #3882F8;
  width: 146px;
  height: 146px;
  border-radius: 0.8rem;
}
.info-item p {
  margin: 0;
}
.quote-wrap {
  background-color: #E5E7EB;
}
.quote-text {
  font-size: 36px;
  color: #1F2937;
  font-style: italic;
  font-weight: 300;
}
.quote {
  padding: 0 21rem;
  margin: 8rem 0;
}
.quote-sig {
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: black;
}
.banner {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
  background-color: #3882F8;
  border-radius: 0.4rem;
  border-style: none;
  padding: 2rem 14rem;
  margin: 5rem 0;
}
.banner-text {
  display: flex;
  flex-direction: column;
}
.banner-text h3 {
  margin: 0;
  color: #F9FAF8;
}
.banner-text p {
  margin: 0;
  color: #F9FAF8;
}
.banner-button {
  background-color: transparent;
  border: 0.2rem solid #F9FAF8;
  border-radius: 0.4rem;
  color: #F9FAF8;
  padding: 0 2rem;
  font-weight: 700;
  font-size: 16px;
}
.copyright {
  color: #F9FAF8;
  padding: 0.5rem 0;
}