body {
  margin: 0;
  font-family: 'Roboto';
}

header {
  padding: 0 10%;
  color: #F9FAF8;
  background-color: #1F2937;  
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-bar p {
  font-size: 24px;
  font-weight: bold;
}

.header-bar ul {
  display: flex;
  gap: 16px;
  list-style: none;
}

.header-bar li a {
  font-size: 18px;
  color: #E5E7EB;
  text-decoration: none;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 86px 0;
}

.hero img {
  height: 250px;
  width: auto;
  border-radius: 25px;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
}

.hero p {
  margin: 12px 0;
  font-size: 18px;
  color: #E5E7EB;
  
}

button {
  padding: 12px 32px;
  color: #F9FAF8;
  background-color: #3882F6;
  border-radius: 10px;
}

.content-info {
  padding: 32px 10% 88px;
  text-align: center;
  color: rgb(80, 80, 80);
}

.content-info h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1F2937;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 56px;
}

.card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 150px;
}

.card .frame {
  flex: 0 0 auto;
  height: 150px;
  width: 150px;
  margin-bottom: 10px;
  border: 4px #3882F6 solid;
  border-radius: 20px;
}

.card img {
  height: 150px;
  width: auto;
  margin-bottom: 16px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.content-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  background-color: #E5E7EB;
}

.content-quote .quote-text {
  padding: 88px;
  padding-bottom: 0;
  font-size: 36px;
  font-weight: 300;
  color: rgb(80, 80, 80);
}

.content-quote .thor {
  padding: 88px;
  padding-top: 0;
  align-self: flex-end;
  font-size: 24px;
  font-weight: 900;
  color: #1F2937;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 100px;
  margin: 88px 10%;
  color: #F9FAF8;
  background-color: #3882F6;
  border-radius: 10px;
}

.banner h3 {
  margin: 0;
}

.banner button {
  border: 2px solid #F9FAF8;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  align-self: flex-end;
  color: #F9FAF8;
  background-color: #1F2937;
}